diff --git a/doc/languages-frameworks/python.md b/doc/languages-frameworks/python.md index 81da5c70439..a04ca75a2fb 100644 --- a/doc/languages-frameworks/python.md +++ b/doc/languages-frameworks/python.md @@ -534,6 +534,7 @@ All parameters from `mkDerivation` function are still supported. * `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"]`. * `installFlags`: A list of strings. Arguments to be passed to `pip install`. To pass options to `python setup.py install`, use `--install-option`. E.g., `installFlags=["--install-option='--cpp_implementation'"]. +* `format`: Format of the source. Options are `setup` for when the source has a `setup.py` and `setuptools` is used to build a wheel, and `wheel` in case the source is already a binary wheel. The default value is `setup`. #### `buildPythonApplication` function diff --git a/lib/maintainers.nix b/lib/maintainers.nix index 19f9300fe5d..85ed496ad76 100644 --- a/lib/maintainers.nix +++ b/lib/maintainers.nix @@ -221,6 +221,7 @@ marcweber = "Marc Weber "; markus1189 = "Markus Hauck "; markWot = "Markus Wotringer "; + martijnvermaat = "Martijn Vermaat "; matejc = "Matej Cotman "; mathnerd314 = "Mathnerd314 "; matthiasbeyer = "Matthias Beyer "; @@ -236,6 +237,7 @@ michelk = "Michel Kuhlmann "; mingchuan = "Ming Chuan "; mirdhyn = "Merlin Gaillard "; + mirrexagon = "Andrew Abbott "; modulistic = "Pablo Costa "; mog = "Matthew O'Gorman "; moosingin3space = "Nathan Moos "; diff --git a/maintainers/scripts/copy-tarballs.pl b/maintainers/scripts/copy-tarballs.pl index db0cea3e670..178dcfb38da 100755 --- a/maintainers/scripts/copy-tarballs.pl +++ b/maintainers/scripts/copy-tarballs.pl @@ -5,7 +5,7 @@ # content-addressed cache used by fetchurl as a fallback for when # upstream tarballs disappear or change. Usage: # -# 1) To upload a single file: +# 1) To upload one or more files: # # $ copy-tarballs.pl --file /path/to/tarball.tar.gz # @@ -22,12 +22,38 @@ use JSON; use Net::Amazon::S3; use Nix::Store; -isValidPath("/nix/store/foo"); # FIXME: forces Nix::Store initialisation +isValidPath("/nix/store/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa-foo"); # FIXME: forces Nix::Store initialisation + +sub usage { + die "Syntax: $0 [--dry-run] [--exclude REGEXP] [--expr EXPR | --file FILES...]\n"; +} + +my $dryRun = 0; +my $expr; +my @fileNames; +my $exclude; + +while (@ARGV) { + my $flag = shift @ARGV; + + if ($flag eq "--expr") { + $expr = shift @ARGV or die "--expr requires an argument"; + } elsif ($flag eq "--file") { + @fileNames = @ARGV; + last; + } elsif ($flag eq "--dry-run") { + $dryRun = 1; + } elsif ($flag eq "--exclude") { + $exclude = shift @ARGV or die "--exclude requires an argument"; + } else { + usage(); + } +} # S3 setup. -my $aws_access_key_id = $ENV{'AWS_ACCESS_KEY_ID'} or die; -my $aws_secret_access_key = $ENV{'AWS_SECRET_ACCESS_KEY'} or die; +my $aws_access_key_id = $ENV{'AWS_ACCESS_KEY_ID'} or die "AWS_ACCESS_KEY_ID not set\n"; +my $aws_secret_access_key = $ENV{'AWS_SECRET_ACCESS_KEY'} or die "AWS_SECRET_ACCESS_KEY not set\n"; my $s3 = Net::Amazon::S3->new( { aws_access_key_id => $aws_access_key_id, @@ -37,12 +63,15 @@ my $s3 = Net::Amazon::S3->new( my $bucket = $s3->bucket("nixpkgs-tarballs") or die; -my $cacheFile = "/tmp/copy-tarballs-cache"; +my $doWrite = 0; +my $cacheFile = ($ENV{"HOME"} or die "\$HOME is not set") . "/.cache/nix/copy-tarballs"; my %cache; $cache{$_} = 1 foreach read_file($cacheFile, err_mode => 'quiet', chomp => 1); +$doWrite = 1; END() { - write_file($cacheFile, map { "$_\n" } keys %cache); + File::Path::mkpath(dirname($cacheFile), 0, 0755); + write_file($cacheFile, map { "$_\n" } keys %cache) if $doWrite; } sub alreadyMirrored { @@ -87,11 +116,9 @@ sub uploadFile { $cache{$mainKey} = 1; } -my $op = shift @ARGV; - -if ($op eq "--file") { +if (scalar @fileNames) { my $res = 0; - foreach my $fn (@ARGV) { + foreach my $fn (@fileNames) { eval { if (alreadyMirrored("sha512", hashFile("sha512", 0, $fn))) { print STDERR "$fn is already mirrored\n"; @@ -100,17 +127,16 @@ if ($op eq "--file") { } }; if ($@) { - warn "$@\n"; + warn "$@"; $res = 1; } } exit $res; } -elsif ($op eq "--expr") { +elsif (defined $expr) { # Evaluate find-tarballs.nix. - my $expr = $ARGV[0] // die "$0: --expr requires a Nix expression\n"; my $pid = open(JSON, "-|", "nix-instantiate", "--eval", "--json", "--strict", "", "--arg", "expr", $expr); @@ -126,7 +152,7 @@ elsif ($op eq "--expr") { # Check every fetchurl call discovered by find-tarballs.nix. my $mirrored = 0; my $have = 0; - foreach my $fetch (@{$fetches}) { + foreach my $fetch (sort { $a->{url} cmp $b->{url} } @{$fetches}) { my $url = $fetch->{url}; my $algo = $fetch->{type}; my $hash = $fetch->{hash}; @@ -142,6 +168,8 @@ elsif ($op eq "--expr") { next; } + next if defined $exclude && $url =~ /$exclude/; + if (alreadyMirrored($algo, $hash)) { $have++; next; @@ -151,7 +179,10 @@ elsif ($op eq "--expr") { print STDERR "mirroring $url ($storePath)...\n"; - next if $ENV{DRY_RUN}; + if ($dryRun) { + $mirrored++; + next; + } # Substitute the output. if (!isValidPath($storePath)) { @@ -184,5 +215,5 @@ elsif ($op eq "--expr") { } else { - die "Syntax: $0 --file FILENAMES... | --expr EXPR\n"; + usage(); } diff --git a/nixos/modules/config/krb5.nix b/nixos/modules/config/krb5.nix index b845ef69a75..d318b720742 100644 --- a/nixos/modules/config/krb5.nix +++ b/nixos/modules/config/krb5.nix @@ -173,6 +173,8 @@ in ${cfg.domainRealm} = ${cfg.defaultRealm} .mit.edu = ATHENA.MIT.EDU mit.edu = ATHENA.MIT.EDU + .exchange.mit.edu = EXCHANGE.MIT.EDU + exchange.mit.edu = EXCHANGE.MIT.EDU .media.mit.edu = MEDIA-LAB.MIT.EDU media.mit.edu = MEDIA-LAB.MIT.EDU .csail.mit.edu = CSAIL.MIT.EDU diff --git a/nixos/modules/config/system-path.nix b/nixos/modules/config/system-path.nix index 8c417059782..3054439da65 100644 --- a/nixos/modules/config/system-path.nix +++ b/nixos/modules/config/system-path.nix @@ -40,6 +40,7 @@ let pkgs.time pkgs.texinfoInteractive pkgs.utillinux + pkgs.which # 88K size ]; in diff --git a/nixos/modules/config/unix-odbc-drivers.nix b/nixos/modules/config/unix-odbc-drivers.nix index eea6477fff2..9565a09b3a1 100644 --- a/nixos/modules/config/unix-odbc-drivers.nix +++ b/nixos/modules/config/unix-odbc-drivers.nix @@ -5,14 +5,21 @@ with lib; # unixODBC drivers (this solution is not perfect.. Because the user has to # ask the admin to add a driver.. but it's simple and works -{ +let + iniDescription = pkg: '' + [${pkg.fancyName}] + Description = ${pkg.meta.description} + Driver = ${pkg}/${pkg.driver} + ''; + +in { ###### interface options = { environment.unixODBCDrivers = mkOption { type = types.listOf types.package; default = []; - example = literalExample "with pkgs.unixODBCDrivers; [ mysql psql psqlng ]"; + example = literalExample "with pkgs.unixODBCDrivers; [ sqlite psql ]"; description = '' Specifies Unix ODBC drivers to be registered in /etc/odbcinst.ini. You may also want to @@ -25,11 +32,7 @@ with lib; ###### implementation config = mkIf (config.environment.unixODBCDrivers != []) { - - environment.etc."odbcinst.ini".text = - let inis = map (x : x.ini) config.environment.unixODBCDrivers; - in lib.concatStringsSep "\n" inis; - + environment.etc."odbcinst.ini".text = concatMapStringsSep "\n" iniDescription config.environment.unixODBCDrivers; }; } diff --git a/nixos/modules/misc/ids.nix b/nixos/modules/misc/ids.nix index 7e40c136667..8ee13fea779 100644 --- a/nixos/modules/misc/ids.nix +++ b/nixos/modules/misc/ids.nix @@ -265,6 +265,7 @@ factorio = 241; emby = 242; graylog = 243; + sniproxy = 244; # When adding a uid, make sure it doesn't match an existing gid. And don't use uids above 399! @@ -500,6 +501,7 @@ taskd = 240; factorio = 241; emby = 242; + sniproxy = 244; # When adding a gid, make sure it doesn't match an existing # uid. Users and groups with the same name should have equal diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix index b92361f628b..df720e86f5b 100644 --- a/nixos/modules/module-list.nix +++ b/nixos/modules/module-list.nix @@ -379,6 +379,7 @@ ./services/networking/skydns.nix ./services/networking/shairport-sync.nix ./services/networking/shout.nix + ./services/networking/sniproxy.nix ./services/networking/softether.nix ./services/networking/spiped.nix ./services/networking/sslh.nix diff --git a/nixos/modules/security/grsecurity.nix b/nixos/modules/security/grsecurity.nix index 12401f044a7..3f24118ea1c 100644 --- a/nixos/modules/security/grsecurity.nix +++ b/nixos/modules/security/grsecurity.nix @@ -126,6 +126,19 @@ in ''; }; + denyChrootCaps = mkOption { + type = types.bool; + default = false; + description = '' + Whether to lower capabilities of all processes within a chroot, + preventing commands that require CAP_SYS_ADMIN. + + This protection is disabled by default because it breaks + nixos-rebuild. Whenever possible, it is + highly recommended to enable this protection. + ''; + }; + denyUSB = mkOption { type = types.bool; default = false; diff --git a/nixos/modules/services/networking/dnscrypt-proxy.nix b/nixos/modules/services/networking/dnscrypt-proxy.nix index 3961088c4b0..eb43e83c95f 100644 --- a/nixos/modules/services/networking/dnscrypt-proxy.nix +++ b/nixos/modules/services/networking/dnscrypt-proxy.nix @@ -6,7 +6,6 @@ let dnscrypt-proxy = pkgs.dnscrypt-proxy; cfg = config.services.dnscrypt-proxy; - resolverListFile = "${dnscrypt-proxy}/share/dnscrypt-proxy/dnscrypt-resolvers.csv"; localAddress = "${cfg.localAddress}:${toString cfg.localPort}"; daemonArgs = @@ -23,7 +22,7 @@ let "--provider-key=${cfg.customResolver.key}" ] else - [ "--resolvers-list=${resolverListFile}" + [ "--resolvers-list=${cfg.resolverList}" "--resolver-name=${toString cfg.resolverName}" ]; in @@ -77,12 +76,24 @@ in default = "dnscrypt.eu-nl"; type = types.nullOr types.string; description = '' - The name of the upstream DNSCrypt resolver to use. See - ${resolverListFile} for alternative resolvers. + The name of the upstream DNSCrypt resolver to use, taken from the + list named in the resolverList option. The default resolver is located in Holland, supports DNS security extensions, and claims to not keep logs. ''; }; + resolverList = mkOption { + description = '' + The list of upstream DNSCrypt resolvers. By default, we use the most + recent list published by upstream. + ''; + example = literalExample "${pkgs.dnscrypt-proxy}/share/dnscrypt-proxy/dnscrypt-resolvers.csv"; + default = pkgs.fetchurl { + url = "https://raw.githubusercontent.com/jedisct1/dnscrypt-proxy/master/dnscrypt-resolvers.csv"; + sha256 = "07kbbisrvrqdxif3061hxj3whin3llg4nh50ln7prisi2vbd76xd"; + }; + defaultText = "pkgs.fetchurl { url = ...; sha256 = ...; }"; + }; customResolver = mkOption { default = null; description = '' @@ -169,7 +180,7 @@ in ${pkgs.lz4}/lib/liblz4.so.* mr, ${pkgs.attr.out}/lib/libattr.so.* mr, - ${resolverListFile} r, + ${cfg.resolverList} r, } '')); diff --git a/nixos/modules/services/networking/nat.nix b/nixos/modules/services/networking/nat.nix index 9d163e60d5e..f35b0f68e3e 100644 --- a/nixos/modules/services/networking/nat.nix +++ b/nixos/modules/services/networking/nat.nix @@ -12,6 +12,9 @@ let dest = if cfg.externalIP == null then "-j MASQUERADE" else "-j SNAT --to-source ${cfg.externalIP}"; + externalInterfaceFilter = param: + optionalString (cfg.externalInterface != null) "${param} ${cfg.externalInterface}"; + flushNat = '' iptables -w -t nat -D PREROUTING -j nixos-nat-pre 2>/dev/null|| true iptables -w -t nat -F nixos-nat-pre 2>/dev/null || true @@ -36,19 +39,20 @@ let # NAT the marked packets. ${optionalString (cfg.internalInterfaces != []) '' iptables -w -t nat -A nixos-nat-post -m mark --mark 1 \ - -o ${cfg.externalInterface} ${dest} + ${externalInterfaceFilter "-o"} ${dest} ''} # NAT packets coming from the internal IPs. ${concatMapStrings (range: '' iptables -w -t nat -A nixos-nat-post \ - -s '${range}' -o ${cfg.externalInterface} ${dest} + -s '${range}' \! -d '${range}' + ${externalInterfaceFilter "-o"} ${dest} '') cfg.internalIPs} # NAT from external ports to internal ports. ${concatMapStrings (fwd: '' iptables -w -t nat -A nixos-nat-pre \ - -i ${cfg.externalInterface} -p tcp \ + ${externalInterfaceFilter "-i"} -p tcp \ --dport ${builtins.toString fwd.sourcePort} \ -j DNAT --to-destination ${fwd.destination} '') cfg.forwardPorts} @@ -100,7 +104,8 @@ in }; networking.nat.externalInterface = mkOption { - type = types.str; + type = types.nullOr types.str; + default = null; example = "eth1"; description = '' diff --git a/nixos/modules/services/networking/sniproxy.nix b/nixos/modules/services/networking/sniproxy.nix new file mode 100644 index 00000000000..4d0f3692329 --- /dev/null +++ b/nixos/modules/services/networking/sniproxy.nix @@ -0,0 +1,99 @@ +{ config, pkgs, lib, ... }: + +with lib; + +let + + cfg = config.services.sniproxy; + + configFile = pkgs.writeText "sniproxy.conf" '' + user ${cfg.user} + pidfile /run/sniproxy.pid + ${cfg.config} + ''; + +in +{ + options = { + services.sniproxy = { + enable = mkEnableOption "sniproxy server"; + + user = mkOption { + type = types.str; + default = "sniproxy"; + description = "User account under which sniproxy runs."; + }; + + group = mkOption { + type = types.str; + default = "sniproxy"; + description = "Group under which sniproxy runs."; + }; + + config = mkOption { + type = types.lines; + default = ""; + description = "sniproxy.conf configuration excluding the daemon username and pid file."; + example = literalExample '' + error_log { + filename /var/log/sniproxy/error.log + } + access_log { + filename /var/log/sniproxy/access.log + } + listen 443 { + proto tls + } + table { + example.com 192.0.2.10 + example.net 192.0.2.20 + } + ''; + }; + + logDir = mkOption { + type = types.str; + default = "/var/log/sniproxy/"; + description = "Location of the log directory for sniproxy."; + }; + + }; + + }; + + config = mkIf cfg.enable { + systemd.services.sniproxy = { + description = "sniproxy server"; + after = [ "network.target" ]; + wantedBy = [ "multi-user.target" ]; + preStart = '' + test -d ${cfg.logDir} || { + echo "Creating initial log directory for sniproxy in ${cfg.logDir}" + mkdir -p ${cfg.logDir} + chmod 640 ${cfg.logDir} + } + chown -R ${cfg.user}:${cfg.group} ${cfg.logDir} + ''; + + serviceConfig = { + Type = "forking"; + ExecStart = "${pkgs.sniproxy}/bin/sniproxy -c ${configFile}"; + Restart = "always"; + }; + }; + + users.extraUsers = mkIf (cfg.user == "sniproxy") { + sniproxy = { + group = cfg.group; + uid = config.ids.uids.sniproxy; + }; + }; + + users.extraGroups = mkIf (cfg.group == "sniproxy") { + sniproxy = { + gid = config.ids.gids.sniproxy; + }; + }; + + }; +} diff --git a/nixos/modules/services/x11/unclutter.nix b/nixos/modules/services/x11/unclutter.nix index 65532c7a32b..3260fdb3d54 100644 --- a/nixos/modules/services/x11/unclutter.nix +++ b/nixos/modules/services/x11/unclutter.nix @@ -73,6 +73,7 @@ in { ${concatMapStrings (x: " -"+x) cfg.extraOptions} \ -not ${concatStringsSep " " cfg.excluded} \ ''; + serviceConfig.RestartSec = 3; serviceConfig.Restart = "always"; }; }; diff --git a/pkgs/applications/audio/cava/default.nix b/pkgs/applications/audio/cava/default.nix index 456a22ee697..39ad787c4a1 100644 --- a/pkgs/applications/audio/cava/default.nix +++ b/pkgs/applications/audio/cava/default.nix @@ -1,26 +1,36 @@ -{ stdenv, fetchgit, alsaLib, fftw }: +{ stdenv, fetchFromGitHub, autoreconfHook, alsaLib, fftw, + libpulseaudio, ncurses }: stdenv.mkDerivation rec { name = "cava-${version}"; - version = "27dbdf47daae44c780db9998c760007b3bf63738"; + version = "0.4.1"; - buildInputs = [ alsaLib fftw ]; + buildInputs = [ + alsaLib + fftw + libpulseaudio + ncurses + ]; - src = fetchgit { - url = "https://github.com/karlstav/cava"; + src = fetchFromGitHub { + owner = "karlstav"; + repo = "cava"; rev = version; - sha256 = "1a61e2c869376276cf78e6446cd1cc7f96b3e378fa8bc0bc4c5ca81945429909"; + sha256 = "157hw4cn3qjic7ymn5vy67paxmzssc33h1zswx72ss7j6nc8707f"; }; - installPhase = '' - mkdir -p $out/bin - cp cava $out/bin + nativeBuildInputs = [ autoreconfHook ]; + + postConfigure = '' + substituteInPlace Makefile \ + --replace "-L/usr/local/lib -Wl,-rpath /usr/local/lib" "" ''; meta = with stdenv.lib; { description = "Console-based Audio Visualizer for Alsa"; homepage = https://github.com/karlstav/cava; - maintainers = with maintainers; [offline]; + license = licenses.mit; + maintainers = with maintainers; [ offline mirrexagon ]; platforms = platforms.linux; }; } diff --git a/pkgs/applications/audio/flacon/default.nix b/pkgs/applications/audio/flacon/default.nix new file mode 100644 index 00000000000..0f81fb45166 --- /dev/null +++ b/pkgs/applications/audio/flacon/default.nix @@ -0,0 +1,30 @@ +{ stdenv, lib, fetchFromGitHub, cmake, qt5, libuchardet, pkgconfig, makeWrapper +, shntool, flac, opusTools, vorbisTools, mp3gain, lame, wavpack, vorbisgain +}: + +stdenv.mkDerivation rec { + name = "flacon-${version}"; + version = "2.0.1"; + src = fetchFromGitHub { + owner = "flacon"; + repo = "flacon"; + rev = "v${version}"; + sha256 = "0hip411k3arb96rnd22ifs9shlv0xmy96hhx1jcwdk48kw8aa9rw"; + }; + + buildInputs = [ cmake qt5.qtbase qt5.qttools libuchardet pkgconfig makeWrapper ]; + + postInstall = '' + wrapProgram $out/bin/flacon \ + --prefix PATH : "${lib.makeBinPath [ shntool flac opusTools vorbisTools + mp3gain lame wavpack vorbisgain ]}" + ''; + + meta = { + description = "Extracts audio tracks from an audio CD image to separate tracks."; + homepage = https://flacon.github.io/; + license = stdenv.lib.licenses.lgpl21; + platforms = stdenv.lib.platforms.linux; + maintainers = [ stdenv.lib.maintainers.nico202 ]; + }; +} diff --git a/pkgs/applications/audio/qjackctl/default.nix b/pkgs/applications/audio/qjackctl/default.nix index 90129d6404b..db73901d2aa 100644 --- a/pkgs/applications/audio/qjackctl/default.nix +++ b/pkgs/applications/audio/qjackctl/default.nix @@ -1,17 +1,23 @@ -{ stdenv, fetchurl, qt4, alsaLib, libjack2, dbus }: +{ stdenv, fetchurl, alsaLib, libjack2, dbus, qt5 }: stdenv.mkDerivation rec { - version = "0.4.0"; + version = "0.4.2"; name = "qjackctl-${version}"; # some dependencies such as killall have to be installed additionally src = fetchurl { url = "mirror://sourceforge/qjackctl/${name}.tar.gz"; - sha256 = "0nj8c8vy00524hbjqwsqkliblcf9j7h46adk6v5np645pp2iqrav"; + sha256 = "0pmgkqgkapbma42zqb5if4ngmj183rxl8bhjm7mhyhgq4bzll76g"; }; - buildInputs = [ qt4 alsaLib libjack2 dbus ]; + buildInputs = [ + qt5.full + qt5.qtx11extras + alsaLib + libjack2 + dbus + ]; configureFlags = "--enable-jack-version"; diff --git a/pkgs/applications/editors/emacs-modes/dash/default.nix b/pkgs/applications/editors/emacs-modes/dash/default.nix deleted file mode 100644 index 09b03ccdba6..00000000000 --- a/pkgs/applications/editors/emacs-modes/dash/default.nix +++ /dev/null @@ -1,24 +0,0 @@ -{stdenv, fetchurl, emacs}: - -let - version = "2.12.1"; -in -stdenv.mkDerivation { - name = "emacs-dash-${version}"; - - src = fetchurl { - url = "https://github.com/magnars/dash.el/archive/${version}.tar.gz"; - sha256 = "082jl7mp4x063bpj5ad2pc5125k0d6p7rb89gcj7ny3lma9h2ij1"; - }; - - buildInputs = [ emacs ]; - - buildPhase = '' - emacs -L . --batch -f batch-byte-compile *.el - ''; - - installPhase = '' - install -d $out/share/emacs/site-lisp - install *.el *.elc $out/share/emacs/site-lisp - ''; -} diff --git a/pkgs/applications/editors/emacs-modes/elpa-generated.nix b/pkgs/applications/editors/emacs-modes/elpa-generated.nix index a54f364b8d4..a5bc86f0ad6 100644 --- a/pkgs/applications/editors/emacs-modes/elpa-generated.nix +++ b/pkgs/applications/editors/emacs-modes/elpa-generated.nix @@ -81,10 +81,10 @@ aggressive-indent = callPackage ({ cl-lib ? null, elpaBuild, emacs, fetchurl, lib }: elpaBuild { pname = "aggressive-indent"; - version = "1.6"; + version = "1.7"; src = fetchurl { - url = "https://elpa.gnu.org/packages/aggressive-indent-1.6.el"; - sha256 = "1xnxc2x1hbhkbqhp9p3c9azrdm6mr6czqc9pl63phjp9dbslny7i"; + url = "https://elpa.gnu.org/packages/aggressive-indent-1.7.el"; + sha256 = "0z2zsw0qnzcabsz2frfsjhfg7qa4nbmprrd41yjfxq62d12wg70m"; }; packageRequires = [ cl-lib emacs ]; meta = { @@ -135,10 +135,10 @@ arbitools = callPackage ({ cl-lib ? null, elpaBuild, fetchurl, lib }: elpaBuild { pname = "arbitools"; - version = "0.70"; + version = "0.71"; src = fetchurl { - url = "https://elpa.gnu.org/packages/arbitools-0.70.el"; - sha256 = "129ykqhx26adw0x26wzb4biyr5pnjgqmycsabsag2hzxjd7c92gl"; + url = "https://elpa.gnu.org/packages/arbitools-0.71.el"; + sha256 = "1ghf5yla126n7xpn2sc2vg7q8arp7iv2z5f9r9l38vxm6dvnxp50"; }; packageRequires = [ cl-lib ]; meta = { @@ -228,10 +228,10 @@ }) {}; beacon = callPackage ({ elpaBuild, fetchurl, lib, seq }: elpaBuild { pname = "beacon"; - version = "1.2.1"; + version = "1.3.0"; src = fetchurl { - url = "https://elpa.gnu.org/packages/beacon-1.2.1.el"; - sha256 = "00i0p7azkkk4jpz6dnbkc4rhcvm1q7dg953874ph50fjihwqi1m6"; + url = "https://elpa.gnu.org/packages/beacon-1.3.0.el"; + sha256 = "00hab8w01p43iscpr0hh1s2w80ara2y8d5ccz37i2nl54gj8lpw3"; }; packageRequires = [ seq ]; meta = { @@ -242,10 +242,10 @@ bug-hunter = callPackage ({ cl-lib ? null, elpaBuild, fetchurl, lib, seq }: elpaBuild { pname = "bug-hunter"; - version = "1.3"; + version = "1.3.1"; src = fetchurl { - url = "https://elpa.gnu.org/packages/bug-hunter-1.3.el"; - sha256 = "1j1d9nml2wl3yj7llykq5k1a81kzb3r4rbn695c0853fk036gk5x"; + url = "https://elpa.gnu.org/packages/bug-hunter-1.3.1.el"; + sha256 = "0xplsnmj144r90vxxkmpdxlaq6gyx4ca6iklq60wd0w05fw9q02x"; }; packageRequires = [ cl-lib seq ]; meta = { @@ -442,15 +442,15 @@ license = lib.licenses.free; }; }) {}; - debbugs = callPackage ({ elpaBuild, fetchurl, lib, soap-client }: + debbugs = callPackage ({ cl-lib ? null, elpaBuild, fetchurl, lib, soap-client }: elpaBuild { pname = "debbugs"; - version = "0.9.3"; + version = "0.9.5"; src = fetchurl { - url = "https://elpa.gnu.org/packages/debbugs-0.9.3.tar"; - sha256 = "0qj1b5ax80bi5kz6jfi4f5kpirkkc2li8zf18fj86q5ayh3rsgnz"; + url = "https://elpa.gnu.org/packages/debbugs-0.9.5.tar"; + sha256 = "1m23rghdykx1fvji6in0xp0bxhjcf7ynm14nl4fhiki2nhhwczxh"; }; - packageRequires = [ soap-client ]; + packageRequires = [ cl-lib soap-client ]; meta = { homepage = "https://elpa.gnu.org/packages/debbugs.html"; license = lib.licenses.free; @@ -1257,10 +1257,10 @@ }) {}; org = callPackage ({ elpaBuild, fetchurl, lib }: elpaBuild { pname = "org"; - version = "20160425"; + version = "20160502"; src = fetchurl { - url = "https://elpa.gnu.org/packages/org-20160425.tar"; - sha256 = "1slrmy8kpapp36lwk9md7rakl1fw8gi377rfff0ma8n7k5xy7b2a"; + url = "https://elpa.gnu.org/packages/org-20160502.tar"; + sha256 = "0li067na4p0k9r4nr6a2vfqygvlmzsdgm5kgg2p60lsvydh43fvw"; }; packageRequires = []; meta = { @@ -1757,6 +1757,20 @@ license = lib.licenses.free; }; }) {}; + validate = callPackage ({ cl-lib ? null, elpaBuild, emacs, fetchurl, lib }: + elpaBuild { + pname = "validate"; + version = "0.3"; + src = fetchurl { + url = "https://elpa.gnu.org/packages/validate-0.3.el"; + sha256 = "0nq917217ax5zykzaybv7diz1vgl3y6r8vi7hmz3lzm5dl90jy3m"; + }; + packageRequires = [ cl-lib emacs ]; + meta = { + homepage = "https://elpa.gnu.org/packages/validate.html"; + license = lib.licenses.free; + }; + }) {}; vlf = callPackage ({ elpaBuild, fetchurl, lib }: elpaBuild { pname = "vlf"; version = "1.7"; diff --git a/pkgs/applications/editors/emacs-modes/flycheck/default.nix b/pkgs/applications/editors/emacs-modes/flycheck/default.nix deleted file mode 100644 index 2a3c4382836..00000000000 --- a/pkgs/applications/editors/emacs-modes/flycheck/default.nix +++ /dev/null @@ -1,32 +0,0 @@ -{ stdenv, fetchFromGitHub, emacs, let-alist, dash, texinfo }: - -stdenv.mkDerivation rec { - name = "flycheck-0.22-64-g90dbc2d"; - - src = fetchFromGitHub { - owner = "flycheck"; - repo = "flycheck"; - rev = "90dbc2d"; - sha256 = "08bg4jps6hjldbcrvqarrwdv4xzirm5pns5s0331wm0sc47yvbli"; - }; - - buildInputs = [ emacs texinfo ]; - - buildPhase = '' - emacs -L ${let-alist}/share/emacs/site-lisp -L ${dash}/share/emacs/site-lisp --batch -f batch-byte-compile flycheck.el - makeinfo --force --no-split -o doc/flycheck.info doc/flycheck.texi - ''; - - installPhase = '' - mkdir -p $out/share/emacs/site-lisp $out/share/info - mv flycheck.el flycheck.elc $out/share/emacs/site-lisp/ - mv "doc/"*.info $out/share/info/ - ''; - - meta = { - inherit (src.meta) homepage; - description = "Modern on-the-fly syntax checking for GNU Emacs"; - license = stdenv.lib.licenses.gpl3Plus; - maintainers = with stdenv.lib.maintainers; [ simons ]; - }; -} diff --git a/pkgs/applications/editors/emacs-modes/git-modes/default.nix b/pkgs/applications/editors/emacs-modes/git-modes/default.nix deleted file mode 100644 index 59733fe5bb4..00000000000 --- a/pkgs/applications/editors/emacs-modes/git-modes/default.nix +++ /dev/null @@ -1,29 +0,0 @@ -{ stdenv, fetchFromGitHub, emacs }: - -let - version = "1.2.0"; -in -stdenv.mkDerivation { - name = "git-modes-${version}"; - - src = fetchFromGitHub { - owner = "magit"; - repo = "git-modes"; - rev = version; - sha256 = "1ipr51v7nhbbgxbbz0fp3i78ypp73kyxgc4ni8nnr7yirjhsksfd"; - }; - - buildInputs = [ emacs ]; - - installPhase = '' - mkdir -p $out/share/emacs/site-lisp - mv *.el *.elc $out/share/emacs/site-lisp/ - ''; - - meta = { - homepage = "https://github.com/magit/git-modes"; - description = "Emacs modes for various Git-related files"; - license = stdenv.lib.licenses.gpl3Plus; - maintainers = with stdenv.lib.maintainers; [ simons ]; - }; -} diff --git a/pkgs/applications/editors/emacs-modes/magit/default.nix b/pkgs/applications/editors/emacs-modes/magit/default.nix deleted file mode 100644 index b5f4ac506cc..00000000000 --- a/pkgs/applications/editors/emacs-modes/magit/default.nix +++ /dev/null @@ -1,54 +0,0 @@ -{ stdenv, fetchFromGitHub, emacs, texinfo, gitModes, git, dash }: - -let - version = "2.3.0"; -in -stdenv.mkDerivation { - name = "magit-${version}"; - - src = fetchFromGitHub { - owner = "magit"; - repo = "magit"; - rev = version; - sha256 = "1zbx1ky1481lkvfjr4k23q7jdrk9ji9v5ghj88qib36vbmzfwww8"; - }; - - buildInputs = [ emacs texinfo git ]; - propagatedUserEnvPkgs = [ gitModes dash ]; - - configurePhase = '' - makeFlagsArray=( - PREFIX="$out" - lispdir="$out/share/emacs/site-lisp" - DASH_DIR="${dash}/share/emacs/site-lisp" - VERSION="${version}" - ) - make ''${makeFlagsArray[@]} -C lisp magit-version.el - cp lisp/magit-version.el Documentation/ - cp lisp/magit-version.el . - ''; - - doCheck = false; # 2 out of 15 tests fails, not sure why - checkTarget = "test"; - preCheck = "export EMAIL='Joe Doe '"; - - meta = { - homepage = "https://github.com/magit/magit"; - description = "Magit, an Emacs interface to Git"; - license = stdenv.lib.licenses.gpl3Plus; - - longDescription = '' - With Magit, you can inspect and modify your Git repositories with - Emacs. You can review and commit the changes you have made to the - tracked files, for example, and you can browse the history of past - changes. There is support for cherry picking, reverting, merging, - rebasing, and other common Git operations. - - Magit is not a complete interface to Git; it just aims to make the - most common Git operations convenient. Thus, Magit will likely not - save you from learning Git itself. - ''; - - maintainers = with stdenv.lib.maintainers; [ simons ]; - }; -} diff --git a/pkgs/applications/editors/emacs-modes/melpa-generated.nix b/pkgs/applications/editors/emacs-modes/melpa-generated.nix index ebb24f826be..53c4e77327a 100644 --- a/pkgs/applications/editors/emacs-modes/melpa-generated.nix +++ b/pkgs/applications/editors/emacs-modes/melpa-generated.nix @@ -2,15 +2,15 @@ _0blayout = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "_0blayout"; - version = "20151021.549"; + version = "20151021.649"; src = fetchFromGitHub { owner = "etu"; repo = "0blayout-mode"; - rev = "6e4ef20e70aed88489c31c48c73da8ff0ce4572b"; + rev = "22913a412ce5749d0659fe0396e909c968eec9dd"; sha256 = "1xigpz2aswlmpcsc1f7gfakyw7041pbyl9zfd8nz38iq036n5b96"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/0blayout"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/0blayout"; sha256 = "027k85h34998i8vmbg2hi4q1m4f7jfva5jm38k0g9m1db700gk92"; name = "_0blayout"; }; @@ -23,14 +23,14 @@ _2048-game = callPackage ({ fetchhg, fetchurl, lib, melpaBuild }: melpaBuild { pname = "_2048-game"; - version = "20151026.1433"; + version = "20151026.1533"; src = fetchhg { url = "https://bitbucket.com/zck/2048.el"; rev = "ea6c3bce8ac1"; sha256 = "1p9qn9n8mfb4z62h1s94mlg0vshpzafbhsxgzvx78sqlf6bfc80l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/2048-game"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/2048-game"; sha256 = "0z7x9bnyi3qlq7l0fskb61i6yr9gm7w7wplqd28wz8p1j5yw8aa0"; name = "_2048-game"; }; @@ -43,7 +43,7 @@ _4clojure = callPackage ({ fetchFromGitHub, fetchurl, json ? null, lib, melpaBuild, request }: melpaBuild { pname = "_4clojure"; - version = "20131014.1707"; + version = "20131014.1807"; src = fetchFromGitHub { owner = "losingkeys"; repo = "4clojure.el"; @@ -51,7 +51,7 @@ sha256 = "1fybicg46fc5jjqv7g2d3dnj1x9n58m2fg9x6qxn9l8qlzk9yxkq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/4clojure"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/4clojure"; sha256 = "09bmdxkkp676sn1sbbly44k99i47w83yznq950nkxv6x8753ifgk"; name = "_4clojure"; }; @@ -64,7 +64,7 @@ aa-edit-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, navi2ch }: melpaBuild { pname = "aa-edit-mode"; - version = "20160228.17"; + version = "20160228.117"; src = fetchFromGitHub { owner = "zonuexe"; repo = "aa-edit-mode"; @@ -72,7 +72,7 @@ sha256 = "0d7q0fhcw4cvy9140hwxp8zdh0g37zhfsq6kmsdngxdx7lw3wryi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/aa-edit-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/aa-edit-mode"; sha256 = "00b99ik04xx4b2a1cm1z8dl42hjnb5r32qypjyyx8924n1dhxzgn"; name = "aa-edit-mode"; }; @@ -85,7 +85,7 @@ abc-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "abc-mode"; - version = "20140225.1144"; + version = "20140225.1244"; src = fetchFromGitHub { owner = "mkjunker"; repo = "abc-mode"; @@ -93,7 +93,7 @@ sha256 = "1h4gwp2gyd4jhbkb8ai1zbzhhmlhmihbwzr0wsxg5yq074n72ifs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/abc-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/abc-mode"; sha256 = "0qf5lbszyscmagiqhc0d05vzkhdky7ini4w33z1h3j5417sscrcx"; name = "abc-mode"; }; @@ -106,7 +106,7 @@ abl-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "abl-mode"; - version = "20160129.431"; + version = "20160129.531"; src = fetchFromGitHub { owner = "afroisalreadyinu"; repo = "abl-mode"; @@ -114,7 +114,7 @@ sha256 = "09hy7rj27h7xbvasd87146di4vhpg5cmqc9f39fy0ihmv9gy56za"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/abl-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/abl-mode"; sha256 = "0h25lc87pa8irgxflnmnmkr9dcv4kz841nfc45fcz4awrn75kkzb"; name = "abl-mode"; }; @@ -127,7 +127,7 @@ abyss-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "abyss-theme"; - version = "20160420.712"; + version = "20160420.812"; src = fetchFromGitHub { owner = "mgrbyte"; repo = "emacs-abyss-theme"; @@ -135,7 +135,7 @@ sha256 = "1yr6cqycd7ljkqzfp4prz9ilcpjq8wxg5yf645m24gy9v4w365ia"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/abyss-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/abyss-theme"; sha256 = "0ckrgfd7fjls6g510v8fqpkd0fd18lr0spg3lf5s88gky8ihdg6c"; name = "abyss-theme"; }; @@ -148,7 +148,7 @@ ac-alchemist = callPackage ({ alchemist, auto-complete, cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ac-alchemist"; - version = "20150908.156"; + version = "20150908.256"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-ac-alchemist"; @@ -156,7 +156,7 @@ sha256 = "19msfx3f3px1maj41bzh139s6sv2pjk9vm3bphn7758fqhzyin0f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-alchemist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ac-alchemist"; sha256 = "02ll3hcixgdb8zyszn78714gy1h2q0vkhpbnwap9302mr2racwl0"; name = "ac-alchemist"; }; @@ -169,7 +169,7 @@ ac-anaconda = callPackage ({ anaconda-mode, auto-complete, dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ac-anaconda"; - version = "20160221.1323"; + version = "20160221.1423"; src = fetchFromGitHub { owner = "proofit404"; repo = "ac-anaconda"; @@ -177,7 +177,7 @@ sha256 = "092m8y38h4irh2ig6n6510gw2scjjxah37zim6mk92jzn1xv06d0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-anaconda"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ac-anaconda"; sha256 = "124nvigk6y3iw0lj2r7div88rrx8vz59xwqph1063jsrc29x8rjf"; name = "ac-anaconda"; }; @@ -190,7 +190,7 @@ ac-c-headers = callPackage ({ auto-complete, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ac-c-headers"; - version = "20151021.334"; + version = "20151021.434"; src = fetchFromGitHub { owner = "zk-phi"; repo = "ac-c-headers"; @@ -198,7 +198,7 @@ sha256 = "1z6rj15p5gjv0jwnnck8789n9csf1pwxfvsz37graihgfy2khj0y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-c-headers"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ac-c-headers"; sha256 = "1cq5rz2w79bj185va7y13x7bciihrpsvyxwk6msmcxb4g86s9phv"; name = "ac-c-headers"; }; @@ -211,7 +211,7 @@ ac-cake = callPackage ({ auto-complete, cake, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ac-cake"; - version = "20140315.1129"; + version = "20140315.1229"; src = fetchFromGitHub { owner = "k1LoW"; repo = "emacs-ac-cake"; @@ -219,7 +219,7 @@ sha256 = "1llpnb9vy612sg214i76rxnzcl3qx8pqnixczc5pik9kd3fdaz5f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-cake"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ac-cake"; sha256 = "0s2pgf0m98ixgadsnn201vm5gnawanpvxv56sf599f33krqnxzkl"; name = "ac-cake"; }; @@ -232,7 +232,7 @@ ac-cake2 = callPackage ({ auto-complete, cake2, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ac-cake2"; - version = "20140320.208"; + version = "20140320.308"; src = fetchFromGitHub { owner = "k1LoW"; repo = "emacs-ac-cake2"; @@ -240,7 +240,7 @@ sha256 = "0mlmhdl9s28z981y8bnpj8jpfzm6bgfiyl0zmpgvhyqw1wzqywwv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-cake2"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ac-cake2"; sha256 = "0qxilldx23wqf8ilif2nin119bvd0l7b6f6wifixx28a6kl1vsgy"; name = "ac-cake2"; }; @@ -253,7 +253,7 @@ ac-capf = callPackage ({ auto-complete, cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ac-capf"; - version = "20151031.2117"; + version = "20151031.2217"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-ac-capf"; @@ -261,7 +261,7 @@ sha256 = "0nyq34yq4jcp3p30ygma3iz1h0q551p33792byj76pa5ps09g1da"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-capf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ac-capf"; sha256 = "1drgk5iz2wp3rxzd39pj0n4cfmm5z8zqlp50jw5z7ffbbg35qxbm"; name = "ac-capf"; }; @@ -274,7 +274,7 @@ ac-cider = callPackage ({ auto-complete, cider, cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ac-cider"; - version = "20160305.924"; + version = "20160305.1024"; src = fetchFromGitHub { owner = "clojure-emacs"; repo = "ac-cider"; @@ -282,7 +282,7 @@ sha256 = "0j8bbliijycnvpqbl1x3a0nbixhr57czfch2s8phn7v3zzdr8k3h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-cider"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ac-cider"; sha256 = "1dszpb706h34miq2bxqyq1ycbran5ax36vcniwp8vvhgcjsw5sz6"; name = "ac-cider"; }; @@ -295,7 +295,7 @@ ac-clang = callPackage ({ auto-complete, cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, pos-tip, yasnippet }: melpaBuild { pname = "ac-clang"; - version = "20150906.1208"; + version = "20150906.1308"; src = fetchFromGitHub { owner = "yaruopooner"; repo = "ac-clang"; @@ -303,7 +303,7 @@ sha256 = "0n9zagwh3rz7b76irj4ya8wskffns9v1c1pivsdqgpd76spvl7n5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-clang"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ac-clang"; sha256 = "070s06xhkzaqfc3j8c4i44rks6gn8z66lwd54j17p8d91x3qjpr4"; name = "ac-clang"; }; @@ -315,13 +315,13 @@ }) {}; ac-dabbrev = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "ac-dabbrev"; - version = "20130906.18"; + version = "20130906.118"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/ac-dabbrev.el"; sha256 = "0q0lbhdng5s5hqa342yyvg02hf2bfbwq513lj1rlaqz4ykvpd7fh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-dabbrev"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ac-dabbrev"; sha256 = "03lndw7y55bzz4rckl80j0kh66qa82xxxhfakzs1dh1h9f1f0azh"; name = "ac-dabbrev"; }; @@ -334,7 +334,7 @@ ac-dcd = callPackage ({ auto-complete, fetchFromGitHub, fetchurl, flycheck-dmd-dub, lib, melpaBuild }: melpaBuild { pname = "ac-dcd"; - version = "20160311.817"; + version = "20160311.917"; src = fetchFromGitHub { owner = "atilaneves"; repo = "ac-dcd"; @@ -342,7 +342,7 @@ sha256 = "1hlijh415wgl450ry16a1072jjrkqqqkk862hfhswfr2l6rjfw98"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-dcd"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ac-dcd"; sha256 = "086jp9c6bilc361n1hscza3pbhgvqlq944z7cil2jm1kicsf8s7r"; name = "ac-dcd"; }; @@ -355,7 +355,7 @@ ac-emmet = callPackage ({ auto-complete, emmet-mode, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ac-emmet"; - version = "20131015.1058"; + version = "20131015.1158"; src = fetchFromGitHub { owner = "yasuyk"; repo = "ac-emmet"; @@ -363,7 +363,7 @@ sha256 = "1lkhqmfkjga7qi4r1m7mjax3pyf9m6minsn57cbzm2z2kvkhq22g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-emmet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ac-emmet"; sha256 = "09ycjllfpdgqaf5iis5bkkhal1vxvl3qkxrn2759p67s97c49f3x"; name = "ac-emmet"; }; @@ -376,7 +376,7 @@ ac-emoji = callPackage ({ auto-complete, cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ac-emoji"; - version = "20150823.211"; + version = "20150823.311"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-ac-emoji"; @@ -384,7 +384,7 @@ sha256 = "19981mzxnqqdb8dsdizy2i8byb8sx9138x3nrvi6ap2qbcsabjmz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-emoji"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ac-emoji"; sha256 = "0msh3dh89jzk6hxva34gp9d5pazchgdknxjbi72z26rss9bkp1mw"; name = "ac-emoji"; }; @@ -397,7 +397,7 @@ ac-etags = callPackage ({ auto-complete, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ac-etags"; - version = "20151031.2121"; + version = "20151031.2221"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-ac-etags"; @@ -405,7 +405,7 @@ sha256 = "140i02b2ipyfmki945l1xd1nsqdpganhmi3bmwj1h9w8cg078bd4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-etags"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ac-etags"; sha256 = "0ag49k9izrs4ikzac9lifvvwhcn5n89lr2vb20pngsvg1czdyhzb"; name = "ac-etags"; }; @@ -418,7 +418,7 @@ ac-geiser = callPackage ({ auto-complete, fetchFromGitHub, fetchurl, geiser, lib, melpaBuild }: melpaBuild { pname = "ac-geiser"; - version = "20130929.147"; + version = "20130929.247"; src = fetchFromGitHub { owner = "xiaohanyu"; repo = "ac-geiser"; @@ -426,7 +426,7 @@ sha256 = "02ifz25rq64z0ifxs52aqdz0iz4mi6xvj88hcn3aakkmsj749vvn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-geiser"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ac-geiser"; sha256 = "0v558qz1mp8b1bgk8kgdk5sx5mpd353mw77n5b0pw4b2ikzpz2mx"; name = "ac-geiser"; }; @@ -439,7 +439,7 @@ ac-haskell-process = callPackage ({ auto-complete, fetchFromGitHub, fetchurl, haskell-mode, lib, melpaBuild }: melpaBuild { pname = "ac-haskell-process"; - version = "20150423.902"; + version = "20150423.1002"; src = fetchFromGitHub { owner = "purcell"; repo = "ac-haskell-process"; @@ -447,7 +447,7 @@ sha256 = "0m33v9iy3y37sicfmpx7kvmn8v1a8k6cs7d0v9v5k93p4d5ila41"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-haskell-process"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ac-haskell-process"; sha256 = "0kv4z850kv03wiax1flnrp6sgqja25j23l719w7rkr7ck110q8rw"; name = "ac-haskell-process"; }; @@ -460,7 +460,7 @@ ac-helm = callPackage ({ auto-complete, cl-lib ? null, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, popup }: melpaBuild { pname = "ac-helm"; - version = "20160318.2133"; + version = "20160318.2233"; src = fetchFromGitHub { owner = "yasuyk"; repo = "ac-helm"; @@ -468,7 +468,7 @@ sha256 = "1fyikdwn0gzng7pbmfg7zb7jphjv228776vsjc12j7g1aqz92n4l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-helm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ac-helm"; sha256 = "16ajxlhcah5zbvywpc6l4l1arr308gjpgvdx6l1nrv2zvpckhlwq"; name = "ac-helm"; }; @@ -481,7 +481,7 @@ ac-html = callPackage ({ auto-complete, dash, f, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "ac-html"; - version = "20151005.231"; + version = "20151005.331"; src = fetchFromGitHub { owner = "cheunghy"; repo = "ac-html"; @@ -489,7 +489,7 @@ sha256 = "1sip87j4wvlf9pfnpr0zyyhys1dd9smh6hy3zs08ihbdh98krgs5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-html"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ac-html"; sha256 = "0qf8f75b6dvy844dq8vh8d9c6k599rh1ynjcif9bwvdpf6pxwvqa"; name = "ac-html"; }; @@ -502,7 +502,7 @@ ac-html-angular = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, web-completion-data }: melpaBuild { pname = "ac-html-angular"; - version = "20151225.119"; + version = "20151225.219"; src = fetchFromGitHub { owner = "osv"; repo = "ac-html-angular"; @@ -510,7 +510,7 @@ sha256 = "1v3ia439h4n2i204n0sazzbwwm0l5k6j31gq58iv2rqrq2ysikny"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-html-angular"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ac-html-angular"; sha256 = "05rbxf5kbr4jlskrhvfvhf82qvb55zl5cb6z1ymfh9l3h9j9xk3s"; name = "ac-html-angular"; }; @@ -523,7 +523,7 @@ ac-html-bootstrap = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, web-completion-data }: melpaBuild { pname = "ac-html-bootstrap"; - version = "20160302.1101"; + version = "20160302.1201"; src = fetchFromGitHub { owner = "osv"; repo = "ac-html-bootstrap"; @@ -531,7 +531,7 @@ sha256 = "0ry398awbsyswc87v275x4mdyv64kr0s647y6nagqg1h3n3jhvsq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-html-bootstrap"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ac-html-bootstrap"; sha256 = "0z71m6xws0k9smhsswaivpikr64mv0wh6klnmi5cwhwcqas6kdi1"; name = "ac-html-bootstrap"; }; @@ -544,7 +544,7 @@ ac-html-csswatcher = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, web-completion-data }: melpaBuild { pname = "ac-html-csswatcher"; - version = "20151208.1513"; + version = "20151208.1613"; src = fetchFromGitHub { owner = "osv"; repo = "ac-html-csswatcher"; @@ -552,7 +552,7 @@ sha256 = "0swbw62zh5rjjf73pvmp8brrrmk6bp061k793z4z83v7ic0cicrr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-html-csswatcher"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ac-html-csswatcher"; sha256 = "0jb9dnm2lxadrxssf0rjqw8yvvskcq4hys8c21shjyj3gkvwbfqn"; name = "ac-html-csswatcher"; }; @@ -565,7 +565,7 @@ ac-inf-ruby = callPackage ({ auto-complete, fetchFromGitHub, fetchurl, inf-ruby, lib, melpaBuild }: melpaBuild { pname = "ac-inf-ruby"; - version = "20131115.550"; + version = "20131115.650"; src = fetchFromGitHub { owner = "purcell"; repo = "ac-inf-ruby"; @@ -573,7 +573,7 @@ sha256 = "0xdqk0qr1mmm5q3049ldwlmrcfgz6rzk4yxc8qgz6kll27kciia0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-inf-ruby"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ac-inf-ruby"; sha256 = "04jclf0yxz78x1fsaf5sh1p466947nqrcx337kyhqn0nkj3hplqr"; name = "ac-inf-ruby"; }; @@ -586,7 +586,7 @@ ac-ispell = callPackage ({ auto-complete, cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ac-ispell"; - version = "20151031.2126"; + version = "20151031.2226"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-ac-ispell"; @@ -594,7 +594,7 @@ sha256 = "1cq73bdv3lkn8v3nx6aznygqaac9s5i7pvirl8wz9ib31hsgwpbk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-ispell"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ac-ispell"; sha256 = "1vsy2qjh60n5lavivpqhhcpg5pk8zz2r0wy1sb65capn841zdi67"; name = "ac-ispell"; }; @@ -607,7 +607,7 @@ ac-js2 = callPackage ({ fetchFromGitHub, fetchurl, js2-mode, lib, melpaBuild, skewer-mode }: melpaBuild { pname = "ac-js2"; - version = "20140906.642"; + version = "20140906.742"; src = fetchFromGitHub { owner = "ScottyB"; repo = "ac-js2"; @@ -615,7 +615,7 @@ sha256 = "0yn9333rjs2pzb1wk1japclsqagdcl28j0yjl3q5b70g5gi5vx7k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-js2"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ac-js2"; sha256 = "0gcr0xdi89nj3854v2z3nndfgazmcdzmd6wdndl0i4s7pdfl96fa"; name = "ac-js2"; }; @@ -628,7 +628,7 @@ ac-math = callPackage ({ auto-complete, fetchFromGitHub, fetchurl, lib, math-symbol-lists, melpaBuild }: melpaBuild { pname = "ac-math"; - version = "20141116.1527"; + version = "20141116.1627"; src = fetchFromGitHub { owner = "vspinu"; repo = "ac-math"; @@ -636,7 +636,7 @@ sha256 = "0p5cdaw9v8jgnmjqpb95bxy4khwbdgg19wzg8jkr2j2p55dpfbd6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-math"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ac-math"; sha256 = "02c821zabxp9qkwx252pxjmssdbmas0iwanw09r03bmiby9d4nsl"; name = "ac-math"; }; @@ -649,7 +649,7 @@ ac-mozc = callPackage ({ auto-complete, cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, mozc }: melpaBuild { pname = "ac-mozc"; - version = "20150227.1019"; + version = "20150227.1119"; src = fetchFromGitHub { owner = "igjit"; repo = "ac-mozc"; @@ -657,7 +657,7 @@ sha256 = "19cb8kq8gmrplkxil22ahvbyq5cng1l2vh2lrfiyqpjsap7zfjz5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-mozc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ac-mozc"; sha256 = "1v3iiid8cq50i076q98ycks9m827xzncgxqwqs2rqhab0ncy3h0f"; name = "ac-mozc"; }; @@ -670,7 +670,7 @@ ac-octave = callPackage ({ auto-complete, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ac-octave"; - version = "20150111.1908"; + version = "20150111.2008"; src = fetchFromGitHub { owner = "coldnew"; repo = "ac-octave"; @@ -678,7 +678,7 @@ sha256 = "16bg2zg08223x7q54rmfjziaccgm64h9vc8z59sjljkw1bgx9m7q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-octave"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ac-octave"; sha256 = "1g5s4dk1rcgkjn17jfw6g201pw0vfhqcx1nhigmnizpnzy0man9z"; name = "ac-octave"; }; @@ -691,15 +691,15 @@ ac-php = callPackage ({ auto-complete, company, dash, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, php-mode, popup, s, xcscope, yasnippet }: melpaBuild { pname = "ac-php"; - version = "20160416.213"; + version = "20160507.305"; src = fetchFromGitHub { owner = "xcwen"; repo = "ac-php"; - rev = "11acb76d2eeeecd3041a0b237db729a795a7711c"; - sha256 = "1h06s6bn9ld868zbnp7zmgkk6b3m9rmgghf897slmqnqd3wdq3pa"; + rev = "5661724c7c2623c5d56f571a045abad201cb943c"; + sha256 = "01n2azwmxyl5sp4ffsxcrcfgpq43jf2hzr4lrbxwfdjqvl38j8hz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-php"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ac-php"; sha256 = "0p9qq8nszp5jb71s35cxnmcxp50b62y2jv1ha7vvqfz5p8miallk"; name = "ac-php"; }; @@ -723,7 +723,7 @@ ac-racer = callPackage ({ auto-complete, cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, racer }: melpaBuild { pname = "ac-racer"; - version = "20150831.341"; + version = "20150831.441"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-ac-racer"; @@ -731,7 +731,7 @@ sha256 = "0g7xbfsfqpmcay56y8xbmif52ccz430s3rjxf5bgl9ahkk7zgkzl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-racer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ac-racer"; sha256 = "1vkvh8y3ckvzvqxj4i2k6jqri94121wbfjziybli74qba8dca4yp"; name = "ac-racer"; }; @@ -744,7 +744,7 @@ ac-skk = callPackage ({ auto-complete, cl-lib ? null, ddskk, fetchFromGitHub, fetchurl, lib, melpaBuild, tinysegmenter }: melpaBuild { pname = "ac-skk"; - version = "20141229.1919"; + version = "20141229.2019"; src = fetchFromGitHub { owner = "myuhe"; repo = "ac-skk.el"; @@ -752,7 +752,7 @@ sha256 = "1nvz0jfz4x99xc5ywspl8fdpyqns5zd0j7i4bwzlwplmy3qakjwm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-skk"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ac-skk"; sha256 = "0iycyfgv8v15ygngvyx66m3w3sv8p9h6q6j1hbpzwd8azl8fzj5z"; name = "ac-skk"; }; @@ -765,7 +765,7 @@ ac-slime = callPackage ({ auto-complete, cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, slime }: melpaBuild { pname = "ac-slime"; - version = "20150729.2235"; + version = "20150729.2335"; src = fetchFromGitHub { owner = "purcell"; repo = "ac-slime"; @@ -773,7 +773,7 @@ sha256 = "13yghv7p6c91fn8mrxbwrb6ldk5n3b6nj6a7pwsvks1q73i1pl88"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-slime"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ac-slime"; sha256 = "0mk3k1lcbqa16xvsbgk28x09vzqyaidqaqpq934xdbrwhdgwgckg"; name = "ac-slime"; }; @@ -786,7 +786,7 @@ ac-sly = callPackage ({ auto-complete, cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, sly }: melpaBuild { pname = "ac-sly"; - version = "20150421.1522"; + version = "20150421.1622"; src = fetchFromGitHub { owner = "qoocku"; repo = "ac-sly"; @@ -794,7 +794,7 @@ sha256 = "0mif35chyj4ai1bj4gq8qi38dyfsp72yi1xchhzy9zi2plpvqa7a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-sly"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ac-sly"; sha256 = "1ng81b5f8w2s9mm9s7h5kwyx8fdwndnlsbzx50slmqyaz2ad15mx"; name = "ac-sly"; }; @@ -807,7 +807,7 @@ ace-flyspell = callPackage ({ ace-jump-mode, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ace-flyspell"; - version = "20150523.1315"; + version = "20150523.1415"; src = fetchFromGitHub { owner = "cute-jumper"; repo = "ace-flyspell"; @@ -815,7 +815,7 @@ sha256 = "1msj0dbzfan0jax5wh5rmv4l7cp5zhrp5wy5k1n9s7xdgz2dprzj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ace-flyspell"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ace-flyspell"; sha256 = "0f24qrpcvyg7h6ylyggn4zrbydci537iigshac1d8yywsr0j47gd"; name = "ace-flyspell"; }; @@ -828,7 +828,7 @@ ace-isearch = callPackage ({ ace-jump-mode, avy, emacs, fetchFromGitHub, fetchurl, helm-swoop, lib, melpaBuild }: melpaBuild { pname = "ace-isearch"; - version = "20150808.756"; + version = "20150808.856"; src = fetchFromGitHub { owner = "tam17aki"; repo = "ace-isearch"; @@ -836,7 +836,7 @@ sha256 = "02i3gxk7kfv3a0pcc82z69hgvjw8bvn40y8h7d59chg8bixcwbyr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ace-isearch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ace-isearch"; sha256 = "0n8qf08z9n8c2sp5ks29nxcfks5mil1jj6wq348apda8safk36hm"; name = "ace-isearch"; }; @@ -849,7 +849,7 @@ ace-jump-buffer = callPackage ({ avy, dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ace-jump-buffer"; - version = "20160229.1658"; + version = "20160229.1758"; src = fetchFromGitHub { owner = "waymondo"; repo = "ace-jump-buffer"; @@ -857,7 +857,7 @@ sha256 = "1y2rl4faj1nfjqbh393yp460cbv24simllak31ag1ischpcbqjy4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ace-jump-buffer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ace-jump-buffer"; sha256 = "0hkxa0ps0v1hwmjafqbnyr6rc4s0w95igk8y3w53asl7f5sj5mpi"; name = "ace-jump-buffer"; }; @@ -870,7 +870,7 @@ ace-jump-helm-line = callPackage ({ avy, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "ace-jump-helm-line"; - version = "20160329.1418"; + version = "20160329.1518"; src = fetchFromGitHub { owner = "cute-jumper"; repo = "ace-jump-helm-line"; @@ -878,7 +878,7 @@ sha256 = "1d4bxxcnjbdr6cjr3jmz2zrnzjv5pwrypbp4xqgqyv9rz02n7ac1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ace-jump-helm-line"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ace-jump-helm-line"; sha256 = "04q8wh6jskvbiq6y2xsp2ir23vgz5zw09rm127sgiqrmn0jc61b9"; name = "ace-jump-helm-line"; }; @@ -891,7 +891,7 @@ ace-jump-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ace-jump-mode"; - version = "20140616.315"; + version = "20140616.415"; src = fetchFromGitHub { owner = "winterTTr"; repo = "ace-jump-mode"; @@ -899,7 +899,7 @@ sha256 = "17axrgd99glnl6ma4ls3k01ysdqmiqr581wnrbsn3s4gp53mm2x6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ace-jump-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ace-jump-mode"; sha256 = "0yk0kppjyblr5wamncrjm3ym3n8jcl0r0g0cbnwni89smvpngij6"; name = "ace-jump-mode"; }; @@ -912,7 +912,7 @@ ace-jump-zap = callPackage ({ ace-jump-mode, dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ace-jump-zap"; - version = "20150330.1542"; + version = "20150330.1642"; src = fetchFromGitHub { owner = "waymondo"; repo = "ace-jump-zap"; @@ -920,7 +920,7 @@ sha256 = "0z0rblr41r94l4b2gh9fcw50nk82ifxrr3ilxqzbb8wmvil54gh4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ace-jump-zap"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ace-jump-zap"; sha256 = "07bkmly3lvlbby2m13nj3m1q0gcnwy5sas7d6ws6vr9jh0d36byb"; name = "ace-jump-zap"; }; @@ -933,15 +933,15 @@ ace-link = callPackage ({ avy, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ace-link"; - version = "20160326.820"; + version = "20160506.236"; src = fetchFromGitHub { owner = "abo-abo"; repo = "ace-link"; - rev = "9a81b3f3e799d80e400bf3dd87b3eab7b4b07aa2"; - sha256 = "1z8vjks817m328sh3qw48072fi905w5a6mjwymqiqfkzpmf9n48j"; + rev = "5c955a17d94d53ee47ed765f109a0027194b7dee"; + sha256 = "0qcj6farhin29q359v9yrzvs2vxda1dk4xdai57bda81bf2fha3a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ace-link"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ace-link"; sha256 = "1jl805r2s3wa0xyhss1q28rcy6y2fngf0yfcrcd9wf8kamhpajk5"; name = "ace-link"; }; @@ -954,7 +954,7 @@ ace-mc = callPackage ({ ace-jump-mode, dash, fetchFromGitHub, fetchurl, lib, melpaBuild, multiple-cursors }: melpaBuild { pname = "ace-mc"; - version = "20160408.1937"; + version = "20160408.2037"; src = fetchFromGitHub { owner = "mm--"; repo = "ace-mc"; @@ -962,7 +962,7 @@ sha256 = "1zgmqgh5dff914dw7i8s142znd849gv4xh86f8q8agx5r7almx14"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ace-mc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ace-mc"; sha256 = "1kca6ha2glhv7lkamqx3sxp7dy05c7f6xxy3lr3v2bik8r50jss8"; name = "ace-mc"; }; @@ -972,22 +972,22 @@ license = lib.licenses.free; }; }) {}; - ace-pinyin = callPackage ({ ace-jump-mode, avy, fetchFromGitHub, fetchurl, lib, melpaBuild }: + ace-pinyin = callPackage ({ ace-jump-mode, avy, fetchFromGitHub, fetchurl, lib, melpaBuild, pinyinlib }: melpaBuild { pname = "ace-pinyin"; - version = "20160131.1556"; + version = "20160506.1813"; src = fetchFromGitHub { owner = "cute-jumper"; repo = "ace-pinyin"; - rev = "1e4d4be64fb3db294b498b8eec531e8fb1101b7f"; - sha256 = "1zx94dysd817i4xgapzm6fb8fcqb90sqym212b57qlqimyi3f59m"; + rev = "c444d8d6861dafd06dd41e694dc9db32652e3b7c"; + sha256 = "1d2g873zwq78ggs47954lccmaky20746wg0gafyj93d1qyc3m8rn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ace-pinyin"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ace-pinyin"; sha256 = "18gmj71zd0i6yx8ifjxsqz2v81jx0j37f5kxllf31w7fj32ymbkc"; name = "ace-pinyin"; }; - packageRequires = [ ace-jump-mode avy ]; + packageRequires = [ ace-jump-mode avy pinyinlib ]; meta = { homepage = "https://melpa.org/#/ace-pinyin"; license = lib.licenses.free; @@ -996,7 +996,7 @@ ace-popup-menu = callPackage ({ avy-menu, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ace-popup-menu"; - version = "20160126.631"; + version = "20160126.731"; src = fetchFromGitHub { owner = "mrkkrp"; repo = "ace-popup-menu"; @@ -1004,7 +1004,7 @@ sha256 = "1qiiivkwa95bhyym8ly7fnwwglc9dcifkyr314bsq8m4rp1mgry4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ace-popup-menu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ace-popup-menu"; sha256 = "1cq1mpv7v98bqrpsm598krq1741b6rwih71cx3yjifpbagrv4m5s"; name = "ace-popup-menu"; }; @@ -1017,7 +1017,7 @@ ace-window = callPackage ({ avy, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ace-window"; - version = "20160225.1019"; + version = "20160225.1119"; src = fetchFromGitHub { owner = "abo-abo"; repo = "ace-window"; @@ -1025,7 +1025,7 @@ sha256 = "1afc0f8ax334gv644zdrrp55754gxa353iijvmfzxmlr67v23j96"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ace-window"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ace-window"; sha256 = "1k0x8m1phmvgdxb5aj841iai9q96a5lfq8i4b5vnlbc3w888n3xa"; name = "ace-window"; }; @@ -1038,14 +1038,14 @@ achievements = callPackage ({ fetchhg, fetchurl, keyfreq, lib, melpaBuild }: melpaBuild { pname = "achievements"; - version = "20150530.1326"; + version = "20150530.1426"; src = fetchhg { url = "https://bitbucket.com/gvol/emacs-achievements"; rev = "5b4b7b6816aa"; sha256 = "0zjncby2884cv8nz2ss7i0p17l15lsk88zwvb7b0gr3apbfpcpa3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/achievements"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/achievements"; sha256 = "1pwlibq87ph20z2pssk5hbgs6v8kdym9193jjdx2rxp0nic4k0cr"; name = "achievements"; }; @@ -1058,7 +1058,7 @@ ack-menu = callPackage ({ fetchFromGitHub, fetchurl, lib, mag-menu, melpaBuild }: melpaBuild { pname = "ack-menu"; - version = "20150504.1522"; + version = "20150504.1622"; src = fetchFromGitHub { owner = "chumpage"; repo = "ack-menu"; @@ -1066,7 +1066,7 @@ sha256 = "02ba4d8qkvgy52g0zcbyfvsnhr9685gq569nkwa2as30xdcq3khm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ack-menu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ack-menu"; sha256 = "1d2kw04ndxji2qjcm1b65qnxpp08zx8gbia8bl6x6mnjb2isc2d9"; name = "ack-menu"; }; @@ -1079,7 +1079,7 @@ actionscript-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "actionscript-mode"; - version = "20140605.1328"; + version = "20140605.1428"; src = fetchFromGitHub { owner = "austinhaas"; repo = "actionscript-mode"; @@ -1087,7 +1087,7 @@ sha256 = "1rxx2j7kkzjdsk06zgisiydg8dc18vqll4wl6q9mfhrg2y12lq94"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/actionscript-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/actionscript-mode"; sha256 = "1dkiay9jmizvslji5kzab4dxm1dq0jm8ps7sjq6710g7a5aqdvwq"; name = "actionscript-mode"; }; @@ -1100,7 +1100,7 @@ addressbook-bookmark = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "addressbook-bookmark"; - version = "20160317.103"; + version = "20160317.203"; src = fetchFromGitHub { owner = "thierryvolpiatto"; repo = "addressbook-bookmark"; @@ -1108,7 +1108,7 @@ sha256 = "0dk7hyp7cs0ws4w7i32g7di5aqkkxlxkvmrllg43bi5ivlji7pvn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/addressbook-bookmark"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/addressbook-bookmark"; sha256 = "15p00v4ndrsbadal0ss176mks4ynj39786bmrnil29b6sqibd43r"; name = "addressbook-bookmark"; }; @@ -1121,7 +1121,7 @@ adoc-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, markup-faces, melpaBuild }: melpaBuild { pname = "adoc-mode"; - version = "20160314.1630"; + version = "20160314.1730"; src = fetchFromGitHub { owner = "sensorflo"; repo = "adoc-mode"; @@ -1129,7 +1129,7 @@ sha256 = "199da15f6p84809z33w3m35lrk9bgx8qpgnxsxgisli373mpzvd8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/adoc-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/adoc-mode"; sha256 = "0wgagcsh0fkb51fy17ilrs20z2vzdpmz97vpwijcfy2b9rypxq15"; name = "adoc-mode"; }; @@ -1142,7 +1142,7 @@ aes = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "aes"; - version = "20160121.1437"; + version = "20160121.1537"; src = fetchFromGitHub { owner = "Sauermann"; repo = "emacs-aes"; @@ -1150,7 +1150,7 @@ sha256 = "1p90yv2xl1hhpjm0mmhdjyf1jagf79610hkzhw8nycy2p1y4gvl6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/aes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/aes"; sha256 = "11vl9x3ldrv7q7rd29xk4xmlvfxs0m6iys84f6mlgf00190l5r5v"; name = "aes"; }; @@ -1163,7 +1163,7 @@ afternoon-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "afternoon-theme"; - version = "20140104.1259"; + version = "20140104.1359"; src = fetchFromGitHub { owner = "osener"; repo = "emacs-afternoon-theme"; @@ -1171,7 +1171,7 @@ sha256 = "19d5d6qs5nwmpf26rsb86ranb5p4236qp7p2b4i88cimcmzspylb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/afternoon-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/afternoon-theme"; sha256 = "13xgdw8px58sxpl7nyhkcdxwqdpp13i8wghvlb3l4471plw3vqgj"; name = "afternoon-theme"; }; @@ -1184,7 +1184,7 @@ ag = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "ag"; - version = "20160321.1806"; + version = "20160321.1906"; src = fetchFromGitHub { owner = "Wilfred"; repo = "ag.el"; @@ -1192,7 +1192,7 @@ sha256 = "1hwjd1ln99595xwakynhgr3azs4h8rziy75kfz8k5b7i3hns7z08"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ag"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ag"; sha256 = "1r4ai09vdckkg4h4i7dp781qqmm4kky53p4q8azp3n2c78i1vz6g"; name = "ag"; }; @@ -1205,7 +1205,7 @@ aggressive-fill-paragraph = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "aggressive-fill-paragraph"; - version = "20160301.1614"; + version = "20160301.1714"; src = fetchFromGitHub { owner = "davidshepherd7"; repo = "aggressive-fill-paragraph-mode"; @@ -1213,7 +1213,7 @@ sha256 = "05lci7hpla4f0z124zr58aj282pgmabqkzgcqadf0hbnqbz2jwcs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/aggressive-fill-paragraph"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/aggressive-fill-paragraph"; sha256 = "1df4bk3ks09805y67af6z1gpfln0lz773jzbbckfl0fy3yli0dja"; name = "aggressive-fill-paragraph"; }; @@ -1226,15 +1226,15 @@ aggressive-indent = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "aggressive-indent"; - version = "20160416.1130"; + version = "20160501.2211"; src = fetchFromGitHub { owner = "Malabarba"; repo = "aggressive-indent-mode"; - rev = "97eaa5778ce0cd596a0807ef2e676d2681aabf84"; - sha256 = "0lr6n680ys7c6g6ah9xrid31640yjjkrqavb4164lwydfj5yy1xa"; + rev = "c0a1e24ef39e2b0f388135c2ed8f8b419346337c"; + sha256 = "0wm8qp8d961ic1jr7g29m3vk807rq2xgi7zbk31b82ghakdvdy3j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/aggressive-indent"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/aggressive-indent"; sha256 = "1qi8jbr28gax35siim3hnnkiy8pa2vcrzqzc6axr98wzny46x0i2"; name = "aggressive-indent"; }; @@ -1246,14 +1246,14 @@ }) {}; ahg = callPackage ({ fetchhg, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ahg"; - version = "20160323.525"; + version = "20160505.424"; src = fetchhg { url = "https://bitbucket.com/agriggio/ahg"; - rev = "5cfc31e14578"; - sha256 = "10l3m322kh41yzal0wvbbdk8mk2yp8q9wx7asq3v1w5m2cwiylwq"; + rev = "ccff603455ed"; + sha256 = "0jz7n29ajq559dkk0cj4y8a8skmpcmh0glyfabnf78j0a615x1ix"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ahg"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ahg"; sha256 = "0kw138lfzwp54fmly3jzzml11y7fhcjp3w0irmwdzr68lc206lr4"; name = "ahg"; }; @@ -1266,7 +1266,7 @@ ahk-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ahk-mode"; - version = "20160320.1721"; + version = "20160320.1821"; src = fetchFromGitHub { owner = "ralesi"; repo = "ahk-mode"; @@ -1274,7 +1274,7 @@ sha256 = "07qpwa990bgs9028rqqk344c3z4hnr1jkfzcx9fi4z5k756zmw3b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ahk-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ahk-mode"; sha256 = "066l4hsb49wbyv381qgn9k4hn8gxlzi20h3qaim9grngjj5ljbni"; name = "ahk-mode"; }; @@ -1287,7 +1287,7 @@ ahungry-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ahungry-theme"; - version = "20160208.2232"; + version = "20160208.2332"; src = fetchFromGitHub { owner = "ahungry"; repo = "color-theme-ahungry"; @@ -1295,7 +1295,7 @@ sha256 = "1436i7vdzaqykimfrm2y1s3dw2q398dzv1hyr9mr5z4kxa5f0rjj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ahungry-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ahungry-theme"; sha256 = "0fhim0qscpqx9siprp3ax1azxzmqkzvrjx517d9bnd68z7xxbpqy"; name = "ahungry-theme"; }; @@ -1308,7 +1308,7 @@ airline-themes = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, powerline }: melpaBuild { pname = "airline-themes"; - version = "20160203.1710"; + version = "20160203.1810"; src = fetchFromGitHub { owner = "AnthonyDiGirolamo"; repo = "airline-themes"; @@ -1316,7 +1316,7 @@ sha256 = "0blrpqn8wy9pwzikgzb0v6x4hk7axv93j4byfci62fh1905zfkkb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/airline-themes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/airline-themes"; sha256 = "0jkhb6nigyjmwqny7g59h4ssfy64vl3qnwcw46wnx5k9i73cjyih"; name = "airline-themes"; }; @@ -1329,7 +1329,7 @@ airplay = callPackage ({ deferred, fetchFromGitHub, fetchurl, lib, melpaBuild, request, simple-httpd }: melpaBuild { pname = "airplay"; - version = "20130212.626"; + version = "20130212.726"; src = fetchFromGitHub { owner = "gongo"; repo = "airplay-el"; @@ -1337,7 +1337,7 @@ sha256 = "1lxpfswp1bjrz192px79f155dycf2kazpr7dfrcr1gyshlgxkpf7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/airplay"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/airplay"; sha256 = "095nibgs197iplphk6csvkgsrgh1fcfyy33py860v6qmihvk538f"; name = "airplay"; }; @@ -1350,15 +1350,15 @@ alchemist = callPackage ({ company, dash, elixir-mode, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, pkg-info }: melpaBuild { pname = "alchemist"; - version = "20160426.7"; + version = "20160427.357"; src = fetchFromGitHub { owner = "tonini"; repo = "alchemist.el"; - rev = "6cb2b967c3461b440d64d729381b14e87a53ee2c"; - sha256 = "03hm0jdhy9yh4lslckbpkzsy9fs5019c03i0q3f167y33hjpi4g0"; + rev = "f61cb55616e8441f23f07dbf70bd74e4f89178b2"; + sha256 = "02399ggk8yihddak0dycgdaq0my1xp5dk0w8h40gl4fyxapxhcws"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/alchemist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/alchemist"; sha256 = "18jxw0zb7y34qbm4bcpfpb2656f0h9grmrbfskgp4ra4q5q3n369"; name = "alchemist"; }; @@ -1371,7 +1371,7 @@ alda-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "alda-mode"; - version = "20160322.200"; + version = "20160322.300"; src = fetchFromGitHub { owner = "jgkamat"; repo = "alda-mode"; @@ -1379,7 +1379,7 @@ sha256 = "1bzw713rvih6p2h7c6vw6iyjyiqrrgwr46p5r0l57zklj279m37r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/alda-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/alda-mode"; sha256 = "0vpxiw3k0qxp6s19n93qkkyrr44rbw38ygriqdrfpp84pa09wprh"; name = "alda-mode"; }; @@ -1392,7 +1392,7 @@ alect-themes = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "alect-themes"; - version = "20160414.314"; + version = "20160414.414"; src = fetchFromGitHub { owner = "alezost"; repo = "alect-themes"; @@ -1400,7 +1400,7 @@ sha256 = "1g9fai2i8izswiih4ba0l2wamhfl6pvmkq7is8x0wr45waldcga9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/alect-themes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/alect-themes"; sha256 = "04fq65qnxlvl5nc2q037c6yb4nf422dfw2913gv6zfh9rdmxsks8"; name = "alect-themes"; }; @@ -1413,15 +1413,15 @@ alert = callPackage ({ fetchFromGitHub, fetchurl, gntp, lib, log4e, melpaBuild }: melpaBuild { pname = "alert"; - version = "20151123.959"; + version = "20160506.2121"; src = fetchFromGitHub { owner = "jwiegley"; repo = "alert"; - rev = "dfb003476aeb26d08782c17257f3a81934bcf6ce"; - sha256 = "0z7yfjg14bzndpm9ski1a1mdixvrykg7d08cd86dc82bghb3px2z"; + rev = "aa5938ae2c74ee1c296b844dc1d126cb8a31dfe1"; + sha256 = "1p6969wq2n26jvbh8p2gwc0hw38h4xq4rs299i7yzviq2hwvg8r1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/alert"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/alert"; sha256 = "0x3cvczq09jvshz435jw2fjm69457x2wxdvvbbjq46nfnybhi118"; name = "alert"; }; @@ -1434,7 +1434,7 @@ align-cljlet = callPackage ({ clojure-mode, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "align-cljlet"; - version = "20160112.1501"; + version = "20160112.1601"; src = fetchFromGitHub { owner = "gstamp"; repo = "align-cljlet"; @@ -1442,7 +1442,7 @@ sha256 = "0l2rgs0rd4nmv4v7m10zhf2znzfvdifv1vlhpa3zbppg0fj8zph1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/align-cljlet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/align-cljlet"; sha256 = "0pnhhv33rvlmb3823xpy9v5h6q99fa7fn38djbwry4rymi4jmlih"; name = "align-cljlet"; }; @@ -1454,13 +1454,13 @@ }) {}; all-ext = callPackage ({ all, fetchurl, lib, melpaBuild }: melpaBuild { pname = "all-ext"; - version = "20130824.706"; + version = "20130824.806"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/all-ext.el"; sha256 = "10j70bwa28xpmqwigvls76jg6vz0iky88lmkq4pk35bg3rz09r4m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/all-ext"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/all-ext"; sha256 = "1zi266cm5hpfhnnnzbsm4s1w0lsy4sj5z8d020y0cg57yn2v62dv"; name = "all-ext"; }; @@ -1473,7 +1473,7 @@ amd-mode = callPackage ({ ag, dash, f, fetchFromGitHub, fetchurl, js2-mode, js2-refactor, lib, makey, melpaBuild, projectile, s }: melpaBuild { pname = "amd-mode"; - version = "20160320.431"; + version = "20160320.531"; src = fetchFromGitHub { owner = "NicolasPetton"; repo = "amd-mode.el"; @@ -1481,7 +1481,7 @@ sha256 = "090qmjg3jf7m0cvx5pi5fmrkjfanwg60wiimcli7kq4gxpjvzwp9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/amd-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/amd-mode"; sha256 = "17ry6vm5xlmdfs0mykdyn05cik38yswq5axdgn8hxrvvb6f58d06"; name = "amd-mode"; }; @@ -1503,15 +1503,15 @@ ample-regexps = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ample-regexps"; - version = "20151023.500"; + version = "20151023.600"; src = fetchFromGitHub { owner = "immerrr"; repo = "ample-regexps.el"; - rev = "884c712a82773d3af500e71d20bebe52340352c5"; - sha256 = "18cicz11i19cpabrq6khnl9ks1khn6gw5a4ckaq4y65r40x0cr6g"; + rev = "c806766693827a9ca12a6a07f6294260d6ef776e"; + sha256 = "17kdv4447dyjaz2chi1f8hlrry8pgvjgxivvk48r9yzi1crjd1zj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ample-regexps"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ample-regexps"; sha256 = "00y07pd438v7ldkn5f1w84cpxa1mvcnzjkj6sf5l5pm97xqiz7j2"; name = "ample-regexps"; }; @@ -1524,7 +1524,7 @@ ample-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ample-theme"; - version = "20150814.1301"; + version = "20150814.1401"; src = fetchFromGitHub { owner = "jordonbiondo"; repo = "ample-theme"; @@ -1532,7 +1532,7 @@ sha256 = "0x72czw5rmz89w5fa27z54bz8qirrr882g0r37pb8li04j1hk7kw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ample-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ample-theme"; sha256 = "055c6jy2q761za4cl1vlqdskcd3mc1j58k8b4418q7h2lv2zc0ry"; name = "ample-theme"; }; @@ -1545,7 +1545,7 @@ ample-zen-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ample-zen-theme"; - version = "20150119.1554"; + version = "20150119.1654"; src = fetchFromGitHub { owner = "mjwall"; repo = "ample-zen"; @@ -1553,7 +1553,7 @@ sha256 = "18z9jl5d19a132k6g1dvwqfbbdh5cx66b2qxlcjsfiqxlxglc2sa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ample-zen-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ample-zen-theme"; sha256 = "0xygk80mh05qssrbfj4h6k50pg557dyj6kzc2pdlmnr5r4gnzdn3"; name = "ample-zen-theme"; }; @@ -1566,7 +1566,7 @@ anaconda-mode = callPackage ({ dash, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, pythonic, s }: melpaBuild { pname = "anaconda-mode"; - version = "20160411.850"; + version = "20160411.950"; src = fetchFromGitHub { owner = "proofit404"; repo = "anaconda-mode"; @@ -1574,7 +1574,7 @@ sha256 = "0p51c8vvm8j11bzf8a64xvmpvbajs0r72m34x80zgcfkg4wij8b6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/anaconda-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/anaconda-mode"; sha256 = "0gz16aam4zrm3s9ms13h4qcdflf55506kgkpyncq3bi54cvv8n1r"; name = "anaconda-mode"; }; @@ -1587,7 +1587,7 @@ anaphora = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "anaphora"; - version = "20140728.1736"; + version = "20140728.1836"; src = fetchFromGitHub { owner = "rolandwalker"; repo = "anaphora"; @@ -1595,7 +1595,7 @@ sha256 = "1ym43y0wqifkzpkm7ayf8cq2wz8pc2wgg9zvdyi0cn9lr9mwpbav"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/anaphora"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/anaphora"; sha256 = "1wb7fb3pc4gxvpjlm6gjbyx0rbhjiwd93qwc4vfw6p865ikl19y2"; name = "anaphora"; }; @@ -1608,13 +1608,13 @@ anchored-transpose = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "anchored-transpose"; - version = "20080905.54"; + version = "20080905.154"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/anchored-transpose.el"; sha256 = "1hklypbp79pgaf1yklbm3qx4skm3xlml0cm1r9b9js3dbqyha651"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/anchored-transpose"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/anchored-transpose"; sha256 = "19dgj1605qxc2znvzj0cj6x29zyrh00qnzk2rlwpn9hvzypg9v7w"; name = "anchored-transpose"; }; @@ -1627,15 +1627,15 @@ android-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "android-mode"; - version = "20160408.723"; + version = "20160408.823"; src = fetchFromGitHub { owner = "remvee"; repo = "android-mode"; - rev = "35d51c5f09f62c3d744037582d72c18ba803bd89"; - sha256 = "1gr2rlk4w842m98ii1swxd7n65qjiy5169cfj31fs1zx0zj4n59y"; + rev = "da93ff7d92bb5b9fcf52c755eb2389ef4c262829"; + sha256 = "1cg35nb4hhibsk9d6daszs2khadqb3gzyzaxjsykxsgmpfh27ikv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/android-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/android-mode"; sha256 = "1nqrvq411yg4b9xb5cvc7ai7lfalwc2rfhclzprvymc4vxh6k4cc"; name = "android-mode"; }; @@ -1648,7 +1648,7 @@ angry-police-captain = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "angry-police-captain"; - version = "20120829.752"; + version = "20120829.852"; src = fetchFromGitHub { owner = "rolpereira"; repo = "angry-police-captain-el"; @@ -1656,7 +1656,7 @@ sha256 = "1m0c7ns7aiycg86cgglir8bkw730fslyg1n15m9ki0da4cnmm97a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/angry-police-captain"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/angry-police-captain"; sha256 = "00r3dx33h0wjxj0687ln8nbl1ff2badm3mk3r3bplfrd61z2qzld"; name = "angry-police-captain"; }; @@ -1669,7 +1669,7 @@ angular-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "angular-mode"; - version = "20151201.1527"; + version = "20151201.1627"; src = fetchFromGitHub { owner = "omouse"; repo = "angularjs-mode"; @@ -1677,7 +1677,7 @@ sha256 = "04kg2x0lif91knmkkh05mj42xw3dkzsnysjda6ian95v57wfg377"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/angular-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/angular-mode"; sha256 = "1bwfmjldnxki0lqi3ys6r2a3nlhbwm1dibsg2dvzirq8qql02w1i"; name = "angular-mode"; }; @@ -1690,7 +1690,7 @@ angular-snippets = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "angular-snippets"; - version = "20140514.23"; + version = "20140514.123"; src = fetchFromGitHub { owner = "magnars"; repo = "angular-snippets.el"; @@ -1698,7 +1698,7 @@ sha256 = "0hdm1a323mzxjfdply8ri3addk146f21d8cmpd18r7dw3j3cdfrn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/angular-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/angular-snippets"; sha256 = "057phgizn1c6njvdfigb23ljs31knq247gr0rcpqfrdaxsnnzm5c"; name = "angular-snippets"; }; @@ -1711,7 +1711,7 @@ annotate = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "annotate"; - version = "20151227.1022"; + version = "20151227.1122"; src = fetchFromGitHub { owner = "bastibe"; repo = "annotate.el"; @@ -1719,7 +1719,7 @@ sha256 = "08gs96r9mbdg0s5l504yp6i5nmi9qr4nwxq3xprsbx9bdzv5l2dx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/annotate"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/annotate"; sha256 = "1ajykgara2m713blj2kfmdz12fzm8jw7klyakkyi6i3c3a9m44jy"; name = "annotate"; }; @@ -1732,7 +1732,7 @@ annoying-arrows-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "annoying-arrows-mode"; - version = "20151113.1102"; + version = "20151113.1202"; src = fetchFromGitHub { owner = "magnars"; repo = "annoying-arrows-mode.el"; @@ -1740,7 +1740,7 @@ sha256 = "1ppq3kszzj2fgr7mwj565bjs8bs285ymy384cnnw7paddgcr9z02"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/annoying-arrows-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/annoying-arrows-mode"; sha256 = "13bwqv3mv7kgi1gms58f5g03q5g7q98n4vv6n28zqmppxm5z33s7"; name = "annoying-arrows-mode"; }; @@ -1753,7 +1753,7 @@ ansi = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "ansi"; - version = "20150703.326"; + version = "20150703.426"; src = fetchFromGitHub { owner = "rejeep"; repo = "ansi.el"; @@ -1761,7 +1761,7 @@ sha256 = "19k71dj83kvc8mks6zhl45vsrsb61via53dqxjv9bny1ybh2av85"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ansi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ansi"; sha256 = "0b5xnv6z471jm53g37njxin6l8yflsgm80y4wxahfgy8apipcq89"; name = "ansi"; }; @@ -1774,7 +1774,7 @@ ansible = callPackage ({ f, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "ansible"; - version = "20160326.1031"; + version = "20160326.1131"; src = fetchFromGitHub { owner = "k1LoW"; repo = "emacs-ansible"; @@ -1782,7 +1782,7 @@ sha256 = "0k927pwhmn1cfl6jqs7ww1g6f64nq5i8f6a732d4q2rbl3aqzbdi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ansible"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ansible"; sha256 = "1xdc05fdglqfbizra6s1zl6knnvaq526dkxqnw9g7w269j8f4z8g"; name = "ansible"; }; @@ -1795,7 +1795,7 @@ ansible-doc = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ansible-doc"; - version = "20150524.1205"; + version = "20150524.1305"; src = fetchFromGitHub { owner = "lunaryorn"; repo = "ansible-doc.el"; @@ -1803,7 +1803,7 @@ sha256 = "1h3rqrjrl8wx7xvvd631jkbbczq3srd4mgz7y9wh3cvz1njdpy62"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ansible-doc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ansible-doc"; sha256 = "03idvnn79fr9id81aivkm7g7cmlsg0c520wcq4da8g013xvi342w"; name = "ansible-doc"; }; @@ -1816,7 +1816,7 @@ ant = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ant"; - version = "20160211.943"; + version = "20160211.1043"; src = fetchFromGitHub { owner = "apg"; repo = "ant-el"; @@ -1824,7 +1824,7 @@ sha256 = "0jb5vl3cq5m3r23fjhcxgxl4g011zkjkkyn5mqqxx22a1sydsvab"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ant"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ant"; sha256 = "06028xjic14yv3rfqyc3k6jyjgm6fqfrf1mv8lvbh2sri2d5ifqa"; name = "ant"; }; @@ -1837,15 +1837,15 @@ anti-zenburn-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "anti-zenburn-theme"; - version = "20160416.1806"; + version = "20160501.1950"; src = fetchFromGitHub { owner = "m00natic"; repo = "anti-zenburn-theme"; - rev = "53591a18aee564c6d08a5be69b4060a299903255"; - sha256 = "06cn81sksvl88l1g3cfgp1kf8xzfv00b31j2rf58f45zlbl5ckv9"; + rev = "cb88783ec49eabec3d3687f9d71b92679329abe7"; + sha256 = "06xa29hq2qgg8hx1igj5hq7c16yj674mlnd3sgj40pwk88j5jp88"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/anti-zenburn-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/anti-zenburn-theme"; sha256 = "1sp9p6m2jy4m9fdn1hz25cmasy0mwwgn46qmvm92i56f5x6jlzzk"; name = "anti-zenburn-theme"; }; @@ -1858,7 +1858,7 @@ anx-api = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "anx-api"; - version = "20140208.914"; + version = "20140208.1014"; src = fetchFromGitHub { owner = "rmloveland"; repo = "emacs-appnexus-api"; @@ -1866,7 +1866,7 @@ sha256 = "0fzxzar8m9qznfxv3wr7vfj9y2110wf6mm5cj55k3sd5djdjhmf1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/anx-api"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/anx-api"; sha256 = "1vzg3wsqyfb9rsfxrpz8k2gazjlz2nwnf4gnn1dypsjspjnzcb8r"; name = "anx-api"; }; @@ -1879,7 +1879,7 @@ anybar = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "anybar"; - version = "20160112.1002"; + version = "20160112.1102"; src = fetchFromGitHub { owner = "tie-rack"; repo = "anybar-el"; @@ -1887,7 +1887,7 @@ sha256 = "0qy5q4rq68nb21k7w3xpil8k8k5awcpjrjlxjwnhcklwb83w3dhf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/anybar"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/anybar"; sha256 = "0prnr8wjhishpf2zmn4b7054vfahk10w05nzsg2p6whaxywcachm"; name = "anybar"; }; @@ -1900,7 +1900,7 @@ anyins = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "anyins"; - version = "20131229.441"; + version = "20131229.541"; src = fetchFromGitHub { owner = "antham"; repo = "anyins"; @@ -1908,7 +1908,7 @@ sha256 = "05lq0bllgn44zs85mgnfdcyjasm6j8m70jdcxksf798i0qdqnk7n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/anyins"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/anyins"; sha256 = "0ncf3kn8rackcidkgda2zs60km3hx87rwr9daj7ksmbb6am09s7c"; name = "anyins"; }; @@ -1921,14 +1921,14 @@ anything = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: melpaBuild { pname = "anything"; - version = "20151018.2103"; + version = "20151018.2203"; src = fetchgit { url = "http://repo.or.cz/r/anything-config.git"; rev = "2d7e0450e13ab04b20f4dff08f32936e78677e58"; sha256 = "0sc64kmykfkcxfs4zd4anxvvdiiyajd9vz9byb7a8ncyc22fs3g9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/anything"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/anything"; sha256 = "13pmks0bsby57v3vp6jcvvzwb771d4qq62djgvrw4ykxqzkcb8fj"; name = "anything"; }; @@ -1941,7 +1941,7 @@ anything-exuberant-ctags = callPackage ({ anything, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "anything-exuberant-ctags"; - version = "20140316.1837"; + version = "20140316.1937"; src = fetchFromGitHub { owner = "k1LoW"; repo = "anything-exuberant-ctags"; @@ -1949,7 +1949,7 @@ sha256 = "0dbf510gcd0m191samih0r4lx6d7sgk0ls0sx2jrdkyacy82ridy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/anything-exuberant-ctags"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/anything-exuberant-ctags"; sha256 = "0p0jq2ggdgaxv2gd9m5iza0y3mjjc82xmgp899yr15pfffa4wihk"; name = "anything-exuberant-ctags"; }; @@ -1962,7 +1962,7 @@ anything-git-files = callPackage ({ anything, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "anything-git-files"; - version = "20130609.443"; + version = "20130609.543"; src = fetchFromGitHub { owner = "tarao"; repo = "anything-git-files-el"; @@ -1970,7 +1970,7 @@ sha256 = "0gj0p7420wx5c186kdccjb9icn656sg5b0zwnwy3fjvhsbbvrb2r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/anything-git-files"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/anything-git-files"; sha256 = "13giasg8lh5968plva449ki9nc3478a63700f8c0yghnwjb77asw"; name = "anything-git-files"; }; @@ -1983,7 +1983,7 @@ anything-git-grep = callPackage ({ anything, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "anything-git-grep"; - version = "20130608.2140"; + version = "20130608.2240"; src = fetchFromGitHub { owner = "mechairoi"; repo = "anything-git-grep"; @@ -1991,7 +1991,7 @@ sha256 = "06fyvk7cjz1aag6fj52qraqmr23b0fqwml41yyid8gjxl4ygmkpv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/anything-git-grep"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/anything-git-grep"; sha256 = "1kw88fvxil9l80w8zn16az7avqplyf2m0l7kp431wb5b1b1508jl"; name = "anything-git-grep"; }; @@ -2004,7 +2004,7 @@ anything-milkode = callPackage ({ anything, fetchFromGitHub, fetchurl, lib, melpaBuild, milkode }: melpaBuild { pname = "anything-milkode"; - version = "20140518.943"; + version = "20140518.1043"; src = fetchFromGitHub { owner = "ongaeshi"; repo = "anything-milkode"; @@ -2012,7 +2012,7 @@ sha256 = "1jw6gqwcl3fx1m7w0a15w2pnzzlqyr1fbg0m81ay358s4w3jn6v7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/anything-milkode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/anything-milkode"; sha256 = "1apc865a01jyx602ldzj32rrjk6xmgnxdccpjpcfgh24h2aqpdan"; name = "anything-milkode"; }; @@ -2025,7 +2025,7 @@ anything-project = callPackage ({ anything, fetchFromGitHub, fetchurl, imakado, lib, melpaBuild }: melpaBuild { pname = "anything-project"; - version = "20141024.427"; + version = "20141024.527"; src = fetchFromGitHub { owner = "imakado"; repo = "anything-project"; @@ -2033,7 +2033,7 @@ sha256 = "16a7i01q8qqkgph1s3jnwdr2arjq3cm3jpv5bk5sqs29c003q0pp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/anything-project"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/anything-project"; sha256 = "10crwm34igb4kjh97alni15xzhsb2s0d4ghva86f2gpjidka9fhr"; name = "anything-project"; }; @@ -2046,7 +2046,7 @@ anything-prosjekt = callPackage ({ anything, fetchFromGitHub, fetchurl, lib, melpaBuild, prosjekt }: melpaBuild { pname = "anything-prosjekt"; - version = "20140129.204"; + version = "20140129.304"; src = fetchFromGitHub { owner = "abingham"; repo = "prosjekt"; @@ -2054,7 +2054,7 @@ sha256 = "1m8zvrv5aws7b0dffk8y6b5mncdk2c4k90mx69jys10fs0gc5hb3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/anything-prosjekt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/anything-prosjekt"; sha256 = "15kgn0wrnbh666kchijdlssf2gp7spgbymr2nwgv6k730cb4mfa8"; name = "anything-prosjekt"; }; @@ -2067,7 +2067,7 @@ anything-replace-string = callPackage ({ anything, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "anything-replace-string"; - version = "20140317.536"; + version = "20140317.636"; src = fetchFromGitHub { owner = "k1LoW"; repo = "anything-replace-string"; @@ -2075,7 +2075,7 @@ sha256 = "1834yj2vgs4dasdfnppc8iw8ll3yif948biq9hj0sbpsa2d8y44k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/anything-replace-string"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/anything-replace-string"; sha256 = "1fagi6cn88p6sf1yhx1qsi7nw9zpyx9hdfl66iyskqwddfvywp71"; name = "anything-replace-string"; }; @@ -2088,7 +2088,7 @@ anything-sage = callPackage ({ anything, cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, sage-shell-mode }: melpaBuild { pname = "anything-sage"; - version = "20141005.613"; + version = "20141005.713"; src = fetchFromGitHub { owner = "stakemori"; repo = "anything-sage"; @@ -2096,7 +2096,7 @@ sha256 = "08xr6fkk1r4r5jqh349d4dfal9nbs2a8y2fp8zn3zlrj2cd0g80k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/anything-sage"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/anything-sage"; sha256 = "1878vj8hzrwfyd2yvxcm0f1vm9m0ndwnj0pcq7j8zm9lxj0w48p3"; name = "anything-sage"; }; @@ -2109,7 +2109,7 @@ anzu = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "anzu"; - version = "20160405.18"; + version = "20160405.118"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-anzu"; @@ -2117,7 +2117,7 @@ sha256 = "1l0frc62i542avx8mmirdbwp6x3iy2ysdpwycpradmx4hsriin2c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/anzu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/anzu"; sha256 = "0i2ia0jisj31vc2pjx9bhv8jccbp24q7c406x3nhh9hxjzs1f41i"; name = "anzu"; }; @@ -2129,13 +2129,13 @@ }) {}; aok = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "aok"; - version = "20130824.627"; + version = "20130824.727"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/aok.el"; sha256 = "10vdmxzifxx3fkpyg76ngnj79k3d2pq0f322rd8ssc66alxhkz3g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/aok"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/aok"; sha256 = "1nkkbfwqp5r44wjwl902gm0xc8p3d2qj5mk1cchilr2rib52zd46"; name = "aok"; }; @@ -2148,7 +2148,7 @@ aozora-view = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "aozora-view"; - version = "20140310.817"; + version = "20140310.917"; src = fetchFromGitHub { owner = "kawabata"; repo = "aozora-view"; @@ -2156,7 +2156,7 @@ sha256 = "0528z3axjmplg2fdbv4jxgy1p39vr4rnsm4a3ps2fanf8bwsyx3l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/aozora-view"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/aozora-view"; sha256 = "0pd2574a6dkhrfr0jf5gvv34ganp6ddylyb6cfpg2d4znwbc2r2w"; name = "aozora-view"; }; @@ -2168,13 +2168,13 @@ }) {}; apache-mode = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "apache-mode"; - version = "20150828.914"; + version = "20150828.1014"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/apache-mode.el"; sha256 = "1jndhcjvj6s1clmyyphl5ss5267c7b5a58fz8gbp1ffk1d9ylfik"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/apache-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/apache-mode"; sha256 = "1a1pj3bk0gplfx217yd6qdn7qrhfbkx2bhkk33k0gq5sia6rzs44"; name = "apache-mode"; }; @@ -2187,15 +2187,15 @@ apel = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "apel"; - version = "20141024.1842"; + version = "20160427.452"; src = fetchFromGitHub { owner = "wanderlust"; repo = "apel"; - rev = "8402e59eadb580f59969114557b331b4d9364f95"; - sha256 = "0sdxnf4b8rqs1cbjxh23wvxmj7ll3zddv8yfdgif6zmgyy8xhc9m"; + rev = "74e1e49626a4bc7b1e9b87d844d3852e976d1df2"; + sha256 = "1aywxk77vfgr1mk7j4pygy9hl4q7lbbx4iik1rs9frkmw6sb8qni"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/apel"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/apel"; sha256 = "0zhlm8lfri3zkhj62cycvdhkkgrn72lqb0dalh8qgr049bdv816y"; name = "apel"; }; @@ -2208,7 +2208,7 @@ apples-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "apples-mode"; - version = "20110120.2218"; + version = "20110120.2318"; src = fetchFromGitHub { owner = "tequilasunset"; repo = "apples-mode"; @@ -2216,7 +2216,7 @@ sha256 = "0br0jl6xnajdx37s5cvs13srn9lldg58y9587a11s3s651xjdq0z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/apples-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/apples-mode"; sha256 = "05ssnxs9ybc26jhr69xl9jpb41bz1688minmlc9msq2nvyfnj97s"; name = "apples-mode"; }; @@ -2229,14 +2229,14 @@ applescript-mode = callPackage ({ fetchsvn, fetchurl, lib, melpaBuild }: melpaBuild { pname = "applescript-mode"; - version = "20120205.507"; + version = "20120205.607"; src = fetchsvn { url = "http://svn.osdn.jp/svnroot/macemacsjp/applescript-mode/trunk"; rev = "584"; sha256 = "0n3y0314ajqhn5hzih09gl72110ifw4vzcgdxm8n6npjbx7irbml"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/applescript-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/applescript-mode"; sha256 = "1ya0dh7gz7qfflhn6dq43rapb2zg7djvxwn7p4jajyjnwbxmk611"; name = "applescript-mode"; }; @@ -2249,7 +2249,7 @@ aproject = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "aproject"; - version = "20150605.406"; + version = "20150605.506"; src = fetchFromGitHub { owner = "vietor"; repo = "aproject"; @@ -2257,7 +2257,7 @@ sha256 = "1wyz8jvdy4m0cn75mm3zvxagm2gl10q51479f91gnqv14b4rndfc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/aproject"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/aproject"; sha256 = "0v3gx2mff2s7knm69y253pm1yr4svy8w00pqbn1chrvymb62jhp2"; name = "aproject"; }; @@ -2270,13 +2270,13 @@ apropos-fn-plus-var = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "apropos-fn-plus-var"; - version = "20151231.1405"; + version = "20151231.1505"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/apropos-fn+var.el"; sha256 = "0wc9zg30a48cj2ssfj9wc7ga0ip9igcxcdbn1wr0qmndzxxa7x5k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/apropos-fn+var"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/apropos-fn+var"; sha256 = "1s5gnsipsj7dhc8ca806grg32i6vlwm78hcxhrbs830vx9k84g5x"; name = "apropos-fn-plus-var"; }; @@ -2289,7 +2289,7 @@ apropospriate-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "apropospriate-theme"; - version = "20160212.1130"; + version = "20160212.1230"; src = fetchFromGitHub { owner = "waymondo"; repo = "apropospriate-theme"; @@ -2297,7 +2297,7 @@ sha256 = "0j0k5ak5pzh3n2grf7b6b7ajxsp4ssv2l5gmg08kmbdwscavzc4r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/apropospriate-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/apropospriate-theme"; sha256 = "10bj2bsi7b104m686z8mgvbh493liidsvivxfvfxzbndc8wyjsw9"; name = "apropospriate-theme"; }; @@ -2309,13 +2309,13 @@ }) {}; apu = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "apu"; - version = "20151231.1408"; + version = "20151231.1508"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/apu.el"; sha256 = "1xbvky0mspmbi8ghqhqhgbjn70acipwf0qwn6s5zdarwch10nljj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/apu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/apu"; sha256 = "0399rmjwcs7fykj10s9m0lm2wb1cr2bzw2bkgm5rp4n3va0rzaa2"; name = "apu"; }; @@ -2327,13 +2327,13 @@ }) {}; archive-region = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "archive-region"; - version = "20140201.1745"; + version = "20140201.1845"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/archive-region.el"; sha256 = "1mhj6x0n2ya3xd7gykmkcf70ji5g8qd8xawz764ykdlcribpsq52"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/archive-region"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/archive-region"; sha256 = "03x2fqhx4w0c7xd8x8zlnyzdwyay6r2yxf4jzgkcg87q7rqjk9nd"; name = "archive-region"; }; @@ -2346,7 +2346,7 @@ arduino-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "arduino-mode"; - version = "20151018.135"; + version = "20151018.235"; src = fetchFromGitHub { owner = "bookest"; repo = "arduino-mode"; @@ -2354,7 +2354,7 @@ sha256 = "1yvaqjc9hadbnnay5fprnh890xsp53kidad1zpb4a5z4a5z61n3c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/arduino-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/arduino-mode"; sha256 = "1lpsjpc7par12zsmg9sf4r1h039kxa4n68anjr3mhpp3d6rapjcx"; name = "arduino-mode"; }; @@ -2367,14 +2367,14 @@ aria2 = callPackage ({ emacs, fetchgit, fetchurl, lib, melpaBuild }: melpaBuild { pname = "aria2"; - version = "20141107.1717"; + version = "20141107.1817"; src = fetchgit { url = "https://bitbucket.org/ukaszg/aria2.git"; rev = "3c54254e424c6c8b4eb0d8e7c4907b094c27a3f0"; sha256 = "1z6smlc5cpf6kswbibhwwx3h5khsbj38a371lsjjhgmharg7a4r7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/aria2"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/aria2"; sha256 = "10x2k99m3kl6y0k0mw590gq1ac162nmdwk58i8i7a4mb72zmsmhc"; name = "aria2"; }; @@ -2387,7 +2387,7 @@ ariadne = callPackage ({ bert, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ariadne"; - version = "20131117.1111"; + version = "20131117.1211"; src = fetchFromGitHub { owner = "manzyuk"; repo = "ariadne-el"; @@ -2395,7 +2395,7 @@ sha256 = "0vh9wfc3657sd12ybjcrxpg6f757x2ghkcl1lw01szmyy5vmj27h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ariadne"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ariadne"; sha256 = "0lfhving19wcfr40gjb2gnginiz8cncixiyyxhwx08lm84qb3a7p"; name = "ariadne"; }; @@ -2408,7 +2408,7 @@ arjen-grey-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "arjen-grey-theme"; - version = "20160403.1415"; + version = "20160403.1515"; src = fetchFromGitHub { owner = "credmp"; repo = "arjen-grey-theme"; @@ -2416,7 +2416,7 @@ sha256 = "0p8k6sxmvmf535sawis6rn6lfyl5ph263i1phf2d5wl3dzs0xj5x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/arjen-grey-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/arjen-grey-theme"; sha256 = "18q66f7hhys2ab9ljsdp9013mp7d6v6d1lrb0d1bb035r1b4pfj7"; name = "arjen-grey-theme"; }; @@ -2429,7 +2429,7 @@ artbollocks-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "artbollocks-mode"; - version = "20141212.1532"; + version = "20141212.1632"; src = fetchFromGitHub { owner = "sachac"; repo = "artbollocks-mode"; @@ -2437,7 +2437,7 @@ sha256 = "133c1n4ra7z3vb6y47400y71a6ac19pyji0bgd4kr9fcbx0flx91"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/artbollocks-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/artbollocks-mode"; sha256 = "0dlnxicn6nzyiz44y92pbl4nzr9jxfb9a99wacjrwq2ahdrwhhjp"; name = "artbollocks-mode"; }; @@ -2450,7 +2450,7 @@ arview = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "arview"; - version = "20160419.1609"; + version = "20160419.1709"; src = fetchFromGitHub { owner = "afainer"; repo = "arview"; @@ -2458,7 +2458,7 @@ sha256 = "1yvirfmvf6v5khl7zhx2ddv9bbxnx1qhwfzi0gy2nmbxlykb6s2j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/arview"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/arview"; sha256 = "0d935lj0x3rbar94l7288xrgbcp1wmz6r2l0b7i89r5piczyiy1y"; name = "arview"; }; @@ -2470,13 +2470,13 @@ }) {}; ascii = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "ascii"; - version = "20130824.700"; + version = "20130824.800"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/ascii.el"; sha256 = "05fjsj5nmc05cmsi0qj914dqdwk8rll1d4dwhn0crw36p2ivql75"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ascii"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ascii"; sha256 = "0jb63f7qwhfbz0n4yrvnvx03cjqly3mqsc3rq9mgf4svy2zw702r"; name = "ascii"; }; @@ -2489,7 +2489,7 @@ asilea = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "asilea"; - version = "20150105.925"; + version = "20150105.1025"; src = fetchFromGitHub { owner = "Fanael"; repo = "asilea"; @@ -2497,7 +2497,7 @@ sha256 = "1s973vzivibaqjb8acn4ylrdasxh17jcfmmvqp4wm05nwhg75597"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/asilea"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/asilea"; sha256 = "1lb8nr6r6yy06m4pxg8w9ja4zv8k5xwhl95v2wv95y1qwhgnwg3j"; name = "asilea"; }; @@ -2510,7 +2510,7 @@ asn1-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "asn1-mode"; - version = "20151124.28"; + version = "20151124.128"; src = fetchFromGitHub { owner = "kawabata"; repo = "asn1-mode"; @@ -2518,7 +2518,7 @@ sha256 = "0h18x9nh152dnyqjv5b1zjksl8wb75s8zmx3v8vvmwqyy6ql8gcj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/asn1-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/asn1-mode"; sha256 = "0iswisb08dqz7jc5ra4wcdhbmglildgyrb547dm5362xmvm9ifmy"; name = "asn1-mode"; }; @@ -2531,15 +2531,15 @@ assess = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, m-buffer, melpaBuild }: melpaBuild { pname = "assess"; - version = "20160405.306"; + version = "20160507.510"; src = fetchFromGitHub { owner = "phillord"; repo = "assess"; - rev = "4bf702a08adb4b99f590716cb4c721c273ccaae8"; - sha256 = "0sk361w6pciqjfpa9ic1npwwyhan5si22qjsmxcnfyp9i94d8nbg"; + rev = "cd394f309f0fc59e4e737ca8f4b5f1462f971a6b"; + sha256 = "1gqk7kxhcs6vk0x5s1x2ai5f5nrgrd8z75bgr8h1vnr8fficmmlf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/assess"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/assess"; sha256 = "0xj3f48plwxmibax00qn15ya7s0h560xzwr8nkwl5r151v1mc9rr"; name = "assess"; }; @@ -2552,15 +2552,15 @@ async = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "async"; - version = "20160425.751"; + version = "20160505.109"; src = fetchFromGitHub { owner = "jwiegley"; repo = "emacs-async"; - rev = "1763517b556646f81ad14e166d19f4352beb03bd"; - sha256 = "0yb6qj1m0chzswndkf486y8kxf2yk7xs0v46f140yydkqkxihfyh"; + rev = "14170a45c8cf91a0133960442509197e683c256d"; + sha256 = "1dgw075pdzfrb5wjba7iwal8crxpxm642fkfwj8389a5hpsj7v2n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/async"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/async"; sha256 = "063ci4f35x1zm9ixy110i5ds0vsrcafpixrz3xkvpnfqdn29si3f"; name = "async"; }; @@ -2573,7 +2573,7 @@ at = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, queue }: melpaBuild { pname = "at"; - version = "20140707.720"; + version = "20140707.820"; src = fetchFromGitHub { owner = "skeeto"; repo = "at-el"; @@ -2581,7 +2581,7 @@ sha256 = "0rnnvr8x1czphbinby2z2dga7ikwgd13d7zhgmp3ggamzyaz6nf1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/@"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/@"; sha256 = "0w91qx955z67w2yh8kf86b58bb3b6s6490mmbky8467knf2q83qz"; name = "at"; }; @@ -2594,7 +2594,7 @@ atom-dark-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "atom-dark-theme"; - version = "20151120.135"; + version = "20151120.235"; src = fetchFromGitHub { owner = "whitlockjc"; repo = "atom-dark-theme-emacs"; @@ -2602,7 +2602,7 @@ sha256 = "0jfpzv8dmvl4nr6kvq5aii830s5h632bq2q3jbnfc4zdql7id464"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/atom-dark-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/atom-dark-theme"; sha256 = "1ci61blm7wc83wm2iyax017ai4jljyag5j1mvw86rimmmjzr0v8f"; name = "atom-dark-theme"; }; @@ -2615,15 +2615,15 @@ atom-one-dark-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "atom-one-dark-theme"; - version = "20160105.948"; + version = "20160105.1048"; src = fetchFromGitHub { owner = "jonathanchu"; repo = "atom-one-dark-theme"; - rev = "1297cfb3d01b7ea051cf4abaa27ed4c3b4aca282"; - sha256 = "027j027w2nbplg1gi28hg9iyiirigydj5n4npf7y9a6g626snxz0"; + rev = "0757c53ddc044ce259eeb1080f41207e3f02cfab"; + sha256 = "0vxfk648z90c19lsgf50cfwlw2hq2nzzyylnzfxiixydkm24cdi2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/atom-one-dark-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/atom-one-dark-theme"; sha256 = "0wwnkhq7vyysqiqcxc1jsn98155ri4mf4w03k7inl1f8ffpwahvw"; name = "atom-one-dark-theme"; }; @@ -2636,7 +2636,7 @@ auctex-latexmk = callPackage ({ auctex, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "auctex-latexmk"; - version = "20160307.552"; + version = "20160307.652"; src = fetchFromGitHub { owner = "tom-tan"; repo = "auctex-latexmk"; @@ -2644,7 +2644,7 @@ sha256 = "0fa39mzgw8sc7rn31jsfg9pwr05hyk8jjrkk6qa6r91r02ksac8k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/auctex-latexmk"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/auctex-latexmk"; sha256 = "1rdlgkiwlgm06i1gjxcfciz6wgdskfhln8qhixyfxk7pnz0ax327"; name = "auctex-latexmk"; }; @@ -2657,7 +2657,7 @@ auctex-lua = callPackage ({ auctex, fetchFromGitHub, fetchurl, lib, lua-mode, melpaBuild }: melpaBuild { pname = "auctex-lua"; - version = "20151121.1010"; + version = "20151121.1110"; src = fetchFromGitHub { owner = "vermiculus"; repo = "auctex-lua"; @@ -2665,7 +2665,7 @@ sha256 = "0lgfgvnaln5rhhwgcrzwrhbj0gz8sgaf6xxdl7njf3sa6bfgngsz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/auctex-lua"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/auctex-lua"; sha256 = "0v999jvinljkvhbn205p36a6jfzppn0xvflvzr8mid1hnqlrpjhf"; name = "auctex-lua"; }; @@ -2678,7 +2678,7 @@ audio-notes-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "audio-notes-mode"; - version = "20140204.1354"; + version = "20140204.1454"; src = fetchFromGitHub { owner = "Malabarba"; repo = "audio-notes-mode"; @@ -2686,7 +2686,7 @@ sha256 = "0q79kblcbz5vlzj0f49vpc1902767ydmvkmwwjs60x3w2f3aq3cm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/audio-notes-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/audio-notes-mode"; sha256 = "0q88xmi7jbrx47nvbbmwggbm6i7agzpnv5y7cpdh73lg165xsz2h"; name = "audio-notes-mode"; }; @@ -2699,7 +2699,7 @@ aurel = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "aurel"; - version = "20160309.236"; + version = "20160309.336"; src = fetchFromGitHub { owner = "alezost"; repo = "aurel"; @@ -2707,7 +2707,7 @@ sha256 = "0dqr1yrzf7a8655dsbcch4622rc75j9yjbn9zhkyikqjicddnlda"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/aurel"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/aurel"; sha256 = "13zyi55ksv426pcksbm3l9s6bmp102w7j1xbry46bc48al6i2nnl"; name = "aurel"; }; @@ -2720,7 +2720,7 @@ aurora-config-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "aurora-config-mode"; - version = "20140520.403"; + version = "20140520.503"; src = fetchFromGitHub { owner = "bdd"; repo = "aurora-config-mode.el"; @@ -2728,7 +2728,7 @@ sha256 = "0ns1xhpk1awbj3kv946dv11a99p84dhm54vjk72kslxwx42nia28"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/aurora-config-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/aurora-config-mode"; sha256 = "1hpjwidqmjxanijsc1imc7ww9abbylmkin1p0846fbz1hz3a603c"; name = "aurora-config-mode"; }; @@ -2741,7 +2741,7 @@ aurora-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "aurora-theme"; - version = "20151015.1302"; + version = "20151015.1402"; src = fetchFromGitHub { owner = "xzerocode"; repo = "aurora-theme"; @@ -2749,7 +2749,7 @@ sha256 = "1z2n6gd63mgj2wj45n6g1gmfrk0iwzlrzb6g1rdd9r9a03c03qi6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/aurora-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/aurora-theme"; sha256 = "1fhlng30v25ycr502vfvajl70vimscqkipva6ghr670j35ac5vz5"; name = "aurora-theme"; }; @@ -2762,7 +2762,7 @@ auth-password-store = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, password-store, seq }: melpaBuild { pname = "auth-password-store"; - version = "20160228.823"; + version = "20160228.923"; src = fetchFromGitHub { owner = "DamienCassou"; repo = "auth-password-store"; @@ -2770,7 +2770,7 @@ sha256 = "1b6g7qvrxv6gkl4izq1y7k0x0l7izyfnpki10di5vdv3jp6xg9b2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/auth-password-store"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/auth-password-store"; sha256 = "118ll12dhhxmlsp2mxmy5cd91166a1qsk406yhap5zw1qvyg58w5"; name = "auth-password-store"; }; @@ -2783,13 +2783,13 @@ auto-async-byte-compile = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "auto-async-byte-compile"; - version = "20151029.916"; + version = "20151029.1016"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/auto-async-byte-compile.el"; sha256 = "1c8nm4sz9a67q8w0b1jahg5ldy185zws7nilj9yv3miklg07zq17"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/auto-async-byte-compile"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/auto-async-byte-compile"; sha256 = "108jhrdx67chbdd4h824072i2wrn90zdh2hw5vqd4a5svhhf28jj"; name = "auto-async-byte-compile"; }; @@ -2802,7 +2802,7 @@ auto-auto-indent = callPackage ({ cl-lib ? null, es-lib, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "auto-auto-indent"; - version = "20131106.1303"; + version = "20131106.1403"; src = fetchFromGitHub { owner = "sabof"; repo = "auto-auto-indent"; @@ -2810,7 +2810,7 @@ sha256 = "1whbvqylwnxg8d8gn55kcky39rgyc49rakyxlbkplh813lk6lxb7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/auto-auto-indent"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/auto-auto-indent"; sha256 = "08s73pnyrmklb660jl5rshncpq31z3m9fl55v7453ch8syp7gzh7"; name = "auto-auto-indent"; }; @@ -2822,13 +2822,13 @@ }) {}; auto-capitalize = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "auto-capitalize"; - version = "20160415.1603"; + version = "20160415.1703"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/auto-capitalize.el"; sha256 = "0xywyfpsi64g9lihm5ncmjrj06iq9s6pp9fmsgj1hdf9y0z65lg0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/auto-capitalize"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/auto-capitalize"; sha256 = "18fygc71n9bc0vrpymz2f7sw9hzkpqxzfglh53shmbm1zns3wkw0"; name = "auto-capitalize"; }; @@ -2841,7 +2841,7 @@ auto-compile = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, packed }: melpaBuild { pname = "auto-compile"; - version = "20160424.618"; + version = "20160424.718"; src = fetchFromGitHub { owner = "tarsius"; repo = "auto-compile"; @@ -2849,7 +2849,7 @@ sha256 = "05crb8cm7s1nggrqq0xcs2xiabjw3vh44fnkdiilq1c5cnajdcrj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/auto-compile"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/auto-compile"; sha256 = "1cdv41hg71mi5ixxi4kiizyg03xai2gyhk0vz7gw59d9a7482yks"; name = "auto-compile"; }; @@ -2862,7 +2862,7 @@ auto-complete = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, popup }: melpaBuild { pname = "auto-complete"; - version = "20160416.804"; + version = "20160416.904"; src = fetchFromGitHub { owner = "auto-complete"; repo = "auto-complete"; @@ -2870,7 +2870,7 @@ sha256 = "19sdjwnjryzaq1rpjkvr3mjz9mg7cqzrrx5mqzic3aklgg71d53j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/auto-complete"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/auto-complete"; sha256 = "1c4ij5bnclg94jdzhkqvq2vxwv6wvs051mbki1ibjm5f2hlacvh3"; name = "auto-complete"; }; @@ -2883,7 +2883,7 @@ auto-complete-auctex = callPackage ({ auto-complete, fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }: melpaBuild { pname = "auto-complete-auctex"; - version = "20140223.1158"; + version = "20140223.1258"; src = fetchFromGitHub { owner = "monsanto"; repo = "auto-complete-auctex"; @@ -2891,7 +2891,7 @@ sha256 = "1wri8q5llpy1q1h4ac4kjnnkgj6fby8i9vrpr6mrb13d4gnk4gr2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/auto-complete-auctex"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/auto-complete-auctex"; sha256 = "00npvryds5wd3d5a13r9prlvw6vvjlag8d32x5xf9bfmmvs0fgqh"; name = "auto-complete-auctex"; }; @@ -2904,7 +2904,7 @@ auto-complete-c-headers = callPackage ({ auto-complete, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "auto-complete-c-headers"; - version = "20150911.2223"; + version = "20150911.2323"; src = fetchFromGitHub { owner = "mooz"; repo = "auto-complete-c-headers"; @@ -2912,7 +2912,7 @@ sha256 = "12mzi6bwg702sp0f0wd1ag555blbpk252rr9rqs03bn8pkw89h4n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/auto-complete-c-headers"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/auto-complete-c-headers"; sha256 = "02pkrxvzrpyjrr2fkxnl1qw06aspzv8jlp2c1piln6zcjd92l3j7"; name = "auto-complete-c-headers"; }; @@ -2925,7 +2925,7 @@ auto-complete-chunk = callPackage ({ auto-complete, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "auto-complete-chunk"; - version = "20140225.346"; + version = "20140225.446"; src = fetchFromGitHub { owner = "tkf"; repo = "auto-complete-chunk"; @@ -2933,7 +2933,7 @@ sha256 = "1zhbpxpl443ghpkl9i68jcjfcw1vnf8ky06pf5qjjmqbxlcyd9li"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/auto-complete-chunk"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/auto-complete-chunk"; sha256 = "1937j1xm20vfcqm9ig4nvciqfkz7rpw0nsfhlg69gkmv0nqszdr3"; name = "auto-complete-chunk"; }; @@ -2946,7 +2946,7 @@ auto-complete-clang = callPackage ({ auto-complete, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "auto-complete-clang"; - version = "20140409.252"; + version = "20140409.352"; src = fetchFromGitHub { owner = "brianjcj"; repo = "auto-complete-clang"; @@ -2954,7 +2954,7 @@ sha256 = "12y6f47xbjl4gy14j2f5wlisy5vl6rhx74n27w61pjv38m0a7mi1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/auto-complete-clang"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/auto-complete-clang"; sha256 = "1rnmphl7ml5ryjl5ka2l58hddir8b34iz1rm905wdwh164piljva"; name = "auto-complete-clang"; }; @@ -2967,7 +2967,7 @@ auto-complete-clang-async = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "auto-complete-clang-async"; - version = "20130526.1014"; + version = "20130526.1114"; src = fetchFromGitHub { owner = "Golevka"; repo = "emacs-clang-complete-async"; @@ -2975,7 +2975,7 @@ sha256 = "1sw0wxrjcjqk0w1llfj376g6axa5bnk2lq2vv66746bkz14h0s8f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/auto-complete-clang-async"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/auto-complete-clang-async"; sha256 = "1jj0jn1v3070g7g0j5gvpybv145kki8nsjxqb8fjf9qag8ilfkjh"; name = "auto-complete-clang-async"; }; @@ -2988,7 +2988,7 @@ auto-complete-exuberant-ctags = callPackage ({ auto-complete, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "auto-complete-exuberant-ctags"; - version = "20140320.224"; + version = "20140320.324"; src = fetchFromGitHub { owner = "k1LoW"; repo = "auto-complete-exuberant-ctags"; @@ -2996,7 +2996,7 @@ sha256 = "1fqgyg986fg1dzac5wa97bx82mfddqb6qrfnpr3zksmw3vgykxr0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/auto-complete-exuberant-ctags"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/auto-complete-exuberant-ctags"; sha256 = "1i2s3ycc8jafkzdsz3kbvx1hh95ydi5s6rq6n0wzw1kyy3km35gd"; name = "auto-complete-exuberant-ctags"; }; @@ -3009,7 +3009,7 @@ auto-complete-nxml = callPackage ({ auto-complete, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "auto-complete-nxml"; - version = "20140220.2258"; + version = "20140220.2358"; src = fetchFromGitHub { owner = "aki2o"; repo = "auto-complete-nxml"; @@ -3017,7 +3017,7 @@ sha256 = "18bf1kw85mab0zp7rn85cm1nxjxg5c1dmiv0j0mjwzsv8an4px5y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/auto-complete-nxml"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/auto-complete-nxml"; sha256 = "0viscr5k1carn9vhflry16kgihr6fvh6h36b049pgnk6ww085k6a"; name = "auto-complete-nxml"; }; @@ -3030,7 +3030,7 @@ auto-complete-pcmp = callPackage ({ auto-complete, fetchFromGitHub, fetchurl, lib, log4e, melpaBuild, yaxception }: melpaBuild { pname = "auto-complete-pcmp"; - version = "20140227.51"; + version = "20140227.151"; src = fetchFromGitHub { owner = "aki2o"; repo = "auto-complete-pcmp"; @@ -3038,7 +3038,7 @@ sha256 = "1hf2f903hy9afahrgy2fx9smgn631drs6733188zgqi3nkyizj26"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/auto-complete-pcmp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/auto-complete-pcmp"; sha256 = "1mpgkwj8jwpvxphlm6iaprwjrldmihbgg97jav0fbm1kjnm4azna"; name = "auto-complete-pcmp"; }; @@ -3051,7 +3051,7 @@ auto-complete-rst = callPackage ({ auto-complete, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "auto-complete-rst"; - version = "20140225.344"; + version = "20140225.444"; src = fetchFromGitHub { owner = "tkf"; repo = "auto-complete-rst"; @@ -3059,7 +3059,7 @@ sha256 = "107svb82cgfns9kcrmy3hh56cab81782jkbz5i9959ms81xizfb8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/auto-complete-rst"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/auto-complete-rst"; sha256 = "0dazkpnzzr0imb2a01qq8l60jxhhlknzjx7wccnbm7d2rk3338m6"; name = "auto-complete-rst"; }; @@ -3072,7 +3072,7 @@ auto-complete-sage = callPackage ({ auto-complete, fetchFromGitHub, fetchurl, lib, melpaBuild, sage-shell-mode }: melpaBuild { pname = "auto-complete-sage"; - version = "20151201.1257"; + version = "20151201.1357"; src = fetchFromGitHub { owner = "stakemori"; repo = "auto-complete-sage"; @@ -3080,7 +3080,7 @@ sha256 = "0l49ciic7g30vklxq6l1ny3mz87l5p8qc30rmkjvkzvg8r52ksn3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/auto-complete-sage"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/auto-complete-sage"; sha256 = "02sxbir3arvmnkvxgndlkln9y05jnlv6i8czd6a0wcxk4nj43lq1"; name = "auto-complete-sage"; }; @@ -3093,7 +3093,7 @@ auto-dictionary = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "auto-dictionary"; - version = "20150410.1110"; + version = "20150410.1210"; src = fetchFromGitHub { owner = "nschum"; repo = "auto-dictionary-mode"; @@ -3101,7 +3101,7 @@ sha256 = "0rfjx0x2an28821shgb4v5djza4kwn5nnrsl2cvh3px4wrvw3izp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/auto-dictionary"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/auto-dictionary"; sha256 = "1va485a8lxvb3507kr83cr6wpssxnf8y4l42mamn9daa8sjx3q16"; name = "auto-dictionary"; }; @@ -3114,7 +3114,7 @@ auto-dim-other-buffers = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "auto-dim-other-buffers"; - version = "20160128.1146"; + version = "20160128.1246"; src = fetchFromGitHub { owner = "mina86"; repo = "auto-dim-other-buffers.el"; @@ -3122,7 +3122,7 @@ sha256 = "0lqfnv8wqnbb5ddwmh9svphc3bgmwdpwx40qw9sgqdzpj3xh7v8g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/auto-dim-other-buffers"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/auto-dim-other-buffers"; sha256 = "0n9d23sfcmkjfqlm80vrgf856wy08ak4n4rk0z7vadq07yj46zxh"; name = "auto-dim-other-buffers"; }; @@ -3135,7 +3135,7 @@ auto-highlight-symbol = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "auto-highlight-symbol"; - version = "20130313.443"; + version = "20130313.543"; src = fetchFromGitHub { owner = "gennad"; repo = "auto-highlight-symbol"; @@ -3143,7 +3143,7 @@ sha256 = "0jfiax1qqnyznhlnqkjsr9nnv7fpjywvfhj9jq59460j0nbrgs5c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/auto-highlight-symbol"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/auto-highlight-symbol"; sha256 = "02mkji4sxym07jf5ww5kgv1c18x0xdfn8cmvgns5h4gij64lnr66"; name = "auto-highlight-symbol"; }; @@ -3156,15 +3156,15 @@ auto-indent-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "auto-indent-mode"; - version = "20160422.930"; + version = "20160426.2322"; src = fetchFromGitHub { owner = "mattfidler"; repo = "auto-indent-mode.el"; - rev = "b887b866b23f0d773df464c68b9b12f9b30cc991"; - sha256 = "1jr4g6a40bp8p0hcgb2bganm8bxjsn26mylc3qd15ys955rm8pnk"; + rev = "9a0f13d93ad25b6e6b97fd566ec74ef5b6c60254"; + sha256 = "1ya7lnlgrxwrbaxlkl0bbz2m8pic6yjln0dm1mcmr9mjglp8kh6y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/auto-indent-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/auto-indent-mode"; sha256 = "1nk78p8lqs8cx90asfs8iaqnwwyy8fi5bafaprm9c0nrxz299ibz"; name = "auto-indent-mode"; }; @@ -3176,13 +3176,13 @@ }) {}; auto-install = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "auto-install"; - version = "20150418.1902"; + version = "20150418.2002"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/auto-install.el"; sha256 = "043pb2wk7jh0jgxphdl4848rjyabna26gj0vlhpiyd8zc361pg9d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/auto-install"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/auto-install"; sha256 = "1gaxc2ya4r903k0jf3319wg7wg5kzq7k8rfy8ac9b0wfzv247ixk"; name = "auto-install"; }; @@ -3195,7 +3195,7 @@ auto-package-update = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "auto-package-update"; - version = "20151026.111"; + version = "20151026.211"; src = fetchFromGitHub { owner = "rranelli"; repo = "auto-package-update.el"; @@ -3203,7 +3203,7 @@ sha256 = "05llpa6g4nb4qswmcn7j3bs7hnmkrkax7hsk7wvklr0wrljyg9a2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/auto-package-update"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/auto-package-update"; sha256 = "0fdcniq5mrwbc7yvma4088r0frdfvc2ydfil0s003faz0nrjcp8k"; name = "auto-package-update"; }; @@ -3216,7 +3216,7 @@ auto-pause = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "auto-pause"; - version = "20160426.716"; + version = "20160426.816"; src = fetchFromGitHub { owner = "lujun9972"; repo = "auto-pause"; @@ -3224,7 +3224,7 @@ sha256 = "1pxhqwvg059pslin6z87jd8d0q44ljwvdn6y23ffrz9kfpn3m5m2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/auto-pause"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/auto-pause"; sha256 = "0cdak2kicxylj5f161kia0bzzqad426y8cj4zf04gcl0nndijyrc"; name = "auto-pause"; }; @@ -3237,7 +3237,7 @@ auto-save-buffers-enhanced = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "auto-save-buffers-enhanced"; - version = "20130607.2149"; + version = "20130607.2249"; src = fetchFromGitHub { owner = "kentaro"; repo = "auto-save-buffers-enhanced"; @@ -3245,7 +3245,7 @@ sha256 = "10aw3bpvawkqj1l8brvzq057wx3mkzpxs4zc3yhppkhq2cpvx7i2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/auto-save-buffers-enhanced"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/auto-save-buffers-enhanced"; sha256 = "123vf6nnvdhrrfjn8n8h8a11mkqmy2zm3w3yn99np0zj31x8z7bb"; name = "auto-save-buffers-enhanced"; }; @@ -3258,7 +3258,7 @@ auto-shell-command = callPackage ({ deferred, fetchFromGitHub, fetchurl, lib, melpaBuild, popwin }: melpaBuild { pname = "auto-shell-command"; - version = "20150416.1257"; + version = "20150416.1357"; src = fetchFromGitHub { owner = "ongaeshi"; repo = "auto-shell-command"; @@ -3266,7 +3266,7 @@ sha256 = "1h8zsgw30axprs7a5kkygbhvilillzazxgqz01ng36il65fi28s6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/auto-shell-command"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/auto-shell-command"; sha256 = "1i78fh72i8yv91rnabf0vs78r43qrjkr36hndmn5ya2xs3b1g41j"; name = "auto-shell-command"; }; @@ -3279,7 +3279,7 @@ auto-virtualenv = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, pyvenv, s }: melpaBuild { pname = "auto-virtualenv"; - version = "20160220.836"; + version = "20160220.936"; src = fetchFromGitHub { owner = "marcwebbie"; repo = "auto-virtualenv"; @@ -3287,7 +3287,7 @@ sha256 = "1ya5rn55sclh2w5bjy4b2b75gd6bgavfqmhdisz6afp8w4l4a2bv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/auto-virtualenv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/auto-virtualenv"; sha256 = "0xv51g74l5pxa3s185867dpc98m6y26xbj5wgz7f9177qchvdbhk"; name = "auto-virtualenv"; }; @@ -3300,7 +3300,7 @@ auto-yasnippet = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }: melpaBuild { pname = "auto-yasnippet"; - version = "20160223.508"; + version = "20160223.608"; src = fetchFromGitHub { owner = "abo-abo"; repo = "auto-yasnippet"; @@ -3308,7 +3308,7 @@ sha256 = "13g0vc0wsq7yn4qgxy3g64pdm30dafi75z6bsxnf3iq77zkqai0p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/auto-yasnippet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/auto-yasnippet"; sha256 = "02281gyy07cy72a29fjsixg9byqq3izb9m1jxv98ni8pcy3bpsqa"; name = "auto-yasnippet"; }; @@ -3321,15 +3321,15 @@ autobookmarks = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "autobookmarks"; - version = "20160413.528"; + version = "20160430.1521"; src = fetchFromGitHub { owner = "Fuco1"; repo = "autobookmarks"; - rev = "6090bb0f24396d35de39c8d522f40b29885c867e"; - sha256 = "1b9bzfnvkzn6r79r5rm9w9affy8hknqqzcphifrm4g6sm9c3f9jg"; + rev = "05ea2283e73125dba1bb320929b879633e69a600"; + sha256 = "1kb6h37qlhzxk3v45bn0m38bp244c3fpxr3lzr7f6rsy8bpc8w67"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/autobookmarks"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/autobookmarks"; sha256 = "11zhg3y9fb5mq67fwsnjrql9mnwkp3hwib7fpllb3yyf2yywc8zp"; name = "autobookmarks"; }; @@ -3342,7 +3342,7 @@ autodisass-java-bytecode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "autodisass-java-bytecode"; - version = "20151005.1112"; + version = "20151005.1212"; src = fetchFromGitHub { owner = "gbalats"; repo = "autodisass-java-bytecode"; @@ -3350,7 +3350,7 @@ sha256 = "1pf2mwnicj5x2kksxwmrzz2vfxj9y9r6rzgc1fl8028mfrmrmg8s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/autodisass-java-bytecode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/autodisass-java-bytecode"; sha256 = "1k19nkbxnysm3qkpdhz4gv2x9nnrp94xl40x84q8n84s6xaan4dc"; name = "autodisass-java-bytecode"; }; @@ -3363,7 +3363,7 @@ autodisass-llvm-bitcode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "autodisass-llvm-bitcode"; - version = "20150410.2025"; + version = "20150410.2125"; src = fetchFromGitHub { owner = "gbalats"; repo = "autodisass-llvm-bitcode"; @@ -3371,7 +3371,7 @@ sha256 = "1fq4h5fmamyh7z8nq6pigx74p5v8k3qfm64k66vwsm8bl5jdkw17"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/autodisass-llvm-bitcode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/autodisass-llvm-bitcode"; sha256 = "0bh73nzll9jp7kiqfnb5dwkipw85p3c3cyq58s0nghig02z63j01"; name = "autodisass-llvm-bitcode"; }; @@ -3384,13 +3384,13 @@ autofit-frame = callPackage ({ fetchurl, fit-frame, lib, melpaBuild }: melpaBuild { pname = "autofit-frame"; - version = "20151231.1409"; + version = "20151231.1509"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/autofit-frame.el"; sha256 = "1af45z1w69dkdk4mzjphwn420m9rrkc3djv5kpp6lzbxxnmswbqw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/autofit-frame"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/autofit-frame"; sha256 = "0p24qqnfa1vfn5pgnpvbxwi11zjkd6f3cv5igwg6h0pr5s7spnvw"; name = "autofit-frame"; }; @@ -3403,7 +3403,7 @@ automargin = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "automargin"; - version = "20131112.214"; + version = "20131112.314"; src = fetchFromGitHub { owner = "zk-phi"; repo = "automargin"; @@ -3411,7 +3411,7 @@ sha256 = "02nnyncfh6g0xizy7wa8721ahpnwk451kngd6n0y0249f50p3962"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/automargin"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/automargin"; sha256 = "0llqz01wmacc0f8j3h7r0j57vkmzksl9vj1h0igfxzpm347mm9q8"; name = "automargin"; }; @@ -3424,7 +3424,7 @@ autopair = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "autopair"; - version = "20160304.637"; + version = "20160304.737"; src = fetchFromGitHub { owner = "capitaomorte"; repo = "autopair"; @@ -3432,7 +3432,7 @@ sha256 = "09p56vi5zgm2djglimwyhv4n4gyydjndzn46vg9qzzlxvvmw66i1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/autopair"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/autopair"; sha256 = "161qhk8rc1ldj9hpg0k9phka0gflz9vny7gc8rnylk90p6asmr28"; name = "autopair"; }; @@ -3445,7 +3445,7 @@ autotest = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "autotest"; - version = "20150130.425"; + version = "20150130.525"; src = fetchFromGitHub { owner = "zenspider"; repo = "elisp"; @@ -3453,7 +3453,7 @@ sha256 = "184ghdi2m4hagddi71c1pmc408fad1cmw0q2n4k737w6j8537hph"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/autotest"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/autotest"; sha256 = "0f46m5pc40i531dzfnhkcn192dcs1q20y083c1c0wg2zhjcdr5iy"; name = "autotest"; }; @@ -3466,7 +3466,7 @@ autotetris-mode = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "autotetris-mode"; - version = "20141114.1046"; + version = "20141114.1146"; src = fetchFromGitHub { owner = "skeeto"; repo = "autotetris-mode"; @@ -3474,7 +3474,7 @@ sha256 = "162zay36mmkkpbfvp0lagv2js4cr1z75dc1z5l2505814m5sx3az"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/autotetris-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/autotetris-mode"; sha256 = "0k4yq4pvrs1zaf9aqxmlb6l2v4k774zbxj4zcx49w3l1h8gwxpbb"; name = "autotetris-mode"; }; @@ -3487,7 +3487,7 @@ autumn-light-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "autumn-light-theme"; - version = "20150515.947"; + version = "20150515.1047"; src = fetchFromGitHub { owner = "aalpern"; repo = "emacs-color-theme-autumn-light"; @@ -3495,7 +3495,7 @@ sha256 = "1lip7282g41ghn64dvx2ab437s83cj9l8ps1rd8rbhqyz4bx5wb9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/autumn-light-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/autumn-light-theme"; sha256 = "0g3wqv1yw3jycq30mcj3w4sn9nj6i6gyd2ljzimf547ggcai536a"; name = "autumn-light-theme"; }; @@ -3508,15 +3508,15 @@ avy = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "avy"; - version = "20160421.324"; + version = "20160503.2201"; src = fetchFromGitHub { owner = "abo-abo"; repo = "avy"; - rev = "53706d2ebf8ea5d02e3d0229656f8e5369b9440a"; - sha256 = "0jr8m2bhklwfq0rav4ai918ywr7837q849awmfv7j2vvf4jqkja1"; + rev = "85a384a151118283296036002f022e59e63118e3"; + sha256 = "162zaqv8xn7qz0kdfr162v8zvk8w7f087glr7ksdrs2h1a6y3cr0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/avy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/avy"; sha256 = "0gjq79f8jagbngp0shkcqmwhisc3hpgwfk34kq30nb929nbnlmag"; name = "avy"; }; @@ -3529,7 +3529,7 @@ avy-menu = callPackage ({ avy, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "avy-menu"; - version = "20160126.625"; + version = "20160126.725"; src = fetchFromGitHub { owner = "mrkkrp"; repo = "avy-menu"; @@ -3537,7 +3537,7 @@ sha256 = "1a6h44a6id4ash8kp0a59f34658p7czcl2d3i1880k8hckhy445j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/avy-menu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/avy-menu"; sha256 = "1g2bsm0jpig51jwn9f9mx6z5glb0bn4s21194xam768qin0rf4iw"; name = "avy-menu"; }; @@ -3550,15 +3550,15 @@ avy-migemo = callPackage ({ avy, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, migemo }: melpaBuild { pname = "avy-migemo"; - version = "20160426.950"; + version = "20160504.749"; src = fetchFromGitHub { owner = "momomo5717"; repo = "avy-migemo"; - rev = "4ce85afd01bfcdbd5c06b46bccb1c9ac63f79863"; - sha256 = "06fjkz8y2w0d3giyiacvbj8n8i3lx3ffd78bcgzgwpylibxm3saw"; + rev = "5a4a4a204ece75405028e059f0cc943a33d33778"; + sha256 = "1jkld876m15gqbbdprhpna31lp3pcr23n3zkq6l9f0b44i14ddar"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/avy-migemo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/avy-migemo"; sha256 = "1zvgkhma445gj1zjl8j25prw95bdpjbvfy8yr0r5liay6g2hf296"; name = "avy-migemo"; }; @@ -3571,7 +3571,7 @@ avy-zap = callPackage ({ avy, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "avy-zap"; - version = "20160330.1330"; + version = "20160330.1430"; src = fetchFromGitHub { owner = "cute-jumper"; repo = "avy-zap"; @@ -3579,7 +3579,7 @@ sha256 = "0nv6y9jwy2z4rlnd6qklhqww367kaqjc5id7yr4hsmxmxw2jj43p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/avy-zap"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/avy-zap"; sha256 = "1zbkf21ggrmg1w0xaw40i3swgc1g4fz0j8p0r9djm9j120d94zkx"; name = "avy-zap"; }; @@ -3591,13 +3591,13 @@ }) {}; awk-it = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "awk-it"; - version = "20130917.1348"; + version = "20130917.1448"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/awk-it.el"; sha256 = "1r1vbi1r3rdbkyb2naciqwja7hxigjhqfxsfcinnygabsi7fw9aw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/awk-it"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/awk-it"; sha256 = "1rnrm9jf9wvfrwyylhj0bfrz9140945lc87lrh21caf7q88fpvkw"; name = "awk-it"; }; @@ -3610,14 +3610,14 @@ axiom-environment = callPackage ({ emacs, fetchhg, fetchurl, lib, melpaBuild }: melpaBuild { pname = "axiom-environment"; - version = "20160325.1715"; + version = "20160325.1815"; src = fetchhg { url = "https://bitbucket.com/pdo/axiom-environment"; rev = "bc294e47f51c"; sha256 = "0z15n7cpprbhiamq26240g5bqsiw5mgyzdisi7j6hpybyk2zyl9q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/axiom-environment"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/axiom-environment"; sha256 = "1d3h1fn5zfbh7kpm2i02kza3bq9s6if4yd2vvfjdhgrykvl86h66"; name = "axiom-environment"; }; @@ -3630,7 +3630,7 @@ babel = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "babel"; - version = "20131231.925"; + version = "20131231.1025"; src = fetchFromGitHub { owner = "juergenhoetzel"; repo = "babel"; @@ -3638,7 +3638,7 @@ sha256 = "140lbpqq4qz45ykycdn8nvcn8pv0xqfwpapgprvyg8z5fjkyc4sg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/babel"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/babel"; sha256 = "0sdpp4iym61ni32zv75n48ylj4jib8ca6n9hyqwj1b7nqg76mm1c"; name = "babel"; }; @@ -3651,15 +3651,15 @@ babel-repl = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "babel-repl"; - version = "20160114.1210"; + version = "20160504.1801"; src = fetchFromGitHub { owner = "hung-phan"; repo = "babel-repl"; - rev = "52ea173be190d68dce4bb001d748e63ce7574171"; - sha256 = "1wfssdv6ag36ww6v7al2x04mbpaajlx92wfm8rbq8rp8887724s5"; + rev = "0faa2f6518a2b46236f116ca1736a314f7d9c034"; + sha256 = "0sp0ja0346k401q5zpx3zl4pnxp4ml2jqkgk7z8i08rhdbp0c4nr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/babel-repl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/babel-repl"; sha256 = "0h11i8w8s4ia1x0lm5n7bnc3db4bv0a7f7hzl27qrg38m3c7dl6x"; name = "babel-repl"; }; @@ -3672,7 +3672,7 @@ back-button = callPackage ({ fetchFromGitHub, fetchurl, lib, list-utils, melpaBuild, nav-flash, pcache, persistent-soft, smartrep, ucs-utils }: melpaBuild { pname = "back-button"; - version = "20150804.1504"; + version = "20150804.1604"; src = fetchFromGitHub { owner = "rolandwalker"; repo = "back-button"; @@ -3680,7 +3680,7 @@ sha256 = "0rj6a8rdwa0h2ckz7h4d91hnxqcin98l4ikbfyak2whfb47z909l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/back-button"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/back-button"; sha256 = "0vyhvm445d0rs14j5xi419akk5nd88d4hvm4251z62fmnvs50j85"; name = "back-button"; }; @@ -3699,13 +3699,13 @@ }) {}; backup-each-save = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "backup-each-save"; - version = "20130704.932"; + version = "20130704.1032"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/backup-each-save.el"; sha256 = "0b9vvi2m0fdv36wj8mvawl951gjmg3pypg08a8n6rzn3rwg0fwz7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/backup-each-save"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/backup-each-save"; sha256 = "1fv9sf6vkjyv93vil4l9hjm2fg73zlxbnif0xfm3kpmva9xin337"; name = "backup-each-save"; }; @@ -3718,7 +3718,7 @@ backup-walker = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "backup-walker"; - version = "20130720.1016"; + version = "20130720.1116"; src = fetchFromGitHub { owner = "lewang"; repo = "backup-walker"; @@ -3726,7 +3726,7 @@ sha256 = "0z4d8x9lkad50720lgvr8f85p1ligv07865i30lgr9ck0q04w68v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/backup-walker"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/backup-walker"; sha256 = "0hfr27yiiblrd0p3zhpapbj4vijfdk7wqh406xnlwf2yvnfsqycd"; name = "backup-walker"; }; @@ -3739,7 +3739,7 @@ badger-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "badger-theme"; - version = "20140716.2132"; + version = "20140716.2232"; src = fetchFromGitHub { owner = "ccann"; repo = "badger-theme"; @@ -3747,7 +3747,7 @@ sha256 = "0g8smx6pi2wqv78mhxfgwg51mx5msqsgcc55xcz29aq0q3naw4z1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/badger-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/badger-theme"; sha256 = "01h5bsqllgn6gs0wpl0y2h041007mn3ldjswkz6f3mayrgl4c6yf"; name = "badger-theme"; }; @@ -3760,15 +3760,15 @@ badwolf-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "badwolf-theme"; - version = "20160413.1605"; + version = "20160426.1109"; src = fetchFromGitHub { owner = "bkruczyk"; repo = "badwolf-emacs"; - rev = "92afd11dacad4f9df92028f2606f622472d4d21e"; - sha256 = "1kk50gxrr95w4qadnnn6ai4szhjqpmkj4l4fmjvpzgjwb24n6yxq"; + rev = "898033c43bab9aabebe4277ffc1bb732a91085f5"; + sha256 = "1b5xsy1vq04rn0mj5v2f7blmpwv5fzqgpxzlnxnx2b4i679m8l44"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/badwolf-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/badwolf-theme"; sha256 = "03plkzpmlh0pgfp1c9padsh4w2g23clsznym8x4jabxnk0ynhq41"; name = "badwolf-theme"; }; @@ -3781,7 +3781,7 @@ baidu-life = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "baidu-life"; - version = "20160426.719"; + version = "20160426.819"; src = fetchFromGitHub { owner = "lujun9972"; repo = "el-baidu-life"; @@ -3789,7 +3789,7 @@ sha256 = "024gpdjr1lbqjg6md526g4wz2shpgfpdrrd2m1bn4fissbzj70i1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/baidu-life"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/baidu-life"; sha256 = "0rib50hja33qk8dmw5i62gaxhx7mscj2y0n25jmnds7k88ms8z19"; name = "baidu-life"; }; @@ -3802,7 +3802,7 @@ base16-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "base16-theme"; - version = "20151019.911"; + version = "20151019.1011"; src = fetchFromGitHub { owner = "mkaito"; repo = "base16-emacs"; @@ -3810,7 +3810,7 @@ sha256 = "16240dj0hvxkljas9973wjdgkbx213sqws77j167yr5xf761dlsr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/base16-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/base16-theme"; sha256 = "1zxbvfj6gvz1ynhj6i9q9y65hq7aq41qx4vnx738cjizcq0rc8bs"; name = "base16-theme"; }; @@ -3823,7 +3823,7 @@ bash-completion = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "bash-completion"; - version = "20150514.928"; + version = "20150514.1028"; src = fetchFromGitHub { owner = "szermatt"; repo = "emacs-bash-completion"; @@ -3831,7 +3831,7 @@ sha256 = "06c42531dy5ngscwfvg8rksg6jcsakfn7104hmlg1jp4kvfiy1kg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bash-completion"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/bash-completion"; sha256 = "0l41yj0sb87i27hw6dh35l32hg4qkka6r3bpkckjnfm0xifrd9hj"; name = "bash-completion"; }; @@ -3844,7 +3844,7 @@ basic-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "basic-theme"; - version = "20151010.307"; + version = "20151010.407"; src = fetchFromGitHub { owner = "fgeller"; repo = "basic-theme.el"; @@ -3852,7 +3852,7 @@ sha256 = "1pbnw6ccphxynbhnc4g687jfcg33p1sa7a0mfxc2ai0i3z59gn78"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/basic-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/basic-theme"; sha256 = "16rgff1d0s65alh328lr93zc06zmgbzgwx1rf3k3l4d10ki4cc27"; name = "basic-theme"; }; @@ -3864,13 +3864,13 @@ }) {}; batch-mode = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "batch-mode"; - version = "20140807.1550"; + version = "20140807.1650"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/batch-mode.el"; sha256 = "1aa611jrzw4svmxvw1ghgh53x4nry0sl7mxmp4kxiaybqqvz6a1p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/batch-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/batch-mode"; sha256 = "1p0rh5r8w00jag64sbjy8xb9g6lqhm2fz476v201kbrj9ggp643x"; name = "batch-mode"; }; @@ -3883,7 +3883,7 @@ bats-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "bats-mode"; - version = "20141115.901"; + version = "20141115.1001"; src = fetchFromGitHub { owner = "dougm"; repo = "bats-mode"; @@ -3891,7 +3891,7 @@ sha256 = "1fy9qnwsxvb8qnyk13bnjjbnlhdads5qf1byg5agg6lq5np3w5jf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bats-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/bats-mode"; sha256 = "1l5winy30w8fs3f5cylc3a3j3mfkvchwanlgsin7q76jivn87h7w"; name = "bats-mode"; }; @@ -3904,7 +3904,7 @@ bbcode-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "bbcode-mode"; - version = "20141103.1541"; + version = "20141103.1641"; src = fetchFromGitHub { owner = "ejmr"; repo = "bbcode-mode"; @@ -3912,7 +3912,7 @@ sha256 = "17ip24fk13aj9zldn2qsr4naa8anqhm484m1an5l5i9m9awfiyn7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bbcode-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/bbcode-mode"; sha256 = "0ixxavmilr6na56yc148prbh3nlhcwir6rxqvh332cr8vr9gmp89"; name = "bbcode-mode"; }; @@ -3924,14 +3924,14 @@ }) {}; bbdb = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: melpaBuild { pname = "bbdb"; - version = "20151114.1741"; + version = "20151114.1841"; src = fetchgit { url = "git://git.savannah.nongnu.org/bbdb.git"; rev = "8fce6df3ab09250d545a2ed373ae64e68d12ff4c"; sha256 = "09ib71b669sccp0x5lf2ic4gzdqcmmdx918n870lhabqhn0gw3g2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bbdb"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/bbdb"; sha256 = "0zhs4psa9b9yf9hxm19q5znsny11cdp23pya3rrlmj39j4jfn73j"; name = "bbdb"; }; @@ -3944,7 +3944,7 @@ bbdb- = callPackage ({ bbdb, fetchFromGitHub, fetchurl, lib, log4e, melpaBuild, yaxception }: melpaBuild { pname = "bbdb-"; - version = "20140221.1754"; + version = "20140221.1854"; src = fetchFromGitHub { owner = "aki2o"; repo = "bbdb-"; @@ -3952,7 +3952,7 @@ sha256 = "17nbnkg0zn6p89r27mk9hl6qhv6xscwdsq8iyikdw03svpr16lnp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bbdb-"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/bbdb-"; sha256 = "1vzbalcchay4pxl9f1sxg0zclgc095f59dlj15pj0bqq61sbl9jf"; name = "bbdb-"; }; @@ -3965,7 +3965,7 @@ bbdb-android = callPackage ({ bbdb-vcard, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "bbdb-android"; - version = "20150706.24"; + version = "20150706.124"; src = fetchFromGitHub { owner = "tumashu"; repo = "bbdb-android"; @@ -3973,7 +3973,7 @@ sha256 = "0m80k87dahzdpfa4snbl4p9zm5d5anc8s91535mwzsnfbr98qmhm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bbdb-android"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/bbdb-android"; sha256 = "0v3njygqkcrwjkf7jrqmza6bwk2jp3956cx1qvf9ph7dfxsq7rn3"; name = "bbdb-android"; }; @@ -3986,7 +3986,7 @@ bbdb-china = callPackage ({ bbdb-vcard, chinese-pyim, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "bbdb-china"; - version = "20150615.2056"; + version = "20150615.2156"; src = fetchFromGitHub { owner = "tumashu"; repo = "bbdb-china"; @@ -3994,7 +3994,7 @@ sha256 = "07plwm5nh58qya03l8z0iaqh8bmyhywx7qiffkf803n8wwjb3kdn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bbdb-china"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/bbdb-china"; sha256 = "111lf256zxlnylfmwis0pngbpj73p59s520v8abbm7pn82k2m72b"; name = "bbdb-china"; }; @@ -4007,7 +4007,7 @@ bbdb-csv-import = callPackage ({ bbdb, dash, fetchFromGitLab, fetchurl, lib, melpaBuild, pcsv }: melpaBuild { pname = "bbdb-csv-import"; - version = "20140802.642"; + version = "20140802.742"; src = fetchFromGitLab { owner = "iankelling"; repo = "bbdb-csv-import"; @@ -4015,7 +4015,7 @@ sha256 = "1h9vi9wb3dzzjrw5zfypk60afzzshxa3qmnbc24ypby5dr7qy91l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bbdb-csv-import"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/bbdb-csv-import"; sha256 = "0r7pc2ypd1ydqrnvcqmsg69rm047by7k0zhm563538ra82597wnm"; name = "bbdb-csv-import"; }; @@ -4028,7 +4028,7 @@ bbdb-ext = callPackage ({ bbdb, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "bbdb-ext"; - version = "20151220.1413"; + version = "20151220.1513"; src = fetchFromGitHub { owner = "vapniks"; repo = "bbdb-ext"; @@ -4036,7 +4036,7 @@ sha256 = "1ydf89mmp3zjfqdymnrwg18wclyf7psarz9f2k82pl58h0khh71g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bbdb-ext"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/bbdb-ext"; sha256 = "0fnxcvzdyh0602rdfz3lz3vmvza4s0syz1vn2fgsn2lg3afqq7li"; name = "bbdb-ext"; }; @@ -4049,7 +4049,7 @@ bbdb-handy = callPackage ({ bbdb, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "bbdb-handy"; - version = "20150707.1952"; + version = "20150707.2052"; src = fetchFromGitHub { owner = "tumashu"; repo = "bbdb-handy"; @@ -4057,7 +4057,7 @@ sha256 = "04yxky7qxh0s4y4addry85qd1074l97frhp0hw77xd1bc7n5zzg0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bbdb-handy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/bbdb-handy"; sha256 = "0qv1lw4fv9w9c1ypzpbnvkm6ypqrzqpwyw5gpi7n9almxpd8d68z"; name = "bbdb-handy"; }; @@ -4070,7 +4070,7 @@ bbdb-vcard = callPackage ({ bbdb, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "bbdb-vcard"; - version = "20150713.1550"; + version = "20150713.1650"; src = fetchFromGitHub { owner = "tohojo"; repo = "bbdb-vcard"; @@ -4078,7 +4078,7 @@ sha256 = "1zlf9xhpirln72xr7v6kgndkg5wyz5ipsl4gpq9lbmp92jlgbwlj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bbdb-vcard"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/bbdb-vcard"; sha256 = "1kn98b7mh9a28933r4yl8qfl9p92rpix4vkp71sar9cka0m71ilj"; name = "bbdb-vcard"; }; @@ -4091,7 +4091,7 @@ bbdb2erc = callPackage ({ bbdb, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "bbdb2erc"; - version = "20130607.129"; + version = "20130607.229"; src = fetchFromGitHub { owner = "unhammer"; repo = "bbdb2erc"; @@ -4099,7 +4099,7 @@ sha256 = "1zkh7dcas80wwjvigl27wj8sp4b5z6lh3qj7zkziinwamwnxbdbs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bbdb2erc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/bbdb2erc"; sha256 = "0k1f6mq9xd3568vg01dqqvcdbdshbdsi4ivkjyxis6dqfnqhlfdd"; name = "bbdb2erc"; }; @@ -4112,7 +4112,7 @@ bbyac = callPackage ({ browse-kill-ring, cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "bbyac"; - version = "20150316.501"; + version = "20150316.601"; src = fetchFromGitHub { owner = "baohaojun"; repo = "bbyac"; @@ -4120,7 +4120,7 @@ sha256 = "1cdm4d6fjf3m495phynq0dzvv0wc0gfsw6fdq4d47iyxs0p4q2dl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bbyac"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/bbyac"; sha256 = "19s9fqcdyqz22m981vr0p8jwghbs267yrlxsv9xkfzd7fccnx170"; name = "bbyac"; }; @@ -4133,7 +4133,7 @@ bdo = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "bdo"; - version = "20140126.301"; + version = "20140126.401"; src = fetchFromGitHub { owner = "chrisdone"; repo = "bdo"; @@ -4141,7 +4141,7 @@ sha256 = "0d5b7zyl2vg621w1ll2lw3kjz5hx6lqxc0jivh0i449gckk5pzkm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bdo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/bdo"; sha256 = "0vp8am2x11abxganw90025w9qxnqjdkj015592glbbzpa6338nfl"; name = "bdo"; }; @@ -4154,15 +4154,15 @@ beacon = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, seq }: melpaBuild { pname = "beacon"; - version = "20160404.808"; + version = "20160430.1049"; src = fetchFromGitHub { owner = "Malabarba"; repo = "beacon"; - rev = "d666642d7ad905997d0ac5ecd4b27353506ce79e"; - sha256 = "0v1lpn4jrhr3b4681lc3b17mzr6jd1p1xiy51m6n7pdivnzrrxi2"; + rev = "16be7a12d0dbbbd0e59fc2ccf9a7c7085eb9cf5a"; + sha256 = "0b3d4zi6c53s69sl4di6scf5s9wik0qxqc4g5wd42af85b7yfnva"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/beacon"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/beacon"; sha256 = "1pwxvdfzs9qjd44wvgimipi2hg4qw5sh5wlsl8h8mq2kyx09s7hq"; name = "beacon"; }; @@ -4175,7 +4175,7 @@ beeminder = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org }: melpaBuild { pname = "beeminder"; - version = "20160209.2103"; + version = "20160209.2203"; src = fetchFromGitHub { owner = "Sodaware"; repo = "beeminder.el"; @@ -4183,7 +4183,7 @@ sha256 = "0ki9q3ylssjabh15dr49k7dxv88snpj4564g0myp3c61qzyy82lk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/beeminder"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/beeminder"; sha256 = "1cb8xmgsv23b464hpchm9f9i64p3fyf7aillrwk1aa2l1008kyww"; name = "beeminder"; }; @@ -4196,7 +4196,7 @@ beginend = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "beginend"; - version = "20150607.1201"; + version = "20150607.1301"; src = fetchFromGitHub { owner = "DamienCassou"; repo = "beginend"; @@ -4204,7 +4204,7 @@ sha256 = "1hyiz7iwnzbg1616q0w7fndllbnx4m98kakgxn04bsqib5fqk78p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/beginend"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/beginend"; sha256 = "1y81kr9q0zrsr3c3s14rm6l86y5wf1a0kia6d98112fy4fwdm7kq"; name = "beginend"; }; @@ -4217,7 +4217,7 @@ benchmark-init = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "benchmark-init"; - version = "20150905.438"; + version = "20150905.538"; src = fetchFromGitHub { owner = "dholm"; repo = "benchmark-init-el"; @@ -4225,7 +4225,7 @@ sha256 = "058mic9jkwiqvmp3k9sfd6gb70ysdphnb1iynlszhixbrz5w7zs2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/benchmark-init"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/benchmark-init"; sha256 = "0dknch4b1j7ff1079z2fhqng7kp4903b3v7mhj15b5vzspbp3wal"; name = "benchmark-init"; }; @@ -4238,7 +4238,7 @@ bert = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "bert"; - version = "20131117.414"; + version = "20131117.514"; src = fetchFromGitHub { owner = "manzyuk"; repo = "bert-el"; @@ -4246,7 +4246,7 @@ sha256 = "06izbc0ksyhgh4gsjiifhj11v0gx9x5xjx9aqci5mc4kc6mg05sf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bert"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/bert"; sha256 = "1zhz1dcy1nf84p244x6lc4ajancv5fgmqmbrm080yhb2ral1z8x7"; name = "bert"; }; @@ -4259,7 +4259,7 @@ better-defaults = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "better-defaults"; - version = "20160128.118"; + version = "20160128.218"; src = fetchFromGitHub { owner = "technomancy"; repo = "better-defaults"; @@ -4267,7 +4267,7 @@ sha256 = "1rxznx2l0cdpiz8mad8s6q17m1fngpgb1cki7ch6yh18r3qz8ysr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/better-defaults"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/better-defaults"; sha256 = "13bqcmx2gagm2ykg921ik3awp8zvw5d4lb69rr6gkpjlqp7nq2cm"; name = "better-defaults"; }; @@ -4279,13 +4279,13 @@ }) {}; better-registers = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "better-registers"; - version = "20140813.319"; + version = "20140813.419"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/better-registers.el"; sha256 = "05dlhhvd1m9q642gqqj6klif13shbinqi6bi72fldidi1z6wcqlh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/better-registers"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/better-registers"; sha256 = "01i0qjrwsc5way2h9z3pmsgccsbdifsq1dh6zhka4h6qfgrmn3bx"; name = "better-registers"; }; @@ -4298,7 +4298,7 @@ bf-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "bf-mode"; - version = "20130403.942"; + version = "20130403.1042"; src = fetchFromGitHub { owner = "emacs-jp"; repo = "bf-mode"; @@ -4306,7 +4306,7 @@ sha256 = "02b2m0cq04ynjcmr4j8gpdzjv9mpf1fysn736xv724xgaymj396n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bf-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/bf-mode"; sha256 = "0b1yf9bx1ldkzry7v5qvcnl059rq62a50dvpa10i2f5v0y96n1q9"; name = "bf-mode"; }; @@ -4319,7 +4319,7 @@ bfbuilder = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "bfbuilder"; - version = "20150924.1150"; + version = "20150924.1250"; src = fetchFromGitHub { owner = "zk-phi"; repo = "bfbuilder"; @@ -4327,7 +4327,7 @@ sha256 = "1y9fxs1nbf0xsn8mw45m9ghmji3h64wdbfnyr1npmf5fb27rmd17"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bfbuilder"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/bfbuilder"; sha256 = "16ckybqd0a8l75ascm3k4cdzp969lzq7m050aymdyjhwif6ld2r7"; name = "bfbuilder"; }; @@ -4340,7 +4340,7 @@ biblio = callPackage ({ biblio-core, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "biblio"; - version = "20160407.427"; + version = "20160407.527"; src = fetchFromGitHub { owner = "cpitclaudel"; repo = "biblio.el"; @@ -4348,7 +4348,7 @@ sha256 = "0mlbpmf6l9hvdw2pdx1qbad6q54r8zjb514d89znd461vs9ipjya"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/biblio"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/biblio"; sha256 = "0ym7xvcfd7hh3qdpfb8zpa7w8s4lpg0vngh9d0ns3s3lnhz4mi0g"; name = "biblio"; }; @@ -4361,7 +4361,7 @@ biblio-core = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, let-alist, lib, melpaBuild, seq }: melpaBuild { pname = "biblio-core"; - version = "20160407.426"; + version = "20160407.526"; src = fetchFromGitHub { owner = "cpitclaudel"; repo = "biblio.el"; @@ -4369,7 +4369,7 @@ sha256 = "0mlbpmf6l9hvdw2pdx1qbad6q54r8zjb514d89znd461vs9ipjya"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/biblio-core"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/biblio-core"; sha256 = "0zpfamrb2gka41h834a05hxdbw4h55777kh6rhjikjfmy765nl97"; name = "biblio-core"; }; @@ -4382,7 +4382,7 @@ bibretrieve = callPackage ({ auctex, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "bibretrieve"; - version = "20131013.1332"; + version = "20131013.1432"; src = fetchFromGitHub { owner = "pzorin"; repo = "bibretrieve"; @@ -4390,7 +4390,7 @@ sha256 = "0rwy4k06nd9a31hpyqs0fxp45dpddbvbhwcw1gzx4f73qmgawq9b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bibretrieve"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/bibretrieve"; sha256 = "1mf884c6adx7rq5c2z5wrnjpb6znljy30mscxskwqiyfs8c62mii"; name = "bibretrieve"; }; @@ -4403,7 +4403,7 @@ bibslurp = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "bibslurp"; - version = "20151202.1746"; + version = "20151202.1846"; src = fetchFromGitHub { owner = "mkmcc"; repo = "bibslurp"; @@ -4411,7 +4411,7 @@ sha256 = "077shjz9sd0k0akvxzzgjd8a626ck650xxlhp2ws4gs7rjd7a823"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bibslurp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/bibslurp"; sha256 = "178nhng87bdi8s0r2bdh2gk31w9mmjkyi6ncnddk3v7p8fsh4jjp"; name = "bibslurp"; }; @@ -4424,7 +4424,7 @@ bibtex-utils = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "bibtex-utils"; - version = "20150924.847"; + version = "20150924.947"; src = fetchFromGitHub { owner = "plantarum"; repo = "bibtex-utils"; @@ -4432,7 +4432,7 @@ sha256 = "1qf45s53vcbd90v2d2brynv3xmp8sy9w9jp611cf0dzfl1k7x8p8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bibtex-utils"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/bibtex-utils"; sha256 = "13llsyyvy0xc9s51cqqc1rz13m3qdqh8jw07gwywfbixlma59z8l"; name = "bibtex-utils"; }; @@ -4445,7 +4445,7 @@ bind-chord = callPackage ({ bind-key, fetchFromGitHub, fetchurl, key-chord, lib, melpaBuild }: melpaBuild { pname = "bind-chord"; - version = "20151111.1007"; + version = "20151111.1107"; src = fetchFromGitHub { owner = "waymondo"; repo = "use-package-chords"; @@ -4453,7 +4453,7 @@ sha256 = "06jsa0scvf12kznm0ngv76y726rzh93prc7ymw3fvknvg0xivb8v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bind-chord"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/bind-chord"; sha256 = "01a3c298kq8cfsxsscpic0shkjm77adiamgbgk8laqkbrlsrrcsb"; name = "bind-chord"; }; @@ -4466,7 +4466,7 @@ bind-key = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "bind-key"; - version = "20160227.248"; + version = "20160227.348"; src = fetchFromGitHub { owner = "jwiegley"; repo = "use-package"; @@ -4474,7 +4474,7 @@ sha256 = "19vc1hblbqlns2c28aqwjpmj8k35ih7akqi04wrqv1b6pljfy3jg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bind-key"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/bind-key"; sha256 = "1qw2c27016d3yfg0w10is1v72y2jvzhq07ca4h6v17yi94ahj5xm"; name = "bind-key"; }; @@ -4487,7 +4487,7 @@ bind-map = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "bind-map"; - version = "20160309.725"; + version = "20160309.825"; src = fetchFromGitHub { owner = "justbur"; repo = "emacs-bind-map"; @@ -4495,7 +4495,7 @@ sha256 = "047qzylycx3r06dd0q9q9f37pvfigmlv59gi3wqvlg6k3gcmdvy0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bind-map"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/bind-map"; sha256 = "1jzkp010b4vs1bdhccf5igmymfxab4vxs1pccpk9n5n5a4xaa358"; name = "bind-map"; }; @@ -4508,7 +4508,7 @@ bing-dict = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "bing-dict"; - version = "20160105.2302"; + version = "20160106.2"; src = fetchFromGitHub { owner = "cute-jumper"; repo = "bing-dict.el"; @@ -4516,7 +4516,7 @@ sha256 = "0pmpg54faq0l886f2cmnmwm28d2yfg8adk7gp7623gx0ifggn332"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bing-dict"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/bing-dict"; sha256 = "0s5pd08rcnvmgi1hw17xbzvswlv0yni6h2h2gccrjmf6izi8whh1"; name = "bing-dict"; }; @@ -4529,7 +4529,7 @@ birds-of-paradise-plus-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "birds-of-paradise-plus-theme"; - version = "20130419.1629"; + version = "20130419.1729"; src = fetchFromGitHub { owner = "jimeh"; repo = "birds-of-paradise-plus-theme.el"; @@ -4537,7 +4537,7 @@ sha256 = "1n5icy29ks5rxrxp7v4sf0523z7wxn0fh9lx4y6jb7ppdjnff12s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/birds-of-paradise-plus-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/birds-of-paradise-plus-theme"; sha256 = "0vdv2siy30kf1qhzrc39sygjk17lwm3ix58pcs3shwkg1y5amj3m"; name = "birds-of-paradise-plus-theme"; }; @@ -4550,7 +4550,7 @@ bison-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "bison-mode"; - version = "20141119.243"; + version = "20141119.343"; src = fetchFromGitHub { owner = "Wilfred"; repo = "bison-mode"; @@ -4558,7 +4558,7 @@ sha256 = "0iccafawm9ah62f7qq1k77kjpafhcpjcaiqh5xjig1wxnpc43ck7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bison-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/bison-mode"; sha256 = "097gimlzmyrsfnl76cbzyyi9dm0d2y3f9107672h56ncri35mh66"; name = "bison-mode"; }; @@ -4571,7 +4571,7 @@ bitbake = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, mmm-mode, s }: melpaBuild { pname = "bitbake"; - version = "20160104.254"; + version = "20160104.354"; src = fetchFromGitHub { owner = "canatella"; repo = "bitbake-el"; @@ -4579,7 +4579,7 @@ sha256 = "14dsjbw4ss3i6ydynm121v5j3idvy85sk1vqbr5r871d32179xan"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bitbake"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/bitbake"; sha256 = "1k2n1i8g0jc78sp1icm64rlhi1q0vqar2a889nldp134a1l7bfah"; name = "bitbake"; }; @@ -4592,7 +4592,7 @@ bitlbee = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "bitlbee"; - version = "20151202.1800"; + version = "20151202.1900"; src = fetchFromGitHub { owner = "pjones"; repo = "bitlbee-el"; @@ -4600,7 +4600,7 @@ sha256 = "0mccvpf8f87i7rqga3s4slrqz80rp3kyj071rrimhzpx8pnsrxx9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bitlbee"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/bitlbee"; sha256 = "1lmbmlshr8b645qsb88rswmbbcbbawzl04xdjlygq4dnpkxc8w0f"; name = "bitlbee"; }; @@ -4613,7 +4613,7 @@ bitly = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "bitly"; - version = "20151125.1048"; + version = "20151125.1148"; src = fetchFromGitHub { owner = "jorgenschaefer"; repo = "bitly-el"; @@ -4621,7 +4621,7 @@ sha256 = "09blh9cbcbqr3pdaiwm9fmh5kzqm1v9mffy623z3jn87g5wadrmb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bitly"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/bitly"; sha256 = "032s7ax8qp3qzcj1njbyyxiyadjirphswqdlr45zj6hzajfsr247"; name = "bitly"; }; @@ -4633,13 +4633,13 @@ }) {}; blank-mode = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "blank-mode"; - version = "20130824.659"; + version = "20130824.759"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/blank-mode.el"; sha256 = "1wdplnmdllbydwr9gyyq4fbkxl5xjh7220vd4iajyv74pg2jkkkv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/blank-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/blank-mode"; sha256 = "1pyx5xwflnni9my5aqpgf8xz4q4rvmj67pwb4zxx1lghrca97z87"; name = "blank-mode"; }; @@ -4652,7 +4652,7 @@ blgrep = callPackage ({ clmemo, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "blgrep"; - version = "20150401.916"; + version = "20150401.1016"; src = fetchFromGitHub { owner = "ataka"; repo = "blgrep"; @@ -4660,7 +4660,7 @@ sha256 = "1pslwyaq18d1z7fay2ih3n27i6b49ss62drqqb095l1jxk42xxm0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/blgrep"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/blgrep"; sha256 = "0w7453vh9c73hdfgr06693kwvhznn9xr1hqa65izlsx2fjhqc9gm"; name = "blgrep"; }; @@ -4673,7 +4673,7 @@ bliss-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "bliss-theme"; - version = "20141116.101"; + version = "20141116.201"; src = fetchFromGitHub { owner = "emacsfodder"; repo = "emacs-bliss-theme"; @@ -4681,7 +4681,7 @@ sha256 = "0dn0i3nxrqd82b9d17p1v0ddlpxnlfclkc8sqzrwq6cf19wcrmdr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bliss-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/bliss-theme"; sha256 = "1kzvi6zymfgirr41l8r2kazfz1y4xkigbp5qa1fafcdmw81anmdh"; name = "bliss-theme"; }; @@ -4694,15 +4694,15 @@ blockdiag-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "blockdiag-mode"; - version = "20160406.1301"; + version = "20160427.124"; src = fetchFromGitHub { owner = "xcezx"; repo = "blockdiag-mode"; - rev = "1637338e962c054336d964e2667b0631bea03eee"; - sha256 = "0gzfn775ipx1wmqi4l5yyb45a7w1hqdbdqyy06j44a2lfwq6grqw"; + rev = "f3b21ba433d60327cebd103ae4492200750e24a9"; + sha256 = "111i897dnkbx4xq62jfkqq4li4gm16lxbgkgg2gn13zv0f0lzgvy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/blockdiag-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/blockdiag-mode"; sha256 = "0v48w4slzx8baxrf10jrzcpqmcv9d3z2pz0xqn8czlzm2f6id3ya"; name = "blockdiag-mode"; }; @@ -4712,22 +4712,22 @@ license = lib.licenses.free; }; }) {}; - blog-admin = callPackage ({ ctable, f, fetchFromGitHub, fetchurl, lib, melpaBuild, names, org, s }: + blog-admin = callPackage ({ ctable, f, fetchFromGitHub, fetchurl, lib, melpaBuild, names, s }: melpaBuild { pname = "blog-admin"; - version = "20160425.2149"; + version = "20160505.2142"; src = fetchFromGitHub { owner = "CodeFalling"; repo = "blog-admin"; - rev = "3ac6c3715dbeef80c5aabdad66ac8575d1d9046a"; - sha256 = "1fx8y1xy1azyi8cnldiqq4354mhbywbljc45ilvlx13kj0fr439j"; + rev = "6c3595d8722f807c9a15b2adfae381a6a6fc6a58"; + sha256 = "0h05408dmrqz8pgl2j04qyhlw1nnkf4jn1aqgi8v1mc949ysmxcw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/blog-admin"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/blog-admin"; sha256 = "03wnci5903c6jikkvlzc2vfma9h9qk673cc3wm756rx94jxinmyk"; name = "blog-admin"; }; - packageRequires = [ ctable f names org s ]; + packageRequires = [ ctable f names s ]; meta = { homepage = "https://melpa.org/#/blog-admin"; license = lib.licenses.free; @@ -4736,7 +4736,7 @@ bm = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "bm"; - version = "20151222.1803"; + version = "20151222.1903"; src = fetchFromGitHub { owner = "joodland"; repo = "bm"; @@ -4744,7 +4744,7 @@ sha256 = "1ggqg0lgvxg2adq91damvh55m36qsa23n3z6zyf5z6855ilzaa4x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/bm"; sha256 = "07459r7m12j2nsb7qrb26bx32alylhaaq3z448n42lz02a8dc63g"; name = "bm"; }; @@ -4757,7 +4757,7 @@ bog = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "bog"; - version = "20160306.2305"; + version = "20160307.5"; src = fetchFromGitHub { owner = "kyleam"; repo = "bog"; @@ -4765,7 +4765,7 @@ sha256 = "04x0gw83x3y0xq2g2vkn27qmvqia04dvwq6yhjif0zz9jr2s7a10"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bog"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/bog"; sha256 = "1ci8xxca7dclmi5v37y5k45qlmzs6a9hi6m7czgiwxii902w5pkl"; name = "bog"; }; @@ -4778,7 +4778,7 @@ bongo = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "bongo"; - version = "20160313.917"; + version = "20160313.1017"; src = fetchFromGitHub { owner = "dbrock"; repo = "bongo"; @@ -4786,7 +4786,7 @@ sha256 = "109r51flzhva8npch6ykqkcd2j5jpffhw6ziq3rmlqb7yc04wghb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bongo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/bongo"; sha256 = "07i9gw067r2igp6s2g2iakm1ybvw04q6zznna2cfdf08nax64ghv"; name = "bongo"; }; @@ -4799,7 +4799,7 @@ bonjourmadame = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "bonjourmadame"; - version = "20160112.356"; + version = "20160112.456"; src = fetchFromGitHub { owner = "pierre-lecocq"; repo = "bonjourmadame"; @@ -4807,7 +4807,7 @@ sha256 = "06cpbjbv8ysz81szwgglgy5r1aay8rrzw5k86wyqg9jdzwpmilpn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bonjourmadame"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/bonjourmadame"; sha256 = "0d36yradh37359fjk59s54hxkbh4qcc17sblj2ylcdyw7181iwfn"; name = "bonjourmadame"; }; @@ -4820,7 +4820,7 @@ boogie-friends = callPackage ({ cl-lib ? null, company, dash, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild, yasnippet }: melpaBuild { pname = "boogie-friends"; - version = "20160423.1103"; + version = "20160423.1203"; src = fetchFromGitHub { owner = "boogie-org"; repo = "boogie-friends"; @@ -4828,7 +4828,7 @@ sha256 = "1vf05zdn9ync6p0pfg570z040lvlb5f6zm7wx2l356pvl129d67a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/boogie-friends"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/boogie-friends"; sha256 = "0cfs7gvjxsx2027dbzh4yypz500nmk503ikiiprbww8jyvc8grk7"; name = "boogie-friends"; }; @@ -4840,13 +4840,13 @@ }) {}; bookmark-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "bookmark-plus"; - version = "20160423.1727"; + version = "20160423.1827"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/bookmark+.el"; sha256 = "06621js3bvslfmzmkphzzcrd8hbixin2nx30ammcqaa6572y14ad"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bookmark+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/bookmark+"; sha256 = "0121xx7dp2pakk9g7sg6par4mkxd9ky746yk4wh2wrhprc9dqzni"; name = "bookmark-plus"; }; @@ -4859,7 +4859,7 @@ boon = callPackage ({ emacs, expand-region, fetchFromGitHub, fetchurl, lib, melpaBuild, multiple-cursors }: melpaBuild { pname = "boon"; - version = "20160228.1635"; + version = "20160228.1735"; src = fetchFromGitHub { owner = "jyp"; repo = "boon"; @@ -4867,7 +4867,7 @@ sha256 = "0ab9wmm1i5ws77dfa6y21ds39gh28i2xw0xbqrf4mc147bsgfz4n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/boon"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/boon"; sha256 = "0gryw7x97jd46jgrm93cjagj4p7w93cjc36i2ps9ajf0d8m4gajb"; name = "boon"; }; @@ -4880,7 +4880,7 @@ borland-blue-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "borland-blue-theme"; - version = "20160117.721"; + version = "20160117.821"; src = fetchFromGitHub { owner = "fourier"; repo = "borland-blue-theme"; @@ -4888,7 +4888,7 @@ sha256 = "0yzfxxv2bw4x320268bixfc7yf97851804bz3829vbdhnr4kp6y5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/borland-blue-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/borland-blue-theme"; sha256 = "1sc8qngm40bwdym8k1dgbahg48i73c00zxd99kqqwm9fnd6nm7qx"; name = "borland-blue-theme"; }; @@ -4901,7 +4901,7 @@ boron-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "boron-theme"; - version = "20150117.1152"; + version = "20150117.1252"; src = fetchFromGitHub { owner = "emacsfodder"; repo = "emacs-boron-theme"; @@ -4909,7 +4909,7 @@ sha256 = "1gys5ri56s2s525wdji3m72sxzswmb8cmhmw5iha84v7hlqkrahb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/boron-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/boron-theme"; sha256 = "1rrqlq08jnh9ihb99ji1vvmamj742assnm4a7xqz6gp7f248nb81"; name = "boron-theme"; }; @@ -4922,7 +4922,7 @@ boxquote = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "boxquote"; - version = "20081011.1526"; + version = "20081011.1626"; src = fetchFromGitHub { owner = "davep"; repo = "boxquote.el"; @@ -4930,7 +4930,7 @@ sha256 = "0235l4f1cxj7nysfnay4fz52mg0c13pzqxbhw65vdpfzz1gl1p73"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/boxquote"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/boxquote"; sha256 = "0s6cxb8y1y8w9vxxhj1izs8d0gzk4z2zm0cm9gkw1h7k2kyggx6s"; name = "boxquote"; }; @@ -4943,7 +4943,7 @@ bpe = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "bpe"; - version = "20141228.1605"; + version = "20141228.1705"; src = fetchFromGitHub { owner = "yuutayamada"; repo = "bpe"; @@ -4951,7 +4951,7 @@ sha256 = "0chmarbpqingdma54d6chbr6v6jg8lapbw56cpvcpbl04fz980r0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bpe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/bpe"; sha256 = "08zfqcgs7i2ram2qpy8vrzksx5722aahr66vdi4d9bcxm03s19fm"; name = "bpe"; }; @@ -4964,7 +4964,7 @@ bpr = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "bpr"; - version = "20160127.1102"; + version = "20160127.1202"; src = fetchFromGitHub { owner = "ilya-babanov"; repo = "emacs-bpr"; @@ -4972,7 +4972,7 @@ sha256 = "05x9fmxlybas3gcv3qf1vcfh5k265hjwh73232fyg2v562if748z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bpr"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/bpr"; sha256 = "0rjxn40n4s4xdq51bq0w3455g9pli2pvcf1gnbr96zawbngrw6x2"; name = "bpr"; }; @@ -4985,7 +4985,7 @@ bracketed-paste = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "bracketed-paste"; - version = "20160407.1848"; + version = "20160407.1948"; src = fetchFromGitHub { owner = "hchbaw"; repo = "bracketed-paste.el"; @@ -4993,7 +4993,7 @@ sha256 = "1l6j2zs12psc15cfhqq6hm1bg012jr49zd2i36cmappbsiax1l8m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bracketed-paste"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/bracketed-paste"; sha256 = "1v7zwi29as0218vy6ch21iqqcxfhyh373m3dbcdzm2pb8bpcg58j"; name = "bracketed-paste"; }; @@ -5006,7 +5006,7 @@ brainfuck-mode = callPackage ({ fetchFromGitHub, fetchurl, langdoc, lib, melpaBuild }: melpaBuild { pname = "brainfuck-mode"; - version = "20150113.242"; + version = "20150113.342"; src = fetchFromGitHub { owner = "tom-tan"; repo = "brainfuck-mode"; @@ -5014,7 +5014,7 @@ sha256 = "1nzgjgzidyrplfs4jl8nikd5wwvb4rmrnm51qxmw9y2if0hpq0jd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/brainfuck-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/brainfuck-mode"; sha256 = "08jzx329mrr3c2pifs3hb4i79dsw606b0iviagaaja8s808m40cd"; name = "brainfuck-mode"; }; @@ -5027,7 +5027,7 @@ broadcast = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "broadcast"; - version = "20151204.2012"; + version = "20151204.2112"; src = fetchFromGitHub { owner = "killdash9"; repo = "broadcast.el"; @@ -5035,7 +5035,7 @@ sha256 = "0w6b9rxdciy1365kgf6fh3vgrjr8xd5ar6xcn0g4h56f2zg9hdmj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/broadcast"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/broadcast"; sha256 = "1h2c3mb49q3vlpalrsrx8q3rmy1zg0y45ayvzbvzdkfgs8idgbib"; name = "broadcast"; }; @@ -5048,7 +5048,7 @@ browse-at-remote = callPackage ({ cl-lib ? null, f, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "browse-at-remote"; - version = "20160413.1921"; + version = "20160413.2021"; src = fetchFromGitHub { owner = "rmuslimov"; repo = "browse-at-remote"; @@ -5056,7 +5056,7 @@ sha256 = "12m24n9yif9km4b2sw6am1bdfhxg05wdrq2jnp56jy1i7cgjrm1c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/browse-at-remote"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/browse-at-remote"; sha256 = "1d40b9j3pc6iy3l25062k7f52aq0vk9sizdwd7wii3v5nciczv6w"; name = "browse-at-remote"; }; @@ -5069,7 +5069,7 @@ browse-kill-ring = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "browse-kill-ring"; - version = "20160125.209"; + version = "20160125.309"; src = fetchFromGitHub { owner = "browse-kill-ring"; repo = "browse-kill-ring"; @@ -5077,7 +5077,7 @@ sha256 = "0sndzhza9k4vcf70fzxsyzrfryaz92lm1y7bbb0dx10m65qljpbi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/browse-kill-ring"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/browse-kill-ring"; sha256 = "1d97ap0vrg5ymp96z7y6si98fspxzy02jh1i4clvw5lggjfibhq4"; name = "browse-kill-ring"; }; @@ -5090,13 +5090,13 @@ browse-kill-ring-plus = callPackage ({ browse-kill-ring, fetchurl, lib, melpaBuild }: melpaBuild { pname = "browse-kill-ring-plus"; - version = "20151231.1421"; + version = "20151231.1521"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/browse-kill-ring+.el"; sha256 = "1z6pix1ml3s97jh34fwjj008ihlrz4hkipdh5yzcvc6nhrimjw2f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/browse-kill-ring+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/browse-kill-ring+"; sha256 = "1flw7vmqgsjjvr2zlgz2909gvpq9mhz8qkg6hvsrzwg95f4l548w"; name = "browse-kill-ring-plus"; }; @@ -5109,7 +5109,7 @@ browse-url-dwim = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, string-utils }: melpaBuild { pname = "browse-url-dwim"; - version = "20140731.1422"; + version = "20140731.1522"; src = fetchFromGitHub { owner = "rolandwalker"; repo = "browse-url-dwim"; @@ -5117,7 +5117,7 @@ sha256 = "1rcihwdxrzhgcz573rh1yp3770ihkwqjqvd39yhic1d3sgwxz2hy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/browse-url-dwim"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/browse-url-dwim"; sha256 = "13bv2ka5pp9k4kwrxfqfawwxzsqlakvpi9a32gxgx7qfi0dcb1rf"; name = "browse-url-dwim"; }; @@ -5129,13 +5129,13 @@ }) {}; bs-ext = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "bs-ext"; - version = "20130824.659"; + version = "20130824.759"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/bs-ext.el"; sha256 = "1yslzlx54n17330sf6b2pynz01y6ifnkhipz4hggn1i55bz8hvrw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bs-ext"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/bs-ext"; sha256 = "0dddligqr71qdakgfkx0r45k9py85qlym7y5f204bxppyw5jmwb6"; name = "bs-ext"; }; @@ -5148,7 +5148,7 @@ btc-ticker = callPackage ({ fetchFromGitHub, fetchurl, json ? null, lib, melpaBuild, request }: melpaBuild { pname = "btc-ticker"; - version = "20151113.859"; + version = "20151113.959"; src = fetchFromGitHub { owner = "niedbalski"; repo = "emacs-btc-ticker"; @@ -5156,7 +5156,7 @@ sha256 = "022j0gw5qkxjz8f70vqjxysifv2mz6cigf9n5z03zmpvwwvxmx2z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/btc-ticker"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/btc-ticker"; sha256 = "1vfnx114bvnly1k3fmcpkqq4m9558wqr5c9k9yj8f046dgfh8dp1"; name = "btc-ticker"; }; @@ -5169,7 +5169,7 @@ bts = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, log4e, melpaBuild, pos-tip, s, widget-mvc, yaxception }: melpaBuild { pname = "bts"; - version = "20151109.733"; + version = "20151109.833"; src = fetchFromGitHub { owner = "aki2o"; repo = "emacs-bts"; @@ -5177,7 +5177,7 @@ sha256 = "1qgasaqhqm0birjmb6k6isd2f5pn58hva8db8qfhva9g5kg1f38w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bts"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/bts"; sha256 = "1i1lbjracrgdxr52agxhxxgkra4w291dmz85s195lcx38rva7ib3"; name = "bts"; }; @@ -5190,7 +5190,7 @@ bts-github = callPackage ({ bts, fetchFromGitHub, fetchurl, gh, lib, melpaBuild }: melpaBuild { pname = "bts-github"; - version = "20150108.227"; + version = "20150108.327"; src = fetchFromGitHub { owner = "aki2o"; repo = "emacs-bts-github"; @@ -5198,7 +5198,7 @@ sha256 = "1sfr3j11jz4k9jnfa9i05bp4v5vkil38iyrgsp3kxf15797b9dg9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bts-github"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/bts-github"; sha256 = "03lz12bbkjqbs82alc97k6s1pmk721qip3h9cifq8a5ww5cbq9ln"; name = "bts-github"; }; @@ -5211,7 +5211,7 @@ bubbleberry-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "bubbleberry-theme"; - version = "20141017.444"; + version = "20141017.544"; src = fetchFromGitHub { owner = "jasonm23"; repo = "emacs-bubbleberry-theme"; @@ -5219,7 +5219,7 @@ sha256 = "1aha8rzilv4k300rr4l9qjfygydfwllkbw17lhm8jz0kh9w6bd28"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bubbleberry-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/bubbleberry-theme"; sha256 = "056pcr9ynsl34wqa2pw6sh4bdl5kpp1r0pl1vvw15p4866l9bdz3"; name = "bubbleberry-theme"; }; @@ -5232,7 +5232,7 @@ buffer-buttons = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "buffer-buttons"; - version = "20150106.839"; + version = "20150106.939"; src = fetchFromGitHub { owner = "rpav"; repo = "buffer-buttons"; @@ -5240,7 +5240,7 @@ sha256 = "1p5a29bpjqr1gs6sb6rr7y0j06nlva23wxkwfskap25zvjpgwbvq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/buffer-buttons"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/buffer-buttons"; sha256 = "1p0ydbrff9197sann3s0d7hpav7r9g461w4llncafmy31w7m1dn6"; name = "buffer-buttons"; }; @@ -5253,7 +5253,7 @@ buffer-flip = callPackage ({ fetchFromGitHub, fetchurl, key-chord, lib, melpaBuild }: melpaBuild { pname = "buffer-flip"; - version = "20160109.2054"; + version = "20160109.2154"; src = fetchFromGitHub { owner = "killdash9"; repo = "buffer-flip.el"; @@ -5261,7 +5261,7 @@ sha256 = "0s43cvkr1za5sd2cvl55ig34wbp8xyjf85snmf67ps04swyyk92q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/buffer-flip"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/buffer-flip"; sha256 = "0ka9ynj528yp1p31hbhm89627v6dpwspybly806n92vxavxrn098"; name = "buffer-flip"; }; @@ -5274,7 +5274,7 @@ buffer-move = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "buffer-move"; - version = "20160108.908"; + version = "20160108.1008"; src = fetchFromGitHub { owner = "lukhas"; repo = "buffer-move"; @@ -5282,7 +5282,7 @@ sha256 = "1yzga2zs9flbarsh704hh7k4l3w09g4li9a7r3fsvl4kll80x393"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/buffer-move"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/buffer-move"; sha256 = "0wysywff2bggrha7lpl83c8x6ln7zgdj9gsqmjva6gramqb260fg"; name = "buffer-move"; }; @@ -5294,13 +5294,13 @@ }) {}; buffer-stack = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "buffer-stack"; - version = "20101223.420"; + version = "20101223.520"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/buffer-stack.el"; sha256 = "0d87cl7a4rcd6plbjyf26vaar7imwd18z24xdi4dz734m9zbkg6r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/buffer-stack"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/buffer-stack"; sha256 = "00vxfd4ki5pqf9n9vbmn1441vn2y14bdr1v05h46hswf13b4hzrn"; name = "buffer-stack"; }; @@ -5313,7 +5313,7 @@ buffer-utils = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "buffer-utils"; - version = "20140512.900"; + version = "20140512.1000"; src = fetchFromGitHub { owner = "rolandwalker"; repo = "buffer-utils"; @@ -5321,7 +5321,7 @@ sha256 = "1mnf0dgr6g58k0jyia7985jsinrla04vm5sjl2iajwphbhadjk8p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/buffer-utils"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/buffer-utils"; sha256 = "0cfipdn4fc4fvz513mwiaihvbdi05mza3z5z1379wlljw6r539z2"; name = "buffer-utils"; }; @@ -5334,7 +5334,7 @@ bufshow = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "bufshow"; - version = "20130711.1239"; + version = "20130711.1339"; src = fetchFromGitHub { owner = "pjones"; repo = "bufshow"; @@ -5342,7 +5342,7 @@ sha256 = "1plh77xzpbhgmjdagm5rhqx6nkhc0g39ir0b6s5yh003wmx6r1hh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bufshow"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/bufshow"; sha256 = "027cd0jzb8yxm66q1bhyi75f2m9f2pq3aswgav1d18na3ybwg65h"; name = "bufshow"; }; @@ -5355,7 +5355,7 @@ bug-reference-github = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "bug-reference-github"; - version = "20131202.1503"; + version = "20131202.1603"; src = fetchFromGitHub { owner = "arnested"; repo = "bug-reference-github"; @@ -5363,7 +5363,7 @@ sha256 = "0zr1raf0q5wi3vr66kglxcfxswlm8g2l501adm8c27clvqizpnrr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bug-reference-github"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/bug-reference-github"; sha256 = "18yzxwanbrxsab6ba75z1196x0m6dapdhbvy6df5b5x5viz99cf6"; name = "bug-reference-github"; }; @@ -5376,7 +5376,7 @@ bundler = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, inf-ruby, lib, melpaBuild }: melpaBuild { pname = "bundler"; - version = "20160121.524"; + version = "20160121.624"; src = fetchFromGitHub { owner = "tobiassvn"; repo = "bundler.el"; @@ -5384,7 +5384,7 @@ sha256 = "0gr4v6fmg0im17f6i3pw6h8l401n5l5lzxz0hgi8lrisvx73iqa5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bundler"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/bundler"; sha256 = "0i5ybc6i8ackxpaa75kwrg44zdq3jkvy48c42vaaafpddjwjnsy4"; name = "bundler"; }; @@ -5397,7 +5397,7 @@ bury-successful-compilation = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "bury-successful-compilation"; - version = "20150328.1928"; + version = "20150328.2028"; src = fetchFromGitHub { owner = "EricCrosson"; repo = "bury-successful-compilation"; @@ -5405,7 +5405,7 @@ sha256 = "0mirb3yvs4aq6n53lx690k06zllyzr29ms0888v5svjirxjazvh8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bury-successful-compilation"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/bury-successful-compilation"; sha256 = "1gkq4r1573m6m57fp7x69k7kcpqchpcqfcz3792v0wxr22zhkwr3"; name = "bury-successful-compilation"; }; @@ -5418,7 +5418,7 @@ buster-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "buster-mode"; - version = "20140928.713"; + version = "20140928.813"; src = fetchFromGitHub { owner = "magnars"; repo = "buster-mode"; @@ -5426,7 +5426,7 @@ sha256 = "1viq7cb41r8klr8i38c5zjrhdnww31gh4j51xdgy4v2lc3z321zi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/buster-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/buster-mode"; sha256 = "1qndhchc8y27x49znhnc4rny1ynfcplr64rczrlbj53qmkxn5am7"; name = "buster-mode"; }; @@ -5439,7 +5439,7 @@ buster-snippets = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }: melpaBuild { pname = "buster-snippets"; - version = "20151125.410"; + version = "20151125.510"; src = fetchFromGitHub { owner = "magnars"; repo = "buster-snippets.el"; @@ -5447,7 +5447,7 @@ sha256 = "11djqlw4qf3qs2rwiz7dn5q2zw5i8sykwdf4hg4awsgv8g0bbxn6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/buster-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/buster-snippets"; sha256 = "0k36c2k7wwix10rgmjxipc77fkn9jahjyvl191af6w41wla47x4x"; name = "buster-snippets"; }; @@ -5460,7 +5460,7 @@ busybee-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "busybee-theme"; - version = "20130920.1142"; + version = "20130920.1242"; src = fetchFromGitHub { owner = "mswift42"; repo = "busybee-theme"; @@ -5468,7 +5468,7 @@ sha256 = "11z987frzswnsym8g3l0s9wwdly1zn5inl2l558m6kcvfy7g59cx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/busybee-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/busybee-theme"; sha256 = "0w0z5x2fbnalv404av3mapfkqbfgyk81a1mzvngll8x0pirbyi10"; name = "busybee-theme"; }; @@ -5481,7 +5481,7 @@ butler = callPackage ({ deferred, emacs, fetchFromGitHub, fetchurl, json ? null, lib, melpaBuild }: melpaBuild { pname = "butler"; - version = "20150811.1908"; + version = "20150811.2008"; src = fetchFromGitHub { owner = "AshtonKem"; repo = "Butler"; @@ -5489,7 +5489,7 @@ sha256 = "0pp604r2gzzdpfajw920607pklwflk842difdyl4hy9w87fgc0jg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/butler"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/butler"; sha256 = "1jv74l9jy55qpwf5np9nlj6a1wqsm3xirm7wm89d1h2mbsfcr0mq"; name = "butler"; }; @@ -5502,15 +5502,15 @@ buttercup = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "buttercup"; - version = "20160410.658"; + version = "20160505.734"; src = fetchFromGitHub { owner = "jorgenschaefer"; repo = "emacs-buttercup"; - rev = "06c9699d6a1af54c08a4a164b40b87ba4a873f31"; - sha256 = "06zpygv1dgb4bijv7ybgmc2wb2mclh3sszvsi7j7z9rf5hyd8hi2"; + rev = "b1200036bb9eb5a3d6a104ce4391960a0ff6b9b4"; + sha256 = "0vwp8chivfhyjrlp6lvpqgiwyy5qdy04kskn4bg2i729n2cwp3kd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/buttercup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/buttercup"; sha256 = "1grrrdk5pl9l1jvnwzl8g0102gipvxb5qn6k2nmv28jpl57v8dkb"; name = "buttercup"; }; @@ -5523,7 +5523,7 @@ button-lock = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "button-lock"; - version = "20150223.754"; + version = "20150223.854"; src = fetchFromGitHub { owner = "rolandwalker"; repo = "button-lock"; @@ -5531,7 +5531,7 @@ sha256 = "06qjvybf65ffrcnhhbqs333lg51fawaxnva3jvdg7zbrsv4m9acl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/button-lock"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/button-lock"; sha256 = "1arrdmb3nm570hgs18y9sz3z9v0wlkr3vwa2zgfnc15lmf0y34mp"; name = "button-lock"; }; @@ -5544,7 +5544,7 @@ c-c-combo = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "c-c-combo"; - version = "20151223.2055"; + version = "20151223.2155"; src = fetchFromGitHub { owner = "CestDiego"; repo = "c-c-combo.el"; @@ -5552,7 +5552,7 @@ sha256 = "040mcq2cwzbrf96f9mghb4314cd8xwp7ki2ix9fxpmbwiy323ld5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/c-c-combo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/c-c-combo"; sha256 = "09rvh6n2hqls7qki5dc34s2hmcmlvdsbgzcxgglhcmrhwx5w4vxn"; name = "c-c-combo"; }; @@ -5565,7 +5565,7 @@ c-eldoc = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "c-eldoc"; - version = "20150904.332"; + version = "20150904.432"; src = fetchFromGitHub { owner = "nflath"; repo = "c-eldoc"; @@ -5573,7 +5573,7 @@ sha256 = "0mlm5f66541namqn04vx6csf14mxhsiknbm36yqdnp1lxb7knv7a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/c-eldoc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/c-eldoc"; sha256 = "13grkww14w39y2x6mrbfa9nzljsnl5l7il8dnj6sjdyv0hz9x8vm"; name = "c-eldoc"; }; @@ -5586,7 +5586,7 @@ c0-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "c0-mode"; - version = "20151110.1252"; + version = "20151110.1352"; src = fetchFromGitHub { owner = "catern"; repo = "c0-mode"; @@ -5594,7 +5594,7 @@ sha256 = "10k90r4ckkkdjn9pqcbfyp6ynvrd5k0ngqcn5d0v1qvkn6jifxjx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/c0-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/c0-mode"; sha256 = "0s3h4b3lpz4jsk222yyfdxh780dvykhaqgyv6r3ambz95vrmmpl4"; name = "c0-mode"; }; @@ -5607,7 +5607,7 @@ cabledolphin = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, seq }: melpaBuild { pname = "cabledolphin"; - version = "20160204.338"; + version = "20160204.438"; src = fetchFromGitHub { owner = "legoscia"; repo = "cabledolphin"; @@ -5615,7 +5615,7 @@ sha256 = "1h395hvia7r76zlgr10qdr9q2159qyrs89znhkp2czikwm8kjiqk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cabledolphin"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cabledolphin"; sha256 = "04slrx0vkcm66q59158limn0cpxn18ghlqyx7z8nrn7frrc03z03"; name = "cabledolphin"; }; @@ -5628,7 +5628,7 @@ cache = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cache"; - version = "20111019.1800"; + version = "20111019.1900"; src = fetchFromGitHub { owner = "nflath"; repo = "cache"; @@ -5636,7 +5636,7 @@ sha256 = "1hp6dk84vvgkmj5lzghvqlpq3axwzgx9c7gly2yx6497fgf9jlby"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cache"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cache"; sha256 = "0lzj0h23g6alqcmd20ack53p72g9i09dp9x0bp3rdw5izcfkvhh3"; name = "cache"; }; @@ -5649,7 +5649,7 @@ cacoo = callPackage ({ concurrent, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cacoo"; - version = "20120319.1859"; + version = "20120319.1959"; src = fetchFromGitHub { owner = "kiwanami"; repo = "emacs-cacoo"; @@ -5657,7 +5657,7 @@ sha256 = "07kzhyqr8ycjvkknijqhsfr26zd5jc8wxm9sl8bp6pzn4jbs1dmx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cacoo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cacoo"; sha256 = "0kri4vi6dpsf0zk24psm16f3aa27cq5b54ga7zygmr02csq24a6z"; name = "cacoo"; }; @@ -5670,7 +5670,7 @@ cake = callPackage ({ anything, cake-inflector, fetchFromGitHub, fetchurl, historyf, lib, melpaBuild }: melpaBuild { pname = "cake"; - version = "20140603.2331"; + version = "20140604.31"; src = fetchFromGitHub { owner = "k1LoW"; repo = "emacs-cake"; @@ -5678,7 +5678,7 @@ sha256 = "0bvrwzjx93qyx97qqw0imvnkkx4w91yk99rnhcmk029zj1fy0kzg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cake"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cake"; sha256 = "06qlqrazz2jr08g44q73hx9vpp6xnjvkpd6ky108g0xc5p9q2hcr"; name = "cake"; }; @@ -5691,7 +5691,7 @@ cake-inflector = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "cake-inflector"; - version = "20140415.358"; + version = "20140415.458"; src = fetchFromGitHub { owner = "k1LoW"; repo = "emacs-cake-inflector"; @@ -5699,7 +5699,7 @@ sha256 = "0xq10jkbk3crdhbh4lab39xhfw6vvcqz3if5q3yy4gzhx7zp94i4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cake-inflector"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cake-inflector"; sha256 = "04mrqcm1igb638skaq2b3nr5yzxnck2vwhln61rnh7lkfxq7wbwf"; name = "cake-inflector"; }; @@ -5712,7 +5712,7 @@ cake2 = callPackage ({ anything, cake-inflector, dash, f, fetchFromGitHub, fetchurl, historyf, ht, json ? null, lib, melpaBuild, s }: melpaBuild { pname = "cake2"; - version = "20140626.742"; + version = "20140626.842"; src = fetchFromGitHub { owner = "k1LoW"; repo = "emacs-cake2"; @@ -5720,7 +5720,7 @@ sha256 = "15w21r0gqblbn9wlvb4wlm3706wf01r38mp465snjzi839f6sazb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cake2"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cake2"; sha256 = "03q8vqqjlhahgnyy976c46x52splwdjpmb9ngrj5c2z7d8n9145x"; name = "cake2"; }; @@ -5733,7 +5733,7 @@ cal-china-x = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cal-china-x"; - version = "20160102.324"; + version = "20160102.424"; src = fetchFromGitHub { owner = "xwl"; repo = "cal-china-x"; @@ -5741,7 +5741,7 @@ sha256 = "03hi0ggq81nm1kd0mcf8fwnya4axzd80vfdjdbhgpxbkvnxldzpv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cal-china-x"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cal-china-x"; sha256 = "06mh2p14m2axci8vy1hr7jpy53jj215z0djyn8h7zpr0k62ajhka"; name = "cal-china-x"; }; @@ -5754,7 +5754,7 @@ calfw = callPackage ({ fetchFromGitHub, fetchurl, google-maps, lib, melpaBuild }: melpaBuild { pname = "calfw"; - version = "20160302.2058"; + version = "20160302.2158"; src = fetchFromGitHub { owner = "kiwanami"; repo = "emacs-calfw"; @@ -5762,7 +5762,7 @@ sha256 = "0rhasr818qijd2pcgifi0j3q4fkbiw2ck1nivajk7m810p53bxbj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/calfw"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/calfw"; sha256 = "1lyb0jzpx19mx50d8xjv9sx201518vkvskxbglykaqpjm9ik2ai8"; name = "calfw"; }; @@ -5775,7 +5775,7 @@ calfw-gcal = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "calfw-gcal"; - version = "20120111.400"; + version = "20120111.500"; src = fetchFromGitHub { owner = "myuhe"; repo = "calfw-gcal.el"; @@ -5783,7 +5783,7 @@ sha256 = "14n5rci4bkbl7037xvkd69gfxnjlgvd2j1xzciqcgz92f06ir3xi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/calfw-gcal"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/calfw-gcal"; sha256 = "182p56wiycrm2cjzmlqabksyshpk7nga68jf80vjjmaavp5xqsq8"; name = "calfw-gcal"; }; @@ -5796,7 +5796,7 @@ calmer-forest-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "calmer-forest-theme"; - version = "20130926.10"; + version = "20130926.110"; src = fetchFromGitHub { owner = "caldwell"; repo = "calmer-forest-theme"; @@ -5804,7 +5804,7 @@ sha256 = "0n6y4z3qg04qnlsrjysf8ldxl2f2bk7n8crijydwabyy672qxd9h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/calmer-forest-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/calmer-forest-theme"; sha256 = "0riz5n8fzvxdnzgg650xqc2zwc4xvhwjlrrzls5h0pl5adaxz96p"; name = "calmer-forest-theme"; }; @@ -5817,7 +5817,7 @@ camcorder = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, names }: melpaBuild { pname = "camcorder"; - version = "20160404.2334"; + version = "20160405.34"; src = fetchFromGitHub { owner = "Malabarba"; repo = "camcorder.el"; @@ -5825,7 +5825,7 @@ sha256 = "0am8asrzjs3iwak9c86fxb4zwgx5smbb9ywp0zn4y7j37blygswj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/camcorder"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/camcorder"; sha256 = "1kbnpz3kn8ycpy8nlp8bsnnd1k1h7m02h7w5f7raw97sk4cnpvbi"; name = "camcorder"; }; @@ -5837,14 +5837,14 @@ }) {}; caml = callPackage ({ fetchsvn, fetchurl, lib, melpaBuild }: melpaBuild { pname = "caml"; - version = "20150911.658"; + version = "20150911.758"; src = fetchsvn { url = "http://caml.inria.fr/svn/ocaml/trunk/emacs/"; rev = "16549"; sha256 = "16qw82m87i1fcnsccqcvr9l6p2cy0jdhljsgaivq0q10hdmbgqdw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/caml"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/caml"; sha256 = "0kxrn9s1h2l05akcdcj6fd3g6x5wbi511mf14g9glcn8azyfs698"; name = "caml"; }; @@ -5857,7 +5857,7 @@ capture = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "capture"; - version = "20130828.1144"; + version = "20130828.1244"; src = fetchFromGitHub { owner = "pashinin"; repo = "capture.el"; @@ -5865,7 +5865,7 @@ sha256 = "08cp45snhyir5w8gyp6xws1q7c54pz06q099l0m3zmwn9277g68z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/capture"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/capture"; sha256 = "1hxrvyq8my5886q7wj5w3mhyja7d6cf19gyclap492ci7kmrkdk2"; name = "capture"; }; @@ -5878,7 +5878,7 @@ cargo = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, rust-mode }: melpaBuild { pname = "cargo"; - version = "20160426.309"; + version = "20160426.409"; src = fetchFromGitHub { owner = "kwrooijen"; repo = "cargo.el"; @@ -5886,7 +5886,7 @@ sha256 = "15arbbksq4y0h4ns8blygk512ngyxp1nfh6bq2nvhhymzg58pwpb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cargo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cargo"; sha256 = "06zq657cxfk5l4867qqsvhskcqc9wswyl030wj27a43idj8n41jx"; name = "cargo"; }; @@ -5899,7 +5899,7 @@ caroline-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "caroline-theme"; - version = "20160318.20"; + version = "20160318.120"; src = fetchFromGitHub { owner = "xjackk"; repo = "caroline-theme"; @@ -5907,7 +5907,7 @@ sha256 = "055w1spba0q9rqqg4rjds0iakr9d8xg66959xahxq8268mq5446n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/caroline-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/caroline-theme"; sha256 = "07flxggnf0lb1fnvprac1daplgx4bi5fnnkgfc58wnw805s12k32"; name = "caroline-theme"; }; @@ -5920,7 +5920,7 @@ caseformat = callPackage ({ cl-lib ? null, dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "caseformat"; - version = "20160115.1015"; + version = "20160115.1115"; src = fetchFromGitHub { owner = "HKey"; repo = "caseformat"; @@ -5928,7 +5928,7 @@ sha256 = "1cp9i69npvyn72fqv0w8q1hlkcawkhbah4jblc341ycxwxb48mkl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/caseformat"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/caseformat"; sha256 = "1qwyr74jbx4jpfcw8sccg47q1vdg094rr06m111gsz2yaj9m0gfk"; name = "caseformat"; }; @@ -5941,15 +5941,15 @@ cask = callPackage ({ cl-lib ? null, dash, epl, f, fetchFromGitHub, fetchurl, lib, melpaBuild, package-build, s, shut-up }: melpaBuild { pname = "cask"; - version = "20151123.728"; + version = "20151123.828"; src = fetchFromGitHub { owner = "cask"; repo = "cask"; - rev = "de7814799a43640f814e8a04834e43cad8c7ba9c"; - sha256 = "0i57pn5vdqzpsg7gqn1jsbn8hvk4dm4jqjkyd85j4gcziwpxh5kj"; + rev = "04caee05e83e57259e5192e5be3137b2b2e93bde"; + sha256 = "17ydqyhz0qnhjgqydrb4h7zm0jkxa3fwc3yqsy2z6bb08wafn8fm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cask"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cask"; sha256 = "11nr6my3vlb1xiyai7qwii3nszda2mnkhkjlbh3d0699h0yw7dk5"; name = "cask"; }; @@ -5962,15 +5962,15 @@ cask-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cask-mode"; - version = "20160410.949"; + version = "20160410.1049"; src = fetchFromGitHub { owner = "Wilfred"; repo = "cask-mode"; - rev = "c97755267b7215f02df7b0c16b4210c04aee6566"; - sha256 = "162vvyycvv9pd93hsb8blbjqf22d40xinm5340b3vnsqgg33l4jl"; + rev = "7c6719d3bb4fe552958634bd5a11abc56681f3a7"; + sha256 = "0gywc2mzdzq3ny0jjffa3151vi7zb9i8ddy5d63x4yhicf5sxlh1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cask-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cask-mode"; sha256 = "0fs9zyihipr3klnh3w22h43qz0wnxplm62x4kx7pm1chq9bc9kz6"; name = "cask-mode"; }; @@ -5983,7 +5983,7 @@ cask-package-toolset = callPackage ({ ansi, cl-lib ? null, commander, dash, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, s, shut-up }: melpaBuild { pname = "cask-package-toolset"; - version = "20160102.337"; + version = "20160102.437"; src = fetchFromGitHub { owner = "AdrieanKhisbe"; repo = "cask-package-toolset.el"; @@ -5991,7 +5991,7 @@ sha256 = "1m40s9q00l06fz525m3zrvwd6s60lggdqls5k5njkn671aa3h71s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cask-package-toolset"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cask-package-toolset"; sha256 = "13ix093c0a58rjqj7zfp3914xj3hvj276gb2d8zhvrx9vvs1345g"; name = "cask-package-toolset"; }; @@ -6004,7 +6004,7 @@ caskxy = callPackage ({ fetchFromGitHub, fetchurl, lib, log4e, melpaBuild, yaxception }: melpaBuild { pname = "caskxy"; - version = "20140513.1039"; + version = "20140513.1139"; src = fetchFromGitHub { owner = "aki2o"; repo = "caskxy"; @@ -6012,7 +6012,7 @@ sha256 = "15sq5vrkhb7c5j6ny6wy4bkyl5pggch4l7zw46an29rzni3pffr3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/caskxy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/caskxy"; sha256 = "0x4s3c8m75zxsvqpgfc5xwll0489zzdnngmnq048z9gkgcd7pd2s"; name = "caskxy"; }; @@ -6025,7 +6025,7 @@ cbm = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cbm"; - version = "20160131.1106"; + version = "20160131.1206"; src = fetchFromGitHub { owner = "akermu"; repo = "cbm.el"; @@ -6033,7 +6033,7 @@ sha256 = "125d5i7ycdn2hgffc1l3jqcfzvk70m1ciywj4h53qakkl15r9m38"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cbm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cbm"; sha256 = "02ch0gdw610c8dfxxjxs7ijsc9lzbhklj7hqgwfwksnyc36zcjmn"; name = "cbm"; }; @@ -6046,7 +6046,7 @@ ccc = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ccc"; - version = "20151205.743"; + version = "20151205.843"; src = fetchFromGitHub { owner = "skk-dev"; repo = "ddskk"; @@ -6054,7 +6054,7 @@ sha256 = "1mqz83yqgad7p5ssjil10w0bw0vm642xp18ms4id8pzcbxz8ygsv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ccc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ccc"; sha256 = "0fckhmz4svcg059v4acbn13yf3ijs09fxmq1axc1b9bm3xxig2cq"; name = "ccc"; }; @@ -6067,7 +6067,7 @@ cd-compile = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cd-compile"; - version = "20141108.1357"; + version = "20141108.1457"; src = fetchFromGitHub { owner = "jamienicol"; repo = "emacs-cd-compile"; @@ -6075,7 +6075,7 @@ sha256 = "1a93cim1w96aaj81clhjv25r7v9bwqm9a818mn8lk4aj1bmhgc4c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cd-compile"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cd-compile"; sha256 = "1a24rv1jbb883vwhjkw6qxv3h3qy039iqkhkx3jkq1ydidr9f0hv"; name = "cd-compile"; }; @@ -6088,7 +6088,7 @@ cdb = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cdb"; - version = "20151205.743"; + version = "20151205.843"; src = fetchFromGitHub { owner = "skk-dev"; repo = "ddskk"; @@ -6096,7 +6096,7 @@ sha256 = "1mqz83yqgad7p5ssjil10w0bw0vm642xp18ms4id8pzcbxz8ygsv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cdb"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cdb"; sha256 = "1gx34062h25gqsl3j1fjlklha19snvmfaw068q6bv6x9r92niqnf"; name = "cdb"; }; @@ -6109,7 +6109,7 @@ cdlatex = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cdlatex"; - version = "20140707.626"; + version = "20140707.726"; src = fetchFromGitHub { owner = "cdominik"; repo = "cdlatex"; @@ -6117,7 +6117,7 @@ sha256 = "1jj9vmhc4s3ych08bjm1c2xwi81z1p20rj7bvxrgvb5aga2ghi9d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cdlatex"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cdlatex"; sha256 = "1jsfmzl13fykbg7l4wv9si7z11ai5lzvkndzbxh9cyqlvznq0m64"; name = "cdlatex"; }; @@ -6130,7 +6130,7 @@ cdnjs = callPackage ({ cl-lib ? null, dash, deferred, f, fetchFromGitHub, fetchurl, lib, melpaBuild, pkg-info }: melpaBuild { pname = "cdnjs"; - version = "20140217.1512"; + version = "20140217.1612"; src = fetchFromGitHub { owner = "yasuyk"; repo = "cdnjs.el"; @@ -6138,7 +6138,7 @@ sha256 = "0aspci0zg8waa3l234l0f8fjfzm67z2gydfdwwpxksz49sm2s1jk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cdnjs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cdnjs"; sha256 = "1clm86n643z1prxrlxlg59jg43l9wwm34x5d88bj6yvix8g6wkb7"; name = "cdnjs"; }; @@ -6151,7 +6151,7 @@ cedit = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cedit"; - version = "20141231.1014"; + version = "20141231.1114"; src = fetchFromGitHub { owner = "zk-phi"; repo = "cedit"; @@ -6159,7 +6159,7 @@ sha256 = "1f8gdj3p54q3410c66716y3l7i7nnkmq6hqz0dg1a1sc6jwdij3v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cedit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cedit"; sha256 = "169sy7a1bgczwfxkkzjiggb7vdjxhrx7i3a39g6zv9f1zs6byk6m"; name = "cedit"; }; @@ -6172,7 +6172,7 @@ celery = callPackage ({ dash-functional, deferred, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "celery"; - version = "20150812.347"; + version = "20150812.447"; src = fetchFromGitHub { owner = "ardumont"; repo = "emacs-celery"; @@ -6180,7 +6180,7 @@ sha256 = "0974bxy85rcxia6dkfryas2g46nanjdf8fv90adbc7kyj07xsf7c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/celery"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/celery"; sha256 = "0m3hmvp6xz2m7z1kbb0ii0j3c95zi19652gfixq5a5x23kz8y59h"; name = "celery"; }; @@ -6193,13 +6193,13 @@ centered-cursor-mode = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "centered-cursor-mode"; - version = "20151001.834"; + version = "20151001.934"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/centered-cursor-mode.el"; sha256 = "15psyizjz8wf9wfxwwcdmg1bxf8jbv0qy40rskz7si7vxin8hhxl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/centered-cursor-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/centered-cursor-mode"; sha256 = "0a5mymnkwjvpra8iffxjwa5fq3kq4vc8fw7pr7gmrwq8ml7il5zl"; name = "centered-cursor-mode"; }; @@ -6212,7 +6212,7 @@ centered-window-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "centered-window-mode"; - version = "20160210.447"; + version = "20160210.547"; src = fetchFromGitHub { owner = "anler"; repo = "centered-window-mode"; @@ -6220,7 +6220,7 @@ sha256 = "1i5ipll7jlrxqb0kcwq0rlrpfaxsyp663bwjdnhj84c50wlv052f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/centered-window-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/centered-window-mode"; sha256 = "08pmk3rqgbk5fzhxx1kd8rp2k5r5vd2jc9k2phrqg75pf89h3zf4"; name = "centered-window-mode"; }; @@ -6233,7 +6233,7 @@ centimacro = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "centimacro"; - version = "20140306.827"; + version = "20140306.927"; src = fetchFromGitHub { owner = "abo-abo"; repo = "centimacro"; @@ -6241,7 +6241,7 @@ sha256 = "0zqrpaq9c3lm12jxnvysh8f3m3193k22zaj0ycscdqd1jpq4wcgh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/centimacro"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/centimacro"; sha256 = "1qbyfi6s4hdp5sv394w3sib8g2kx06i06q8gh6hdv5pis5kq9fx6"; name = "centimacro"; }; @@ -6254,7 +6254,7 @@ cerbere = callPackage ({ f, fetchFromGitHub, fetchurl, lib, melpaBuild, pkg-info, s }: melpaBuild { pname = "cerbere"; - version = "20140418.915"; + version = "20140418.1015"; src = fetchFromGitHub { owner = "nlamirault"; repo = "cerbere"; @@ -6262,7 +6262,7 @@ sha256 = "17jg5d5afh9zpnjx8wkys8bjllxq99j0yhz8j3fvkskisvhkz1im"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cerbere"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cerbere"; sha256 = "1g3svmh5dlh5mvyag3hmiy90dfkk6f7ppd9qpwckxqyll9vl7r06"; name = "cerbere"; }; @@ -6275,15 +6275,15 @@ cfengine-code-style = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cfengine-code-style"; - version = "20131209.611"; + version = "20131209.711"; src = fetchFromGitHub { owner = "cfengine"; repo = "core"; - rev = "e2d729f9861671b3e143e27bc90b88593a4e7556"; - sha256 = "10yrq2f1qs72b1qmlyhl32hd4f36r9nhfih5bwjkrf6w481yq9q3"; + rev = "a0818284656c140ba6d33e2b12f6deba482c4234"; + sha256 = "1qj5c8yx26365nwiswnf236wx215vc996d97mi5yryj4b4j92z0f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cfengine-code-style"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cfengine-code-style"; sha256 = "1ny8xvdnz740qmw9m81xnwd0gh0a516arpvl3nfimglaai5bfc9a"; name = "cfengine-code-style"; }; @@ -6296,7 +6296,7 @@ cff = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cff"; - version = "20160118.1418"; + version = "20160118.1518"; src = fetchFromGitHub { owner = "fourier"; repo = "cff"; @@ -6304,7 +6304,7 @@ sha256 = "019vqjmq6hb2f5lddqy0ya5q0fd47xix29cashlchz0r034rc32r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cff"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cff"; sha256 = "04b2ck1jkhsrka6dbyn6rpsmmc2bn13kpyhzibd781hj73d93jgc"; name = "cff"; }; @@ -6316,14 +6316,14 @@ }) {}; cg = callPackage ({ fetchsvn, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cg"; - version = "20160414.909"; + version = "20160414.1009"; src = fetchsvn { url = "http://beta.visl.sdu.dk/svn/visl/tools/vislcg3/trunk/emacs"; - rev = "11487"; + rev = "11511"; sha256 = "1ninfjra12s9agrzb115wrcphkb38flacnjgw1czw6sdqjjxcnp4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cg"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cg"; sha256 = "0ra6mxf8l9fjn1vszjj71fs6f6l08hwypka8zsb3si96fzb6sgjh"; name = "cg"; }; @@ -6336,7 +6336,7 @@ change-inner = callPackage ({ expand-region, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "change-inner"; - version = "20150707.1044"; + version = "20150707.1144"; src = fetchFromGitHub { owner = "magnars"; repo = "change-inner.el"; @@ -6344,7 +6344,7 @@ sha256 = "1m9sq93bwajbld3lnlzkjbsby5zlm9sxjzqynryyvsb9zr1d0a9z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/change-inner"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/change-inner"; sha256 = "0r693056wykg4bs7inbfzfniyawmb91igk6kjjpq3njk0v84y1sj"; name = "change-inner"; }; @@ -6357,15 +6357,15 @@ chapel-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "chapel-mode"; - version = "20160126.228"; + version = "20160504.408"; src = fetchFromGitHub { owner = "russel"; repo = "Emacs-Chapel-Mode"; - rev = "e3c5fd718d00b7d33babec728990c802852b95ba"; - sha256 = "0d2zac02zqf3al4x412cnz3hr57j3xpc34i30z1q6g429v4krkam"; + rev = "6e095edd7639f5f0a81e14d6412410b49466697e"; + sha256 = "0r3yja2ak3z62lav2s8vimmjyi4rd5s82fbs8r6p2k0shm6lj7hz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/chapel-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/chapel-mode"; sha256 = "0hmnsv8xf85fc4jqkaqz5j3sf56hgib4jp530vvyc2dl2sps6vzz"; name = "chapel-mode"; }; @@ -6378,7 +6378,7 @@ char-menu = callPackage ({ avy-menu, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "char-menu"; - version = "20160204.15"; + version = "20160204.115"; src = fetchFromGitHub { owner = "mrkkrp"; repo = "char-menu"; @@ -6386,7 +6386,7 @@ sha256 = "0jq5xicf0y7z1v68cgsg9vniw6pa793izz350a4wgdq8f5fcm24f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/char-menu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/char-menu"; sha256 = "11jkwghrmmvpv7piznkpa0wilwjdsps9rix3950pfabhlllw268l"; name = "char-menu"; }; @@ -6399,13 +6399,13 @@ character-fold-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "character-fold-plus"; - version = "20160227.1703"; + version = "20160227.1803"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/character-fold+.el"; sha256 = "0xvgxjyl6s6hds7m9brzly6vxj06m47hxkw5h2riscq6l4nwc9vz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/character-fold+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/character-fold+"; sha256 = "01ibdwd7vap9m64w0bhyknxa3iank3wfss49gsgg4xbbxibyrjh3"; name = "character-fold-plus"; }; @@ -6418,7 +6418,7 @@ charmap = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "charmap"; - version = "20160309.346"; + version = "20160309.446"; src = fetchFromGitHub { owner = "lateau"; repo = "charmap"; @@ -6426,7 +6426,7 @@ sha256 = "05k19q7iihvhi0gflmkpsg5q3ydkdlvf0xh7kjk4lx9yvi0am7m2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/charmap"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/charmap"; sha256 = "1j7762d2i17ysn9ys8j7wfv989avmax8iylml2hc26mwbpyfpm84"; name = "charmap"; }; @@ -6439,7 +6439,7 @@ chatwork = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "chatwork"; - version = "20150807.2148"; + version = "20150807.2248"; src = fetchFromGitHub { owner = "ataka"; repo = "chatwork"; @@ -6447,7 +6447,7 @@ sha256 = "1r2s3fszblk5wa6v3hnbzsri550gi5qsmp2w1spvmf1726n900cb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/chatwork"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/chatwork"; sha256 = "0p71swcpfqbx2zmp5nh57f0m30cn68g3019005wa5x4fg7dx746p"; name = "chatwork"; }; @@ -6460,7 +6460,7 @@ cheatsheet = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cheatsheet"; - version = "20151203.351"; + version = "20151203.451"; src = fetchFromGitHub { owner = "darksmile"; repo = "cheatsheet"; @@ -6468,7 +6468,7 @@ sha256 = "15kam5hf2f4nwp29nvxqm5bs8nyhqf5m44fdb21qljgbmjdlh38y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cheatsheet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cheatsheet"; sha256 = "11z3svlzvmhdy0pkxbx9qz9bnq056cgkbfyw9z34aq1yxazi2cpq"; name = "cheatsheet"; }; @@ -6481,7 +6481,7 @@ checkbox = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "checkbox"; - version = "20141116.1858"; + version = "20141116.1958"; src = fetchFromGitHub { owner = "camdez"; repo = "checkbox.el"; @@ -6489,7 +6489,7 @@ sha256 = "0660ix17ksxy5a5v8yqy7adr9d4bs6p1mnkc6lpyw96k4pn62h45"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/checkbox"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/checkbox"; sha256 = "17gw6w1m6bs3sfx8nqa8nzdq26m8w85a0fca5qw3bmd18bcmknqa"; name = "checkbox"; }; @@ -6499,22 +6499,22 @@ license = lib.licenses.free; }; }) {}; - chee = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: + chee = callPackage ({ dash, f, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "chee"; - version = "20160411.811"; + version = "20160501.1044"; src = fetchFromGitHub { owner = "eikek"; repo = "chee"; - rev = "29e598d2742d11f4c27a274a09e063ec7aa78f52"; - sha256 = "1p709rds9b6pdv4nhl0i2gggp093sbk5hjbfjl0yp7b896ss9553"; + rev = "a6cc3f4c7b7c05c3a5eedf6742d7feb96cf25696"; + sha256 = "1pfp9nlfdmv2pzy795qm94h6f6jj4mnxynbvz2xfa0vm7qm23knr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/chee"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/chee"; sha256 = "1njldlp9bnwq7izmdlz5a97kfgxxnycv43djrvx4b01j4v2yz4zv"; name = "chee"; }; - packageRequires = [ dash s ]; + packageRequires = [ dash f s ]; meta = { homepage = "https://melpa.org/#/chee"; license = lib.licenses.free; @@ -6523,7 +6523,7 @@ cheerilee = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, xelb }: melpaBuild { pname = "cheerilee"; - version = "20160313.1335"; + version = "20160313.1435"; src = fetchFromGitHub { owner = "Vannil"; repo = "cheerilee.el"; @@ -6531,7 +6531,7 @@ sha256 = "1jdlp5cnsiza55vx4kxacqgk7yqg9fvd9swhwdxkczadb2d5l9p1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cheerilee"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cheerilee"; sha256 = "15igjlnq35cg9nslyqa63i1inqipx3y8g7zg4r26m69k25simqrv"; name = "cheerilee"; }; @@ -6544,7 +6544,7 @@ chef-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "chef-mode"; - version = "20111121.900"; + version = "20111121.1000"; src = fetchFromGitHub { owner = "mpasternacki"; repo = "chef-mode"; @@ -6552,7 +6552,7 @@ sha256 = "1mnskri5r1lyzzcag60x7amn00613jyl7by7hd4sqm2a7zd4r5aa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/chef-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/chef-mode"; sha256 = "1pz82s82d4z3vkm8mpmwdxb9pd11kq09g23mg461lzqxjjw734rr"; name = "chef-mode"; }; @@ -6565,7 +6565,7 @@ cherry-blossom-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cherry-blossom-theme"; - version = "20150621.2242"; + version = "20150621.2342"; src = fetchFromGitHub { owner = "inlinestyle"; repo = "emacs-cherry-blossom-theme"; @@ -6573,7 +6573,7 @@ sha256 = "0m97xr6lddy2jdmd4bl4kbp2568p4n110yfa9k7fqc20ihq8jkyd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cherry-blossom-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cherry-blossom-theme"; sha256 = "1i3kafj3m7iij5mr0vhg45zdnkl9pg9ndrq0b0i3k3mw7d5siq7w"; name = "cherry-blossom-theme"; }; @@ -6586,7 +6586,7 @@ chicken-scheme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "chicken-scheme"; - version = "20141116.1339"; + version = "20141116.1439"; src = fetchFromGitHub { owner = "dleslie"; repo = "chicken-scheme.el"; @@ -6594,7 +6594,7 @@ sha256 = "0j61lvr99viaharg4553whcppp7lxhimkk5lps0izz9mnd8y2wm5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/chicken-scheme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/chicken-scheme"; sha256 = "0ns49p7nsifpi7wrzr02ljrr0p6hxanrg54zaixakvjkxwcgfabr"; name = "chicken-scheme"; }; @@ -6607,7 +6607,7 @@ chinese-conv = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "chinese-conv"; - version = "20160218.1515"; + version = "20160218.1615"; src = fetchFromGitHub { owner = "gucong"; repo = "emacs-chinese-conv"; @@ -6615,7 +6615,7 @@ sha256 = "1vfyb8gfrvfrvaaw0p7c6xji2kz6cqm6km2cmjixw0qjikxxlkv1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/chinese-conv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/chinese-conv"; sha256 = "1lqpq7pg0nqqqj29f8is6c724vl75wscmm1v08j480pfks3l8cnr"; name = "chinese-conv"; }; @@ -6628,7 +6628,7 @@ chinese-fonts-setup = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "chinese-fonts-setup"; - version = "20160419.2359"; + version = "20160420.59"; src = fetchFromGitHub { owner = "tumashu"; repo = "chinese-fonts-setup"; @@ -6636,7 +6636,7 @@ sha256 = "0j0a1aqpayyxlay0mfj5gv1h27pqa3lj4z4x790y5lkgnlmwzsc0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/chinese-fonts-setup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/chinese-fonts-setup"; sha256 = "141ri6a6mnxf7fn17gw48kxk8pvl3khdxkb4pw8brxwrr9rx0xd5"; name = "chinese-fonts-setup"; }; @@ -6649,15 +6649,15 @@ chinese-pyim = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, popup, pos-tip }: melpaBuild { pname = "chinese-pyim"; - version = "20160425.427"; + version = "20160501.2104"; src = fetchFromGitHub { owner = "tumashu"; repo = "chinese-pyim"; - rev = "3ace78589370536f526d944437dbaa5c7f101587"; - sha256 = "1s9gcfxsbbwdck42gc9syscnrc8mjsx159pgfxcw7bpcbhknclkm"; + rev = "fb0971eafbabaa16ce4aad7a20d71a23767a44d8"; + sha256 = "0qfnz9p0p5lk51n7k8jls2zr2qv7w68bdsi2icywsp01mz7m0cp4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/chinese-pyim"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/chinese-pyim"; sha256 = "0zdx5zhgj1ly89pl48vigjzd8g74fxnxcd9bxrqykcn7y5qvim8l"; name = "chinese-pyim"; }; @@ -6670,7 +6670,7 @@ chinese-remote-input = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "chinese-remote-input"; - version = "20150110.2303"; + version = "20150111.3"; src = fetchFromGitHub { owner = "tumashu"; repo = "chinese-remote-input"; @@ -6678,7 +6678,7 @@ sha256 = "06k13wk659qw40aczq3i9gj0nyz6vb9z1nwsz7c1bgjbl2lh6hcv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/chinese-remote-input"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/chinese-remote-input"; sha256 = "0nnccm6w9i0qsgiif22hi1asr0xqdivk8fgg76mp26a2fv8d3dag"; name = "chinese-remote-input"; }; @@ -6691,7 +6691,7 @@ chinese-wbim = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "chinese-wbim"; - version = "20150623.2250"; + version = "20150623.2350"; src = fetchFromGitHub { owner = "zilongshanren"; repo = "chinese-wbim"; @@ -6699,7 +6699,7 @@ sha256 = "0cx1g6drkr8gyqqdxjf7j4wprxcbq30gam2racgnvdicgij0apwg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/chinese-wbim"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/chinese-wbim"; sha256 = "1pax3kpmvg170mpvfrjbpj9czq0xykmfbany2f7vbn96jb5xfmsb"; name = "chinese-wbim"; }; @@ -6712,7 +6712,7 @@ chinese-word-at-point = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "chinese-word-at-point"; - version = "20150618.2038"; + version = "20150618.2138"; src = fetchFromGitHub { owner = "xuchunyang"; repo = "chinese-word-at-point.el"; @@ -6720,7 +6720,7 @@ sha256 = "1jsy43avingxxccs0zw2qm5ysx8g76xhhh1mnyypxskl9m60qb4j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/chinese-word-at-point"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/chinese-word-at-point"; sha256 = "0pjs4ckncv84qrdj0pyibrbiy86f1gmjla9n2cgh10xbc7j9y0c4"; name = "chinese-word-at-point"; }; @@ -6733,7 +6733,7 @@ chinese-yasdcv = callPackage ({ chinese-pyim, cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "chinese-yasdcv"; - version = "20150702.816"; + version = "20150702.916"; src = fetchFromGitHub { owner = "tumashu"; repo = "chinese-yasdcv"; @@ -6741,7 +6741,7 @@ sha256 = "14yzmyzkf846yjrwnqrbzmvyhfav39qa5fr8jnb7lyz8rm7y9pnq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/chinese-yasdcv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/chinese-yasdcv"; sha256 = "1y2qywldf8b8b0km1lcf74p0w6rd8gr86qcj7ikwhhbvd19dfglm"; name = "chinese-yasdcv"; }; @@ -6753,13 +6753,13 @@ }) {}; chm-view = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "chm-view"; - version = "20110616.1219"; + version = "20110616.1319"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/chm-view.el"; sha256 = "1r274pf0xrcdml4sy2nhhp3v5pr3y3s4lvk45hd3pmw1i4pw2fd8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/chm-view"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/chm-view"; sha256 = "1acz0fvl3inn7g4himq680yf64bgm7n61hsv2zpm1k6smrdl78nz"; name = "chm-view"; }; @@ -6772,7 +6772,7 @@ chronos = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "chronos"; - version = "20150602.1029"; + version = "20150602.1129"; src = fetchFromGitHub { owner = "dxknight"; repo = "chronos"; @@ -6780,7 +6780,7 @@ sha256 = "1mqdz3rvx0jm80fgzw3s3lqn448kqrlrifdwcg36cqq4qmkpalq4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/chronos"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/chronos"; sha256 = "1fwpll0mk6pc37qagbq3b3z32d2qwz993nxp9pjw4qbmlnq6sy9d"; name = "chronos"; }; @@ -6793,7 +6793,7 @@ chruby = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "chruby"; - version = "20151204.630"; + version = "20151204.730"; src = fetchFromGitHub { owner = "plexus"; repo = "chruby.el"; @@ -6801,7 +6801,7 @@ sha256 = "0gx0bd7j71rlniq64vw8k59yzl070mdia05ry18br8kpsbk3bhrl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/chruby"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/chruby"; sha256 = "0pk6vdvmifiq52n452lbrkklxa69c40bfyzra9qhrghxr2q5v3mk"; name = "chruby"; }; @@ -6814,15 +6814,15 @@ cider = callPackage ({ clojure-mode, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, pkg-info, queue, seq, spinner }: melpaBuild { pname = "cider"; - version = "20160426.28"; + version = "20160506.1535"; src = fetchFromGitHub { owner = "clojure-emacs"; repo = "cider"; - rev = "8068a65138e0f0851f58a5f78a5409d45f3dcc94"; - sha256 = "1zm12c5qsmlhmhjhv4fmv6h0l7d3av53gl6kjj1qnwkhgsym2548"; + rev = "775b7d2d080935622d9ce1b769080630cb94739d"; + sha256 = "0qj0vwnqimd4gail1l25figalk8qs197fcmsvsvlf9x0q1cafnfk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cider"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cider"; sha256 = "1a6hb728a3ir18c2dn9zfd3jn79fi5xjn5gqr7ljy6qb063xd4qx"; name = "cider"; }; @@ -6835,7 +6835,7 @@ cider-decompile = callPackage ({ cider, fetchFromGitHub, fetchurl, javap-mode, lib, melpaBuild }: melpaBuild { pname = "cider-decompile"; - version = "20151121.2337"; + version = "20151122.37"; src = fetchFromGitHub { owner = "clojure-emacs"; repo = "cider-decompile"; @@ -6843,7 +6843,7 @@ sha256 = "1w4y65s3m2irga4iqfqqkcmvl6ss24zmaxqzbfib8jmi84r4lpac"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cider-decompile"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cider-decompile"; sha256 = "0jhsm31zcfwkbpsdh1lvmjm1fv2m7y849930sjvf5nxv3ffhx3b4"; name = "cider-decompile"; }; @@ -6856,7 +6856,7 @@ cider-eval-sexp-fu = callPackage ({ emacs, eval-sexp-fu, fetchFromGitHub, fetchurl, highlight, lib, melpaBuild }: melpaBuild { pname = "cider-eval-sexp-fu"; - version = "20160412.128"; + version = "20160412.228"; src = fetchFromGitHub { owner = "clojure-emacs"; repo = "cider-eval-sexp-fu"; @@ -6864,7 +6864,7 @@ sha256 = "0g8yzfpaz1glxd0dxrd19bvk469pdjkr4b11xifcvamxa2slryij"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cider-eval-sexp-fu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cider-eval-sexp-fu"; sha256 = "1n4sgv042qd9560pllabysx0c5snly6i22bk126y8f8rn0zj58iq"; name = "cider-eval-sexp-fu"; }; @@ -6877,7 +6877,7 @@ cider-profile = callPackage ({ cider, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cider-profile"; - version = "20141120.825"; + version = "20141120.925"; src = fetchFromGitHub { owner = "thunknyc"; repo = "nrepl-profile"; @@ -6885,7 +6885,7 @@ sha256 = "0lgq4p7rs4prqfqd83v1l36xxacrd65jsfzbp7q62b2pjqikpgk0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cider-profile"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cider-profile"; sha256 = "14jc98h4r9rb7pxfb60ps4ss8p0bm66wdl6n8z1357hk93h9kmfs"; name = "cider-profile"; }; @@ -6898,7 +6898,7 @@ cider-spy = callPackage ({ cider, cl-lib ? null, dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, noflet }: melpaBuild { pname = "cider-spy"; - version = "20160313.940"; + version = "20160313.1040"; src = fetchFromGitHub { owner = "jonpither"; repo = "cider-spy"; @@ -6906,7 +6906,7 @@ sha256 = "1x96f5wc916dcwb75a34b6x1mas20gdgy34c7rg59n91ydn1mfaf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cider-spy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cider-spy"; sha256 = "0478jlg76h0mrjwk2b1kdj16s1q1b03b7ygacai45jh89bc025fh"; name = "cider-spy"; }; @@ -6919,7 +6919,7 @@ cil-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cil-mode"; - version = "20150223.450"; + version = "20150223.550"; src = fetchFromGitHub { owner = "ForNeVeR"; repo = "cil-mode"; @@ -6927,7 +6927,7 @@ sha256 = "1w0ya0446rqsg1j59fd1mp4wavv2f3h1k3mw9svm5glymdirw4d1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cil-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cil-mode"; sha256 = "1h18r086bqspyn5n252yzw8x2zgyaqzdd8pbcf5gqlh1w8kapq4y"; name = "cil-mode"; }; @@ -6940,7 +6940,7 @@ cinspect = callPackage ({ cl-lib ? null, deferred, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, python-environment }: melpaBuild { pname = "cinspect"; - version = "20150715.2133"; + version = "20150715.2233"; src = fetchFromGitHub { owner = "inlinestyle"; repo = "cinspect-mode"; @@ -6948,7 +6948,7 @@ sha256 = "190n4kdcqdwglhnawnj9mqjarmcaqylxipc07whmrii0jv279kjw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cinspect"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cinspect"; sha256 = "0djh61mrfgcm3767ll1l5apw6646j4fdcaripksrmvn5aqfn8rjj"; name = "cinspect"; }; @@ -6961,15 +6961,15 @@ circe = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "circe"; - version = "20160422.1336"; + version = "20160504.1211"; src = fetchFromGitHub { owner = "jorgenschaefer"; repo = "circe"; - rev = "fed52c2b4b49f75aec3e3238ceacf44ef0c75b5c"; - sha256 = "1wh3kwya2hpmaaj0c18g2las7jq0vkkik4n0q6whpch3r7ak6k8m"; + rev = "3a267626415bbde1d6f6e2c5c0f261a2147a28fc"; + sha256 = "0j7rfr86zlbf2grmigglrlx1wpxxwyrcf3cr1475crigbqy2f8f1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/circe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/circe"; sha256 = "1f54d8490gfx0r0cdvgmcjdxqpni43msy0k2mgqd1qz88a4b5l07"; name = "circe"; }; @@ -6982,7 +6982,7 @@ cl-format = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cl-format"; - version = "20160412.1945"; + version = "20160412.2045"; src = fetchFromGitHub { owner = "alvinfrancis"; repo = "cl-format"; @@ -6990,7 +6990,7 @@ sha256 = "108s96viral3s62a77jfgvjam08hdk97frfmxjg3xpp2ifccjs7h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cl-format"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cl-format"; sha256 = "1259ykj6z6m6gaqhkmj5f3q9vyk7idpvlvlma5likpknxj5f444v"; name = "cl-format"; }; @@ -7003,7 +7003,7 @@ cl-lib-highlight = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cl-lib-highlight"; - version = "20140127.1512"; + version = "20140127.1612"; src = fetchFromGitHub { owner = "skeeto"; repo = "cl-lib-highlight"; @@ -7011,7 +7011,7 @@ sha256 = "1mc8kayw8fmvpl0z09v6i68s2lharlwpzff0cvcsfn0an2imj2d0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cl-lib-highlight"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cl-lib-highlight"; sha256 = "13qdrvpxq928p27b1xdcbsscyhqk042rwfa17037gp9h02fd42j8"; name = "cl-lib-highlight"; }; @@ -7024,14 +7024,14 @@ clang-format = callPackage ({ cl-lib ? null, fetchsvn, fetchurl, lib, melpaBuild }: melpaBuild { pname = "clang-format"; - version = "20151116.638"; + version = "20151116.738"; src = fetchsvn { url = "http://llvm.org/svn/llvm-project/cfe/trunk/tools/clang-format"; - rev = "267566"; + rev = "268860"; sha256 = "1miz9ycxk0vvvnfi0hn0jl3sipvsyibc7j4cf59l4drz34zi8y5x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/clang-format"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/clang-format"; sha256 = "19qaihb0lqnym2in4465lv8scw6qba6fdn8rcbkpsq09hpzikbah"; name = "clang-format"; }; @@ -7044,7 +7044,7 @@ clean-aindent-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "clean-aindent-mode"; - version = "20150816.2229"; + version = "20150816.2329"; src = fetchFromGitHub { owner = "pmarinov"; repo = "clean-aindent-mode"; @@ -7052,7 +7052,7 @@ sha256 = "1h6k6kzim1zb87y1kzpqjzk3ip9bmfxyg54kdh2sfp4xy0g5h3p0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/clean-aindent-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/clean-aindent-mode"; sha256 = "1whzbs2gg2ar24kw29ffv94dgvrlfy2v4zdn0g7ksjjmmdr8ahh4"; name = "clean-aindent-mode"; }; @@ -7065,7 +7065,7 @@ clean-buffers = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "clean-buffers"; - version = "20160426.718"; + version = "20160426.818"; src = fetchFromGitHub { owner = "lujun9972"; repo = "clean-buffers"; @@ -7073,7 +7073,7 @@ sha256 = "1gkxmsjabnr9g36srxihs1d5n7p8ckqcmzcgpgsbp6s1990gzcig"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/clean-buffers"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/clean-buffers"; sha256 = "025sxrqxm24yg1wpfncrjw1nm91h0h7jy2xd5g20xqlinqqvdihj"; name = "clean-buffers"; }; @@ -7086,7 +7086,7 @@ clear-text = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "clear-text"; - version = "20160406.1543"; + version = "20160406.1643"; src = fetchFromGitHub { owner = "xuchunyang"; repo = "clear-text.el"; @@ -7094,7 +7094,7 @@ sha256 = "0y5z2pfhzpv67w2lnw1q06mflww90sfcilj89kqx2jhhrnrnn2ka"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/clear-text"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/clear-text"; sha256 = "1cx2lbcbhd024pq9njan7xrlvj3k4c3wdsvgbz5qyna0k06ix8dv"; name = "clear-text"; }; @@ -7107,7 +7107,7 @@ clevercss = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "clevercss"; - version = "20131228.1955"; + version = "20131228.2055"; src = fetchFromGitHub { owner = "jschaf"; repo = "CleverCSS-Mode"; @@ -7115,7 +7115,7 @@ sha256 = "19q6zbnl9fg4cwgi56d7p4qp6y3g0fdyihinpakby49xv2n2k8dx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/clevercss"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/clevercss"; sha256 = "189f2l4za1j9ds0bhxrzyp7da9p6svh5dx2vnzf4vql7qhjk3gf0"; name = "clevercss"; }; @@ -7128,7 +7128,7 @@ click-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "click-mode"; - version = "20160331.1648"; + version = "20160331.1748"; src = fetchFromGitHub { owner = "bmalehorn"; repo = "click-mode"; @@ -7136,7 +7136,7 @@ sha256 = "0hbdk1xdh753g59dgyqjj6wgjkf3crsd6pzaq7p5ifbfhrph0qjl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/click-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/click-mode"; sha256 = "1p5dz4a74w5zxdlw17h5z9dglapia4p29880liw3bif2c7dzkg0r"; name = "click-mode"; }; @@ -7149,15 +7149,15 @@ cliphist = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, popup }: melpaBuild { pname = "cliphist"; - version = "20160210.317"; + version = "20160502.2212"; src = fetchFromGitHub { owner = "redguardtoo"; repo = "cliphist"; - rev = "413af96bbd0dfc8b264f5b8e3920c319af065c50"; - sha256 = "07q8naxhag2q0m5cb9c2n5js6j5qdrjyyiqbcpxmq598b8mw8kzd"; + rev = "7a1a8a6dcc046c7ede4480315c539c06e1bbadc9"; + sha256 = "0h856l6rslawf3vg37xhsaw5w56r9qlwzbqapg751qg0v7wf0860"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cliphist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cliphist"; sha256 = "0mg6pznijba3kvp3r57pi54v6mgih2vfwj2kg6qmcy1abrc0xq29"; name = "cliphist"; }; @@ -7170,7 +7170,7 @@ clipmon = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "clipmon"; - version = "20160128.1204"; + version = "20160128.1304"; src = fetchFromGitHub { owner = "bburns"; repo = "clipmon"; @@ -7178,7 +7178,7 @@ sha256 = "07a55q97j2vsqpha0akri2kq90v1l97mc1mgr97pq39gc1bbc5d3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/clipmon"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/clipmon"; sha256 = "1gvy1722px4fh88jyb8xx7k1dgyjgq7zjadr5fghdir42l0byw7i"; name = "clipmon"; }; @@ -7191,7 +7191,7 @@ clippy = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, pos-tip }: melpaBuild { pname = "clippy"; - version = "20140417.614"; + version = "20140417.714"; src = fetchFromGitHub { owner = "Fuco1"; repo = "clippy.el"; @@ -7199,7 +7199,7 @@ sha256 = "0msmigzip7hpjxwkz0khhlc2lj9wgb2919i4k0kv8ppi9j2f9hjc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/clippy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/clippy"; sha256 = "0nqmc8f2qrsp25vzc66xw6b232n7fyw6g06mwn2cdpm3d2pgb7rg"; name = "clippy"; }; @@ -7212,7 +7212,7 @@ clips-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "clips-mode"; - version = "20131012.1601"; + version = "20131012.1701"; src = fetchFromGitHub { owner = "grettke"; repo = "clips-mode"; @@ -7220,7 +7220,7 @@ sha256 = "0i6sj5rs4b9v8aqq9l6wr15080qb101hdxspx6innhijhajgmssd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/clips-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/clips-mode"; sha256 = "083wrhjn04rg8vr6j0ziffdbdhbfn63wzl4q7yzpkf8qckh6mxhf"; name = "clips-mode"; }; @@ -7233,15 +7233,15 @@ clj-refactor = callPackage ({ cider, dash, edn, emacs, fetchFromGitHub, fetchurl, hydra, inflections, lib, melpaBuild, multiple-cursors, paredit, s, yasnippet }: melpaBuild { pname = "clj-refactor"; - version = "20160425.311"; + version = "20160501.734"; src = fetchFromGitHub { owner = "clojure-emacs"; repo = "clj-refactor.el"; - rev = "f1fde528055f6877a5df9a40192dc401096826e6"; - sha256 = "0i8sxr27w6l6jacmshmmf9lvp1da6hxx641xbdd3hj2vv12p2kwq"; + rev = "47480c6ad701ca78645093b548bf64b72f19fb2b"; + sha256 = "0m13gd28b49h2vzbw1knhs8x1b26m5n7ys046hxsxzmlqd1z05kx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/clj-refactor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/clj-refactor"; sha256 = "1qvds6dylazvrzz1ji2z2ldw72pa2nxqacb9d04gasmkqc32ipvz"; name = "clj-refactor"; }; @@ -7265,7 +7265,7 @@ cljr-helm = callPackage ({ clj-refactor, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "cljr-helm"; - version = "20150425.1507"; + version = "20150425.1607"; src = fetchFromGitHub { owner = "philjackson"; repo = "cljr-helm"; @@ -7273,7 +7273,7 @@ sha256 = "0ydv2prnw1j3m5nk23fqn4iv202kjswr8z0ip4zacdm8bl0q25ln"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cljr-helm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cljr-helm"; sha256 = "108a1xgnc6qy088vs41j3npwk25a5vny0xx4r3yh76jsmpdpcgnc"; name = "cljr-helm"; }; @@ -7286,7 +7286,7 @@ cljsbuild-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cljsbuild-mode"; - version = "20160402.1200"; + version = "20160402.1300"; src = fetchFromGitHub { owner = "kototama"; repo = "cljsbuild-mode"; @@ -7294,7 +7294,7 @@ sha256 = "0flnfivz6w3pkham3g08m3xzy3jg1rzvxfa00vkr7ll8iyv4ypqc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cljsbuild-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cljsbuild-mode"; sha256 = "0qvb990dgq4v75lwnd661wxszbdbhlgxpsyv4zaj6h10gp1vi214"; name = "cljsbuild-mode"; }; @@ -7307,7 +7307,7 @@ clmemo = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "clmemo"; - version = "20160326.1123"; + version = "20160326.1223"; src = fetchFromGitHub { owner = "ataka"; repo = "clmemo"; @@ -7315,7 +7315,7 @@ sha256 = "152qf7i5bf7xvr35gyawl8abkh7v5dsz957zxslrbbnc8bb1k6bz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/clmemo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/clmemo"; sha256 = "03qa79ip0gqinj1kk898lcvixk98hf6gknz0yc2fnqcrm642k2vs"; name = "clmemo"; }; @@ -7328,7 +7328,7 @@ cloc = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cloc"; - version = "20151007.401"; + version = "20151007.501"; src = fetchFromGitHub { owner = "cosmicexplorer"; repo = "cloc-emacs"; @@ -7336,7 +7336,7 @@ sha256 = "1rflc00yrbb7xzfh8c54ajf4qnhsp3mq07gkr257gjyrwsdw762v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cloc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cloc"; sha256 = "1ny5wixa9x4fq5jvhs01jmyvwkfvwwi9aamrcqsl42s9sx6ygz7a"; name = "cloc"; }; @@ -7349,7 +7349,7 @@ clocker = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, projectile }: melpaBuild { pname = "clocker"; - version = "20160125.1705"; + version = "20160125.1805"; src = fetchFromGitHub { owner = "roman"; repo = "clocker.el"; @@ -7357,7 +7357,7 @@ sha256 = "0hz6a7gj0zfsdaifkhwf965c96rkjc3kivvqlf50zllsw0ysbnn0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/clocker"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/clocker"; sha256 = "0cckrk40k1labiqjh7ghzpx5zi136xz70j3ipp117x52qf24k10k"; name = "clocker"; }; @@ -7370,7 +7370,7 @@ clojars = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, request }: melpaBuild { pname = "clojars"; - version = "20151215.1433"; + version = "20151215.1533"; src = fetchFromGitHub { owner = "joshuamiller"; repo = "clojars.el"; @@ -7378,7 +7378,7 @@ sha256 = "1r189c0xm6vh05k0y715i5ldj1pxzvwkxqbq0n85m489mjnf2wv6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/clojars"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/clojars"; sha256 = "1skvd29347hwapgdqznbzwfcp2nf077qkdzknxc8ylmqa32yf5w1"; name = "clojars"; }; @@ -7391,7 +7391,7 @@ clojure-cheatsheet = callPackage ({ cider, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "clojure-cheatsheet"; - version = "20160320.515"; + version = "20160320.615"; src = fetchFromGitHub { owner = "clojure-emacs"; repo = "clojure-cheatsheet"; @@ -7399,7 +7399,7 @@ sha256 = "0943fh8309mvg73paf97i2mfkrnl04x11gy8iz73c9622bkkmpcb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/clojure-cheatsheet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/clojure-cheatsheet"; sha256 = "05sw3bkdcadslpsk64ds0ciavmdgqk7fr5q3z505vvafmszfnaqv"; name = "clojure-cheatsheet"; }; @@ -7412,15 +7412,15 @@ clojure-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "clojure-mode"; - version = "20160414.745"; + version = "20160505.1643"; src = fetchFromGitHub { owner = "clojure-emacs"; repo = "clojure-mode"; - rev = "1f82425e3f87394b27432b4dfb6f4f504232bf84"; - sha256 = "0y7fgbcgnpdrclkbqrrdlydv55m37czmhfn4s1hmb203kb5a1mlr"; + rev = "da67712a17eec76ab2b5f6b2f7dc90f1e66d6e8a"; + sha256 = "1sdpchj2hdbd8r0pcdbfhkysblxsvq4zkkxgipg9zc58pvq1ylw7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/clojure-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/clojure-mode"; sha256 = "11n0rjhs1mmlzdqy711g432an5ybdka5xj0ipsk8dx6xcyab70np"; name = "clojure-mode"; }; @@ -7433,15 +7433,15 @@ clojure-mode-extra-font-locking = callPackage ({ clojure-mode, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "clojure-mode-extra-font-locking"; - version = "20160307.614"; + version = "20160307.714"; src = fetchFromGitHub { owner = "clojure-emacs"; repo = "clojure-mode"; - rev = "1f82425e3f87394b27432b4dfb6f4f504232bf84"; - sha256 = "0y7fgbcgnpdrclkbqrrdlydv55m37czmhfn4s1hmb203kb5a1mlr"; + rev = "da67712a17eec76ab2b5f6b2f7dc90f1e66d6e8a"; + sha256 = "1sdpchj2hdbd8r0pcdbfhkysblxsvq4zkkxgipg9zc58pvq1ylw7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/clojure-mode-extra-font-locking"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/clojure-mode-extra-font-locking"; sha256 = "00nff9mkj61i76dj21x87vhz0bbkzgvkx1ypkxcv6yf3pfhq7r8n"; name = "clojure-mode-extra-font-locking"; }; @@ -7454,7 +7454,7 @@ clojure-quick-repls = callPackage ({ cider, dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "clojure-quick-repls"; - version = "20150814.236"; + version = "20150814.336"; src = fetchFromGitHub { owner = "symfrog"; repo = "clojure-quick-repls"; @@ -7462,7 +7462,7 @@ sha256 = "1vgahik2q2sn6vqm9wg5b9jc74mkbc1md8pl69apz4cg397kjkzr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/clojure-quick-repls"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/clojure-quick-repls"; sha256 = "10glzyd4y3918pwp048pc1y7y7fa34fkqckn1nbys841dbssmay0"; name = "clojure-quick-repls"; }; @@ -7475,7 +7475,7 @@ clojure-snippets = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }: melpaBuild { pname = "clojure-snippets"; - version = "20160305.802"; + version = "20160305.902"; src = fetchFromGitHub { owner = "mpenet"; repo = "clojure-snippets"; @@ -7483,7 +7483,7 @@ sha256 = "08sswxmrb94an95cjxxcppn3f8gvy99jdr4cbwlwk2yswdrxdlg0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/clojure-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/clojure-snippets"; sha256 = "15622mdd6b3fpwp22d32p78yap08pyscs2vc83sv1xz4338i0lij"; name = "clojure-snippets"; }; @@ -7496,15 +7496,15 @@ clomacs = callPackage ({ cider, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "clomacs"; - version = "20160419.458"; + version = "20160504.412"; src = fetchFromGitHub { owner = "clojure-emacs"; repo = "clomacs"; - rev = "4b55c5befa80cbd0dce8d4a11ba8800283c7a6df"; - sha256 = "13wm02s36yl24v6nr1s7l00mgi7nqg01jz404mnflgbzhd35rbfl"; + rev = "f4ae84463ff811bb54386c47b0e2a024ae5cf82d"; + sha256 = "0pb6y5kk5xhfxnipksja7hpyfy89v6l6dp5jcbz9wzis4am88hxh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/clomacs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/clomacs"; sha256 = "1vfjzrzp58ap75i0dh5bwnlkb8qbpfmrd3fg9n6aaibvvd2m3hyh"; name = "clomacs"; }; @@ -7517,7 +7517,7 @@ closql = callPackage ({ emacs, emacsql-sqlite, fetchFromGitLab, fetchurl, lib, melpaBuild }: melpaBuild { pname = "closql"; - version = "20160415.2116"; + version = "20160415.2216"; src = fetchFromGitLab { owner = "tarsius"; repo = "closql"; @@ -7525,7 +7525,7 @@ sha256 = "1p251vyh8fc6xzaf0v7yvf4wkrvcfjdb3qr88ll4xcb61gj3vi3a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/closql"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/closql"; sha256 = "0a8fqw8n03x9mygvzb95m8mmfqp3j8hynwafvryjsl0np0695b6l"; name = "closql"; }; @@ -7538,7 +7538,7 @@ closure-lint-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "closure-lint-mode"; - version = "20101118.1524"; + version = "20101118.1624"; src = fetchFromGitHub { owner = "r0man"; repo = "closure-lint-mode"; @@ -7546,7 +7546,7 @@ sha256 = "0v0wdq0b5jz4x0d7dl3ilgf3aqp2hk375db366ij6gxwd0b9i3na"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/closure-lint-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/closure-lint-mode"; sha256 = "1xmi1gjgayd5xbm3xx721xv57ns3x56r8ps94zpwyf2znpdchqfy"; name = "closure-lint-mode"; }; @@ -7559,7 +7559,7 @@ cloud-to-butt-erc = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cloud-to-butt-erc"; - version = "20130627.1808"; + version = "20130627.1908"; src = fetchFromGitHub { owner = "leathekd"; repo = "cloud-to-butt-erc"; @@ -7567,7 +7567,7 @@ sha256 = "07kvnb6p35swkyj92c4wymsqq4r2885wdpqhv7nhicvi6n658kpf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cloud-to-butt-erc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cloud-to-butt-erc"; sha256 = "061mmw39dq8sqzi2589lf7svy15n2iyiwbfiram48r2yhma5dd0f"; name = "cloud-to-butt-erc"; }; @@ -7580,7 +7580,7 @@ clues-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "clues-theme"; - version = "20140922.2256"; + version = "20140922.2356"; src = fetchFromGitHub { owner = "jasonm23"; repo = "emacs-clues-theme"; @@ -7588,7 +7588,7 @@ sha256 = "0fnl3b62clg9llcs2l511sxp4yishan4pqk45sqp8ih4rdzvy7ar"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/clues-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/clues-theme"; sha256 = "12g7373js5a2fa0m396k9kjhxvx3qws7n1r435nr9zgwaw7xvciy"; name = "clues-theme"; }; @@ -7601,7 +7601,7 @@ cm-mode = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cm-mode"; - version = "20160310.1029"; + version = "20160310.1129"; src = fetchFromGitHub { owner = "joostkremers"; repo = "criticmarkup-emacs"; @@ -7609,7 +7609,7 @@ sha256 = "1rwln3ms71fys3rdv3sx8w706aqn874im3kqcfrkxz86wiazm2d5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cm-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cm-mode"; sha256 = "1rgfpxbnp8wiq9j8aywm2n07rxzkhqljigwynrkyvrnsgxlq2a9x"; name = "cm-mode"; }; @@ -7622,7 +7622,7 @@ cmake-font-lock = callPackage ({ cmake-mode, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cmake-font-lock"; - version = "20150828.1527"; + version = "20150828.1627"; src = fetchFromGitHub { owner = "Lindydancer"; repo = "cmake-font-lock"; @@ -7630,7 +7630,7 @@ sha256 = "030kg3m546gcm6cf1k928ld51znsfrzhlpm005dvqap3gkcrg4sf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cmake-font-lock"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cmake-font-lock"; sha256 = "0ws4kd94m8fh55d7whsf3rj9qrxjp1wsgxh0valsjxyp2ck9zrz0"; name = "cmake-font-lock"; }; @@ -7643,15 +7643,15 @@ cmake-ide = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, levenshtein, lib, melpaBuild, seq }: melpaBuild { pname = "cmake-ide"; - version = "20160421.327"; + version = "20160429.1322"; src = fetchFromGitHub { owner = "atilaneves"; repo = "cmake-ide"; - rev = "1ab2511319f34f0e37e6e041c1ee813428636b0f"; - sha256 = "1p1c742i3nzw24z276ypcicf5zpm7gdbbl2map6prjn34aiivglv"; + rev = "9a4d9f62a6540b2091e420ab6be64c35030e702c"; + sha256 = "0nx7jp3dc9j1h38kw91gnwjzx04rb9rl2l0qhi2y1py5spfpybja"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cmake-ide"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cmake-ide"; sha256 = "0xvy7l80zw67jgvk1rkhwzjvsqjqckmd8zj6s67rgbm56z6ypmcg"; name = "cmake-ide"; }; @@ -7664,15 +7664,15 @@ cmake-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cmake-mode"; - version = "20160317.841"; + version = "20160317.941"; src = fetchFromGitHub { owner = "Kitware"; repo = "CMake"; - rev = "b8a8dfec3688f1dc44f95528a65135fc76511c7b"; - sha256 = "1cp79rqhqlgj6x3zlnhbc33yzj7xrifkvw2sm334bacjsgan8p4z"; + rev = "7aee319b7339c2c4f82eaab73e6dbf5db59f7f74"; + sha256 = "1fa7lcg6fsc7frbx5x19gg9fkaymkh052hhf6924mnv13my76fja"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cmake-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cmake-mode"; sha256 = "0zbn8syb5lw5xp1qcy3qcl75zfiyik30xvqyl38gdqddm9h7qmz7"; name = "cmake-mode"; }; @@ -7685,7 +7685,7 @@ cmake-project = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cmake-project"; - version = "20150720.1559"; + version = "20150720.1659"; src = fetchFromGitHub { owner = "alamaison"; repo = "emacs-cmake-project"; @@ -7693,7 +7693,7 @@ sha256 = "0fyzi8xac80wnhnwwm1j6yxpvpg1n4diq2lcl3qkj8klvk5gpxr6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cmake-project"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cmake-project"; sha256 = "13n6j9ljvzjzkknbm9zkhxljcn12avl39gxqq95hah44dr11rns3"; name = "cmake-project"; }; @@ -7705,13 +7705,13 @@ }) {}; cmds-menu = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "cmds-menu"; - version = "20151231.1430"; + version = "20151231.1530"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/cmds-menu.el"; sha256 = "13r8pjxknsfd6ywzlgcy4bm7fvr768ba34k6b7y365y3c1asz6y3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cmds-menu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cmds-menu"; sha256 = "12s75y9d75cxqgg3hj0s4w0d10zy8y230b5gy09685ab5lcajfks"; name = "cmds-menu"; }; @@ -7724,7 +7724,7 @@ cmm-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cmm-mode"; - version = "20150225.146"; + version = "20150225.246"; src = fetchFromGitHub { owner = "bgamari"; repo = "cmm-mode"; @@ -7732,7 +7732,7 @@ sha256 = "0xdcw329d2gssx86iajwrgpr7yv69b9nflmzjgb4jvg4pskj4pgx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cmm-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cmm-mode"; sha256 = "184b8x19cnvx8z4dr9alv62wchzc7vr7crzz8jiyqw9d544zs50h"; name = "cmm-mode"; }; @@ -7745,7 +7745,7 @@ cn-outline = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cn-outline"; - version = "20100321.1114"; + version = "20100321.1214"; src = fetchFromGitHub { owner = "mori-dev"; repo = "cn-outline"; @@ -7753,7 +7753,7 @@ sha256 = "1635k51ppivq6v2702fihq8dvi33445smds9zhqm0drnpv9rv5cr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cn-outline"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cn-outline"; sha256 = "0cw1rr56hdngvhmx59j76hvkfzgybasn0fwhd6vwm709jqiiiwiz"; name = "cn-outline"; }; @@ -7766,7 +7766,7 @@ cobra-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cobra-mode"; - version = "20140116.1516"; + version = "20140116.1616"; src = fetchFromGitHub { owner = "Nekroze"; repo = "cobra-mode"; @@ -7774,7 +7774,7 @@ sha256 = "1sx8grp3j7zcma3nb7zj6kijkdqx166vw1qgmm29hvx48bys6vlp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cobra-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cobra-mode"; sha256 = "11jscpbclxlq2xqy2nsfa4y575bp8h0kpkp8cfjqb05lm5ybcp89"; name = "cobra-mode"; }; @@ -7787,7 +7787,7 @@ code-library = callPackage ({ fetchFromGitHub, fetchurl, gist, lib, melpaBuild }: melpaBuild { pname = "code-library"; - version = "20160426.718"; + version = "20160426.818"; src = fetchFromGitHub { owner = "lujun9972"; repo = "code-library"; @@ -7795,7 +7795,7 @@ sha256 = "0gc56pdyzcnv3q1a82c79i8w58q9r6ccfix9s1s6msjxzxkznap5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/code-library"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/code-library"; sha256 = "0gi8lz2q0vis4nyziykq15jp3m3vykfwycbk6amhf1ybkn9k3ywj"; name = "code-library"; }; @@ -7808,7 +7808,7 @@ codebug = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "codebug"; - version = "20140929.1637"; + version = "20140929.1737"; src = fetchFromGitHub { owner = "shano"; repo = "emacs-codebug"; @@ -7816,7 +7816,7 @@ sha256 = "11v671c4338bsizbmm7ypp4x9s5hiwyddsg2ig6h157gfv2597pp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/codebug"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/codebug"; sha256 = "1cb2wvawp3wqslhgbmbw9xwcqgwfscqg0jfgqzi3nr42mjp9zgqj"; name = "codebug"; }; @@ -7829,7 +7829,7 @@ codesearch = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "codesearch"; - version = "20160111.855"; + version = "20160111.955"; src = fetchFromGitHub { owner = "abingham"; repo = "codesearch.el"; @@ -7837,7 +7837,7 @@ sha256 = "0ch3naqp3ji0q4blpjfr1xbzgzxhw10h08y2akik96kk1pnkwism"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/codesearch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/codesearch"; sha256 = "0z7zvain9n0rm6bvrh3j7z275l32fmp46p4b33mizqd1y86w89nx"; name = "codesearch"; }; @@ -7850,7 +7850,7 @@ codic = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "codic"; - version = "20150926.627"; + version = "20150926.727"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-codic"; @@ -7858,7 +7858,7 @@ sha256 = "14jcxrs3b02pbppvdsabr7c74i3c6d1lmd6l1p9dj8gv413pghsz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/codic"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/codic"; sha256 = "0fq2qfqhkd6injgl66vcpd61j67shl9xj260aj6cgb2nriq0jxgn"; name = "codic"; }; @@ -7871,7 +7871,7 @@ coffee-fof = callPackage ({ coffee-mode, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "coffee-fof"; - version = "20131012.730"; + version = "20131012.830"; src = fetchFromGitHub { owner = "yasuyk"; repo = "coffee-fof"; @@ -7879,7 +7879,7 @@ sha256 = "010v886ak0rbbhqwxwj6m0mkgh19s232igy7wwbv07l2pdqszf3p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/coffee-fof"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/coffee-fof"; sha256 = "02cqza46qp8y69jd33cg4nmcgvrpwz23vyxqnmzwwvlmnbky96yc"; name = "coffee-fof"; }; @@ -7892,7 +7892,7 @@ coffee-mode = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "coffee-mode"; - version = "20160419.2147"; + version = "20160419.2247"; src = fetchFromGitHub { owner = "defunkt"; repo = "coffee-mode"; @@ -7900,7 +7900,7 @@ sha256 = "0fh04pg114ngx7c6gcasl3dqaw41mggn6cnilj43nl1mpk0hdm4s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/coffee-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/coffee-mode"; sha256 = "1px50hs0x30psa5ljndpcc22c0qwcaxslpjf28cfgxinawnp74g1"; name = "coffee-mode"; }; @@ -7913,13 +7913,13 @@ col-highlight = callPackage ({ fetchurl, lib, melpaBuild, vline }: melpaBuild { pname = "col-highlight"; - version = "20151231.1433"; + version = "20151231.1533"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/col-highlight.el"; sha256 = "1fpkymmgv58b734d2rr7cfj2j2if1qkwgrpk3yp2ibw2n2567y0s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/col-highlight"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/col-highlight"; sha256 = "1kycjdlrg7a5x37b0pzqhg56yn7kaisryrk303qx1084kwq9464i"; name = "col-highlight"; }; @@ -7932,7 +7932,7 @@ colemak-evil = callPackage ({ evil, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "colemak-evil"; - version = "20140508.1812"; + version = "20140508.1912"; src = fetchFromGitHub { owner = "patbl"; repo = "colemak-evil"; @@ -7940,7 +7940,7 @@ sha256 = "0jjj1miwc7hw2fbb1fnmfnydim81djswla8iy4waam9014yraqci"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/colemak-evil"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/colemak-evil"; sha256 = "1bfzs5px1k6g3cnwjdaq2m78bbnfy3lxhjzkcch7zdv3nyacwl5z"; name = "colemak-evil"; }; @@ -7953,7 +7953,7 @@ colonoscopy-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "colonoscopy-theme"; - version = "20141116.101"; + version = "20141116.201"; src = fetchFromGitHub { owner = "emacsfodder"; repo = "emacs-colonoscopy-theme"; @@ -7961,7 +7961,7 @@ sha256 = "1k3sd07ffgpfhzg7d9mb1gc3n02zsvilxc30bgiycbjrbjgqq0i6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/colonoscopy-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/colonoscopy-theme"; sha256 = "0x9bfr4j0sp41jkgnyjlaxnnjjrc102x6sznn6cgcmqk5qhswl4q"; name = "colonoscopy-theme"; }; @@ -7974,7 +7974,7 @@ color-identifiers-mode = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "color-identifiers-mode"; - version = "20150602.2004"; + version = "20150602.2104"; src = fetchFromGitHub { owner = "ankurdave"; repo = "color-identifiers-mode"; @@ -7982,7 +7982,7 @@ sha256 = "0m98i8w513zdzkskw9a96dd73lnfbfwvr947b0djsrazn8grh6hv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/color-identifiers-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/color-identifiers-mode"; sha256 = "1hxp8lzn7kfckn5ngxic6qiz3nbynilqlxhlq9k1n1llfg216gfq"; name = "color-identifiers-mode"; }; @@ -7995,7 +7995,7 @@ color-moccur = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "color-moccur"; - version = "20141222.1835"; + version = "20141222.1935"; src = fetchFromGitHub { owner = "myuhe"; repo = "color-moccur.el"; @@ -8003,7 +8003,7 @@ sha256 = "1p1f30qz4nd5a8ym2iwrgp6vhws0dls2qlc0apblj9nj3b0ziv0x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/color-moccur"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/color-moccur"; sha256 = "17b9walfc5c9qfdvl9pcwb2gjikc3wxk1d3v878ckypmxd38vciq"; name = "color-moccur"; }; @@ -8016,14 +8016,14 @@ color-theme = callPackage ({ fetchbzr, fetchurl, lib, melpaBuild }: melpaBuild { pname = "color-theme"; - version = "20080305.234"; + version = "20080305.334"; src = fetchbzr { url = "http://bzr.savannah.gnu.org/r/color-theme/trunk"; rev = "57"; sha256 = "17bidzq9kiz250gal1fn9mg8gf8l749nz69z0awpc4x2222wxxiz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/color-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/color-theme"; sha256 = "1p4bjh8a9f6ixmwwnyjb520myk3bww1v9w6427za07v68m9cdh79"; name = "color-theme"; }; @@ -8036,7 +8036,7 @@ color-theme-approximate = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "color-theme-approximate"; - version = "20140227.2236"; + version = "20140227.2336"; src = fetchFromGitHub { owner = "tungd"; repo = "color-theme-approximate"; @@ -8044,7 +8044,7 @@ sha256 = "1b0ymwszqsjcihcbfp7s4fjam983ixh3yb7sdc0rmqlyric1zwxq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/color-theme-approximate"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/color-theme-approximate"; sha256 = "1wdnia9q42x7vky3ks555iic5s50g4mx7ss5ppaljvgxvbxyxqh1"; name = "color-theme-approximate"; }; @@ -8057,7 +8057,7 @@ color-theme-buffer-local = callPackage ({ color-theme, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "color-theme-buffer-local"; - version = "20151012.1828"; + version = "20151012.1928"; src = fetchFromGitHub { owner = "vic"; repo = "color-theme-buffer-local"; @@ -8065,7 +8065,7 @@ sha256 = "0gvc9jy34a8wvzwjpmqhshbx2kpk6ckmdrdj5v00iya7c4afnckx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/color-theme-buffer-local"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/color-theme-buffer-local"; sha256 = "1448rffyzn5k5mr31hwd28wlj7if7rp5sjlqcsvbxd2mnbgkgjz0"; name = "color-theme-buffer-local"; }; @@ -8078,7 +8078,7 @@ color-theme-modern = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "color-theme-modern"; - version = "20160411.2046"; + version = "20160411.2146"; src = fetchFromGitHub { owner = "emacs-jp"; repo = "replace-colorthemes"; @@ -8086,7 +8086,7 @@ sha256 = "0apvqrva3f7valjrxpslln8460kpr82z4zazj3lg3j82k102zla9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/color-theme-modern"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/color-theme-modern"; sha256 = "0f662ham430fgxpqw96zcl1whcm28cv710g6wvg4fma60sblaxcm"; name = "color-theme-modern"; }; @@ -8099,15 +8099,15 @@ color-theme-sanityinc-solarized = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "color-theme-sanityinc-solarized"; - version = "20160228.1928"; + version = "20160429.2203"; src = fetchFromGitHub { owner = "purcell"; repo = "color-theme-sanityinc-solarized"; - rev = "58016a2177440ace10357b42bc121e99ee9ed2de"; - sha256 = "11axrf7ns3gj1b0109z8zl63pv3jfpad83rnn5vfg3cp61qivia5"; + rev = "6d1cf921881a0db6286ad6904aff2d17b2a335b3"; + sha256 = "0cw1al8dan7vglkm33wkznvmyma903ckd95l1ns6qmf1d55lnpig"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/color-theme-sanityinc-solarized"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/color-theme-sanityinc-solarized"; sha256 = "0xg79hgb893f1nqx6q4q6hp4w6rvgp1aah1v2r3scg2jk057qxkf"; name = "color-theme-sanityinc-solarized"; }; @@ -8120,15 +8120,15 @@ color-theme-sanityinc-tomorrow = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "color-theme-sanityinc-tomorrow"; - version = "20160413.350"; + version = "20160505.404"; src = fetchFromGitHub { owner = "purcell"; repo = "color-theme-sanityinc-tomorrow"; - rev = "c814d1263837cd68ec4d1aac3b529cef678556d1"; - sha256 = "1k91d8cwavrs52vhgrdjip0irvi4yhhj7b8nq2hl3wz94giy9448"; + rev = "4a579e00fd1ca2ac20568bd6b9a0fdfa178fdfc3"; + sha256 = "0rpq2y9kvrags2f32pnadvp08sg17p1mrvfj6bj5c9pkf6b1gn6m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/color-theme-sanityinc-tomorrow"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/color-theme-sanityinc-tomorrow"; sha256 = "1k8iwjc7iidq5sxybs47rnswa6c5dwqfdzfw7w0by2h1id2z6nqd"; name = "color-theme-sanityinc-tomorrow"; }; @@ -8141,7 +8141,7 @@ color-theme-solarized = callPackage ({ color-theme, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "color-theme-solarized"; - version = "20160219.1124"; + version = "20160219.1224"; src = fetchFromGitHub { owner = "sellout"; repo = "emacs-color-theme-solarized"; @@ -8149,7 +8149,7 @@ sha256 = "1yn0wacicf218212d9qgn67pf16i7x6bih67zdfcplq4i9lqbpg3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/color-theme-solarized"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/color-theme-solarized"; sha256 = "011rzq38ffmq7f2nzwrq96wwz67p82p1f0p5nib4nwqa47xlx7kf"; name = "color-theme-solarized"; }; @@ -8162,7 +8162,7 @@ colorsarenice-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "colorsarenice-theme"; - version = "20150421.1536"; + version = "20150421.1636"; src = fetchFromGitHub { owner = "Fanael"; repo = "colorsarenice-theme"; @@ -8170,7 +8170,7 @@ sha256 = "18hzm7yzwlfjlbkx46rgdl31p9xyfqnxlvg8337h2bicpks7kjia"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/colorsarenice-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/colorsarenice-theme"; sha256 = "09zlglldjbjr97clwyzyz7c0k8hswclnk2zbkm03nnn9n9yyg2qi"; name = "colorsarenice-theme"; }; @@ -8183,7 +8183,7 @@ column-enforce-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "column-enforce-mode"; - version = "20140902.1149"; + version = "20140902.1249"; src = fetchFromGitHub { owner = "jordonbiondo"; repo = "column-enforce-mode"; @@ -8191,7 +8191,7 @@ sha256 = "0ay4wrnyrdp4v3vjxr99hy8fpq6zsyh246c0gbp7bh63l5fx8nwr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/column-enforce-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/column-enforce-mode"; sha256 = "1qh7kwr65spbbnzvq744gkksx50x04zs0nwn5ly60swc05d05lcg"; name = "column-enforce-mode"; }; @@ -8203,13 +8203,13 @@ }) {}; column-marker = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "column-marker"; - version = "20121128.243"; + version = "20121128.343"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/column-marker.el"; sha256 = "05bv198zhqw5hqq6cr11mhz02dpca74hhp1ycwq369m0yb2naxy9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/column-marker"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/column-marker"; sha256 = "1xgfsiw46aib2vb9bbjlgnhcgfnlfhdcxd0cl0jqj4fjfxzbz0bq"; name = "column-marker"; }; @@ -8222,7 +8222,7 @@ command-log-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "command-log-mode"; - version = "20160412.2347"; + version = "20160413.47"; src = fetchFromGitHub { owner = "lewang"; repo = "command-log-mode"; @@ -8230,7 +8230,7 @@ sha256 = "06hll2frlx4sg9fj13a7ipq9y24isbjkjm6034xswhak40m7g1ii"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/command-log-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/command-log-mode"; sha256 = "11jq6055bvpwvrm0b8cgab25wa2mcyylpz4j56h1nqj7cnhb6ppj"; name = "command-log-mode"; }; @@ -8243,7 +8243,7 @@ command-queue = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "command-queue"; - version = "20160328.1225"; + version = "20160328.1325"; src = fetchFromGitHub { owner = "Yuki-Inoue"; repo = "command-queue"; @@ -8251,7 +8251,7 @@ sha256 = "0216hzdl4h1jssw5g2y95z4yx7abqsaxpk1s78r35w5cnx7kplrc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/command-queue"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/command-queue"; sha256 = "1jaywdg8vcf1v6ayy1zd5mjs0x3s96845ig9ssb08397lfqasx1k"; name = "command-queue"; }; @@ -8264,7 +8264,7 @@ commander = callPackage ({ cl-lib ? null, dash, f, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "commander"; - version = "20140120.1252"; + version = "20140120.1352"; src = fetchFromGitHub { owner = "rejeep"; repo = "commander.el"; @@ -8272,7 +8272,7 @@ sha256 = "06y7ika4781gkh94ygdaz7a760s7ahrma6af6n7cqhgjyikz7lg1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/commander"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/commander"; sha256 = "17y0hg6a90hflgwn24ww23qmvc1alzivpipca8zvpf0nih4fl393"; name = "commander"; }; @@ -8285,7 +8285,7 @@ comment-dwim-2 = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "comment-dwim-2"; - version = "20150825.1749"; + version = "20150825.1849"; src = fetchFromGitHub { owner = "remyferre"; repo = "comment-dwim-2"; @@ -8293,7 +8293,7 @@ sha256 = "0kzlv2my0cc7d3nki2rlm32nmb2nyjb38inmvlf13z0m2kybg2ps"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/comment-dwim-2"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/comment-dwim-2"; sha256 = "1w9w2a72ygsj5w47vjqcljajmmbz0mi8dhz5gjnpwxjwsr6fn6lj"; name = "comment-dwim-2"; }; @@ -8306,7 +8306,7 @@ commenter = callPackage ({ emacs, fetchFromGitHub, fetchurl, let-alist, lib, melpaBuild }: melpaBuild { pname = "commenter"; - version = "20160219.1027"; + version = "20160219.1127"; src = fetchFromGitHub { owner = "yuutayamada"; repo = "commenter"; @@ -8314,7 +8314,7 @@ sha256 = "1jwd3whag39qhzhbsfivzdlcr6vj37dv5ychkhmilw8v6dfdnpdb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/commenter"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/commenter"; sha256 = "01bm8jbj6xw23nls4fps6zwjkgvcsjhmn3l3ncqd764kwhxdx8q3"; name = "commenter"; }; @@ -8327,7 +8327,7 @@ commify = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "commify"; - version = "20151110.338"; + version = "20151110.438"; src = fetchFromGitHub { owner = "ddoherty03"; repo = "commify"; @@ -8335,7 +8335,7 @@ sha256 = "04bma9sdn7h8fjz62wlcwayzhr7lvzhidh48wc5rk195zlbgagwa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/commify"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/commify"; sha256 = "1jc6iqa4hna3277hx13scfcqzkr43yv6gndbxv7qf4ydi01ysd0m"; name = "commify"; }; @@ -8348,7 +8348,7 @@ common-lisp-snippets = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }: melpaBuild { pname = "common-lisp-snippets"; - version = "20150910.547"; + version = "20150910.647"; src = fetchFromGitHub { owner = "mrkkrp"; repo = "common-lisp-snippets"; @@ -8356,7 +8356,7 @@ sha256 = "14giiif043yvdaykq700v3n12j295a2pw1aygrl6gr42a3srbnpl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/common-lisp-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/common-lisp-snippets"; sha256 = "0ig8cz00cbfx0jckqk1xhsvm18ivl2mjvcn65s941nblsywfvxjl"; name = "common-lisp-snippets"; }; @@ -8369,15 +8369,15 @@ company = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "company"; - version = "20160424.1721"; + version = "20160429.1639"; src = fetchFromGitHub { owner = "company-mode"; repo = "company-mode"; - rev = "e0d2bf0ae6df94eca9d2d8afca6d1de4db0d4796"; - sha256 = "19vg9l786izw27ly6j55s5sg7kscl5d2hvzww6cfa7ckwnn81xhv"; + rev = "dc4927b3509ae37ceec3993bacd28b7b7cfa19b3"; + sha256 = "0vvjcjcx7byl7gn09m3gybcy91pqdpx8qkc1yq02l8rci38z6v4s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/company"; sha256 = "0v4x038ly970lkzb0n8fbqssfqwx1p46xldr7nss32jiqvavr4m4"; name = "company"; }; @@ -8390,15 +8390,15 @@ company-anaconda = callPackage ({ anaconda-mode, cl-lib ? null, company, dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "company-anaconda"; - version = "20160418.849"; + version = "20160428.704"; src = fetchFromGitHub { owner = "proofit404"; repo = "company-anaconda"; - rev = "360275039dab6286995a0113229063ea3a087205"; - sha256 = "1wyhpihsf4pyzbim7nf9fwndjg568k49g1q6lzs8n3azw00d6fi9"; + rev = "a1abd8c9ad3f5eec254c520060831d2a38e9e048"; + sha256 = "1dvc4ba8x9vxj09bpkadsq2yvsfqpkj076ks1zwx30mpyvd3wz7s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-anaconda"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/company-anaconda"; sha256 = "1s7y47ghy7q35qpfqavh4p9wr91i6r579mdbpvv6h5by856yn4gl"; name = "company-anaconda"; }; @@ -8411,7 +8411,7 @@ company-ansible = callPackage ({ company, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "company-ansible"; - version = "20150901.450"; + version = "20150901.550"; src = fetchFromGitHub { owner = "krzysztof-magosa"; repo = "company-ansible"; @@ -8419,7 +8419,7 @@ sha256 = "06gh33qzglv40r62dsapzhxwparw8ciblv80g7h6y6ilyazwcidn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-ansible"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/company-ansible"; sha256 = "084l9dr2hvm00952y4m3jhchzxjhcd61sfn5ywj9b9a1d4sr110d"; name = "company-ansible"; }; @@ -8432,7 +8432,7 @@ company-arduino = callPackage ({ arduino-mode, cl-lib ? null, company, company-c-headers, company-irony, emacs, fetchFromGitHub, fetchurl, irony, lib, melpaBuild }: melpaBuild { pname = "company-arduino"; - version = "20160306.1139"; + version = "20160306.1239"; src = fetchFromGitHub { owner = "yuutayamada"; repo = "company-arduino"; @@ -8440,7 +8440,7 @@ sha256 = "08766m35s0r2fyv32y0h3sns9d5jykbgg24d2z8czklnc8hay7jc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-arduino"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/company-arduino"; sha256 = "1bch447lllikip1xd90kdgssgc67sl04a70fxqkqlrc1bs6gkkws"; name = "company-arduino"; }; @@ -8461,7 +8461,7 @@ company-auctex = callPackage ({ auctex, company, fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }: melpaBuild { pname = "company-auctex"; - version = "20151102.843"; + version = "20151102.943"; src = fetchFromGitHub { owner = "alexeyr"; repo = "company-auctex"; @@ -8469,7 +8469,7 @@ sha256 = "0mkyg9y1rhl6hdzhr51psnvy2q0zw4y29m9p0ivb7s643k3fjjp5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-auctex"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/company-auctex"; sha256 = "1jia80sqmm83kzjcf1h1d9iz2k4k9albzvfka5hx6hpa4h8nm5q4"; name = "company-auctex"; }; @@ -8482,7 +8482,7 @@ company-c-headers = callPackage ({ company, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "company-c-headers"; - version = "20150801.1101"; + version = "20150801.1201"; src = fetchFromGitHub { owner = "randomphrase"; repo = "company-c-headers"; @@ -8490,7 +8490,7 @@ sha256 = "0jh2j260x1smlm4362dvgfpfpba7kg6hqvszjirc6mpm74zdcnp8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-c-headers"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/company-c-headers"; sha256 = "1715vnjr5cjiq8gjcd3idnpnijg5cg3sw3f8gr5x2ixcrip1hx3a"; name = "company-c-headers"; }; @@ -8503,7 +8503,7 @@ company-cabal = callPackage ({ cl-lib ? null, company, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "company-cabal"; - version = "20151216.920"; + version = "20151216.1020"; src = fetchFromGitHub { owner = "iquiw"; repo = "company-cabal"; @@ -8511,7 +8511,7 @@ sha256 = "0ll9dxzsgrpy4psz3dqhzny990lfccn63swcyfvl8mnqgwbrq8k0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-cabal"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/company-cabal"; sha256 = "0pbjidj88c9qri6xw8023yqwnczad5ig224cbsz6vsmdla2nlxra"; name = "company-cabal"; }; @@ -8524,7 +8524,7 @@ company-coq = callPackage ({ cl-lib ? null, company, company-math, dash, fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }: melpaBuild { pname = "company-coq"; - version = "20160316.1314"; + version = "20160316.1414"; src = fetchFromGitHub { owner = "cpitclaudel"; repo = "company-coq"; @@ -8532,7 +8532,7 @@ sha256 = "0lnb3qf1xhb0nbqy6ry0bkz2xrzfgkvavb7a3cbllawyz5idhfg5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-coq"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/company-coq"; sha256 = "1iagm07ckf60kg4i8m4n0gfmv0brqc4dcn7lkcz229r3f4kyqksa"; name = "company-coq"; }; @@ -8545,7 +8545,7 @@ company-dcd = callPackage ({ cl-lib ? null, company, fetchFromGitHub, fetchurl, flycheck-dmd-dub, helm, lib, melpaBuild, popwin, yasnippet }: melpaBuild { pname = "company-dcd"; - version = "20160406.2248"; + version = "20160406.2348"; src = fetchFromGitHub { owner = "tsukimizake"; repo = "company-dcd"; @@ -8553,7 +8553,7 @@ sha256 = "0jkshkh44cgahpz2d7lrwfyl4kmhinivlbp08yn4zz6hpcvz87x9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-dcd"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/company-dcd"; sha256 = "03849k4jzs23iglk9ghcq6283c9asffcq4dznypcjax7y4x113vd"; name = "company-dcd"; }; @@ -8573,7 +8573,7 @@ company-dict = callPackage ({ company, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "company-dict"; - version = "20160222.940"; + version = "20160222.1040"; src = fetchFromGitHub { owner = "hlissner"; repo = "emacs-company-dict"; @@ -8581,7 +8581,7 @@ sha256 = "1i1b0v2qwb8bmjs8xjahnizf68m1qf2kll39l84ska47vn7csc3c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-dict"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/company-dict"; sha256 = "1377b40f1j4rmw7lnhy1zsm6r234ds5zsn02v1ajm3bzrpkkmin0"; name = "company-dict"; }; @@ -8594,7 +8594,7 @@ company-edbi = callPackage ({ cl-lib ? null, company, edbi, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "company-edbi"; - version = "20160221.1323"; + version = "20160221.1423"; src = fetchFromGitHub { owner = "proofit404"; repo = "company-edbi"; @@ -8602,7 +8602,7 @@ sha256 = "0n2hvrfbybsp57w6m9mm7ywjq30fwwx9bzc2rllfr06d2ms7naai"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-edbi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/company-edbi"; sha256 = "067ff1xdyqy4qzgk5pmqf4kksfjk1glkrslcj3rk4zmhcalwrfrm"; name = "company-edbi"; }; @@ -8615,7 +8615,7 @@ company-emoji = callPackage ({ cl-lib ? null, company, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "company-emoji"; - version = "20160331.1841"; + version = "20160331.1941"; src = fetchFromGitHub { owner = "dunn"; repo = "company-emoji"; @@ -8623,7 +8623,7 @@ sha256 = "1ipknikwyd6h2w72s5sn32mfql4p2cmgv868n13r3wg42c619blq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-emoji"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/company-emoji"; sha256 = "1mflqqw9gnfcqjb6g8ivdfl7s4mdyjg7j0457hamgyvgvpxsh8x3"; name = "company-emoji"; }; @@ -8636,7 +8636,7 @@ company-flx = callPackage ({ company, emacs, fetchFromGitHub, fetchurl, flx, lib, melpaBuild }: melpaBuild { pname = "company-flx"; - version = "20160423.1913"; + version = "20160423.2013"; src = fetchFromGitHub { owner = "PythonNut"; repo = "company-flx"; @@ -8644,7 +8644,7 @@ sha256 = "1di3nndif2gkzwvs8bvqg994z422ql308lh47hbjdjnqm182mwy7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-flx"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/company-flx"; sha256 = "1r4jcfzrhdpclblfrmi4qbl8dnhc2d7d4c1425xnslg7bhwd2vxn"; name = "company-flx"; }; @@ -8657,7 +8657,7 @@ company-ghc = callPackage ({ cl-lib ? null, company, emacs, fetchFromGitHub, fetchurl, ghc, lib, melpaBuild }: melpaBuild { pname = "company-ghc"; - version = "20160315.910"; + version = "20160315.1010"; src = fetchFromGitHub { owner = "iquiw"; repo = "company-ghc"; @@ -8665,7 +8665,7 @@ sha256 = "1mc7y4j772x54n2wc2dskb5wjc46r7sg2jwyvmnj44cyaasxqmck"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-ghc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/company-ghc"; sha256 = "07adykza4dqs64bk8vjmgryr54khxmcy28hms5z8i1qpsk9vmvnn"; name = "company-ghc"; }; @@ -8678,7 +8678,7 @@ company-ghci = callPackage ({ company, fetchFromGitHub, fetchurl, haskell-mode, lib, melpaBuild }: melpaBuild { pname = "company-ghci"; - version = "20160310.2000"; + version = "20160310.2100"; src = fetchFromGitHub { owner = "juiko"; repo = "company-ghci"; @@ -8686,7 +8686,7 @@ sha256 = "02gq083lpbszy8pf7s5j61bjlm0hacv4md4g17n0q6448rix9yny"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-ghci"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/company-ghci"; sha256 = "0h9hqfb8fm90h87bi3myl84nppbbminhnvv6jqg62qi9k6snn1iq"; name = "company-ghci"; }; @@ -8699,15 +8699,15 @@ company-go = callPackage ({ company, fetchFromGitHub, fetchurl, go-mode, lib, melpaBuild }: melpaBuild { pname = "company-go"; - version = "20160306.1555"; + version = "20160306.1655"; src = fetchFromGitHub { owner = "nsf"; repo = "gocode"; - rev = "3b7488f4e4c234abbea9c5ff313a3a7139fc56e8"; - sha256 = "0sw12mzgxq5nh7yzkzzpca3y4chd2i81amzynlaz46ci16wa6gpb"; + rev = "3421e52c639ba71debbd77d86694d5a7d6ab83a2"; + sha256 = "01vmb2vppphkj2b6faz6jn4m0yqx0f4l66k87d7wap32v51m1v2m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-go"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/company-go"; sha256 = "1ncy5wlg3ywr17zrxb1d1bap4gdvwr35w9a8b0crz5h3l3y4cp29"; name = "company-go"; }; @@ -8720,7 +8720,7 @@ company-inf-ruby = callPackage ({ company, emacs, fetchFromGitHub, fetchurl, inf-ruby, lib, melpaBuild }: melpaBuild { pname = "company-inf-ruby"; - version = "20140805.1554"; + version = "20140805.1654"; src = fetchFromGitHub { owner = "company-mode"; repo = "company-inf-ruby"; @@ -8728,7 +8728,7 @@ sha256 = "0fnv4rvvs9rqzrs86g23jcrpg0rcgk25299hm6jm08ia0kjjby1m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-inf-ruby"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/company-inf-ruby"; sha256 = "0cb1w0sxgb5jf0p2a5s2i4d511lsjjhyaqkqlwjz8nk4w14n0zxm"; name = "company-inf-ruby"; }; @@ -8741,7 +8741,7 @@ company-irony = callPackage ({ cl-lib ? null, company, emacs, fetchFromGitHub, fetchurl, irony, lib, melpaBuild }: melpaBuild { pname = "company-irony"; - version = "20160321.1603"; + version = "20160321.1703"; src = fetchFromGitHub { owner = "Sarcasm"; repo = "company-irony"; @@ -8749,7 +8749,7 @@ sha256 = "15xv59c6pwdysr9hqvaj7jgsa9pnicy7cnn9dq53zngjh3f5mf83"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-irony"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/company-irony"; sha256 = "15adamk1b9y1i6k06i5ahf1wn70cgwlhgk0x6fk8pl5izg05z1km"; name = "company-irony"; }; @@ -8762,7 +8762,7 @@ company-irony-c-headers = callPackage ({ cl-lib ? null, company, fetchFromGitHub, fetchurl, irony, lib, melpaBuild }: melpaBuild { pname = "company-irony-c-headers"; - version = "20151018.409"; + version = "20151018.509"; src = fetchFromGitHub { owner = "hotpxl"; repo = "company-irony-c-headers"; @@ -8770,7 +8770,7 @@ sha256 = "1x2dfjmy86icyv2g1y5bjlr87w8rixqdcndkwm1sba6ha277wp9i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-irony-c-headers"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/company-irony-c-headers"; sha256 = "0kiag5ggmc2f5c3gd8nn40x16i686jpdrfrflgrz2aih8p3g6af8"; name = "company-irony-c-headers"; }; @@ -8783,7 +8783,7 @@ company-jedi = callPackage ({ cl-lib ? null, company, emacs, fetchFromGitHub, fetchurl, jedi-core, lib, melpaBuild }: melpaBuild { pname = "company-jedi"; - version = "20151216.2121"; + version = "20151216.2221"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-company-jedi"; @@ -8791,7 +8791,7 @@ sha256 = "0bpqswcc6a65wms0pdk9rsad9jiigmx2l1jaqr8bz4va945qdlhg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-jedi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/company-jedi"; sha256 = "1krrgrjq967c3j02y0i345yx6w4crisnj1k3bhih6j849fvy3fvj"; name = "company-jedi"; }; @@ -8804,7 +8804,7 @@ company-lua = callPackage ({ company, f, fetchFromGitHub, fetchurl, lib, lua-mode, melpaBuild, s }: melpaBuild { pname = "company-lua"; - version = "20160330.513"; + version = "20160330.613"; src = fetchFromGitHub { owner = "ptrv"; repo = "company-lua"; @@ -8812,7 +8812,7 @@ sha256 = "151hpai8dagvgyg5fxiydp5x42sqksvp2y5znssclw7654f08fgn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-lua"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/company-lua"; sha256 = "13sm7ya2ndqxwdjarhxbmg7fvr3413c7p3n6yf1i4rabbliqsf2c"; name = "company-lua"; }; @@ -8825,7 +8825,7 @@ company-math = callPackage ({ company, fetchFromGitHub, fetchurl, lib, math-symbol-lists, melpaBuild }: melpaBuild { pname = "company-math"; - version = "20160229.932"; + version = "20160229.1032"; src = fetchFromGitHub { owner = "vspinu"; repo = "company-math"; @@ -8833,7 +8833,7 @@ sha256 = "1xsk02ymgj0gfblz2f6pzwh96crgx4m524ia6m95kcxrd7y63004"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-math"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/company-math"; sha256 = "0chig8k8l65bnd0a6734fiy0ikl20k9v2wlndh3ckz5a8h963g87"; name = "company-math"; }; @@ -8846,7 +8846,7 @@ company-nand2tetris = callPackage ({ cl-lib ? null, company, fetchFromGitHub, fetchurl, lib, melpaBuild, names, nand2tetris }: melpaBuild { pname = "company-nand2tetris"; - version = "20151027.1636"; + version = "20151027.1736"; src = fetchFromGitHub { owner = "CestDiego"; repo = "nand2tetris.el"; @@ -8854,7 +8854,7 @@ sha256 = "003zgkpzz9q0bkkw6psks0vbfikzikfm42myqk14xn7330vgcxz7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-nand2tetris"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/company-nand2tetris"; sha256 = "1g2i33jjh7kbpzk835kbnqicf0w4cq5rqv934bqzz5kavj9cg886"; name = "company-nand2tetris"; }; @@ -8867,7 +8867,7 @@ company-ngram = callPackage ({ cl-lib ? null, company, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "company-ngram"; - version = "20160330.1626"; + version = "20160330.1726"; src = fetchFromGitHub { owner = "kshramt"; repo = "company-ngram"; @@ -8875,7 +8875,7 @@ sha256 = "0yxnylpbjrwmqx6px0q3pff4dh00fmfzb09gp4xvn9w9hrxdsx7g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-ngram"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/company-ngram"; sha256 = "1y9k9s8c248m91xld4f5l75j4swml333rpwq590bsx7mrsq131xx"; name = "company-ngram"; }; @@ -8888,7 +8888,7 @@ company-nixos-options = callPackage ({ cl-lib ? null, company, fetchFromGitHub, fetchurl, lib, melpaBuild, nixos-options }: melpaBuild { pname = "company-nixos-options"; - version = "20160215.257"; + version = "20160215.357"; src = fetchFromGitHub { owner = "travisbhartwell"; repo = "nix-emacs"; @@ -8896,7 +8896,7 @@ sha256 = "1r2qbd19kkqf70gq04jfpsrap75qcy359k3ian9rhapi8cj0n23w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-nixos-options"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/company-nixos-options"; sha256 = "1yrqqdadmf7qfxpqp8wwb325zjnwwjmn2hhnl7i3j0ckg6hqyqf0"; name = "company-nixos-options"; }; @@ -8909,7 +8909,7 @@ company-qml = callPackage ({ company, fetchFromGitHub, fetchurl, lib, melpaBuild, qml-mode }: melpaBuild { pname = "company-qml"; - version = "20160212.1712"; + version = "20160212.1812"; src = fetchFromGitHub { owner = "cute-jumper"; repo = "company-qml"; @@ -8917,7 +8917,7 @@ sha256 = "0sl59b9wwnpz6p2kxsc87b3q28vvfxg7pwk67c51q8qyrl0c1klv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-qml"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/company-qml"; sha256 = "0sva7i93dam8mc2z3cp785vmgcg7cphrpkwyvqyqhq8w51qg8mxx"; name = "company-qml"; }; @@ -8930,7 +8930,7 @@ company-quickhelp = callPackage ({ company, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, pos-tip }: melpaBuild { pname = "company-quickhelp"; - version = "20160211.918"; + version = "20160211.1018"; src = fetchFromGitHub { owner = "expez"; repo = "company-quickhelp"; @@ -8938,7 +8938,7 @@ sha256 = "1b2v84ss5k43nnbsnvabgvb19ardsacbs1prn2h9i1k2d5mb8icw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-quickhelp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/company-quickhelp"; sha256 = "042bwv0wd4hksbm528zb7pbllzk83p8qjq5f8z46p84c8mmxfp9g"; name = "company-quickhelp"; }; @@ -8951,7 +8951,7 @@ company-racer = callPackage ({ cl-lib ? null, company, deferred, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "company-racer"; - version = "20150628.2133"; + version = "20150628.2233"; src = fetchFromGitHub { owner = "emacs-pe"; repo = "company-racer"; @@ -8959,7 +8959,7 @@ sha256 = "1lk3fqsgbi6mg4hrpc9gy4hbfp9snyj4yvc0zh8iqqw5nx12dab4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-racer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/company-racer"; sha256 = "0zc8dzvsjz5qsrwhv7x9f7djzvb9awacc3pgjirsv8f8sp7p3am4"; name = "company-racer"; }; @@ -8972,7 +8972,7 @@ company-restclient = callPackage ({ cl-lib ? null, company, emacs, fetchFromGitHub, fetchurl, know-your-http-well, lib, melpaBuild, restclient }: melpaBuild { pname = "company-restclient"; - version = "20151202.601"; + version = "20151202.701"; src = fetchFromGitHub { owner = "iquiw"; repo = "company-restclient"; @@ -8980,7 +8980,7 @@ sha256 = "04829y7510zxjww9pq8afvnzwyyv30c0b3a71mxwf6ympfxb9rx5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-restclient"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/company-restclient"; sha256 = "1md0n4k4wmbh9rmbwqh3kg2fj0c34rzqfd56jsq8lcdg14k0kdcb"; name = "company-restclient"; }; @@ -8999,7 +8999,7 @@ company-shell = callPackage ({ cl-lib ? null, company, dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "company-shell"; - version = "20160212.1339"; + version = "20160212.1439"; src = fetchFromGitHub { owner = "Alexander-Miller"; repo = "company-shell"; @@ -9007,7 +9007,7 @@ sha256 = "097v261fp0j7sjg6fkxwywpqf1vg1i2gq3i7m34vxzvs9l7ahagl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-shell"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/company-shell"; sha256 = "0my9jghf3s4idkgrpki8mj1lm5ichfvznb09lfwf07fjhg0q1apz"; name = "company-shell"; }; @@ -9020,15 +9020,15 @@ company-sourcekit = callPackage ({ company, dash, dash-functional, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, sourcekit }: melpaBuild { pname = "company-sourcekit"; - version = "20160323.2009"; + version = "20160507.510"; src = fetchFromGitHub { owner = "nathankot"; repo = "company-sourcekit"; - rev = "c9694cd8e84f4c7deffa6111297cb80eb7cb02a6"; - sha256 = "04nm015408gzybfka0sc3czkf5y61x76h3sx3vlijf67i54bz7pi"; + rev = "8a2ab547879848cb6767a75f9eecb659bf744672"; + sha256 = "0z1mrq9xp1lhsgvywm5s32d3hqsjfij90c4scgxnbq7mbii020k7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-sourcekit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/company-sourcekit"; sha256 = "0hr5j1ginf43h4qf3fvsh3z53z0c7w5a9lhrvdwmlzj396qhqmzs"; name = "company-sourcekit"; }; @@ -9041,7 +9041,7 @@ company-tern = callPackage ({ cl-lib ? null, company, dash, dash-functional, fetchFromGitHub, fetchurl, lib, melpaBuild, s, tern }: melpaBuild { pname = "company-tern"; - version = "20160221.1323"; + version = "20160221.1423"; src = fetchFromGitHub { owner = "proofit404"; repo = "company-tern"; @@ -9049,7 +9049,7 @@ sha256 = "0zjgw8v93z4dyj9g1dny6digqkh9v8m9x44zkx5magq8dbv69qsc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-tern"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/company-tern"; sha256 = "17pw4jx3f1hymj6sc0ri18jz9ngggj4a41kxx14fnmmm8adqn6wh"; name = "company-tern"; }; @@ -9062,7 +9062,7 @@ company-try-hard = callPackage ({ company, dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "company-try-hard"; - version = "20150902.1706"; + version = "20150902.1806"; src = fetchFromGitHub { owner = "Wilfred"; repo = "company-try-hard"; @@ -9070,7 +9070,7 @@ sha256 = "1isnk2i64kppsr23nr6qm5kwxxwcp4xazjwvm2chyzl4vbvp03p2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-try-hard"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/company-try-hard"; sha256 = "1rwn521dc8kxh43vcd3rf0h8jc53d4gmid3szj2msi0da1sk0mmj"; name = "company-try-hard"; }; @@ -9083,15 +9083,15 @@ company-web = callPackage ({ cl-lib ? null, company, dash, fetchFromGitHub, fetchurl, lib, melpaBuild, web-completion-data }: melpaBuild { pname = "company-web"; - version = "20151219.517"; + version = "20160502.958"; src = fetchFromGitHub { owner = "osv"; repo = "company-web"; - rev = "2b426fc09b45b0e6bb95bb27d8ef22789c72a1d8"; - sha256 = "1a9qx041w7i1ahg6rmi82hv161k57z4aljzm8wpa9wrfj8a6df2q"; + rev = "2915da21c6327c7eaa0d03e237163228c9681224"; + sha256 = "0pjxahrhvz7l45whqlgm6n4mvqqxc8zs1dv33p3b498hyb83f52j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-web"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/company-web"; sha256 = "0dj0m6wcc8cyvblp9b5b3am95gc18j9y4va44hvljxv1h7l5hhvy"; name = "company-web"; }; @@ -9104,7 +9104,7 @@ company-ycm = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, ycm }: melpaBuild { pname = "company-ycm"; - version = "20140904.1317"; + version = "20140904.1417"; src = fetchFromGitHub { owner = "neuromage"; repo = "ycm.el"; @@ -9112,7 +9112,7 @@ sha256 = "0znchya89zzk30mwl4qfm0q9sfa5m3jspapb892ydj0mck5n4nyj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-ycm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/company-ycm"; sha256 = "1q4d63c7nr3g7q0smd55pp636vqa9lf1pkwjn9iq265369npvina"; name = "company-ycm"; }; @@ -9125,15 +9125,15 @@ company-ycmd = callPackage ({ company, dash, deferred, fetchFromGitHub, fetchurl, let-alist, lib, melpaBuild, s, ycmd }: melpaBuild { pname = "company-ycmd"; - version = "20160417.1713"; + version = "20160504.202"; src = fetchFromGitHub { owner = "abingham"; repo = "emacs-ycmd"; - rev = "1984e49b7894b77438f2257d8058900ab82109e3"; - sha256 = "0dwii83m6cngsnyhzhnmv53p588d4pkkybmcmsj6gsar157l4azi"; + rev = "6080cb164fc3a96f2248760fda2b6d46a55d63c0"; + sha256 = "1x138lbjy87sk68sjx07l3in2d9qzcc3pa9vgzvg95aiaacnk8qi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-ycmd"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/company-ycmd"; sha256 = "0fqmkb0q8ai605jzn2kwd585b2alwxbmnb3yqnn9fgkcvyc9f0pk"; name = "company-ycmd"; }; @@ -9146,15 +9146,15 @@ composable = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "composable"; - version = "20160424.1317"; + version = "20160504.1314"; src = fetchFromGitHub { owner = "paldepind"; repo = "composable.el"; - rev = "be01ee5c2ee25bd25cfc6ac525d00223e66d9446"; - sha256 = "15gmp49zjmwn72q9w5vxydv8lhzih9sclinm4h1fy4rr5m1j5f8l"; + rev = "3397b352b0503682875c527e8909bef1551128cd"; + sha256 = "160wcnxdjqkidaybyywjkdaik8sg7pz0anv30g7p2iv6if6j35x7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/composable"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/composable"; sha256 = "1fs4pczjn9sv12sladf6zbkz0cmzxr0jaqkiwryydal1l5nqqxcy"; name = "composable"; }; @@ -9167,7 +9167,7 @@ concurrent = callPackage ({ deferred, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "concurrent"; - version = "20160109.2246"; + version = "20160109.2346"; src = fetchFromGitHub { owner = "kiwanami"; repo = "emacs-deferred"; @@ -9175,7 +9175,7 @@ sha256 = "1br4yys803x3ng4vzhhvblhkqabs46lx8a3ajycqy555q20zqzrf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/concurrent"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/concurrent"; sha256 = "09wjw69bqrr3424h0mpb2kr5ixh96syjjsqrcyd7z2lsas5ldpnf"; name = "concurrent"; }; @@ -9188,7 +9188,7 @@ config-parser = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "config-parser"; - version = "20160426.719"; + version = "20160426.819"; src = fetchFromGitHub { owner = "lujun9972"; repo = "el-config-parser"; @@ -9196,7 +9196,7 @@ sha256 = "09vq7hcsw4027whn3xrnfz9hkgkakva619hyz0zfgpvppqah9n1p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/config-parser"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/config-parser"; sha256 = "0wncg1v4wccb9j16rcmwz8fcmrscj7knfisq0r4qqx3skrmpccah"; name = "config-parser"; }; @@ -9209,14 +9209,14 @@ confluence = callPackage ({ fetchsvn, fetchurl, lib, melpaBuild, xml-rpc }: melpaBuild { pname = "confluence"; - version = "20130808.2150"; + version = "20130808.2250"; src = fetchsvn { url = "http://confluence-el.googlecode.com/svn/trunk/"; rev = "170"; sha256 = "1l6970ng046hw2izzb15cbbbf83l6m8c9mvic8fzjixfi3g1dl55"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/confluence"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/confluence"; sha256 = "003lykwd3ya0xwlahmm35nx9p6mk8vylq57yxrmgdcc64630bdpf"; name = "confluence"; }; @@ -9229,7 +9229,7 @@ conkeror-minor-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "conkeror-minor-mode"; - version = "20150114.1004"; + version = "20150114.1104"; src = fetchFromGitHub { owner = "Malabarba"; repo = "conkeror-minor-mode"; @@ -9237,7 +9237,7 @@ sha256 = "0sz3qx1bn0lwjhka2l6wfl4b5486ji9dklgjs7fdlkg3dgpp1ahx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/conkeror-minor-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/conkeror-minor-mode"; sha256 = "1ch108f20k7xbf79azsp31hh4wmw7iycsxddcszgxkbm7pj11933"; name = "conkeror-minor-mode"; }; @@ -9250,7 +9250,7 @@ connection = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "connection"; - version = "20140717.2229"; + version = "20140717.2329"; src = fetchFromGitHub { owner = "myrkr"; repo = "dictionary-el"; @@ -9258,7 +9258,7 @@ sha256 = "0gz03hji6mcrzvxd74qim63g159sc8ggb6hq3x42x5l01g980fbm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/connection"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/connection"; sha256 = "1y68d2kay8p5vapailxhrc5dl7b8k8nkvp7pa54md3fsivwp1d0q"; name = "connection"; }; @@ -9271,7 +9271,7 @@ contextual = callPackage ({ cl-lib ? null, dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "contextual"; - version = "20160131.1237"; + version = "20160131.1337"; src = fetchFromGitHub { owner = "lshift-de"; repo = "contextual"; @@ -9279,7 +9279,7 @@ sha256 = "0ykc3lzdypf543dgm7jpi70z08kz9hwhn2gvp06ylb22id8b3fai"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/contextual"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/contextual"; sha256 = "0vribs0fa1xf5kwkmvzjwhiawni0p3v56c5l4dkz8d7wn2g6wfdx"; name = "contextual"; }; @@ -9292,7 +9292,7 @@ control-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "control-mode"; - version = "20140218.807"; + version = "20140218.907"; src = fetchFromGitHub { owner = "stephendavidmarsh"; repo = "control-mode"; @@ -9300,7 +9300,7 @@ sha256 = "1qsq543rb0z2fq716a2khs8zqyh13npzmbj58f00s8b3w3andpbh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/control-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/control-mode"; sha256 = "1biq4p2w8rqcbvr09gxbchjqlaixjf1fzv7xv8lpv81dlhi7dgz6"; name = "control-mode"; }; @@ -9313,15 +9313,15 @@ corral = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "corral"; - version = "20160129.1717"; + version = "20160502.301"; src = fetchFromGitHub { owner = "nivekuil"; repo = "corral"; - rev = "d0b8cec7f2ff56a61775b14ba6969e97933517af"; - sha256 = "1x87rra9pxvcs8jxnzhg2jr9wq0l3kp3qqqsw77bc4jsizdndss1"; + rev = "e7ab6aa118e46b93d4933d1364bc273f57cd6911"; + sha256 = "00055gzv032xxzqm1hffipljy8fzgsm58cbv8dzajh035jvdgpv7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/corral"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/corral"; sha256 = "1drccqk4qzkgvkgkzlrrfd1dcgj8ziqriijrjihrzjgjsbpzv6da"; name = "corral"; }; @@ -9334,15 +9334,15 @@ counsel = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, swiper }: melpaBuild { pname = "counsel"; - version = "20160425.507"; + version = "20160507.156"; src = fetchFromGitHub { owner = "abo-abo"; repo = "swiper"; - rev = "c24a3728538dd7d11de9f141b3ad1d8e0996c330"; - sha256 = "19vfj01x7b8f7wyx7m51z00la2r7jcwzv0n06srkvcls0wm5s1h3"; + rev = "f3690b610ae43ec21e45885166a146ce59a54baa"; + sha256 = "0bgfkp30xfl473lzrd7jrpps87v2w2bdi82mjw3lbxadfml6cspx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/counsel"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/counsel"; sha256 = "0y8cb2q4mqvzan5n8ws5pjpm7bkjcghg5q19mzc3gqrq9vrvyzi6"; name = "counsel"; }; @@ -9355,15 +9355,15 @@ counsel-projectile = callPackage ({ counsel, fetchFromGitHub, fetchurl, lib, melpaBuild, projectile }: melpaBuild { pname = "counsel-projectile"; - version = "20160414.531"; + version = "20160507.1322"; src = fetchFromGitHub { owner = "ericdanan"; repo = "counsel-projectile"; - rev = "a724fc0941d22620b0a783be449ff619d240d38e"; - sha256 = "12mzbnby865r011ai678wnp88c538zchz2n6mqdvmpg4fph5kxq2"; + rev = "0f1d381f892311875886c0a4bfdc2832644e2360"; + sha256 = "1r9pgiy9f990qnw3p1zgagw1lixlqclix81s16w5maws9n54x4ms"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/counsel-projectile"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/counsel-projectile"; sha256 = "1gshphxaa902kq878rnizn3k1zycakwqkciz92z3xxb3bdyy0hnl"; name = "counsel-projectile"; }; @@ -9376,7 +9376,7 @@ coverage = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, ov }: melpaBuild { pname = "coverage"; - version = "20160222.314"; + version = "20160222.414"; src = fetchFromGitHub { owner = "trezona-lecomte"; repo = "coverage"; @@ -9384,7 +9384,7 @@ sha256 = "0glnvr10lwi17g44653qqswn9vnyh5r2nmpaa0y6lvfb952zn0k0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/coverage"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/coverage"; sha256 = "0ja7wsx2sj0h01sk1l3c0aidbs1ld4gj3kiwq6brs7r018sz45pm"; name = "coverage"; }; @@ -9397,7 +9397,7 @@ cp5022x = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cp5022x"; - version = "20120323.1835"; + version = "20120323.1935"; src = fetchFromGitHub { owner = "awasira"; repo = "cp5022x.el"; @@ -9405,7 +9405,7 @@ sha256 = "1z67x4a0aricd9q6i2w33k74alddl6w0rijjhzyxwml7ibhbvphz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cp5022x"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cp5022x"; sha256 = "0v1jhkix01l299m67jag43rnps68m19zy83vvdglxa8dj3naz5dl"; name = "cp5022x"; }; @@ -9418,7 +9418,7 @@ cpputils-cmake = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cpputils-cmake"; - version = "20160313.1858"; + version = "20160313.1958"; src = fetchFromGitHub { owner = "redguardtoo"; repo = "cpputils-cmake"; @@ -9426,7 +9426,7 @@ sha256 = "0wrg84szxnqy95piyxyd7w6jiwsfimnjfaprl1g9szdyi3w99kmq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cpputils-cmake"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cpputils-cmake"; sha256 = "0fswmmmrjv897n51nidmn8gs8yp00595g35vwjafsq6rzfg58j60"; name = "cpputils-cmake"; }; @@ -9439,7 +9439,7 @@ cql-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cql-mode"; - version = "20160413.1943"; + version = "20160413.2043"; src = fetchFromGitHub { owner = "Yuki-Inoue"; repo = "cql-mode"; @@ -9447,7 +9447,7 @@ sha256 = "18nxsd1axd3m70p7cw4ifcj33z9v5w25v6g09q38maixymlad962"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cql-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cql-mode"; sha256 = "0wdal8w0i73xjak2g0wazs54z957f4lj4n8qdmzpcylzpl1lqd88"; name = "cql-mode"; }; @@ -9460,7 +9460,7 @@ crab = callPackage ({ fetchFromGitHub, fetchurl, json ? null, lib, melpaBuild, websocket }: melpaBuild { pname = "crab"; - version = "20150126.2337"; + version = "20150127.37"; src = fetchFromGitHub { owner = "puffnfresh"; repo = "crab-emacs"; @@ -9468,7 +9468,7 @@ sha256 = "0y37fx4ghx8a74cp7ci6p5yfpji8g42hlah2xcwfnyw0qlpqfbnl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/crab"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/crab"; sha256 = "1jz26bw2h7ahcb7y2qhpqrlfald244c92m6pvfrb0jg0z384i6aj"; name = "crab"; }; @@ -9481,7 +9481,7 @@ crappy-jsp-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "crappy-jsp-mode"; - version = "20140311.431"; + version = "20140311.531"; src = fetchFromGitHub { owner = "magnars"; repo = "crappy-jsp-mode"; @@ -9489,7 +9489,7 @@ sha256 = "12g6l6xlbs9h24q5lk8yjgk91xqd7r3v7r6czy10r09cmfjmkxbb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/crappy-jsp-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/crappy-jsp-mode"; sha256 = "00wj61maib77qldzq06l9v0pbvp9jih75w1xw0ry9mij0r6ca8ii"; name = "crappy-jsp-mode"; }; @@ -9502,7 +9502,7 @@ creds = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "creds"; - version = "20140510.1206"; + version = "20140510.1306"; src = fetchFromGitHub { owner = "ardumont"; repo = "emacs-creds"; @@ -9510,7 +9510,7 @@ sha256 = "0l4bvk3m355b25d7pdnhczn3fckbq0rg2l4r0a0d94004ksvylqa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/creds"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/creds"; sha256 = "0n11xxaf93bbc9ih25wj09zzw4sj32wb99qig4zcy8bpkl5y3llk"; name = "creds"; }; @@ -9523,7 +9523,7 @@ creole = callPackage ({ fetchFromGitHub, fetchurl, kv, lib, melpaBuild, noflet }: melpaBuild { pname = "creole"; - version = "20140924.1000"; + version = "20140924.1100"; src = fetchFromGitHub { owner = "nicferrier"; repo = "elwikicreole"; @@ -9531,7 +9531,7 @@ sha256 = "18c4jfjnhb7asdhwj41g06cp9rz5xd7bbx2s1xvk6gahay27rlrv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/creole"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/creole"; sha256 = "1pqgm7m2gzkn65v3qic71c38qiira29cwx11l96qph8h8sf47zw5"; name = "creole"; }; @@ -9544,7 +9544,7 @@ creole-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "creole-mode"; - version = "20130721.1950"; + version = "20130721.2050"; src = fetchFromGitHub { owner = "nicferrier"; repo = "creole-mode"; @@ -9552,7 +9552,7 @@ sha256 = "0japww5x89vd1ahjm2bc3biz6wxv94vvqq5fyyzkqsblgk5bys0h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/creole-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/creole-mode"; sha256 = "1lj9a0bgn7lmc2wyjzzvmpaz1f1spj02l51ki2wydjbfhxq61k0s"; name = "creole-mode"; }; @@ -9565,7 +9565,7 @@ crm-custom = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "crm-custom"; - version = "20160116.1806"; + version = "20160116.1906"; src = fetchFromGitHub { owner = "DarwinAwardWinner"; repo = "crm-custom"; @@ -9573,7 +9573,7 @@ sha256 = "1kl6blr4dlz40gfc845071nhfms4fm59284ja2177bhghy3wmw6r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/crm-custom"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/crm-custom"; sha256 = "14w15skxr44p9ilhpswlgdbqfw8jghxi69l37yk4m449m7g9694c"; name = "crm-custom"; }; @@ -9586,7 +9586,7 @@ crontab-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "crontab-mode"; - version = "20090510.1555"; + version = "20090510.1655"; src = fetchFromGitHub { owner = "emacsorphanage"; repo = "crontab-mode"; @@ -9594,7 +9594,7 @@ sha256 = "1r9dhk8h8lq18vi0hjai8y4z42yjxg18786mcr2qs5m3q1ampf9d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/crontab-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/crontab-mode"; sha256 = "16qc2isvf6cgl5ihdbwmvv0gbhns4mkhd5lxkl6f8f6h0za054ci"; name = "crontab-mode"; }; @@ -9607,13 +9607,13 @@ crosshairs = callPackage ({ col-highlight, fetchurl, hl-line-plus, lib, melpaBuild, vline }: melpaBuild { pname = "crosshairs"; - version = "20151231.1438"; + version = "20151231.1538"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/crosshairs.el"; sha256 = "120hxk82i0r4qan4hfk9ldmw5a8bzv7p683lrnlcx9gyxgkia3am"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/crosshairs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/crosshairs"; sha256 = "1gf73li6q5rg1dimzihxq0rdxiqzbl2w78r1qzc9mxw3qj7azxqp"; name = "crosshairs"; }; @@ -9623,22 +9623,22 @@ license = lib.licenses.free; }; }) {}; - crux = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + crux = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, seq }: melpaBuild { pname = "crux"; - version = "20160405.4"; + version = "20160503.2333"; src = fetchFromGitHub { owner = "bbatsov"; repo = "crux"; - rev = "6d11d2e6b56e237bb871af7e21ba6ef30e0a10da"; - sha256 = "0yxs0bqb2z2zpvbysbmlsiyij49cxfjkb1a46vms6s2gpbj940h7"; + rev = "6ae09d05c7729a74b342017acbe54784abcee8f3"; + sha256 = "1vk1p0541fwama5dngrm15v2qw6gpzakh9gs6j739bckgky8nlhk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/crux"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/crux"; sha256 = "10lim1sngqbdqqwyq6ksqjjqpkm97aj1jk550sgwj28338lnw73c"; name = "crux"; }; - packageRequires = []; + packageRequires = [ seq ]; meta = { homepage = "https://melpa.org/#/crux"; license = lib.licenses.free; @@ -9647,7 +9647,7 @@ cryptol-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cryptol-mode"; - version = "20140426.1204"; + version = "20140426.1304"; src = fetchFromGitHub { owner = "thoughtpolice"; repo = "cryptol-mode"; @@ -9655,7 +9655,7 @@ sha256 = "00wgbcw09xn9xi52swi4wyi9dj9p9hyin7i431xi6zkhxysw4q7w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cryptol-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cryptol-mode"; sha256 = "08iq69gqmps8cckybhj9065b8a2a49p0rpzgx883qxnypsmjfmf2"; name = "cryptol-mode"; }; @@ -9668,7 +9668,7 @@ cryptsy-public-api = callPackage ({ fetchFromGitHub, fetchurl, json ? null, lib, melpaBuild }: melpaBuild { pname = "cryptsy-public-api"; - version = "20141008.728"; + version = "20141008.828"; src = fetchFromGitHub { owner = "Sodaware"; repo = "cryptsy-public-api.el"; @@ -9676,7 +9676,7 @@ sha256 = "0ry0087g1br3397js7a9iy6k2x6p0dgqlggxx9gaqhms7pmpq14b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cryptsy-public-api"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cryptsy-public-api"; sha256 = "1331nrx57136k09a7p6imv0k9g6w8ibpwn5xmv33dxc22hsmc41j"; name = "cryptsy-public-api"; }; @@ -9689,7 +9689,7 @@ csharp-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "csharp-mode"; - version = "20160414.422"; + version = "20160414.522"; src = fetchFromGitHub { owner = "josteink"; repo = "csharp-mode"; @@ -9697,7 +9697,7 @@ sha256 = "00gccc5sl6ng2g9hayckjp6ib93v5azhmhiksmxxddkqwhgw0qg3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/csharp-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/csharp-mode"; sha256 = "17j84qrprq492dsn103dji8mvh29mbdlqlpsszbgfdgnpvfr1rv0"; name = "csharp-mode"; }; @@ -9710,7 +9710,7 @@ css-comb = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "css-comb"; - version = "20160416.59"; + version = "20160416.159"; src = fetchFromGitHub { owner = "channikhabra"; repo = "css-comb.el"; @@ -9718,7 +9718,7 @@ sha256 = "0nvl6y90p9crk12j7aw0cqdjhli7xbrx3hqckxsnvrnxy4zax7nk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/css-comb"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/css-comb"; sha256 = "1axwrvbc3xl1ixhh72bii3hhbi9d96y6i1my1rpvwqyd6f7wb2cf"; name = "css-comb"; }; @@ -9731,7 +9731,7 @@ css-eldoc = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "css-eldoc"; - version = "20150124.2123"; + version = "20150124.2223"; src = fetchFromGitHub { owner = "zenozeng"; repo = "css-eldoc"; @@ -9739,7 +9739,7 @@ sha256 = "1mgc6bd0dzrp1dq1yj8m2qxjnpysd8ppdk2yp96d3zd07zllw4rx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/css-eldoc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/css-eldoc"; sha256 = "1f079q3ccrr4drk2hvn4xs4vbrd3hg87xqbk3r9mmjvkagd1v7rf"; name = "css-eldoc"; }; @@ -9752,7 +9752,7 @@ cssfmt = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cssfmt"; - version = "20150818.2328"; + version = "20150819.28"; src = fetchFromGitHub { owner = "KeenS"; repo = "cssfmt.el"; @@ -9760,7 +9760,7 @@ sha256 = "0hyf4im7b8zka065daw7yxrb3670dpp8q92vd2gcsva1jla92h9y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cssfmt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cssfmt"; sha256 = "12yq4dhyv3p5gxnd2w193ilpj2d3gx5ns09w0z1zkg7ax3a4q4b8"; name = "cssfmt"; }; @@ -9773,7 +9773,7 @@ cssh = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cssh"; - version = "20150810.1209"; + version = "20150810.1309"; src = fetchFromGitHub { owner = "dimitri"; repo = "cssh"; @@ -9781,7 +9781,7 @@ sha256 = "1xf2hy077frfz8qf91c0l0qppcjxzr4bsbb622bx6fidqkpa3a1a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cssh"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cssh"; sha256 = "10yvvyzqr06jvijmzis9clb1slzp2mn80yclis8wvrmg4p8djljk"; name = "cssh"; }; @@ -9793,13 +9793,13 @@ }) {}; csv-nav = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "csv-nav"; - version = "20130407.1320"; + version = "20130407.1420"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/csv-nav.el"; sha256 = "15rfg3326xcs3zj3siy9rn7yff101vfch1srskdi2650c3l3krva"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/csv-nav"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/csv-nav"; sha256 = "0626vsm2f5zc2wi5pyx4xrwcr4ai8w9a3l7gi9883smvayr619sj"; name = "csv-nav"; }; @@ -9812,7 +9812,7 @@ ctable = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ctable"; - version = "20140304.1859"; + version = "20140304.1959"; src = fetchFromGitHub { owner = "kiwanami"; repo = "emacs-ctable"; @@ -9820,7 +9820,7 @@ sha256 = "07vasdlai49qs0nsmq2cz1kcq1adqyarv8199imgwwcbh4vn7dqb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ctable"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ctable"; sha256 = "040qmlgfvjc1f908n52m5ll2fizbrhjzbd0kgrsw37bvm3029rx1"; name = "ctable"; }; @@ -9832,14 +9832,14 @@ }) {}; ctags = callPackage ({ fetchhg, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ctags"; - version = "20110911.504"; + version = "20110911.604"; src = fetchhg { url = "https://bitbucket.com/semente/ctags.el"; rev = "afb16c5b2530"; sha256 = "1xgrb4ivgz7gmingfafmclqqflxdvkarmfkqqv1zjk6yrjhlcvwf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ctags"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ctags"; sha256 = "11fp8l99rj4fmi0vd3hkffgpfhk1l82ggglzb74jr3qfzv3dcn6y"; name = "ctags"; }; @@ -9852,7 +9852,7 @@ ctags-update = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ctags-update"; - version = "20150427.2214"; + version = "20150427.2314"; src = fetchFromGitHub { owner = "jixiuf"; repo = "helm-etags-plus"; @@ -9860,7 +9860,7 @@ sha256 = "1va394nls4yi77rgm0kz5r00xiidj6lwcabhqxisz08m3h8gfkh2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ctags-update"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ctags-update"; sha256 = "1k43l667mvr2y33nblachdlvdqvn256gysc1iwv5zgv7gj9i65qf"; name = "ctags-update"; }; @@ -9873,7 +9873,7 @@ ctl-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ctl-mode"; - version = "20151202.406"; + version = "20151202.506"; src = fetchFromGitHub { owner = "yyr"; repo = "emacs-grads"; @@ -9881,7 +9881,7 @@ sha256 = "1d89gxyzv0z0nk7v1aa4qa0xfms2g2dsrr07cw0d99xsnyxfky31"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ctl-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ctl-mode"; sha256 = "0fydq779b0y6hmh8srfdimr5rl9mk3sj08rbvlljxv3kqv5ajczj"; name = "ctl-mode"; }; @@ -9894,7 +9894,7 @@ ctxmenu = callPackage ({ fetchFromGitHub, fetchurl, lib, log4e, melpaBuild, popup, yaxception }: melpaBuild { pname = "ctxmenu"; - version = "20140303.1542"; + version = "20140303.1642"; src = fetchFromGitHub { owner = "aki2o"; repo = "emacs-ctxmenu"; @@ -9902,7 +9902,7 @@ sha256 = "1jlr2miwqsg06hk2clvsrw9fa98m2n76qfq8qv5svrb8dpil04wb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ctxmenu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ctxmenu"; sha256 = "03g9px858mg19wapqszwav3599slljdyam8bvn1ri85fpa5ydvdp"; name = "ctxmenu"; }; @@ -9915,7 +9915,7 @@ cucumber-goto-step = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, pcre2el }: melpaBuild { pname = "cucumber-goto-step"; - version = "20131209.2319"; + version = "20131210.19"; src = fetchFromGitHub { owner = "gstamp"; repo = "cucumber-goto-step"; @@ -9923,7 +9923,7 @@ sha256 = "184plai32sn0indvi1dma6ykz907zgnrdyxdw6f5mghwca96g5kx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cucumber-goto-step"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cucumber-goto-step"; sha256 = "1ydsd455dvaw6a180b6570bfgg0kxn01sn6cb57smqj835am6gx8"; name = "cucumber-goto-step"; }; @@ -9936,7 +9936,7 @@ cuda-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cuda-mode"; - version = "20151213.2121"; + version = "20151213.2221"; src = fetchFromGitHub { owner = "chachi"; repo = "cuda-mode"; @@ -9944,7 +9944,7 @@ sha256 = "1ms0z5zplcbdwwdbgsjsbm32i57z9i2i8j9y3wm0pwzyz4zr36zy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cuda-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cuda-mode"; sha256 = "0ip4vax93x72bjrh6prik6ddmrvszpsmgm0fxfz772rp24smc300"; name = "cuda-mode"; }; @@ -9956,13 +9956,13 @@ }) {}; cursor-chg = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "cursor-chg"; - version = "20151231.1440"; + version = "20151231.1540"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/cursor-chg.el"; sha256 = "1w0msh4mfhwglkwgb8ksqfdzbd1bvspllydnjzhc0yl3s7qrifbd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cursor-chg"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cursor-chg"; sha256 = "0d1ilall8c1y4w014wks9yx4fz743hvx5lc8jqxxlrq7pmqyqdxk"; name = "cursor-chg"; }; @@ -9975,7 +9975,7 @@ cursor-test = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cursor-test"; - version = "20131207.1132"; + version = "20131207.1232"; src = fetchFromGitHub { owner = "ainame"; repo = "cursor-test.el"; @@ -9983,7 +9983,7 @@ sha256 = "0wmnhizv4jfcl1w9za4ydxf6xwxgm5vwmn1zi5vn70zmv4d6r49l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cursor-test"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cursor-test"; sha256 = "1c1d5xq4alamlwyqxjx557aykz5dw87acp0lyglsrzzkdynbwlb1"; name = "cursor-test"; }; @@ -9995,13 +9995,13 @@ }) {}; cus-edit-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "cus-edit-plus"; - version = "20151231.1441"; + version = "20151231.1541"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/cus-edit+.el"; sha256 = "1p0kacbw5zfrd7zplhlh7j1890spvn8p0bryvqqmyf8w5873pcmh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cus-edit+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cus-edit+"; sha256 = "1kazcdfajcnrzvhsgsmwwx96rkry0dglprrc02hbd7ky1fppp4sz"; name = "cus-edit-plus"; }; @@ -10014,7 +10014,7 @@ cyberpunk-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cyberpunk-theme"; - version = "20160121.1912"; + version = "20160121.2012"; src = fetchFromGitHub { owner = "n3mo"; repo = "cyberpunk-theme.el"; @@ -10022,7 +10022,7 @@ sha256 = "1yhizh8j745hv5ancpvijds9dasvsr2scwjscksp2x3krnd26ssp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cyberpunk-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cyberpunk-theme"; sha256 = "0l2bwb5afkkhrbh99v2gns1vil9s5911hbnlq5w35nmg1wvbmbc9"; name = "cyberpunk-theme"; }; @@ -10035,7 +10035,7 @@ cycbuf = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cycbuf"; - version = "20131203.1437"; + version = "20131203.1537"; src = fetchFromGitHub { owner = "martinp26"; repo = "cycbuf"; @@ -10043,7 +10043,7 @@ sha256 = "1d5i8sm1xrsp4v4myidfyb40hm3wp7hgva7dizg9gbb7prmn1p5w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cycbuf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cycbuf"; sha256 = "0gyj48h5wgjawqq3j4hgk5a8d23nffmhd1q53kg7b9vfsda51hbw"; name = "cycbuf"; }; @@ -10056,7 +10056,7 @@ cycle-resize = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cycle-resize"; - version = "20150602.1423"; + version = "20150602.1523"; src = fetchFromGitHub { owner = "pierre-lecocq"; repo = "cycle-resize"; @@ -10064,7 +10064,7 @@ sha256 = "0hf3r89n9zn7wkay71drxadsnd9zm6p6kvg5mvwzdy3x3z4cfyi3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cycle-resize"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cycle-resize"; sha256 = "0vp57plwqx4nf3pbv5g4frjriq8niiia9xc3bv6c3gzd4a0zm7xi"; name = "cycle-resize"; }; @@ -10077,7 +10077,7 @@ cycle-themes = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cycle-themes"; - version = "20150402.2209"; + version = "20150402.2309"; src = fetchFromGitHub { owner = "toroidal-code"; repo = "cycle-themes.el"; @@ -10085,7 +10085,7 @@ sha256 = "125s6vwbb9zpx6h3vrxnn7nr8pb45vhxd70ba2r3f87dlxah93am"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cycle-themes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cycle-themes"; sha256 = "1whp9q26sgyf59wygbrvdf9gc94bn4dmhr2f2qivpajx550fjfbc"; name = "cycle-themes"; }; @@ -10097,13 +10097,13 @@ }) {}; cygwin-mount = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "cygwin-mount"; - version = "20131111.1546"; + version = "20131111.1646"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/cygwin-mount.el"; sha256 = "09my4gj3qm9rdpk8lg6n6ki8ywj7kwzwd4hhgwascfnfi1hzwdvw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cygwin-mount"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cygwin-mount"; sha256 = "0ik2c8ab9bsx58mgcv511p50h45cpv7455n4b0kri83sx9xf5abb"; name = "cygwin-mount"; }; @@ -10116,7 +10116,7 @@ cyphejor = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cyphejor"; - version = "20160106.44"; + version = "20160106.144"; src = fetchFromGitHub { owner = "mrkkrp"; repo = "cyphejor"; @@ -10124,7 +10124,7 @@ sha256 = "1xcd8j5chh5j3fibi8bg2il6r09vza5xlb5fqm9j8sg3vkab26z8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cyphejor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cyphejor"; sha256 = "18l5km4xm5j3vv19k3fxs8i3rg4qnhrvx7b62vmyfcqmpiasrh6g"; name = "cyphejor"; }; @@ -10137,7 +10137,7 @@ cypher-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cypher-mode"; - version = "20151110.542"; + version = "20151110.642"; src = fetchFromGitHub { owner = "fxbois"; repo = "cypher-mode"; @@ -10145,7 +10145,7 @@ sha256 = "0vbcq807jpjssabmyjcdkpp6nnx1288is2c6x79dkrviw2xxw3qf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cypher-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cypher-mode"; sha256 = "174rfbm7yzkznkfjmh9bdnm5fgqv9bjwm85h39317pv1g8c3mgv0"; name = "cypher-mode"; }; @@ -10158,15 +10158,15 @@ cython-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cython-mode"; - version = "20140705.1429"; + version = "20140705.1529"; src = fetchFromGitHub { owner = "cython"; repo = "cython"; - rev = "d591d500d9b0505ffd01021c0cebc35b872efa15"; - sha256 = "1923rizwm73vy9pkr4lznywq1d2rfswy387k3l6wp00c9fxp9yqa"; + rev = "c4c202bbb8b11acaff893d5cb8aac4cc690716f3"; + sha256 = "1rna7bnm1s3i8k8sywljbi0yh59xbh91fyvp09hbxj42hwrlyz1n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cython-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cython-mode"; sha256 = "0asai1f1pncrfxx296fn6ky09hj1qam5j0dpxxkzhy0a34xz0k2i"; name = "cython-mode"; }; @@ -10179,7 +10179,7 @@ czech-holidays = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "czech-holidays"; - version = "20160113.1152"; + version = "20160113.1252"; src = fetchFromGitHub { owner = "hydandata"; repo = "czech-holidays"; @@ -10187,7 +10187,7 @@ sha256 = "1ck1a61m0kjynqwzbw9hnc7y2a6gd6l1430wm7mw3qqsq959qwm6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/czech-holidays"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/czech-holidays"; sha256 = "10c0zscbn7pr9xqdqksy4kh0cxjg9bhw8p4qzlk18fd4c8rhqn84"; name = "czech-holidays"; }; @@ -10200,15 +10200,15 @@ d-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "d-mode"; - version = "20160416.1138"; + version = "20160504.1255"; src = fetchFromGitHub { owner = "Emacs-D-Mode-Maintainers"; repo = "Emacs-D-Mode"; - rev = "600c70be3b9d925caa63d8396a166dd8173f30f5"; - sha256 = "1zp73jy6wpjvd2xsclqazxqih1zp27gm43aiw9v35xsjh92w79z1"; + rev = "3e733780e96b8e72bc624677f242aff67fb26e89"; + sha256 = "1568jqcrw3xks1pvvn6dyn6jiam26vmp5m53jf8q4165ic2lazi8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/d-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/d-mode"; sha256 = "060k9ndjx0n5vlpzfxlv5zxnizx72d7y9vk7gz7gdvpm6w2ha0a2"; name = "d-mode"; }; @@ -10221,7 +10221,7 @@ dactyl-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dactyl-mode"; - version = "20140906.1225"; + version = "20140906.1325"; src = fetchFromGitHub { owner = "luxbock"; repo = "dactyl-mode"; @@ -10229,7 +10229,7 @@ sha256 = "0fp40cyamchc9qq5vbpxgq3yp6vs8p3ncg46mjzr54psy3fc86dm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dactyl-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dactyl-mode"; sha256 = "0ppcabddcpwshfd04x42nbrbkagbyi1bg4vslysnlxn4kaxjs7pm"; name = "dactyl-mode"; }; @@ -10242,7 +10242,7 @@ dakrone-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dakrone-theme"; - version = "20140211.2245"; + version = "20140211.2345"; src = fetchFromGitHub { owner = "dakrone"; repo = "dakrone-theme"; @@ -10250,7 +10250,7 @@ sha256 = "0fd0h07m42q2h1ggsjra20kzv209rpb4apjv408h2dxqm8sy0jiy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dakrone-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dakrone-theme"; sha256 = "0ma4rfmgwd6k24jzn6pgk46b88jfix7mz0ib7c7r90h5vmpiq814"; name = "dakrone-theme"; }; @@ -10263,7 +10263,7 @@ danneskjold-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "danneskjold-theme"; - version = "20160409.1217"; + version = "20160409.1317"; src = fetchFromGitHub { owner = "rails-to-cosmos"; repo = "danneskjold-theme"; @@ -10271,7 +10271,7 @@ sha256 = "1shysnf34qxd5rabad14a26m5id88g4wl4y4mwap53l2p3mcxq38"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/danneskjold-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/danneskjold-theme"; sha256 = "0cwab7qp293g92n9mjjz2vpg1pz2q3d40hfszf29rci89wsf3yxl"; name = "danneskjold-theme"; }; @@ -10284,7 +10284,7 @@ darcula-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "darcula-theme"; - version = "20160305.421"; + version = "20160305.521"; src = fetchFromGitHub { owner = "fommil"; repo = "darcula-theme-emacs"; @@ -10292,7 +10292,7 @@ sha256 = "128a9iv1vrassmk4sy4cs4nj6lggr5v4rhjj04v1xssj5nn5flxf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/darcula-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/darcula-theme"; sha256 = "13d21gwzv66ibn0gs56ff3sn76sa2mkjvjmpd2ncxq3mcgxajnjg"; name = "darcula-theme"; }; @@ -10305,7 +10305,7 @@ dark-krystal-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dark-krystal-theme"; - version = "20141116.101"; + version = "20141116.201"; src = fetchFromGitHub { owner = "emacsfodder"; repo = "emacs-dark-krystal-theme"; @@ -10313,7 +10313,7 @@ sha256 = "07w5aycgaps904q8lk52d0g28wxq41c82xgl5mw2q56n3s5iixfx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dark-krystal-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dark-krystal-theme"; sha256 = "056aql35502sgvdpbgphpqdxzbjf4ay01rra6pm11c1dya8avv0j"; name = "dark-krystal-theme"; }; @@ -10326,7 +10326,7 @@ dark-mint-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dark-mint-theme"; - version = "20160302.42"; + version = "20160302.142"; src = fetchFromGitHub { owner = "shaunvxc"; repo = "dark-mint-theme"; @@ -10334,7 +10334,7 @@ sha256 = "052k8mqxx8lkadxyz6rwa7l741rwbd1blk2ggpsj2s1g6p9l68a1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dark-mint-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dark-mint-theme"; sha256 = "0rljpwycarbn8rnac9vz7n23j69wmx35gn5dx77v0f0ws8ni4k9m"; name = "dark-mint-theme"; }; @@ -10347,7 +10347,7 @@ dark-souls = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dark-souls"; - version = "20140314.628"; + version = "20140314.728"; src = fetchFromGitHub { owner = "tomjakubowski"; repo = "dark-souls.el"; @@ -10355,7 +10355,7 @@ sha256 = "1w0y2j0j9n107dbk7ksr9bipshjfs9dk08qbs9m6h5aqh4hmwa4r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dark-souls"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dark-souls"; sha256 = "1ilsn657mpl7v8vkbzqf3gp0gmvy0dgynfsn8w4cb49qaiy337xc"; name = "dark-souls"; }; @@ -10368,7 +10368,7 @@ darkburn-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "darkburn-theme"; - version = "20151003.300"; + version = "20151003.400"; src = fetchFromGitHub { owner = "gorauskas"; repo = "darkburn-theme"; @@ -10376,7 +10376,7 @@ sha256 = "19vrxfzhi0sqf7frzjx5z02d65r2jp1w2nhhf0527g7baid5hqvf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/darkburn-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/darkburn-theme"; sha256 = "18hwdnwmkf640vcyx8d66i424wwazbzjq3k0w0xjmwsn2mpyhm9w"; name = "darkburn-theme"; }; @@ -10389,7 +10389,7 @@ darkmine-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "darkmine-theme"; - version = "20160406.124"; + version = "20160406.224"; src = fetchFromGitHub { owner = "pierre-lecocq"; repo = "darkmine-theme"; @@ -10397,7 +10397,7 @@ sha256 = "0d2g4iyp8gyfrcc1gkvl40p1shlw1sadswzhry0m1lgbyxiiklrz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/darkmine-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/darkmine-theme"; sha256 = "06vzldyqlmfd11g8dqrqh5x244ikfa20qwpsmbgsiry3041k8iw5"; name = "darkmine-theme"; }; @@ -10407,10 +10407,31 @@ license = lib.licenses.free; }; }) {}; + darkokai-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "darkokai-theme"; + version = "20160506.129"; + src = fetchFromGitHub { + owner = "sjrmanning"; + repo = "darkokai"; + rev = "1f0f62404872b7e33bc87e71551c3aba7be80064"; + sha256 = "1f2hdxsykwfjfnlm59vxrncyjvzjpcpkffbfam6inkqs06g44kkz"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/darkokai-theme"; + sha256 = "0jw71xl4ihkyq4m0w8c35x5hr8ic07wcabmvpwmvspnj8hkfccwf"; + name = "darkokai-theme"; + }; + packageRequires = []; + meta = { + homepage = "https://melpa.org/#/darkokai-theme"; + license = lib.licenses.free; + }; + }) {}; darktooth-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "darktooth-theme"; - version = "20160406.1024"; + version = "20160406.1124"; src = fetchFromGitHub { owner = "emacsfodder"; repo = "emacs-theme-darktooth"; @@ -10418,7 +10439,7 @@ sha256 = "0qqak05w8y5734d78wc22l82y9riz12mxsg0b4zrjbd2l16bxf1c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/darktooth-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/darktooth-theme"; sha256 = "1vss0mg1vz4wvsal1r0ya8lid2c18ig11ip5v9nc80b5slbixzvs"; name = "darktooth-theme"; }; @@ -10431,7 +10452,7 @@ dart-mode = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }: melpaBuild { pname = "dart-mode"; - version = "20160212.1321"; + version = "20160212.1421"; src = fetchFromGitHub { owner = "nex3"; repo = "dart-mode"; @@ -10439,7 +10460,7 @@ sha256 = "0ylzgaf4g0fh16rc061iaw3jrl2sjiwpr4x1ndk2bp0j14n7hqid"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dart-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dart-mode"; sha256 = "0wxfh8v716dhrmx1klhpnsrlsj66llk8brmwryjg2h7c391sb5ff"; name = "dart-mode"; }; @@ -10452,15 +10473,15 @@ dash = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dash"; - version = "20160306.1422"; + version = "20160501.1423"; src = fetchFromGitHub { owner = "magnars"; repo = "dash.el"; - rev = "a9f90d7834337dadee1a69f2089e39fd81b22ba7"; - sha256 = "04fdhxns5vn5iljni1sc8sw0mj53rlgyzafikddj7c7x7bpdc0iz"; + rev = "1fce650170b974a3a76ad7150fe13ca0b9769d2d"; + sha256 = "14hb70jwmdbf6sk1ygq5ln0x055yywnzv5l6hy8q5r1q426ryp2z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dash"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dash"; sha256 = "0azm47900bk2frpjsgy108fr3p1jk4h9kmp4b5j5pibgsm26azgz"; name = "dash"; }; @@ -10473,7 +10494,7 @@ dash-at-point = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dash-at-point"; - version = "20140626.235"; + version = "20140626.335"; src = fetchFromGitHub { owner = "stanaka"; repo = "dash-at-point"; @@ -10481,7 +10502,7 @@ sha256 = "0zd50sr51mmvndjb9qfc3sn502nhc939rhd454jbkmlrzqsxvphj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dash-at-point"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dash-at-point"; sha256 = "0x4nq42nbh2qgbg111lgbknc7w7m7lxd14mp9s8dcrpwsaxz960m"; name = "dash-at-point"; }; @@ -10494,15 +10515,15 @@ dash-functional = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dash-functional"; - version = "20150828.613"; + version = "20150828.713"; src = fetchFromGitHub { owner = "magnars"; repo = "dash.el"; - rev = "a9f90d7834337dadee1a69f2089e39fd81b22ba7"; - sha256 = "04fdhxns5vn5iljni1sc8sw0mj53rlgyzafikddj7c7x7bpdc0iz"; + rev = "1fce650170b974a3a76ad7150fe13ca0b9769d2d"; + sha256 = "14hb70jwmdbf6sk1ygq5ln0x055yywnzv5l6hy8q5r1q426ryp2z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dash-functional"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dash-functional"; sha256 = "0hx36hs12mf4nmskaaqrqpcgwrfjdqj6qcxn6bwb0s5m2jf9hs8p"; name = "dash-functional"; }; @@ -10515,7 +10536,7 @@ date-at-point = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "date-at-point"; - version = "20150108.618"; + version = "20150108.718"; src = fetchFromGitHub { owner = "alezost"; repo = "date-at-point.el"; @@ -10523,7 +10544,7 @@ sha256 = "0l4z9rjla4xvm2hmp07xil69q1cg0v8iff0ya41svaqr944qf7hf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/date-at-point"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/date-at-point"; sha256 = "0r26df6px6q5jlxj29nhl3qbp6kzy9hs5vd72kpiirgn4wlmagp0"; name = "date-at-point"; }; @@ -10536,7 +10557,7 @@ date-field = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, log4e, melpaBuild, yaxception }: melpaBuild { pname = "date-field"; - version = "20141128.1905"; + version = "20141128.2005"; src = fetchFromGitHub { owner = "aki2o"; repo = "emacs-date-field"; @@ -10544,7 +10565,7 @@ sha256 = "1lmwnj2fnvijj9qp4rjggl7c4x91vnpb47rqaam6m2wmr5wbrx3w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/date-field"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/date-field"; sha256 = "0fmw13sa4ajs1xkrkdpcjpbp0jl9d81cgvwh93myg8yjjn7wbmvk"; name = "date-field"; }; @@ -10557,7 +10578,7 @@ datomic-snippets = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s, yasnippet }: melpaBuild { pname = "datomic-snippets"; - version = "20130707.1515"; + version = "20130707.1615"; src = fetchFromGitHub { owner = "magnars"; repo = "datomic-snippets"; @@ -10565,7 +10586,7 @@ sha256 = "0ry7magy9x63xv2apjbpgszp0slch92g23gqwl4rd564qafajmf0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/datomic-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/datomic-snippets"; sha256 = "0lax0pj4k9c9n0gmrvil240pc9p25535q3n5m8nb2ar4sli8dn8r"; name = "datomic-snippets"; }; @@ -10578,7 +10599,7 @@ dayone = callPackage ({ fetchFromGitHub, fetchurl, ht, lib, melpaBuild, mustache, uuid }: melpaBuild { pname = "dayone"; - version = "20160105.640"; + version = "20160105.740"; src = fetchFromGitHub { owner = "mori-dev"; repo = "emacs-dayone"; @@ -10586,7 +10607,7 @@ sha256 = "1j0mk8vyr6sniliq0ix77jldx8vzl73nd5yhh82klzgyymal58ms"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dayone"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dayone"; sha256 = "0hi09dj00h6g5r84jxglwkgbijhfxknx4mq5gcl5jzjis5affk8l"; name = "dayone"; }; @@ -10599,7 +10620,7 @@ db = callPackage ({ fetchFromGitHub, fetchurl, kv, lib, melpaBuild }: melpaBuild { pname = "db"; - version = "20140421.1611"; + version = "20140421.1711"; src = fetchFromGitHub { owner = "nicferrier"; repo = "emacs-db"; @@ -10607,7 +10628,7 @@ sha256 = "0syv4kr319d34yqi4q61b8jh5yy22wvd148x1m3pc511znh2ry5k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/db"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/db"; sha256 = "05jhga9n6gh1bmj8gda14sb703gn7jgjlvy55mlr5kdb2z3rqw1n"; name = "db"; }; @@ -10620,7 +10641,7 @@ db-pg = callPackage ({ db, fetchFromGitHub, fetchurl, lib, melpaBuild, pg }: melpaBuild { pname = "db-pg"; - version = "20130131.1302"; + version = "20130131.1402"; src = fetchFromGitHub { owner = "nicferrier"; repo = "emacs-db-pg"; @@ -10628,7 +10649,7 @@ sha256 = "15r0qwjkl33p8kh2k5kxz9wnbkv1k470b1h0i6svvljkx9ynk68a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/db-pg"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/db-pg"; sha256 = "06nfibw01ijv7nr0m142y80jbbpg9kk1dh19s5wq7i6fqf7g08xg"; name = "db-pg"; }; @@ -10641,7 +10662,7 @@ ddskk = callPackage ({ ccc, cdb, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ddskk"; - version = "20160315.908"; + version = "20160315.1008"; src = fetchFromGitHub { owner = "skk-dev"; repo = "ddskk"; @@ -10649,7 +10670,7 @@ sha256 = "1mqz83yqgad7p5ssjil10w0bw0vm642xp18ms4id8pzcbxz8ygsv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ddskk"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ddskk"; sha256 = "01pb00p126q7swsl12yjrhghln2wgaj65jhjr0k7dkk64x4psyc9"; name = "ddskk"; }; @@ -10662,7 +10683,7 @@ debpaste = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, xml-rpc }: melpaBuild { pname = "debpaste"; - version = "20160113.1747"; + version = "20160113.1847"; src = fetchFromGitHub { owner = "alezost"; repo = "debpaste.el"; @@ -10670,7 +10691,7 @@ sha256 = "1darxggvyv100cfb7imyzvgif8a09pnky62pf3bl2612hhvaijfb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/debpaste"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/debpaste"; sha256 = "1vgirfy4vdqkhllnnmcplhwmzqqwca3la5jfvvansykqriwbq9lw"; name = "debpaste"; }; @@ -10683,7 +10704,7 @@ debug-print = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "debug-print"; - version = "20140125.1819"; + version = "20140125.1919"; src = fetchFromGitHub { owner = "kenoss"; repo = "debug-print"; @@ -10691,7 +10712,7 @@ sha256 = "1n99nrp42slmyp5228d1nz174bysjn122jgs8fn1x0qxywg7jyxp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/debug-print"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/debug-print"; sha256 = "01dsqq2qdsbxny6j9dhvg770493awxjhk1m85c14ysgh6sl199rm"; name = "debug-print"; }; @@ -10704,7 +10725,7 @@ decide = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "decide"; - version = "20160314.1448"; + version = "20160314.1548"; src = fetchFromGitHub { owner = "lifelike"; repo = "decide-mode"; @@ -10712,7 +10733,7 @@ sha256 = "05n57djagbkm8im4168d5d2fr2ibfnckya7qzrca1f9rmm0ah15j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/decide"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/decide"; sha256 = "1gjkays48lhrifi9jwja5n2dpxjbl7f9rmka1nsqg9vf7s59vhhc"; name = "decide"; }; @@ -10725,7 +10746,7 @@ decl = callPackage ({ cl-lib ? null, dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "decl"; - version = "20151231.2223"; + version = "20151231.2323"; src = fetchFromGitHub { owner = "preetpalS"; repo = "decl.el"; @@ -10733,7 +10754,7 @@ sha256 = "01bafkc99g9vi45y95mi3sqin2lsfw885z63f7llpqvnfav86n4y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/decl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/decl"; sha256 = "0wdhmp226wmrjvjgpbz8ihvhxxv3rrxh97sdqm3mgsav3n071n6k"; name = "decl"; }; @@ -10746,7 +10767,7 @@ dedicated = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dedicated"; - version = "20090428.1431"; + version = "20090428.1531"; src = fetchFromGitHub { owner = "emacsorphanage"; repo = "dedicated"; @@ -10754,7 +10775,7 @@ sha256 = "0pba9s0h37sxyqh733vi6k5raa4cs7aradipf3826inw36jcw414"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dedicated"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dedicated"; sha256 = "1ka8n02r3nd2ksbid23g2qd6707c7xsjx7lbbdi6pcmwam5mglw9"; name = "dedicated"; }; @@ -10767,7 +10788,7 @@ dedukti-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dedukti-mode"; - version = "20160329.1202"; + version = "20160329.1302"; src = fetchFromGitHub { owner = "rafoo"; repo = "dedukti-mode"; @@ -10775,7 +10796,7 @@ sha256 = "1lnvr1rxgf1i0dh1gqlkghz6r4lm1llpv3vhky313220ibxrpsvm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dedukti-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dedukti-mode"; sha256 = "17adfmrhfks5f45ddr6ygjq870ac50vfzc5872ycv414zg0w4sa9"; name = "dedukti-mode"; }; @@ -10788,7 +10809,7 @@ default-text-scale = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "default-text-scale"; - version = "20150227.1156"; + version = "20150227.1256"; src = fetchFromGitHub { owner = "purcell"; repo = "default-text-scale"; @@ -10796,7 +10817,7 @@ sha256 = "1ysv1q7n7k2l4x8x7hlzmxmawyxl5lx627sbdv3phkvjh5zccsm8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/default-text-scale"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/default-text-scale"; sha256 = "18r90ic38fnlsbg4gi3r962vban398x2bf3rqhrc6z4jk4aiv3mi"; name = "default-text-scale"; }; @@ -10809,7 +10830,7 @@ deferred = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "deferred"; - version = "20160109.2246"; + version = "20160109.2346"; src = fetchFromGitHub { owner = "kiwanami"; repo = "emacs-deferred"; @@ -10817,7 +10838,7 @@ sha256 = "1br4yys803x3ng4vzhhvblhkqabs46lx8a3ajycqy555q20zqzrf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/deferred"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/deferred"; sha256 = "0axbvxrdjgxk4d1bd9ar4r5nnacsi8r0d6649x7mnhqk12940mnr"; name = "deferred"; }; @@ -10830,7 +10851,7 @@ define-word = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "define-word"; - version = "20150709.1423"; + version = "20150709.1523"; src = fetchFromGitHub { owner = "abo-abo"; repo = "define-word"; @@ -10838,7 +10859,7 @@ sha256 = "02i621yq2ih0zp7mna8iykj41prv77hvcadz7rx8c942zyvjzxqd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/define-word"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/define-word"; sha256 = "035fdfwnxw0mir1dyvrimygx2gafcgnvlcsmwmry1rsfh39n5b9a"; name = "define-word"; }; @@ -10851,7 +10872,7 @@ defproject = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "defproject"; - version = "20151201.1619"; + version = "20151201.1719"; src = fetchFromGitHub { owner = "kotfic"; repo = "defproject"; @@ -10859,7 +10880,7 @@ sha256 = "07jzr571q02l0lg5d40rnmzg16hmybi1nkjgslmvlx46z3c4xvyr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/defproject"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/defproject"; sha256 = "1gld2fkssrjh4smpp54017549d6aw3n1zisp5s4kkb6cmszwj5gm"; name = "defproject"; }; @@ -10871,14 +10892,14 @@ }) {}; deft = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: melpaBuild { pname = "deft"; - version = "20160422.1251"; + version = "20160427.2352"; src = fetchgit { url = "git://jblevins.org/git/deft.git"; - rev = "5f8b46c984edf935cf130f761bf7a5b21ee25f33"; - sha256 = "158krhblmjz87zyx308c66v5hncw8s2wvy3qsk8qv7rg9d7xg13g"; + rev = "cf530ebfebbb2b9ca02c30d05ab6bc3016d4d12d"; + sha256 = "0hgz4n509k69qxy5nhwa5w4q1i5sprhk212n52wdzjfzdrxsn1c0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/deft"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/deft"; sha256 = "1c9kps0lw97nl567ynlzk4w719a86a18q697rcmrbrg5imdx4y5p"; name = "deft"; }; @@ -10890,13 +10911,13 @@ }) {}; delight = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "delight"; - version = "20160305.1751"; + version = "20160305.1851"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/delight.el"; sha256 = "0lqg23mpzcbcfkn84wm8i1bma73wpyh3m5f0zjrrzbwpgsmw8fqd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/delight"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/delight"; sha256 = "1d9m5k18k73vhidwd50mcbq7mlvwdn4sb9ih8r5gri9a9whi2nkj"; name = "delight"; }; @@ -10909,7 +10930,7 @@ delim-kill = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "delim-kill"; - version = "20100517.120"; + version = "20100517.220"; src = fetchFromGitHub { owner = "thomas11"; repo = "delim-kill"; @@ -10917,7 +10938,7 @@ sha256 = "06a20sd8nc273azrgha40l1fbqvv9qmxsmkjiqbf6dcf1blkwjyf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/delim-kill"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/delim-kill"; sha256 = "1pplc456771hi52ap1p87y7pabxlvm6raszcxjvnxff3xzw56pig"; name = "delim-kill"; }; @@ -10930,7 +10951,7 @@ demangle-mode = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "demangle-mode"; - version = "20151109.1453"; + version = "20151109.1553"; src = fetchFromGitHub { owner = "liblit"; repo = "demangle-mode"; @@ -10938,7 +10959,7 @@ sha256 = "13jfhc9gavvb9dxmgi3k7ivp5iwh4yw4m11r2s8wpwn6p056bmfl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/demangle-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/demangle-mode"; sha256 = "0ky0bb6rc99vrdli4lhs656qjndnla9b7inc2ji9l4n1zki5qxzk"; name = "demangle-mode"; }; @@ -10951,7 +10972,7 @@ demo-it = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "demo-it"; - version = "20160413.1431"; + version = "20160413.1531"; src = fetchFromGitHub { owner = "howardabrams"; repo = "demo-it"; @@ -10959,7 +10980,7 @@ sha256 = "0bilf8q2y28vymvi796qs20whw12wi2n2apyxwgcghwmlddzz29c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/demo-it"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/demo-it"; sha256 = "063v115xy9mcga4qv16v538k12rn9maz92khzwa35wx56bwz4gg7"; name = "demo-it"; }; @@ -10972,7 +10993,7 @@ describe-number = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, yabin }: melpaBuild { pname = "describe-number"; - version = "20151031.1955"; + version = "20151031.2055"; src = fetchFromGitHub { owner = "netromdk"; repo = "describe-number"; @@ -10980,7 +11001,7 @@ sha256 = "13fasbhdjwc4jh3cy25gm5sbbg56hq8la271098qpx6dhqm2wycq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/describe-number"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/describe-number"; sha256 = "0gvriailni2ppz69g0bwnb1ik1ghjkj341k45vllz30j0frp9iji"; name = "describe-number"; }; @@ -10993,7 +11014,7 @@ desktop-plus = callPackage ({ dash, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "desktop-plus"; - version = "20160330.812"; + version = "20160330.912"; src = fetchFromGitHub { owner = "ffevotte"; repo = "desktop-plus"; @@ -11001,7 +11022,7 @@ sha256 = "10f5dkrwfd6a1ab98j2kywkh1h01pnanvj2i7fv9a9vxnmiywrcf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/desktop+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/desktop+"; sha256 = "0w7i6k4814hwb19l7ly9yq59674xiw57ylrwxq7yprwx52sgs2r8"; name = "desktop-plus"; }; @@ -11014,7 +11035,7 @@ desktop-registry = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "desktop-registry"; - version = "20140119.1543"; + version = "20140119.1643"; src = fetchFromGitHub { owner = "ryuslash"; repo = "desktop-registry"; @@ -11022,7 +11043,7 @@ sha256 = "11qvhbz7149vqh61fgqqn4inw0ic6ib9lz2xgr9m54pdw9a901mp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/desktop-registry"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/desktop-registry"; sha256 = "1sfj0w6hlrx37js63fn1v5xc9ngmahv07g42z68717md6w3c8g0v"; name = "desktop-registry"; }; @@ -11035,7 +11056,7 @@ devdocs = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "devdocs"; - version = "20160412.1408"; + version = "20160412.1508"; src = fetchFromGitHub { owner = "xuchunyang"; repo = "devdocs.el"; @@ -11043,7 +11064,7 @@ sha256 = "0m4gw6jsdj8pq6wxvvczwvp8pcjnz57ybnb9zib4bq1cajny42zg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/devdocs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/devdocs"; sha256 = "04a1yspk3dwx0lzyg03lrbvig4g6sqmavzwicshdyr7q1bny7ikn"; name = "devdocs"; }; @@ -11056,14 +11077,14 @@ dic-lookup-w3m = callPackage ({ fetchsvn, fetchurl, lib, melpaBuild, stem, w3m }: melpaBuild { pname = "dic-lookup-w3m"; - version = "20140513.1941"; + version = "20160427.1301"; src = fetchsvn { url = "http://svn.osdn.jp/svnroot/dic-lookup-w3m/"; - rev = "82"; - sha256 = "0h1648yk5fx3d4i9ik4ij7r4xb3ddv083dj8irf49ndd51hcwdxc"; + rev = "84"; + sha256 = "0mv3vs91c73ybf7x9lwlfiv05cb8w42d86zzqzraivswljz2qfhk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dic-lookup-w3m"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dic-lookup-w3m"; sha256 = "0zc0phym431bjqg0r8n5xsa98m52xnbhpqlh0jcvcy02nbmdc584"; name = "dic-lookup-w3m"; }; @@ -11076,7 +11097,7 @@ dictcc = callPackage ({ cl-lib ? null, dash, emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, s }: melpaBuild { pname = "dictcc"; - version = "20151221.557"; + version = "20151221.657"; src = fetchFromGitHub { owner = "cqql"; repo = "dictcc.el"; @@ -11084,7 +11105,7 @@ sha256 = "0b8yg03h5arfl5rlzlg2a6q7nhx452mdyngizjzxlvkmrqnlra4v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dictcc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dictcc"; sha256 = "0x1y742hb3dm7xmh5810dlqki38kybw68rmg9adcchm2rn86jqlm"; name = "dictcc"; }; @@ -11097,7 +11118,7 @@ dictionary = callPackage ({ connection, fetchFromGitHub, fetchurl, lib, link, melpaBuild }: melpaBuild { pname = "dictionary"; - version = "20140717.2229"; + version = "20140717.2329"; src = fetchFromGitHub { owner = "myrkr"; repo = "dictionary-el"; @@ -11105,7 +11126,7 @@ sha256 = "0gz03hji6mcrzvxd74qim63g159sc8ggb6hq3x42x5l01g980fbm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dictionary"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dictionary"; sha256 = "0zr9sm5rmr0frxdr0za72wiffip9391fn9dm5y5x0aj1z4c1n28w"; name = "dictionary"; }; @@ -11118,7 +11139,7 @@ diff-hl = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "diff-hl"; - version = "20160203.1701"; + version = "20160203.1801"; src = fetchFromGitHub { owner = "dgutov"; repo = "diff-hl"; @@ -11126,7 +11147,7 @@ sha256 = "0sjwpvzd4x9c1b9iv66b33llvp96ryyzyp8pn1rnhvxfvjv43cnz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/diff-hl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/diff-hl"; sha256 = "0kw0v9xcqidhf26qzrqwdlav2zhq32xx91k7akd2536jpji5pbn6"; name = "diff-hl"; }; @@ -11139,7 +11160,7 @@ diffscuss-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "diffscuss-mode"; - version = "20141014.1857"; + version = "20141014.1957"; src = fetchFromGitHub { owner = "hut8labs"; repo = "diffscuss"; @@ -11147,7 +11168,7 @@ sha256 = "14ccak3cmv36pd085188lypal9gd3flyikcrxn0wi6hn60w2dgvr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/diffscuss-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/diffscuss-mode"; sha256 = "06jd7wh4yzryz0yjwa4a0xddz7srl5mif8ff1wvcpxsb66m2zbvh"; name = "diffscuss-mode"; }; @@ -11160,7 +11181,7 @@ diffview = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "diffview"; - version = "20150929.11"; + version = "20150929.111"; src = fetchFromGitHub { owner = "mgalgs"; repo = "diffview-mode"; @@ -11168,7 +11189,7 @@ sha256 = "0diw887x4q7kbgdvxbbnxdw51z33kqwxw3v9m45fczxbywyi4cxf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/diffview"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/diffview"; sha256 = "0vlzmykvxjwjww313brl1nr13kz41jypsk0s3l8q3rbsnkpfic5k"; name = "diffview"; }; @@ -11181,7 +11202,7 @@ digistar-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "digistar-mode"; - version = "20160218.1355"; + version = "20160218.1455"; src = fetchFromGitHub { owner = "retroj"; repo = "digistar-mode"; @@ -11189,7 +11210,7 @@ sha256 = "0qxdfv1p0140fqcxh677hhxwpx1fihvwhvh76pysn4q4pcfr6ldr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/digistar-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/digistar-mode"; sha256 = "0khzxlrm09h31i1nqz6rnzhrdssb3kppc4klpxza612l306fih0s"; name = "digistar-mode"; }; @@ -11202,7 +11223,7 @@ dim = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dim"; - version = "20151226.315"; + version = "20151226.415"; src = fetchFromGitHub { owner = "alezost"; repo = "dim.el"; @@ -11210,7 +11231,7 @@ sha256 = "17jfmgyras32w9xr8fldqj924bijgng4bjg9fy6ckwb3mgihyil8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dim"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dim"; sha256 = "0gsyily47g3g55qmhp1wzfz319l1pkgjz4lbigafjzlzqxyclz52"; name = "dim"; }; @@ -11223,7 +11244,7 @@ dim-autoload = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dim-autoload"; - version = "20150815.1032"; + version = "20150815.1132"; src = fetchFromGitHub { owner = "tarsius"; repo = "dim-autoload"; @@ -11231,7 +11252,7 @@ sha256 = "0bw1gkaycbbv2glnaa36gwzkl1l6lsq7i2i7jinka92b27zvrans"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dim-autoload"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dim-autoload"; sha256 = "0lhzzjrgfvbqnzwhjywrk3skdb7x10xdq7d21q6kdk3h5r0np9f9"; name = "dim-autoload"; }; @@ -11244,7 +11265,7 @@ diminish = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "diminish"; - version = "20151215.1115"; + version = "20151215.1215"; src = fetchFromGitHub { owner = "myrjola"; repo = "diminish.el"; @@ -11252,7 +11273,7 @@ sha256 = "04vfc5zgcjp0pax5zk1x98ivx5g349c5g3748lb9pgsijqaprgg4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/diminish"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/diminish"; sha256 = "1h6a31jllypk47akjflz89xk6h47na96pim17d6g4rpqcafc2k43"; name = "diminish"; }; @@ -11265,7 +11286,7 @@ dionysos = callPackage ({ alert, cl-lib ? null, dash, fetchFromGitHub, fetchurl, lib, libmpdee, melpaBuild, pkg-info, s }: melpaBuild { pname = "dionysos"; - version = "20151013.303"; + version = "20151013.403"; src = fetchFromGitHub { owner = "nlamirault"; repo = "dionysos"; @@ -11273,7 +11294,7 @@ sha256 = "1ldqxdwy6r0fd2vh0ckkhgpincvybghavi8c7vvyd24j91i57y2f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dionysos"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dionysos"; sha256 = "1wjgj74dnlwd79gc3l7ymbx75jka8rw9smzbb10dsfppw3rrzfmz"; name = "dionysos"; }; @@ -11286,7 +11307,7 @@ dircmp = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dircmp"; - version = "20141204.1156"; + version = "20141204.1256"; src = fetchFromGitHub { owner = "matthewlmcclure"; repo = "dircmp-mode"; @@ -11294,7 +11315,7 @@ sha256 = "0mcsfsybpsxhzkd2m9bzc0np49azm6qf5x4x9h9lbxc8vfgh4z8s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dircmp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dircmp"; sha256 = "0cnj7b0s8vc83sh9sai1cldw54krk5qbz1qmlvvd1whryf2pc95c"; name = "dircmp"; }; @@ -11307,7 +11328,7 @@ dired-atool = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dired-atool"; - version = "20160208.633"; + version = "20160208.733"; src = fetchFromGitHub { owner = "HKey"; repo = "dired-atool"; @@ -11315,7 +11336,7 @@ sha256 = "06m2p5sf47ykhkl958x4k0j0rxzrq0wfwf86mvnarlgc1215dbaf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dired-atool"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dired-atool"; sha256 = "0qljx6fmz1hal9r2smjyc957wcvcpg16vp5mv65ip6d26k5qsj0w"; name = "dired-atool"; }; @@ -11328,15 +11349,15 @@ dired-avfs = callPackage ({ dash, dired-hacks-utils, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dired-avfs"; - version = "20141203.932"; + version = "20141203.1032"; src = fetchFromGitHub { owner = "Fuco1"; repo = "dired-hacks"; - rev = "49bb19a92a4256057f151da9ad6d0a91d46dacc0"; - sha256 = "0hdpn2q55qqvqffb70c8z72ah516l1d3gbzibrr5d0i31xggx4g3"; + rev = "2bccdaf155f29d6b251a916c9a1faaacdae59798"; + sha256 = "0ynr3bl0yaa4z7agqwpm4gn4vr8ka6728f2bhmxynxqhw4vnf38v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dired-avfs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dired-avfs"; sha256 = "1q42pvrpmd525887iicd3m5gw4w2a78xb72v7fjfl30ay1kir4bm"; name = "dired-avfs"; }; @@ -11348,13 +11369,13 @@ }) {}; dired-details = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "dired-details"; - version = "20130824.658"; + version = "20130824.758"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/dired-details.el"; sha256 = "1ddrhj1kw0wl7jbs9jn067vfffsvqhz4izfw9f7ihxz34fdl2iza"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dired-details"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dired-details"; sha256 = "1390vl3i4qbnl7lbia98wznhf6x887d24f8p7146fpqjsiwbm5ck"; name = "dired-details"; }; @@ -11367,13 +11388,13 @@ dired-details-plus = callPackage ({ dired-details, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dired-details-plus"; - version = "20151231.1450"; + version = "20151231.1550"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/dired-details+.el"; sha256 = "07z4h5l8763ks6b6m8dcmq78jiyq4xvan1mb0z8fbasmi1bsrya4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dired-details+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dired-details+"; sha256 = "1gzr3z4nyzip299z08mignhigxr7drak7rv9z6gmdjrika9a29lx"; name = "dired-details-plus"; }; @@ -11386,7 +11407,7 @@ dired-dups = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dired-dups"; - version = "20130527.1625"; + version = "20130527.1725"; src = fetchFromGitHub { owner = "vapniks"; repo = "dired-dups"; @@ -11394,7 +11415,7 @@ sha256 = "1lcmpzwj43gix2q56bh2gw3gfqh8vl5j3mqr8s7v3k0aw816j0ni"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dired-dups"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dired-dups"; sha256 = "05s02gw8b339yvsr7vvka1r2140y7mbjzs8px4kn4acgb5y7rk71"; name = "dired-dups"; }; @@ -11407,7 +11428,7 @@ dired-efap = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dired-efap"; - version = "20140122.1056"; + version = "20140122.1156"; src = fetchFromGitHub { owner = "juan-leon"; repo = "dired-efap"; @@ -11415,7 +11436,7 @@ sha256 = "0jj9da880b4zwxba140fldai1x9p2sxc6hdf3wz6lnbvz1pyn1mv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dired-efap"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dired-efap"; sha256 = "01j5v6584qi8ia7zmk03kx3i3kmm6hn6ycfgqlh5va6lp2h9sr00"; name = "dired-efap"; }; @@ -11428,7 +11449,7 @@ dired-fdclone = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dired-fdclone"; - version = "20150417.332"; + version = "20150417.432"; src = fetchFromGitHub { owner = "knu"; repo = "dired-fdclone.el"; @@ -11436,7 +11457,7 @@ sha256 = "1lnqjkbzryv655n16xj1c5bxck2jb5ccy8yckz1wp5yikkr06ba8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dired-fdclone"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dired-fdclone"; sha256 = "11aikq2q3m9h4zpgl24f8npvpwd98jgh8ygjwy2x5q8as8i89vf9"; name = "dired-fdclone"; }; @@ -11449,7 +11470,7 @@ dired-filetype-face = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dired-filetype-face"; - version = "20160217.247"; + version = "20160217.347"; src = fetchFromGitHub { owner = "jixiuf"; repo = "dired-filetype-face"; @@ -11457,7 +11478,7 @@ sha256 = "06hxcxgivxds42qilraqa6q1mlrhkn21w2adb1dg70p8qyrjqfk6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dired-filetype-face"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dired-filetype-face"; sha256 = "1g9wzkkqmlkxlxwx43446q9mlam035zwq0wzpf7m6394rw2xlwx6"; name = "dired-filetype-face"; }; @@ -11470,15 +11491,15 @@ dired-filter = callPackage ({ cl-lib ? null, dash, dired-hacks-utils, f, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dired-filter"; - version = "20160201.1426"; + version = "20160201.1526"; src = fetchFromGitHub { owner = "Fuco1"; repo = "dired-hacks"; - rev = "49bb19a92a4256057f151da9ad6d0a91d46dacc0"; - sha256 = "0hdpn2q55qqvqffb70c8z72ah516l1d3gbzibrr5d0i31xggx4g3"; + rev = "2bccdaf155f29d6b251a916c9a1faaacdae59798"; + sha256 = "0ynr3bl0yaa4z7agqwpm4gn4vr8ka6728f2bhmxynxqhw4vnf38v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dired-filter"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dired-filter"; sha256 = "1mw94210i57wrqfyif6rh689xbwbpv1qp6bgc0j7z6g4xypvd52p"; name = "dired-filter"; }; @@ -11491,15 +11512,15 @@ dired-hacks-utils = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dired-hacks-utils"; - version = "20150819.1148"; + version = "20150819.1248"; src = fetchFromGitHub { owner = "Fuco1"; repo = "dired-hacks"; - rev = "49bb19a92a4256057f151da9ad6d0a91d46dacc0"; - sha256 = "0hdpn2q55qqvqffb70c8z72ah516l1d3gbzibrr5d0i31xggx4g3"; + rev = "2bccdaf155f29d6b251a916c9a1faaacdae59798"; + sha256 = "0ynr3bl0yaa4z7agqwpm4gn4vr8ka6728f2bhmxynxqhw4vnf38v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dired-hacks-utils"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dired-hacks-utils"; sha256 = "1vgl0wqf7gc2nbiqjn0rkrdlnxfm3wrgspx5b3cixv2n8rqx8kyi"; name = "dired-hacks-utils"; }; @@ -11512,7 +11533,7 @@ dired-imenu = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dired-imenu"; - version = "20140109.1010"; + version = "20140109.1110"; src = fetchFromGitHub { owner = "DamienCassou"; repo = "dired-imenu"; @@ -11520,7 +11541,7 @@ sha256 = "088h9yn6wndq4pq6f7q4iz17f9f4ci29z9nh595idljp3vwr7qid"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dired-imenu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dired-imenu"; sha256 = "09yix4fkr03jq6j2rmvyg6gkmcnraw49a8m9649r3m525qdnhxs1"; name = "dired-imenu"; }; @@ -11533,7 +11554,7 @@ dired-k = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dired-k"; - version = "20160330.2113"; + version = "20160330.2213"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-dired-k"; @@ -11541,7 +11562,7 @@ sha256 = "1bg7msz672rp2l490l3wm99i18b30r6033yfkrq6ia742nagn040"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dired-k"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dired-k"; sha256 = "0lghdmy9qcjykscfxvfrz8cpp87qc0vfd03vw8nfpvwcs2sd28i8"; name = "dired-k"; }; @@ -11554,15 +11575,15 @@ dired-narrow = callPackage ({ dash, dired-hacks-utils, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dired-narrow"; - version = "20160130.1045"; + version = "20160130.1145"; src = fetchFromGitHub { owner = "Fuco1"; repo = "dired-hacks"; - rev = "49bb19a92a4256057f151da9ad6d0a91d46dacc0"; - sha256 = "0hdpn2q55qqvqffb70c8z72ah516l1d3gbzibrr5d0i31xggx4g3"; + rev = "2bccdaf155f29d6b251a916c9a1faaacdae59798"; + sha256 = "0ynr3bl0yaa4z7agqwpm4gn4vr8ka6728f2bhmxynxqhw4vnf38v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dired-narrow"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dired-narrow"; sha256 = "1rgqiscbizalh78jwc53zbj599dd13a6vzdgf75vzllc1w7jsg6d"; name = "dired-narrow"; }; @@ -11575,15 +11596,15 @@ dired-open = callPackage ({ dash, dired-hacks-utils, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dired-open"; - version = "20160205.1413"; + version = "20160205.1513"; src = fetchFromGitHub { owner = "Fuco1"; repo = "dired-hacks"; - rev = "49bb19a92a4256057f151da9ad6d0a91d46dacc0"; - sha256 = "0hdpn2q55qqvqffb70c8z72ah516l1d3gbzibrr5d0i31xggx4g3"; + rev = "2bccdaf155f29d6b251a916c9a1faaacdae59798"; + sha256 = "0ynr3bl0yaa4z7agqwpm4gn4vr8ka6728f2bhmxynxqhw4vnf38v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dired-open"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dired-open"; sha256 = "0a4ksz2jkva4gvhprywjc1fzrbf95xdk8gn25nv1h1c1ckhr91qx"; name = "dired-open"; }; @@ -11595,13 +11616,13 @@ }) {}; dired-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "dired-plus"; - version = "20160124.2107"; + version = "20160429.2353"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/dired+.el"; - sha256 = "0fhag6jhb97jg50rb32s93mml0adncsd58z9grs7l95zva439pc2"; + sha256 = "1gz73c2c0yaw31kp6ya4gh7g0516fnd1a57rbysajaj80dmzi7fg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dired+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dired+"; sha256 = "1dmp6wcynran03nsa0fd26b9q0zj9wp8ngaafx1i1ybwn2gx32g5"; name = "dired-plus"; }; @@ -11611,18 +11632,39 @@ license = lib.licenses.free; }; }) {}; + dired-quick-sort = callPackage ({ fetchFromGitLab, fetchurl, hydra, lib, melpaBuild }: + melpaBuild { + pname = "dired-quick-sort"; + version = "20160507.146"; + src = fetchFromGitLab { + owner = "xuhdev"; + repo = "dired-quick-sort"; + rev = "5c01f45f8f1142a28ebc7a53dd3295014e59c9a2"; + sha256 = "0dzkq149c5ljjddldjvn2nqa96982vpv93rdjn4j9bg3b9d6mbxm"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dired-quick-sort"; + sha256 = "01vrk3wqq2zmcblyp9abi2lvrzr2a5ca8r8gjjnr5223037ppl3l"; + name = "dired-quick-sort"; + }; + packageRequires = [ hydra ]; + meta = { + homepage = "https://melpa.org/#/dired-quick-sort"; + license = lib.licenses.free; + }; + }) {}; dired-rainbow = callPackage ({ dash, dired-hacks-utils, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dired-rainbow"; - version = "20141214.743"; + version = "20141214.843"; src = fetchFromGitHub { owner = "Fuco1"; repo = "dired-hacks"; - rev = "49bb19a92a4256057f151da9ad6d0a91d46dacc0"; - sha256 = "0hdpn2q55qqvqffb70c8z72ah516l1d3gbzibrr5d0i31xggx4g3"; + rev = "2bccdaf155f29d6b251a916c9a1faaacdae59798"; + sha256 = "0ynr3bl0yaa4z7agqwpm4gn4vr8ka6728f2bhmxynxqhw4vnf38v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dired-rainbow"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dired-rainbow"; sha256 = "1b9yh8p2x1dg7dyqhjhnqqiiymyl6bwsam65j0lpvbdx8r4iw882"; name = "dired-rainbow"; }; @@ -11635,15 +11677,15 @@ dired-ranger = callPackage ({ dash, dired-hacks-utils, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dired-ranger"; - version = "20150819.1148"; + version = "20150819.1248"; src = fetchFromGitHub { owner = "Fuco1"; repo = "dired-hacks"; - rev = "49bb19a92a4256057f151da9ad6d0a91d46dacc0"; - sha256 = "0hdpn2q55qqvqffb70c8z72ah516l1d3gbzibrr5d0i31xggx4g3"; + rev = "2bccdaf155f29d6b251a916c9a1faaacdae59798"; + sha256 = "0ynr3bl0yaa4z7agqwpm4gn4vr8ka6728f2bhmxynxqhw4vnf38v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dired-ranger"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dired-ranger"; sha256 = "19lbbzqflqda5b0alqfzdhpbgqssghqb4n4viq8x4l1fac8mby6h"; name = "dired-ranger"; }; @@ -11656,7 +11698,7 @@ dired-single = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dired-single"; - version = "20151230.1958"; + version = "20151230.2058"; src = fetchFromGitHub { owner = "crocket"; repo = "dired-single"; @@ -11664,7 +11706,7 @@ sha256 = "01xvaqckyr31ywsn1fp9sz9wq4h4dd1hgghfqypc9s4akrxmgnf2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dired-single"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dired-single"; sha256 = "13h8dsn7bkz8ji2rrb7vyrqb2znxarpiynqi65mfli7dn5k086vf"; name = "dired-single"; }; @@ -11676,13 +11718,13 @@ }) {}; dired-sort = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "dired-sort"; - version = "20090208.2238"; + version = "20090208.2338"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/dired-sort.el"; sha256 = "1dpxkxxfs14sdm3hwxv0j26lq0qzx4gryw42vrcdi680aj24962z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dired-sort"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dired-sort"; sha256 = "1dzy2601yikmmbfqivf9s5xi4vd1f5g3c53f8rc74kfnxr1qn59x"; name = "dired-sort"; }; @@ -11694,13 +11736,13 @@ }) {}; dired-sort-menu = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "dired-sort-menu"; - version = "20130824.707"; + version = "20130824.807"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/dired-sort-menu.el"; sha256 = "1i42r7j1c8677qf79ig33bia24d2yvcj26y92migfvrlbi03w4qi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dired-sort-menu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dired-sort-menu"; sha256 = "0n7zh8s3vdw3pcax8wkas9rykf917wn2dzikdlyrl5bbil9ijblb"; name = "dired-sort-menu"; }; @@ -11713,13 +11755,13 @@ dired-sort-menu-plus = callPackage ({ dired-sort-menu, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dired-sort-menu-plus"; - version = "20151231.1451"; + version = "20151231.1551"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/dired-sort-menu+.el"; sha256 = "1hjci4zfzig04ji1jravxg9n67rdr4wyhmxmahbrzq9kjnql510i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dired-sort-menu+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dired-sort-menu+"; sha256 = "19ah8qgbfdvyhfszdr6hlw8l01lbdb84vf5snldw8qh3x6lw8cfq"; name = "dired-sort-menu-plus"; }; @@ -11732,15 +11774,15 @@ dired-subtree = callPackage ({ dash, dired-hacks-utils, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dired-subtree"; - version = "20150908.1233"; + version = "20150908.1333"; src = fetchFromGitHub { owner = "Fuco1"; repo = "dired-hacks"; - rev = "49bb19a92a4256057f151da9ad6d0a91d46dacc0"; - sha256 = "0hdpn2q55qqvqffb70c8z72ah516l1d3gbzibrr5d0i31xggx4g3"; + rev = "2bccdaf155f29d6b251a916c9a1faaacdae59798"; + sha256 = "0ynr3bl0yaa4z7agqwpm4gn4vr8ka6728f2bhmxynxqhw4vnf38v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dired-subtree"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dired-subtree"; sha256 = "1vqcnkh3g6dwi2hwfkb534q0j19pkqzqk3yb7ah8ck4z4ln4ppfk"; name = "dired-subtree"; }; @@ -11753,7 +11795,7 @@ dired-toggle = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dired-toggle"; - version = "20140907.1549"; + version = "20140907.1649"; src = fetchFromGitHub { owner = "fasheng"; repo = "dired-toggle"; @@ -11761,7 +11803,7 @@ sha256 = "1yx20h16hc1b04knsqhrxni0j8qgwnq7i5b0dlggq3dakcvqfxma"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dired-toggle"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dired-toggle"; sha256 = "18v571kp440n5g1d7pj86rr8dgbbm324f9vblkdbdvn13c5dczf5"; name = "dired-toggle"; }; @@ -11774,7 +11816,7 @@ dired-toggle-sudo = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dired-toggle-sudo"; - version = "20151109.406"; + version = "20151109.506"; src = fetchFromGitHub { owner = "renard"; repo = "dired-toggle-sudo"; @@ -11782,7 +11824,7 @@ sha256 = "0ajj8d6k5in2hclcrqckinfh80ylddplva0ryfbkzsjkfq167cv2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dired-toggle-sudo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dired-toggle-sudo"; sha256 = "0fy05af9aq9791ij4j9pscdk5j44pbg0kmhpqli41qiazjw7v2va"; name = "dired-toggle-sudo"; }; @@ -11795,7 +11837,7 @@ diredful = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "diredful"; - version = "20151118.1500"; + version = "20151118.1600"; src = fetchFromGitHub { owner = "thamer"; repo = "diredful"; @@ -11803,7 +11845,7 @@ sha256 = "1rx7vq6yl83fbmb76sczbb1bv972s4cyg160sm2yap1i6nzhd10p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/diredful"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/diredful"; sha256 = "0y8x6q1yfsk0srxsh4g5nbsms1g9pk9d103jx7cfdac79mcigw7x"; name = "diredful"; }; @@ -11816,7 +11858,7 @@ direx = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "direx"; - version = "20151023.1806"; + version = "20151023.1906"; src = fetchFromGitHub { owner = "m2ym"; repo = "direx-el"; @@ -11824,7 +11866,7 @@ sha256 = "0mis3m6lg3vlvp8qm8iajprgx3pm3gcbhdszsm9mvrcgkahdjqnr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/direx"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/direx"; sha256 = "1x3rnrhhyrrvgry9n7kc0734la1zp4gc4bpy50f2qpfd452jwqdm"; name = "direx"; }; @@ -11837,7 +11879,7 @@ direx-grep = callPackage ({ direx, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "direx-grep"; - version = "20140515.1006"; + version = "20140515.1106"; src = fetchFromGitHub { owner = "aki2o"; repo = "direx-grep"; @@ -11845,7 +11887,7 @@ sha256 = "0swdh0qynpijsv6a2d308i42hfa0jwqsnmf4sm8vrhaf3vv25f5h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/direx-grep"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/direx-grep"; sha256 = "0y2wrzq06prm55akwgaqjg56znknyvbayav13asirqzg258skvm2"; name = "direx-grep"; }; @@ -11858,13 +11900,13 @@ dirtree = callPackage ({ fetchurl, lib, melpaBuild, tree-mode, windata }: melpaBuild { pname = "dirtree"; - version = "20140129.232"; + version = "20140129.332"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/dirtree.el"; sha256 = "1q03q4j0wkbg9p2nzf1kb7l517b21mskp2v52i95jbxh09igbjjx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dirtree"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dirtree"; sha256 = "0wfz9ks5iha2n0rya9yjmrb6f9lhp620iaqi92lw9smm7w83zj29"; name = "dirtree"; }; @@ -11877,7 +11919,7 @@ dirtree-prosjekt = callPackage ({ dirtree, fetchFromGitHub, fetchurl, lib, melpaBuild, prosjekt }: melpaBuild { pname = "dirtree-prosjekt"; - version = "20140129.304"; + version = "20140129.404"; src = fetchFromGitHub { owner = "abingham"; repo = "prosjekt"; @@ -11885,7 +11927,7 @@ sha256 = "1m8zvrv5aws7b0dffk8y6b5mncdk2c4k90mx69jys10fs0gc5hb3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dirtree-prosjekt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dirtree-prosjekt"; sha256 = "0pyb6c0gvc16z5rc5h0kpl8021hz2hzv86cmjsd20gbhz7imrqwk"; name = "dirtree-prosjekt"; }; @@ -11898,7 +11940,7 @@ disaster = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "disaster"; - version = "20130509.1255"; + version = "20130509.1355"; src = fetchFromGitHub { owner = "jart"; repo = "disaster"; @@ -11906,7 +11948,7 @@ sha256 = "1srlz63pncxndh1kmb6dl5sxaanspxa444wg998dld3dkdflwavq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/disaster"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/disaster"; sha256 = "1ad8q81n0s13cwmm216wqx3s92195pda1amc4wxvpb3lq7dbd3yn"; name = "disaster"; }; @@ -11919,7 +11961,7 @@ discover = callPackage ({ fetchFromGitHub, fetchurl, lib, makey, melpaBuild }: melpaBuild { pname = "discover"; - version = "20140103.1539"; + version = "20140103.1639"; src = fetchFromGitHub { owner = "mickeynp"; repo = "discover.el"; @@ -11927,7 +11969,7 @@ sha256 = "0f7h2rhh37lrs6xclj182li6s1fawv5m8w3hgy6qgm06dam45lka"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/discover"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/discover"; sha256 = "1hf57p90jn1zzhjl63zv9ascbgkcbr0p0zmd3fvzpjsw84235dga"; name = "discover"; }; @@ -11940,7 +11982,7 @@ discover-clj-refactor = callPackage ({ clj-refactor, discover, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "discover-clj-refactor"; - version = "20150328.959"; + version = "20150328.1059"; src = fetchFromGitHub { owner = "maio"; repo = "discover-clj-refactor.el"; @@ -11948,7 +11990,7 @@ sha256 = "0l2g58f55p8zmzv2q2hf163ggm9p0wk8hg93wlkyldrgyb94dgf4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/discover-clj-refactor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/discover-clj-refactor"; sha256 = "08bz60fxcgzab77690mmv0f7wdxcpygmasazcss427k37z9ysm7r"; name = "discover-clj-refactor"; }; @@ -11961,7 +12003,7 @@ discover-js2-refactor = callPackage ({ discover, fetchFromGitHub, fetchurl, js2-refactor, lib, melpaBuild }: melpaBuild { pname = "discover-js2-refactor"; - version = "20140129.952"; + version = "20140129.1052"; src = fetchFromGitHub { owner = "NicolasPetton"; repo = "discover-js2-refactor"; @@ -11969,7 +12011,7 @@ sha256 = "1vnbn4asz3lifscvy4shzisl6r0gkgq0qsa3kpgif3853wcd2rvn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/discover-js2-refactor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/discover-js2-refactor"; sha256 = "139zq66cpcn4dnidf22h7x88p812ywrrz4c3c62w3915b75f71ki"; name = "discover-js2-refactor"; }; @@ -11982,7 +12024,7 @@ discover-my-major = callPackage ({ fetchFromGitHub, fetchurl, lib, makey, melpaBuild }: melpaBuild { pname = "discover-my-major"; - version = "20160108.1241"; + version = "20160108.1341"; src = fetchFromGitHub { owner = "steckerhalter"; repo = "discover-my-major"; @@ -11990,7 +12032,7 @@ sha256 = "0b73nc4jkf9bggnlp0l34jfcgx91vxbpavz6bpnf5rjvm0v1bil9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/discover-my-major"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/discover-my-major"; sha256 = "0ch2y4grdjp7pvw2kxqnqdl7jd3q609n3pm3r0gn6k0xmcw85fgg"; name = "discover-my-major"; }; @@ -12002,13 +12044,13 @@ }) {}; disk = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "disk"; - version = "20081128.906"; + version = "20081128.1006"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/disk.el"; sha256 = "1c0pgqvl1z2f5hprszln53pn2v2pqy110r3wx3g84v71w6378bbv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/disk"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/disk"; sha256 = "0bij9gr4zv6jmc6dwsy3lb06vsxvmyzl8xrm8wzasxisk1qd2l6n"; name = "disk"; }; @@ -12021,7 +12063,7 @@ dispass = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dispass"; - version = "20140202.931"; + version = "20140202.1031"; src = fetchFromGitHub { owner = "ryuslash"; repo = "dispass.el"; @@ -12029,7 +12071,7 @@ sha256 = "075gj81rnhrvv061wnldixpfmlsyfbnvacnk107z6f9v3m2m3vl1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dispass"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dispass"; sha256 = "08c1s4zgl4rha10mva48cfkxzrqnpdhy03pxq51ihw94v6vxzg3z"; name = "dispass"; }; @@ -12042,7 +12084,7 @@ display-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "display-theme"; - version = "20140115.956"; + version = "20140115.1056"; src = fetchFromGitHub { owner = "kawabata"; repo = "emacs-display-theme"; @@ -12050,7 +12092,7 @@ sha256 = "0r560bpgw5p2pfcgkgcrlpp1bprv1f23dl4y5fjk06dg93fgaysa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/display-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/display-theme"; sha256 = "07nqscmfa6iykll1m6gyiqca1g5ncx3rx468iyf2ahygpvqvnbxa"; name = "display-theme"; }; @@ -12063,7 +12105,7 @@ distinguished-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "distinguished-theme"; - version = "20151216.1415"; + version = "20151216.1515"; src = fetchFromGitHub { owner = "Lokaltog"; repo = "distinguished-theme"; @@ -12071,7 +12113,7 @@ sha256 = "03d8zb2is7n2y2z0k6j37cijjc3ndgasxsm9gqyq7drlq9bqwzsm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/distinguished-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/distinguished-theme"; sha256 = "0h03aqgijrmisbgqga42zlb5yz4x3jn9jgr29rq8canyhayr3rk4"; name = "distinguished-theme"; }; @@ -12084,15 +12126,15 @@ dix = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dix"; - version = "20160426.900"; + version = "20160429.829"; src = fetchFromGitHub { owner = "unhammer"; repo = "dix"; - rev = "10b45f078437761ee1739e6e817c3583b7199cce"; - sha256 = "1czwsbm547bdzsr7h3gyj7w3s1j2n3pz2xblslam8rkn7v72z7qr"; + rev = "34d3e08ae392695a7850ed5d492de88f7bc58726"; + sha256 = "0w3avhk4i7yp8bk66f75jzl1imgalwaxmynqrgyv617ajmzakkwp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dix"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dix"; sha256 = "0c5fmknpy6kwlz7nx0csbbia1maz0szj7yha1p7wq28s3a5426xq"; name = "dix"; }; @@ -12102,10 +12144,31 @@ license = lib.licenses.free; }; }) {}; + dix-evil = callPackage ({ dix, evil, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "dix-evil"; + version = "20160506.323"; + src = fetchFromGitHub { + owner = "unhammer"; + repo = "dix"; + rev = "34d3e08ae392695a7850ed5d492de88f7bc58726"; + sha256 = "0w3avhk4i7yp8bk66f75jzl1imgalwaxmynqrgyv617ajmzakkwp"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dix-evil"; + sha256 = "1jscaksnl5qmpqgkjkv6sx56llz0w4p5h7j73c4a1hld94gwklh3"; + name = "dix-evil"; + }; + packageRequires = [ dix evil ]; + meta = { + homepage = "https://melpa.org/#/dix-evil"; + license = lib.licenses.free; + }; + }) {}; dizzee = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dizzee"; - version = "20111009.816"; + version = "20111009.916"; src = fetchFromGitHub { owner = "davidmiller"; repo = "dizzee"; @@ -12113,7 +12176,7 @@ sha256 = "120zgp38nz4ssid6bv0zy5rnf2claa5s880incgljqyl0vmj9nq5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dizzee"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dizzee"; sha256 = "1axydags80jkyhpzp3m4gyplwr9k3a13w6vmrrzcv161nln7jhhs"; name = "dizzee"; }; @@ -12126,7 +12189,7 @@ django-manage = callPackage ({ fetchFromGitHub, fetchurl, hydra, lib, melpaBuild }: melpaBuild { pname = "django-manage"; - version = "20151025.130"; + version = "20151025.230"; src = fetchFromGitHub { owner = "gopar"; repo = "django-manage"; @@ -12134,7 +12197,7 @@ sha256 = "15i25zh54b2fqji0qmkg502051ymccih6pgqnzq02c43dpnsqhqv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/django-manage"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/django-manage"; sha256 = "0j95g7fps28xhlrikkg61xgpbpf52xb56swmns2qdib6x1xzd6rh"; name = "django-manage"; }; @@ -12147,7 +12210,7 @@ django-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "django-mode"; - version = "20150207.717"; + version = "20150207.817"; src = fetchFromGitHub { owner = "myfreeweb"; repo = "django-mode"; @@ -12155,7 +12218,7 @@ sha256 = "0dw0m77w7kdwxxh53b4k15jjkpfl5vha17hw9dn29ap77pf820va"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/django-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/django-mode"; sha256 = "1rdkzqvicjpfh9k66m31ky6jshx9fqw7pza7add36bk6xg8lbara"; name = "django-mode"; }; @@ -12168,7 +12231,7 @@ django-snippets = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }: melpaBuild { pname = "django-snippets"; - version = "20131229.1011"; + version = "20131229.1111"; src = fetchFromGitHub { owner = "myfreeweb"; repo = "django-mode"; @@ -12176,7 +12239,7 @@ sha256 = "0dw0m77w7kdwxxh53b4k15jjkpfl5vha17hw9dn29ap77pf820va"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/django-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/django-snippets"; sha256 = "1qs9fw104kidbr5zbxc1q71yy033nq3wxh98vvzk4z4fppnd29sw"; name = "django-snippets"; }; @@ -12189,7 +12252,7 @@ django-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "django-theme"; - version = "20131022.402"; + version = "20131022.502"; src = fetchFromGitHub { owner = "andrzejsliwa"; repo = "django-theme.el"; @@ -12197,7 +12260,7 @@ sha256 = "1azf4p6salga7269l0kf13bqlxf9idp0ys8mm20qpyjpj79p5g9w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/django-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/django-theme"; sha256 = "1rydl857zfpbvd7aziz6h7n3rrh584z2cbfxlss3wgfclzmbyhgf"; name = "django-theme"; }; @@ -12210,7 +12273,7 @@ dkdo = callPackage ({ dkmisc, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dkdo"; - version = "20131110.519"; + version = "20131110.619"; src = fetchFromGitHub { owner = "davidkeegan"; repo = "dkdo"; @@ -12218,7 +12281,7 @@ sha256 = "1nbvdnw9g3zbbb0n2sn2kxfzs5wichhl9qid3qjp8dsiq1wpv459"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dkdo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dkdo"; sha256 = "0p7ybgldjs046jrkkbpli1iicfmblpxfz9lql8m8sz7lpjn7h300"; name = "dkdo"; }; @@ -12231,7 +12294,7 @@ dklrt = callPackage ({ dkmisc, emacs, fetchFromGitHub, fetchurl, ledger-mode, lib, melpaBuild }: melpaBuild { pname = "dklrt"; - version = "20131110.741"; + version = "20131110.841"; src = fetchFromGitHub { owner = "davidkeegan"; repo = "dklrt"; @@ -12239,7 +12302,7 @@ sha256 = "063nnln5m42qf190vr2z0ibacyn7n0xkxm3v5vaa4gxdvdwzhshs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dklrt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dklrt"; sha256 = "11ss5x9sxgxp1wx2r1m0vsp5z5qm8m4ww20ybr6bqjw0a1gax561"; name = "dklrt"; }; @@ -12252,7 +12315,7 @@ dkmisc = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dkmisc"; - version = "20131110.515"; + version = "20131110.615"; src = fetchFromGitHub { owner = "davidkeegan"; repo = "dkmisc"; @@ -12260,7 +12323,7 @@ sha256 = "1nz71g8pb19aqjcb4s94hhn6j30cc04q05kmwvcbxpjb11qqrv49"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dkmisc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dkmisc"; sha256 = "0nnbl272hldcmhyj47r463yvj7b06rjdkpkl5xk0gw9ikyja7w0z"; name = "dkmisc"; }; @@ -12273,7 +12336,7 @@ dmenu = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dmenu"; - version = "20160228.827"; + version = "20160228.927"; src = fetchFromGitHub { owner = "lujun9972"; repo = "el-dmenu"; @@ -12281,7 +12344,7 @@ sha256 = "1xx4ccr3mfxay2j3wgd93qw5dpjasaq9mkmmjww3ibpf86ahf7l3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dmenu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dmenu"; sha256 = "1w1pgaj2yasfhsd1ibvrwy11ykq8v17h913g298h3ycsvqv8gic0"; name = "dmenu"; }; @@ -12294,7 +12357,7 @@ dna-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dna-mode"; - version = "20130821.1305"; + version = "20130821.1405"; src = fetchFromGitHub { owner = "jhgorrell"; repo = "dna-mode-el"; @@ -12302,7 +12365,7 @@ sha256 = "0z28j7x7wgkc1cg1q1kz1lhdx1v1n6s88ixgkm8hn458h9bfnr3n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dna-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dna-mode"; sha256 = "0ak3g152q3xxkiz1a4pl5y2vgbigbbmbc95fggirbcrh52zkzgk9"; name = "dna-mode"; }; @@ -12315,7 +12378,7 @@ docbook-snippets = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }: melpaBuild { pname = "docbook-snippets"; - version = "20150714.1125"; + version = "20150714.1225"; src = fetchFromGitHub { owner = "jhradilek"; repo = "emacs-docbook-snippets"; @@ -12323,7 +12386,7 @@ sha256 = "1nbm3wzd12rsrhnwlcc6b72b1ala328mfpcp5bwlfcdshw6mfcrq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/docbook-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/docbook-snippets"; sha256 = "1ipqfylgiw9iyjc1nckbay890clfkhda81nr00cq06sjmm71iniq"; name = "docbook-snippets"; }; @@ -12336,7 +12399,7 @@ docean = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, request }: melpaBuild { pname = "docean"; - version = "20150927.1318"; + version = "20150927.1418"; src = fetchFromGitHub { owner = "emacs-pe"; repo = "docean.el"; @@ -12344,7 +12407,7 @@ sha256 = "055kr0qknjgnjs7dn6gdmahrdbs8piwldbz7vg1hgq3b046x8lky"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/docean"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/docean"; sha256 = "1mqmn2i9axnv5vnkg9gwfdjpzr6gxx4ia9mcdpm200ix297dg7x9"; name = "docean"; }; @@ -12357,15 +12420,15 @@ docker = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, magit-popup, melpaBuild, s, tablist }: melpaBuild { pname = "docker"; - version = "20160424.357"; + version = "20160503.519"; src = fetchFromGitHub { owner = "Silex"; repo = "docker.el"; - rev = "7ac17efce5e7a80cef28f8d32d81bb4200e06401"; - sha256 = "0a5n8xb5qx82raf3nsrbs0rlg64wf0wdxb9mx384jwkcrwd32x2f"; + rev = "36b4c4103f5592cdf7268bdb9ee26b88da596a6a"; + sha256 = "0i84chigvcm2lrh71nypm9dh7pqn6nsxn4kh7w91fq593f55f1wc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/docker"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/docker"; sha256 = "10x05vli7lg1w3fdbkrl34y4mwbhp2c7nqdwnbdy53i81jisw2lk"; name = "docker"; }; @@ -12378,7 +12441,7 @@ docker-api = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "docker-api"; - version = "20160421.153"; + version = "20160421.253"; src = fetchFromGitHub { owner = "Silex"; repo = "docker-api.el"; @@ -12386,7 +12449,7 @@ sha256 = "0lamp8xkn84q14xswvzwcamp2rk2rvgm15zf8iki5yp6zz1dppb2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/docker-api"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/docker-api"; sha256 = "1giqiapm4hf4dhfm3x69qqpir3jg7qz3parhbx88xxqrd1z18my0"; name = "docker-api"; }; @@ -12399,7 +12462,7 @@ docker-tramp = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "docker-tramp"; - version = "20160113.2152"; + version = "20160113.2252"; src = fetchFromGitHub { owner = "emacs-pe"; repo = "docker-tramp.el"; @@ -12407,7 +12470,7 @@ sha256 = "0bvnvs17cbisymiqp96q4y2w2jqy5hd0zyk6rv7mihr9p97ak9kv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/docker-tramp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/docker-tramp"; sha256 = "19kky80qm68n2izpjfyiy4gjywav7ljcmp101kmziklpqdldgh1w"; name = "docker-tramp"; }; @@ -12420,7 +12483,7 @@ dockerfile-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dockerfile-mode"; - version = "20160128.1151"; + version = "20160128.1251"; src = fetchFromGitHub { owner = "spotify"; repo = "dockerfile-mode"; @@ -12428,7 +12491,7 @@ sha256 = "0vx7lv54v4bznn4mik4i6idb9dl7fpp3gw7nyhymbkr6hx884haw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dockerfile-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dockerfile-mode"; sha256 = "1dxvzn35a9qd3x8pjvrvb2g71yf84404g6vz81y0p353rf2zknpa"; name = "dockerfile-mode"; }; @@ -12441,7 +12504,7 @@ dokuwiki-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dokuwiki-mode"; - version = "20160129.207"; + version = "20160129.307"; src = fetchFromGitHub { owner = "kai2nenobu"; repo = "emacs-dokuwiki-mode"; @@ -12449,7 +12512,7 @@ sha256 = "1qfmq8l4jqyrhfplsr1zd8bg9qqqwbh3mhipqzja0px0knjpqj85"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dokuwiki-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dokuwiki-mode"; sha256 = "1jc3sn61mipkhgr91wp74s673jk2w5991p54jlw05qqpf5gmxd7v"; name = "dokuwiki-mode"; }; @@ -12462,7 +12525,7 @@ dollaro = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "dollaro"; - version = "20151123.702"; + version = "20151123.802"; src = fetchFromGitHub { owner = "laynor"; repo = "dollaro"; @@ -12470,7 +12533,7 @@ sha256 = "1xyqsnymgdd8ic3az2lgwv7s7vld6d4pcycb234bxm4in9fixgdj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dollaro"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dollaro"; sha256 = "06kaqzb0nh8sndhk7p5n4acn5nc27dyxw3ldgcbp81wj6ipii26h"; name = "dollaro"; }; @@ -12483,7 +12546,7 @@ doom = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "doom"; - version = "20160121.922"; + version = "20160121.1022"; src = fetchFromGitHub { owner = "emacsorphanage"; repo = "doom"; @@ -12491,7 +12554,7 @@ sha256 = "04h1hlsc83w4dppw9m44jq7mkcpy0bblvnzrhvsh06pibjywdd73"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/doom"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/doom"; sha256 = "098q77lix7kwpmarv26yndyk1yy1h4k3l9kaf3g7sg6ji6k7d3wl"; name = "doom"; }; @@ -12503,13 +12566,13 @@ }) {}; doremi = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "doremi"; - version = "20151231.1455"; + version = "20151231.1555"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/doremi.el"; sha256 = "0201clwq9nbl8336lddcbwah8d6xipr7q8135yq79szfxq2bdg6v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/doremi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/doremi"; sha256 = "11i4cdxgrspx44p44zz5py89ypji5li6p5w77wy0b07i8a5gq2gb"; name = "doremi"; }; @@ -12522,13 +12585,13 @@ doremi-cmd = callPackage ({ doremi, fetchurl, lib, melpaBuild }: melpaBuild { pname = "doremi-cmd"; - version = "20151231.1452"; + version = "20151231.1552"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/doremi-cmd.el"; sha256 = "1m7jn80apya6s9d8phd859rq1m13xf2wz9664pqpr1p65yz2pyvl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/doremi-cmd"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/doremi-cmd"; sha256 = "1qzspirn1abqps0dn5z8w6ymffc6b02dyki5hr8v74wfs8fhzx05"; name = "doremi-cmd"; }; @@ -12541,13 +12604,13 @@ doremi-frm = callPackage ({ doremi, faces-plus, fetchurl, frame-fns, hexrgb, lib, melpaBuild }: melpaBuild { pname = "doremi-frm"; - version = "20151231.1453"; + version = "20151231.1553"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/doremi-frm.el"; sha256 = "0v7ycmddh1ds64m1y5yai5nh34bd32q3wcm5y2pdzhj6jk7nj5wz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/doremi-frm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/doremi-frm"; sha256 = "1rj3p665q32acsxxwygv1j5nbmjqrhi0b4glzrk88xki4lyz0ihz"; name = "doremi-frm"; }; @@ -12559,13 +12622,13 @@ }) {}; doremi-mac = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "doremi-mac"; - version = "20151231.1454"; + version = "20151231.1554"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/doremi-mac.el"; sha256 = "157kvlb4dqiyk1h7b4p0dhrr6crdakwnrxydyl6yh51w2hdnnigw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/doremi-mac"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/doremi-mac"; sha256 = "0n9fffgxnpqc7cch7aci5kxbwzk36iljdz2r8gcp5y5n1p7aamls"; name = "doremi-mac"; }; @@ -12577,13 +12640,13 @@ }) {}; dos = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "dos"; - version = "20140808.1635"; + version = "20140808.1735"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/dos.el"; sha256 = "0sfmcd1rq6wih9q7d9vkcfrw6gf7309mm7491jx091ij8m4p8ypp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dos"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dos"; sha256 = "0cpijbqpci96s0d6rwqz5bbi9b0zkan1bg8vdgib1f87r7g980nc"; name = "dos"; }; @@ -12595,13 +12658,13 @@ }) {}; dot-mode = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "dot-mode"; - version = "20151029.855"; + version = "20151029.955"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/dot-mode.el"; sha256 = "0xhbzq3yvfvvvl6mfihrzkd3pn5p5yxvbcyf2jhsppk7lscifsgk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dot-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dot-mode"; sha256 = "1fik32635caq3r5f9k62qbj2dkwczz2z1v28mc7bcj7jv2p93nvh"; name = "dot-mode"; }; @@ -12614,15 +12677,15 @@ download-region = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "download-region"; - version = "20150807.232"; + version = "20160430.1416"; src = fetchFromGitHub { owner = "zk-phi"; repo = "download-region"; - rev = "51fc808e10803f695ea3d24c22e1af27e080903d"; - sha256 = "0gc7z5ribp5yvadclq07l731m65pja00wgch4bgxsihiy7wvwknr"; + rev = "eb9e557529a73b4cfc8281c70dd0d95db333fffa"; + sha256 = "0v52djg39b6k2snizd9x0qc009ws5y0ywqsfwhqgcbs5ymzh7dsc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/download-region"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/download-region"; sha256 = "1mrl2x6j708nchyh9y5avbf2cq10kpnhfj553l6akarvl5n5pvkl"; name = "download-region"; }; @@ -12635,7 +12698,7 @@ downplay-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "downplay-mode"; - version = "20151125.1409"; + version = "20151125.1509"; src = fetchFromGitHub { owner = "tobias"; repo = "downplay-mode"; @@ -12643,7 +12706,7 @@ sha256 = "0s7swvfd7h8r0n3cjmkps6ary9vwg61jylfm4qrkp3idsz6is548"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/downplay-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/downplay-mode"; sha256 = "1v6nga101ljzza8qj3lkmkzzl0vvzj4lsh1m69698s8prnczxr9b"; name = "downplay-mode"; }; @@ -12656,7 +12719,7 @@ dpaste = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dpaste"; - version = "20160303.1512"; + version = "20160303.1612"; src = fetchFromGitHub { owner = "gregnewman"; repo = "dpaste.el"; @@ -12664,7 +12727,7 @@ sha256 = "03n3k6a40lw9m1ycf62g6vll4gr2kr2509vjp1dkfq722xwrw7zk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dpaste"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dpaste"; sha256 = "17mrdkldv4gfwm6ggc047l4a69xg2fy9f9mjbphkjl0p5nr6b4kz"; name = "dpaste"; }; @@ -12677,7 +12740,7 @@ dpaste_de = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, web }: melpaBuild { pname = "dpaste_de"; - version = "20131015.725"; + version = "20131015.825"; src = fetchFromGitHub { owner = "theju"; repo = "dpaste_de.el"; @@ -12685,7 +12748,7 @@ sha256 = "1avpg0cgzk8d6g1q0ryx41lkcdgkm0mkzr5xr32xm28dzrfmgd4z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dpaste_de"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dpaste_de"; sha256 = "0dql9qsl5gj51i3l2grl7nhw0ign8h4xa4jnhwn196j71c0rdwwp"; name = "dpaste_de"; }; @@ -12698,15 +12761,15 @@ dracula-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dracula-theme"; - version = "20160228.2113"; + version = "20160228.2213"; src = fetchFromGitHub { owner = "zenorocha"; repo = "dracula-theme"; - rev = "d3abff6e5307227858d5323cf8aaf108c542ad2b"; - sha256 = "0678xbwsa8yg175yn1xllp0aaihx0ikfyc2jh6q338xfrfnd89bm"; + rev = "577ee082cc7596704d8e781884948df96501f807"; + sha256 = "1y1q2kykpfajyy4pl0fp52r4gijdyshiw1xk7gcqdn9z8dmr4x8f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dracula-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dracula-theme"; sha256 = "0ayv00wvajia8kbfrqkrkpb3qp3k70qcnqkav7am16p5kbvzp10r"; name = "dracula-theme"; }; @@ -12719,7 +12782,7 @@ draft-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "draft-mode"; - version = "20140609.956"; + version = "20140609.1056"; src = fetchFromGitHub { owner = "gaudecker"; repo = "draft-mode"; @@ -12727,7 +12790,7 @@ sha256 = "0z3w58zplm5ks195zfsaq8kwbc944p3kbzs702jgz02wcrm4c28y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/draft-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/draft-mode"; sha256 = "1wg9cx39f4dhrykb4zx4fh0x5cfrh5aicwwfh1h3yzpc4zlr7xfh"; name = "draft-mode"; }; @@ -12740,15 +12803,15 @@ drag-stuff = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "drag-stuff"; - version = "20150717.732"; + version = "20160427.231"; src = fetchFromGitHub { owner = "rejeep"; repo = "drag-stuff.el"; - rev = "83405a36ddb289eb62c765b6d2ec31026cc969df"; - sha256 = "162bwywgzyjzv48rzfpsd4nzn63yrrqlzs73n50kmpx2dkrn1sjc"; + rev = "07332b9f4725ad11d123e0fc5593c0c1c37db381"; + sha256 = "131ww26pb97q2gyjhfrsf7nw2pi5b1kba0cgl97qc017sfhg92v6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/drag-stuff"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/drag-stuff"; sha256 = "1q67q20gfhixzkmddhzp6fd8z2qfpsmyyvymmaffjcscnjaz21w4"; name = "drag-stuff"; }; @@ -12761,7 +12824,7 @@ drawille = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "drawille"; - version = "20160418.1338"; + version = "20160418.1438"; src = fetchFromGitHub { owner = "sshbio"; repo = "drawille"; @@ -12769,7 +12832,7 @@ sha256 = "1z3akh0ywzihr0ghk6f8x9z38mwqy3zg29p0q69h4i6yzhxpdmxa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/drawille"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/drawille"; sha256 = "01rl21hbj3hwy072yr27jl6iql331v131d3mr9zifg9v6f3jqbil"; name = "drawille"; }; @@ -12782,7 +12845,7 @@ drill-instructor-AZIK-force = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, popup }: melpaBuild { pname = "drill-instructor-AZIK-force"; - version = "20151122.2314"; + version = "20151123.14"; src = fetchFromGitHub { owner = "myuhe"; repo = "drill-instructor-AZIK-force.el"; @@ -12790,7 +12853,7 @@ sha256 = "0lzq0mkhhj3s5yrcbs576qxkd8h0m2ikc4iplk97ddpzh4nz4127"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/drill-instructor-AZIK-force"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/drill-instructor-AZIK-force"; sha256 = "1bb698r11m58csd2rm17fmiw691p25npphzqgjiiqbn4vx35ja7f"; name = "drill-instructor-AZIK-force"; }; @@ -12803,7 +12866,7 @@ dropbox = callPackage ({ fetchFromGitHub, fetchurl, json ? null, lib, melpaBuild, oauth }: melpaBuild { pname = "dropbox"; - version = "20130513.1737"; + version = "20130513.1837"; src = fetchFromGitHub { owner = "pavpanchekha"; repo = "dropbox.el"; @@ -12811,7 +12874,7 @@ sha256 = "1s4cz5s0mw733ak9ps62fs150y3psqmb6v5s6s88jjfsi0r03c0s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dropbox"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dropbox"; sha256 = "0ak6g2d2sq026ml6cmn6v1qz7sczkplgv2j9zq9zgzafihyyzs5f"; name = "dropbox"; }; @@ -12823,13 +12886,13 @@ }) {}; dropdown-list = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "dropdown-list"; - version = "20120329.1136"; + version = "20120329.1236"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/dropdown-list.el"; sha256 = "1szy46sk3nvlbb3yzk1s983281kkf507xr3fkclkki3d3x31n08a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dropdown-list"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dropdown-list"; sha256 = "14i9w897gnb3mvnkbzhzij04bgr551r8km310mbrmzzag54w077z"; name = "dropdown-list"; }; @@ -12842,7 +12905,7 @@ drupal-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, php-mode }: melpaBuild { pname = "drupal-mode"; - version = "20160420.1458"; + version = "20160420.1558"; src = fetchFromGitHub { owner = "arnested"; repo = "drupal-mode"; @@ -12850,7 +12913,7 @@ sha256 = "1hbm3zdmd28fjl8fky0kq4gs2bxsrn2zxk9rd1wa2wky43ycnd35"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/drupal-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/drupal-mode"; sha256 = "14jvk4phq3wcff3yvhygix0c9cpbphh0dvm961i93jpsx7g9awgn"; name = "drupal-mode"; }; @@ -12863,7 +12926,7 @@ drupal-spell = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "drupal-spell"; - version = "20130520.1155"; + version = "20130520.1255"; src = fetchFromGitHub { owner = "arnested"; repo = "drupal-spell"; @@ -12871,7 +12934,7 @@ sha256 = "156cscpavrp695lp8pgjg5jnq3b8n9c2h8qg8w89dd4vfkc3iikd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/drupal-spell"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/drupal-spell"; sha256 = "117rr2bfnc99g3qsr127grxwaqp54cxjaj3nl2nr6z78nja0fij3"; name = "drupal-spell"; }; @@ -12883,14 +12946,14 @@ }) {}; dsvn = callPackage ({ fetchsvn, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dsvn"; - version = "20130120.1457"; + version = "20130120.1557"; src = fetchsvn { url = "http://svn.apache.org/repos/asf/subversion/trunk/contrib/client-side/emacs/"; - rev = "1741054"; + rev = "1742739"; sha256 = "016dxpzm1zba8rag7czynlk58hys4xab4mz1nkry5bfihknpzcrq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dsvn"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dsvn"; sha256 = "12cviq6v08anif762a5qav3l8ircp81kmnl9q4yl6bkh9zxv7vy6"; name = "dsvn"; }; @@ -12903,7 +12966,7 @@ dtrace-script-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dtrace-script-mode"; - version = "20150214.23"; + version = "20150214.123"; src = fetchFromGitHub { owner = "dotemacs"; repo = "dtrace-script-mode"; @@ -12911,7 +12974,7 @@ sha256 = "1blfx3r2xd3idbfjrx44ma3x1d83xp67il2s2bmdwa8qz92z99lf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dtrace-script-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dtrace-script-mode"; sha256 = "0v29rzlyccrc37052w2qmvjaii84jihhp736l807b0hjjfryras4"; name = "dtrace-script-mode"; }; @@ -12924,15 +12987,15 @@ dtrt-indent = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dtrt-indent"; - version = "20160329.543"; + version = "20160504.845"; src = fetchFromGitHub { owner = "jscheid"; repo = "dtrt-indent"; - rev = "a47fcfc43da794f38e17a0a6010fe932039dc3b7"; - sha256 = "1nqh4l1qdycpsmccf8pmwdwylcxxnikhrgj550ab8jx3yi7i24af"; + rev = "1115688391bf8cc58a814ca99bfc769a3afd46cf"; + sha256 = "1zzy0xdybclpch818nv6b9fqawfv8hga4x9x4xwjxd7h8nxjhc85"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dtrt-indent"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dtrt-indent"; sha256 = "1npn2jngy1wq0jpwmg1hkn8lx6ncbqsi587jl38lyp2xwchshfk5"; name = "dtrt-indent"; }; @@ -12945,7 +13008,7 @@ dts-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dts-mode"; - version = "20150403.1804"; + version = "20150403.1904"; src = fetchFromGitHub { owner = "bgamari"; repo = "dts-mode"; @@ -12953,7 +13016,7 @@ sha256 = "0cafvhbpfqd8ajqg2757fs64kryrl2ckvbp5abldb4y8fa14pb9l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dts-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dts-mode"; sha256 = "1k8cbiayajbzwkm0s0kyin0qpq9yhymidz0srs4hbvsnb6hvp234"; name = "dts-mode"; }; @@ -12966,7 +13029,7 @@ ducpel = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ducpel"; - version = "20140419.16"; + version = "20140419.116"; src = fetchFromGitHub { owner = "alezost"; repo = "ducpel"; @@ -12974,7 +13037,7 @@ sha256 = "1ixb78dv66lmqlbv4zl5ysvv1xqafvqh1h5cfdv03jdkqlfk34jz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ducpel"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ducpel"; sha256 = "1cqrkgg7n9bhjswnpl7yc6w6yjs4gfbliaqsimmf9z43wk2ml4pc"; name = "ducpel"; }; @@ -12987,15 +13050,15 @@ dumb-jump = callPackage ({ dash, f, fetchFromGitHub, fetchurl, lib, melpaBuild, popup, s }: melpaBuild { pname = "dumb-jump"; - version = "20160426.56"; + version = "20160428.221"; src = fetchFromGitHub { owner = "jacktasia"; repo = "dumb-jump"; - rev = "5313ef651b58dd9b8b9fcb388856b8dcbf1b791b"; - sha256 = "1czw5z6w8pcc7ra5d82v06padyiy7c3ds00chw5xgyvq6s73gzn4"; + rev = "2c3ab93955eb05f9bc051cf65bc26d5d54116ac4"; + sha256 = "0wdlly5aqzscbqd86vbp02hhcxs2c6ah70kbs1n7m7z0n607x2z6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dumb-jump"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dumb-jump"; sha256 = "1pgbs2k1g8w7gr65w50fazrmcky6w37c9rvyxqfmh06yx90nj4kc"; name = "dumb-jump"; }; @@ -13008,7 +13071,7 @@ dummy-h-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dummy-h-mode"; - version = "20160209.529"; + version = "20160209.629"; src = fetchFromGitHub { owner = "yascentur"; repo = "dummy-h-mode-el"; @@ -13016,7 +13079,7 @@ sha256 = "0qsjp1xh8cp5wl4xi9yg2nwy982jgxji41hpbg7rff5hcn7svii9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dummy-h-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dummy-h-mode"; sha256 = "10lzfzq7md6s28w2zzlhswn3d6765g4vqzyjn2q5ms8pd2i4b4in"; name = "dummy-h-mode"; }; @@ -13029,7 +13092,7 @@ dummyparens = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dummyparens"; - version = "20141009.524"; + version = "20141009.624"; src = fetchFromGitHub { owner = "snosov1"; repo = "dummyparens"; @@ -13037,7 +13100,7 @@ sha256 = "0g72nnz0j6dvllyxyrw20z1vg6p7sy46yy0fq017pa77sgqm0xzh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dummyparens"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dummyparens"; sha256 = "1yah8kpqkk9ygm73iy51fzwc8q5nw0xlwqir2qld1fc5y1lkb7dk"; name = "dummyparens"; }; @@ -13050,7 +13113,7 @@ duplicate-thing = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "duplicate-thing"; - version = "20120515.1148"; + version = "20120515.1248"; src = fetchFromGitHub { owner = "ongaeshi"; repo = "duplicate-thing"; @@ -13058,7 +13121,7 @@ sha256 = "1qaiwm8mf4656gc1pdj8ivgy4abkjsypr52pvf4nrdkkln9qzfli"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/duplicate-thing"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/duplicate-thing"; sha256 = "1jx2b6h23dj561xhizzbpxp3av69ic8zdw4kkf0py1jm3gnrmlm4"; name = "duplicate-thing"; }; @@ -13071,14 +13134,14 @@ dyalog-mode = callPackage ({ cl-lib ? null, fetchhg, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dyalog-mode"; - version = "20160315.1049"; + version = "20160315.1149"; src = fetchhg { url = "https://bitbucket.com/harsman/dyalog-mode"; rev = "4dac440334f0"; sha256 = "19aid1rqpqj0fvln98db5imfk1griqld55xsr9plm6kwrr174syq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dyalog-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dyalog-mode"; sha256 = "1y17nd2xd8b3mhaybws8dr7yanzwqij9gzfywisy65ckflm9kfyq"; name = "dyalog-mode"; }; @@ -13091,7 +13154,7 @@ dylan-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dylan-mode"; - version = "20160405.1714"; + version = "20160405.1814"; src = fetchFromGitHub { owner = "dylan-lang"; repo = "dylan-mode"; @@ -13099,7 +13162,7 @@ sha256 = "0fxdv594k6p4kv6nc598rw51sy4x10dvbyhzn3gni2linb3v1c5h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dylan-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dylan-mode"; sha256 = "0kimvz8vmcvgxi0wvf7dqv6plj31xlksmvgip8h3bhyy7slxj3yy"; name = "dylan-mode"; }; @@ -13112,7 +13175,7 @@ dynamic-fonts = callPackage ({ fetchFromGitHub, fetchurl, font-utils, lib, melpaBuild, pcache, persistent-soft }: melpaBuild { pname = "dynamic-fonts"; - version = "20140731.726"; + version = "20140731.826"; src = fetchFromGitHub { owner = "rolandwalker"; repo = "dynamic-fonts"; @@ -13120,7 +13183,7 @@ sha256 = "150dj1g49q9x9zx9wkymq30l5gc8c4mhsq91fm6q0yj6ip7hlfxh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dynamic-fonts"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dynamic-fonts"; sha256 = "0a210ca41maa755lv1n7hhpxp0f7lfxrxbi0x34icbkfkmijhl6q"; name = "dynamic-fonts"; }; @@ -13133,7 +13196,7 @@ dynamic-ruler = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dynamic-ruler"; - version = "20150826.1609"; + version = "20150826.1709"; src = fetchFromGitHub { owner = "rocher"; repo = "dynamic-ruler"; @@ -13141,7 +13204,7 @@ sha256 = "1jsjk4fkisgprn2w1d1385kbc9w1bd707biapd1y453k20q5c4h5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dynamic-ruler"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dynamic-ruler"; sha256 = "13jc3xbsyc3apkdfy0iafmsfvgqs0zfa5w8jxp7zj4dhb7pxpnmc"; name = "dynamic-ruler"; }; @@ -13154,7 +13217,7 @@ e2ansi = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "e2ansi"; - version = "20150220.1713"; + version = "20150220.1813"; src = fetchFromGitHub { owner = "Lindydancer"; repo = "e2ansi"; @@ -13162,7 +13225,7 @@ sha256 = "0d18kdpw4zfbq4bkqh19cf42xlinxqa71lr2d994phaxqxqq195w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/e2ansi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/e2ansi"; sha256 = "0ns1sldipx5kyqpi0bw79kdmhi1ry5glwxfzfx8r01hbbkf0cc94"; name = "e2ansi"; }; @@ -13175,7 +13238,7 @@ e2wm = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, window-layout }: melpaBuild { pname = "e2wm"; - version = "20150608.1923"; + version = "20150608.2023"; src = fetchFromGitHub { owner = "kiwanami"; repo = "emacs-window-manager"; @@ -13183,7 +13246,7 @@ sha256 = "1lx0c7s810x6prf7x1lnx412gll8nn8gqpmi56n319n406cxhnhw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/e2wm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/e2wm"; sha256 = "0dp360jr3fgxqywkp7g88cp02g37kw2hdsc0f70hjak9n3sy03la"; name = "e2wm"; }; @@ -13196,7 +13259,7 @@ e2wm-R = callPackage ({ e2wm, ess, fetchFromGitHub, fetchurl, inlineR, lib, melpaBuild }: melpaBuild { pname = "e2wm-R"; - version = "20151230.326"; + version = "20151230.426"; src = fetchFromGitHub { owner = "myuhe"; repo = "e2wm-R.el"; @@ -13204,7 +13267,7 @@ sha256 = "1g77gf24abwcvf7z52vs762s6jp978pnvza8zmzwkwfvp1mkx233"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/e2wm-R"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/e2wm-R"; sha256 = "09v4fz178lch4d6m801ipclfxm2qrap5601aysnzyvc2apvyr3sh"; name = "e2wm-R"; }; @@ -13217,7 +13280,7 @@ e2wm-bookmark = callPackage ({ e2wm, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "e2wm-bookmark"; - version = "20151122.2321"; + version = "20151123.21"; src = fetchFromGitHub { owner = "myuhe"; repo = "e2wm-bookmark.el"; @@ -13225,7 +13288,7 @@ sha256 = "121vd44f42bxqvdjswmjlghf1jalbs974b6cip2i049k1n08xgh0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/e2wm-bookmark"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/e2wm-bookmark"; sha256 = "1myaqxzrgff5gxcn3zn1bsmyf5122ql1mwr05wamd450lq8nmbw5"; name = "e2wm-bookmark"; }; @@ -13238,7 +13301,7 @@ e2wm-direx = callPackage ({ direx, e2wm, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "e2wm-direx"; - version = "20140815.1813"; + version = "20140815.1913"; src = fetchFromGitHub { owner = "aki2o"; repo = "e2wm-direx"; @@ -13246,7 +13309,7 @@ sha256 = "09i7d2rc9zd4s3nqrhd3ggs1ykdpxf0pyhxixxw2xy0q6nbswjia"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/e2wm-direx"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/e2wm-direx"; sha256 = "0nv8aciq0swxi9ahwc2pvk9c7i3rmlp7vrzqcan58ml0i3nm17wg"; name = "e2wm-direx"; }; @@ -13259,7 +13322,7 @@ e2wm-pkgex4pl = callPackage ({ e2wm, fetchFromGitHub, fetchurl, lib, melpaBuild, plsense-direx }: melpaBuild { pname = "e2wm-pkgex4pl"; - version = "20140525.547"; + version = "20140525.647"; src = fetchFromGitHub { owner = "aki2o"; repo = "e2wm-pkgex4pl"; @@ -13267,7 +13330,7 @@ sha256 = "1vrlfzy1wynm7x4m7pl8vim7ykqd6qkcilwz7sjc1lbckz11ig0d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/e2wm-pkgex4pl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/e2wm-pkgex4pl"; sha256 = "0hgdbqfw3015fr929m36kfiqqzsid6afs3222iqq0apg7gfj7jil"; name = "e2wm-pkgex4pl"; }; @@ -13280,7 +13343,7 @@ e2wm-svg-clock = callPackage ({ e2wm, fetchFromGitHub, fetchurl, lib, melpaBuild, svg-clock }: melpaBuild { pname = "e2wm-svg-clock"; - version = "20150106.706"; + version = "20150106.806"; src = fetchFromGitHub { owner = "myuhe"; repo = "e2wm-svg-clock.el"; @@ -13288,7 +13351,7 @@ sha256 = "0h1fnlpvy2mqfxjv64znghmiadh9qimj9q9a60cxhyc0bq0prz6f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/e2wm-svg-clock"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/e2wm-svg-clock"; sha256 = "0q02lksrbn43s8d9rzpglqybalglpi6qi9lix0cllag6i7fzcbms"; name = "e2wm-svg-clock"; }; @@ -13301,7 +13364,7 @@ e2wm-sww = callPackage ({ e2wm, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "e2wm-sww"; - version = "20140524.358"; + version = "20140524.458"; src = fetchFromGitHub { owner = "aki2o"; repo = "e2wm-sww"; @@ -13309,7 +13372,7 @@ sha256 = "0mz43mwcgyc1c9p9b7nflnjxdxjm2nxbhl0scj6llzphikicr35g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/e2wm-sww"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/e2wm-sww"; sha256 = "0x45j62cjivf9v7jp1b41yya3f9akp92md6cbv0v7bwz98g2vsk8"; name = "e2wm-sww"; }; @@ -13322,7 +13385,7 @@ e2wm-term = callPackage ({ e2wm, fetchFromGitHub, fetchurl, lib, log4e, melpaBuild, yaxception }: melpaBuild { pname = "e2wm-term"; - version = "20141009.808"; + version = "20141009.908"; src = fetchFromGitHub { owner = "aki2o"; repo = "e2wm-term"; @@ -13330,7 +13393,7 @@ sha256 = "0qv3kh6q3q7vgfsd8x25x8agi3fp96dkpjnxdidkwk6k8h9n0jzw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/e2wm-term"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/e2wm-term"; sha256 = "0wrq06yap80a96l9l0hs7x7rng7sx6vi1hz778kknb6il4f2f45g"; name = "e2wm-term"; }; @@ -13343,7 +13406,7 @@ easy-after-load = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "easy-after-load"; - version = "20121224.2049"; + version = "20121224.2149"; src = fetchFromGitHub { owner = "pd"; repo = "easy-after-load"; @@ -13351,7 +13414,7 @@ sha256 = "09ikwg5s42b50lfj0796pa2h32larkf5j6cy042dzh8c441vgih4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/easy-after-load"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/easy-after-load"; sha256 = "1mn4hpx82nifphzx71yw3rbixbgis8bhvl3iyxcgcd88n5hqwvys"; name = "easy-after-load"; }; @@ -13364,7 +13427,7 @@ easy-escape = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "easy-escape"; - version = "20150718.2133"; + version = "20150718.2233"; src = fetchFromGitHub { owner = "cpitclaudel"; repo = "easy-escape"; @@ -13372,7 +13435,7 @@ sha256 = "1qn0givyh07w41sv5xayfzlwbpbq7p39wbhmwsgffgfqzzz5r2ys"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/easy-escape"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/easy-escape"; sha256 = "1zspb79x6s151wwiian45j1nh0xps8y8yd98byyn5lbwbj2pp2gk"; name = "easy-escape"; }; @@ -13385,7 +13448,7 @@ easy-kill = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "easy-kill"; - version = "20151031.29"; + version = "20151031.129"; src = fetchFromGitHub { owner = "leoliu"; repo = "easy-kill"; @@ -13393,7 +13456,7 @@ sha256 = "0i2plbvaalapx3svryn5lrc68m0qj1xm0z577xxzq7i9z91nanq7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/easy-kill"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/easy-kill"; sha256 = "10jcv7a4vcnaj3wkabip2xwzcwlmvdlqkl409a9lnzfasxcpf32i"; name = "easy-kill"; }; @@ -13406,7 +13469,7 @@ easy-kill-extras = callPackage ({ easy-kill, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "easy-kill-extras"; - version = "20160418.2119"; + version = "20160418.2219"; src = fetchFromGitHub { owner = "knu"; repo = "easy-kill-extras.el"; @@ -13414,7 +13477,7 @@ sha256 = "0mmhqid0x56m0p3b18a757147fy8km3p4kmi0y94kjq04a4ysg3k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/easy-kill-extras"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/easy-kill-extras"; sha256 = "0xzlzv57nvrc142saydwfib51fyqcdzjccc1hj6xvgcdbwadlnjy"; name = "easy-kill-extras"; }; @@ -13427,7 +13490,7 @@ easy-lentic = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lentic, lib, melpaBuild }: melpaBuild { pname = "easy-lentic"; - version = "20151227.357"; + version = "20151227.457"; src = fetchFromGitHub { owner = "tumashu"; repo = "easy-lentic"; @@ -13435,7 +13498,7 @@ sha256 = "0qpabig0qrkyhhiifjpq9a7qv7h3nlqmpz79xy8lk58xy6rj0zk0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/easy-lentic"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/easy-lentic"; sha256 = "1j141lncgcgfpa42m505xndiy6lh848xymfvb3cz4d6h73421khg"; name = "easy-lentic"; }; @@ -13448,7 +13511,7 @@ easy-repeat = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "easy-repeat"; - version = "20150516.348"; + version = "20150516.448"; src = fetchFromGitHub { owner = "xuchunyang"; repo = "easy-repeat.el"; @@ -13456,7 +13519,7 @@ sha256 = "18bm5ns1qrxq0rrz9sylshr62wkymh1m6b7ch2y74f8rcwdwjgnq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/easy-repeat"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/easy-repeat"; sha256 = "1vx57gpw0nbxh976s18va4ali1nqxqffhaxv1c5rhf4pwlk2fa06"; name = "easy-repeat"; }; @@ -13469,7 +13532,7 @@ ebal = callPackage ({ emacs, f, fetchFromGitHub, fetchurl, ido-completing-read-plus, lib, melpaBuild }: melpaBuild { pname = "ebal"; - version = "20160122.607"; + version = "20160122.707"; src = fetchFromGitHub { owner = "mrkkrp"; repo = "ebal"; @@ -13477,7 +13540,7 @@ sha256 = "0ysym38xaqyx1wc7xd3fvjm62dmiq4727dnjvyxv7hs4czff1gcb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ebal"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ebal"; sha256 = "1kqnlp5n1aig1qbqdq9q50wgqkzd1l6h9wi1gv43cif8qa1kxhwg"; name = "ebal"; }; @@ -13490,7 +13553,7 @@ ebf = callPackage ({ cl-lib ? null, dash, dash-functional, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ebf"; - version = "20160211.1158"; + version = "20160211.1258"; src = fetchFromGitHub { owner = "rexim"; repo = "ebf"; @@ -13498,7 +13561,7 @@ sha256 = "1pgn6fcg5cnbpk93hc2vw95sna07x0s1v2i6lq9bmij2msvar611"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ebf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ebf"; sha256 = "072w1hczzb4z0dadvqy8px9zfnfd2z0w8nwa7q2qm5njg30rrqpb"; name = "ebf"; }; @@ -13511,7 +13574,7 @@ ebib = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, parsebib }: melpaBuild { pname = "ebib"; - version = "20160410.1944"; + version = "20160410.2044"; src = fetchFromGitHub { owner = "joostkremers"; repo = "ebib"; @@ -13519,7 +13582,7 @@ sha256 = "1kcmbr4a2jxd62s4nc8xshrksb36xwb17j6c0hjzvb75r544xy6s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ebib"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ebib"; sha256 = "1kdqf5nk9l6mr3698nqngrkw5dicgf7d24krir5wrcfbrsqrfmid"; name = "ebib"; }; @@ -13532,7 +13595,7 @@ ecb = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ecb"; - version = "20140215.314"; + version = "20140215.414"; src = fetchFromGitHub { owner = "alexott"; repo = "ecb"; @@ -13540,7 +13603,7 @@ sha256 = "1hs069m4m6vhb37ac2x6hzbp9mfmpd3zhp4m631lx8dlmx11rydz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ecb"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ecb"; sha256 = "097hdskhfh255znrqamcssx4ns1sgkxchlbc7pjqwzpflsi0fx89"; name = "ecb"; }; @@ -13552,13 +13615,13 @@ }) {}; echo-bell = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "echo-bell"; - version = "20151231.1456"; + version = "20151231.1556"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/echo-bell.el"; sha256 = "0jk7pb2sr4qbxwcn4ipcjc9phl9zjmgg8sf91qj113112xx7vvxa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/echo-bell"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/echo-bell"; sha256 = "0adhdfbcpmdhd9252rh0jik2z3v9bzf0brpzfvcjn5py2x6724ws"; name = "echo-bell"; }; @@ -13571,15 +13634,15 @@ eclipse-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "eclipse-theme"; - version = "20150929.801"; + version = "20160430.622"; src = fetchFromGitHub { owner = "abo-abo"; repo = "eclipse-theme"; - rev = "222f5b37d9c0573f752aa6097c677c91af9d2427"; - sha256 = "1vxa6d8kp4h1havr9cq7zqgqm1xsjxhbgbi4hvi842ma6xwh4m5w"; + rev = "dc54d9312d97210823b922038076e2b1b132eff2"; + sha256 = "03yyagd37l9kgdnkqrkvrcgp5njyl4an0af7cfmcdnpyjghczf4d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/eclipse-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/eclipse-theme"; sha256 = "0mww0jysxqky1zkkhvhj7fn20w970n2w6501rdm5jwqfb58ivxfx"; name = "eclipse-theme"; }; @@ -13592,7 +13655,7 @@ ecukes = callPackage ({ ansi, commander, dash, espuds, f, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "ecukes"; - version = "20150717.848"; + version = "20150717.948"; src = fetchFromGitHub { owner = "ecukes"; repo = "ecukes"; @@ -13600,7 +13663,7 @@ sha256 = "0h6vh719ai0cxyja6wpfi6m76d42vskj56wg666j0h6j0qw6h3i2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ecukes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ecukes"; sha256 = "0ava8hrc7r1mzv6xgbrb84qak5xrf6fj8g9qr4i4g0cr7843nrw0"; name = "ecukes"; }; @@ -13613,7 +13676,7 @@ edbi = callPackage ({ concurrent, ctable, epc, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "edbi"; - version = "20160224.1941"; + version = "20160224.2041"; src = fetchFromGitHub { owner = "kiwanami"; repo = "emacs-edbi"; @@ -13621,7 +13684,7 @@ sha256 = "0x0igyvdcm4863n7zndvcv6wgzwgn7324cbfjja6xd7r0k936zdy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/edbi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/edbi"; sha256 = "0qq0j16n8lyvkqqlcsrq1m7r7f0in6b92d74mpx5c6siv6z2vxlr"; name = "edbi"; }; @@ -13634,7 +13697,7 @@ edbi-database-url = callPackage ({ edbi, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "edbi-database-url"; - version = "20160221.1323"; + version = "20160221.1423"; src = fetchFromGitHub { owner = "proofit404"; repo = "edbi-database-url"; @@ -13642,7 +13705,7 @@ sha256 = "0f59s0a7zpa3dny1k7x6zrymrnzba184smq8v1vvz8hkc0ym1j1v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/edbi-database-url"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/edbi-database-url"; sha256 = "018rxijmy0lvisy281d501ra9lnh5xi0wmvz5avbjpb0fi4q1zdn"; name = "edbi-database-url"; }; @@ -13655,7 +13718,7 @@ edbi-django = callPackage ({ edbi, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "edbi-django"; - version = "20160221.1323"; + version = "20160221.1423"; src = fetchFromGitHub { owner = "proofit404"; repo = "edbi-django"; @@ -13663,7 +13726,7 @@ sha256 = "1029b7p1lnyqkg0jm9an6s1l7la0kb38gx42g7212wbj71s3krga"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/edbi-django"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/edbi-django"; sha256 = "1s59hab35hwnspyklxbhi0js0sgdn0rc7y33dqjk0psjcikqymg1"; name = "edbi-django"; }; @@ -13676,7 +13739,7 @@ edbi-minor-mode = callPackage ({ edbi, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "edbi-minor-mode"; - version = "20160221.1323"; + version = "20160221.1423"; src = fetchFromGitHub { owner = "proofit404"; repo = "edbi-minor-mode"; @@ -13684,7 +13747,7 @@ sha256 = "176954d4agk4by5w8a5ky65iwjky1dqxxvz8vdf8fxj82r5k9fhh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/edbi-minor-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/edbi-minor-mode"; sha256 = "0p7vdf9cp6i7mhjxj82670pfflf1kacalmakb7ssgigs1nsf3spi"; name = "edbi-minor-mode"; }; @@ -13697,7 +13760,7 @@ edbi-sqlite = callPackage ({ edbi, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "edbi-sqlite"; - version = "20160221.1323"; + version = "20160221.1423"; src = fetchFromGitHub { owner = "proofit404"; repo = "edbi-sqlite"; @@ -13705,7 +13768,7 @@ sha256 = "1vll81386fx90lq5sy4rlxcik6mvw7zx5cc51f0yaca9bkcckp51"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/edbi-sqlite"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/edbi-sqlite"; sha256 = "1w53ypz3pdqaml3vq9j3f1w443n8s9hb2ys090kxvjqnb8x8v44y"; name = "edbi-sqlite"; }; @@ -13718,7 +13781,7 @@ ede-compdb = callPackage ({ cl-lib ? null, ede ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, semantic ? null }: melpaBuild { pname = "ede-compdb"; - version = "20150920.1533"; + version = "20150920.1633"; src = fetchFromGitHub { owner = "randomphrase"; repo = "ede-compdb"; @@ -13726,7 +13789,7 @@ sha256 = "1cfjw9b1lm29s5cbh0qqmkchbq2382s71w4rpb0gyf603s0yg13m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ede-compdb"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ede-compdb"; sha256 = "1ypi7rxbgg2qck1b571hcw5m4ipllb48g6sindpdf180kbfbfpn7"; name = "ede-compdb"; }; @@ -13739,7 +13802,7 @@ edebug-x = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "edebug-x"; - version = "20130616.125"; + version = "20130616.225"; src = fetchFromGitHub { owner = "ScottyB"; repo = "edebug-x"; @@ -13747,7 +13810,7 @@ sha256 = "1zgiifi1k2d9g8sarfpjzamk8g1yx4ilgn60mqhy2pznp30b5qb2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/edebug-x"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/edebug-x"; sha256 = "0mzrip6y346mix4ny1xj8rkji1w531ix24k3cczmlmm4hm7l29ql"; name = "edebug-x"; }; @@ -13760,7 +13823,7 @@ edit-at-point = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "edit-at-point"; - version = "20150716.824"; + version = "20150716.924"; src = fetchFromGitHub { owner = "enoson"; repo = "edit-at-point.el"; @@ -13768,7 +13831,7 @@ sha256 = "0crwdgng377sy1zbq7kqkz24v697mlzgdsvkdp1m8r7ympikkj6w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/edit-at-point"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/edit-at-point"; sha256 = "0sn5a644zm165li44yffcpcai8bhl3yfvqcljghlwaa0w45sc9im"; name = "edit-at-point"; }; @@ -13781,7 +13844,7 @@ edit-color-stamp = callPackage ({ cl-lib ? null, es-lib, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "edit-color-stamp"; - version = "20130529.1233"; + version = "20130529.1333"; src = fetchFromGitHub { owner = "sabof"; repo = "edit-color-stamp"; @@ -13789,7 +13852,7 @@ sha256 = "0vk954f44m2bq7qb122pzlb8fibrisx47ihvn3h96m8nmx0fv32r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/edit-color-stamp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/edit-color-stamp"; sha256 = "1f8v8w3w7vb8jv29w06mplah8yfcs5qfjz2w4irv0rg7dwzy3zk8"; name = "edit-color-stamp"; }; @@ -13802,7 +13865,7 @@ edit-indirect = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "edit-indirect"; - version = "20141213.1205"; + version = "20141213.1305"; src = fetchFromGitHub { owner = "Fanael"; repo = "edit-indirect"; @@ -13810,7 +13873,7 @@ sha256 = "10c84aad1lnr7z9f75k5ylgchykr3srcdmn88hlcx2n2c4jfbkds"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/edit-indirect"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/edit-indirect"; sha256 = "0q5jjmrvx5kaajllmhaxihsab2kr1vmcsfqrhxdhw3x3nf41s439"; name = "edit-indirect"; }; @@ -13823,7 +13886,7 @@ edit-list = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "edit-list"; - version = "20100930.943"; + version = "20100930.1043"; src = fetchFromGitHub { owner = "emacsmirror"; repo = "edit-list"; @@ -13831,7 +13894,7 @@ sha256 = "0981hy1n50yizc3k06vbxqrpfml817a67kab1hkgkw5v6ymm1hc9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/edit-list"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/edit-list"; sha256 = "0mi12jfgx06i0yr8k5nk80xryqszjv0xykdnri505862rb90xakv"; name = "edit-list"; }; @@ -13844,7 +13907,7 @@ edit-server = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "edit-server"; - version = "20141231.1558"; + version = "20141231.1658"; src = fetchFromGitHub { owner = "stsquad"; repo = "emacs_chrome"; @@ -13852,7 +13915,7 @@ sha256 = "0ssmhwg4wfh5cxgqv8bl55449204h4zi863m7jhvas4c9zq005kd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/edit-server"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/edit-server"; sha256 = "0ffxcgmnz0f2c1i3vfwm8vlm6jyd7ibf4kq5z8c6n50zkwfdmns0"; name = "edit-server"; }; @@ -13865,7 +13928,7 @@ edit-server-htmlize = callPackage ({ edit-server, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "edit-server-htmlize"; - version = "20130329.1748"; + version = "20130329.1848"; src = fetchFromGitHub { owner = "frobtech"; repo = "edit-server-htmlize"; @@ -13873,7 +13936,7 @@ sha256 = "174xq45xc632zrb916aw7q4bch96pbi6zgy3dk77qla3ky9cfpl3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/edit-server-htmlize"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/edit-server-htmlize"; sha256 = "007lv3698a88wxan7kplz2117azxxpzzgshin9c1aabg059hszlj"; name = "edit-server-htmlize"; }; @@ -13886,15 +13949,15 @@ editorconfig = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "editorconfig"; - version = "20160422.1640"; + version = "20160505.843"; src = fetchFromGitHub { owner = "editorconfig"; repo = "editorconfig-emacs"; - rev = "9e5606f0fe7d202ecf4ceb4c01be271fd594fbdd"; - sha256 = "0drqa91h0n25ydd6mn5w2js7d0acavzhr04f69m1qn5cjg3dm7l8"; + rev = "86ba3a4cf675783739f607220811c388f51eea11"; + sha256 = "1zb8f6gfflwzh1zkhcd1nhan9wxmdm0gpp96fm5gjn639zs88539"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/editorconfig"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/editorconfig"; sha256 = "0zv96m07ml8i3k7zm7sdci4hn611n3ypna7zppfkwbdyr7d5k2gc"; name = "editorconfig"; }; @@ -13907,7 +13970,7 @@ edn = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, peg }: melpaBuild { pname = "edn"; - version = "20160215.619"; + version = "20160215.719"; src = fetchFromGitHub { owner = "expez"; repo = "edn.el"; @@ -13915,7 +13978,7 @@ sha256 = "1xp2hjhn52k6l1g6ypva6dsklpawni7gvjafbz6404f9dyxflh7l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/edn"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/edn"; sha256 = "00cy8axhy2p3zalzl8k2083l5a7s3aswb9qfk9wsmf678m8pqwqg"; name = "edn"; }; @@ -13928,15 +13991,15 @@ edts = callPackage ({ auto-complete, auto-highlight-symbol, dash, eproject, erlang, f, fetchFromGitHub, fetchurl, lib, melpaBuild, popup, s }: melpaBuild { pname = "edts"; - version = "20150830.710"; + version = "20160430.931"; src = fetchFromGitHub { owner = "tjarvstrand"; repo = "edts"; - rev = "70dfcfd8cc448c854fb67d65e005ba00e77384c5"; - sha256 = "0vsrcvrd02nx647gxp65r548qlxg50w73dy0rs1lxwy6mdgp0npv"; + rev = "40138ee39ea3823d74145dabfd0c342cbdeef5d9"; + sha256 = "0dn2p80pifkc5pjqqx6xhr53mjp5y0hb48imhwybf9mwbgpz16va"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/edts"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/edts"; sha256 = "0f0rbd0mqqwn743qmr1g5mmi1sbmlcglclww8jxvbvb61jq8vspr"; name = "edts"; }; @@ -13958,7 +14021,7 @@ efire = callPackage ({ circe, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "efire"; - version = "20151009.1531"; + version = "20151009.1631"; src = fetchFromGitHub { owner = "capitaomorte"; repo = "efire"; @@ -13966,7 +14029,7 @@ sha256 = "1c2iyv392ap35nss4j901h33d3lx9lmq5v43flf2rid1766pam6v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/efire"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/efire"; sha256 = "1c8vdc58i0k7vvanwhckfc31226d3rb5xq77lh9ydgnd4i97gq2w"; name = "efire"; }; @@ -13979,7 +14042,7 @@ egg = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "egg"; - version = "20160330.2247"; + version = "20160330.2347"; src = fetchFromGitHub { owner = "byplayer"; repo = "egg"; @@ -13987,7 +14050,7 @@ sha256 = "1qrblglkafwzfds8x5wp4yrn1gq8iz823iilxcp9mwycbw57ajw8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/egg"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/egg"; sha256 = "144g1fvs2cmn3px0a98nvxl5cz70kx30v936k5ppyi8gvbj0md5i"; name = "egg"; }; @@ -14000,15 +14063,15 @@ egison-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "egison-mode"; - version = "20160415.327"; + version = "20160415.427"; src = fetchFromGitHub { owner = "egisatoshi"; repo = "egison3"; - rev = "7b3902a8b08a6e6e74ef37983287bcf00bc1900f"; - sha256 = "09i7bczfqxsnqswa7dg2zslka2bj4yzhjks2vhmb97576dg6pwir"; + rev = "4a269f89f7156d16d159d5aa22eae8dd740f1945"; + sha256 = "0p63a53n423xmmahmh0pzy560lb6fcphdq4xrcdxdxv55i9b6acj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/egison-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/egison-mode"; sha256 = "0x11fhv8kkx34h831k2q70y5qfz7wnfia4ka5mbmps7mpr68zcwi"; name = "egison-mode"; }; @@ -14021,7 +14084,7 @@ ego = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, ht, htmlize, lib, melpaBuild, mustache, org, simple-httpd }: melpaBuild { pname = "ego"; - version = "20160423.2001"; + version = "20160423.2101"; src = fetchFromGitHub { owner = "emacs-china"; repo = "EGO"; @@ -14029,7 +14092,7 @@ sha256 = "04sjq2gfnfapkwpk4l2jbpsivshps74yjwxddssbr85r6qq57bvw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ego"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ego"; sha256 = "02s840chz3v4gdyq01b5i5w2vxl94001jk9j1nsp5b8xm10w985j"; name = "ego"; }; @@ -14041,14 +14104,14 @@ }) {}; eide = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: melpaBuild { pname = "eide"; - version = "20160210.1438"; + version = "20160210.1538"; src = fetchgit { url = "git://git.tuxfamily.org/gitroot/eide/emacs-ide.git"; rev = "9d7fb8c50568ece04bb0382caca42d3ab68fbb01"; sha256 = "1qiafvx6bhliqaysyc4qv2ps44qsmls75ysjbgmzw5rndc8hf0r0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/eide"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/eide"; sha256 = "16cf32n2l4wy1px7fm6x4vxx7pbqdp7zh2jn3bymg0b40i2321sz"; name = "eide"; }; @@ -14061,7 +14124,7 @@ eimp = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "eimp"; - version = "20120826.1539"; + version = "20120826.1639"; src = fetchFromGitHub { owner = "nicferrier"; repo = "eimp"; @@ -14069,7 +14132,7 @@ sha256 = "154d57yafxbcf39r89n5j43c86rp2fki3lw3gwy7ww2g6qkclcra"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/eimp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/eimp"; sha256 = "00g77bg49m38cjfbh17ccnmksz05qx7yvgl6i4i4hysbr2d8pgxd"; name = "eimp"; }; @@ -14082,7 +14145,7 @@ ein = callPackage ({ cl-generic, fetchFromGitHub, fetchurl, lib, melpaBuild, request, websocket }: melpaBuild { pname = "ein"; - version = "20160422.829"; + version = "20160422.929"; src = fetchFromGitHub { owner = "millejoh"; repo = "emacs-ipython-notebook"; @@ -14090,7 +14153,7 @@ sha256 = "1b20cz9grxyjpbmc91csfygkg6rnclj39cc6pnlxxy6ikcn5xywn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ein"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ein"; sha256 = "1nksj1cpf4d9brr3rb80bgp2x05qdq9xmlp8mwbic1s27mw80bpp"; name = "ein"; }; @@ -14103,7 +14166,7 @@ ein-mumamo = callPackage ({ ein, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ein-mumamo"; - version = "20150301.1828"; + version = "20150301.1928"; src = fetchFromGitHub { owner = "millejoh"; repo = "ein-mumamo"; @@ -14111,7 +14174,7 @@ sha256 = "1w0b3giy9ca35pp2ni4afnqas64a2vriilab7jiw9anp3ryh6570"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ein-mumamo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ein-mumamo"; sha256 = "029sk90xz9fhv2s56f5hp0aks1d6ybz517009vv4892bbzkpjv1w"; name = "ein-mumamo"; }; @@ -14124,7 +14187,7 @@ eink-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "eink-theme"; - version = "20160321.458"; + version = "20160321.558"; src = fetchFromGitHub { owner = "maio"; repo = "eink-emacs"; @@ -14132,7 +14195,7 @@ sha256 = "0m7qsk378c30fva2n2ag99rsdklx5nsqc395msg1ab11sbpxvis0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/eink-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/eink-theme"; sha256 = "0z437cpf1b8bqyi7bv0w0dnc52q4f5g17530lwdcxjkr38s9b1zn"; name = "eink-theme"; }; @@ -14142,10 +14205,31 @@ license = lib.licenses.free; }; }) {}; + ejc-sql = callPackage ({ auto-complete, clomacs, dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "ejc-sql"; + version = "20160427.745"; + src = fetchFromGitHub { + owner = "kostafey"; + repo = "ejc-sql"; + rev = "76171b94e70bea361e9adf9ede7b42f7cc72f5ee"; + sha256 = "0wzphb7psvwcsp8qp93zld6rgzmzd9z96qk4nm1nividv7314bpz"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ejc-sql"; + sha256 = "0v9mmwc2gm58nky81q7fibj93zi7zbxq1jzjw55dg6cb6qb87vnx"; + name = "ejc-sql"; + }; + packageRequires = [ auto-complete clomacs dash emacs ]; + meta = { + homepage = "https://melpa.org/#/ejc-sql"; + license = lib.licenses.free; + }; + }) {}; el-autoyas = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "el-autoyas"; - version = "20120918.817"; + version = "20120918.917"; src = fetchFromGitHub { owner = "mattfidler"; repo = "el-autoyas.el"; @@ -14153,7 +14237,7 @@ sha256 = "0dbp2zz993cm7mrd58c4iflbzqwg50wzgn2cpwfivk14w1mznh4n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/el-autoyas"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/el-autoyas"; sha256 = "0hh5j79f3z82nmb3kqry8k8lgc1qswk6ni3g9jg60pasc3wkbh6c"; name = "el-autoyas"; }; @@ -14166,15 +14250,15 @@ el-get = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "el-get"; - version = "20160413.2057"; + version = "20160413.2157"; src = fetchFromGitHub { owner = "dimitri"; repo = "el-get"; - rev = "0e9000ce31521d7a2f1d9cab5359c46af73ac530"; - sha256 = "0jg4514vql9icsr34mdcq9hcnjfnh2nq424d2zg3kcbc3jmhymi7"; + rev = "1450eebeff9553ce17dd910933aa84e0d2d54a1a"; + sha256 = "0hvm4579pg10y6q9qcfbxf9nhwbmn4qdkq4207rjwbhlx8jx2zbl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/el-get"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/el-get"; sha256 = "1438v2sw5n67q404c93y2py226v469nagqwp4w9l6yyy40h4myhz"; name = "el-get"; }; @@ -14187,7 +14271,7 @@ el-init = callPackage ({ anaphora, cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "el-init"; - version = "20150728.420"; + version = "20150728.520"; src = fetchFromGitHub { owner = "HKey"; repo = "el-init"; @@ -14195,7 +14279,7 @@ sha256 = "0qk5jk0n7ga2cxqnm69rsy5cjjn5b4l4yqgaafvmmrrp70p8drmi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/el-init"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/el-init"; sha256 = "121n6z8p9kzi7axp4i2kyi621gw20635w4j81i1bryblaqrv5kl5"; name = "el-init"; }; @@ -14208,7 +14292,7 @@ el-init-viewer = callPackage ({ anaphora, cl-lib ? null, ctable, dash, el-init, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "el-init-viewer"; - version = "20150303.228"; + version = "20150303.328"; src = fetchFromGitHub { owner = "HKey"; repo = "el-init-viewer"; @@ -14216,7 +14300,7 @@ sha256 = "0flf0pa3xwrdhfkshyr6nqrm957sgx9jkganbasqavbq1dvlw6lj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/el-init-viewer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/el-init-viewer"; sha256 = "0kkmsml9xf2n8nlrcicfg2l78s3dlhd6ssx0s62v77v4wdpl297m"; name = "el-init-viewer"; }; @@ -14229,7 +14313,7 @@ el-mock = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "el-mock"; - version = "20150906.521"; + version = "20150906.621"; src = fetchFromGitHub { owner = "rejeep"; repo = "el-mock.el"; @@ -14237,7 +14321,7 @@ sha256 = "1jiq2hpym3wpk80zsl4lffpv4kgkykc2zp08sb01wa7pl8d1knmm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/el-mock"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/el-mock"; sha256 = "07m7w7n202nijnxidy0j0r4nbcvlnbkm9b0n8qb2bwi3d4cfp77l"; name = "el-mock"; }; @@ -14250,7 +14334,7 @@ el-pocket = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, web }: melpaBuild { pname = "el-pocket"; - version = "20150202.1728"; + version = "20150202.1828"; src = fetchFromGitHub { owner = "pterygota"; repo = "el-pocket"; @@ -14258,7 +14342,7 @@ sha256 = "1iykhicc1ic1r6h4vj3701rm0vfy41b16w3d98amf8jjypv54wv7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/el-pocket"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/el-pocket"; sha256 = "0fgylpfixsx5l1nrgz6n1c2ayf52p60f9q290hmkn36siyx5hixw"; name = "el-pocket"; }; @@ -14271,7 +14355,7 @@ el-spec = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "el-spec"; - version = "20121018.204"; + version = "20121018.304"; src = fetchFromGitHub { owner = "uk-ar"; repo = "el-spec"; @@ -14279,7 +14363,7 @@ sha256 = "1lsq7980pwcwlg7z37hrig8ddm9nyvaqrlczv1w0vy631vc5z2az"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/el-spec"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/el-spec"; sha256 = "017syizs8qw5phwvpzzffzdnj6rh9q4n7s51qjvj8qfb3088igkh"; name = "el-spec"; }; @@ -14292,7 +14376,7 @@ el-spice = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, thingatpt-plus }: melpaBuild { pname = "el-spice"; - version = "20140805.1338"; + version = "20140805.1438"; src = fetchFromGitHub { owner = "vedang"; repo = "el-spice"; @@ -14300,7 +14384,7 @@ sha256 = "1sba405h1sy5vxg4ki631p4979gyaqv8wnwbgca5jp2pm8l3viri"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/el-spice"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/el-spice"; sha256 = "0i0l3y9w1q9pf5zhvmsq4h427imix67jgcfwq21b6j82dzg5l4hg"; name = "el-spice"; }; @@ -14313,7 +14397,7 @@ el-sprunge = callPackage ({ emacs, fetchFromGitHub, fetchurl, htmlize, lib, melpaBuild, web-server }: melpaBuild { pname = "el-sprunge"; - version = "20140106.1939"; + version = "20140106.2039"; src = fetchFromGitHub { owner = "eschulte"; repo = "el-sprunge"; @@ -14321,7 +14405,7 @@ sha256 = "04k1fz0ypmfzgwamncp2vz0lq54bq6y7c8k9nm39csp2564vmbbc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/el-sprunge"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/el-sprunge"; sha256 = "0rb1cr7zrfl1s5prxy3xwdqgnm8ddw33pcvk049km2qbccb08v6a"; name = "el-sprunge"; }; @@ -14334,7 +14418,7 @@ el-spy = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "el-spy"; - version = "20131226.1408"; + version = "20131226.1508"; src = fetchFromGitHub { owner = "uk-ar"; repo = "el-spy"; @@ -14342,7 +14426,7 @@ sha256 = "016l3inzb7dby0w58najj2pvymwk6gllsxvqj2fkz3599i36p1pn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/el-spy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/el-spy"; sha256 = "1bgv4mgsnkmjdyay7lhkqdszvnwpjy4dxxw11kq45w866ba8645n"; name = "el-spy"; }; @@ -14354,13 +14438,13 @@ }) {}; el-swank-fuzzy = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "el-swank-fuzzy"; - version = "20130824.657"; + version = "20130824.757"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/el-swank-fuzzy.el"; sha256 = "1g2jhm9m5qcj6a231n5ch6b8bqwzq3kj275nd4s89p89v1252qhn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/el-swank-fuzzy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/el-swank-fuzzy"; sha256 = "1m7y4c0r1w8ndmr1wgc2llrbfawbbxnvcvgjpsckb3704s87yxr1"; name = "el-swank-fuzzy"; }; @@ -14373,7 +14457,7 @@ el-x = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "el-x"; - version = "20140111.1601"; + version = "20140111.1701"; src = fetchFromGitHub { owner = "sigma"; repo = "el-x"; @@ -14381,7 +14465,7 @@ sha256 = "1i6j44ssxm1xdg0mf91nh1lnprwsaxsx8vsrf720nan7mfr283h5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/el-x"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/el-x"; sha256 = "1721d9mljlcbdwb5b9934q7a48y30x6706pp4bjvgys0r64dml5g"; name = "el-x"; }; @@ -14394,7 +14478,7 @@ el2markdown = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "el2markdown"; - version = "20150516.1538"; + version = "20150516.1638"; src = fetchFromGitHub { owner = "Lindydancer"; repo = "el2markdown"; @@ -14402,7 +14486,7 @@ sha256 = "03xlxx57z1id9mr7afkvf77m2f9rrknrm1380p51vka84v2hl3mh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/el2markdown"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/el2markdown"; sha256 = "1a52qm0jrcvvpb01blr5l7apaxqn4bvhkgha53cr48rdkmmq318g"; name = "el2markdown"; }; @@ -14415,7 +14499,7 @@ elang = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, names }: melpaBuild { pname = "elang"; - version = "20160104.856"; + version = "20160104.956"; src = fetchFromGitHub { owner = "vkazanov"; repo = "elang"; @@ -14423,7 +14507,7 @@ sha256 = "1wikmzl9gi72h6fxawj0h20828n4vypw9rrv35kqnl4gfrdmxzkk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elang"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/elang"; sha256 = "0frhn3hm8351qzljicpzars28af1fghgv45717ml79rwb4vi6yiy"; name = "elang"; }; @@ -14436,7 +14520,7 @@ eldoc-eval = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "eldoc-eval"; - version = "20150512.706"; + version = "20150512.806"; src = fetchFromGitHub { owner = "thierryvolpiatto"; repo = "eldoc-eval"; @@ -14444,7 +14528,7 @@ sha256 = "0vppa9xihn8777rphiw1aqp96xn16vgjwff1dwvp8z861silp8ar"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/eldoc-eval"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/eldoc-eval"; sha256 = "0z4scgi2xgrgd47aqqmyv1ww8alh43s0qny5qmh3f1nnppz3nd7c"; name = "eldoc-eval"; }; @@ -14456,13 +14540,13 @@ }) {}; eldoc-extension = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "eldoc-extension"; - version = "20140306.845"; + version = "20140306.945"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/eldoc-extension.el"; sha256 = "13ncpp3hrwk0h030c5nnm2zfiingilr5b876jsf2wxmylg57nbch"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/eldoc-extension"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/eldoc-extension"; sha256 = "0azkdx4ncjhb7qyhyg1a5pxgqqf2z1wq9iz802j0nxxnjzh9ny24"; name = "eldoc-extension"; }; @@ -14475,7 +14559,7 @@ electric-case = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "electric-case"; - version = "20150417.612"; + version = "20150417.712"; src = fetchFromGitHub { owner = "zk-phi"; repo = "electric-case"; @@ -14483,7 +14567,7 @@ sha256 = "0s4y1319sr4xc0k6h2zhzzxsx2kc3pc2m6saah18y4kip0hjyhr8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/electric-case"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/electric-case"; sha256 = "11mab7799kxs3w47srmds5prmwh6ldxzial9kqbqy33vybpkprmd"; name = "electric-case"; }; @@ -14496,7 +14580,7 @@ electric-operator = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, names }: melpaBuild { pname = "electric-operator"; - version = "20160403.443"; + version = "20160403.543"; src = fetchFromGitHub { owner = "davidshepherd7"; repo = "electric-operator"; @@ -14504,7 +14588,7 @@ sha256 = "08ihnbcg2h078v3k4c1pgk4f8kc0k5wbxspax0q02gsqlf7n7mgx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/electric-operator"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/electric-operator"; sha256 = "043bkpvvk42lmkll5jnz4q8i0m44y4wdxvkz6hiqhqcp1rv03nw2"; name = "electric-operator"; }; @@ -14517,7 +14601,7 @@ electric-spacing = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "electric-spacing"; - version = "20151209.936"; + version = "20151209.1036"; src = fetchFromGitHub { owner = "xwl"; repo = "electric-spacing"; @@ -14525,7 +14609,7 @@ sha256 = "0q1pb01h48wdbjgi04a6ck2jn7yfh92wpq1vka5pg54wv2k9b5fn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/electric-spacing"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/electric-spacing"; sha256 = "0fcsz9wmibqp6ci0pa5r4gzlrsyj5klajxpgfksa0nfj3dc94cvg"; name = "electric-spacing"; }; @@ -14538,7 +14622,7 @@ elein = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "elein"; - version = "20120120.516"; + version = "20120120.616"; src = fetchFromGitHub { owner = "remvee"; repo = "elein"; @@ -14546,7 +14630,7 @@ sha256 = "1ijrhm9vrzh5wl1rr9ayl11dwm05bh1i43fnbz3ga58l6whgkfpw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elein"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/elein"; sha256 = "0af263zq4xxaxhpypn769q8h1dla0ygpnd6l8xc13zlni6jjwdsg"; name = "elein"; }; @@ -14559,15 +14643,15 @@ elfeed = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "elfeed"; - version = "20160314.1444"; + version = "20160427.1143"; src = fetchFromGitHub { owner = "skeeto"; repo = "elfeed"; - rev = "6213e60638b3bd780ccf6a655585e520fa292992"; - sha256 = "1w25xd1vnf6y1idq849rqbpx38zng05g4vvp6nk3s8ibj9hm2zfz"; + rev = "dc73660a165f2388cf2efb8000c326b818cd5ce7"; + sha256 = "18d0ac2z2vgsk1brxlv8k39nr4f22dvyqmqblbqv40rd0ra2r2w2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elfeed"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/elfeed"; sha256 = "1psga7fcjk2b8xjg10fndp9l0ib72l5ggf43gxp62i4lxixzv8f9"; name = "elfeed"; }; @@ -14580,7 +14664,7 @@ elfeed-goodies = callPackage ({ ace-jump-mode, cl-lib ? null, elfeed, fetchFromGitHub, fetchurl, lib, melpaBuild, noflet, popwin, powerline }: melpaBuild { pname = "elfeed-goodies"; - version = "20160317.624"; + version = "20160317.724"; src = fetchFromGitHub { owner = "algernon"; repo = "elfeed-goodies"; @@ -14588,7 +14672,7 @@ sha256 = "10dbf292l1pd6a4jchdlvpp4yf2kxmf2j6zqigh4wlg125px1drk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elfeed-goodies"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/elfeed-goodies"; sha256 = "0zpk6nx757hasgzcww90fzkcdn078my33p7yax7xslvi4msm37bi"; name = "elfeed-goodies"; }; @@ -14608,7 +14692,7 @@ elfeed-org = callPackage ({ dash, elfeed, fetchFromGitHub, fetchurl, lib, melpaBuild, org, s }: melpaBuild { pname = "elfeed-org"; - version = "20151003.531"; + version = "20151003.631"; src = fetchFromGitHub { owner = "remyhonig"; repo = "elfeed-org"; @@ -14616,7 +14700,7 @@ sha256 = "0cp8sbhym83db88ii7gyab6iqxppinjlrkzb9627gq7xgb5mqj5j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elfeed-org"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/elfeed-org"; sha256 = "0xf2r5ca3gnx2cv9f8rr4s1hds2ggqsbllvfr229gznkcqjnglik"; name = "elfeed-org"; }; @@ -14629,15 +14713,15 @@ elfeed-web = callPackage ({ elfeed, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, simple-httpd }: melpaBuild { pname = "elfeed-web"; - version = "20151222.1322"; + version = "20151222.1422"; src = fetchFromGitHub { owner = "skeeto"; repo = "elfeed"; - rev = "6213e60638b3bd780ccf6a655585e520fa292992"; - sha256 = "1w25xd1vnf6y1idq849rqbpx38zng05g4vvp6nk3s8ibj9hm2zfz"; + rev = "dc73660a165f2388cf2efb8000c326b818cd5ce7"; + sha256 = "18d0ac2z2vgsk1brxlv8k39nr4f22dvyqmqblbqv40rd0ra2r2w2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elfeed-web"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/elfeed-web"; sha256 = "14ydwvjjc6wbhkj4g4xdh0c3nh4asqsz8ln7my5vjib881vmaq1n"; name = "elfeed-web"; }; @@ -14650,7 +14734,7 @@ elhome = callPackage ({ fetchFromGitHub, fetchurl, initsplit, lib, melpaBuild }: melpaBuild { pname = "elhome"; - version = "20131202.1308"; + version = "20131202.1408"; src = fetchFromGitHub { owner = "demyanrogozhin"; repo = "elhome"; @@ -14658,7 +14742,7 @@ sha256 = "0rdhnnyn0xsmnshnf289kxk974r57i6nx0vii1w36j6p6q0b7f9h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elhome"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/elhome"; sha256 = "1k7936wxgslr29511dz9az38i9vi35rcxk68gzv35v9lpj89lalh"; name = "elhome"; }; @@ -14671,7 +14755,7 @@ elisp-depend = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "elisp-depend"; - version = "20120428.1504"; + version = "20120428.1604"; src = fetchFromGitHub { owner = "tehom"; repo = "elisp-depend"; @@ -14679,7 +14763,7 @@ sha256 = "1a73zdh4jkx8f74cq802b5j4bx8k1z7cbsp10lz40lmwwxbl3czq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elisp-depend"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/elisp-depend"; sha256 = "1x3acgkpd9a8xxjg5zjw0d4nv4q9xx30ipr6v3544mn16sv4ab7c"; name = "elisp-depend"; }; @@ -14689,10 +14773,31 @@ license = lib.licenses.free; }; }) {}; + elisp-format = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "elisp-format"; + version = "20090830.640"; + src = fetchFromGitHub { + owner = "emacsmirror"; + repo = "elisp-format"; + rev = "640316f4930978a632b16d24c1a2fa75798e0ff0"; + sha256 = "0pyf1zja696bgl46bqrksdzw94za08icd3qfzal58hf3zgil99ay"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/elisp-format"; + sha256 = "1x6dmjhds8smqkmg11ndiiir78714w4z2vrz04cnzq2v3wx1yiv4"; + name = "elisp-format"; + }; + packageRequires = []; + meta = { + homepage = "https://melpa.org/#/elisp-format"; + license = lib.licenses.free; + }; + }) {}; elisp-lint = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "elisp-lint"; - version = "20150430.1758"; + version = "20150430.1858"; src = fetchFromGitHub { owner = "nschum"; repo = "elisp-lint"; @@ -14700,7 +14805,7 @@ sha256 = "1ci6nyk1vvb3wgxzarbf6448i9rjb74zzrhcmls634gfxbryxdyy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elisp-lint"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/elisp-lint"; sha256 = "102hrxdw72bm11a29i15g09lv7jlnd7vkv7292fm3mcxf5f4hkw9"; name = "elisp-lint"; }; @@ -14713,7 +14818,7 @@ elisp-sandbox = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "elisp-sandbox"; - version = "20131116.1242"; + version = "20131116.1342"; src = fetchFromGitHub { owner = "joelmccracken"; repo = "elisp-sandbox"; @@ -14721,7 +14826,7 @@ sha256 = "168ljhscqyvp24lw70ylv4a3c0y51sx4f66lfahbs7zpjvwf25x0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elisp-sandbox"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/elisp-sandbox"; sha256 = "1bazm1cf9ghh9b7jzqqgyfcalnrfg7vmxqbn4fiy2c76gbzlr2bp"; name = "elisp-sandbox"; }; @@ -14734,7 +14839,7 @@ elisp-slime-nav = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "elisp-slime-nav"; - version = "20160128.1309"; + version = "20160128.1409"; src = fetchFromGitHub { owner = "purcell"; repo = "elisp-slime-nav"; @@ -14742,7 +14847,7 @@ sha256 = "11vyy0bvzbs1h1kggikrvhd658j7c730w0pdp6qkm60rigvfi1ih"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elisp-slime-nav"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/elisp-slime-nav"; sha256 = "009zgp68i4naprpjr8lcp06lh3i5ickn0nh0lgvrqs0niprnzh8c"; name = "elisp-slime-nav"; }; @@ -14755,15 +14860,15 @@ elixir-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, pkg-info }: melpaBuild { pname = "elixir-mode"; - version = "20160421.1512"; + version = "20160428.419"; src = fetchFromGitHub { owner = "elixir-lang"; repo = "emacs-elixir"; - rev = "bf2ddc0a693aba18a12468d7ba7ef27a08536450"; - sha256 = "0ln7ldfr4xha5x9v7cfxvfd53zxb6msx31bnf5vbx39w8fwxv2yy"; + rev = "e2b85785f51f43bd95b0430ab4b6e24945889ca5"; + sha256 = "1hxqms585s4sq3ymxm6ws1fwzqqx5n46rgfzzbwisdx0z9llhpqv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elixir-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/elixir-mode"; sha256 = "1dba3jfg210i2rw8qy866396xn2xjgmbcyl006d6fibpr3j4lxaf"; name = "elixir-mode"; }; @@ -14776,7 +14881,7 @@ elixir-yasnippets = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }: melpaBuild { pname = "elixir-yasnippets"; - version = "20150417.739"; + version = "20150417.839"; src = fetchFromGitHub { owner = "hisea"; repo = "elixir-yasnippets"; @@ -14784,7 +14889,7 @@ sha256 = "1sdq4372i19wdxpdp3347a1rf5zf5w6sa0da6lr511m7ri0lj6hd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elixir-yasnippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/elixir-yasnippets"; sha256 = "0vmkcd88wfafv31lyw0983p4qjj387qf258q7py1ij47fcmfp579"; name = "elixir-yasnippets"; }; @@ -14797,15 +14902,15 @@ elm-mode = callPackage ({ emacs, f, fetchFromGitHub, fetchurl, let-alist, lib, melpaBuild, s }: melpaBuild { pname = "elm-mode"; - version = "20160426.136"; + version = "20160504.145"; src = fetchFromGitHub { owner = "jcollard"; repo = "elm-mode"; - rev = "4fb26ae8e10d7b88e05a9e3a5c1b2cf3c8c2d6c3"; - sha256 = "0ly8i5x9ii781681xf9iisj5g83sfj2wf786072clll36ym4a7c1"; + rev = "b99ba394756e0214ce312b494b7299f0cdc1d43d"; + sha256 = "1ijpdwyx1xjkrqv9s52bml2hwp754h7dp7c3dypw4i62pbkdsy0n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elm-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/elm-mode"; sha256 = "1gw9szkyr1spcx7qijddhxlm36h0hmfd53b4yzp1336yx44mlnd1"; name = "elm-mode"; }; @@ -14818,7 +14923,7 @@ elm-yasnippets = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }: melpaBuild { pname = "elm-yasnippets"; - version = "20160401.24"; + version = "20160401.124"; src = fetchFromGitHub { owner = "abingham"; repo = "elm-yasnippets"; @@ -14826,7 +14931,7 @@ sha256 = "1zb5yra6znkr7yaq6wqlmlr054wkv9cy1dih8h4j2gp2wnfwg968"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elm-yasnippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/elm-yasnippets"; sha256 = "0nnr0sxkxviw2i7b5s8jgvsv7lgqxqvirmvmband84q9gxlz24zb"; name = "elm-yasnippets"; }; @@ -14839,7 +14944,7 @@ elmacro = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "elmacro"; - version = "20160224.1131"; + version = "20160224.1231"; src = fetchFromGitHub { owner = "Silex"; repo = "elmacro"; @@ -14847,7 +14952,7 @@ sha256 = "085ab50q3jdy3vh22lz2p5ivcjlhfki3zzfsp1n0939myw6vqcsm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elmacro"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/elmacro"; sha256 = "0644rgwawivrq1shsjx1x2p53z7jgr6bxqgn2smzql8pp6azy7xz"; name = "elmacro"; }; @@ -14860,7 +14965,7 @@ elmine = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "elmine"; - version = "20151121.623"; + version = "20151121.723"; src = fetchFromGitHub { owner = "leoc"; repo = "elmine"; @@ -14868,7 +14973,7 @@ sha256 = "1463y4zc6yabd30k6806yw0am18fjv0bkxm56p2siqrwn9pbsh8k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elmine"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/elmine"; sha256 = "1gi94dyz9x50swkvryd4vj36rqgz4s58nrb4h4vwwviiiqmc8fvz"; name = "elmine"; }; @@ -14881,7 +14986,7 @@ elnode = callPackage ({ creole, dash, db, fakir, fetchFromGitHub, fetchurl, kv, lib, melpaBuild, noflet, s, web }: melpaBuild { pname = "elnode"; - version = "20140203.1706"; + version = "20140203.1806"; src = fetchFromGitHub { owner = "nicferrier"; repo = "elnode"; @@ -14889,7 +14994,7 @@ sha256 = "0p3cj5vgka388i4dk9r7bx8pv8mywnfij9ahgqak5jlsddflh8hw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elnode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/elnode"; sha256 = "0piy5gy9a7c8s10b99fmdyh6glhvjvdyrz0x2bv30h7wplx5szi6"; name = "elnode"; }; @@ -14902,7 +15007,7 @@ elog = callPackage ({ eieio ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "elog"; - version = "20160426.722"; + version = "20160426.822"; src = fetchFromGitHub { owner = "lujun9972"; repo = "elog"; @@ -14910,7 +15015,7 @@ sha256 = "0z3g7jddsjf4hmhwvi8mhd90255ylaix0ysljscqsixacknzcjm9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elog"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/elog"; sha256 = "0hixsi60nf0khm9xmya3saf95ahn1gydp0l5wxawsc491qwg4vqd"; name = "elog"; }; @@ -14923,7 +15028,7 @@ elogcat = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "elogcat"; - version = "20151120.1841"; + version = "20151120.1941"; src = fetchFromGitHub { owner = "youngker"; repo = "elogcat.el"; @@ -14931,7 +15036,7 @@ sha256 = "1jcr8bxffvnfs0ym6zkgs79hd6a0m81r4x4jr3v5l9zwxw04sy15"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elogcat"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/elogcat"; sha256 = "0sqdqlpg4firswr742nrb6b8sz3bpijf6pbxvandq3ddpm0rx9ia"; name = "elogcat"; }; @@ -14944,7 +15049,7 @@ elpa-audit = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "elpa-audit"; - version = "20141023.831"; + version = "20141023.931"; src = fetchFromGitHub { owner = "purcell"; repo = "elpa-audit"; @@ -14952,7 +15057,7 @@ sha256 = "1dadf24x6v1vk57bp6w0g2dysigy5cqjzwldc8dn129f4pfrhipy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elpa-audit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/elpa-audit"; sha256 = "0l8har14zrlh9kdkh9vlmkmzg49vb0r8j1wnznryaidalvk84a52"; name = "elpa-audit"; }; @@ -14965,15 +15070,15 @@ elpa-mirror = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "elpa-mirror"; - version = "20151123.653"; + version = "20160505.345"; src = fetchFromGitHub { owner = "redguardtoo"; repo = "elpa-mirror"; - rev = "6c32875c2317736e590e067820996010b21acb1d"; - sha256 = "1hjmvn3kls63alh0ihb5c8gf90lrfvq1hxrlf4162qiaa0s15f8a"; + rev = "940c17f757ddaf9c076503af2bb15d04f299692c"; + sha256 = "0h2xhys3cc9z61ax0ymg5fbsjg6192hwdvfhgmyq7vwibi402r1f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elpa-mirror"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/elpa-mirror"; sha256 = "1jnviav2ybr13cgllg26kfjrwrl25adggnqiiwyjwgbbzxfycah8"; name = "elpa-mirror"; }; @@ -14986,16 +15091,16 @@ elpy = callPackage ({ company, fetchFromGitHub, fetchurl, find-file-in-project, highlight-indentation, lib, melpaBuild, pyvenv, yasnippet }: melpaBuild { pname = "elpy"; - version = "20160131.318"; + version = "20160429.1329"; src = fetchFromGitHub { owner = "jorgenschaefer"; repo = "elpy"; - rev = "d4cd394236d1d148dcabd5048bd30961687627da"; - sha256 = "1xjm9b32a9nfzvphj6vm0dqcr4i072zcx29kcgiyyni8zbgbwmwv"; + rev = "c9487a14e9cb21b531660de7e648086e270ab08f"; + sha256 = "1x4asq5zqv8wbp034gzcrza9y2nbbwx1nrwi4jnwak0x0yn3c2dj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elpy"; - sha256 = "051irp7k0cp1hqp3hzrmapllf2iim7cq0iz38489g4fkh2ybk709"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/elpy"; + sha256 = "0n802bh7jj9zgz84xjrxvy33jl6s3hj5dqxafyfr87fank97hb6d"; name = "elpy"; }; packageRequires = [ @@ -15013,7 +15118,7 @@ elscreen = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "elscreen"; - version = "20151025.2000"; + version = "20151025.2100"; src = fetchFromGitHub { owner = "knu"; repo = "elscreen"; @@ -15021,7 +15126,7 @@ sha256 = "055kam18k4ni1zw3310cpsvdnrp62d579r30lq67ig2lq3yxzc1m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elscreen"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/elscreen"; sha256 = "1mlqbw14ilk6d3ba38kfw50pnlhb9f6sm5hy9dw58gp59siark5s"; name = "elscreen"; }; @@ -15034,7 +15139,7 @@ elscreen-buffer-group = callPackage ({ cl-lib ? null, elscreen, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "elscreen-buffer-group"; - version = "20160105.1003"; + version = "20160105.1103"; src = fetchFromGitHub { owner = "jeffgran"; repo = "elscreen-buffer-group"; @@ -15042,7 +15147,7 @@ sha256 = "0bbashrqpyhs282w5i15rzravvj0fjnydbh9vfnfnfnk8a9sssxz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elscreen-buffer-group"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/elscreen-buffer-group"; sha256 = "1clmhpk9zp6hsgz6a4jpmbrr9fr6k8b324s0x61n5yi4yzgdmc0v"; name = "elscreen-buffer-group"; }; @@ -15055,15 +15160,15 @@ elscreen-mew = callPackage ({ elscreen, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "elscreen-mew"; - version = "20140629.1016"; + version = "20160504.1435"; src = fetchFromGitHub { owner = "masutaka"; repo = "elscreen-mew"; - rev = "f66a2a5a8dd904791ede5133fdd183522b061bba"; - sha256 = "091dxsb73bhqmrddwnmvblmfpwa7v7fa0ha18daxc8j0lrhzdhlh"; + rev = "89871fad690ae161dc076e16ef481b1965612077"; + sha256 = "14hwl5jzmm43qa4jbpsyswbz4hk1l2iwqh3ank6502bz58877k6c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elscreen-mew"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/elscreen-mew"; sha256 = "06g4wcfjs036nn64ac0zsvr08cfmak2hyj83y7a0r35yxr1853w4"; name = "elscreen-mew"; }; @@ -15076,7 +15181,7 @@ elscreen-multi-term = callPackage ({ elscreen, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, multi-term }: melpaBuild { pname = "elscreen-multi-term"; - version = "20151021.2133"; + version = "20151021.2233"; src = fetchFromGitHub { owner = "wamei"; repo = "elscreen-multi-term"; @@ -15084,7 +15189,7 @@ sha256 = "1cninrbgxzg0gykkpjx0i8pk2yc7sgr2kliqd35lgcxz2q4jlr51"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elscreen-multi-term"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/elscreen-multi-term"; sha256 = "1zwrzblkag1d18xz450b7khsdssvsxyl1x6a682vy0dkn1y5qh1n"; name = "elscreen-multi-term"; }; @@ -15097,15 +15202,15 @@ elscreen-persist = callPackage ({ elscreen, fetchFromGitHub, fetchurl, lib, melpaBuild, revive }: melpaBuild { pname = "elscreen-persist"; - version = "20151218.126"; + version = "20160505.2129"; src = fetchFromGitHub { owner = "robario"; repo = "elscreen-persist"; - rev = "652b4c738f92c518ead69343ebfcf66bc2a0254c"; - sha256 = "06g7fl2c7cvwsrgi462wf6j13ny56y6zvgkizz9f256xjjq77ymf"; + rev = "79cb33909a9c66bb183432b956edffbc6b12ace3"; + sha256 = "0p0zphl3ylrbs3mz12y40hphslxd1hlszk1pqi151xrfgc2r0pp8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elscreen-persist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/elscreen-persist"; sha256 = "1rjfvpsx0y5l9b76wa1ilj5lx39jd0m78nb1a4bqn81z0rkfpl4k"; name = "elscreen-persist"; }; @@ -15118,7 +15223,7 @@ elscreen-separate-buffer-list = callPackage ({ elscreen, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "elscreen-separate-buffer-list"; - version = "20150522.145"; + version = "20150522.245"; src = fetchFromGitHub { owner = "wamei"; repo = "elscreen-separate-buffer-list"; @@ -15126,7 +15231,7 @@ sha256 = "1w34nnl4zalxzmyfbc81qd82m7qp3zvz608dx6hfi44pjz0dp36f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elscreen-separate-buffer-list"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/elscreen-separate-buffer-list"; sha256 = "1d8kc137cd8i3wglir1rlvk7w8mrdhd3xvcihi2f2f2g5nh2n5jk"; name = "elscreen-separate-buffer-list"; }; @@ -15139,7 +15244,7 @@ elwm = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "elwm"; - version = "20150817.507"; + version = "20150817.607"; src = fetchFromGitHub { owner = "Fuco1"; repo = "elwm"; @@ -15147,7 +15252,7 @@ sha256 = "1k7npf93xbmrsq607x8zlgrpzqvplgia3ixz5w1lr1jlv1m2m8x2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elwm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/elwm"; sha256 = "0rf663ih3lfg4n4pj4dpp133967zha5m1wr46riaxpha7xr59al9"; name = "elwm"; }; @@ -15160,7 +15265,7 @@ elx = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "elx"; - version = "20160220.1114"; + version = "20160220.1214"; src = fetchFromGitHub { owner = "tarsius"; repo = "elx"; @@ -15168,7 +15273,7 @@ sha256 = "0n5y3xq5dmqpsd9hhg9ac1jkj5qi9y7lgvg5nir3ghd8ldmrg09s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elx"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/elx"; sha256 = "02nq66c0sds61k2p8cn2l0p2l8ysb38ibr038qn41l9hg1dq065x"; name = "elx"; }; @@ -15181,7 +15286,7 @@ emacs-eclim = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, json ? null, lib, melpaBuild, popup, s }: melpaBuild { pname = "emacs-eclim"; - version = "20160411.1117"; + version = "20160411.1217"; src = fetchFromGitHub { owner = "emacs-eclim"; repo = "emacs-eclim"; @@ -15189,7 +15294,7 @@ sha256 = "1fj84r3r0kdprjy2sbzxgx7icfn6fbhvylbzfcv4wq5g7qbn45sz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/emacs-eclim"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/emacs-eclim"; sha256 = "1l55jhz5mb3bqw90cbf4jhcqgwj962br706qhm2wn5i2a1mg8xlv"; name = "emacs-eclim"; }; @@ -15202,7 +15307,7 @@ emacs-setup = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "emacs-setup"; - version = "20120727.926"; + version = "20120727.1026"; src = fetchFromGitHub { owner = "echosa"; repo = "emacs-setup"; @@ -15210,7 +15315,7 @@ sha256 = "15l3ab11vcmzqibkd6h5zqw5a83k8dmgcp4n26px29c0gv6bkpy8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/emacs-setup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/emacs-setup"; sha256 = "1x4rh8vx6fsb2d6dz2g9j6jamin1vmpppwy3yzbl1dnf7w4hx4kh"; name = "emacs-setup"; }; @@ -15223,7 +15328,7 @@ emacsagist = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "emacsagist"; - version = "20140331.1330"; + version = "20140331.1430"; src = fetchFromGitHub { owner = "echosa"; repo = "emacsagist"; @@ -15231,7 +15336,7 @@ sha256 = "0ciqxyahlzaxq854jm25zbrbmrhcaj5csdhxa0az9crwha8wkmw2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/emacsagist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/emacsagist"; sha256 = "1cyz7nf0zxa21979jf5kdmkgwiyd17vsmpcmrw1af37ly27l8l64"; name = "emacsagist"; }; @@ -15244,7 +15349,7 @@ emacsc = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "emacsc"; - version = "20150807.457"; + version = "20150807.557"; src = fetchFromGitHub { owner = "knu"; repo = "emacsc"; @@ -15252,7 +15357,7 @@ sha256 = "1rqr08gj07hw37mqd0flmq4a10wn16vy7wg0msqq0ab2smwjhns7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/emacsc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/emacsc"; sha256 = "1fbf9al3yds0il18jz6hbpj1fsjlpb1kgp450gb6r09lc46x77mk"; name = "emacsc"; }; @@ -15265,7 +15370,7 @@ emacsist-view = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "emacsist-view"; - version = "20160426.723"; + version = "20160426.823"; src = fetchFromGitHub { owner = "lujun9972"; repo = "emacsist-view"; @@ -15273,7 +15378,7 @@ sha256 = "1vhs9725fyl2j65lk014qz76iv4hsvyim06361h4lai634hp7ck6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/emacsist-view"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/emacsist-view"; sha256 = "0lf280ppi3zksqvx81y8mm9479j26kd5wywfghhwk36kz410hk99"; name = "emacsist-view"; }; @@ -15286,7 +15391,7 @@ emacsql = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, finalize, lib, melpaBuild }: melpaBuild { pname = "emacsql"; - version = "20160424.947"; + version = "20160424.1047"; src = fetchFromGitHub { owner = "skeeto"; repo = "emacsql"; @@ -15294,7 +15399,7 @@ sha256 = "012x6cx3rbxysvsmbx56y295ijdlpgy8z7ggcfp0cq0khki67yva"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/emacsql"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/emacsql"; sha256 = "1x4rn8dmgz871dhz878i2mqci576zccf9i2xmq2ishxgqm0hp8ax"; name = "emacsql"; }; @@ -15307,7 +15412,7 @@ emacsql-mysql = callPackage ({ cl-lib ? null, emacs, emacsql, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "emacsql-mysql"; - version = "20151004.915"; + version = "20151004.1015"; src = fetchFromGitHub { owner = "skeeto"; repo = "emacsql"; @@ -15315,7 +15420,7 @@ sha256 = "012x6cx3rbxysvsmbx56y295ijdlpgy8z7ggcfp0cq0khki67yva"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/emacsql-mysql"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/emacsql-mysql"; sha256 = "1c20zhpdzfqjds6kcjhiq1m5ch53fsx6n1xk30i35kkg1wxaaqzy"; name = "emacsql-mysql"; }; @@ -15328,7 +15433,7 @@ emacsql-psql = callPackage ({ cl-lib ? null, emacs, emacsql, fetchFromGitHub, fetchurl, lib, melpaBuild, pg }: melpaBuild { pname = "emacsql-psql"; - version = "20151004.915"; + version = "20151004.1015"; src = fetchFromGitHub { owner = "skeeto"; repo = "emacsql"; @@ -15336,7 +15441,7 @@ sha256 = "012x6cx3rbxysvsmbx56y295ijdlpgy8z7ggcfp0cq0khki67yva"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/emacsql-psql"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/emacsql-psql"; sha256 = "1aa1g9jyjmz6w0lmi2cf67926ad3xvs0qsg7lrccnllr9k0flly3"; name = "emacsql-psql"; }; @@ -15349,7 +15454,7 @@ emacsql-sqlite = callPackage ({ cl-lib ? null, emacs, emacsql, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "emacsql-sqlite"; - version = "20160311.1438"; + version = "20160311.1538"; src = fetchFromGitHub { owner = "skeeto"; repo = "emacsql"; @@ -15357,7 +15462,7 @@ sha256 = "012x6cx3rbxysvsmbx56y295ijdlpgy8z7ggcfp0cq0khki67yva"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/emacsql-sqlite"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/emacsql-sqlite"; sha256 = "1vywq3ypcs61s60y7x0ac8rdm9yj43iwzxh8gk9zdyrcn9qpis0i"; name = "emacsql-sqlite"; }; @@ -15370,15 +15475,15 @@ emacsshot = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "emacsshot"; - version = "20160303.205"; + version = "20160504.432"; src = fetchFromGitHub { owner = "marcowahl"; repo = "emacsshot"; - rev = "50684e5d3d703f353333317d13dca5026f7affd0"; - sha256 = "0qx874j4bj2791vkas77vfsnw9m7br940p6n7238zjgn7bccj6dv"; + rev = "7372eb7296e111af89ac61781b9ad66f91afb0af"; + sha256 = "08j10c699r8r8xynvlkm0vwlfza1fqz11zcfk2dsrakq3y9vb4ly"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/emacsshot"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/emacsshot"; sha256 = "08xqx017yfizdj8wz7nbh9i7qpar6398sri78abzf78inv828s9j"; name = "emacsshot"; }; @@ -15391,7 +15496,7 @@ emagician-fix-spell-memory = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "emagician-fix-spell-memory"; - version = "20141229.1634"; + version = "20141229.1734"; src = fetchFromGitHub { owner = "jonnay"; repo = "emagicians-starter-kit"; @@ -15399,7 +15504,7 @@ sha256 = "00iklf97mszrsdv20q55qhml1dscvmmalpfnlkwi9mabklyq3i6z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/emagician-fix-spell-memory"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/emagician-fix-spell-memory"; sha256 = "0ffjrpiph21dn8bplklsz3hrsai25l67yyr7n8qjxlwlibwqzv6j"; name = "emagician-fix-spell-memory"; }; @@ -15412,15 +15517,15 @@ emamux = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "emamux"; - version = "20160426.517"; + version = "20160506.432"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-emamux"; - rev = "3cdad568e4cb9a36c2f87b8ee57bdffb4d7ad2e0"; - sha256 = "0bpiwdzy40hw47zad5rxrzgjdx5isqil7vh5sg1qk8jzypy9shpm"; + rev = "0c9e4c8bed8e97805c5ca08c843dabda4217d1ab"; + sha256 = "0zjp7402pwm25rb04nq82mawx69mmvdbsrq3i7f2s75qzbgwv2v8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/emamux"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/emamux"; sha256 = "1pg0gzi8rn0yafssrsiqdyj5dbfy984srq1r4dpp8p3bi3n0fkfz"; name = "emamux"; }; @@ -15433,7 +15538,7 @@ emamux-ruby-test = callPackage ({ emamux, fetchFromGitHub, fetchurl, lib, melpaBuild, projectile }: melpaBuild { pname = "emamux-ruby-test"; - version = "20130812.1139"; + version = "20130812.1239"; src = fetchFromGitHub { owner = "syohex"; repo = "emamux-ruby-test"; @@ -15441,7 +15546,7 @@ sha256 = "1idsvilsvlxh72waalhl8vrsmh0vfvz56qcv56fc2c0pb1i90icn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/emamux-ruby-test"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/emamux-ruby-test"; sha256 = "1l1hp2dggjlc287qkfyj21w9lri4agh91g5x707qqq8nicdlv3xm"; name = "emamux-ruby-test"; }; @@ -15454,7 +15559,7 @@ ember-mode = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ember-mode"; - version = "20151103.421"; + version = "20151103.521"; src = fetchFromGitHub { owner = "madnificent"; repo = "ember-mode"; @@ -15462,7 +15567,7 @@ sha256 = "0cv8y6hr719648yxr2fbgb1hyg36m60bsbd57f2vvvqvg87si4jz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ember-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ember-mode"; sha256 = "0fwd34cim29dg802ibsfd120px9sj54d4wzp3ggmjjzwkl9ky7dx"; name = "ember-mode"; }; @@ -15475,7 +15580,7 @@ ember-yasnippets = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }: melpaBuild { pname = "ember-yasnippets"; - version = "20160201.1720"; + version = "20160201.1820"; src = fetchFromGitHub { owner = "ronco"; repo = "ember-yasnippets.el"; @@ -15483,7 +15588,7 @@ sha256 = "1sj033acw1q80accdfkrxw4kzfl8p1ld16y188ikbizvq75lfkpp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ember-yasnippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ember-yasnippets"; sha256 = "1jwkzcqcpy7ykdjhsqmg8ds6qyl4jglyjbgg7v301x068dsxkja6"; name = "ember-yasnippets"; }; @@ -15493,22 +15598,22 @@ license = lib.licenses.free; }; }) {}; - embrace = callPackage ({ emacs, expand-region, fetchFromGitHub, fetchurl, lib, melpaBuild }: + embrace = callPackage ({ cl-lib ? null, expand-region, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "embrace"; - version = "20160425.1538"; + version = "20160505.1719"; src = fetchFromGitHub { owner = "cute-jumper"; repo = "embrace.el"; - rev = "c3a0b30811693cb0aa7d68caed5e5d9a7946a79e"; - sha256 = "0vwxq4qhzajb1nlijd97a0jjl178jpy6n42ny41sm43395q8xnb2"; + rev = "0b82b30fc0b318d910138ac5bd7a52f626d5a5fc"; + sha256 = "1lk4sq1m9lmapb2mnn50mkwfbk90zlx7rc6j18a692y0iagk4m8h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/embrace"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/embrace"; sha256 = "1w9zp9n91703d6jd4adl2xk574wsr7fm2a9v32b1i9bi3hr0hdjc"; name = "embrace"; }; - packageRequires = [ emacs expand-region ]; + packageRequires = [ cl-lib expand-region ]; meta = { homepage = "https://melpa.org/#/embrace"; license = lib.licenses.free; @@ -15517,15 +15622,15 @@ emmet-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "emmet-mode"; - version = "20151213.938"; + version = "20160501.1451"; src = fetchFromGitHub { owner = "smihica"; repo = "emmet-mode"; - rev = "3a29a1ae17271a3dfe3cd47db034ee4036b2b144"; - sha256 = "0037nikvlcw6i228jym76pl1mgw4fn5dpz8hfr86b3m0zb012inj"; + rev = "3c2d5c3e86c317601cbf8d976c5611b8c73ac178"; + sha256 = "1dh43fhkaqljnh1517kf8h3rjqaygj6wdhcbsy7mzcac0jrbfsfc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/emmet-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/emmet-mode"; sha256 = "0wjv4hqddjvbdrmsxzav5rpwnm2n6lr86jzkrnav8f2kyzypdsnr"; name = "emmet-mode"; }; @@ -15537,14 +15642,14 @@ }) {}; emms = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: melpaBuild { pname = "emms"; - version = "20160304.1120"; + version = "20160304.1220"; src = fetchgit { url = "git://git.sv.gnu.org/emms.git"; rev = "ac15f46e19d259e5d49acdac877d0793be1c1ebe"; sha256 = "1y6l74sr553vygwpyf7di8cdg98hqpzccz81n24vj11a8g9qly1q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/emms"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/emms"; sha256 = "0kzli8b0z5maizfwhlhph1f5w3v6pwxvs2dfs90l8c0h97m4yy2m"; name = "emms"; }; @@ -15557,7 +15662,7 @@ emms-info-mediainfo = callPackage ({ emms, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "emms-info-mediainfo"; - version = "20131223.700"; + version = "20131223.800"; src = fetchFromGitHub { owner = "fgallina"; repo = "emms-info-mediainfo"; @@ -15565,7 +15670,7 @@ sha256 = "07qbbs2i05bqndr4dxb84z50wav8ffbc56f6saw6pdx6n0sw6n6n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/emms-info-mediainfo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/emms-info-mediainfo"; sha256 = "17x8vvfhx739hcj9j1nh6j4r6zqnwa5zq9zpi9b6lxc8979k3m4w"; name = "emms-info-mediainfo"; }; @@ -15578,7 +15683,7 @@ emms-mark-ext = callPackage ({ emms, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "emms-mark-ext"; - version = "20130528.2227"; + version = "20130528.2327"; src = fetchFromGitHub { owner = "vapniks"; repo = "emms-mark-ext"; @@ -15586,7 +15691,7 @@ sha256 = "03a7sn8pl0pnr05rmrrbw4hjyi8vpjqbvkvh0fqnij913a6qc64l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/emms-mark-ext"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/emms-mark-ext"; sha256 = "13h6hy8y0as0xfc1cg8balw63as81fzar32q9h4zhnndl3hc1081"; name = "emms-mark-ext"; }; @@ -15599,7 +15704,7 @@ emms-mode-line-cycle = callPackage ({ emacs, emms, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "emms-mode-line-cycle"; - version = "20160221.520"; + version = "20160221.620"; src = fetchFromGitHub { owner = "momomo5717"; repo = "emms-mode-line-cycle"; @@ -15607,7 +15712,7 @@ sha256 = "0q80f0plch6k4lhs8c9qm3mfycfbp3kn5sjrk9zxgxwnn901y9mp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/emms-mode-line-cycle"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/emms-mode-line-cycle"; sha256 = "1jdmfh1i9v84iy7bj2dbc3s2wfzkrby3pabd99gnqzd9gn1cn8ca"; name = "emms-mode-line-cycle"; }; @@ -15620,7 +15725,7 @@ emms-player-mpv = callPackage ({ emms, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "emms-player-mpv"; - version = "20160319.208"; + version = "20160319.308"; src = fetchFromGitHub { owner = "dochang"; repo = "emms-player-mpv"; @@ -15628,7 +15733,7 @@ sha256 = "104iw4bl6y33diqs5ayrvdljkhb6f9g2m5p5kh8klgy7z1yjhp4p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/emms-player-mpv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/emms-player-mpv"; sha256 = "175rmqx3bgys4chw8ylyf9rk07sg0llwbs9ivrv2d3ayhcz1lg9y"; name = "emms-player-mpv"; }; @@ -15641,15 +15746,15 @@ emms-player-mpv-jp-radios = callPackage ({ cl-lib ? null, emacs, emms, emms-player-simple-mpv, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "emms-player-mpv-jp-radios"; - version = "20160408.611"; + version = "20160501.933"; src = fetchFromGitHub { owner = "momomo5717"; repo = "emms-player-mpv-jp-radios"; - rev = "cda5e90055fbb5e62dccc0a70395c540be694e0b"; - sha256 = "1m6p8vf98galhrzv83ys2srvmzb52bimv872ibl0iib9d4hrkps8"; + rev = "81def6cb278179ac0d2be2da07920242cd21fc47"; + sha256 = "1phjrisr9m6rpd40y6f8iiagrr7vpqc8ksgwymi8w11b1kmxhdja"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/emms-player-mpv-jp-radios"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/emms-player-mpv-jp-radios"; sha256 = "0gdap5cv08pz370fl92v9lyvgkbbyjhp9wsc4kyjm4f4pwx9fybv"; name = "emms-player-mpv-jp-radios"; }; @@ -15662,7 +15767,7 @@ emms-player-simple-mpv = callPackage ({ cl-lib ? null, emacs, emms, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "emms-player-simple-mpv"; - version = "20151020.801"; + version = "20151020.901"; src = fetchFromGitHub { owner = "momomo5717"; repo = "emms-player-simple-mpv"; @@ -15670,7 +15775,7 @@ sha256 = "0ajxyv7yx4ni8dizs7acpsxnmy3c9s0dx28vw9y1ym0bxkgfyzrf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/emms-player-simple-mpv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/emms-player-simple-mpv"; sha256 = "15aljprjd74ha7wpzsmv3d873i6fy3x1jwhzm03hvw0sw18m25i1"; name = "emms-player-simple-mpv"; }; @@ -15683,7 +15788,7 @@ emms-soundcloud = callPackage ({ emms, fetchFromGitHub, fetchurl, json ? null, lib, melpaBuild }: melpaBuild { pname = "emms-soundcloud"; - version = "20131221.545"; + version = "20131221.645"; src = fetchFromGitHub { owner = "osener"; repo = "emms-soundcloud"; @@ -15691,7 +15796,7 @@ sha256 = "0nx5bb5fjmaa1nhkbfnhd1aydqrq390x4rl1vfh11ilnf52wzzld"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/emms-soundcloud"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/emms-soundcloud"; sha256 = "0nf1f719m4pvxn0mf4qyx8mzwhrhv6kchnrpiy9clx520y8x3dqi"; name = "emms-soundcloud"; }; @@ -15701,31 +15806,31 @@ license = lib.licenses.free; }; }) {}; - emms-status = callPackage ({ emms, fetchFromGitHub, fetchurl, lib, melpaBuild }: + emms-state = callPackage ({ emms, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { - pname = "emms-status"; - version = "20150314.735"; + pname = "emms-state"; + version = "20160504.405"; src = fetchFromGitHub { owner = "alezost"; - repo = "emms-status.el"; - rev = "770f23ff4f7e3b994325687302eac2c7131500b2"; - sha256 = "1vanlvszm05x8kyxqjmmywmzbi4bxnkc5jxfgg5b58z5ad7kmld8"; + repo = "emms-state.el"; + rev = "77930300222333b71eafd495cc1fee3a3585eb23"; + sha256 = "1kipxa9ax8zi9qqk19mknpg7nnlzgr734kh9bnklydipwnsy00pi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/emms-status"; - sha256 = "1nfyhp8l22ylh60hpk8fvr4hgmww8k2xi3q7dzpn5m2ph06fkdqa"; - name = "emms-status"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/emms-state"; + sha256 = "080y02hxxqfn0a0dhq5vm0r020v2q3h1612a2zkq5fxi8ssvhp9i"; + name = "emms-state"; }; packageRequires = [ emms ]; meta = { - homepage = "https://melpa.org/#/emms-status"; + homepage = "https://melpa.org/#/emms-state"; license = lib.licenses.free; }; }) {}; emoji-cheat-sheet-plus = callPackage ({ emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "emoji-cheat-sheet-plus"; - version = "20150617.831"; + version = "20150617.931"; src = fetchFromGitHub { owner = "syl20bnr"; repo = "emacs-emoji-cheat-sheet-plus"; @@ -15733,7 +15838,7 @@ sha256 = "1rk7am0xvpnv98yi7a62wlyh576md4n2ddj7nm201bjd4wdl2yxk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/emoji-cheat-sheet-plus"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/emoji-cheat-sheet-plus"; sha256 = "1ciwlbw0ihm0p5gnnl3safcj7dxwiy53bkj8cmw3i334al0gjnnv"; name = "emoji-cheat-sheet-plus"; }; @@ -15746,7 +15851,7 @@ emoji-display = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "emoji-display"; - version = "20140117.413"; + version = "20140117.513"; src = fetchFromGitHub { owner = "ikazuhiro"; repo = "emoji-display"; @@ -15754,7 +15859,7 @@ sha256 = "0sh4q4sb4j58ryvvmlsx7scry9inzgv2ssa87vbyzpxq0435l229"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/emoji-display"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/emoji-display"; sha256 = "04cf18z26d64l0sv8qkbxjixi2wbw23awd5fznvg1cs8ixss01j9"; name = "emoji-display"; }; @@ -15767,7 +15872,7 @@ emoji-fontset = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "emoji-fontset"; - version = "20151107.2247"; + version = "20151107.2347"; src = fetchFromGitHub { owner = "zonuexe"; repo = "emoji-fontset.el"; @@ -15775,7 +15880,7 @@ sha256 = "0qi7p1grann3mhaq8kc0yc27cp9fm983g2gaqddljchn7lmgagrr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/emoji-fontset"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/emoji-fontset"; sha256 = "19affsvlm1rzrzdh1k6xsv79icdkzx4izxivrd2ia6y2wcg9wc5d"; name = "emoji-fontset"; }; @@ -15788,7 +15893,7 @@ emojify = callPackage ({ emacs, fetchFromGitHub, fetchurl, ht, lib, melpaBuild, seq }: melpaBuild { pname = "emojify"; - version = "20160316.1148"; + version = "20160316.1248"; src = fetchFromGitHub { owner = "iqbalansari"; repo = "emacs-emojify"; @@ -15796,7 +15901,7 @@ sha256 = "1zz6q5jf22nwb9qlyxxrz56gz7x5gcxh6q6d0ybf4bapk35g3v0q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/emojify"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/emojify"; sha256 = "1sgd32qm43hwby75a9q2pz1yfzj988i35d8p9f18zvbxypy7b2yp"; name = "emojify"; }; @@ -15809,7 +15914,7 @@ empos = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "empos"; - version = "20151011.1416"; + version = "20151011.1516"; src = fetchFromGitHub { owner = "dimalik"; repo = "empos"; @@ -15817,7 +15922,7 @@ sha256 = "0bm0cxnv7g2dzfvfhkyy16kzn6shvy9gzypiqyjj42ng54xmhs0n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/empos"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/empos"; sha256 = "0wbrszl9rq4is0ymxq9lxpqzlfg93gljh6almjy0hp3cs7pkzyl4"; name = "empos"; }; @@ -15830,7 +15935,7 @@ emr = callPackage ({ cl-lib ? null, clang-format, dash, emacs, fetchFromGitHub, fetchurl, iedit, lib, list-utils, melpaBuild, paredit, popup, projectile, redshank, s }: melpaBuild { pname = "emr"; - version = "20160218.1947"; + version = "20160218.2047"; src = fetchFromGitHub { owner = "chrisbarrett"; repo = "emacs-refactor"; @@ -15838,7 +15943,7 @@ sha256 = "1frcn6694q74is8qbvrjkcsw0q1wz56z4gl35n4v3wakr9wvdvd1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/emr"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/emr"; sha256 = "05vpfxg6lviclnms2zyrza8dc87m60mimlwd11ihvsbngi9gcw8x"; name = "emr"; }; @@ -15863,7 +15968,7 @@ enclose = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "enclose"; - version = "20121008.1114"; + version = "20121008.1214"; src = fetchFromGitHub { owner = "rejeep"; repo = "enclose.el"; @@ -15871,7 +15976,7 @@ sha256 = "0dz5xm05d7irh1j8iy08jk521p19cjai1kw68z2nngnyf1az7cim"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/enclose"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/enclose"; sha256 = "1bkrv3cwhbiydgfjhmyjr96cvsgr9zi8n0ir1akgamccm2ln73d6"; name = "enclose"; }; @@ -15884,7 +15989,7 @@ encourage-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "encourage-mode"; - version = "20151128.305"; + version = "20151128.405"; src = fetchFromGitHub { owner = "halbtuerke"; repo = "encourage-mode.el"; @@ -15892,7 +15997,7 @@ sha256 = "0k5ns40s5nskn0zialwq96qll1v5k50lfa5xh8hxbpcamsfym6h8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/encourage-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/encourage-mode"; sha256 = "0fwn6w7s61c08z0d8z3awclqrhszia9is30gm2kx4hwr9dhhwh63"; name = "encourage-mode"; }; @@ -15905,7 +16010,7 @@ engine-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "engine-mode"; - version = "20150902.1235"; + version = "20150902.1335"; src = fetchFromGitHub { owner = "hrs"; repo = "engine-mode"; @@ -15913,7 +16018,7 @@ sha256 = "066pxfv4rpxgi7jxdyc0a3g5z9m1j66sbi5gh2l7m4rwhzkqchn9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/engine-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/engine-mode"; sha256 = "1gg7i93163m7k7lr3pnal1svymnhzwrfpfcdc0798d7ybv26gg8c"; name = "engine-mode"; }; @@ -15926,7 +16031,7 @@ enh-ruby-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "enh-ruby-mode"; - version = "20151123.341"; + version = "20151123.441"; src = fetchFromGitHub { owner = "zenspider"; repo = "enhanced-ruby-mode"; @@ -15934,7 +16039,7 @@ sha256 = "008wggl6xxk339njrgpj2fndbil7k9f3i2hg1mjwqk033j87nbz7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/enh-ruby-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/enh-ruby-mode"; sha256 = "0r486yajjf7vsaz92ypxpfmz2nsvw9giffpxb9szj7fcry3nfdns"; name = "enh-ruby-mode"; }; @@ -15947,7 +16052,7 @@ enlive = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "enlive"; - version = "20150824.749"; + version = "20150824.849"; src = fetchFromGitHub { owner = "zweifisch"; repo = "enlive"; @@ -15955,7 +16060,7 @@ sha256 = "0vd7zy06nqb1ayjlnf2wl0bfv1cqv2qcb3cgy3zr9k9c4whcd8jh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/enlive"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/enlive"; sha256 = "1dyayk37zik12qfh8zbjmhsch64yqsx3acrlm7hcnavx465hmhnz"; name = "enlive"; }; @@ -15968,7 +16073,7 @@ eno = callPackage ({ dash, edit-at-point, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "eno"; - version = "20160110.434"; + version = "20160110.534"; src = fetchFromGitHub { owner = "enoson"; repo = "eno.el"; @@ -15976,7 +16081,7 @@ sha256 = "1qimqrvk0myqfi2l3viigkx1ld90qpjgi1gs6xhw2g51r8x4i3in"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/eno"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/eno"; sha256 = "0k4n4vw261v3bcxg7pqhxr99vh673l963yjridl0dp1663gcrfpk"; name = "eno"; }; @@ -15989,7 +16094,7 @@ enotify = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "enotify"; - version = "20130407.848"; + version = "20130407.948"; src = fetchFromGitHub { owner = "laynor"; repo = "enotify"; @@ -15997,7 +16102,7 @@ sha256 = "0v5p97dvzrk3j59yjc6iny71j3fdw9bb8737wnnzm098ff42dfmd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/enotify"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/enotify"; sha256 = "0mii6m6zw9y8njgzi79rcf1n251iw7qz3yqjjij3c19rk3zpm5qi"; name = "enotify"; }; @@ -16010,15 +16115,15 @@ ensime = callPackage ({ company, dash, fetchFromGitHub, fetchurl, lib, melpaBuild, popup, s, sbt-mode, scala-mode2, yasnippet }: melpaBuild { pname = "ensime"; - version = "20160416.337"; + version = "20160504.1712"; src = fetchFromGitHub { owner = "ensime"; repo = "ensime-emacs"; - rev = "989a1333d294bcaa6bb9671e42e77f6716c7f436"; - sha256 = "00fcy1f0p8ibymaza3mmysjlchc79yzjgd7pp31fiq3y3hkriq2j"; + rev = "e17a3a48221af2455a2383c160a91db10594caa8"; + sha256 = "1xjlchjx4b7h3cbpga630zy6g3mq30za3bws42in0ha7v35q90ma"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ensime"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ensime"; sha256 = "1d8y72l7bh93x9zdj3d3qjhrrzr804rgi6kjifyrin772dffjwby"; name = "ensime"; }; @@ -16039,7 +16144,7 @@ envdir = callPackage ({ dash, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "envdir"; - version = "20160221.1323"; + version = "20160221.1423"; src = fetchFromGitHub { owner = "proofit404"; repo = "envdir-mode"; @@ -16047,7 +16152,7 @@ sha256 = "1jyhr9gv3d0rxv5iks2g9x6xbxqv1bvf1fnih96h4pgsfxz8wrp6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/envdir"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/envdir"; sha256 = "085bfm4w7flrv8jvzdnzbdg3j5n29xfzbs1wlrr29mg9dja6s8g8"; name = "envdir"; }; @@ -16060,7 +16165,7 @@ eopengrok = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, lib, magit, melpaBuild, s }: melpaBuild { pname = "eopengrok"; - version = "20160214.147"; + version = "20160214.247"; src = fetchFromGitHub { owner = "youngker"; repo = "eopengrok.el"; @@ -16068,7 +16173,7 @@ sha256 = "0pmawjfyihqygqz7y0nvyrs6jcvckqzkq9k6z6yanpvkd2x5g13x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/eopengrok"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/eopengrok"; sha256 = "0756x78113286hwk1i1m5s8xq04gh7zxb4fkmw58lg2ssff8q6av"; name = "eopengrok"; }; @@ -16081,7 +16186,7 @@ epc = callPackage ({ concurrent, ctable, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "epc"; - version = "20140610.34"; + version = "20140610.134"; src = fetchFromGitHub { owner = "kiwanami"; repo = "emacs-epc"; @@ -16089,7 +16194,7 @@ sha256 = "11z08y61xd00rlw5mcyrix8nx41mqs127wighhjsxsyzbfqydxdr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/epc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/epc"; sha256 = "1l9rcx07pa4b9z5654gyw6b64c95lcigzg15amphwr56v2g3rbzx"; name = "epc"; }; @@ -16102,7 +16207,7 @@ epic = callPackage ({ fetchFromGitHub, fetchurl, htmlize, lib, melpaBuild }: melpaBuild { pname = "epic"; - version = "20150503.237"; + version = "20150503.337"; src = fetchFromGitHub { owner = "yoshinari-nomura"; repo = "epic"; @@ -16110,7 +16215,7 @@ sha256 = "18gfi1287skv5xvh12arkvxy2c4fism8bdk42wc5q3y21h8nsiim"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/epic"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/epic"; sha256 = "0gfl8if83jbs0icz6gcjkwxvcz5v744k1kvqnbx3ga481kds9rqf"; name = "epic"; }; @@ -16123,7 +16228,7 @@ epkg = callPackage ({ closql, dash, emacs, fetchFromGitLab, fetchurl, lib, melpaBuild }: melpaBuild { pname = "epkg"; - version = "20160415.2116"; + version = "20160415.2216"; src = fetchFromGitLab { owner = "tarsius"; repo = "epkg"; @@ -16131,7 +16236,7 @@ sha256 = "0z60g9ln651cjfrjhwdm28x53kcpmap8zw26v0vjng288hlj8f9c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/epkg"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/epkg"; sha256 = "0vc1g29rfmgd2ks4lbz4599rbgcax7rgdva53ahhvp6say8fy22q"; name = "epkg"; }; @@ -16144,7 +16249,7 @@ epl = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "epl"; - version = "20150517.633"; + version = "20150517.733"; src = fetchFromGitHub { owner = "cask"; repo = "epl"; @@ -16152,7 +16257,7 @@ sha256 = "0s4k2grikhibd075435giv3bmba1mx71ndxlr0k1i0q0xawpyyb4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/epl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/epl"; sha256 = "0zr3r2hn9jaxscrl83hyixznb8l5dzfr6fsac76aa8x12xgsc5hn"; name = "epl"; }; @@ -16165,7 +16270,7 @@ epresent = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, org }: melpaBuild { pname = "epresent"; - version = "20160410.2101"; + version = "20160410.2201"; src = fetchFromGitHub { owner = "dakrone"; repo = "epresent"; @@ -16173,7 +16278,7 @@ sha256 = "1qa1nq63kax767gs53s75ihspirvh69l4xdm89mj57qvrbpz36z5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/epresent"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/epresent"; sha256 = "176d1nwsafi6fb0dnv35bfskp0xczyzf2939gi4bz69zh0161jg8"; name = "epresent"; }; @@ -16186,7 +16291,7 @@ eprime-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "eprime-mode"; - version = "20140513.1316"; + version = "20140513.1416"; src = fetchFromGitHub { owner = "AndrewHynes"; repo = "eprime-mode"; @@ -16194,7 +16299,7 @@ sha256 = "1wwg46xdb488wxvglwvsy08vznrnmdmmbcvm9vb60dy3gqjmz7cw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/eprime-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/eprime-mode"; sha256 = "0vswjcs24f3mdyw6ai7p21ab8pdn327lr2d6css0a5nrg539cn2g"; name = "eprime-mode"; }; @@ -16207,7 +16312,7 @@ eproject = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "eproject"; - version = "20151205.2330"; + version = "20151206.30"; src = fetchFromGitHub { owner = "jrockway"; repo = "eproject"; @@ -16215,7 +16320,7 @@ sha256 = "13ds5z2nvanx8cvxrzi0da6ixx7kw222z6mrlbs8cldqcmzm7xh2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/eproject"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/eproject"; sha256 = "0kpg4r57khbyinc73v9kj32b9m3b4nb5014r5fkl5mzzpzmd85b4"; name = "eproject"; }; @@ -16228,7 +16333,7 @@ erc-colorize = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "erc-colorize"; - version = "20160108.420"; + version = "20160108.520"; src = fetchFromGitHub { owner = "thisirs"; repo = "erc-colorize"; @@ -16236,7 +16341,7 @@ sha256 = "18r66yl52xm1gjbn0dm8z80gv4p3794pi91qa8i2sri4grbsyi5r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/erc-colorize"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/erc-colorize"; sha256 = "1m941q7ql3yb71s71783nvz822bwhn1krmin18fvh0fbsbbnck2a"; name = "erc-colorize"; }; @@ -16249,7 +16354,7 @@ erc-crypt = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "erc-crypt"; - version = "20160323.2039"; + version = "20160323.2139"; src = fetchFromGitHub { owner = "atomontage"; repo = "erc-crypt"; @@ -16257,7 +16362,7 @@ sha256 = "0yiv16k0b2399asghc7qv9c9pj6ih0rwc863dskr2isnpl39amra"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/erc-crypt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/erc-crypt"; sha256 = "1mzzqcxjnll4d9r9n5z80zfb3ywkd8jx6b49g02vwf1iak9h7hv3"; name = "erc-crypt"; }; @@ -16270,14 +16375,14 @@ erc-hipchatify = callPackage ({ alert, emacs, fetchhg, fetchurl, lib, melpaBuild, request, s }: melpaBuild { pname = "erc-hipchatify"; - version = "20160216.1814"; + version = "20160504.1445"; src = fetchhg { url = "https://bitbucket.com/seanfarley/erc-hipchatify"; - rev = "a1a163004d98"; - sha256 = "0bk4vr26abhbiwkmpns4hdlg23pxa25lca78fhz1900jkv4imk0f"; + rev = "b237cf8118fd"; + sha256 = "11a64rvhd88val6vg9l1d5j3zdjd0bbbwcqilj0wp6rbn57xy0w8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/erc-hipchatify"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/erc-hipchatify"; sha256 = "1a4gl05i757vvap0rzrfwms7mhw80sa84gvbwafrvj3x11rja24x"; name = "erc-hipchatify"; }; @@ -16290,7 +16395,7 @@ erc-hl-nicks = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "erc-hl-nicks"; - version = "20160202.1350"; + version = "20160202.1450"; src = fetchFromGitHub { owner = "leathekd"; repo = "erc-hl-nicks"; @@ -16298,7 +16403,7 @@ sha256 = "1k0g3bwp3w0dd6zwdv6k2wpqs2krjayilrzsr1hli649ljcx55d7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/erc-hl-nicks"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/erc-hl-nicks"; sha256 = "1lhw77n2nrjnb5yhnpm6yhbcp022xxjcmdgqf21z9rd0igss9mja"; name = "erc-hl-nicks"; }; @@ -16311,7 +16416,7 @@ erc-image = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "erc-image"; - version = "20150914.514"; + version = "20150914.614"; src = fetchFromGitHub { owner = "kidd"; repo = "erc-image.el"; @@ -16319,7 +16424,7 @@ sha256 = "03r13x2hxy4hk0n0ri5wld8rp8frx4j3mig6mn2v25k0cr52689f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/erc-image"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/erc-image"; sha256 = "1cgzygkysjyrsdr6jwqkxlnisxccsvh4kxgn19rk4n61ms7bafvf"; name = "erc-image"; }; @@ -16332,7 +16437,7 @@ erc-social-graph = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "erc-social-graph"; - version = "20150508.704"; + version = "20150508.804"; src = fetchFromGitHub { owner = "vibhavp"; repo = "erc-social-graph"; @@ -16340,7 +16445,7 @@ sha256 = "0k3gp4c74g5awk7v9lzb6py3dvf59nggh6dw7530cswxb6kg2psa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/erc-social-graph"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/erc-social-graph"; sha256 = "07arn3k89cqxab5x5lczv8bpgrbirmlw9p6c37fgrl3df6f46h4h"; name = "erc-social-graph"; }; @@ -16353,7 +16458,7 @@ erc-terminal-notifier = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "erc-terminal-notifier"; - version = "20140115.424"; + version = "20140115.524"; src = fetchFromGitHub { owner = "julienXX"; repo = "erc-terminal-notifier.el"; @@ -16361,7 +16466,7 @@ sha256 = "0cfqbqskh260zfq1lx1s8jz2351w2ij9m73rqim16fy7zr0s0670"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/erc-terminal-notifier"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/erc-terminal-notifier"; sha256 = "0vrxkg62qr3ki8n9mdn02sdni5fkj79fpkn0drx0a4kqp0nrrj7c"; name = "erc-terminal-notifier"; }; @@ -16374,7 +16479,7 @@ erc-track-score = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "erc-track-score"; - version = "20130328.715"; + version = "20130328.815"; src = fetchFromGitHub { owner = "jd"; repo = "erc-track-score.el"; @@ -16382,7 +16487,7 @@ sha256 = "0n107d77z04ahypa7hn2165kkb6490v4vkzdm5zwm4lfhvlmp0x2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/erc-track-score"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/erc-track-score"; sha256 = "19wjwah2n8ri6gyrsbzxnrvxwr5cj48sxrar1226n9miqvgj5whx"; name = "erc-track-score"; }; @@ -16395,7 +16500,7 @@ erc-tweet = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "erc-tweet"; - version = "20150920.758"; + version = "20150920.858"; src = fetchFromGitHub { owner = "kidd"; repo = "erc-tweet.el"; @@ -16403,7 +16508,7 @@ sha256 = "118q4zj9dh5xnimcsi229j5pflhcd8qz0p212kc4p9dmyrx2iw0n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/erc-tweet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/erc-tweet"; sha256 = "0bazwq21mah4qrzwaji6w13m91l6v9dqh9svxrd13ij8yycr184b"; name = "erc-tweet"; }; @@ -16416,7 +16521,7 @@ erc-twitch = callPackage ({ erc ? null, fetchFromGitHub, fetchurl, json ? null, lib, melpaBuild }: melpaBuild { pname = "erc-twitch"; - version = "20160421.2330"; + version = "20160422.30"; src = fetchFromGitHub { owner = "vibhavp"; repo = "erc-twitch"; @@ -16424,7 +16529,7 @@ sha256 = "1xsxykmhz34gmyj4jb26qfai7j95kzlc7vfydrajc6is7xlrwhfk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/erc-twitch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/erc-twitch"; sha256 = "08vlwcxrzc2ndm52112z1r0qnz6jlmjhiwq2j3j59fbw82ys61ia"; name = "erc-twitch"; }; @@ -16437,7 +16542,7 @@ erc-view-log = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "erc-view-log"; - version = "20140227.1439"; + version = "20140227.1539"; src = fetchFromGitHub { owner = "Niluge-KiWi"; repo = "erc-view-log"; @@ -16445,7 +16550,7 @@ sha256 = "0bzi2sh2fhrz49j5y53h6jgf41av6rx78smb3bbk6m74is8vim2y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/erc-view-log"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/erc-view-log"; sha256 = "1k6fawblz0d7kz1y7sa3q43s7ci28jsmzkp9vnl1nf55p9xvv4cf"; name = "erc-view-log"; }; @@ -16458,7 +16563,7 @@ erc-youtube = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "erc-youtube"; - version = "20150603.1636"; + version = "20150603.1736"; src = fetchFromGitHub { owner = "kidd"; repo = "erc-youtube.el"; @@ -16466,7 +16571,7 @@ sha256 = "0kh4amx3l3a14qaiyvjyak1jbybs6n49mdvzjrd1i2vd1y74zj5w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/erc-youtube"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/erc-youtube"; sha256 = "12ylxkskkgfv5x7vlkib963ichb3rlmdzkf4zh8a39cgl8wsmacx"; name = "erc-youtube"; }; @@ -16479,7 +16584,7 @@ erc-yt = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "erc-yt"; - version = "20150426.749"; + version = "20150426.849"; src = fetchFromGitHub { owner = "yhvh"; repo = "erc-yt"; @@ -16487,7 +16592,7 @@ sha256 = "1dlw34kaslyvnsrahf4rm76r2b7qqqn589i4mmhr23prl8xbz9z9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/erc-yt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/erc-yt"; sha256 = "0yrwvahv4l2s1aavy6y6mjlrw8l11i00a249825ab5yaxrkzz7xc"; name = "erc-yt"; }; @@ -16500,7 +16605,7 @@ ercn = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ercn"; - version = "20150523.1003"; + version = "20150523.1103"; src = fetchFromGitHub { owner = "leathekd"; repo = "ercn"; @@ -16508,7 +16613,7 @@ sha256 = "0xw3d9fz4kmn1myrsy44ki4bgg0aclv41wldl6r9nhvkrnri41cv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ercn"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ercn"; sha256 = "0yvis02bypw6v1zv7i326y8s6j0id558n0bdri52hr5pw85imnlp"; name = "ercn"; }; @@ -16521,7 +16626,7 @@ eredis = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "eredis"; - version = "20120808.2207"; + version = "20120808.2307"; src = fetchFromGitHub { owner = "justinhj"; repo = "eredis"; @@ -16529,7 +16634,7 @@ sha256 = "0cdyhklmsv0xfcq97c3wqh8scs6910jzvvp04w0jxlayd1dbzx49"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/eredis"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/eredis"; sha256 = "087lln2izn5bv7bprmbaciivf17vv4pz2cjl91hy2f0sww6nsiw8"; name = "eredis"; }; @@ -16542,7 +16647,7 @@ erefactor = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "erefactor"; - version = "20160121.359"; + version = "20160121.459"; src = fetchFromGitHub { owner = "mhayashi1120"; repo = "Emacs-erefactor"; @@ -16550,7 +16655,7 @@ sha256 = "1v8x6qmhywfxs7crzv7hfl5n4zq5y3ar40l873946l4wyk0wclng"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/erefactor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/erefactor"; sha256 = "0ma9sbrq4n8y5w7vvbhhgmw25aiykbq5yhxzm0knj32bgpviprw7"; name = "erefactor"; }; @@ -16563,15 +16668,15 @@ ergoemacs-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ergoemacs-mode"; - version = "20160419.3"; + version = "20160427.35"; src = fetchFromGitHub { owner = "ergoemacs"; repo = "ergoemacs-mode"; - rev = "6c5d5bc7a4e366dec328dfd3430f20b7b977f781"; - sha256 = "1swpwk0wrxn689cc5kqnh9rpis8k1an4k7sispj1b5k0916zp7wi"; + rev = "7ea675b7d40bd783defede77e7c2306d069b0dc5"; + sha256 = "1bkxk7qfmd9pz8g79x2rxs6bkmgzkid4f8wp5bj62r5i27qbx28p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ergoemacs-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ergoemacs-mode"; sha256 = "0h99m0n3q41lw5fm33pc1405lrxyc8rzghnc6c7j4a6gr1d82s62"; name = "ergoemacs-mode"; }; @@ -16584,7 +16689,7 @@ ergoemacs-status = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, mode-icons, powerline }: melpaBuild { pname = "ergoemacs-status"; - version = "20160318.38"; + version = "20160318.138"; src = fetchFromGitHub { owner = "ergoemacs"; repo = "ergoemacs-status"; @@ -16592,7 +16697,7 @@ sha256 = "06pdwrhflpi5rkigqnr5h3jzv3dm1p9nydpvql9w33ixm6qhjj71"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ergoemacs-status"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ergoemacs-status"; sha256 = "065pw31s8dmqpag7zj40iv6dbl0qln7c65gcyp7pz9agg9rp6vbb"; name = "ergoemacs-status"; }; @@ -16605,7 +16710,7 @@ erlang = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "erlang"; - version = "20151013.357"; + version = "20151013.457"; src = fetchFromGitHub { owner = "erlang"; repo = "otp"; @@ -16613,7 +16718,7 @@ sha256 = "1ss9jl5zasn7y7xk395igbbmaa2vw5pwhc120hs7hp07qqyqgyh0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/erlang"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/erlang"; sha256 = "1gmrdkfanivb9l5lmkl0853snlhl62w34537r82w11z2fbk9lxhc"; name = "erlang"; }; @@ -16626,7 +16731,7 @@ ert-async = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ert-async"; - version = "20151011.859"; + version = "20151011.959"; src = fetchFromGitHub { owner = "rejeep"; repo = "ert-async.el"; @@ -16634,7 +16739,7 @@ sha256 = "0hn9i405nfhjd1h9vnwj43nxbbz00khrwkjq0acfyxjaz1shfac9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ert-async"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ert-async"; sha256 = "004798ckri5j72j0xvzkyciss1iz4lw9gya2749hkjxlamg14cn5"; name = "ert-async"; }; @@ -16646,13 +16751,13 @@ }) {}; ert-expectations = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "ert-expectations"; - version = "20130824.700"; + version = "20130824.800"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/ert-expectations.el"; sha256 = "0cwy3ilsid90abzzjb7ha2blq9kmv3gfp3icwwfcz6qczgirq6g7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ert-expectations"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ert-expectations"; sha256 = "094lkf1h83rc0dkvdv8923xjrzj5pnpnsb4izk8n5n7g0rbz1l9w"; name = "ert-expectations"; }; @@ -16665,14 +16770,14 @@ ert-junit = callPackage ({ ert ? null, fetchgit, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ert-junit"; - version = "20140830.1721"; + version = "20140830.1821"; src = fetchgit { url = "https://bitbucket.org/olanilsson/ert-junit"; rev = "c303c04da7a3ba4d2c46b00b79b67ff7ec57cc6d"; sha256 = "0ipcpsymbpicg0b0v1gbv0hkjwg8pq5d5rj1lfx1cbf3adkxvpzf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ert-junit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ert-junit"; sha256 = "0bv22mhh1ahbjwi6s1csxkh11dmy0srabkddjd33l4havykxlg6g"; name = "ert-junit"; }; @@ -16685,7 +16790,7 @@ ert-modeline = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, projectile, s }: melpaBuild { pname = "ert-modeline"; - version = "20140115.415"; + version = "20140115.515"; src = fetchFromGitHub { owner = "chrisbarrett"; repo = "ert-modeline"; @@ -16693,7 +16798,7 @@ sha256 = "08yfq3qzscxvzyxvyvdqpkrm787278yhkdd9prbvrgjj80p8n7vq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ert-modeline"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ert-modeline"; sha256 = "06pc50q9ggin20cbfafxd53x35ac3kh85dap0nbws7514f473m7b"; name = "ert-modeline"; }; @@ -16706,7 +16811,7 @@ ert-runner = callPackage ({ ansi, commander, dash, f, fetchFromGitHub, fetchurl, lib, melpaBuild, s, shut-up }: melpaBuild { pname = "ert-runner"; - version = "20160330.106"; + version = "20160330.206"; src = fetchFromGitHub { owner = "rejeep"; repo = "ert-runner.el"; @@ -16714,7 +16819,7 @@ sha256 = "0cjdpk0v07yzxbxqhxlgrk0nh9cj31yx6dd90d9f7jd4bxyzkzbb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ert-runner"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ert-runner"; sha256 = "0fnb8rmjr5lvc3dq0fnyxhws8ync1lj5xp8ycs63z4ax6gmdqr48"; name = "ert-runner"; }; @@ -16727,7 +16832,7 @@ es-lib = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "es-lib"; - version = "20141111.1230"; + version = "20141111.1330"; src = fetchFromGitHub { owner = "sabof"; repo = "es-lib"; @@ -16735,7 +16840,7 @@ sha256 = "0jq4yp80wiphlpsc0429rg8n50g8l4lf78q0l3nywz2p93smjy9b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/es-lib"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/es-lib"; sha256 = "0mwvgf5385qsp91zsdw75ipif1h90xy277xdmrpwixsxd7abbn0n"; name = "es-lib"; }; @@ -16745,22 +16850,22 @@ license = lib.licenses.free; }; }) {}; - es-mode = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: + es-mode = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, lib, melpaBuild, spark }: melpaBuild { pname = "es-mode"; - version = "20160408.2129"; + version = "20160428.843"; src = fetchFromGitHub { owner = "dakrone"; repo = "es-mode"; - rev = "8d0f4872846be9f117736179cb5dff781fc9d9c9"; - sha256 = "0gap1n1611wx18zcnnb03zgmpmagiyfgnnq0jpbrcpv84c9svrkh"; + rev = "0fe8d7aa7cbf34bf144a1cf5bf20d463e2cf4c92"; + sha256 = "1l9lw0rcwyym0xamr72cpv7xahb0qs2pnlz4g3zjvl19acqz9f5j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/es-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/es-mode"; sha256 = "1541c7d8gbi4mgxwk886hgsxhq7bfx8is7hjjg80sfn40z6kdwcp"; name = "es-mode"; }; - packageRequires = [ cl-lib dash ]; + packageRequires = [ cl-lib dash spark ]; meta = { homepage = "https://melpa.org/#/es-mode"; license = lib.licenses.free; @@ -16769,7 +16874,7 @@ es-windows = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "es-windows"; - version = "20140211.304"; + version = "20140211.404"; src = fetchFromGitHub { owner = "sabof"; repo = "es-windows"; @@ -16777,7 +16882,7 @@ sha256 = "14rsifcx2kwdmwq9zh41fkb848l0f4igp5v9pk3x4jd2yw9gay7m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/es-windows"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/es-windows"; sha256 = "112ngkan0hv3y7m71479f46x5gwdmf0vhbqrzs5kcjwlacqlrahx"; name = "es-windows"; }; @@ -16790,15 +16895,15 @@ esa = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "esa"; - version = "20160407.850"; + version = "20160501.240"; src = fetchFromGitHub { owner = "nabinno"; repo = "esa.el"; - rev = "846ab3d970792cd741141f9e652a4c50aae3920c"; - sha256 = "1p5ycfiir5b40hfv4iwyj7qv0ljlpcg630a47w8rx557vbwv7jdz"; + rev = "b944078e190f050f8312eb7ea91dab4d049ca080"; + sha256 = "1rxfqj46zg3xgg7miflgsb187xa9fpwcvrbkqj41g8lvmycdnm0a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/esa"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/esa"; sha256 = "1kbsv4xsp7p9v0g22had0dr7w5zsr24bgi2xzryy76699pxq4h6c"; name = "esa"; }; @@ -16811,7 +16916,7 @@ escreen = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "escreen"; - version = "20091203.1213"; + version = "20091203.1313"; src = fetchFromGitHub { owner = "emacsmirror"; repo = "escreen"; @@ -16819,7 +16924,7 @@ sha256 = "0id7820vjbprlpprj4fyhylkjvx00b87mw4n7jnxn1gczvjgafmc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/escreen"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/escreen"; sha256 = "0yis27362jc63jkzdndz1wpysmf1b51rrbv3swvi6b36da5i6b54"; name = "escreen"; }; @@ -16832,7 +16937,7 @@ esh-buf-stack = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "esh-buf-stack"; - version = "20140107.418"; + version = "20140107.518"; src = fetchFromGitHub { owner = "tom-tan"; repo = "esh-buf-stack"; @@ -16840,7 +16945,7 @@ sha256 = "1k8k9hl9m4vjqdw3x9wg04cy2lb9x64mq0mm0i3i6w59zrsnkn4q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/esh-buf-stack"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/esh-buf-stack"; sha256 = "0zmwlsm98m9vbjk9mldfj2nf6cip7mlvb71j33ddix76yqggp4qg"; name = "esh-buf-stack"; }; @@ -16853,7 +16958,7 @@ esh-help = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "esh-help"; - version = "20140107.422"; + version = "20140107.522"; src = fetchFromGitHub { owner = "tom-tan"; repo = "esh-help"; @@ -16861,7 +16966,7 @@ sha256 = "1yfvdx763xxhxf2r6kjjjyafaxrj1lpgrz1sgbhzkyj6nspmm9ms"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/esh-help"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/esh-help"; sha256 = "1k925wmn8jy9rxxsxxawasxq6r4yzwl116digdx314gd3i04sh3w"; name = "esh-help"; }; @@ -16874,7 +16979,7 @@ eshell-autojump = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "eshell-autojump"; - version = "20150927.224"; + version = "20150927.324"; src = fetchFromGitHub { owner = "coldnew"; repo = "eshell-autojump"; @@ -16882,7 +16987,7 @@ sha256 = "13crzgkx1lham1nfsg6hj2zg875majvnig0v4ydg691zk1qi4hc2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/eshell-autojump"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/eshell-autojump"; sha256 = "09l2680hknmdbwr4cncv1v4b0adik0c3sm5i9m3qbwyyxm8m41i5"; name = "eshell-autojump"; }; @@ -16895,7 +17000,7 @@ eshell-did-you-mean = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "eshell-did-you-mean"; - version = "20150915.1452"; + version = "20150915.1552"; src = fetchFromGitHub { owner = "xuchunyang"; repo = "eshell-did-you-mean"; @@ -16903,7 +17008,7 @@ sha256 = "0v0wshck5n4hspcv1zk1g2nm6xiigcjp16lx0dc8wzkl6ymljvbg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/eshell-did-you-mean"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/eshell-did-you-mean"; sha256 = "1z1wpn3sj1gi5nn0a71wg0i3av0dijnk79dc32zh3qlh500kz8mz"; name = "eshell-did-you-mean"; }; @@ -16916,7 +17021,7 @@ eshell-git-prompt = callPackage ({ cl-lib ? null, dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "eshell-git-prompt"; - version = "20150929.47"; + version = "20150929.147"; src = fetchFromGitHub { owner = "xuchunyang"; repo = "eshell-git-prompt"; @@ -16924,7 +17029,7 @@ sha256 = "1b94pamb92a26lvlbwyr7kgaiwax4hkgmmalh8l5ldcwxkscq09c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/eshell-git-prompt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/eshell-git-prompt"; sha256 = "0a8pyppqvnavvb8rwsjxagb76hra9zhs5gwa0ylyznmql83f8w8s"; name = "eshell-git-prompt"; }; @@ -16937,7 +17042,7 @@ eshell-prompt-extras = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "eshell-prompt-extras"; - version = "20160418.1030"; + version = "20160418.1130"; src = fetchFromGitHub { owner = "hiddenlotus"; repo = "eshell-prompt-extras"; @@ -16945,7 +17050,7 @@ sha256 = "0lhmqnqrcnwnir0kqhkhnda6dyn7ggcidmk6lf24p57n3sf33pww"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/eshell-prompt-extras"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/eshell-prompt-extras"; sha256 = "0kh4lvjkayjdz5lqvdqmdcblxizxk9kwmigjwa68kx8z6ngmfwa5"; name = "eshell-prompt-extras"; }; @@ -16958,7 +17063,7 @@ eshell-z = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "eshell-z"; - version = "20151110.2246"; + version = "20151110.2346"; src = fetchFromGitHub { owner = "xuchunyang"; repo = "eshell-z"; @@ -16966,7 +17071,7 @@ sha256 = "0znk2wmvk7b5mi727cawbddvzx74dlm1lwsxgkiylx2qp299ark0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/eshell-z"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/eshell-z"; sha256 = "14ixazj0nscyqsdv7brqnfr0q8llir1pwb91yhl9jdqypmadpm6d"; name = "eshell-z"; }; @@ -16979,7 +17084,7 @@ espresso-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "espresso-theme"; - version = "20130301.148"; + version = "20130301.248"; src = fetchFromGitHub { owner = "dgutov"; repo = "espresso-theme"; @@ -16987,7 +17092,7 @@ sha256 = "0ir7j4dgy0fq9ybixaqs52kiqk73p9v6prgqzjs8nyicjrpmnpyq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/espresso-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/espresso-theme"; sha256 = "1bsff8fnq5z0f6cwg6wprz8qi3ivsqxpxx6v6fxfammn74qqyvb5"; name = "espresso-theme"; }; @@ -17000,7 +17105,7 @@ espuds = callPackage ({ dash, f, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "espuds"; - version = "20151114.959"; + version = "20151114.1059"; src = fetchFromGitHub { owner = "ecukes"; repo = "espuds"; @@ -17008,7 +17113,7 @@ sha256 = "16r4j27j9yfdiy841w9q5ykkc6n3wrm7hvfacagb32mydk821ijg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/espuds"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/espuds"; sha256 = "16yzw9l64ahf5v92jzb7vyb4zqxxplq6qh0y9rkfmvm59s4nhk6c"; name = "espuds"; }; @@ -17021,7 +17126,7 @@ esqlite = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, pcsv }: melpaBuild { pname = "esqlite"; - version = "20151206.606"; + version = "20151206.706"; src = fetchFromGitHub { owner = "mhayashi1120"; repo = "Emacs-esqlite"; @@ -17029,7 +17134,7 @@ sha256 = "05f8n24yvzm3zjvc1523ib44wv76ms5sn6mv8s1wrjsl190av0rn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/esqlite"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/esqlite"; sha256 = "1dny5qjzl9gaj90ihzbhliwk0n0x7jz333hzf6gaw7wsjmx91wlh"; name = "esqlite"; }; @@ -17042,7 +17147,7 @@ esqlite-helm = callPackage ({ esqlite, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "esqlite-helm"; - version = "20151116.250"; + version = "20151116.350"; src = fetchFromGitHub { owner = "mhayashi1120"; repo = "Emacs-esqlite"; @@ -17050,7 +17155,7 @@ sha256 = "05f8n24yvzm3zjvc1523ib44wv76ms5sn6mv8s1wrjsl190av0rn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/esqlite-helm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/esqlite-helm"; sha256 = "00y2nwyx13xlny40afczr31lvbpnw1cgmj5wc3iycyznizg5kvhq"; name = "esqlite-helm"; }; @@ -17063,15 +17168,15 @@ ess = callPackage ({ fetchFromGitHub, fetchurl, julia-mode, lib, melpaBuild }: melpaBuild { pname = "ess"; - version = "20160426.1056"; + version = "20160506.1627"; src = fetchFromGitHub { owner = "emacs-ess"; repo = "ESS"; - rev = "09e32812327b7c349501334a24c6f9f8d576aa48"; - sha256 = "0954p9kwp40r6gxidpr92al4vjiqcbzljmi87r2f33nayrrz3gd6"; + rev = "a54e3eeddb50166f3da47b40d94218db62ebe588"; + sha256 = "0yidsrw25317krhaycs1g71z1g96b0c2j2ar66abgxmcf92gwx9k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ess"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ess"; sha256 = "02kz4fjxr0vrj5mg13cq758nzykizq4dmsijraxv46snvh337v5i"; name = "ess"; }; @@ -17084,7 +17189,7 @@ ess-R-data-view = callPackage ({ ctable, ess, fetchFromGitHub, fetchurl, lib, melpaBuild, popup }: melpaBuild { pname = "ess-R-data-view"; - version = "20130509.658"; + version = "20130509.758"; src = fetchFromGitHub { owner = "myuhe"; repo = "ess-R-data-view.el"; @@ -17092,7 +17197,7 @@ sha256 = "1ya2ay52gkrd31pmw45ban8kkxgnzhhwkzkypwdhjfccq3ys835x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ess-R-data-view"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ess-R-data-view"; sha256 = "0r2fzwayf3yb7fqk6f31x4xfqiiczwik8qw4rrvkqx2h3s1kz7i0"; name = "ess-R-data-view"; }; @@ -17105,7 +17210,7 @@ ess-R-object-popup = callPackage ({ ess, fetchFromGitHub, fetchurl, lib, melpaBuild, popup }: melpaBuild { pname = "ess-R-object-popup"; - version = "20130302.536"; + version = "20130302.636"; src = fetchFromGitHub { owner = "myuhe"; repo = "ess-R-object-popup.el"; @@ -17113,7 +17218,7 @@ sha256 = "0q8pbaa6wahli6fh0kng5zmnypsxi1fr2bzs2mfk3h8vf4nikpv0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ess-R-object-popup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ess-R-object-popup"; sha256 = "1dxwgahfki6d6ywh85ifk3kq6f2a1114kkd8xcv4lcpzqykp93zj"; name = "ess-R-object-popup"; }; @@ -17126,7 +17231,7 @@ ess-smart-equals = callPackage ({ emacs, ess, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ess-smart-equals"; - version = "20150202.1"; + version = "20150202.101"; src = fetchFromGitHub { owner = "genovese"; repo = "ess-smart-equals"; @@ -17134,7 +17239,7 @@ sha256 = "0ici253mllqyzcbhxrazfj2kl50brr8qid99fk9nlyfgh516ms1x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ess-smart-equals"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ess-smart-equals"; sha256 = "0mfmxmsqr2byj56psx4h08cjc2j3aac3xqr04yd47k2mlivnyrxp"; name = "ess-smart-equals"; }; @@ -17147,7 +17252,7 @@ ess-smart-underscore = callPackage ({ ess, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ess-smart-underscore"; - version = "20131229.2051"; + version = "20131229.2151"; src = fetchFromGitHub { owner = "mattfidler"; repo = "ess-smart-underscore.el"; @@ -17155,7 +17260,7 @@ sha256 = "01xa98q0pqsf4gyl6ixlpjjdqazqsxg1sf7a3j2wbh7196ps61v5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ess-smart-underscore"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ess-smart-underscore"; sha256 = "01pki1xa8zpgvldcbjwg6vmslj7ddf44hsx976xipc95vrdk15r2"; name = "ess-smart-underscore"; }; @@ -17168,7 +17273,7 @@ ess-view = callPackage ({ ess, f, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "ess-view"; - version = "20160309.1515"; + version = "20160309.1615"; src = fetchFromGitHub { owner = "GioBo"; repo = "ess-view"; @@ -17176,7 +17281,7 @@ sha256 = "1fdg8a4nsyjhwqsslawfvij77g3fp9klpas7m8vwjsjpc85iwh3x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ess-view"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ess-view"; sha256 = "1zx5sbxmbs6ya349ic7yvnx56v3km2cb27p8kan5ygisnwwq2wc4"; name = "ess-view"; }; @@ -17189,7 +17294,7 @@ esup = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "esup"; - version = "20151227.1150"; + version = "20151227.1250"; src = fetchFromGitHub { owner = "jschaf"; repo = "esup"; @@ -17197,7 +17302,7 @@ sha256 = "034rs6mmc5f6y8ply2a90b5s4pi4qx9m49wsxc9v0zwa9i5skmx1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/esup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/esup"; sha256 = "0cv3zc2zzm38ki3kxq58g9sp4gsk3dffa398wky6z83a3zc02zs0"; name = "esup"; }; @@ -17210,7 +17315,7 @@ esxml = callPackage ({ fetchFromGitHub, fetchurl, kv, lib, melpaBuild }: melpaBuild { pname = "esxml"; - version = "20151013.1328"; + version = "20151013.1428"; src = fetchFromGitHub { owner = "tali713"; repo = "esxml"; @@ -17218,7 +17323,7 @@ sha256 = "0mrfkq3jcsjfccqir02yijl24hllc347b02y7gk3b2yn0b676dv3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/esxml"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/esxml"; sha256 = "0nn074abkxz7p4w59l1za586p5ya392xhl3sx92yys8a3194n6hz"; name = "esxml"; }; @@ -17231,7 +17336,7 @@ etable = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, interval-list, lib, melpaBuild }: melpaBuild { pname = "etable"; - version = "20150327.1216"; + version = "20150327.1316"; src = fetchFromGitHub { owner = "Fuco1"; repo = "ETable"; @@ -17239,7 +17344,7 @@ sha256 = "1k361bbwd9z17qlycymb1x7scidvgvrh9bdp06rhwfh9j3slrbxy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/etable"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/etable"; sha256 = "0m4h24mmhp680wfhb90im228mrcyxapzyi4kla8xdmss83gc0c32"; name = "etable"; }; @@ -17251,13 +17356,13 @@ }) {}; etags-select = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "etags-select"; - version = "20130824.700"; + version = "20130824.800"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/etags-select.el"; sha256 = "0gmlmxlwfsfk5axn3x5cfvqy9bx26ynpbg50mdxiljk7wzqs5dyb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/etags-select"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/etags-select"; sha256 = "0j6mxj10n7jf087l7j86s3a8si5hzpwmvrpqisfvlnvn6a0rdy7h"; name = "etags-select"; }; @@ -17269,13 +17374,13 @@ }) {}; etags-table = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "etags-table"; - version = "20130824.657"; + version = "20130824.757"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/etags-table.el"; sha256 = "0apm8as606bbkpa7i1hkwcbajzsmsyxn6cwfk9dkkll5bh4vglqf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/etags-table"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/etags-table"; sha256 = "1jzij9jknab42jmx358g7f1c0d8lsp9baxbk3xsy7w4nl0l53d84"; name = "etags-table"; }; @@ -17288,7 +17393,7 @@ ethan-wspace = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ethan-wspace"; - version = "20160317.1120"; + version = "20160317.1220"; src = fetchFromGitHub { owner = "glasserc"; repo = "ethan-wspace"; @@ -17296,7 +17401,7 @@ sha256 = "0lp8rvwxyk7bz2yl3vgpql4rqb7xcs2xllnf2arpzzg0xcndxyg3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ethan-wspace"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ethan-wspace"; sha256 = "0k4kqkf5c6ysyhh1vpi9v4220yxm5ir3ippq2gmvvhnk77pg6hws"; name = "ethan-wspace"; }; @@ -17309,7 +17414,7 @@ euslisp-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "euslisp-mode"; - version = "20160422.255"; + version = "20160422.355"; src = fetchFromGitHub { owner = "iory"; repo = "euslisp-mode"; @@ -17317,7 +17422,7 @@ sha256 = "116n07fqg0q3y9c6b745mfl3w475wf6nch2y4nnill5mxg951c3l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/euslisp-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/euslisp-mode"; sha256 = "0qrd35jdr8p13x34972scyk6d0zrj1zh6vx9d740rjc8gmq0z5l4"; name = "euslisp-mode"; }; @@ -17330,7 +17435,7 @@ eval-in-repl = callPackage ({ ace-window, dash, fetchFromGitHub, fetchurl, lib, melpaBuild, paredit }: melpaBuild { pname = "eval-in-repl"; - version = "20160418.2043"; + version = "20160418.2143"; src = fetchFromGitHub { owner = "kaz-yos"; repo = "eval-in-repl"; @@ -17338,7 +17443,7 @@ sha256 = "07jlrngmnfp1jp30hx9vk42h065c74dz92b38sa18swzfmhwd4y5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/eval-in-repl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/eval-in-repl"; sha256 = "10h5vy9wdiqf9dgk1d1bsvp93y8sfcxghzg8zbhhn7m5cqg2wh63"; name = "eval-in-repl"; }; @@ -17351,7 +17456,7 @@ eval-sexp-fu = callPackage ({ fetchFromGitHub, fetchurl, highlight, lib, melpaBuild }: melpaBuild { pname = "eval-sexp-fu"; - version = "20131230.1551"; + version = "20131230.1651"; src = fetchFromGitHub { owner = "hchbaw"; repo = "eval-sexp-fu.el"; @@ -17359,7 +17464,7 @@ sha256 = "1syqakdyg3ydnq9gvkjf2rw9rz3kyhzp7avhy6dvyy65pv2ndyc2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/eval-sexp-fu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/eval-sexp-fu"; sha256 = "17cazf81z4cszflnfp66zyq2cclw5sp9539pxskdf267cf7r0ycs"; name = "eval-sexp-fu"; }; @@ -17372,7 +17477,7 @@ evalator = callPackage ({ fetchFromGitHub, fetchurl, helm-core, lib, melpaBuild }: melpaBuild { pname = "evalator"; - version = "20160212.1928"; + version = "20160212.2028"; src = fetchFromGitHub { owner = "seanirby"; repo = "evalator"; @@ -17380,7 +17485,7 @@ sha256 = "1llxxdprs8yw2hqj4dhrkrrzmkl25h7p4rcaa2cw544fmg3kvlz1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evalator"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/evalator"; sha256 = "0k6alxwg89gc4v5m2bxmzmj7l6kywhbh4036xgz19q28xnlbr9xk"; name = "evalator"; }; @@ -17393,7 +17498,7 @@ evalator-clojure = callPackage ({ cider, evalator, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "evalator-clojure"; - version = "20160208.1548"; + version = "20160208.1648"; src = fetchFromGitHub { owner = "seanirby"; repo = "evalator-clojure"; @@ -17401,7 +17506,7 @@ sha256 = "1q5s1ffmfh5dby92853xm8kjhgjfd5vbvcg1xbf8lswc1i41k7n7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evalator-clojure"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/evalator-clojure"; sha256 = "10mxlgirnsq3z7l1izrf2v1l1yr4sbdjsaszz7llqv6l80y4bji3"; name = "evalator-clojure"; }; @@ -17414,14 +17519,14 @@ evil = callPackage ({ fetchhg, fetchurl, goto-chg, lib, melpaBuild, undo-tree }: melpaBuild { pname = "evil"; - version = "20160420.123"; + version = "20160506.1321"; src = fetchhg { url = "https://bitbucket.com/lyro/evil"; - rev = "5bbbfd0c8832"; - sha256 = "037d5skihr3z1v3pvd1qg10pgygb4adznf6z0bysdvisjny298nv"; + rev = "7ceb2f84a8dc"; + sha256 = "0gqgfqzasz0pi17in9fpsibg52cs3b61s5bs15wkrbx57qx9hbzh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/evil"; sha256 = "09qrhy7l229w0qk3ba1i2xg4vqz8525v8scrbm031lqp30jp54hc"; name = "evil"; }; @@ -17434,7 +17539,7 @@ evil-anzu = callPackage ({ anzu, evil, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "evil-anzu"; - version = "20150124.1809"; + version = "20150124.1909"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-evil-anzu"; @@ -17442,7 +17547,7 @@ sha256 = "0cnj91lwpmk4c8nf3xi80yvv6anvkg8h1kbzbp16glkgmy6jpmy8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-anzu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/evil-anzu"; sha256 = "19cmc61l370mm4h2m6jw5pdcsvj4wcv9zpa8z7k1fjg57mwmmn70"; name = "evil-anzu"; }; @@ -17455,7 +17560,7 @@ evil-args = callPackage ({ evil, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "evil-args"; - version = "20140329.1629"; + version = "20140329.1729"; src = fetchFromGitHub { owner = "wcsmith"; repo = "evil-args"; @@ -17463,7 +17568,7 @@ sha256 = "1nh7wa4ynr7ln42x32znzqsmh7ijzy5ymd7rszf49l8677alvazq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-args"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/evil-args"; sha256 = "1bwdvf1i3jc77bw2as1wr1djm8z3a7wms60694xkyqh0m909hs2w"; name = "evil-args"; }; @@ -17476,7 +17581,7 @@ evil-avy = callPackage ({ avy, cl-lib ? null, emacs, evil, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "evil-avy"; - version = "20150908.248"; + version = "20150908.348"; src = fetchFromGitHub { owner = "louy2"; repo = "evil-avy"; @@ -17484,7 +17589,7 @@ sha256 = "1q6znbnshk45mdglx519qlbfhb7g47qsm245i93ka4djsjy55j9l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-avy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/evil-avy"; sha256 = "1hc96dd78yxgr8cs9sk9y1i5h1qnyk110vlb3wnlxv1hwn92qvrd"; name = "evil-avy"; }; @@ -17497,7 +17602,7 @@ evil-cleverparens = callPackage ({ dash, emacs, evil, fetchFromGitHub, fetchurl, lib, melpaBuild, paredit, smartparens }: melpaBuild { pname = "evil-cleverparens"; - version = "20151201.2238"; + version = "20151201.2338"; src = fetchFromGitHub { owner = "luxbock"; repo = "evil-cleverparens"; @@ -17505,7 +17610,7 @@ sha256 = "08cpgbwsrk8n88qiq2z90s6wx0ayvrrb38m8dks595x2qzzpa1gi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-cleverparens"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/evil-cleverparens"; sha256 = "10zkyaxy52ixh26hzm9v1y0gakcn5sdwz4ny8v1vcmjqjphnk799"; name = "evil-cleverparens"; }; @@ -17518,7 +17623,7 @@ evil-commentary = callPackage ({ evil, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "evil-commentary"; - version = "20160221.1430"; + version = "20160221.1530"; src = fetchFromGitHub { owner = "linktohack"; repo = "evil-commentary"; @@ -17526,7 +17631,7 @@ sha256 = "183fdg7rmnnbps0knnj2kmhf1hxk0q91wbqx1flhciq6wq4rilni"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-commentary"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/evil-commentary"; sha256 = "151iiimmkpn58pl9zn40qssfahbrqy83axyl9dcd6kx2ywv5gcxz"; name = "evil-commentary"; }; @@ -17539,7 +17644,7 @@ evil-dvorak = callPackage ({ evil, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "evil-dvorak"; - version = "20160416.1341"; + version = "20160416.1441"; src = fetchFromGitHub { owner = "jbranso"; repo = "evil-dvorak"; @@ -17547,7 +17652,7 @@ sha256 = "15rnxhqc56g4ydr8drvcgzvjp8blxsarm86dqc36rym7g5gnxr20"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-dvorak"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/evil-dvorak"; sha256 = "1iq9wzcb625vs942khja39db1js8r46vrdiqcm47yfji98g39gsn"; name = "evil-dvorak"; }; @@ -17560,7 +17665,7 @@ evil-easymotion = callPackage ({ avy, cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "evil-easymotion"; - version = "20160425.2337"; + version = "20160426.37"; src = fetchFromGitHub { owner = "PythonNut"; repo = "evil-easymotion"; @@ -17568,7 +17673,7 @@ sha256 = "11j1d59nk5v12h30dc93b5ic4piijwgy4gj7d8vf8rr8d3r2bicb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-easymotion"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/evil-easymotion"; sha256 = "0zixgdhc228y6yqr044cbyls0pihzacqsgvybhhar916p4h8izgv"; name = "evil-easymotion"; }; @@ -17581,7 +17686,7 @@ evil-ediff = callPackage ({ evil, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "evil-ediff"; - version = "20160202.1441"; + version = "20160202.1541"; src = fetchFromGitHub { owner = "justbur"; repo = "evil-ediff"; @@ -17589,7 +17694,7 @@ sha256 = "16pz48gdpl68azaqwyixh10y1x9xzi1lnhq2v0nrd0y6bfcqcvc7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-ediff"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/evil-ediff"; sha256 = "1xwl2511byb00ybfnm6q6mbkgzarrq8bfv5rbip67zqbw2qgmb6i"; name = "evil-ediff"; }; @@ -17599,10 +17704,31 @@ license = lib.licenses.free; }; }) {}; + evil-embrace = callPackage ({ emacs, embrace, evil, evil-surround, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "evil-embrace"; + version = "20160505.1658"; + src = fetchFromGitHub { + owner = "cute-jumper"; + repo = "evil-embrace.el"; + rev = "abcc0621773129aca9069c1b3af8148a82703aaf"; + sha256 = "03y01rx07cmi7vjkchqc0zap69if1hh8nmip26lcn070xikgsdkq"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/evil-embrace"; + sha256 = "10cfkksh3llyfk26x36b7ri0x6a6hrcv275pxk7ckhs1pyhb14y7"; + name = "evil-embrace"; + }; + packageRequires = [ emacs embrace evil evil-surround ]; + meta = { + homepage = "https://melpa.org/#/evil-embrace"; + license = lib.licenses.free; + }; + }) {}; evil-escape = callPackage ({ cl-lib ? null, emacs, evil, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "evil-escape"; - version = "20160313.1405"; + version = "20160313.1505"; src = fetchFromGitHub { owner = "syl20bnr"; repo = "evil-escape"; @@ -17610,7 +17736,7 @@ sha256 = "0v30yfkyy21nl45f9c05rbkbpfivf173bn2470r1b9vxgx6gcj8g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-escape"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/evil-escape"; sha256 = "0rlwnnshcvsb5kn7db5qy39s89qmqlllvg2z8cnxyri8bsssks4k"; name = "evil-escape"; }; @@ -17623,7 +17749,7 @@ evil-exchange = callPackage ({ cl-lib ? null, evil, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "evil-exchange"; - version = "20160407.2318"; + version = "20160408.18"; src = fetchFromGitHub { owner = "Dewdrops"; repo = "evil-exchange"; @@ -17631,7 +17757,7 @@ sha256 = "0avaw5pgyv75nhbinjjpy30pgkwfq79fx2k9z034f1x76ls9s683"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-exchange"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/evil-exchange"; sha256 = "1mvw7w23yfbfmhzj6wimslbryb0gppryw24ac0wh4fzl9rdcma4r"; name = "evil-exchange"; }; @@ -17644,7 +17770,7 @@ evil-extra-operator = callPackage ({ evil, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "evil-extra-operator"; - version = "20160407.122"; + version = "20160407.222"; src = fetchFromGitHub { owner = "Dewdrops"; repo = "evil-extra-operator"; @@ -17652,7 +17778,7 @@ sha256 = "10vwyrg833imja3ak9fx0zackdjwlcncl7wm9dym3kjs6qf2rvv0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-extra-operator"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/evil-extra-operator"; sha256 = "066apin0yrjx7zr007p2h9p2nq58lz7qikzjzg0spqkb8vy7vkc5"; name = "evil-extra-operator"; }; @@ -17662,10 +17788,31 @@ license = lib.licenses.free; }; }) {}; + evil-find-char-pinyin = callPackage ({ evil, fetchFromGitHub, fetchurl, lib, melpaBuild, pinyinlib }: + melpaBuild { + pname = "evil-find-char-pinyin"; + version = "20160505.1505"; + src = fetchFromGitHub { + owner = "cute-jumper"; + repo = "evil-find-char-pinyin"; + rev = "4f03d2741a3c050dc5e16db15d6c143a441cc3f3"; + sha256 = "046043s8ps9xpl78h44wbs7qpvjfahrqx4fzccsyfmp2cj9a6jsk"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/evil-find-char-pinyin"; + sha256 = "0n52ijdf5hy7mn0rab4493zs2nrf7r1qkmvf0algqaj7bfjscs79"; + name = "evil-find-char-pinyin"; + }; + packageRequires = [ evil pinyinlib ]; + meta = { + homepage = "https://melpa.org/#/evil-find-char-pinyin"; + license = lib.licenses.free; + }; + }) {}; evil-god-state = callPackage ({ evil, fetchFromGitHub, fetchurl, god-mode, lib, melpaBuild }: melpaBuild { pname = "evil-god-state"; - version = "20141116.2055"; + version = "20141116.2155"; src = fetchFromGitHub { owner = "gridaphobe"; repo = "evil-god-state"; @@ -17673,7 +17820,7 @@ sha256 = "1cv24qnxxf6n1grf4n5969v8y9xll5zb9mbfdnq9iavdvhnndk2h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-god-state"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/evil-god-state"; sha256 = "1g547d58zf11qw0zz3fk5kmrzmfx1rhawyh5d2h8bll8hwygnrxf"; name = "evil-god-state"; }; @@ -17686,7 +17833,7 @@ evil-iedit-state = callPackage ({ evil, fetchFromGitHub, fetchurl, iedit, lib, melpaBuild }: melpaBuild { pname = "evil-iedit-state"; - version = "20160313.1356"; + version = "20160313.1456"; src = fetchFromGitHub { owner = "syl20bnr"; repo = "evil-iedit-state"; @@ -17694,7 +17841,7 @@ sha256 = "0r9gif2sgf84z8qniz6chr32av9g2i38rlyms81m8ssghf0j86ss"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-iedit-state"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/evil-iedit-state"; sha256 = "1dihyh7vqcp7kvfic613k7v33czr93hz04d635awrsyzgy8savhl"; name = "evil-iedit-state"; }; @@ -17707,7 +17854,7 @@ evil-indent-plus = callPackage ({ cl-lib ? null, evil, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "evil-indent-plus"; - version = "20151109.1306"; + version = "20151109.1406"; src = fetchFromGitHub { owner = "TheBB"; repo = "evil-indent-plus"; @@ -17715,7 +17862,7 @@ sha256 = "1g6r1ydscwjvmhh1zg4q3nap4avk8lb9msdqrh7dff6pla0r2qs6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-indent-plus"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/evil-indent-plus"; sha256 = "15vnvch0qsaram22d44k617bqhr9rrf8qc86sf20yvdyy3gi5j12"; name = "evil-indent-plus"; }; @@ -17728,7 +17875,7 @@ evil-indent-textobject = callPackage ({ evil, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "evil-indent-textobject"; - version = "20130831.1719"; + version = "20130831.1819"; src = fetchFromGitHub { owner = "cofi"; repo = "evil-indent-textobject"; @@ -17736,7 +17883,7 @@ sha256 = "0nghisnc49ivh56mddfdlcbqv3y2vqzjvkpgwv3zp80ga6ghvdmz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-indent-textobject"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/evil-indent-textobject"; sha256 = "172a3krid5lrx1w9xcifkhjnvlxg1nbz4w102d99d0grr9465r09"; name = "evil-indent-textobject"; }; @@ -17749,7 +17896,7 @@ evil-leader = callPackage ({ evil, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "evil-leader"; - version = "20140606.743"; + version = "20140606.843"; src = fetchFromGitHub { owner = "cofi"; repo = "evil-leader"; @@ -17757,7 +17904,7 @@ sha256 = "10xrlimsxk09z9cw6rxdz8qvvn1i0vhc1gdicwxri0j10p0hacl3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-leader"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/evil-leader"; sha256 = "154s2nb170hzksmc87wnzlwg3ic3w3ravgsfvwkyfi2q285vmra6"; name = "evil-leader"; }; @@ -17770,7 +17917,7 @@ evil-lisp-state = callPackage ({ bind-map, evil, fetchFromGitHub, fetchurl, lib, melpaBuild, smartparens }: melpaBuild { pname = "evil-lisp-state"; - version = "20160403.2148"; + version = "20160403.2248"; src = fetchFromGitHub { owner = "syl20bnr"; repo = "evil-lisp-state"; @@ -17778,7 +17925,7 @@ sha256 = "1n6r8xs670r5qp4b5f72nr9g8nlqcrx1v7yqqlbkgv8gns8n5xgh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-lisp-state"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/evil-lisp-state"; sha256 = "117irac05fs73n7sgja3zd7yh4nz9h0gw5b1b57lfkav6y3ndgcy"; name = "evil-lisp-state"; }; @@ -17788,10 +17935,31 @@ license = lib.licenses.free; }; }) {}; + evil-lispy = callPackage ({ evil, fetchFromGitHub, fetchurl, lib, lispy, melpaBuild }: + melpaBuild { + pname = "evil-lispy"; + version = "20160430.100"; + src = fetchFromGitHub { + owner = "sp3ctum"; + repo = "evil-lispy"; + rev = "e4fe89df13c3c2fbbfebfab2184f21b308f4e68f"; + sha256 = "19gx3n2q26x7p7pf2d9slvny390r39x0r19gkd424f6ksvigryvn"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/evil-lispy"; + sha256 = "17z830b0x6lhmqkk07hfbrg63c7q7mpn4zz1ppjd1smv4mcqzyld"; + name = "evil-lispy"; + }; + packageRequires = [ evil lispy ]; + meta = { + homepage = "https://melpa.org/#/evil-lispy"; + license = lib.licenses.free; + }; + }) {}; evil-magit = callPackage ({ evil, fetchFromGitHub, fetchurl, lib, magit, melpaBuild }: melpaBuild { pname = "evil-magit"; - version = "20160420.615"; + version = "20160420.715"; src = fetchFromGitHub { owner = "justbur"; repo = "evil-magit"; @@ -17799,7 +17967,7 @@ sha256 = "17dc48qc8sicmqngy8kpw7r0qm1gnzsal1106d4lx4z7d8lyhpvz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-magit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/evil-magit"; sha256 = "10mhq6mzpklk5sj28lvd478dv9k84s81ax5jkwwxj26mqdw1ybg6"; name = "evil-magit"; }; @@ -17812,7 +17980,7 @@ evil-mark-replace = callPackage ({ evil, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "evil-mark-replace"; - version = "20150424.218"; + version = "20150424.318"; src = fetchFromGitHub { owner = "redguardtoo"; repo = "evil-mark-replace"; @@ -17820,7 +17988,7 @@ sha256 = "01hccc49xxb6lnzr0lwkkwndbk4sv0jyyz3khbcxsgkpzjiydihv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-mark-replace"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/evil-mark-replace"; sha256 = "03cq43vlv1b53w4kw7mjvk026i8rzhhryfb27ddn6ipgc6xh68a0"; name = "evil-mark-replace"; }; @@ -17833,7 +18001,7 @@ evil-matchit = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "evil-matchit"; - version = "20160413.825"; + version = "20160413.925"; src = fetchFromGitHub { owner = "redguardtoo"; repo = "evil-matchit"; @@ -17841,7 +18009,7 @@ sha256 = "0x6rc98g7hvvmlgq31n7qanylrld6dzvg6n8qgzp4s544l0dwfw6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-matchit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/evil-matchit"; sha256 = "01z69n20qs4gngd28ry4kn825cax5km9hn96i87yrvq7nfa64swq"; name = "evil-matchit"; }; @@ -17854,15 +18022,15 @@ evil-mc = callPackage ({ cl-lib ? null, emacs, evil, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "evil-mc"; - version = "20160418.2349"; + version = "20160507.107"; src = fetchFromGitHub { owner = "gabesoft"; repo = "evil-mc"; - rev = "c5634386d66d3505e15f0c0876b123c1f7f22d2b"; - sha256 = "1dzcy4hlipwwb0j3jcaywapdrj8vwv8w4gcag7sawj2ywi06cljr"; + rev = "4abe04bf7007dbba444301483fe55d5861261404"; + sha256 = "1ayfrl0bk8i6mqaq4hwgd0wbigiw6ndsi3c2q6znahhcbdfzjjmq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-mc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/evil-mc"; sha256 = "0cq4xg6svb5gz4ra607wy768as2igla4h1xcrfnxldknk476fqqs"; name = "evil-mc"; }; @@ -17875,7 +18043,7 @@ evil-mu4e = callPackage ({ dash, emacs, evil, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "evil-mu4e"; - version = "20160214.522"; + version = "20160214.622"; src = fetchFromGitHub { owner = "JorisE"; repo = "evil-mu4e"; @@ -17883,7 +18051,7 @@ sha256 = "0zqmmv3if9zzq9fgjg8wj62pk1qn65nax9hsk9m7lx2ncdv8cph1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-mu4e"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/evil-mu4e"; sha256 = "1ks4vnga7dkz27a7gza5hakzbcsiqgkq1ysc0lcx7g82ihpmrrcq"; name = "evil-mu4e"; }; @@ -17896,7 +18064,7 @@ evil-multiedit = callPackage ({ cl-lib ? null, emacs, evil, fetchFromGitHub, fetchurl, iedit, lib, melpaBuild }: melpaBuild { pname = "evil-multiedit"; - version = "20160412.210"; + version = "20160412.310"; src = fetchFromGitHub { owner = "hlissner"; repo = "evil-multiedit"; @@ -17904,7 +18072,7 @@ sha256 = "16rrd02yr6rz4xlc35gr5d7ds3h168yhz4iinq8zmnlw778waz5j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-multiedit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/evil-multiedit"; sha256 = "0p02q9skqw2zhx7sfadqgs7vn518s72856962dam0xw4sqasplfp"; name = "evil-multiedit"; }; @@ -17917,7 +18085,7 @@ evil-nerd-commenter = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "evil-nerd-commenter"; - version = "20160209.249"; + version = "20160209.349"; src = fetchFromGitHub { owner = "redguardtoo"; repo = "evil-nerd-commenter"; @@ -17925,7 +18093,7 @@ sha256 = "0msk65smj05wgs8dr42wy0w265pgcffrpgbvclahxhyj9ypscwsb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-nerd-commenter"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/evil-nerd-commenter"; sha256 = "1pa5gh065hqn5mhs47qvjllwdwwafl0clk555mb6w7svq58r6i8d"; name = "evil-nerd-commenter"; }; @@ -17938,7 +18106,7 @@ evil-numbers = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "evil-numbers"; - version = "20140606.751"; + version = "20140606.851"; src = fetchFromGitHub { owner = "cofi"; repo = "evil-numbers"; @@ -17946,7 +18114,7 @@ sha256 = "1aq95hj8x13py0pwsnc6wvd8cc5yv5qin8ym9js42y5966vwj4np"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-numbers"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/evil-numbers"; sha256 = "1lpmkklwjdf7ayhv99g9zh3l9hzrwm0hr0ijvbc7yz3n398zn1b2"; name = "evil-numbers"; }; @@ -17959,7 +18127,7 @@ evil-org = callPackage ({ evil, evil-leader, fetchFromGitHub, fetchurl, lib, melpaBuild, org }: melpaBuild { pname = "evil-org"; - version = "20151203.147"; + version = "20151203.247"; src = fetchFromGitHub { owner = "edwtjo"; repo = "evil-org-mode"; @@ -17967,7 +18135,7 @@ sha256 = "0pir7a3xxbcp5f3q9pi36rpdpi8pbx18afmh0r3501ynssyjfq53"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-org"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/evil-org"; sha256 = "18w07fbafry3wb87f55kd8y0yra3s18a52f3m5kkdlcz5zwagi1c"; name = "evil-org"; }; @@ -17980,7 +18148,7 @@ evil-paredit = callPackage ({ evil, fetchFromGitHub, fetchurl, lib, melpaBuild, paredit }: melpaBuild { pname = "evil-paredit"; - version = "20150413.1548"; + version = "20150413.1648"; src = fetchFromGitHub { owner = "roman"; repo = "evil-paredit"; @@ -17988,7 +18156,7 @@ sha256 = "0b08y4spapl4g2292j3l4cr84gjlvm3rpma3gqld4yb1sxd7v78p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-paredit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/evil-paredit"; sha256 = "0xvxxa3gjgsrv10a61y0591bn3gj8v1ff2wck8s0svwfl076gyfy"; name = "evil-paredit"; }; @@ -18001,7 +18169,7 @@ evil-quickscope = callPackage ({ evil, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "evil-quickscope"; - version = "20160202.1324"; + version = "20160202.1424"; src = fetchFromGitHub { owner = "blorbx"; repo = "evil-quickscope"; @@ -18009,7 +18177,7 @@ sha256 = "1ja9ggj70wf0nmma4xnc1zdzg2crq9h1cv3cj7cgwjmllflgkfq7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-quickscope"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/evil-quickscope"; sha256 = "0xym1mh4p68i00l1lshywf5fdg1vw3szxp3fk9fwfcg04z6vd489"; name = "evil-quickscope"; }; @@ -18022,7 +18190,7 @@ evil-rails = callPackage ({ evil, fetchFromGitHub, fetchurl, lib, melpaBuild, projectile-rails }: melpaBuild { pname = "evil-rails"; - version = "20150803.646"; + version = "20150803.746"; src = fetchFromGitHub { owner = "antono"; repo = "evil-rails"; @@ -18030,7 +18198,7 @@ sha256 = "12rdx5zjp5pck008cykpw200rr1y0b3lj2dpzf82llfyfaxzh7wi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-rails"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/evil-rails"; sha256 = "0ah0nvzl30z19566kacyrsznsdm3cpij8n3bw3dfng7263rh60gj"; name = "evil-rails"; }; @@ -18043,7 +18211,7 @@ evil-rsi = callPackage ({ evil, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "evil-rsi"; - version = "20160221.1504"; + version = "20160221.1604"; src = fetchFromGitHub { owner = "linktohack"; repo = "evil-rsi"; @@ -18051,7 +18219,7 @@ sha256 = "1xz629qv1ss1fap397k48piawcwl8lrybraq5449bw1vvn1a4d9f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-rsi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/evil-rsi"; sha256 = "0mc39n72420n36kwyf9zpw1pgyih0aigfnmkbywb0yxgj7myc345"; name = "evil-rsi"; }; @@ -18064,7 +18232,7 @@ evil-search-highlight-persist = callPackage ({ fetchFromGitHub, fetchurl, highlight, lib, melpaBuild }: melpaBuild { pname = "evil-search-highlight-persist"; - version = "20151215.438"; + version = "20151215.538"; src = fetchFromGitHub { owner = "juanjux"; repo = "evil-search-highlight-persist"; @@ -18072,7 +18240,7 @@ sha256 = "1jfi2k9dm0cc9bx8klppm965ydhdw17a2n664199vhxrap6g27yk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-search-highlight-persist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/evil-search-highlight-persist"; sha256 = "0iia136js364iygi1mydyzwvizhic6w5z9pbwmhva4654pq8dzqy"; name = "evil-search-highlight-persist"; }; @@ -18085,15 +18253,15 @@ evil-smartparens = callPackage ({ emacs, evil, fetchFromGitHub, fetchurl, lib, melpaBuild, smartparens }: melpaBuild { pname = "evil-smartparens"; - version = "20151126.324"; + version = "20160502.455"; src = fetchFromGitHub { owner = "expez"; repo = "evil-smartparens"; - rev = "37c99cbbfbe637f98850adea3dee9dc14a3b7d76"; - sha256 = "18iwbxwdiicx2xrfdrh0cx1d90ykwh3a0fy96s6sl1mvnv9z50sw"; + rev = "a415c03783cc44a9aaf30adbfed37d76c7cf9397"; + sha256 = "1jvyj2qc340vzw379ij9vkzfw5qningkv0n1mwzhzhb1dg8i1ciq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-smartparens"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/evil-smartparens"; sha256 = "1viwrd6gfqmwhlil80pk68dikn3cjf9ddsy0z781z3qfx0j35qza"; name = "evil-smartparens"; }; @@ -18106,7 +18274,7 @@ evil-snipe = callPackage ({ cl-lib ? null, evil, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "evil-snipe"; - version = "20160413.1249"; + version = "20160413.1349"; src = fetchFromGitHub { owner = "hlissner"; repo = "evil-snipe"; @@ -18114,7 +18282,7 @@ sha256 = "17l5g1zg3dhnjmdlx486x3b3v7vp4z0l9fv12anmw442k37xwia4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-snipe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/evil-snipe"; sha256 = "0gcmpjw3iw7rjk86b2k6clfigp48vakfjd1a9n8qramhnc85rgkn"; name = "evil-snipe"; }; @@ -18127,7 +18295,7 @@ evil-space = callPackage ({ evil, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "evil-space"; - version = "20151208.628"; + version = "20151208.728"; src = fetchFromGitHub { owner = "linktohack"; repo = "evil-space"; @@ -18135,7 +18303,7 @@ sha256 = "1x4nphjq8lvg8qsm1pj04mk9n59xc6jlxiv5s3bih1nl4xkssrxy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-space"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/evil-space"; sha256 = "1asvh873r1xgffvz3nr653yn8h5ifaphnafp6wf1b1mja6as7f23"; name = "evil-space"; }; @@ -18145,22 +18313,22 @@ license = lib.licenses.free; }; }) {}; - evil-surround = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + evil-surround = callPackage ({ evil, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "evil-surround"; - version = "20160331.1021"; + version = "20160501.2004"; src = fetchFromGitHub { owner = "timcharper"; repo = "evil-surround"; - rev = "a4a04c6f016528502f0d7d05ea7a8c6c0912e3ed"; - sha256 = "0r4wkj2sbk814kxdd1q6523p1fdzk7a1sr54krvhmxhnl666l3xb"; + rev = "37a5f9e8d79a8990be695f7682a63a158530b697"; + sha256 = "1sl89qm3wgmsr1mld1nv18mz7fjc2wq11br6hkdf7qm733q68b7a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-surround"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/evil-surround"; sha256 = "1bcjxw0yrk2bqj5ihl5r2c4id0m9wbnj7fpd0wwmw9444xvwp8ag"; name = "evil-surround"; }; - packageRequires = []; + packageRequires = [ evil ]; meta = { homepage = "https://melpa.org/#/evil-surround"; license = lib.licenses.free; @@ -18169,7 +18337,7 @@ evil-tabs = callPackage ({ elscreen, evil, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "evil-tabs"; - version = "20160217.920"; + version = "20160217.1020"; src = fetchFromGitHub { owner = "krisajenkins"; repo = "evil-tabs"; @@ -18177,7 +18345,7 @@ sha256 = "1qklx0j3fz3mp87v64yqbyyq5csfymbjfwvy2s4nk634wbnrra93"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-tabs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/evil-tabs"; sha256 = "0qgvpv5hcai8wmkv2fp6i2vdy7qp4gwidwpzz8j6vl9519x73s62"; name = "evil-tabs"; }; @@ -18190,7 +18358,7 @@ evil-terminal-cursor-changer = callPackage ({ evil, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "evil-terminal-cursor-changer"; - version = "20150827.2151"; + version = "20150827.2251"; src = fetchFromGitHub { owner = "7696122"; repo = "evil-terminal-cursor-changer"; @@ -18198,7 +18366,7 @@ sha256 = "10aic2r1akk38hh761hr5vp9fjlh1m5nimag0nzdq5x9g9467cc8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-terminal-cursor-changer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/evil-terminal-cursor-changer"; sha256 = "1300ch6f8mkz45na1hdffglhw0cdrrxmwnbd3g4m3sl5z4midian"; name = "evil-terminal-cursor-changer"; }; @@ -18211,7 +18379,7 @@ evil-textobj-anyblock = callPackage ({ cl-lib ? null, evil, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "evil-textobj-anyblock"; - version = "20151017.1617"; + version = "20151017.1717"; src = fetchFromGitHub { owner = "noctuid"; repo = "evil-textobj-anyblock"; @@ -18219,7 +18387,7 @@ sha256 = "1v4z2snllgg32cy8glv7xl0m9ib7rwi5ixgdydz1d0sx0z62jyhw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-textobj-anyblock"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/evil-textobj-anyblock"; sha256 = "03vk30s2wkcszcjxmh5ww39rihnag9cp678wdzq4bnqy0c6rnjwa"; name = "evil-textobj-anyblock"; }; @@ -18232,7 +18400,7 @@ evil-textobj-column = callPackage ({ emacs, evil, fetchFromGitHub, fetchurl, lib, melpaBuild, names }: melpaBuild { pname = "evil-textobj-column"; - version = "20151228.1544"; + version = "20151228.1644"; src = fetchFromGitHub { owner = "noctuid"; repo = "evil-textobj-column"; @@ -18240,7 +18408,7 @@ sha256 = "0nff90v6d97n2xizvfz126ksrf7ngd5rp0j7k7lhbv0v5zcqgxiv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-textobj-column"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/evil-textobj-column"; sha256 = "13q3nawx05rn3k6kzq1889vxjznr454cib96pc9lmrq7h65lym2h"; name = "evil-textobj-column"; }; @@ -18253,7 +18421,7 @@ evil-tutor = callPackage ({ evil, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "evil-tutor"; - version = "20150103.50"; + version = "20150103.150"; src = fetchFromGitHub { owner = "syl20bnr"; repo = "evil-tutor"; @@ -18261,7 +18429,7 @@ sha256 = "00yfq8aflxvp2nnz7smgq0c5wlb7cips5irj8qs6193ixlkpffvx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-tutor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/evil-tutor"; sha256 = "1hvc2w5ykrgh62n4sxqqqcdk5sd7nmh6xzv4mir5vf9y2dgqcvsn"; name = "evil-tutor"; }; @@ -18274,15 +18442,15 @@ evil-vimish-fold = callPackage ({ emacs, evil, fetchFromGitHub, fetchurl, lib, melpaBuild, vimish-fold }: melpaBuild { pname = "evil-vimish-fold"; - version = "20160224.603"; + version = "20160430.740"; src = fetchFromGitHub { owner = "alexmurray"; repo = "evil-vimish-fold"; - rev = "ec7064f267b9ef04f6ed0a68490bf0f5cd026c32"; - sha256 = "0cn5dzyaicrf63hyg9mbqlkza1rmz0qh0hx06nawvagmh5xpkbv4"; + rev = "46f879698c7096d072ff9777c47a64dafa127c77"; + sha256 = "1z75wp4az5pykvn90vszfb9y8w675g1w288lx8ar9i2hyddsids4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-vimish-fold"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/evil-vimish-fold"; sha256 = "01wp4h97hjyzbpd7iighjj26m79499wp5pn8m4pa7v59f6r3sdk6"; name = "evil-vimish-fold"; }; @@ -18295,7 +18463,7 @@ evil-visual-mark-mode = callPackage ({ dash, evil, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "evil-visual-mark-mode"; - version = "20150202.1200"; + version = "20150202.1300"; src = fetchFromGitHub { owner = "roman"; repo = "evil-visual-mark-mode"; @@ -18303,7 +18471,7 @@ sha256 = "07cmql8zsqz1qchq2mp3qybbay499dk1yglisig6jfddcmrbbggz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-visual-mark-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/evil-visual-mark-mode"; sha256 = "1qgr2dfhfz6imnlznicl7lplajd1s8wny7mlxs1bkms3xjcjfi48"; name = "evil-visual-mark-mode"; }; @@ -18316,7 +18484,7 @@ evil-visualstar = callPackage ({ evil, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "evil-visualstar"; - version = "20160222.1848"; + version = "20160222.1948"; src = fetchFromGitHub { owner = "bling"; repo = "evil-visualstar"; @@ -18324,7 +18492,7 @@ sha256 = "0mkbzw12fav945icibc2293m5haxqr3hzkyli2cf4ssk6yvn0x4c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-visualstar"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/evil-visualstar"; sha256 = "135l9hjfbpn0a6p53picnpydi9qs5vrk2rfn64gxa5ag2apcyycy"; name = "evil-visualstar"; }; @@ -18337,7 +18505,7 @@ evm = callPackage ({ dash, f, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "evm"; - version = "20141007.656"; + version = "20141007.756"; src = fetchFromGitHub { owner = "rejeep"; repo = "evm.el"; @@ -18345,7 +18513,7 @@ sha256 = "0739v0m9vj70a55z0canslyqgafzys815i7a0r6bxj2f9iwq6rhb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/evm"; sha256 = "19l6cs5schbnph0pwhhj66gkxsswd4bmjpy79l9kxzpjf107wc03"; name = "evm"; }; @@ -18358,7 +18526,7 @@ ewmctrl = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ewmctrl"; - version = "20150630.338"; + version = "20150630.438"; src = fetchFromGitHub { owner = "flexibeast"; repo = "ewmctrl"; @@ -18366,7 +18534,7 @@ sha256 = "1frhcgkiys0pqrlcsi5zcl3ngblr38wrwfi6wzqk75x21rnwnbqv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ewmctrl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ewmctrl"; sha256 = "1w60pb7szai1kh06jd3qvgpzq3z1ci4a77ysnpqjfk326s6zv7hl"; name = "ewmctrl"; }; @@ -18379,7 +18547,7 @@ eww-lnum = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "eww-lnum"; - version = "20150102.912"; + version = "20150102.1012"; src = fetchFromGitHub { owner = "m00natic"; repo = "eww-lnum"; @@ -18387,7 +18555,7 @@ sha256 = "1i6zf17rwa390c33cbspz81dz86vwlphyhjjsia4gp205nfk3s20"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/eww-lnum"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/eww-lnum"; sha256 = "1y745z4wa90snizq2g0amdwwgjafd6hkrayn93ca50f1wghdbk79"; name = "eww-lnum"; }; @@ -18400,7 +18568,7 @@ exec-path-from-shell = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "exec-path-from-shell"; - version = "20160113.46"; + version = "20160113.146"; src = fetchFromGitHub { owner = "purcell"; repo = "exec-path-from-shell"; @@ -18408,7 +18576,7 @@ sha256 = "0xxk0cr28g7vw8cwsnwrdrc8xqr50g6m9h0v43mx2iws9pn9dd47"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/exec-path-from-shell"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/exec-path-from-shell"; sha256 = "1j6f52qs1m43878ikl6nplgb72pdbxfznkfn66wyzcfiz2hrvvm9"; name = "exec-path-from-shell"; }; @@ -18421,7 +18589,7 @@ expand-line = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "expand-line"; - version = "20151005.2107"; + version = "20151005.2207"; src = fetchFromGitHub { owner = "cheunghy"; repo = "expand-line"; @@ -18429,7 +18597,7 @@ sha256 = "0wz4h5hrr5ci0w8pynd2nr1b2zl5hl4pa8gc16mcabik5927rf7z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/expand-line"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/expand-line"; sha256 = "07nfgp6jlrb9wxqy835j79i4g88714zndidkda84z16qn2y901a9"; name = "expand-line"; }; @@ -18442,7 +18610,7 @@ expand-region = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "expand-region"; - version = "20150902.758"; + version = "20150902.858"; src = fetchFromGitHub { owner = "magnars"; repo = "expand-region.el"; @@ -18450,7 +18618,7 @@ sha256 = "0qqqv0pp25xg1zh72i6fsb7l9vi14nd96rx0qdj1f3pdwfidqms1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/expand-region"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/expand-region"; sha256 = "1c7f1nqsqdc75h22fxxnyg0m4yxj6l23sirk3c71fqj14paxqnwg"; name = "expand-region"; }; @@ -18463,7 +18631,7 @@ express = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, string-utils }: melpaBuild { pname = "express"; - version = "20140508.1541"; + version = "20140508.1641"; src = fetchFromGitHub { owner = "rolandwalker"; repo = "express"; @@ -18471,7 +18639,7 @@ sha256 = "0ah8zayipwp760909llb9whcdvmbsdgkg0x5y4qlcicm1r9kwcc7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/express"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/express"; sha256 = "0lhisy4ds96bwpc7k8w9ws1zi1qh0d36nhxsp36bqzfi09ig0nb9"; name = "express"; }; @@ -18484,7 +18652,7 @@ extempore-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "extempore-mode"; - version = "20160323.134"; + version = "20160323.234"; src = fetchFromGitHub { owner = "extemporelang"; repo = "extempore-emacs-mode"; @@ -18492,7 +18660,7 @@ sha256 = "0sx3kywaqb8sgywqgcx9gllz8zm53pr5vp82vlv7aj5h93lxhxzh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/extempore-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/extempore-mode"; sha256 = "1z8nzpcj27s74kxfjz7wyr3848jpd6mbyjkssd06ri5p694j9php"; name = "extempore-mode"; }; @@ -18505,7 +18673,7 @@ extend-dnd = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "extend-dnd"; - version = "20151122.1250"; + version = "20151122.1350"; src = fetchFromGitHub { owner = "mattfidler"; repo = "extend-dnd"; @@ -18513,7 +18681,7 @@ sha256 = "15dwl1rb3186k328a83dz9xmslc0px60ah16fifvmr3migis9hwz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/extend-dnd"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/extend-dnd"; sha256 = "0rknpvp8yw051pg3blvmjpp3c9a82jw7f10mq67ggbz98w227417"; name = "extend-dnd"; }; @@ -18526,7 +18694,7 @@ exwm-x = callPackage ({ cl-lib ? null, dmenu, exwm, fetchFromGitHub, fetchurl, lib, melpaBuild, start-menu, switch-window }: melpaBuild { pname = "exwm-x"; - version = "20160307.255"; + version = "20160307.355"; src = fetchFromGitHub { owner = "tumashu"; repo = "exwm-x"; @@ -18534,7 +18702,7 @@ sha256 = "1i9lklzg7fyi4rl0vv1lidx0shlhih0474bbjsvc74p19p5cmlrq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/exwm-x"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/exwm-x"; sha256 = "1d9q57vz63sk3h1g5gvp9xnmqkpa73wppmiy2bv8mxk11whl6xa3"; name = "exwm-x"; }; @@ -18547,7 +18715,7 @@ eyebrowse = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "eyebrowse"; - version = "20160102.1649"; + version = "20160102.1749"; src = fetchFromGitHub { owner = "wasamasa"; repo = "eyebrowse"; @@ -18555,7 +18723,7 @@ sha256 = "0w2g7rpw26j65j4r23w6j8nw3arw73l601kyy6qv9p9bkk1yc072"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/eyebrowse"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/eyebrowse"; sha256 = "09fkzm8z8nkr4s9fbmfcjc80h50051f48v6n14l76xicglr5p861"; name = "eyebrowse"; }; @@ -18568,13 +18736,13 @@ eyedropper = callPackage ({ fetchurl, hexrgb, lib, melpaBuild }: melpaBuild { pname = "eyedropper"; - version = "20151231.1501"; + version = "20151231.1601"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/eyedropper.el"; sha256 = "1fg3j0jlww2rqc6k2nq95hcg6i26nqdp043h7kyjcwrgqbjfsigl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/eyedropper"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/eyedropper"; sha256 = "07kdn90vm2nbdprw9hwdgi4py6gqzmrad09y1fwqdy49hrvbwdzk"; name = "eyedropper"; }; @@ -18587,7 +18755,7 @@ eyuml = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, request, s }: melpaBuild { pname = "eyuml"; - version = "20141028.1727"; + version = "20141028.1827"; src = fetchFromGitHub { owner = "antham"; repo = "eyuml"; @@ -18595,7 +18763,7 @@ sha256 = "1rgzydxv7c455vj1jm44vvs6xc4qgivqqb0g6zh5x4wdcpgdi2g9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/eyuml"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/eyuml"; sha256 = "0ada2gcl8bw9nn0fz8g9lbqy8a8w1554q03fzd7lv8qla33ri3wx"; name = "eyuml"; }; @@ -18608,7 +18776,7 @@ ez-query-replace = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ez-query-replace"; - version = "20140810.717"; + version = "20140810.817"; src = fetchFromGitHub { owner = "Wilfred"; repo = "ez-query-replace.el"; @@ -18616,7 +18784,7 @@ sha256 = "15qa09x206s7rxmk35rslqniydh6hdb3n2kbspm5zrndcmsqz4zi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ez-query-replace"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ez-query-replace"; sha256 = "1h9ijr1qagwp9vvikh7ajby0dqgfypjgc45s7d93zb9jrg2n5cgx"; name = "ez-query-replace"; }; @@ -18629,7 +18797,7 @@ f = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "f"; - version = "20160426.727"; + version = "20160426.827"; src = fetchFromGitHub { owner = "rejeep"; repo = "f.el"; @@ -18637,7 +18805,7 @@ sha256 = "0v6y897ibs589gry7xrs1vj14h9qd6riach6r27xf7386ji5hb6s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/f"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/f"; sha256 = "0s7fqav0dc9g4y5kqjjyqjs90gi34cahaxyx2s0kf9fwcgn23ja2"; name = "f"; }; @@ -18650,7 +18818,7 @@ fabric = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "fabric"; - version = "20141024.522"; + version = "20141024.622"; src = fetchFromGitHub { owner = "nlamirault"; repo = "fabric.el"; @@ -18658,7 +18826,7 @@ sha256 = "0crhkdbxz1ldbrvppi95g005ni5zg99z1271rkrnk5i6cvc4hlq5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fabric"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/fabric"; sha256 = "1mkblsakdhvi10b67bv3j0jsf7hr8lf9sibmprvx8smqsih7l88m"; name = "fabric"; }; @@ -18670,13 +18838,13 @@ }) {}; face-remap-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "face-remap-plus"; - version = "20151231.1502"; + version = "20151231.1602"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/face-remap+.el"; sha256 = "0yr3fqpn9pj6y8bsb6g7hkg75sl703pzngn8gp0sgs3v90c180l5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/face-remap+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/face-remap+"; sha256 = "0vq6xjrv3qic89pxzi6mx1s08k4ba27g8wqm1ap4fxh3l14wkg0y"; name = "face-remap-plus"; }; @@ -18688,13 +18856,13 @@ }) {}; facemenu-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "facemenu-plus"; - version = "20151231.1505"; + version = "20151231.1605"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/facemenu+.el"; sha256 = "1kayc4hsalvqnn577y3f97w9kz94c53vcxwx01s0k34ffav919c2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/facemenu+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/facemenu+"; sha256 = "0lbggalgkj59wj67z95949jmppmqrzrp63mdhw42r2x0fz1ir0iv"; name = "facemenu-plus"; }; @@ -18706,13 +18874,13 @@ }) {}; faces-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "faces-plus"; - version = "20151231.1505"; + version = "20151231.1605"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/faces+.el"; sha256 = "0sqrymmr583cgqmv4bs6rjms5ij5cm8vvxjrfc9alacwyz5f7w8m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/faces+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/faces+"; sha256 = "0k3m434f3d3061pvir0dnykmv6r9jswl7pzybzja3afiy591hh92"; name = "faces-plus"; }; @@ -18725,7 +18893,7 @@ faceup = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "faceup"; - version = "20150215.1548"; + version = "20150215.1648"; src = fetchFromGitHub { owner = "Lindydancer"; repo = "faceup"; @@ -18733,7 +18901,7 @@ sha256 = "0sjmjydapfnv979dx8dwiz67wffamiaf41s4skkwa0wn2h4p6wja"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/faceup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/faceup"; sha256 = "0l41xp38iji55dv20lk7r187ywcz8s1g2jmwbjwkspzmcf763xvx"; name = "faceup"; }; @@ -18746,7 +18914,7 @@ factlog = callPackage ({ deferred, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "factlog"; - version = "20130209.1940"; + version = "20130209.2040"; src = fetchFromGitHub { owner = "tkf"; repo = "factlog"; @@ -18754,7 +18922,7 @@ sha256 = "19zm9my7fl1r3q48axjv2f8x9hcjk6qah4y4r92b90bzfmcdc30y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/factlog"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/factlog"; sha256 = "163482vfpa52b5ya5xps4qnclbaql1x0q54gqdwwmm04as8qbfz7"; name = "factlog"; }; @@ -18767,7 +18935,7 @@ faff-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "faff-theme"; - version = "20160424.1052"; + version = "20160424.1152"; src = fetchFromGitHub { owner = "WJCFerguson"; repo = "emacs-faff-theme"; @@ -18775,7 +18943,7 @@ sha256 = "1iv9xnpylw2mw18993yy5s9bkxs1rjrn4q92b1wvrx1n51kcw2ny"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/faff-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/faff-theme"; sha256 = "1dmwbkp94zsddy0brs3mkdjr09n69maw2mrdfhriqcdk56qpwp4g"; name = "faff-theme"; }; @@ -18788,7 +18956,7 @@ fakespace = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "fakespace"; - version = "20120817.1906"; + version = "20120817.2006"; src = fetchFromGitHub { owner = "skeeto"; repo = "elisp-fakespace"; @@ -18796,7 +18964,7 @@ sha256 = "11fm0h9rily5731s137mgv8rdbfqi99s6f36bgr0arwbq3f2j3fs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fakespace"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/fakespace"; sha256 = "09dsmrqax4wfcw8fd5jf07bjxm5dizpc2qvjkqwg74j2n352wv27"; name = "fakespace"; }; @@ -18809,7 +18977,7 @@ fakir = callPackage ({ dash, fetchFromGitHub, fetchurl, kv, lib, melpaBuild, noflet }: melpaBuild { pname = "fakir"; - version = "20140729.1152"; + version = "20140729.1252"; src = fetchFromGitHub { owner = "nicferrier"; repo = "emacs-fakir"; @@ -18817,7 +18985,7 @@ sha256 = "1w5apzbzr1jd983b0rzsy9ldb0z0zcq6mpyb5r8czl5wd4vvj69h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fakir"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/fakir"; sha256 = "07bicglgpm6qkcsxwj6rswhx4hgh27rfg8s1cki7g8qcvk2f7b25"; name = "fakir"; }; @@ -18830,7 +18998,7 @@ fancy-battery = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "fancy-battery"; - version = "20150101.604"; + version = "20150101.704"; src = fetchFromGitHub { owner = "lunaryorn"; repo = "fancy-battery.el"; @@ -18838,7 +19006,7 @@ sha256 = "0m7rjzl9js2gjfcaqp2n5pn5ykpqnv8qfv35l5m5kpfigsi9cbb0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fancy-battery"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/fancy-battery"; sha256 = "03rkfdkrzyal9abdiv8c73w10sm974hxf3xg5015hibfi6kzg8ii"; name = "fancy-battery"; }; @@ -18851,7 +19019,7 @@ fancy-narrow = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "fancy-narrow"; - version = "20160124.603"; + version = "20160124.703"; src = fetchFromGitHub { owner = "Malabarba"; repo = "fancy-narrow"; @@ -18859,7 +19027,7 @@ sha256 = "0825hyz8b2biil0pd2bgjxqd2zm3gw9si7br5hnh51qasbaw9hid"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fancy-narrow"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/fancy-narrow"; sha256 = "15i86jz6rdpva1az7gqp1wbm8kispcfc8h6v9fqsbag9sbzvgcyv"; name = "fancy-narrow"; }; @@ -18872,7 +19040,7 @@ farmhouse-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "farmhouse-theme"; - version = "20150506.2327"; + version = "20150507.27"; src = fetchFromGitHub { owner = "mattly"; repo = "emacs-farmhouse-theme"; @@ -18880,7 +19048,7 @@ sha256 = "08lgfa2k42qpcs4999b77ycsg76zb56qbcxbsvmg0pcwjwa1ambz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/farmhouse-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/farmhouse-theme"; sha256 = "0hbqdrw6x25b331qhbg3yaaa45c2b896wknsjm0a1kg142klq229"; name = "farmhouse-theme"; }; @@ -18893,7 +19061,7 @@ fasd = callPackage ({ fetchFromGitHub, fetchurl, grizzl, lib, melpaBuild }: melpaBuild { pname = "fasd"; - version = "20151208.116"; + version = "20151208.216"; src = fetchFromGitHub { owner = "steckerhalter"; repo = "emacs-fasd"; @@ -18901,7 +19069,7 @@ sha256 = "0m2qn3rd16s7ahyw6f9a4jb73sdc8bqp6d03p450yzcn36lw78z5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fasd"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/fasd"; sha256 = "0i49z50bpi7fx0dm5jywlndnq9hb0dm5a906k4017w8y7sfpfl6c"; name = "fasd"; }; @@ -18914,7 +19082,7 @@ fastnav = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "fastnav"; - version = "20120211.857"; + version = "20120211.957"; src = fetchFromGitHub { owner = "gleber"; repo = "fastnav.el"; @@ -18922,7 +19090,7 @@ sha256 = "0y95lrdqd9i2kbb266s1wdiim4m8vrn3br19d8s55ib6xlywf8cx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fastnav"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/fastnav"; sha256 = "08hg256w8k9f5nzgpyl1jykbf28vmvv09kkhzs0s2zhwbl2158a5"; name = "fastnav"; }; @@ -18935,7 +19103,7 @@ faust-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "faust-mode"; - version = "20160119.1120"; + version = "20160119.1220"; src = fetchFromGitHub { owner = "magnetophon"; repo = "emacs-faust-mode"; @@ -18943,7 +19111,7 @@ sha256 = "0m9nzl0z3gc6fjpfqklwrsxlcgbbyydls004a39wfppyz0wr94fy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/faust-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/faust-mode"; sha256 = "1lfn4q1wcc3vzazv2yzcnpvnmq6bqcczq8lpkz7w8yj8i5kpjvsc"; name = "faust-mode"; }; @@ -18956,15 +19124,15 @@ fcitx = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "fcitx"; - version = "20160422.1244"; + version = "20160505.1609"; src = fetchFromGitHub { owner = "cute-jumper"; repo = "fcitx.el"; - rev = "550b410cbaf2aca72d29b9549c66c7ee12836478"; - sha256 = "01942hw783v2fzvx76pz03855jsax8c5x6bxp6kf59fnq7hs4sqf"; + rev = "eb4138a0a072223d5bac8c48ab56b7a296a594af"; + sha256 = "056if94s273v26lnkhx4w2l264nyqva548iy4ri9g1g2b159ckmb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fcitx"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/fcitx"; sha256 = "0a8wd588c26p3czfp5hn2n46f2vwyg5v301sv0y07b55b1i3ynmx"; name = "fcitx"; }; @@ -18977,7 +19145,7 @@ fcopy = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "fcopy"; - version = "20150304.803"; + version = "20150304.903"; src = fetchFromGitHub { owner = "ataka"; repo = "fcopy"; @@ -18985,7 +19153,7 @@ sha256 = "0c56j8ip2fyma9yvwaanz89jyzgi9k11xwwkflzlzc4smnvgfibr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fcopy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/fcopy"; sha256 = "13337ymf8vlbk8c4jpj6paqi06xdmk39yf72s40kmfrbvgmi8qy1"; name = "fcopy"; }; @@ -18998,7 +19166,7 @@ feature-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "feature-mode"; - version = "20141121.1230"; + version = "20141121.1330"; src = fetchFromGitHub { owner = "michaelklishin"; repo = "cucumber.el"; @@ -19006,7 +19174,7 @@ sha256 = "0ylm4zcf82f5rl4lps5p6p8dc3i5p2v7w93caadgzv5qbl400h5d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/feature-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/feature-mode"; sha256 = "0ryinmpqb3c91qcna6gbijcmqv3skxdc947dlr5s1w623z9nxgqg"; name = "feature-mode"; }; @@ -19019,7 +19187,7 @@ fetch = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "fetch"; - version = "20131201.130"; + version = "20131201.230"; src = fetchFromGitHub { owner = "crshd"; repo = "fetch.el"; @@ -19027,7 +19195,7 @@ sha256 = "0pjw9fb3n08yd38680ifdn2wlnw2k6q97lzhqb2259mywsycyqy8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fetch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/fetch"; sha256 = "1jqc6pspgcrdzm7ij46r1q6vpjq7il5dy2xyxwn2c1ky5a80paby"; name = "fetch"; }; @@ -19040,7 +19208,7 @@ fic-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "fic-mode"; - version = "20160209.1211"; + version = "20160209.1311"; src = fetchFromGitHub { owner = "lewang"; repo = "fic-mode"; @@ -19048,7 +19216,7 @@ sha256 = "06xd5rvn037g1kjdw7aa1n71i1mpnp4qz3a7wcmzbls0amhhnx1m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fic-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/fic-mode"; sha256 = "0yy1zw0b0s93qkzyq0n17gzn33ma5h56mh40ysz6adwsi68af84c"; name = "fic-mode"; }; @@ -19061,7 +19229,7 @@ fifo-class = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "fifo-class"; - version = "20160425.58"; + version = "20160425.158"; src = fetchFromGitHub { owner = "mola-T"; repo = "fifo-class"; @@ -19069,7 +19237,7 @@ sha256 = "0dkng4zkd5xdyvqy67bnfp4z6w8byx66bssq1zl7bhga45vihfjg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fifo-class"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/fifo-class"; sha256 = "0yyjrvdjiq5166vrys13c3dqy5807a3x99597iw5v6mcxg37jg3h"; name = "fifo-class"; }; @@ -19081,14 +19249,14 @@ }) {}; figlet = callPackage ({ fetchhg, fetchurl, lib, melpaBuild }: melpaBuild { pname = "figlet"; - version = "20160218.1637"; + version = "20160218.1737"; src = fetchhg { url = "https://bitbucket.com/jpkotta/figlet"; rev = "70ca269d706e"; sha256 = "1c18b1h154sdxkksqwk8snyk8n43bwzgavi75l8mnz8dnl1ciaxs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/figlet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/figlet"; sha256 = "1m7hw56awdbvgzdnjysb3wqkhkjqy68jxsxh9f7fx266wjqhp6yj"; name = "figlet"; }; @@ -19100,13 +19268,13 @@ }) {}; files-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "files-plus"; - version = "20151231.1507"; + version = "20151231.1607"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/files+.el"; sha256 = "0s79b5jj3jfl3aih6r3fa0zix40arysk6mz4fijapd8ybaflz25n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/files+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/files+"; sha256 = "1m1pxf6knrnyc9ygmyr27gm709ydxf0kkh1xrfcza6n476frmwr8"; name = "files-plus"; }; @@ -19118,13 +19286,13 @@ }) {}; filesets-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "filesets-plus"; - version = "20151231.1508"; + version = "20151231.1608"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/filesets+.el"; sha256 = "020rpjrjp2gh4w6mrphrvk27kdizfqbjsw2sxraf8jz0dibg9gfg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/filesets+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/filesets+"; sha256 = "06n8pw8c65bmrkxda2akvv57ndfijgbp95l40j7sjg8bjp385spn"; name = "filesets-plus"; }; @@ -19137,7 +19305,7 @@ fill-column-indicator = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "fill-column-indicator"; - version = "20151030.1433"; + version = "20151030.1533"; src = fetchFromGitHub { owner = "alpaker"; repo = "Fill-Column-Indicator"; @@ -19145,7 +19313,7 @@ sha256 = "0gbqspqn4y7f2fwqq8210b6k5q22c0zr7b4ws8qgz9swav8g3vrq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fill-column-indicator"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/fill-column-indicator"; sha256 = "0w8cmijv7ihij9yyncz6lixb6awzzl7n9qpjj2bks1d5rx46blma"; name = "fill-column-indicator"; }; @@ -19158,7 +19326,7 @@ fillcode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "fillcode"; - version = "20150812.1141"; + version = "20150812.1241"; src = fetchFromGitHub { owner = "snarfed"; repo = "fillcode"; @@ -19166,7 +19334,7 @@ sha256 = "1x9wmxbcmd6qgdyzrl978nczfqrgyk6xz3rnh5hffbapy1v1rw47"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fillcode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/fillcode"; sha256 = "0bfsw55vjhx88jpy6npnzfwinvggivbvkk7fa3iwzq19005fkag2"; name = "fillcode"; }; @@ -19179,7 +19347,7 @@ finalize = callPackage ({ cl-lib ? null, eieio ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "finalize"; - version = "20140127.1246"; + version = "20140127.1346"; src = fetchFromGitHub { owner = "skeeto"; repo = "elisp-finalize"; @@ -19187,7 +19355,7 @@ sha256 = "0f76cgh97z0rbbg2bp217nqmxfimzkvw85k9mx8bj78i9s2cdmwa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/finalize"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/finalize"; sha256 = "1n0w4kdzc4hv4pprv13lr88gh46slpxdvsc162nqm5mrqp9giqqq"; name = "finalize"; }; @@ -19200,7 +19368,7 @@ find-by-pinyin-dired = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "find-by-pinyin-dired"; - version = "20150202.416"; + version = "20150202.516"; src = fetchFromGitHub { owner = "redguardtoo"; repo = "find-by-pinyin-dired"; @@ -19208,7 +19376,7 @@ sha256 = "18a4ydp30ycx5w80j3xgghclzmzbvrkl2awxixy4aj68nmljk480"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/find-by-pinyin-dired"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/find-by-pinyin-dired"; sha256 = "150hvih3mdd1dqffgdcv3nn4qhy86s4lhjkfq0cfzgngfwif8qqq"; name = "find-by-pinyin-dired"; }; @@ -19220,13 +19388,13 @@ }) {}; find-dired-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "find-dired-plus"; - version = "20160325.1606"; + version = "20160325.1706"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/find-dired+.el"; sha256 = "19da93v605db8jfkl9j2rl8vxzlxl9lr5f07pl5xjq108mrkwr7i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/find-dired+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/find-dired+"; sha256 = "06a6lwx61xindlchh3ps8khhxc6sr7i9d7i60rjw1h07nxmh0fli"; name = "find-dired-plus"; }; @@ -19239,7 +19407,7 @@ find-file-in-project = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, swiper }: melpaBuild { pname = "find-file-in-project"; - version = "20160405.130"; + version = "20160405.230"; src = fetchFromGitHub { owner = "technomancy"; repo = "find-file-in-project"; @@ -19247,7 +19415,7 @@ sha256 = "1ddy7797br58zqn9fgm8r25ikm24f7768iq73531wzck9k5z59qj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/find-file-in-project"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/find-file-in-project"; sha256 = "0aznnv82xhnilc9j4cdmcgh6ksv7bhjjm3pa76hynnyrfn7kq7wy"; name = "find-file-in-project"; }; @@ -19260,7 +19428,7 @@ find-file-in-repository = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "find-file-in-repository"; - version = "20151113.719"; + version = "20151113.819"; src = fetchFromGitHub { owner = "hoffstaetter"; repo = "find-file-in-repository"; @@ -19268,7 +19436,7 @@ sha256 = "090m5647dpc8r8fwi3mszvc8kp0420ma5sv0lmqr2fpxyn9ybkjh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/find-file-in-repository"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/find-file-in-repository"; sha256 = "0q1ym06w2yn3nzpj018dj6h68f7rmkxczyl061mirjp8z9c6a9q6"; name = "find-file-in-repository"; }; @@ -19281,7 +19449,7 @@ find-temp-file = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "find-temp-file"; - version = "20160108.413"; + version = "20160108.513"; src = fetchFromGitHub { owner = "thisirs"; repo = "find-temp-file"; @@ -19289,7 +19457,7 @@ sha256 = "1d6zn3qsg4lpk13cvn5r1w88dnhfydnhwf59x6cb4sy5q1ihk0g3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/find-temp-file"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/find-temp-file"; sha256 = "0c98zm94958rb9kdvqr3pad744nh63y3vy3lshfm0lsg85k9j62p"; name = "find-temp-file"; }; @@ -19302,7 +19470,7 @@ find-things-fast = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "find-things-fast"; - version = "20150519.1726"; + version = "20150519.1826"; src = fetchFromGitHub { owner = "eglaysher"; repo = "find-things-fast"; @@ -19310,7 +19478,7 @@ sha256 = "1r6cs7p43pi6n2inbrv9q924m679izxwxqgyr4sjjj3lg6an4cnx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/find-things-fast"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/find-things-fast"; sha256 = "1fs3wf61lzm1hxh5sx8pr74g7g9np3npdwg7xmk81b5f2jx2vy6m"; name = "find-things-fast"; }; @@ -19322,13 +19490,13 @@ }) {}; finder-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "finder-plus"; - version = "20151231.1513"; + version = "20151231.1613"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/finder+.el"; sha256 = "0x3f9qygp26c4yw32cgyy35bb4f1fq0fg7q8s9vs777skyl3rvp4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/finder+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/finder+"; sha256 = "1ichxghp2vzx01n129fmjm6iwx4b98ay3xk1ja1i8vzyd2p0z8vh"; name = "finder-plus"; }; @@ -19340,13 +19508,13 @@ }) {}; findr = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "findr"; - version = "20130824.707"; + version = "20130824.807"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/findr.el"; sha256 = "0a04mgya59w468jv2bmkqlayzgh0r8sdz0qg3n70wn9rhdcwnl9q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/findr"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/findr"; sha256 = "0pxyfnn3f70gknxv09mfkjixqkzn77rdbql703wsslrj2v1l7bfq"; name = "findr"; }; @@ -19359,7 +19527,7 @@ fingers = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "fingers"; - version = "20150809.1916"; + version = "20150809.2016"; src = fetchFromGitHub { owner = "fgeller"; repo = "fingers.el"; @@ -19367,7 +19535,7 @@ sha256 = "1vjgcxyzv2p74igr3y0z6hk7bj6yqwjawx90xvvmp9z7m91d4yrg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fingers"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/fingers"; sha256 = "1r8fy6q6isjxz9mvaa8in4imdghzla3gg1l93dfm1v2rlr7bhzbg"; name = "fingers"; }; @@ -19380,7 +19548,7 @@ fiplr = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, grizzl, lib, melpaBuild }: melpaBuild { pname = "fiplr"; - version = "20140724.145"; + version = "20140724.245"; src = fetchFromGitHub { owner = "grizzl"; repo = "fiplr"; @@ -19388,7 +19556,7 @@ sha256 = "14yy7kr2iv549xaf5gkav48lk2hzmvipwbs0rzljzw60il6k05hk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fiplr"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/fiplr"; sha256 = "1a4w0yqdkz477lfyin4lb9k9qkfpx4350kfxmrqx6dj3aadkikca"; name = "fiplr"; }; @@ -19401,7 +19569,7 @@ firebelly-theme = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "firebelly-theme"; - version = "20140410.355"; + version = "20140410.455"; src = fetchFromGitHub { owner = "startling"; repo = "firebelly"; @@ -19409,7 +19577,7 @@ sha256 = "02ajday0lnk37dnzf4747ha3w0azisq35fmdhq322hx0hfb1c66x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/firebelly-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/firebelly-theme"; sha256 = "0lns846l70wcrzqb6p5cy5hpd0szh4gvjxd4xq4zsb0z5nfz97jr"; name = "firebelly-theme"; }; @@ -19422,7 +19590,7 @@ firecode-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "firecode-theme"; - version = "20141116.102"; + version = "20141116.202"; src = fetchFromGitHub { owner = "emacsfodder"; repo = "emacs-firecode-theme"; @@ -19430,7 +19598,7 @@ sha256 = "0v8liv6aq10f8dxbl3d4rph1qk891dlxm9wqdc6w8aj318750hfm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/firecode-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/firecode-theme"; sha256 = "10lxd93lkrvz8884dv4sh6fzzg355j7ab4p5dpvwry79rhs7f739"; name = "firecode-theme"; }; @@ -19443,7 +19611,7 @@ firefox-controller = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, moz, popwin }: melpaBuild { pname = "firefox-controller"; - version = "20160320.1347"; + version = "20160320.1447"; src = fetchFromGitHub { owner = "cute-jumper"; repo = "emacs-firefox-controller"; @@ -19451,7 +19619,7 @@ sha256 = "04afwxgydrn23bv93zqf9bd2cp02i9dcfqbi809arkmh8723qf6k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/firefox-controller"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/firefox-controller"; sha256 = "03y96b3l75w9al8ylijnlb8pcfkwddyfnh8xwig1b6k08zxfgal6"; name = "firefox-controller"; }; @@ -19464,7 +19632,7 @@ fireplace = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "fireplace"; - version = "20160101.1247"; + version = "20160101.1347"; src = fetchFromGitHub { owner = "johanvts"; repo = "emacs-fireplace"; @@ -19472,7 +19640,7 @@ sha256 = "1smg4mqc5qdwzk5mp2hfm6l4s7k408x46xfl7fl45csb18islmrp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fireplace"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/fireplace"; sha256 = "1apcypznq23fc7xgy4xy1c5hvfvjx1xhyq3aaq1lf59v99zchciw"; name = "fireplace"; }; @@ -19485,7 +19653,7 @@ firestarter = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "firestarter"; - version = "20160318.1542"; + version = "20160318.1642"; src = fetchFromGitHub { owner = "wasamasa"; repo = "firestarter"; @@ -19493,7 +19661,7 @@ sha256 = "0ssx3qjv600n8x83g34smphiyywgl97dh4wx8kzm9pp42jnp29cj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/firestarter"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/firestarter"; sha256 = "1cpx664hyrdnpb1jps1x6lm7idwlfjblkfygj48cjz9pzd6ld5mp"; name = "firestarter"; }; @@ -19506,15 +19674,15 @@ fish-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "fish-mode"; - version = "20160117.106"; + version = "20160429.2357"; src = fetchFromGitHub { owner = "wwwjfy"; repo = "emacs-fish"; - rev = "22aabbccd564883684f6d224b8e0a512f334be41"; - sha256 = "17djaz79spms9il71m4xdfjhm58dzswb6fpncngkgx8kxvcy9y24"; + rev = "0bab96b8e2f5bd5012f874b10582f12c1d18b753"; + sha256 = "0z0ji88mdp3xm5lg3drkd56gpl4qy61mxh11i09rqiwmiw0lp1vm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fish-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/fish-mode"; sha256 = "0l6k06bs0qdhj3h8vf5fv8c3rbhiqfwszrpb0v2cgnb6xhwzmq14"; name = "fish-mode"; }; @@ -19526,13 +19694,13 @@ }) {}; fit-frame = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "fit-frame"; - version = "20151231.1514"; + version = "20151231.1614"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/fit-frame.el"; sha256 = "082c6yyb1269va6k602hxpdf7ylfxz8gq8swqzwf07qaas0b5qxd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fit-frame"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/fit-frame"; sha256 = "1xcq4n9gj0npjjl98vqacms0a0wnzw62a9iplyf7bgj7n77pgkjb"; name = "fit-frame"; }; @@ -19545,7 +19713,7 @@ fix-input = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "fix-input"; - version = "20160122.2319"; + version = "20160123.19"; src = fetchFromGitHub { owner = "mrkkrp"; repo = "fix-input"; @@ -19553,7 +19721,7 @@ sha256 = "16rd23ygh76fs4i7rni94k8gwa9n360h40qmhm65snp31kqnpr1p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fix-input"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/fix-input"; sha256 = "03xpr7rlv0xq1d9126j1fk0c2j7ssf366n0yc8yzm9vq32n9pp4p"; name = "fix-input"; }; @@ -19566,7 +19734,7 @@ fix-word = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "fix-word"; - version = "20150716.802"; + version = "20150716.902"; src = fetchFromGitHub { owner = "mrkkrp"; repo = "fix-word"; @@ -19574,7 +19742,7 @@ sha256 = "17f11v9sd5fay3i4k6lmpsjicdw9j3zvx3fvhx0a86mp7ay2ywwf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fix-word"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/fix-word"; sha256 = "0a8w09cx8p5pkkd4533nd199axkhdhs2a7blp7syfn40bkscx6xc"; name = "fix-word"; }; @@ -19587,7 +19755,7 @@ fixmee = callPackage ({ back-button, button-lock, fetchFromGitHub, fetchurl, lib, melpaBuild, nav-flash, smartrep, string-utils, tabulated-list ? null }: melpaBuild { pname = "fixmee"; - version = "20150223.755"; + version = "20150223.855"; src = fetchFromGitHub { owner = "rolandwalker"; repo = "fixmee"; @@ -19595,7 +19763,7 @@ sha256 = "1x4k8890pzdcizzl0p6v96ylrx5xid9ykgrmggx0b3y0gx0vhwic"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fixmee"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/fixmee"; sha256 = "0wnp6h8f547fsi1lkk4ajny7g21dnr76qfhxl82n0l5h1ps4w8mp"; name = "fixmee"; }; @@ -19615,7 +19783,7 @@ flappymacs = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "flappymacs"; - version = "20140715.1101"; + version = "20140715.1201"; src = fetchFromGitHub { owner = "taksatou"; repo = "flappymacs"; @@ -19623,7 +19791,7 @@ sha256 = "07hv6l80ka10qszm16fpan8sas4b0qvl5s6qixxlz02fm7m0s7m5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flappymacs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flappymacs"; sha256 = "0dcpl5n7wwsk62ddgfrkq5dkm91569y4i4f0yqa61pdmzhgllx7d"; name = "flappymacs"; }; @@ -19636,7 +19804,7 @@ flash-region = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "flash-region"; - version = "20130923.1317"; + version = "20130923.1417"; src = fetchFromGitHub { owner = "Fuco1"; repo = "flash-region"; @@ -19644,7 +19812,7 @@ sha256 = "0z77lm6jv2w5z551pwarcx6xg9kx8fgms9dlskngfvnzbqkldj1f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flash-region"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flash-region"; sha256 = "1rgg7j34ka0nj1yjl688asim07bbz4aavh67kly6dzzwndr0nw8c"; name = "flash-region"; }; @@ -19657,7 +19825,7 @@ flatland-black-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "flatland-black-theme"; - version = "20141116.30"; + version = "20141116.130"; src = fetchFromGitHub { owner = "emacsfodder"; repo = "emacs-flatland-black-theme"; @@ -19665,7 +19833,7 @@ sha256 = "0ib6r6q4wbkkxdwgqsd25nx7ccxhk16lqkvwikign80j9n11g7s1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flatland-black-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flatland-black-theme"; sha256 = "0cl2qbry56nb4prbsczffx8h35x91pgicw5pld0ndw3pxid9h2da"; name = "flatland-black-theme"; }; @@ -19678,7 +19846,7 @@ flatland-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "flatland-theme"; - version = "20140805.505"; + version = "20140805.605"; src = fetchFromGitHub { owner = "gchp"; repo = "flatland-emacs"; @@ -19686,7 +19854,7 @@ sha256 = "0cl8m1i1aaw4zmkrkhfchhp0gxhpvhcmpjglsisjni47y5mydypf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flatland-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flatland-theme"; sha256 = "14drqwcp9nv269aqm34d426a7gx1a7kr9ygnqa2c8ia1fsizybl3"; name = "flatland-theme"; }; @@ -19699,7 +19867,7 @@ flatui-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "flatui-theme"; - version = "20150531.343"; + version = "20150531.443"; src = fetchFromGitHub { owner = "john2x"; repo = "flatui-theme.el"; @@ -19707,7 +19875,7 @@ sha256 = "0j8pklgd2sk01glgkr24b5n5521425vws8zwdi4sxcv74922j5zr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flatui-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flatui-theme"; sha256 = "0s88xihw44ks4b07wcb9swr52f3l1ls0jn629mxvfkv4a6hn7rmz"; name = "flatui-theme"; }; @@ -19720,7 +19888,7 @@ flex-autopair = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "flex-autopair"; - version = "20120809.718"; + version = "20120809.818"; src = fetchFromGitHub { owner = "uk-ar"; repo = "flex-autopair"; @@ -19728,7 +19896,7 @@ sha256 = "187ah7yhmr3ckw23bf4fivx8v79yj0zmilrkjj7k6l198w8wmvql"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flex-autopair"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flex-autopair"; sha256 = "0hphrqwryp3c0wwyf2f16hj8nc7jlg2dkvljgm2rdvmh2kgj3007"; name = "flex-autopair"; }; @@ -19741,14 +19909,14 @@ flex-isearch = callPackage ({ fetchhg, fetchurl, lib, melpaBuild }: melpaBuild { pname = "flex-isearch"; - version = "20130508.1703"; + version = "20130508.1803"; src = fetchhg { url = "https://bitbucket.com/jpkotta/flex-isearch"; rev = "bb9c3502057d"; sha256 = "02z1w8z9fqdshyyf03c26zjwhmmclb02caw3b6nhhk4w1rkbh6is"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flex-isearch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flex-isearch"; sha256 = "1msgrimi2a0xm5h23p78jflh00bl5bx44xpc3sc9pspznjv1d0k3"; name = "flex-isearch"; }; @@ -19761,7 +19929,7 @@ flim = callPackage ({ apel, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "flim"; - version = "20160311.1737"; + version = "20160311.1837"; src = fetchFromGitHub { owner = "wanderlust"; repo = "flim"; @@ -19769,7 +19937,7 @@ sha256 = "10sayqyf5jwmz7h9gpp4657v6v8vmcd8ahzbshwwqbakjqwnn08c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flim"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flim"; sha256 = "1gkaq549svflx8qyqrk0ccb52b7wp17wmd5jgzkw1109bpc4k6jc"; name = "flim"; }; @@ -19781,13 +19949,13 @@ }) {}; fliptext = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "fliptext"; - version = "20131113.2018"; + version = "20131113.2118"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/fliptext.el"; sha256 = "1viigj04kla20dk46xm913jzqrmx05rpjrpghnc0ylbqppqdwzpw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fliptext"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/fliptext"; sha256 = "0cmyan9hckjsv5wk1mvjzif9nrc07frhzkhhl6pkgm0j0f1q30ji"; name = "fliptext"; }; @@ -19800,7 +19968,7 @@ floobits = callPackage ({ fetchFromGitHub, fetchurl, highlight, json ? null, lib, melpaBuild }: melpaBuild { pname = "floobits"; - version = "20160307.1904"; + version = "20160307.2004"; src = fetchFromGitHub { owner = "Floobits"; repo = "floobits-emacs"; @@ -19808,7 +19976,7 @@ sha256 = "10irvd9bi25fbx66dlc3v6zcqznng0aqcdb8656cz0qx7hrz56pw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/floobits"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/floobits"; sha256 = "1jpk0q4mkf9ag1rqyai993nz5ngzfvxq9n9avmaaq59gkk9cjraf"; name = "floobits"; }; @@ -19821,7 +19989,7 @@ flx = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "flx"; - version = "20151030.1312"; + version = "20151030.1412"; src = fetchFromGitHub { owner = "lewang"; repo = "flx"; @@ -19829,7 +19997,7 @@ sha256 = "0csflhd69vz3wwq5j7872xx2l62hwiz1f5nggl5nz7h7v9anjx3r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flx"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flx"; sha256 = "04plfhrnw7jx2jaxhbhw4ypydfcb8v0x2m5hyacvrli1mca2iyf9"; name = "flx"; }; @@ -19842,7 +20010,7 @@ flx-ido = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, flx, lib, melpaBuild }: melpaBuild { pname = "flx-ido"; - version = "20151030.1312"; + version = "20151030.1412"; src = fetchFromGitHub { owner = "lewang"; repo = "flx"; @@ -19850,7 +20018,7 @@ sha256 = "0csflhd69vz3wwq5j7872xx2l62hwiz1f5nggl5nz7h7v9anjx3r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flx-ido"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flx-ido"; sha256 = "00wcwbvfjbcx8kyap7rl1b6nsgqdwjzlpv6al2cdpdd19rm1vgdc"; name = "flx-ido"; }; @@ -19863,7 +20031,7 @@ flx-isearch = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, flx, lib, melpaBuild }: melpaBuild { pname = "flx-isearch"; - version = "20160105.1417"; + version = "20160105.1517"; src = fetchFromGitHub { owner = "PythonNut"; repo = "flx-isearch"; @@ -19871,7 +20039,7 @@ sha256 = "1cmjw1zrb1nq9nx0d634ajli1di8x48k6s88zi2s2q0mbi28lzz1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flx-isearch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flx-isearch"; sha256 = "14cshv5xb57ch5g3m3hfhawnnabdnbacp4kx40d0pw6jxw677gqd"; name = "flx-isearch"; }; @@ -19884,15 +20052,15 @@ flycheck = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, let-alist, lib, melpaBuild, pkg-info, seq }: melpaBuild { pname = "flycheck"; - version = "20160420.1512"; + version = "20160507.516"; src = fetchFromGitHub { owner = "flycheck"; repo = "flycheck"; - rev = "9a213998d0467d43ecb67a7c1f8d14fdb6082031"; - sha256 = "13qs4g9991n8mz5ls3ih0jkxalb86nkwh9gv96lviv833gg0z6z1"; + rev = "c8c9b8913ca141babe90f96d431ba5d70d1a34f0"; + sha256 = "0ydr54c0v3r66zh4ba59jrm7h2w970ava7gry8kx0ryx33b3x0vg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flycheck"; sha256 = "045k214dq8bmrai13da6gwdz97a2i998gggxqswqs4g52l1h6hvr"; name = "flycheck"; }; @@ -19905,7 +20073,7 @@ flycheck-apertium = callPackage ({ fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }: melpaBuild { pname = "flycheck-apertium"; - version = "20160406.818"; + version = "20160406.918"; src = fetchFromGitHub { owner = "unhammer"; repo = "flycheck-apertium"; @@ -19913,7 +20081,7 @@ sha256 = "14idjjz6fhmq806mmncmqnr9bvcjks6spin8z6jb0gqcg1dbhm06"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-apertium"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flycheck-apertium"; sha256 = "1cc15sljqs6gvb3wiw7n1wkd714qkvfpw6l1kg4lfx9r4jalcvw7"; name = "flycheck-apertium"; }; @@ -19926,7 +20094,7 @@ flycheck-ats2 = callPackage ({ emacs, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }: melpaBuild { pname = "flycheck-ats2"; - version = "20151130.807"; + version = "20151130.907"; src = fetchFromGitHub { owner = "drvink"; repo = "flycheck-ats2"; @@ -19934,7 +20102,7 @@ sha256 = "0fh5z68gnggm0qjb8ncmfngv195lbp1dxz9jbmdi418d47mlba9c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-ats2"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flycheck-ats2"; sha256 = "0xm7zzz6hs5qnqkmv7hwxpvp3jjca57agx71sj0m12v0h53gbzhr"; name = "flycheck-ats2"; }; @@ -19947,7 +20115,7 @@ flycheck-cask = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }: melpaBuild { pname = "flycheck-cask"; - version = "20150920.653"; + version = "20150920.753"; src = fetchFromGitHub { owner = "flycheck"; repo = "flycheck-cask"; @@ -19955,7 +20123,7 @@ sha256 = "0klnhq0zfn5zbkwl7y9kja7x49n1w6r1qbphk7a7v9svgm3h9s7n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-cask"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flycheck-cask"; sha256 = "1lq559nyhkpnagncj68h84i3cq85vhdikr534kj018n2zcilsyw7"; name = "flycheck-cask"; }; @@ -19968,7 +20136,7 @@ flycheck-checkbashisms = callPackage ({ emacs, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }: melpaBuild { pname = "flycheck-checkbashisms"; - version = "20160224.1106"; + version = "20160224.1206"; src = fetchFromGitHub { owner = "Gnouc"; repo = "flycheck-checkbashisms"; @@ -19976,7 +20144,7 @@ sha256 = "1s2zq97d7ryif6rlbvriz36dh23wmwi67v4q6krl77dfzcs705b3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-checkbashisms"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flycheck-checkbashisms"; sha256 = "1rq0ymlr1dl39v0sfyjmdv4pq3q9116cz9wvgpvfgalq8759q5sz"; name = "flycheck-checkbashisms"; }; @@ -19989,7 +20157,7 @@ flycheck-clangcheck = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild, seq }: melpaBuild { pname = "flycheck-clangcheck"; - version = "20150712.210"; + version = "20150712.310"; src = fetchFromGitHub { owner = "kumar8600"; repo = "flycheck-clangcheck"; @@ -19997,7 +20165,7 @@ sha256 = "1ckzs32wzqpnw89rrw3l7i4gbyn25wagbadsc4mcrixml5nf0mck"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-clangcheck"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flycheck-clangcheck"; sha256 = "1316cj3ynl80j39ha0371ss7cqw5hcr3m8944pdacdzbmp2sak2m"; name = "flycheck-clangcheck"; }; @@ -20010,7 +20178,7 @@ flycheck-clojure = callPackage ({ cider, emacs, fetchFromGitHub, fetchurl, flycheck, let-alist, lib, melpaBuild }: melpaBuild { pname = "flycheck-clojure"; - version = "20160319.958"; + version = "20160319.1058"; src = fetchFromGitHub { owner = "clojure-emacs"; repo = "squiggly-clojure"; @@ -20018,7 +20186,7 @@ sha256 = "04qyylw868mn7wvml8l23vxgca9pwq1hrv6xlcd3xqgn7102n3w2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-clojure"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flycheck-clojure"; sha256 = "1b20gcs6fvq9pm4nl2qwsf34sg6wxngdql921q2pyh5n1xsxhm28"; name = "flycheck-clojure"; }; @@ -20031,7 +20199,7 @@ flycheck-color-mode-line = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }: melpaBuild { pname = "flycheck-color-mode-line"; - version = "20131125.2338"; + version = "20131126.38"; src = fetchFromGitHub { owner = "flycheck"; repo = "flycheck-color-mode-line"; @@ -20039,7 +20207,7 @@ sha256 = "11xc08xld758xx9myqjsiqz8vk3gh4d9c4yswswvky6mrx34c0y5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-color-mode-line"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flycheck-color-mode-line"; sha256 = "0hw19nsh5h2l8qbp7brqmml2fhs8a0x850vlvq3qfd7z248gvhrq"; name = "flycheck-color-mode-line"; }; @@ -20052,7 +20220,7 @@ flycheck-css-colorguard = callPackage ({ emacs, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }: melpaBuild { pname = "flycheck-css-colorguard"; - version = "20151122.347"; + version = "20151122.447"; src = fetchFromGitHub { owner = "Simplify"; repo = "flycheck-css-colorguard"; @@ -20060,7 +20228,7 @@ sha256 = "073vkjgcyqp8frsi05s6x8ml3ar6hwjmn2c7ryfab5b35kp9gmdi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-css-colorguard"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flycheck-css-colorguard"; sha256 = "1n56j5nicac94jl7kp8fbqxmd115vbhzklzgfz5jbib2ab8y60jc"; name = "flycheck-css-colorguard"; }; @@ -20073,7 +20241,7 @@ flycheck-cstyle = callPackage ({ emacs, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }: melpaBuild { pname = "flycheck-cstyle"; - version = "20160320.1808"; + version = "20160320.1908"; src = fetchFromGitHub { owner = "alexmurray"; repo = "flycheck-cstyle"; @@ -20081,7 +20249,7 @@ sha256 = "1fric65r33bgn2h1s1m3pxnm3d1gk2z4pwnj72in6p7glj3kg24w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-cstyle"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flycheck-cstyle"; sha256 = "0p3lzpcgwk4nkq1w0iq40njz8ll2h3vi9z5fbvv1ar4r80fqd909"; name = "flycheck-cstyle"; }; @@ -20094,7 +20262,7 @@ flycheck-cython = callPackage ({ fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }: melpaBuild { pname = "flycheck-cython"; - version = "20160327.1428"; + version = "20160327.1528"; src = fetchFromGitHub { owner = "lbolla"; repo = "emacs-flycheck-cython"; @@ -20102,7 +20270,7 @@ sha256 = "0994346iyp7143476i3y6pc5m1n6z7g1r6n1rldivsj0qr4gjh01"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-cython"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flycheck-cython"; sha256 = "1mbrwhpbs8in11mp79cnl4bd3m33qdgrvnbvi1mqvrsvz1ay28g4"; name = "flycheck-cython"; }; @@ -20115,7 +20283,7 @@ flycheck-d-unittest = callPackage ({ dash, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }: melpaBuild { pname = "flycheck-d-unittest"; - version = "20160125.618"; + version = "20160125.718"; src = fetchFromGitHub { owner = "flycheck"; repo = "flycheck-d-unittest"; @@ -20123,7 +20291,7 @@ sha256 = "0b4yq39c8m03pv5cgvvqcippc3yfphpgjw3bh2bnxch1pwfik3xm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-d-unittest"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flycheck-d-unittest"; sha256 = "0n4m4f0zqcx966582af1nqff5sla7jcr0wrmgzzxnn97yjrlnzk2"; name = "flycheck-d-unittest"; }; @@ -20136,7 +20304,7 @@ flycheck-dedukti = callPackage ({ dedukti-mode, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }: melpaBuild { pname = "flycheck-dedukti"; - version = "20150106.851"; + version = "20150106.951"; src = fetchFromGitHub { owner = "rafoo"; repo = "flycheck-dedukti"; @@ -20144,7 +20312,7 @@ sha256 = "1hw875dirz041vzw1pxjpk5lr1zmrp2kp9m6pazs9j19d686hyn6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-dedukti"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flycheck-dedukti"; sha256 = "00nc18w4nsi6vicpbqqpr4xcdh48g95vnay3kirb2xp5hc2rw3x8"; name = "flycheck-dedukti"; }; @@ -20157,7 +20325,7 @@ flycheck-dialyzer = callPackage ({ fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }: melpaBuild { pname = "flycheck-dialyzer"; - version = "20160326.930"; + version = "20160326.1030"; src = fetchFromGitHub { owner = "lbolla"; repo = "emacs-flycheck-dialyzer"; @@ -20165,7 +20333,7 @@ sha256 = "1i5wm2r6rck6864a60mm6kv31vgvqnq49hi9apvhyywfn6sycwkf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-dialyzer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flycheck-dialyzer"; sha256 = "0bn81yzijmnfg5xcnvcvxvqxz995iaafhgbfckgcal974s229kd2"; name = "flycheck-dialyzer"; }; @@ -20178,7 +20346,7 @@ flycheck-dmd-dub = callPackage ({ fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }: melpaBuild { pname = "flycheck-dmd-dub"; - version = "20151019.822"; + version = "20151019.922"; src = fetchFromGitHub { owner = "atilaneves"; repo = "flycheck-dmd-dub"; @@ -20186,7 +20354,7 @@ sha256 = "0dqkd9h54qmr9cv2gmic010j2h03i80psajrv4wq3c4pvxyqyn2j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-dmd-dub"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flycheck-dmd-dub"; sha256 = "0pg3sf7h6xqv65yqclhlb7fx1mp2w0m3qk4vji6m438kxy6fhzqm"; name = "flycheck-dmd-dub"; }; @@ -20199,7 +20367,7 @@ flycheck-elixir = callPackage ({ fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }: melpaBuild { pname = "flycheck-elixir"; - version = "20160404.231"; + version = "20160404.331"; src = fetchFromGitHub { owner = "lbolla"; repo = "emacs-flycheck-elixir"; @@ -20207,7 +20375,7 @@ sha256 = "1aa7x25a70ldbm6rl0s1wa1ncd6p6z1a7f75lk5a3274ghq8jv8p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-elixir"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flycheck-elixir"; sha256 = "0f78fai6q15smh9rvsliv8r0hh3kpwn1lz37yvqkkbx9vl7rlwld"; name = "flycheck-elixir"; }; @@ -20220,7 +20388,7 @@ flycheck-elm = callPackage ({ emacs, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }: melpaBuild { pname = "flycheck-elm"; - version = "20151204.924"; + version = "20151204.1024"; src = fetchFromGitHub { owner = "bsermons"; repo = "flycheck-elm"; @@ -20228,7 +20396,7 @@ sha256 = "08dlm3g2d8rl53hq0b4z7gp8529almlkyf69d3c8f9didmlhizk7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-elm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flycheck-elm"; sha256 = "06dpv19wgbw48gbf701c77vw1dkpddx8056wpim3zbvwwfwk8ra4"; name = "flycheck-elm"; }; @@ -20241,7 +20409,7 @@ flycheck-flow = callPackage ({ fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }: melpaBuild { pname = "flycheck-flow"; - version = "20151218.604"; + version = "20151218.704"; src = fetchFromGitHub { owner = "lbolla"; repo = "emacs-flycheck-flow"; @@ -20249,7 +20417,7 @@ sha256 = "0lk7da7axn9fm0kzlzx10ir014rsdsycffi8jcy4biqllw6yi4dx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-flow"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flycheck-flow"; sha256 = "0p4vvk09vjgk98dwzr2qzldvij3v6af56pradssi6sm3shbqhkk3"; name = "flycheck-flow"; }; @@ -20262,7 +20430,7 @@ flycheck-ghcmod = callPackage ({ dash, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }: melpaBuild { pname = "flycheck-ghcmod"; - version = "20150114.32"; + version = "20150114.132"; src = fetchFromGitHub { owner = "scturtle"; repo = "flycheck-ghcmod"; @@ -20270,7 +20438,7 @@ sha256 = "0q1m1f3vhw1wy0pa3njy55z28psznbw2xwmwk2v1p5c86n74ns8d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-ghcmod"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flycheck-ghcmod"; sha256 = "0mqxg622lqnkb52a0wff7h8b0k6mm1k7fhkfi95fi5sahclja0rp"; name = "flycheck-ghcmod"; }; @@ -20283,7 +20451,7 @@ flycheck-gometalinter = callPackage ({ emacs, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }: melpaBuild { pname = "flycheck-gometalinter"; - version = "20160301.2105"; + version = "20160301.2205"; src = fetchFromGitHub { owner = "favadi"; repo = "flycheck-gometalinter"; @@ -20291,7 +20459,7 @@ sha256 = "0frgyj57mrggq5ib6xi71696m97ch0bw6cc208d2qbnb55sf4fgb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-gometalinter"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flycheck-gometalinter"; sha256 = "1bnvj5kwgbh0dv989rsjcvmcij1ahwcz0vpr6a8f2p6wwvksw1h2"; name = "flycheck-gometalinter"; }; @@ -20304,7 +20472,7 @@ flycheck-google-cpplint = callPackage ({ fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }: melpaBuild { pname = "flycheck-google-cpplint"; - version = "20140806.1125"; + version = "20140806.1225"; src = fetchFromGitHub { owner = "flycheck"; repo = "flycheck-google-cpplint"; @@ -20312,7 +20480,7 @@ sha256 = "0l6sg83f6z8x2alnblpv03rj442sbnkkkcbf8i0agjmx3713a5yx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-google-cpplint"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flycheck-google-cpplint"; sha256 = "0llrvg6mhcsj5aascsndhbv99122zj32agxk1w6s8xn8ksk2i90b"; name = "flycheck-google-cpplint"; }; @@ -20325,7 +20493,7 @@ flycheck-haskell = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, flycheck, haskell-mode, let-alist, lib, melpaBuild, seq }: melpaBuild { pname = "flycheck-haskell"; - version = "20160413.331"; + version = "20160413.431"; src = fetchFromGitHub { owner = "flycheck"; repo = "flycheck-haskell"; @@ -20333,7 +20501,7 @@ sha256 = "1yyjh649ag6h3wnflsjlndmrlanjqbf59zg4gm9qqyhksqy4hyyv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-haskell"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flycheck-haskell"; sha256 = "12lgirz3j6n5ns2ikq4n41z0d33qp1lb5lfz1q11qvpbpn9d0jn7"; name = "flycheck-haskell"; }; @@ -20346,7 +20514,7 @@ flycheck-hdevtools = callPackage ({ dash, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }: melpaBuild { pname = "flycheck-hdevtools"; - version = "20160109.2014"; + version = "20160109.2114"; src = fetchFromGitHub { owner = "flycheck"; repo = "flycheck-hdevtools"; @@ -20354,7 +20522,7 @@ sha256 = "1x61q0fqr1jbqs9kk59f565a02qjxh1gnp1aigys0yz6qnshvzbb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-hdevtools"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flycheck-hdevtools"; sha256 = "0ahvai1q4x59ryiyccvqvjisgqbaiahx4gk8ssaxhblhj0sqga93"; name = "flycheck-hdevtools"; }; @@ -20367,7 +20535,7 @@ flycheck-irony = callPackage ({ emacs, fetchFromGitHub, fetchurl, flycheck, irony, lib, melpaBuild }: melpaBuild { pname = "flycheck-irony"; - version = "20160317.1736"; + version = "20160317.1836"; src = fetchFromGitHub { owner = "Sarcasm"; repo = "flycheck-irony"; @@ -20375,7 +20543,7 @@ sha256 = "0qa5a8wzvzxwqql92ibc9s43k8sj3vwn7skz9hfr8av0skkhx996"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-irony"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flycheck-irony"; sha256 = "0qk814m5s7mjba659llml0gy1g3045w8l1g73w2pnm1pbpqdfn3z"; name = "flycheck-irony"; }; @@ -20388,7 +20556,7 @@ flycheck-ledger = callPackage ({ fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }: melpaBuild { pname = "flycheck-ledger"; - version = "20140605.1346"; + version = "20140605.1446"; src = fetchFromGitHub { owner = "purcell"; repo = "flycheck-ledger"; @@ -20396,7 +20564,7 @@ sha256 = "15cgqbl6n3nyqiizgs2zvcvfs6bcnjk3bj81lhhwrzizbjvap3rv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-ledger"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flycheck-ledger"; sha256 = "0807pd2km4r60wgd6jakscbx63ab22d9kvf1cml0ad8wynsap7jl"; name = "flycheck-ledger"; }; @@ -20409,7 +20577,7 @@ flycheck-mercury = callPackage ({ dash, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild, s }: melpaBuild { pname = "flycheck-mercury"; - version = "20151123.134"; + version = "20151123.234"; src = fetchFromGitHub { owner = "flycheck"; repo = "flycheck-mercury"; @@ -20417,7 +20585,7 @@ sha256 = "0isqa6ybdd4166h3rdcg0b8pcxn00v8dav58xwfcj92nhzvs0qca"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-mercury"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flycheck-mercury"; sha256 = "1z2y6933f05yv9y2aapmn876jnsydh642zqid3j88bb9kqi67x0h"; name = "flycheck-mercury"; }; @@ -20430,7 +20598,7 @@ flycheck-mypy = callPackage ({ fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }: melpaBuild { pname = "flycheck-mypy"; - version = "20160220.1632"; + version = "20160220.1732"; src = fetchFromGitHub { owner = "lbolla"; repo = "emacs-flycheck-mypy"; @@ -20438,7 +20606,7 @@ sha256 = "01r2ycbayhsxh3dq4d3qky5s0gcv3fjlp8j08y8dgyl406pkzhdz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-mypy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flycheck-mypy"; sha256 = "1w418jm6x3vcg2x31nzc8a3b8asx6gznl6m76ip8w98riz7vy02f"; name = "flycheck-mypy"; }; @@ -20451,7 +20619,7 @@ flycheck-nim = callPackage ({ dash, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }: melpaBuild { pname = "flycheck-nim"; - version = "20150911.1847"; + version = "20150911.1947"; src = fetchFromGitHub { owner = "ALSchwalm"; repo = "flycheck-nim"; @@ -20459,7 +20627,7 @@ sha256 = "06hs41l41hm08dv93wldd98hmnd3jqbg58pj5ymn15kgdsy1rirg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-nim"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flycheck-nim"; sha256 = "0w6f6998rqx8a3i4xhga7mrmvhxrm690wkqwfzspidid2z7v71az"; name = "flycheck-nim"; }; @@ -20472,7 +20640,7 @@ flycheck-ocaml = callPackage ({ emacs, fetchFromGitHub, fetchurl, flycheck, let-alist, lib, melpaBuild, merlin }: melpaBuild { pname = "flycheck-ocaml"; - version = "20151103.412"; + version = "20151103.512"; src = fetchFromGitHub { owner = "flycheck"; repo = "flycheck-ocaml"; @@ -20480,7 +20648,7 @@ sha256 = "0fm8w7126vf04n76qhh33rzybvl1n7va2whbqzafbvmv2nny3v94"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-ocaml"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flycheck-ocaml"; sha256 = "1cv2bb66aql2kj1y1gsl4xji8yrzrq6rd8hxxs5vpfsk47052lf7"; name = "flycheck-ocaml"; }; @@ -20493,15 +20661,15 @@ flycheck-package = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }: melpaBuild { pname = "flycheck-package"; - version = "20151029.1338"; + version = "20160502.435"; src = fetchFromGitHub { owner = "purcell"; repo = "flycheck-package"; - rev = "ff93e8986a1021daf542c441c1fd50436ee83cba"; - sha256 = "0aa8cnh9f0f2zr2kkba2kf9djzjnsd51fzj8l578pbj016zdarwd"; + rev = "aeae7de23483a44126740f452e79266fc6fd0d9b"; + sha256 = "1x5lk6fdai5jvq4hlcgb88ljjncwkq1lkqs8d3wkqwyc3kh3rwjg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-package"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flycheck-package"; sha256 = "0068kpia17rsgjdmzsjnw0n6x5z9jvfxggxlzkszvwsx73mvcs2d"; name = "flycheck-package"; }; @@ -20514,7 +20682,7 @@ flycheck-perl6 = callPackage ({ emacs, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }: melpaBuild { pname = "flycheck-perl6"; - version = "20150414.2032"; + version = "20150414.2132"; src = fetchFromGitHub { owner = "hinrik"; repo = "flycheck-perl6"; @@ -20522,7 +20690,7 @@ sha256 = "0ffas4alqhijvm8wl1p5nqjhnxki8gs6b5bxb4nsqwnma8qmlcx3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-perl6"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flycheck-perl6"; sha256 = "0czc0fqx7g543afzkbjyz4bhxfl4s3v5swn9xrkayv8cgk8acvp4"; name = "flycheck-perl6"; }; @@ -20535,15 +20703,15 @@ flycheck-pkg-config = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "flycheck-pkg-config"; - version = "20160401.1824"; + version = "20160430.1811"; src = fetchFromGitHub { owner = "Wilfred"; repo = "flycheck-pkg-config"; - rev = "fc8912fb27d549bf947b7dc6943f76b405852736"; - sha256 = "1m183k3j2grr8462y2hi4fxi8sinyfrrwi8983ax904vhza8lclc"; + rev = "ea79cac9ae66f003f15497f68b0411ab45edc86a"; + sha256 = "1fnk59mk4qrkaaig3nv2w45add82agjfm82a9rf0128znfipf02p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-pkg-config"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flycheck-pkg-config"; sha256 = "0w7h4fa4mv8377sdbkilqcw4b9qda98c1k01nxic7a8i3iyq02d6"; name = "flycheck-pkg-config"; }; @@ -20553,10 +20721,31 @@ license = lib.licenses.free; }; }) {}; + flycheck-pony = callPackage ({ fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }: + melpaBuild { + pname = "flycheck-pony"; + version = "20160501.1717"; + src = fetchFromGitHub { + owner = "SeanTAllen"; + repo = "flycheck-pony"; + rev = "cf68fd0390b5777f161d7a09c2700c229328c678"; + sha256 = "05sybsr62c04495mlg5zp6f75p3araskzm0riz79j056w7hwrj59"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flycheck-pony"; + sha256 = "18w1d7y3jsmsc4wg0909p72cnvbxzsmnirmrahhwgsb963fij5qk"; + name = "flycheck-pony"; + }; + packageRequires = [ flycheck ]; + meta = { + homepage = "https://melpa.org/#/flycheck-pony"; + license = lib.licenses.free; + }; + }) {}; flycheck-pos-tip = callPackage ({ dash, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild, pos-tip }: melpaBuild { pname = "flycheck-pos-tip"; - version = "20160323.329"; + version = "20160323.429"; src = fetchFromGitHub { owner = "flycheck"; repo = "flycheck-pos-tip"; @@ -20564,7 +20753,7 @@ sha256 = "0wca22jp0alknmllfl22j89aasiwms6ipqyv1pnvbrgmrbzcmlp7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-pos-tip"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flycheck-pos-tip"; sha256 = "09i2jmwj8b915fhyczwdb1j7c551ggbva33avis77ga1s9v3nsf9"; name = "flycheck-pos-tip"; }; @@ -20577,7 +20766,7 @@ flycheck-protobuf = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, protobuf-mode }: melpaBuild { pname = "flycheck-protobuf"; - version = "20160211.900"; + version = "20160211.1000"; src = fetchFromGitHub { owner = "edvorg"; repo = "flycheck-protobuf"; @@ -20585,7 +20774,7 @@ sha256 = "1adcijysw4v8rrxzswi8zhd6w99iaqq7asps0jp21gr9nqci8vdj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-protobuf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flycheck-protobuf"; sha256 = "0cn5b9pr9i9hrix7dbrylwb2812al8ipbpqvlb9bm2f8hc9kgsmc"; name = "flycheck-protobuf"; }; @@ -20598,7 +20787,7 @@ flycheck-purescript = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, flycheck, let-alist, lib, melpaBuild, seq }: melpaBuild { pname = "flycheck-purescript"; - version = "20160118.1745"; + version = "20160118.1845"; src = fetchFromGitHub { owner = "emacs-pe"; repo = "flycheck-purescript"; @@ -20606,7 +20795,7 @@ sha256 = "1r8k38ldw7mldhl2hsqc8gvb99svc1vlhlqfnj8hqd3vvqxd5r1f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-purescript"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flycheck-purescript"; sha256 = "05j1iscyg9khw0zq63676zrisragklxp48hmbc7vrbmbiy964lwd"; name = "flycheck-purescript"; }; @@ -20619,7 +20808,7 @@ flycheck-pyflakes = callPackage ({ fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }: melpaBuild { pname = "flycheck-pyflakes"; - version = "20140630.1721"; + version = "20140630.1821"; src = fetchFromGitHub { owner = "Wilfred"; repo = "flycheck-pyflakes"; @@ -20627,7 +20816,7 @@ sha256 = "16albss527dq4ncpiy8p326fib038qc6wjbh985lw2p1f9babswa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-pyflakes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flycheck-pyflakes"; sha256 = "186h5ky48i1xmjbvvhn1i0rzhsy8bgdv1d8f7rlr2z4brb52f9c1"; name = "flycheck-pyflakes"; }; @@ -20640,7 +20829,7 @@ flycheck-rust = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }: melpaBuild { pname = "flycheck-rust"; - version = "20151225.913"; + version = "20151225.1013"; src = fetchFromGitHub { owner = "flycheck"; repo = "flycheck-rust"; @@ -20648,7 +20837,7 @@ sha256 = "08ar85p5llk0lxlm2rd7rfc8s449vrknsrzzxqg8kvakgpd0nx7q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-rust"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flycheck-rust"; sha256 = "1k0n0y6lbp71v4465dwq7864vp1qqyx7zjz0kssszcpx5gl1596w"; name = "flycheck-rust"; }; @@ -20658,10 +20847,31 @@ license = lib.licenses.free; }; }) {}; + flycheck-stack = callPackage ({ fetchFromGitHub, fetchurl, flycheck, haskell-mode, lib, melpaBuild }: + melpaBuild { + pname = "flycheck-stack"; + version = "20160503.826"; + src = fetchFromGitHub { + owner = "chrisdone"; + repo = "flycheck-stack"; + rev = "ed6b6132ae797936320220c190127928e808e5ce"; + sha256 = "1w93g89aix7mhkwaarv90w1yjjkfadxk23ra3zdk4y00kly7hr9g"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flycheck-stack"; + sha256 = "1r9zppqmp1i5i06jhkrgvwy1p3yc8kmcvgibricydqsij26lhpmf"; + name = "flycheck-stack"; + }; + packageRequires = [ flycheck haskell-mode ]; + meta = { + homepage = "https://melpa.org/#/flycheck-stack"; + license = lib.licenses.free; + }; + }) {}; flycheck-status-emoji = callPackage ({ emacs, fetchFromGitHub, fetchurl, flycheck, let-alist, lib, melpaBuild }: melpaBuild { pname = "flycheck-status-emoji"; - version = "20160207.1651"; + version = "20160207.1751"; src = fetchFromGitHub { owner = "liblit"; repo = "flycheck-status-emoji"; @@ -20669,7 +20879,7 @@ sha256 = "0v7d0yijqn3mhgjwqiv1rsdhw2ay6ffbn8i45x0dlp960v7k2k8f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-status-emoji"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flycheck-status-emoji"; sha256 = "0p42424b1fsmfcjyl252vhblppmpjwd6br2yqh10fi60wmprvn2p"; name = "flycheck-status-emoji"; }; @@ -20682,7 +20892,7 @@ flycheck-tip = callPackage ({ emacs, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild, popup }: melpaBuild { pname = "flycheck-tip"; - version = "20160318.2034"; + version = "20160318.2134"; src = fetchFromGitHub { owner = "yuutayamada"; repo = "flycheck-tip"; @@ -20690,7 +20900,7 @@ sha256 = "0lrgww53xzz2hnc8c83hqxczzfm1bvixfswhsav4i8aakk3idjxi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-tip"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flycheck-tip"; sha256 = "0zab1zknrnsw5xh5pwzzcpz7p40bbywkf9zx99sgsd6b5j1jz656"; name = "flycheck-tip"; }; @@ -20703,15 +20913,15 @@ flycheck-typescript-tslint = callPackage ({ emacs, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }: melpaBuild { pname = "flycheck-typescript-tslint"; - version = "20160404.230"; + version = "20160507.338"; src = fetchFromGitHub { owner = "Simplify"; repo = "flycheck-typescript-tslint"; - rev = "3286d6fad3f891238ed5a9ff31e2f125ba684285"; - sha256 = "0v0xmkl09lrxp20yamw7s9fszljx3g1yrvn1y4c86is8dszm9hdh"; + rev = "9797c7f0a8f1228ee3712ec1c2dc742ebbba54db"; + sha256 = "0yax8rlgcb04b9f4dp93p6ibx1wl1hyhvz310ls40m08b9031fpw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-typescript-tslint"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flycheck-typescript-tslint"; sha256 = "141x4scl13gqxyg0nlc8vig1iaybc3g95il5r51k4k83isi62iyq"; name = "flycheck-typescript-tslint"; }; @@ -20724,15 +20934,15 @@ flycheck-ycmd = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, flycheck, let-alist, lib, melpaBuild, ycmd }: melpaBuild { pname = "flycheck-ycmd"; - version = "20160320.624"; + version = "20160320.724"; src = fetchFromGitHub { owner = "abingham"; repo = "emacs-ycmd"; - rev = "1984e49b7894b77438f2257d8058900ab82109e3"; - sha256 = "0dwii83m6cngsnyhzhnmv53p588d4pkkybmcmsj6gsar157l4azi"; + rev = "6080cb164fc3a96f2248760fda2b6d46a55d63c0"; + sha256 = "1x138lbjy87sk68sjx07l3in2d9qzcc3pa9vgzvg95aiaacnk8qi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-ycmd"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flycheck-ycmd"; sha256 = "0m99ssynrqxgzf32d35n17iqyh1lyc6948inxpnwgcb98rfamchv"; name = "flycheck-ycmd"; }; @@ -20745,7 +20955,7 @@ flymake-coffee = callPackage ({ fetchFromGitHub, fetchurl, flymake-easy, lib, melpaBuild }: melpaBuild { pname = "flymake-coffee"; - version = "20140809.524"; + version = "20140809.624"; src = fetchFromGitHub { owner = "purcell"; repo = "flymake-coffee"; @@ -20753,7 +20963,7 @@ sha256 = "10i0rbvk6vyifgbgskdyspmw9q64x99fzi8i1h8bgv58xhfx6pm7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flymake-coffee"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flymake-coffee"; sha256 = "1aig1d4fgjdg31vrg8k43z5hbqiydgfvxi45p1695s3kbdm8pr2d"; name = "flymake-coffee"; }; @@ -20766,7 +20976,7 @@ flymake-cppcheck = callPackage ({ fetchFromGitHub, fetchurl, flymake-easy, lib, melpaBuild }: melpaBuild { pname = "flymake-cppcheck"; - version = "20140415.757"; + version = "20140415.857"; src = fetchFromGitHub { owner = "senda-akiha"; repo = "flymake-cppcheck"; @@ -20774,7 +20984,7 @@ sha256 = "1dlxn8hhz3gfrhvkwhlxjmby6zc0g8yy9n9j9dn8c4cbi2fhyx5m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flymake-cppcheck"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flymake-cppcheck"; sha256 = "11brzgq2zl32a8a2dgj2imsldjqaqvxwk2jypf4bmfwa3mkcqh3d"; name = "flymake-cppcheck"; }; @@ -20787,7 +20997,7 @@ flymake-css = callPackage ({ fetchFromGitHub, fetchurl, flymake-easy, lib, melpaBuild }: melpaBuild { pname = "flymake-css"; - version = "20121104.1304"; + version = "20121104.1404"; src = fetchFromGitHub { owner = "purcell"; repo = "flymake-css"; @@ -20795,7 +21005,7 @@ sha256 = "00cnz3snhs44aknq6wmf19hq9bzb5pj0hvfzz93l6n7ngd8vvpzy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flymake-css"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flymake-css"; sha256 = "0kqm3wn9symqc9ivnh11gqgq8ql2bhpqvxfm86d8vwm082hd92c5"; name = "flymake-css"; }; @@ -20807,13 +21017,13 @@ }) {}; flymake-cursor = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "flymake-cursor"; - version = "20130822.532"; + version = "20130822.632"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/flymake-cursor.el"; sha256 = "10cpzrd588ya52blghxss5zkn6x8hc7bx1h0qbcdlybbmkjgpkxr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flymake-cursor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flymake-cursor"; sha256 = "1s065w0z3sfv3d348w4zhlw96xf3j28bcz14sl46963mj2dm90lr"; name = "flymake-cursor"; }; @@ -20826,7 +21036,7 @@ flymake-easy = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "flymake-easy"; - version = "20140818.255"; + version = "20140818.355"; src = fetchFromGitHub { owner = "purcell"; repo = "flymake-easy"; @@ -20834,7 +21044,7 @@ sha256 = "1mylcsklnv3q27q1gvf7wrila39rmxab1ypmvjh5p56d91y6pszc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flymake-easy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flymake-easy"; sha256 = "19p6s9fllgvs35v167xf624k5dn16l9fnvaqcj9ks162gl9vymn7"; name = "flymake-easy"; }; @@ -20847,7 +21057,7 @@ flymake-elixir = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "flymake-elixir"; - version = "20130810.917"; + version = "20130810.1017"; src = fetchFromGitHub { owner = "syl20bnr"; repo = "flymake-elixir"; @@ -20855,7 +21065,7 @@ sha256 = "04w6g4wixrpfidxbk2bwazhvf0cx3c2v2mxnycqqlqkg0m0sb0fn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flymake-elixir"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flymake-elixir"; sha256 = "15r3m58hnc75l3j02xdr8yg25fbn2sbz1295ac44widzis82m792"; name = "flymake-elixir"; }; @@ -20868,7 +21078,7 @@ flymake-gjshint = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "flymake-gjshint"; - version = "20130327.732"; + version = "20130327.832"; src = fetchFromGitHub { owner = "yasuyk"; repo = "flymake-gjshint-el"; @@ -20876,7 +21086,7 @@ sha256 = "14kbqyw4v1c51dx7pfgqbn8x4j8j3rgyyq2fa9klqzxpldcskl24"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flymake-gjshint"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flymake-gjshint"; sha256 = "19jcd5z4883z3fzlrdn4fzmsvn16f4hfnhgw4vbs5b0ma6a8ka44"; name = "flymake-gjshint"; }; @@ -20889,7 +21099,7 @@ flymake-go = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "flymake-go"; - version = "20150714.233"; + version = "20150714.333"; src = fetchFromGitHub { owner = "robert-zaremba"; repo = "flymake-go"; @@ -20897,7 +21107,7 @@ sha256 = "03gh0y988pksghmmvb5av2vnlbcsncafvn4nwihsis0bhys8k28q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flymake-go"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flymake-go"; sha256 = "030m67d8g60ljm7ny3jh4vwj3cshypsklgbjpcvh32y109ga1hy1"; name = "flymake-go"; }; @@ -20910,7 +21120,7 @@ flymake-google-cpplint = callPackage ({ fetchFromGitHub, fetchurl, flymake-easy, lib, melpaBuild }: melpaBuild { pname = "flymake-google-cpplint"; - version = "20140205.725"; + version = "20140205.825"; src = fetchFromGitHub { owner = "senda-akiha"; repo = "flymake-google-cpplint"; @@ -20918,7 +21128,7 @@ sha256 = "0zldhlvxmk0xcjmj4ns48pp4h3bvijrzs1md69ya7m3dmsbayfrc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flymake-google-cpplint"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flymake-google-cpplint"; sha256 = "0q7v70xbprh03f1yabq216q4q82a58s2c1ykr6ig49cg1jdgzkf3"; name = "flymake-google-cpplint"; }; @@ -20931,7 +21141,7 @@ flymake-haml = callPackage ({ fetchFromGitHub, fetchurl, flymake-easy, lib, melpaBuild }: melpaBuild { pname = "flymake-haml"; - version = "20130324.551"; + version = "20130324.651"; src = fetchFromGitHub { owner = "purcell"; repo = "flymake-haml"; @@ -20939,7 +21149,7 @@ sha256 = "08rcsg76qdq2l6z8q339yw770kv1q657ywqvq6a20pxxz2158a8l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flymake-haml"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flymake-haml"; sha256 = "0dmdhh12h4xrx6mc0qrwavngk2sx0l4pfqkjjyavabsgcs9wlgp1"; name = "flymake-haml"; }; @@ -20952,7 +21162,7 @@ flymake-haskell-multi = callPackage ({ fetchFromGitHub, fetchurl, flymake-easy, lib, melpaBuild }: melpaBuild { pname = "flymake-haskell-multi"; - version = "20130620.622"; + version = "20130620.722"; src = fetchFromGitHub { owner = "purcell"; repo = "flymake-haskell-multi"; @@ -20960,7 +21170,7 @@ sha256 = "0hwcgas83wwhk0szwgw7abf70400knb8dfabknwv0qrcsk4gqffd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flymake-haskell-multi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flymake-haskell-multi"; sha256 = "0cyzmmghwkkv6020s6n436lwymi6dr49i7gkci5n0hw5pdywcaij"; name = "flymake-haskell-multi"; }; @@ -20973,7 +21183,7 @@ flymake-hlint = callPackage ({ fetchFromGitHub, fetchurl, flymake-easy, lib, melpaBuild }: melpaBuild { pname = "flymake-hlint"; - version = "20130309.345"; + version = "20130309.445"; src = fetchFromGitHub { owner = "purcell"; repo = "flymake-hlint"; @@ -20981,7 +21191,7 @@ sha256 = "003fdrgxlyhs595ndcdzhmdkcpsf9bpw53hrlrrrh07qlnqxwrvp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flymake-hlint"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flymake-hlint"; sha256 = "0wq1ijhn3ypy31yk8jywl5hnz0r0vlhcxjyznzccwqbdc5vf7b2x"; name = "flymake-hlint"; }; @@ -20994,7 +21204,7 @@ flymake-jshint = callPackage ({ fetchFromGitHub, fetchurl, flymake-easy, lib, melpaBuild }: melpaBuild { pname = "flymake-jshint"; - version = "20140319.1700"; + version = "20140319.1800"; src = fetchFromGitHub { owner = "Wilfred"; repo = "flymake-jshint.el"; @@ -21002,7 +21212,7 @@ sha256 = "0ywm9fpb7d7ry2fly8719fa41q97yj9za3phqhv6j1chzaxvcv3a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flymake-jshint"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flymake-jshint"; sha256 = "0j4djylz6mrq14qmbm35k3gvvsw6i9qc4gd9ma4fykiqzkdjsg7j"; name = "flymake-jshint"; }; @@ -21015,7 +21225,7 @@ flymake-jslint = callPackage ({ fetchFromGitHub, fetchurl, flymake-easy, lib, melpaBuild }: melpaBuild { pname = "flymake-jslint"; - version = "20130613.402"; + version = "20130613.502"; src = fetchFromGitHub { owner = "purcell"; repo = "flymake-jslint"; @@ -21023,7 +21233,7 @@ sha256 = "0y01albwwcnhj4pnpvcry0zw7z2g9py9q2p3sw5zhgw3g0v5p9ls"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flymake-jslint"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flymake-jslint"; sha256 = "1cq8fni4p0qhigx0qh34ypmcsbnilra1ixgnrn9mgg8x3cvcm4cm"; name = "flymake-jslint"; }; @@ -21036,7 +21246,7 @@ flymake-json = callPackage ({ fetchFromGitHub, fetchurl, flymake-easy, lib, melpaBuild }: melpaBuild { pname = "flymake-json"; - version = "20130424.157"; + version = "20130424.257"; src = fetchFromGitHub { owner = "purcell"; repo = "flymake-json"; @@ -21044,7 +21254,7 @@ sha256 = "1qn15pr7c07fmki484z5xpqyn8546qb5dr9gcp5n1172wnh2a534"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flymake-json"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flymake-json"; sha256 = "1p5kajiycpqy2id664bs0fb1mbf73a43qqfdi4c57n6j9x7fxp4d"; name = "flymake-json"; }; @@ -21057,7 +21267,7 @@ flymake-less = callPackage ({ fetchFromGitHub, fetchurl, flymake-easy, less-css-mode, lib, melpaBuild }: melpaBuild { pname = "flymake-less"; - version = "20151111.138"; + version = "20151111.238"; src = fetchFromGitHub { owner = "purcell"; repo = "flymake-less"; @@ -21065,7 +21275,7 @@ sha256 = "0ggi8a4j4glpsar0sqg8q06rscajjaziis5ann31wphx88rc5wd7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flymake-less"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flymake-less"; sha256 = "05k5daphxy94164c73ia7f4l1gv2cmlw8xzs8xnddg7ly22gjhi0"; name = "flymake-less"; }; @@ -21078,7 +21288,7 @@ flymake-lua = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "flymake-lua"; - version = "20140310.430"; + version = "20140310.530"; src = fetchFromGitHub { owner = "sroccaserra"; repo = "emacs"; @@ -21086,7 +21296,7 @@ sha256 = "1fz7kywp1y2nhp50b2v961wz604sw1gzqcid4k8igz9aii3ygxcv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flymake-lua"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flymake-lua"; sha256 = "0pa66ymhazcfgd9jmxizq5w2sgj008hph42wsa9ljr2rina1gai6"; name = "flymake-lua"; }; @@ -21099,7 +21309,7 @@ flymake-perlcritic = callPackage ({ fetchFromGitHub, fetchurl, flymake ? null, lib, melpaBuild }: melpaBuild { pname = "flymake-perlcritic"; - version = "20120328.314"; + version = "20120328.414"; src = fetchFromGitHub { owner = "illusori"; repo = "emacs-flymake-perlcritic"; @@ -21107,7 +21317,7 @@ sha256 = "1f4l2r4gp03s18255jawc7s5abpjjrw54937wzygmvzvqvmaiikj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flymake-perlcritic"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flymake-perlcritic"; sha256 = "0hibnh463wzhvpix7gygpgs04gi6salwjrsjc6d43lxlsn3y1im8"; name = "flymake-perlcritic"; }; @@ -21120,7 +21330,7 @@ flymake-php = callPackage ({ fetchFromGitHub, fetchurl, flymake-easy, lib, melpaBuild }: melpaBuild { pname = "flymake-php"; - version = "20121104.1302"; + version = "20121104.1402"; src = fetchFromGitHub { owner = "purcell"; repo = "flymake-php"; @@ -21128,7 +21338,7 @@ sha256 = "09mibjdji5mf3qvngspv1zmik1zd9jwp4mb4c1w4256202359sf4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flymake-php"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flymake-php"; sha256 = "12ds2l5kvs7fz38syp4amasbjkpqd36rlpajnb3xxll0hbk6vffk"; name = "flymake-php"; }; @@ -21141,7 +21351,7 @@ flymake-phpcs = callPackage ({ fetchFromGitHub, fetchurl, flymake-easy, lib, melpaBuild }: melpaBuild { pname = "flymake-phpcs"; - version = "20140713.131"; + version = "20140713.231"; src = fetchFromGitHub { owner = "senda-akiha"; repo = "flymake-phpcs"; @@ -21149,7 +21359,7 @@ sha256 = "140rlp6m0aqibwa0bhv8w6l3giziybqdw7x271nq8f3r60ch13bi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flymake-phpcs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flymake-phpcs"; sha256 = "0zzxi3c203fiw6jp1ar9bb9f28x2lg23bczgy8n5cicrq59jfsn9"; name = "flymake-phpcs"; }; @@ -21162,7 +21372,7 @@ flymake-puppet = callPackage ({ fetchFromGitHub, fetchurl, flymake-easy, lib, melpaBuild }: melpaBuild { pname = "flymake-puppet"; - version = "20141006.2055"; + version = "20141006.2155"; src = fetchFromGitHub { owner = "benprew"; repo = "flymake-puppet"; @@ -21170,7 +21380,7 @@ sha256 = "1r3yjqxig2j7l50l787qsi96mkvjcgqll9vb4ci51j7b43d53c5m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flymake-puppet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flymake-puppet"; sha256 = "1izq6s33p74dy4wzfnjii8wjs723bm5ggl0w6hkvzgbmyjc01hxv"; name = "flymake-puppet"; }; @@ -21183,7 +21393,7 @@ flymake-python-pyflakes = callPackage ({ fetchFromGitHub, fetchurl, flymake-easy, lib, melpaBuild }: melpaBuild { pname = "flymake-python-pyflakes"; - version = "20131127.206"; + version = "20131127.306"; src = fetchFromGitHub { owner = "purcell"; repo = "flymake-python-pyflakes"; @@ -21191,7 +21401,7 @@ sha256 = "1aijapvpw4skfhfmz09v5kpaxay6b0bp77bbjkrvgyizsqdd39vp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flymake-python-pyflakes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flymake-python-pyflakes"; sha256 = "0asbjxv03zkbcjayanv13qzbv4z7b6fi0z1j6yv7fl6q9mgvm497"; name = "flymake-python-pyflakes"; }; @@ -21204,7 +21414,7 @@ flymake-ruby = callPackage ({ fetchFromGitHub, fetchurl, flymake-easy, lib, melpaBuild }: melpaBuild { pname = "flymake-ruby"; - version = "20121104.1259"; + version = "20121104.1359"; src = fetchFromGitHub { owner = "purcell"; repo = "flymake-ruby"; @@ -21212,7 +21422,7 @@ sha256 = "13yk9cncp3zw6d7zkgdpgprpw6wrirk2gxgjvkr15dwcyx1g3109"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flymake-ruby"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flymake-ruby"; sha256 = "1shr6d03vx85nmyxnysglzlc1pz0zy3n28nrcmxqgdm02g197bzr"; name = "flymake-ruby"; }; @@ -21225,7 +21435,7 @@ flymake-rust = callPackage ({ fetchFromGitHub, fetchurl, flymake-easy, lib, melpaBuild }: melpaBuild { pname = "flymake-rust"; - version = "20141004.1752"; + version = "20141004.1852"; src = fetchFromGitHub { owner = "jxs"; repo = "flymake-rust"; @@ -21233,7 +21443,7 @@ sha256 = "1qxb3vhh83ikhmm89ms7irdip2l03hnjcq5ncmgywkaqkpslaacv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flymake-rust"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flymake-rust"; sha256 = "0fgpkz1d4y2ywizwwrhqdqncdmhdnbgf3mcv3hjpa82x44yb7j32"; name = "flymake-rust"; }; @@ -21246,7 +21456,7 @@ flymake-sass = callPackage ({ fetchFromGitHub, fetchurl, flymake-easy, lib, melpaBuild }: melpaBuild { pname = "flymake-sass"; - version = "20140308.525"; + version = "20140308.625"; src = fetchFromGitHub { owner = "purcell"; repo = "flymake-sass"; @@ -21254,7 +21464,7 @@ sha256 = "0rwjiplpqw3rrh76llnx2fn78f6avxsg0la5br46q1rgw4n8r1w1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flymake-sass"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flymake-sass"; sha256 = "0sz6n5r9pdphgvvaljg9zdwj3dqayaxzxmb4s8x4b05c8yx3ba0d"; name = "flymake-sass"; }; @@ -21267,7 +21477,7 @@ flymake-shell = callPackage ({ fetchFromGitHub, fetchurl, flymake-easy, lib, melpaBuild }: melpaBuild { pname = "flymake-shell"; - version = "20121104.1300"; + version = "20121104.1400"; src = fetchFromGitHub { owner = "purcell"; repo = "flymake-shell"; @@ -21275,7 +21485,7 @@ sha256 = "0c2lz1p91yhprmlbmp0756d96yiy0w92zf0c9vlp0i9abvd0cvkc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flymake-shell"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flymake-shell"; sha256 = "13ff4r0k29yqgx8ybxz7hh50cjsadcjb7pd0075s9xcrzia5x63i"; name = "flymake-shell"; }; @@ -21288,7 +21498,7 @@ flymake-solidity = callPackage ({ fetchFromGitHub, fetchurl, flymake-easy, lib, melpaBuild }: melpaBuild { pname = "flymake-solidity"; - version = "20160424.920"; + version = "20160424.1020"; src = fetchFromGitHub { owner = "kootenpv"; repo = "flymake-solidity"; @@ -21296,7 +21506,7 @@ sha256 = "1rq47qhp3jdrw1n22cnhvhcxqzbi6v9r94kgf3200vrfp435rvkn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flymake-solidity"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flymake-solidity"; sha256 = "10d1g14y3l670lqgfdsnyxanzcjs2jpgnliih56n1xhcpyz551l3"; name = "flymake-solidity"; }; @@ -21309,7 +21519,7 @@ flymake-vala = callPackage ({ fetchFromGitHub, fetchurl, flymake-easy, lib, melpaBuild }: melpaBuild { pname = "flymake-vala"; - version = "20150326.31"; + version = "20150326.131"; src = fetchFromGitHub { owner = "daniellawrence"; repo = "flymake-vala"; @@ -21317,7 +21527,7 @@ sha256 = "0qpr0frcn3w0f6yz8vgavwbxvn6wb0qkfk653v4cfy57dvslr4wf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flymake-vala"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flymake-vala"; sha256 = "0yp81phd96z594ckav796qrjm0wlkrfsl0rwpmgg840qn49w71vx"; name = "flymake-vala"; }; @@ -21330,7 +21540,7 @@ flymake-yaml = callPackage ({ fetchFromGitHub, fetchurl, flymake-easy, lib, melpaBuild }: melpaBuild { pname = "flymake-yaml"; - version = "20130423.1048"; + version = "20130423.1148"; src = fetchFromGitHub { owner = "yasuyk"; repo = "flymake-yaml"; @@ -21338,7 +21548,7 @@ sha256 = "0mdam39a85csi9b90wak9j3zkd25lj6x54affwkg3fym8yphmplm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flymake-yaml"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flymake-yaml"; sha256 = "17wghm797np4hlidf3wwb47w4klwc6qyk6ry1z05psl3nykws1g7"; name = "flymake-yaml"; }; @@ -21351,7 +21561,7 @@ flyparens = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "flyparens"; - version = "20140723.1346"; + version = "20140723.1446"; src = fetchFromGitHub { owner = "jiyoo"; repo = "flyparens"; @@ -21359,7 +21569,7 @@ sha256 = "07hy1kyw4cbxydmhp4scsy3dcbk2s50rmdp8rch1vbcjk5lj4mvb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flyparens"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flyparens"; sha256 = "1mvbfq062qj8vmgzk6rymg3idlfc1makfp1scmjvpw98h30j2a0a"; name = "flyparens"; }; @@ -21369,10 +21579,31 @@ license = lib.licenses.free; }; }) {}; + flyspell-correct = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "flyspell-correct"; + version = "20160507.1241"; + src = fetchFromGitHub { + owner = "d12frosted"; + repo = "flyspell-correct"; + rev = "5d027044725d57920b46db8eb7216c163b68c4bb"; + sha256 = "1q5d4jmwpajzb0a7m3z7b22byiahya3wy19slyi7jv6yvanr7f59"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flyspell-correct"; + sha256 = "1bm1a9r9g5nsx544a263g26mxrmam7bx2m0a09ggzr6hpwp9sp2n"; + name = "flyspell-correct"; + }; + packageRequires = []; + meta = { + homepage = "https://melpa.org/#/flyspell-correct"; + license = lib.licenses.free; + }; + }) {}; flyspell-lazy = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "flyspell-lazy"; - version = "20141222.852"; + version = "20141222.952"; src = fetchFromGitHub { owner = "rolandwalker"; repo = "flyspell-lazy"; @@ -21380,7 +21611,7 @@ sha256 = "1g09s57b773nm9xqslzbin5i2h18k55nx00s5nnkvx1qg0n0mzkm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flyspell-lazy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flyspell-lazy"; sha256 = "0lzazrhsfh5m7n57dzx0v46d5mg87wpwwkjzf5j9gpv1mc1xfg1y"; name = "flyspell-lazy"; }; @@ -21393,7 +21624,7 @@ flyspell-popup = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, popup }: melpaBuild { pname = "flyspell-popup"; - version = "20150926.1003"; + version = "20150926.1103"; src = fetchFromGitHub { owner = "xuchunyang"; repo = "flyspell-popup"; @@ -21401,7 +21632,7 @@ sha256 = "1rdpggnw9mz3qr4kp5gh9nvwncivj446vdhpc04d4jgrl568bhqb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flyspell-popup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flyspell-popup"; sha256 = "0wp15ra1ry6xpwal6mb53ixh3f0s4nps0rdyfli7hhaiwbr9bhql"; name = "flyspell-popup"; }; @@ -21414,7 +21645,7 @@ fm = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "fm"; - version = "20130126.1818"; + version = "20130126.1918"; src = fetchFromGitHub { owner = "emacsmirror"; repo = "fm"; @@ -21422,7 +21653,7 @@ sha256 = "1fk4zsb4jliwz10sqz5bpqgj1p479mc506dmvy4zq3vqnpbypqvs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/fm"; sha256 = "118d8fbhlv6i2rsyfqdhi841p96j7q4fab5qdg95ip40wq02dg4f"; name = "fm"; }; @@ -21435,7 +21666,7 @@ fm-bookmarks = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "fm-bookmarks"; - version = "20151203.803"; + version = "20151203.903"; src = fetchFromGitHub { owner = "kuanyui"; repo = "fm-bookmarks.el"; @@ -21443,7 +21674,7 @@ sha256 = "0984fhf1nlpdh9mh3gd2xak3v2rlv76qxppqvr6a4kl1dxwg37r3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fm-bookmarks"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/fm-bookmarks"; sha256 = "12ami0k6rfwhrr6xgj0dls4mkk6dp0r9smwzhr4897dv0lw89bdj"; name = "fm-bookmarks"; }; @@ -21456,7 +21687,7 @@ focus = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "focus"; - version = "20160131.1618"; + version = "20160131.1718"; src = fetchFromGitHub { owner = "larstvei"; repo = "Focus"; @@ -21464,7 +21695,7 @@ sha256 = "0vqjyc00ba9wy2rn454hhy9rnnghljc1i8f3zrpkdmkqn5cg3336"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/focus"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/focus"; sha256 = "0jw26j8npyl3dgsrs7ap2djxmkafn2hl6gfqvi7v76bccs4jkyv8"; name = "focus"; }; @@ -21477,7 +21708,7 @@ focus-autosave-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "focus-autosave-mode"; - version = "20151012.442"; + version = "20151012.542"; src = fetchFromGitHub { owner = "Vifon"; repo = "focus-autosave-mode.el"; @@ -21485,7 +21716,7 @@ sha256 = "1k5xhnr1jkfw8896kf2nl4633r6ni5bnc53rs6lxn8y9lj0srafb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/focus-autosave-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/focus-autosave-mode"; sha256 = "10cd1x5b1w7apgxd2kq45lv0jlj7az4zmn2iz4iymf2r2hancrcd"; name = "focus-autosave-mode"; }; @@ -21498,7 +21729,7 @@ foggy-night-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "foggy-night-theme"; - version = "20160209.908"; + version = "20160209.1008"; src = fetchFromGitHub { owner = "mswift42"; repo = "foggy-night-theme"; @@ -21506,7 +21737,7 @@ sha256 = "1mnak9k0hz99jq2p7gydxajzvx2vcql8yzwcm0v80a6xji2whl70"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/foggy-night-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/foggy-night-theme"; sha256 = "03x3dhkk81d2zh9nflq6wd7v3khpy9046v8qhq4i9dw6davvy9j4"; name = "foggy-night-theme"; }; @@ -21519,7 +21750,7 @@ fold-dwim = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "fold-dwim"; - version = "20140208.1037"; + version = "20140208.1137"; src = fetchFromGitHub { owner = "emacsmirror"; repo = "fold-dwim"; @@ -21527,7 +21758,7 @@ sha256 = "1yz1wis31asw6xa5maliyd1ck2q02xnnh7dc6swgj9cb4wi7k6i1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fold-dwim"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/fold-dwim"; sha256 = "0c9yxx45zlhb1h4ldgkjv7bndwlagpyingaaqn9dcsxidrvp3p5x"; name = "fold-dwim"; }; @@ -21540,7 +21771,7 @@ fold-dwim-org = callPackage ({ fetchFromGitHub, fetchurl, fold-dwim, lib, melpaBuild }: melpaBuild { pname = "fold-dwim-org"; - version = "20131203.751"; + version = "20131203.851"; src = fetchFromGitHub { owner = "mattfidler"; repo = "fold-dwim-org"; @@ -21548,7 +21779,7 @@ sha256 = "14jvbkahwvv4wb0s9vp8gqmlpv1d4269j5rsjxn79q5pawjzslxw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fold-dwim-org"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/fold-dwim-org"; sha256 = "0812p351rzvqcfn00k92nfhlg3y772y4z4b9f0xqnpa935y6harn"; name = "fold-dwim-org"; }; @@ -21561,7 +21792,7 @@ fold-this = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "fold-this"; - version = "20150601.542"; + version = "20150601.642"; src = fetchFromGitHub { owner = "magnars"; repo = "fold-this.el"; @@ -21569,7 +21800,7 @@ sha256 = "1cbabpyp66nl5j8yhyj2jih4mhaljxvjh9ij05clai71z4598ahn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fold-this"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/fold-this"; sha256 = "1iri4a6ixw3q7qr803cj2ik7rvmww1b6ybj5q2pvkf1v25r8655d"; name = "fold-this"; }; @@ -21582,7 +21813,7 @@ folding = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "folding"; - version = "20140401.203"; + version = "20140401.303"; src = fetchFromGitHub { owner = "jaalto"; repo = "project-emacs--folding-mode"; @@ -21590,7 +21821,7 @@ sha256 = "1z2dkyzj1gq3gp9cc3lhi240f8f3yjpjnw520xszm0wvx1rp06ny"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/folding"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/folding"; sha256 = "0rb4f4llc4z502znmmc0hfi7n07lp01msx4y1iyqijvqzlq2i93y"; name = "folding"; }; @@ -21602,13 +21833,13 @@ }) {}; font-lock-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "font-lock-plus"; - version = "20151231.1519"; + version = "20151231.1619"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/font-lock+.el"; sha256 = "04j9xybn9an3bm2p2aqmqnswxxg3gwq2mc96brkgxkr88h316d4q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/font-lock+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/font-lock+"; sha256 = "1wn99cb53ykds87lg9mrlfpalrmjj177nwskrnp9wglyqs65lk4g"; name = "font-lock-plus"; }; @@ -21621,7 +21852,7 @@ font-lock-studio = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "font-lock-studio"; - version = "20141201.1858"; + version = "20141201.1958"; src = fetchFromGitHub { owner = "Lindydancer"; repo = "font-lock-studio"; @@ -21629,7 +21860,7 @@ sha256 = "04n32rgdz7m24jji8p0j42zmf2r60sdbbr4mkr6435fqyvmdd20k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/font-lock-studio"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/font-lock-studio"; sha256 = "0swwbfaypc78cg4ak24cc92kgxmr1x9vcpaw3jz4zgpm2wzbgmrq"; name = "font-lock-studio"; }; @@ -21642,7 +21873,7 @@ font-utils = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, pcache, persistent-soft }: melpaBuild { pname = "font-utils"; - version = "20150806.1251"; + version = "20150806.1351"; src = fetchFromGitHub { owner = "rolandwalker"; repo = "font-utils"; @@ -21650,7 +21881,7 @@ sha256 = "1k90w8v5rpswqb8fn1cc8sq5w12gf4sn6say5dhvqd63512b0055"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/font-utils"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/font-utils"; sha256 = "0k33jdchjkj7j211a23kfp5axg74cfsrrq4axsb1pfp124swh2n5"; name = "font-utils"; }; @@ -21663,7 +21894,7 @@ fontawesome = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, helm-core, lib, melpaBuild }: melpaBuild { pname = "fontawesome"; - version = "20151202.830"; + version = "20151202.930"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-fontawesome"; @@ -21671,7 +21902,7 @@ sha256 = "103xz042h8w6c85hn19cglfsa34syjh18asm41rjhr9krp15sdl1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fontawesome"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/fontawesome"; sha256 = "07hn4s929xklc74j8s6pd61rxmxw3911dq47wql77vb5pijv6dr3"; name = "fontawesome"; }; @@ -21684,7 +21915,7 @@ forecast = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "forecast"; - version = "20160419.748"; + version = "20160419.848"; src = fetchFromGitHub { owner = "cadadr"; repo = "forecast.el"; @@ -21692,7 +21923,7 @@ sha256 = "05m1ryn9fi4m49d7p68q25svrzfxpl1h9sisa8jlvbiapwmghvgj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/forecast"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/forecast"; sha256 = "0whag2n1120384w304g0w4bqr7svdxxncdhnz4rznfpxlgiw2rsc"; name = "forecast"; }; @@ -21705,7 +21936,7 @@ foreign-regexp = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "foreign-regexp"; - version = "20160318.1107"; + version = "20160318.1207"; src = fetchFromGitHub { owner = "k-talo"; repo = "foreign-regexp.el"; @@ -21713,7 +21944,7 @@ sha256 = "1459hy5kgp0dkzy1jab41aibixgmrk9lk6ysn1801spd8gwph371"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/foreign-regexp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/foreign-regexp"; sha256 = "189cq8n759f28nx10fn3w4qbq7q49bb788kp9l70pj38jgnjn7n7"; name = "foreign-regexp"; }; @@ -21726,7 +21957,7 @@ foreman-mode = callPackage ({ dash, dash-functional, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "foreman-mode"; - version = "20150611.356"; + version = "20150611.456"; src = fetchFromGitHub { owner = "zweifisch"; repo = "foreman-mode"; @@ -21734,7 +21965,7 @@ sha256 = "00wqn8h50xr90pyvwk4sv552yiajlzq56wh6f6lad5w90j47q1lx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/foreman-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/foreman-mode"; sha256 = "0p3kwbld05wf3dwcv0k6ynz727fiy0ik2srx4js9wvagy57x98kv"; name = "foreman-mode"; }; @@ -21747,7 +21978,7 @@ form-feed = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "form-feed"; - version = "20160102.1653"; + version = "20160102.1753"; src = fetchFromGitHub { owner = "wasamasa"; repo = "form-feed"; @@ -21755,7 +21986,7 @@ sha256 = "0nj056x87gcpdqkgx3li5syp6wbj58a1mw2aqa48zflbqwyvs03i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/form-feed"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/form-feed"; sha256 = "1abwjkzi3irw0jwpv3f584zc72my9n8iq8zp5s0354xk6iwrl1rh"; name = "form-feed"; }; @@ -21768,7 +21999,7 @@ format-sql = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "format-sql"; - version = "20150422.833"; + version = "20150422.933"; src = fetchFromGitHub { owner = "paetzke"; repo = "format-sql.el"; @@ -21776,7 +22007,7 @@ sha256 = "0mikksamljps1czacgqavlnzzhgs8s3f8q4jza6v3csf8kgp5zd0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/format-sql"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/format-sql"; sha256 = "0684xqzs933vj9d3n3lv7afk4gii41kaqykbb05cribaswapsanj"; name = "format-sql"; }; @@ -21789,7 +22020,7 @@ fortpy = callPackage ({ auto-complete, epc, fetchFromGitHub, fetchurl, lib, melpaBuild, pos-tip, python-environment }: melpaBuild { pname = "fortpy"; - version = "20150715.1532"; + version = "20150715.1632"; src = fetchFromGitHub { owner = "rosenbrockc"; repo = "fortpy-el"; @@ -21797,7 +22028,7 @@ sha256 = "1nqx2igxmwswjcrnzdjpx5qcjr60zjy3q9cadq5disms17wdcr6y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fortpy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/fortpy"; sha256 = "1nn5vx1rspfsijwhilnjhiy0mjw154ds3lwxvkpwxpchygirlyxj"; name = "fortpy"; }; @@ -21810,7 +22041,7 @@ fortune-cookie = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "fortune-cookie"; - version = "20151111.35"; + version = "20151111.135"; src = fetchFromGitHub { owner = "andschwa"; repo = "fortune-cookie"; @@ -21818,7 +22049,7 @@ sha256 = "1kk04hl2y2svrs07w4pq9f4g7vs9qzy2qpw9prvi1gravmnfrzc4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fortune-cookie"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/fortune-cookie"; sha256 = "0xg0zk7hnyhnbhqpxnzrgqs5yz0sy6wb0n9982qc0pa6jqnl9z78"; name = "fortune-cookie"; }; @@ -21831,7 +22062,7 @@ fountain-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "fountain-mode"; - version = "20160221.707"; + version = "20160221.807"; src = fetchFromGitHub { owner = "rnkn"; repo = "fountain-mode"; @@ -21839,7 +22070,7 @@ sha256 = "1zy45s1m1injwr4d1qvpnvfvv4nkkv9mricshxjannsjfbz09ra7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fountain-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/fountain-mode"; sha256 = "1i55gcjy8ycr1ww2fh1a2j0bchx1bsfs0zd6v4cv5zdgy7vw6840"; name = "fountain-mode"; }; @@ -21852,13 +22083,13 @@ frame-cmds = callPackage ({ fetchurl, frame-fns, lib, melpaBuild }: melpaBuild { pname = "frame-cmds"; - version = "20160124.1026"; + version = "20160124.1126"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/frame-cmds.el"; sha256 = "1867zmm3pyqz8p9ig44jf598z9jkyvbp04mfg6j6ys3hyqfkw942"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/frame-cmds"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/frame-cmds"; sha256 = "0xwzp6sgcb5ap76hpzm8g4kl08a8cgq7i2x9w64njyfink7frwc0"; name = "frame-cmds"; }; @@ -21870,13 +22101,13 @@ }) {}; frame-fns = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "frame-fns"; - version = "20151231.1522"; + version = "20151231.1622"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/frame-fns.el"; sha256 = "0lvlyxb62sgrm37hc21dn7qzlrq2yagiwpspa926q6dpzcsbam15"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/frame-fns"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/frame-fns"; sha256 = "1wq8wva9q1hdzkvjk582a3fgig0lpqz9ch1p2jd6p29kb1i15f5p"; name = "frame-fns"; }; @@ -21889,7 +22120,7 @@ frame-restore = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "frame-restore"; - version = "20140811.1609"; + version = "20140811.1709"; src = fetchFromGitHub { owner = "lunaryorn"; repo = "frame-restore.el"; @@ -21897,7 +22128,7 @@ sha256 = "0n6jhm1198c8slvdymsfjif0dfx3wlf8q4mm0yvpiln46shhwldx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/frame-restore"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/frame-restore"; sha256 = "0b321iyf57nkrm6xv8d1aydivrdapdgng35zcnrg298ws2naysvm"; name = "frame-restore"; }; @@ -21910,7 +22141,7 @@ frame-tag = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "frame-tag"; - version = "20151121.118"; + version = "20151121.218"; src = fetchFromGitHub { owner = "liangzan"; repo = "frame-tag.el"; @@ -21918,7 +22149,7 @@ sha256 = "1vvkdgj8warl40kqmd0408q46dxy9qp2sclq4q92b6falry9qy30"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/frame-tag"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/frame-tag"; sha256 = "1n13xcc3ny9j9h1h4vslpjl6k9mqksr73kgmqrmkq301p8zps94q"; name = "frame-tag"; }; @@ -21930,13 +22161,13 @@ }) {}; framemove = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "framemove"; - version = "20130328.633"; + version = "20130328.733"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/framemove.el"; sha256 = "03ll68d0j0b55rfxymzcirdigkmxcy8556d0i67ghdzmcqfwily7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/framemove"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/framemove"; sha256 = "10qf017j0zfnzmcs1i56pznhbvgw7mv4232p8znqaaxphgh6r0ar"; name = "framemove"; }; @@ -21949,7 +22180,7 @@ framesize = callPackage ({ fetchFromGitHub, fetchurl, key-chord, lib, melpaBuild }: melpaBuild { pname = "framesize"; - version = "20131017.1632"; + version = "20131017.1732"; src = fetchFromGitHub { owner = "nicferrier"; repo = "emacs-framesize"; @@ -21957,7 +22188,7 @@ sha256 = "11h9xw6jnw7dacyv1jch2a77xp7hfb93690m7hhazy6l87xmm4dk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/framesize"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/framesize"; sha256 = "1rwiwx3n7gkpfihbf6ndl1lxza4zi2rlj5av6lfp5qypbw9wddkf"; name = "framesize"; }; @@ -21970,7 +22201,7 @@ free-keys = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "free-keys"; - version = "20151202.522"; + version = "20151202.622"; src = fetchFromGitHub { owner = "Fuco1"; repo = "free-keys"; @@ -21978,7 +22209,7 @@ sha256 = "12rmwf7gm9ib2c99jangygh2yswy41vxlp90rg0hvlhdfmbqa8p0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/free-keys"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/free-keys"; sha256 = "0j9cfgy2nkbska4lm5z32p804i9n8pdgn50bs5zzk1ilwd5vbalj"; name = "free-keys"; }; @@ -21991,7 +22222,7 @@ fringe-current-line = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "fringe-current-line"; - version = "20140110.2211"; + version = "20140110.2311"; src = fetchFromGitHub { owner = "kyanagi"; repo = "fringe-current-line"; @@ -21999,7 +22230,7 @@ sha256 = "0zwlnzbi91hkfz1jgj9s9pxwi21s21cwp6psdm687wj2a3wy4231"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fringe-current-line"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/fringe-current-line"; sha256 = "125yn0wbrrxrmdn7qfxj0f4538sb3xnqb3r2inz3gpblc1vxnqb8"; name = "fringe-current-line"; }; @@ -22012,7 +22243,7 @@ fringe-helper = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "fringe-helper"; - version = "20140620.1609"; + version = "20140620.1709"; src = fetchFromGitHub { owner = "nschum"; repo = "fringe-helper.el"; @@ -22020,7 +22251,7 @@ sha256 = "0ra9rc53l1gvkqank8apasl3r7wz2yfjrcvmfk3wpxhh24ppxv9d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fringe-helper"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/fringe-helper"; sha256 = "1vki5jd8jfrlrjcfd12gisgk12y20q3943i2qjgg4qvcj9k28cbv"; name = "fringe-helper"; }; @@ -22033,15 +22264,15 @@ fsharp-mode = callPackage ({ company, company-quickhelp, dash, fetchFromGitHub, fetchurl, lib, melpaBuild, popup, pos-tip, s }: melpaBuild { pname = "fsharp-mode"; - version = "20160414.1020"; + version = "20160427.1148"; src = fetchFromGitHub { owner = "rneatherway"; repo = "emacs-fsharp-mode-bin"; - rev = "29fa2a8c62b6ee564977d86ec815ad7a8899f7f1"; - sha256 = "0rj4dyhygn8bhhwf4cbs6mfz5vwl4x6f0664vi0rmhc6ghwbzy6k"; + rev = "a557fbd55c51b66a6a6bcf7a1ea2afac8371f45d"; + sha256 = "1d28kdh96izj05mfknhgyd8954kl2abjgjlinmx1bsa9flb9vgpb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fsharp-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/fsharp-mode"; sha256 = "07pkj30cawh0diqhrp3jkshgsd0i3y34rdnjb4af8mr7dsbsxb6z"; name = "fsharp-mode"; }; @@ -22054,7 +22285,7 @@ fstar-mode = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "fstar-mode"; - version = "20160215.907"; + version = "20160215.1007"; src = fetchFromGitHub { owner = "FStarLang"; repo = "fstar-mode.el"; @@ -22062,7 +22293,7 @@ sha256 = "0vw6z68b99llcj10jy7vbmirlx62j23rgzxgdngl7kj6rfg9llpy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fstar-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/fstar-mode"; sha256 = "0kyzkghdkrnqqbd5b969pjyz9jxgq0j8hkmvlcwikl7ynnhm9lgy"; name = "fstar-mode"; }; @@ -22075,14 +22306,14 @@ fuel = callPackage ({ cl-lib ? null, emacs, fetchgit, fetchurl, lib, melpaBuild }: melpaBuild { pname = "fuel"; - version = "20160328.729"; + version = "20160328.829"; src = fetchgit { url = "git://factorcode.org/git/factor.git"; - rev = "20e8ca1f9e8fcfdbe8898e06b149d51b7254933d"; - sha256 = "072cbl5n4lyshnyij7vdyz5xhv0lbh0z4kjx9rcvwr1zcmw2w75x"; + rev = "2b91a3e083998925f9d8843b3ede6d2fb3d41148"; + sha256 = "1jq1gkx0hp2i4fi2y48scl03bp96k2pln6d10kx0bl4y3kjlpa7p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fuel"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/fuel"; sha256 = "0m24p2788r4xzm56hm9kmpzcskwh82vgbs3hqfb9xygpl4isp756"; name = "fuel"; }; @@ -22095,7 +22326,7 @@ full-ack = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "full-ack"; - version = "20140223.1132"; + version = "20140223.1232"; src = fetchFromGitHub { owner = "nschum"; repo = "full-ack"; @@ -22103,7 +22334,7 @@ sha256 = "0bjny4ryrs788myhiaf3ir99vadf2v4swa5gkz9i36a7j6wzpgk5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/full-ack"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/full-ack"; sha256 = "09ikhyhpvkcl6yl6pa4abnw6i7yfsx5jkmzypib94w7khikvb309"; name = "full-ack"; }; @@ -22116,15 +22347,15 @@ fullframe = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "fullframe"; - version = "20160223.242"; + version = "20160504.1049"; src = fetchFromGitHub { owner = "tomterl"; repo = "fullframe"; - rev = "53872482447c46554760a73d99e6a4822d676664"; - sha256 = "06f5qqhqgdrdc2dk7vyb5l6z5nsa5gpkfbm36vnfydj4mchvlr8j"; + rev = "b91b0b128c08692c147394842a5e4eeb21ebe0b6"; + sha256 = "0nhw708b5jjymbw3b7np11jlkzdrzq7qnnxdyl8nndsn1c3qcr0l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fullframe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/fullframe"; sha256 = "08sh8lmb6g8asv28fcb36ilcn0ka4fc6ka0pnslid0h4c32fxp2a"; name = "fullframe"; }; @@ -22137,7 +22368,7 @@ function-args = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, swiper }: melpaBuild { pname = "function-args"; - version = "20160206.717"; + version = "20160206.817"; src = fetchFromGitHub { owner = "abo-abo"; repo = "function-args"; @@ -22145,7 +22376,7 @@ sha256 = "067fmk46wk6jpc01wylagw948sgs3ndrq18mp3x81pdv3dykzmr6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/function-args"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/function-args"; sha256 = "13yfscr993pll5yg019v9dwy71g123a166w114n2m78h0rbnzdak"; name = "function-args"; }; @@ -22158,7 +22389,7 @@ furl = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "furl"; - version = "20150508.2216"; + version = "20150508.2316"; src = fetchFromGitHub { owner = "nex3"; repo = "furl-el"; @@ -22166,7 +22397,7 @@ sha256 = "0wrmbvx0risdjkaxqmh4li6iwvg4635cdpjvw32k2wkdsyn2dlsb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/furl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/furl"; sha256 = "1z3yqx95qmvpi6vkkgcwvkmw96s24h8ssd5gc06988picw6vj76f"; name = "furl"; }; @@ -22179,7 +22410,7 @@ fuzzy = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "fuzzy"; - version = "20150729.2237"; + version = "20150729.2337"; src = fetchFromGitHub { owner = "auto-complete"; repo = "fuzzy-el"; @@ -22187,7 +22418,7 @@ sha256 = "0rzp8c2164w775ggm2fs4j5dz33vqcah84ysp81majirwfql1niv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fuzzy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/fuzzy"; sha256 = "1hwdh9bx4g4vzzyc20vdwxsii611za37kc9ik40kwjjk62qmll8h"; name = "fuzzy"; }; @@ -22199,13 +22430,13 @@ }) {}; fuzzy-format = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "fuzzy-format"; - version = "20130824.700"; + version = "20130824.800"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/fuzzy-format.el"; sha256 = "1iv0x1cb12kknnxyq2gca7m3c3rg9s4cxz397sazkh1csrn0b2i7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fuzzy-format"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/fuzzy-format"; sha256 = "055b8710yxbi2sdqsqk6jqgnzky4nykv8jgqgwy8q2isgj6q98jb"; name = "fuzzy-format"; }; @@ -22217,13 +22448,13 @@ }) {}; fuzzy-match = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "fuzzy-match"; - version = "20151231.1523"; + version = "20151231.1623"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/fuzzy-match.el"; sha256 = "1q3gbv9xp2jxrf9vfarjqk9k805xc9z72zbaw7aqdxrj1bafxwnz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fuzzy-match"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/fuzzy-match"; sha256 = "0mpy84f2zdyzmipzhs06b8rl2pxiypazf35ls1nc1yj8r16ijrds"; name = "fuzzy-match"; }; @@ -22236,7 +22467,7 @@ fvwm-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "fvwm-mode"; - version = "20160411.638"; + version = "20160411.738"; src = fetchFromGitHub { owner = "theBlackDragon"; repo = "fvwm-mode"; @@ -22244,7 +22475,7 @@ sha256 = "03zmk4v259pqx7gkwqq95lccn78rwmh7iq5j0d5jj4jf9h39rr20"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fvwm-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/fvwm-mode"; sha256 = "07y32cnp4qfhncp7s24gmlxljdrj5miicinfaf4gc7hihb4bkrkb"; name = "fvwm-mode"; }; @@ -22257,7 +22488,7 @@ fwb-cmds = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "fwb-cmds"; - version = "20131209.1800"; + version = "20131209.1900"; src = fetchFromGitHub { owner = "tarsius"; repo = "fwb-cmds"; @@ -22265,7 +22496,7 @@ sha256 = "08qnyr945938hwjg1ypkf2x4mfxbh3bbf1xrgz1rk2ddrfv7hmkm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fwb-cmds"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/fwb-cmds"; sha256 = "0wnjvi0v0l2h1mhwlsk2d8ggwh3nk7pks48l55gp18nmj00jxycx"; name = "fwb-cmds"; }; @@ -22278,15 +22509,15 @@ fxrd-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "fxrd-mode"; - version = "20160311.1815"; + version = "20160503.1645"; src = fetchFromGitHub { owner = "msherry"; repo = "fxrd-mode"; - rev = "841e9d26ed5020b7320ca5a2daed0577bbd670be"; - sha256 = "1w0h369s8rii1n88xqy4rnkyr5y5w6zybbnmjcw68gp43jzqfkjw"; + rev = "a7f31eed83e889279681ba9d872f88bf86969011"; + sha256 = "1m8zgwcfl0i3yizx01ikxjhhqm1nj74q35fs3d32z9fkk5h21m2d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fxrd-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/fxrd-mode"; sha256 = "17zimg64lqc1yh9gnp5izshkvviz996aym7q6n9p61a4kqq37z4r"; name = "fxrd-mode"; }; @@ -22299,7 +22530,7 @@ fyure = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "fyure"; - version = "20130216.714"; + version = "20130216.814"; src = fetchFromGitHub { owner = "mooz"; repo = "fyure"; @@ -22307,7 +22538,7 @@ sha256 = "08x5li0mshrlamr7vswy7xh358bqhh3pngjr4ckswfi0l2r5fjbd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fyure"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/fyure"; sha256 = "0k5z2xqlrzp5lyvp2lr462x38kqdmqld845bvyvkfjd2k4yri71x"; name = "fyure"; }; @@ -22320,7 +22551,7 @@ fzf = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "fzf"; - version = "20151129.833"; + version = "20151129.933"; src = fetchFromGitHub { owner = "bling"; repo = "fzf.el"; @@ -22328,7 +22559,7 @@ sha256 = "0rjn4z7ssl1jy0brvsci44mhpig3zkdbcj8gcylzznhz0qfk1ljj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fzf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/fzf"; sha256 = "0jjzm1gq85fx1gmj6nqaijnjws9bm8hmk40ws3x7fmsp41qq5py0"; name = "fzf"; }; @@ -22341,7 +22572,7 @@ gams-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "gams-mode"; - version = "20160320.428"; + version = "20160320.528"; src = fetchFromGitHub { owner = "ShiroTakeda"; repo = "gams-mode"; @@ -22349,7 +22580,7 @@ sha256 = "16x3fz2ljrmqhjy7w96fhp3j9ja2gib042c363yfrzwa7q5rxzd2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gams-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/gams-mode"; sha256 = "0hx9mv4sqskz4nn7aks64hqd4vn3m7b34abzhy9bnmyw6d5zzfci"; name = "gams-mode"; }; @@ -22362,7 +22593,7 @@ gandalf-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "gandalf-theme"; - version = "20130809.447"; + version = "20130809.547"; src = fetchFromGitHub { owner = "ptrv"; repo = "gandalf-theme-emacs"; @@ -22370,7 +22601,7 @@ sha256 = "0sn3y1ilbg532mg941qmzipvzq86q31x86ypaf0h0m4015r7l59v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gandalf-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/gandalf-theme"; sha256 = "0wkmsg3pdw98gyp3q508wsqkzw821qsqi796ynm53zd7a4jfap4p"; name = "gandalf-theme"; }; @@ -22382,14 +22613,14 @@ }) {}; gap-mode = callPackage ({ fetchhg, fetchurl, lib, melpaBuild }: melpaBuild { pname = "gap-mode"; - version = "20160204.936"; + version = "20160204.1036"; src = fetchhg { url = "https://bitbucket.com/gvol/gap-mode"; rev = "1de32f2ff384"; sha256 = "1jsw2mywc0y8sf7yl7y3i3l8vs3jv1srjf34lgb5xfz6p8wc5lc0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gap-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/gap-mode"; sha256 = "07whab3gi4b8gsvy5ijmjnj700lw0rm3bnr1769byhnpi7qpqin2"; name = "gap-mode"; }; @@ -22402,7 +22633,7 @@ gather = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "gather"; - version = "20141230.738"; + version = "20141230.838"; src = fetchFromGitHub { owner = "mhayashi1120"; repo = "Emacs-gather"; @@ -22410,7 +22641,7 @@ sha256 = "0j0dg7nl9kmanayvw0712x5c5x9h48qmqdsyi0pijvgmv8l5slg5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gather"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/gather"; sha256 = "1f0cqqp1a7w8g1pfvzxxb0hjrxq4m79a4n85dncqj2xhjxrkm0xk"; name = "gather"; }; @@ -22420,29 +22651,52 @@ license = lib.licenses.free; }; }) {}; - geben = callPackage ({ fetchsvn, fetchurl, lib, melpaBuild }: melpaBuild { + geben = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { pname = "geben"; - version = "20100330.543"; - src = fetchsvn { - url = "http://geben-on-emacs.googlecode.com/svn/trunk/"; - rev = "124"; - sha256 = "01kbvmylymm6qww45mbjjxmb8ccdl9c2pxdyqfq3g73vwzrvndk4"; + version = "20160430.2250"; + src = fetchFromGitHub { + owner = "ahungry"; + repo = "geben"; + rev = "acef834658b620bf6fcbb42532ad7953642780b8"; + sha256 = "1vklzd8088hszkv2ggdx5x9ai8ycrfgfic56r51gh2p95i2690y2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/geben"; - sha256 = "1hvvy1kp8wrb1qasm42fslgdkg095g4jxgzbnwpa4vp5cq270qbm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/geben"; + sha256 = "1ai1qcx76m8xh80c8zixq9cqbhnqmj3jk3r7lj3ngbiwx4pnlnwf"; name = "geben"; }; - packageRequires = []; + packageRequires = [ cl-lib emacs ]; meta = { homepage = "https://melpa.org/#/geben"; license = lib.licenses.free; }; }) {}; + geben-helm-projectile = callPackage ({ emacs, fetchFromGitHub, fetchurl, geben, helm-projectile, lib, melpaBuild }: + melpaBuild { + pname = "geben-helm-projectile"; + version = "20160430.148"; + src = fetchFromGitHub { + owner = "ahungry"; + repo = "geben-helm-projectile"; + rev = "b2528b2c7c72047aee7956956d7cc5932bd97db8"; + sha256 = "1w2h059bfdxa18sk8xrk2cdssj1s1qdp7mb38plgvndgs6fccwn3"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/geben-helm-projectile"; + sha256 = "11zhapys6wx2cadflvjimsmilwvjpfd4ihwzzmap8shxpyllsq9r"; + name = "geben-helm-projectile"; + }; + packageRequires = [ emacs geben helm-projectile ]; + meta = { + homepage = "https://melpa.org/#/geben-helm-projectile"; + license = lib.licenses.free; + }; + }) {}; geeknote = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "geeknote"; - version = "20150223.1015"; + version = "20150223.1115"; src = fetchFromGitHub { owner = "avendael"; repo = "emacs-geeknote"; @@ -22450,7 +22704,7 @@ sha256 = "14v5gm931dcsfflhsvijr4ihx7cs6jymvnjzph3arvhvqwyqhwgq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/geeknote"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/geeknote"; sha256 = "1ci82fj3layd95lqj2w40y87xps6bs7x05z8ai9m59k244g26m8v"; name = "geeknote"; }; @@ -22463,15 +22717,15 @@ geiser = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "geiser"; - version = "20160422.1920"; + version = "20160502.1515"; src = fetchFromGitHub { owner = "jaor"; repo = "geiser"; - rev = "dcaf849ccdfd488fb26e0d9131bbc59928690e0d"; - sha256 = "018kcbmwm8nqv2hgg0sfsdb2fz6ikhrqgzf1l1rr4knpcrrj8s6g"; + rev = "2e335695fc1a4a0b520b50deb761b958194cbec4"; + sha256 = "00rmpn8zncq1fiah5m12l26z0s28bh7ql63kxdvksqdgfrisnmgf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/geiser"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/geiser"; sha256 = "067rrjvyn5sz60w9h7qn542d9iycm2q4ryvx3n6xlard0dky5596"; name = "geiser"; }; @@ -22484,15 +22738,15 @@ general = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "general"; - version = "20160424.1829"; + version = "20160430.24"; src = fetchFromGitHub { owner = "noctuid"; repo = "general.el"; - rev = "10f0a0e6b308c8f59011edc13c5b184fcb949d58"; - sha256 = "0kng0bfb0wsa1ds907yhcrynv4cvzsf805l1kiqd736bkqi17vjq"; + rev = "f9f19dcc04f1b4b8f8f4591516507a922b69561a"; + sha256 = "0a7w5c4k3pcfanvgapwyxzphxaa6cm5p8i5b0flqhmpsdx93kajk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/general"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/general"; sha256 = "104ywsfylfymly64p1i3hsy9pnpz3dkpmcq1ygafnld8zjd08gpc"; name = "general"; }; @@ -22505,15 +22759,15 @@ general-close = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "general-close"; - version = "20151222.343"; + version = "20160501.344"; src = fetchFromGitHub { owner = "emacs-berlin"; repo = "general-close"; - rev = "5d3beb49c06c5df0ba7c305f64d31db2c93760af"; - sha256 = "1x9v8w224ifww0mn4a1rj60pi53h9iv1vli1n74a778bqv54vz3d"; + rev = "ff6ca92c18cd5292d2b270f862a44b1aaf1d37b7"; + sha256 = "024xshsl1wvjgnik3dc29g29a503rx46j8v9d6hfd597nf0qmz6p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/general-close"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/general-close"; sha256 = "17v0aprfvxbygx5517a8hrl88qm5lb9k7523yd0ps5p9l5x96964"; name = "general-close"; }; @@ -22526,7 +22780,7 @@ genrnc = callPackage ({ concurrent, deferred, fetchFromGitHub, fetchurl, lib, log4e, melpaBuild, yaxception }: melpaBuild { pname = "genrnc"; - version = "20140612.737"; + version = "20140612.837"; src = fetchFromGitHub { owner = "aki2o"; repo = "emacs-genrnc"; @@ -22534,7 +22788,7 @@ sha256 = "08cw1fa25kbhbq2sp1cpn90bz38i9hjfdj93xf6wvki55b52s0nn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/genrnc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/genrnc"; sha256 = "1nwbdscl0yh9j1n421can93m6s8j9dkyb3xmpampr6x528g6z0lm"; name = "genrnc"; }; @@ -22547,7 +22801,7 @@ german-holidays = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "german-holidays"; - version = "20151102.943"; + version = "20151102.1043"; src = fetchFromGitHub { owner = "rudolfochrist"; repo = "german-holidays"; @@ -22555,7 +22809,7 @@ sha256 = "0344w4sbd6wlgl13j163v0hzjw9nwhvpr5s7658xsdd90wp4i701"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/german-holidays"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/german-holidays"; sha256 = "0fgrxdgyl6va6axjc5l4sp90pyqaz5zha1g73xyhbxblshm5dwxn"; name = "german-holidays"; }; @@ -22568,7 +22822,7 @@ gerrit-download = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, magit, melpaBuild }: melpaBuild { pname = "gerrit-download"; - version = "20150714.908"; + version = "20150714.1008"; src = fetchFromGitHub { owner = "chmouel"; repo = "gerrit-download.el"; @@ -22576,7 +22830,7 @@ sha256 = "1ch8yp0mgk57x0pny9bvkknsqj27fd1rcmpm9s7qpryrwqkp1ix4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gerrit-download"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/gerrit-download"; sha256 = "1rlz0iqgvr8yxnv5qmk29xs1jwf0g0ckzanlyldcxvs7n6mhkjjp"; name = "gerrit-download"; }; @@ -22589,7 +22843,7 @@ ggo-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ggo-mode"; - version = "20130524.643"; + version = "20130524.743"; src = fetchFromGitHub { owner = "mkjunker"; repo = "ggo-mode"; @@ -22597,7 +22851,7 @@ sha256 = "0bwjiq4a4f5pg0ngvc3lmkk7aki8n9zqfa1dym0lk4vy6yfhcbhp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ggo-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ggo-mode"; sha256 = "1403x530n90jlfz3lq2vfiqx84cxsrhgs6hhmniq960cjj31q35p"; name = "ggo-mode"; }; @@ -22610,7 +22864,7 @@ ggtags = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ggtags"; - version = "20151214.1544"; + version = "20151214.1644"; src = fetchFromGitHub { owner = "leoliu"; repo = "ggtags"; @@ -22618,7 +22872,7 @@ sha256 = "1qjh7av046ax4240iw40hv5fc0k23c36my9hili7fp4y2ak99l8n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ggtags"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ggtags"; sha256 = "1cmry4knxbx9257ivhfxsd09z07z3g3wjihi99nrwmhb9h4mpqyw"; name = "ggtags"; }; @@ -22631,7 +22885,7 @@ gh = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, logito, melpaBuild, pcache }: melpaBuild { pname = "gh"; - version = "20160222.2011"; + version = "20160222.2111"; src = fetchFromGitHub { owner = "sigma"; repo = "gh.el"; @@ -22639,7 +22893,7 @@ sha256 = "10iy5sfyqnz3mrl951j9skxp1s8zm6cqmsadgbxnl9fj3br3ygd1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gh"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/gh"; sha256 = "1141l8pas3m755yzby4zsan7p81nbnlch3kj1zh69qzjpgqp30c0"; name = "gh"; }; @@ -22652,7 +22906,7 @@ gh-md = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "gh-md"; - version = "20151207.1140"; + version = "20151207.1240"; src = fetchFromGitHub { owner = "emacs-pe"; repo = "gh-md.el"; @@ -22660,7 +22914,7 @@ sha256 = "0g3bjpnwgqczw6ddh4mv7pby0zyqzqgywjrjz2ib6hwmdqzyp1s0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gh-md"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/gh-md"; sha256 = "0b72fl1hj7gkqlqrr8hklq0w3ryqqqfn5qpb7a9i6q0vh98652xm"; name = "gh-md"; }; @@ -22673,7 +22927,7 @@ ghc = callPackage ({ fetchFromGitHub, fetchurl, haskell-mode, lib, melpaBuild }: melpaBuild { pname = "ghc"; - version = "20160108.901"; + version = "20160108.1001"; src = fetchFromGitHub { owner = "DanielG"; repo = "ghc-mod"; @@ -22681,7 +22935,7 @@ sha256 = "19g2pq3l8zsd8c5r594071b610dsxch2wbprmw91myhydrvaz3zz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ghc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ghc"; sha256 = "02nc7a9khqpd4ca2snam8dq72m53q8x7v5awx56bjq31z6vcmav5"; name = "ghc"; }; @@ -22694,7 +22948,7 @@ ghc-imported-from = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ghc-imported-from"; - version = "20141124.1332"; + version = "20141124.1432"; src = fetchFromGitHub { owner = "david-christiansen"; repo = "ghc-imported-from-el"; @@ -22702,7 +22956,7 @@ sha256 = "1ywwyc2kz1c1s26c412nmzh55cinh84cfiazyyi3jsy5zzwhrbhi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ghc-imported-from"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ghc-imported-from"; sha256 = "10cxz4c341lknyz4ns63bri00mya39278xav12c73if03llsyzy5"; name = "ghc-imported-from"; }; @@ -22715,7 +22969,7 @@ ghci-completion = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ghci-completion"; - version = "20151125.657"; + version = "20151125.757"; src = fetchFromGitHub { owner = "manzyuk"; repo = "ghci-completion"; @@ -22723,7 +22977,7 @@ sha256 = "17fl3k2sqiavbv3bp6rnp3p89j6pnpkkp7wi26pzzk4675r5k45q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ghci-completion"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ghci-completion"; sha256 = "1a6k47z5kmacj1s5479393jyj27bjx0911yaqfmmwg2hr0yz7vll"; name = "ghci-completion"; }; @@ -22736,7 +22990,7 @@ gherkin-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "gherkin-mode"; - version = "20140107.1004"; + version = "20140107.1104"; src = fetchFromGitHub { owner = "candera"; repo = "gherkin-mode"; @@ -22744,7 +22998,7 @@ sha256 = "0lcbyw6yrl6c8py5v2hqghcbsf9cbiplzil90al4lwqps7rw09a8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gherkin-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/gherkin-mode"; sha256 = "0dhrsz24hn0sdf22wpmzbkn66g4540vdkl03pc27kv21gwa9ixxv"; name = "gherkin-mode"; }; @@ -22757,7 +23011,7 @@ ghq = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ghq"; - version = "20151130.318"; + version = "20151130.418"; src = fetchFromGitHub { owner = "rcoedo"; repo = "emacs-ghq"; @@ -22765,7 +23019,7 @@ sha256 = "1aj5j0y244r1fbbbl0lzb53wnyhljw91kb4n3hi2gagm7zwp8jcf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ghq"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ghq"; sha256 = "0prvywcgwdhx5pw66rv5kkfriahal2mli2ibam5np3z6bwcq4ngh"; name = "ghq"; }; @@ -22778,7 +23032,7 @@ gildas-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, polymode }: melpaBuild { pname = "gildas-mode"; - version = "20150919.1701"; + version = "20150919.1801"; src = fetchFromGitHub { owner = "smaret"; repo = "gildas-mode"; @@ -22786,7 +23040,7 @@ sha256 = "1na8pp1g940zi22jgqi6drsm12db0hyw99v493i5j1p2y67c4hxw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gildas-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/gildas-mode"; sha256 = "0bc3d8bnvg1w2chrr4rp9daq1x8p41qgklrniq0bbkr2h93cmkgv"; name = "gildas-mode"; }; @@ -22799,7 +23053,7 @@ gist = callPackage ({ emacs, fetchFromGitHub, fetchurl, gh, lib, melpaBuild }: melpaBuild { pname = "gist"; - version = "20160118.1856"; + version = "20160118.1956"; src = fetchFromGitHub { owner = "defunkt"; repo = "gist.el"; @@ -22807,7 +23061,7 @@ sha256 = "18433gjhra0gqrwnxssd3njpxbvqhh64bds9rym1vq9l7w09z024"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/gist"; sha256 = "053fl8aw0ram9wsabzvmlm5w2klwd2pgcn2w9r1yqfs4xqja5sd3"; name = "gist"; }; @@ -22820,7 +23074,7 @@ git = callPackage ({ dash, f, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "git"; - version = "20140128.441"; + version = "20140128.541"; src = fetchFromGitHub { owner = "rejeep"; repo = "git.el"; @@ -22828,7 +23082,7 @@ sha256 = "0471xm0h6jkmxnrcqy5agq42i8immdb2qpnw7q7czrbsl521al8d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/git"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/git"; sha256 = "1nd2yvfgin13m368gjn7xah99glspnam4g4fh348x4makxcaw8w5"; name = "git"; }; @@ -22841,7 +23095,7 @@ git-annex = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "git-annex"; - version = "20160215.1311"; + version = "20160215.1411"; src = fetchFromGitHub { owner = "jwiegley"; repo = "git-annex-el"; @@ -22849,7 +23103,7 @@ sha256 = "0d2blcnyqd1br7zhwprdxpx2jphjhsb4jgaw9dr4gvv0xdb2sr87"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/git-annex"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/git-annex"; sha256 = "0194y24vq1w6m2cjgqgx9dqp99cq8y9licyry2zxa5brbrsxi94l"; name = "git-annex"; }; @@ -22862,7 +23116,7 @@ git-auto-commit-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "git-auto-commit-mode"; - version = "20150404.951"; + version = "20150404.1051"; src = fetchFromGitHub { owner = "ryuslash"; repo = "git-auto-commit-mode"; @@ -22870,7 +23124,7 @@ sha256 = "0psmr7749nzxln4b500sl3vrf24x3qijp12ir0i5z4x25k72hrlh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/git-auto-commit-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/git-auto-commit-mode"; sha256 = "0nf4n63xnzcsizjk1yl8qvqj9wjdqy57kvn6r736xvsxwzd44xgl"; name = "git-auto-commit-mode"; }; @@ -22883,7 +23137,7 @@ git-blame = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "git-blame"; - version = "20110509.1126"; + version = "20110509.1226"; src = fetchFromGitHub { owner = "tsgates"; repo = "git-emacs"; @@ -22891,7 +23145,7 @@ sha256 = "0g839pzmipjlv32r0gh166jn3na5d0wh2w1sia2k4yx1w0ch1bsx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/git-blame"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/git-blame"; sha256 = "0glmnj77vya8ivjin4qja7lis67wyibzy9k6z8b54z7mqf9ikx06"; name = "git-blame"; }; @@ -22904,7 +23158,7 @@ git-command = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, term-run, with-editor }: melpaBuild { pname = "git-command"; - version = "20160111.703"; + version = "20160111.803"; src = fetchFromGitHub { owner = "10sr"; repo = "git-command-el"; @@ -22912,7 +23166,7 @@ sha256 = "1irqmypgc4l1jlzj4g65ihpic3ffnnkcg1hlysj7qpip5nbflqgl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/git-command"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/git-command"; sha256 = "1hsxak63y6648n0jkzl5ajxg45w84qq8vljvjh0bmwfrbb67kwbg"; name = "git-command"; }; @@ -22925,15 +23179,15 @@ git-commit = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, with-editor }: melpaBuild { pname = "git-commit"; - version = "20160425.630"; + version = "20160425.730"; src = fetchFromGitHub { owner = "magit"; repo = "magit"; - rev = "d1f678316f2c27e9677760938757b38168e36ebc"; - sha256 = "01pcx8bx07vqzd3b3rb3y4hgv8fhrlal7ayn0f70nr01f3v0gfl1"; + rev = "d836f2e037812271ca1f6cec5303d6d91b921508"; + sha256 = "16a9laf3lgjcksip31j2nvbfx26r8ri4ajph4w0b893mfzdqv2qk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/git-commit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/git-commit"; sha256 = "1i7122fydqga68cilgzir80xfq77hnrw75zrvn52mjymfli6aza2"; name = "git-commit"; }; @@ -22946,7 +23200,7 @@ git-commit-insert-issue = callPackage ({ fetchFromGitLab, fetchurl, github-issues, helm, lib, melpaBuild, projectile, s }: melpaBuild { pname = "git-commit-insert-issue"; - version = "20160122.949"; + version = "20160122.1049"; src = fetchFromGitLab { owner = "emacs-stuff"; repo = "git-commit-insert-issue"; @@ -22954,7 +23208,7 @@ sha256 = "1vdyrqg2w5q4xmazqqh2ymjnrp9p1x5172nllwryz43jvvxaw05s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/git-commit-insert-issue"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/git-commit-insert-issue"; sha256 = "0mhpszm2y178dxgjv3kh2n744hg2kd60h16zbgmjf4f8228xw8j3"; name = "git-commit-insert-issue"; }; @@ -22966,13 +23220,13 @@ }) {}; git-dwim = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "git-dwim"; - version = "20130130.1550"; + version = "20130130.1650"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/git-dwim.el"; sha256 = "074k1r8rkvyhhwnqy4gnyd7shidxgc25l1xq4hmnwjn13nsyqfnv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/git-dwim"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/git-dwim"; sha256 = "0vdd2cksiqbnxplqbpb16bcmp137fj3p9a7pa0622wx8vd5p0rkr"; name = "git-dwim"; }; @@ -22985,7 +23239,7 @@ git-gutter = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "git-gutter"; - version = "20160409.913"; + version = "20160409.1013"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-git-gutter"; @@ -22993,7 +23247,7 @@ sha256 = "1493302p60gxi15v9zcz0s3pac4w1x2zmxas1lvj9micv379khhh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/git-gutter"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/git-gutter"; sha256 = "19s344i95piixlzq4mjgmgjw7cy8af02z6hg89jjjdbxrfl4i2fg"; name = "git-gutter"; }; @@ -23006,7 +23260,7 @@ git-gutter-fringe = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, fringe-helper, git-gutter, lib, melpaBuild }: melpaBuild { pname = "git-gutter-fringe"; - version = "20150331.2339"; + version = "20150401.39"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-git-gutter-fringe"; @@ -23014,7 +23268,7 @@ sha256 = "0vc1da72vwlys723xi7xvv4ii43sjxgsywb2ss0l0kcm0rays6lv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/git-gutter-fringe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/git-gutter-fringe"; sha256 = "10k07dzmkxsxzwc70vpv05rxjyps9494y6k7yhlv8d46x7xjyp0z"; name = "git-gutter-fringe"; }; @@ -23027,7 +23281,7 @@ git-gutter-fringe-plus = callPackage ({ fetchFromGitHub, fetchurl, fringe-helper, git-gutter-plus, lib, melpaBuild }: melpaBuild { pname = "git-gutter-fringe-plus"; - version = "20140729.603"; + version = "20140729.703"; src = fetchFromGitHub { owner = "nonsequitur"; repo = "git-gutter-fringe-plus"; @@ -23035,7 +23289,7 @@ sha256 = "1rsj193zpblndki4khjjlwl2njxb329d42l75ki55msxifqrn4fi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/git-gutter-fringe+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/git-gutter-fringe+"; sha256 = "1zkjb8p08cq2nqskn79rjszlhp9mrblplgamgi66yskz8qb1bgcc"; name = "git-gutter-fringe-plus"; }; @@ -23048,7 +23302,7 @@ git-gutter-plus = callPackage ({ dash, fetchFromGitHub, fetchurl, git-commit, lib, melpaBuild }: melpaBuild { pname = "git-gutter-plus"; - version = "20151204.1123"; + version = "20151204.1223"; src = fetchFromGitHub { owner = "nonsequitur"; repo = "git-gutter-plus"; @@ -23056,7 +23310,7 @@ sha256 = "0bhrrgdzzj8gwxjx7b2kibp1b6s0vgvykfg0n47iq49m6rqkgi5q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/git-gutter+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/git-gutter+"; sha256 = "1w78p5cz6kyl9kmndgvwnfrs80ha707s8952hycrihgfb6lixmp0"; name = "git-gutter-plus"; }; @@ -23069,7 +23323,7 @@ git-lens = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "git-lens"; - version = "20160204.37"; + version = "20160204.137"; src = fetchFromGitHub { owner = "pidu"; repo = "git-lens"; @@ -23077,7 +23331,7 @@ sha256 = "02p73q0kl9z44b9a2bhqg03mkqx6gf61n88qlwwg4420dxrf7sbc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/git-lens"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/git-lens"; sha256 = "1vv3s89vk5ncinqh2f724z0qbbzp8g4y5y670ryy56w1l6v2acfb"; name = "git-lens"; }; @@ -23090,7 +23344,7 @@ git-link = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "git-link"; - version = "20160401.2050"; + version = "20160401.2150"; src = fetchFromGitHub { owner = "sshaw"; repo = "git-link"; @@ -23098,7 +23352,7 @@ sha256 = "0a1kxdz05ly9wbzyxcb79xlmy11q38xplf5s8w8klmyajdn43g1j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/git-link"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/git-link"; sha256 = "1vqabnmdw8pxd84c15ghh1rnglwb5i4zxicvpkg1ci8xalayn1c7"; name = "git-link"; }; @@ -23111,7 +23365,7 @@ git-messenger = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, popup }: melpaBuild { pname = "git-messenger"; - version = "20160121.2042"; + version = "20160121.2142"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-git-messenger"; @@ -23119,7 +23373,7 @@ sha256 = "082g2gqbf8yjgvj2c32ix6j3wwba5fmgcyi75bf0q0bbg4ck5rab"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/git-messenger"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/git-messenger"; sha256 = "1rnqsv389why13cy6462vyq12qc2zk58p01m3hsazp1gpfw2hfzn"; name = "git-messenger"; }; @@ -23132,7 +23386,7 @@ git-ps1-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "git-ps1-mode"; - version = "20151228.302"; + version = "20151228.402"; src = fetchFromGitHub { owner = "10sr"; repo = "git-ps1-mode-el"; @@ -23140,7 +23394,7 @@ sha256 = "1v0jk35ynfg9hivw9gdz2snk73pac67xlfx7av8argdcss1bmyb0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/git-ps1-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/git-ps1-mode"; sha256 = "15gswi9s0m3hrsl1qqyjnjgbglsai95klbdp51h3pcq7zj22wkn6"; name = "git-ps1-mode"; }; @@ -23153,7 +23407,7 @@ git-timemachine = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "git-timemachine"; - version = "20160323.1440"; + version = "20160323.1540"; src = fetchFromGitHub { owner = "pidu"; repo = "git-timemachine"; @@ -23161,7 +23415,7 @@ sha256 = "1iz5cy3fc7y56s4005syxnb1y3sn1q0s0nlpa01bnxksrfy5zahl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/git-timemachine"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/git-timemachine"; sha256 = "0nhl3g31r4a8j7rp5kbh17ixi16w32h80bc92vvjj3dlmk996nzq"; name = "git-timemachine"; }; @@ -23174,7 +23428,7 @@ git-wip-timemachine = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "git-wip-timemachine"; - version = "20150408.506"; + version = "20150408.606"; src = fetchFromGitHub { owner = "itsjeyd"; repo = "git-wip-timemachine"; @@ -23182,7 +23436,7 @@ sha256 = "1ivnf4vsqk6c7iw1cid7q1hxp7047ajd1mpg0fl002d7m7ginhyl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/git-wip-timemachine"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/git-wip-timemachine"; sha256 = "02fi51k6l23cgnwjp507ylkiwb8azmnhc0fips68nwn9dghzp6dw"; name = "git-wip-timemachine"; }; @@ -23195,7 +23449,7 @@ gitattributes-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "gitattributes-mode"; - version = "20160319.502"; + version = "20160319.602"; src = fetchFromGitHub { owner = "magit"; repo = "git-modes"; @@ -23203,7 +23457,7 @@ sha256 = "0ksqfr0l415ynhxpqpcb84bk2bapvczwnpikp45kmfqq91p61xfc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gitattributes-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/gitattributes-mode"; sha256 = "1gjs0pjh6ap0h54savamzx94lq6vqrg58jxqaq5n5qplrbg15a6x"; name = "gitattributes-mode"; }; @@ -23216,7 +23470,7 @@ gitconfig = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "gitconfig"; - version = "20130718.435"; + version = "20130718.535"; src = fetchFromGitHub { owner = "tonini"; repo = "gitconfig.el"; @@ -23224,7 +23478,7 @@ sha256 = "184q3vsxa9rvhc1n57ms47r73f3zap25wswzi66rm6rmfi2k7678"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gitconfig"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/gitconfig"; sha256 = "126znl1c4vwgskj7ka9id8v2bdrdn5nkyx3mmc6cz9ylc27ainm7"; name = "gitconfig"; }; @@ -23237,7 +23491,7 @@ gitconfig-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "gitconfig-mode"; - version = "20160319.502"; + version = "20160319.602"; src = fetchFromGitHub { owner = "magit"; repo = "git-modes"; @@ -23245,7 +23499,7 @@ sha256 = "0ksqfr0l415ynhxpqpcb84bk2bapvczwnpikp45kmfqq91p61xfc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gitconfig-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/gitconfig-mode"; sha256 = "0hqky40kcgxdnghnf56gpi0xp7ik45ssia1x84v0mvfwqc50dgn1"; name = "gitconfig-mode"; }; @@ -23258,7 +23512,7 @@ github-browse-file = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "github-browse-file"; - version = "20160205.827"; + version = "20160205.927"; src = fetchFromGitHub { owner = "osener"; repo = "github-browse-file"; @@ -23266,7 +23520,7 @@ sha256 = "0i3dkm0j4gh21b7r5vxr6dddql5rj7lg8xlaairvild0ccf3bhdl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/github-browse-file"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/github-browse-file"; sha256 = "03xvgxlw7wmfby898din7dfcg87ihahkhlav1n7qklw6qi7skjcr"; name = "github-browse-file"; }; @@ -23279,7 +23533,7 @@ github-clone = callPackage ({ emacs, fetchFromGitHub, fetchurl, gh, lib, magit, melpaBuild }: melpaBuild { pname = "github-clone"; - version = "20160114.853"; + version = "20160114.953"; src = fetchFromGitHub { owner = "dgtized"; repo = "github-clone.el"; @@ -23287,7 +23541,7 @@ sha256 = "000m6w2akx1z1lb32nvy6qzyggpcvlbdjh1i8419rzaidxf5gaxg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/github-clone"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/github-clone"; sha256 = "0ffrm4lmcj3d9kx3g2d5xbiih7hn4frs0prjrvcjq8acvsbc50q9"; name = "github-clone"; }; @@ -23300,7 +23554,7 @@ github-issues = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "github-issues"; - version = "20120425.1735"; + version = "20120425.1835"; src = fetchFromGitHub { owner = "inkel"; repo = "github-issues.el"; @@ -23308,7 +23562,7 @@ sha256 = "065gpnllsk4x574fn9d6m4ajxl7mj5w2w5g9in421sp5r80fp9fv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/github-issues"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/github-issues"; sha256 = "12c6yb3v7xwkzc51binfgl4jb3sm3al5nlrklbsxhn44alazsvb0"; name = "github-issues"; }; @@ -23321,15 +23575,15 @@ github-notifier = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "github-notifier"; - version = "20160101.1112"; + version = "20160505.102"; src = fetchFromGitHub { owner = "xuchunyang"; repo = "github-notifier.el"; - rev = "2db60c00bba0801a3790b8ea51dfd8ce2b1ee0d1"; - sha256 = "11nfpy39xdkjxaxbfn8rppj4rcz57wl15gyibp01j9w7wmb5b4pr"; + rev = "89b9a42e932beb91da012b20a1bf1567336bfef4"; + sha256 = "0n5mrd2la44r66bkqs0r3298qn5yybs80nwsy54pzlaz88v899bl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/github-notifier"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/github-notifier"; sha256 = "1jqc2wx1pvkca8syj97ds32404szm0wn12b7zpa98265sg3n64nw"; name = "github-notifier"; }; @@ -23342,7 +23596,7 @@ gitignore-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "gitignore-mode"; - version = "20160319.502"; + version = "20160319.602"; src = fetchFromGitHub { owner = "magit"; repo = "git-modes"; @@ -23350,7 +23604,7 @@ sha256 = "0ksqfr0l415ynhxpqpcb84bk2bapvczwnpikp45kmfqq91p61xfc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gitignore-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/gitignore-mode"; sha256 = "1i98ribmnxr4hwphd95f9hcfm5wfwgdbcxw3g0w17ws7z0ir61mn"; name = "gitignore-mode"; }; @@ -23363,7 +23617,7 @@ gitlab = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, pkg-info, request, s }: melpaBuild { pname = "gitlab"; - version = "20151202.238"; + version = "20151202.338"; src = fetchFromGitHub { owner = "nlamirault"; repo = "emacs-gitlab"; @@ -23371,7 +23625,7 @@ sha256 = "00mma30r7ixbrxjmmddz4klh517fcr3yn6ss4zw33fh2hzj3w6rl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gitlab"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/gitlab"; sha256 = "0vxsqfnipgapnd2ijvdnkspk68dlnki3pkpkzg2h6hyazmzrsqnq"; name = "gitlab"; }; @@ -23384,7 +23638,7 @@ gitolite-clone = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, pcache, s }: melpaBuild { pname = "gitolite-clone"; - version = "20150819.839"; + version = "20150819.939"; src = fetchFromGitHub { owner = "IvanMalison"; repo = "gitolite-clone"; @@ -23392,7 +23646,7 @@ sha256 = "1h66wywhl5ipryx0s0w1vxp3ydg57zpizjz61wvf6qd8zn07nhng"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gitolite-clone"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/gitolite-clone"; sha256 = "1la1nrfns9j6wii6lriwwsd44cx3ksyhh09h8lf9dai6wp67kjac"; name = "gitolite-clone"; }; @@ -23405,7 +23659,7 @@ gitty = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "gitty"; - version = "20151121.148"; + version = "20151121.248"; src = fetchFromGitHub { owner = "jorgenschaefer"; repo = "gitty"; @@ -23413,7 +23667,7 @@ sha256 = "0y8msn22lzfwh7d417abay9by2zhs9zswhcj8a0l7ln2ksljl500"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gitty"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/gitty"; sha256 = "1z6w4vbn0aaajyqanc7h1m5ali7dbrnh4ngw87a2x2pkxarx6x16"; name = "gitty"; }; @@ -23426,7 +23680,7 @@ glsl-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "glsl-mode"; - version = "20160209.1033"; + version = "20160209.1133"; src = fetchFromGitHub { owner = "jimhourihan"; repo = "glsl-mode"; @@ -23434,7 +23688,7 @@ sha256 = "14ziljq34k585scwn606hqbkcvy8h1iylsc4h2n1grfmm8ilf0ws"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/glsl-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/glsl-mode"; sha256 = "0d05qb60k5f7wwpsp3amzghayfbwcha6rh8nrslhnklpjbg87aw5"; name = "glsl-mode"; }; @@ -23447,7 +23701,7 @@ gmail-message-mode = callPackage ({ fetchFromGitHub, fetchurl, ham-mode, lib, melpaBuild }: melpaBuild { pname = "gmail-message-mode"; - version = "20140815.1016"; + version = "20140815.1116"; src = fetchFromGitHub { owner = "Malabarba"; repo = "gmail-mode"; @@ -23455,7 +23709,7 @@ sha256 = "0j3pay3gd1wdnpc853gy5j68hbavrwy6cc2bgmd12ag29xki3hcg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gmail-message-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/gmail-message-mode"; sha256 = "0py0i7b893ihb8l1hmk3jfl0xil450znadcd18q7svr3zl2m0gkk"; name = "gmail-message-mode"; }; @@ -23468,7 +23722,7 @@ gmail2bbdb = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "gmail2bbdb"; - version = "20150909.2039"; + version = "20150909.2139"; src = fetchFromGitHub { owner = "redguardtoo"; repo = "gmail2bbdb"; @@ -23476,7 +23730,7 @@ sha256 = "01hhanijqlh741f9wh6xn88qvghwqnfj5j0rvys5mghssfspqs3z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gmail2bbdb"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/gmail2bbdb"; sha256 = "03jhrk4vpjim3ybzjxy7s9r1cgjysj9vlc4criz5k0w7vqz3r28j"; name = "gmail2bbdb"; }; @@ -23489,7 +23743,7 @@ gmpl-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "gmpl-mode"; - version = "20151116.1349"; + version = "20151116.1449"; src = fetchFromGitHub { owner = "cute-jumper"; repo = "gmpl-mode"; @@ -23497,7 +23751,7 @@ sha256 = "08d6j5wws2ngngf3p31ic0lrsrp9i9lkpr3nxgmiiadm617x8hv4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gmpl-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/gmpl-mode"; sha256 = "1f60xim8h85jmqpvgfg402ff8mjd66gla8fa0cwi7l18ijnjblpz"; name = "gmpl-mode"; }; @@ -23510,7 +23764,7 @@ gnome-calendar = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "gnome-calendar"; - version = "20140112.559"; + version = "20140112.659"; src = fetchFromGitHub { owner = "NicolasPetton"; repo = "gnome-calendar.el"; @@ -23518,7 +23772,7 @@ sha256 = "160qm8xf0yghygb52p8cykhb5vpg9ww3gjprcdkcxplr4b230nnc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gnome-calendar"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/gnome-calendar"; sha256 = "00clamlm5b42zqggxywdqrf6s2dnsxir5rpd8mjpyc502kqmsfn6"; name = "gnome-calendar"; }; @@ -23531,7 +23785,7 @@ gnomenm = callPackage ({ dash, fetchFromGitHub, fetchurl, kv, lib, melpaBuild, s }: melpaBuild { pname = "gnomenm"; - version = "20150316.1418"; + version = "20150316.1518"; src = fetchFromGitHub { owner = "nicferrier"; repo = "emacs-nm"; @@ -23539,7 +23793,7 @@ sha256 = "1svnvm9fqqx4mrk9jjn11pzqwk71w8kyyd9wwxam8gz22ykw5jb2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gnomenm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/gnomenm"; sha256 = "01vmr64j6hcvdbzg945c5a2g4fiidl18dsk4px7mdf85cv45kzqm"; name = "gnomenm"; }; @@ -23552,7 +23806,7 @@ gntp = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "gntp"; - version = "20141024.2150"; + version = "20141024.2250"; src = fetchFromGitHub { owner = "tekai"; repo = "gntp.el"; @@ -23560,7 +23814,7 @@ sha256 = "1nvyjjjydrimpxy4cpg90si7sr8lmldbhlcm2mx8npklp9pn5y3a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gntp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/gntp"; sha256 = "1ywj3p082g54dcpy8q4jnkqfr12npikx8yz14r0njxdlr0janh4f"; name = "gntp"; }; @@ -23573,15 +23827,15 @@ gnu-apl-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "gnu-apl-mode"; - version = "20160306.2106"; + version = "20160506.40"; src = fetchFromGitHub { owner = "lokedhs"; repo = "gnu-apl-mode"; - rev = "8fd695391c7668c8e11519b80deed73d3a9ce597"; - sha256 = "0vgamjc5qr968i96xdd75p6589f9xvx5b4yv6j19ypnyw8d0fnq6"; + rev = "3187c005aff5c3d8e217797991a91436cdf11a40"; + sha256 = "15v14ff1639i3i1rgjh72qgq7r70bdy9li28r3rsrjbaiizyrbs8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gnu-apl-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/gnu-apl-mode"; sha256 = "0971pzc14gw8f0b4lzvicxww1k3wc58gbr3fd0qvdra2jifk2is6"; name = "gnu-apl-mode"; }; @@ -23594,7 +23848,7 @@ gnuplot = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "gnuplot"; - version = "20141231.1537"; + version = "20141231.1637"; src = fetchFromGitHub { owner = "bruceravel"; repo = "gnuplot-mode"; @@ -23602,7 +23856,7 @@ sha256 = "1gm116479gdwc4hr3nyv1id692dcd1sx7w2a80pvmgr35ybccn7c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gnuplot"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/gnuplot"; sha256 = "06c5gqf02fkra8c52xck1lqvf4yg45zfibyf9zqmnbwk7p2jxrds"; name = "gnuplot"; }; @@ -23615,7 +23869,7 @@ gnuplot-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "gnuplot-mode"; - version = "20151123.139"; + version = "20151123.239"; src = fetchFromGitHub { owner = "mkmcc"; repo = "gnuplot-mode"; @@ -23623,7 +23877,7 @@ sha256 = "1pss9a60dh6i277pkp8j5g1v5h7qlh11w2fki50qcp0zglyw1kaq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gnuplot-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/gnuplot-mode"; sha256 = "1avpik06cmi4h6v6039c64b4zw1r1nsg3nrryl254gl881pysfxg"; name = "gnuplot-mode"; }; @@ -23636,7 +23890,7 @@ gnus-alias = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "gnus-alias"; - version = "20150315.1942"; + version = "20150315.2042"; src = fetchFromGitHub { owner = "hexmode"; repo = "gnus-alias"; @@ -23644,7 +23898,7 @@ sha256 = "1i278npayv3kfxxd1ypi9n83q5l402sbc1zkm11pf8g006ifqsp4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gnus-alias"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/gnus-alias"; sha256 = "0mbq9v8fiqqyldpb66v9bc777mzxywaq2dabivabxjg6554s8chf"; name = "gnus-alias"; }; @@ -23657,7 +23911,7 @@ gnus-desktop-notify = callPackage ({ fetchFromGitHub, fetchurl, gnus ? null, lib, melpaBuild }: melpaBuild { pname = "gnus-desktop-notify"; - version = "20160210.447"; + version = "20160210.547"; src = fetchFromGitHub { owner = "wavexx"; repo = "gnus-desktop-notify.el"; @@ -23665,7 +23919,7 @@ sha256 = "1zizmxjf55bkm9agmrym80h2mnyvpc9bamkjy2azs42fqgi9pqjn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gnus-desktop-notify"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/gnus-desktop-notify"; sha256 = "08k32vhdp6i8c03rp1k6b5jmvj5ijplj26mdblrgasklcqbdnlfs"; name = "gnus-desktop-notify"; }; @@ -23677,13 +23931,13 @@ }) {}; gnus-spotlight = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "gnus-spotlight"; - version = "20130901.935"; + version = "20130901.1035"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/gnus-spotlight.el"; sha256 = "1r6bck1hsvk39ccri1h128jj8zd0fh9bsrlp8ijb0v9f6x3cysw4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gnus-spotlight"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/gnus-spotlight"; sha256 = "065jcix6a4mxwq8wc8gkr0x9lxmn6hlvf0rqmhi8hb840km1syjx"; name = "gnus-spotlight"; }; @@ -23696,7 +23950,7 @@ gnus-summary-ext = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "gnus-summary-ext"; - version = "20160301.2134"; + version = "20160301.2234"; src = fetchFromGitHub { owner = "vapniks"; repo = "gnus-summary-ext"; @@ -23704,7 +23958,7 @@ sha256 = "0csr5nd8lgn9yzqw1vxrvww8af6nf419ab9zh3y2rc0rr47plz94"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gnus-summary-ext"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/gnus-summary-ext"; sha256 = "0svyz8fy4k9ba6gpdymf4cf8zjjpgm71y48vlybxbv507xjm17qf"; name = "gnus-summary-ext"; }; @@ -23717,7 +23971,7 @@ gnus-x-gm-raw = callPackage ({ fetchFromGitHub, fetchurl, lib, log4e, melpaBuild, yaxception }: melpaBuild { pname = "gnus-x-gm-raw"; - version = "20140610.231"; + version = "20140610.331"; src = fetchFromGitHub { owner = "aki2o"; repo = "gnus-x-gm-raw"; @@ -23725,7 +23979,7 @@ sha256 = "1i3f67x2l9l5c5agspbkxr2mmh3rpq3009d8yzh6r1lih0b4hril"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gnus-x-gm-raw"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/gnus-x-gm-raw"; sha256 = "1a5iccghzqmcndql2bppvr48535sf6jbvc83iypr1031z1b5k4wg"; name = "gnus-x-gm-raw"; }; @@ -23735,18 +23989,39 @@ license = lib.licenses.free; }; }) {}; + go = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "go"; + version = "20150414.2018"; + src = fetchFromGitHub { + owner = "eschulte"; + repo = "el-go"; + rev = "8d5e61b5e50bfb807bb45d4c979bd86a2ba67149"; + sha256 = "1i6x7larpqm5h4369pz07353lk0v6gyb5grk52xslmg8w14si52n"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/go"; + sha256 = "0iv0sgrgg54qsrhlznq12in5j0v8cv2fydz97mrnysqvh0h4w702"; + name = "go"; + }; + packageRequires = [ emacs ]; + meta = { + homepage = "https://melpa.org/#/go"; + license = lib.licenses.free; + }; + }) {}; go-autocomplete = callPackage ({ auto-complete, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "go-autocomplete"; - version = "20150903.2140"; + version = "20150903.2240"; src = fetchFromGitHub { owner = "nsf"; repo = "gocode"; - rev = "3b7488f4e4c234abbea9c5ff313a3a7139fc56e8"; - sha256 = "0sw12mzgxq5nh7yzkzzpca3y4chd2i81amzynlaz46ci16wa6gpb"; + rev = "3421e52c639ba71debbd77d86694d5a7d6ab83a2"; + sha256 = "01vmb2vppphkj2b6faz6jn4m0yqx0f4l66k87d7wap32v51m1v2m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/go-autocomplete"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/go-autocomplete"; sha256 = "1ldsq81a167dk2r2mvzyp3v3j2mxc4l9p6b12i7pv8zrjlkhma5a"; name = "go-autocomplete"; }; @@ -23759,7 +24034,7 @@ go-complete = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, go-mode, lib, melpaBuild }: melpaBuild { pname = "go-complete"; - version = "20151015.428"; + version = "20151015.528"; src = fetchFromGitHub { owner = "vibhavp"; repo = "go-complete"; @@ -23767,7 +24042,7 @@ sha256 = "0phy24cra8cza89xrqsx9xrwg98v9qwqx0fzgm1gwlf333zb3hha"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/go-complete"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/go-complete"; sha256 = "0dl0ibw145f84kd709r5i2kaw07z1sjzn3dmsiqn8dncspcf2vb4"; name = "go-complete"; }; @@ -23780,7 +24055,7 @@ go-direx = callPackage ({ cl-lib ? null, direx, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "go-direx"; - version = "20150315.2043"; + version = "20150315.2143"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-go-direx"; @@ -23788,7 +24063,7 @@ sha256 = "09rxz40bkr0l75v3lmf8lcwqsgjiv5c8zjmwzy2d4syj4qv69c5y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/go-direx"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/go-direx"; sha256 = "0dq5d7fsld4hww8fl68c18qp6fl3781dqqwd98cg68bihw2wwni7"; name = "go-direx"; }; @@ -23801,7 +24076,7 @@ go-dlv = callPackage ({ fetchFromGitHub, fetchurl, go-mode, lib, melpaBuild }: melpaBuild { pname = "go-dlv"; - version = "20151030.259"; + version = "20151030.359"; src = fetchFromGitHub { owner = "benma"; repo = "go-dlv.el"; @@ -23809,7 +24084,7 @@ sha256 = "0wha1h5mnnh3nsiaf5q1drrvk1gj2cn18bapi8ysy5jdpzi4xqsv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/go-dlv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/go-dlv"; sha256 = "13mk7mg2xk7v65r1rs6rmvi4g5nvm8jqg3p9nhk62d46i7dzp61i"; name = "go-dlv"; }; @@ -23822,7 +24097,7 @@ go-eldoc = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, go-mode, lib, melpaBuild }: melpaBuild { pname = "go-eldoc"; - version = "20160307.816"; + version = "20160307.916"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-go-eldoc"; @@ -23830,7 +24105,7 @@ sha256 = "1n5fnlfq9cy9rbn2hizqqsy0iryw5g2blaa7nd75ya03gxm10p8j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/go-eldoc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/go-eldoc"; sha256 = "1k115dirfqxdnb6hdzlw41xdy2dxp38g3vq5wlvslqggha7gzhkk"; name = "go-eldoc"; }; @@ -23843,7 +24118,7 @@ go-errcheck = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "go-errcheck"; - version = "20150828.1335"; + version = "20150828.1435"; src = fetchFromGitHub { owner = "dominikh"; repo = "go-errcheck.el"; @@ -23851,7 +24126,7 @@ sha256 = "1fm6xd3vsi8mqh0idddjpfxlsmz1ljmjppw3qkxl1vr0qz3598k3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/go-errcheck"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/go-errcheck"; sha256 = "11a75h32cd5h5xjv30x83k60s49k9fhgis31358q46y2gbvqp5bs"; name = "go-errcheck"; }; @@ -23864,7 +24139,7 @@ go-gopath = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "go-gopath"; - version = "20160311.248"; + version = "20160311.348"; src = fetchFromGitHub { owner = "iced"; repo = "go-gopath"; @@ -23872,7 +24147,7 @@ sha256 = "1hfyxf07m73jf8zca8dna3w828ypvx8a3p70f8nfr5mijy4q3i4c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/go-gopath"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/go-gopath"; sha256 = "0jfy2r3axqpn2cnibp8f9vw36kmx0icixhj6zy43d9xa4znvdqal"; name = "go-gopath"; }; @@ -23885,14 +24160,14 @@ go-guru = callPackage ({ cl-lib ? null, fetchgit, fetchurl, go-mode, lib, melpaBuild }: melpaBuild { pname = "go-guru"; - version = "20160417.1315"; + version = "20160428.1021"; src = fetchgit { url = "https://go.googlesource.com/tools"; - rev = "4e3242e000c9086052d8d700ca255d64e2b9fdfb"; - sha256 = "0i4cdmh701vdxjykc3vndri2syg0hvgf4nma5kmyzzxc4g0zrr9s"; + rev = "2c200eec40d70d74e01852aad22cf6637e8f8f3d"; + sha256 = "0jqighkfxqv6rs4danhkfzc5411kk5lxfhcb3a3waj2w8qbi9xw7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/go-guru"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/go-guru"; sha256 = "0c62rvsfqcx2g02iwaga2zp1266w0zhkc73ihpi0iq7cd6nr4wn0"; name = "go-guru"; }; @@ -23905,7 +24180,7 @@ go-impl = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "go-impl"; - version = "20160320.1716"; + version = "20160320.1816"; src = fetchFromGitHub { owner = "dominikh"; repo = "go-impl.el"; @@ -23913,7 +24188,7 @@ sha256 = "199aa2crddx2a5lvl0wrzylzdc23rcm3wcbbwas17ary3gl4z8jg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/go-impl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/go-impl"; sha256 = "0yhcl6y26s4wxaa3jj8d13i4zr879kp1lwnhlnqskpq8l8n3nmpz"; name = "go-impl"; }; @@ -23926,15 +24201,15 @@ go-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "go-mode"; - version = "20160404.202"; + version = "20160503.307"; src = fetchFromGitHub { owner = "dominikh"; repo = "go-mode.el"; - rev = "b7675005349d5faaf6c6cf3d4322309f6c94b90c"; - sha256 = "1lx7bf962zf4zg7ly99v1cjgcaf8555z451jlr27bdvw6panv98s"; + rev = "50bceae59420818f2551081784d2f52f5423610e"; + sha256 = "11vzkw5l1qgbq4r5kkj656kakb4223wshwvcpyphq8l290vm3xw2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/go-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/go-mode"; sha256 = "1852zjxandmq0cpbf7m56ar3rbdi7bx613gdgsf1bg8hsdvkgzfx"; name = "go-mode"; }; @@ -23947,15 +24222,15 @@ go-playground = callPackage ({ emacs, fetchFromGitHub, fetchurl, go-mode, gotest, lib, melpaBuild }: melpaBuild { pname = "go-playground"; - version = "20160424.1049"; + version = "20160426.1528"; src = fetchFromGitHub { owner = "grafov"; repo = "go-playground"; - rev = "1f8afea9315228ea0951cc400e9b43eeb6a7edab"; - sha256 = "02a0pzm6xv6yxl2wzmv04k95lcyik16b1vgpk1kfv7vfx1bfdm8x"; + rev = "39589e678aac43cee9ff435e5303a411e80054e9"; + sha256 = "16qpxi9d240rdqnqcnbnsqlh2gcy6c9hxwdpdy874akzw7942nc0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/go-playground"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/go-playground"; sha256 = "1rabwc80qwkafq833m6a199zfiwwmf0hha89721gc7i0myk9pac6"; name = "go-playground"; }; @@ -23968,15 +24243,15 @@ go-playground-cli = callPackage ({ cl-lib ? null, deferred, emacs, f, fetchFromGitHub, fetchurl, let-alist, lib, melpaBuild, names, request, s }: melpaBuild { pname = "go-playground-cli"; - version = "20151223.2120"; + version = "20160503.514"; src = fetchFromGitHub { owner = "kosh04"; repo = "emacs-go-playground"; - rev = "8ba174da0f47b3a6f7d12dc15575c3590b0c9e82"; - sha256 = "0xm3v6snsxv1x8i4jdq3k2aax7v1xm4zvgc9khabwhc2y63xja46"; + rev = "60beebd98e3930641d41cee0189c579626f223bc"; + sha256 = "1fcm65r1sy2fmcp2i7mwc7mxqiaf4aaxda4i2qrm8s25cxsffir7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/go-playground-cli"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/go-playground-cli"; sha256 = "00h89rh8d7lq1di77nv609xbzxmjmffq6mz3cmagylxncflg81jc"; name = "go-playground-cli"; }; @@ -23989,7 +24264,7 @@ go-projectile = callPackage ({ fetchFromGitHub, fetchurl, go-eldoc, go-guru, go-mode, go-rename, lib, melpaBuild, projectile }: melpaBuild { pname = "go-projectile"; - version = "20160418.1817"; + version = "20160418.1917"; src = fetchFromGitHub { owner = "dougm"; repo = "go-projectile"; @@ -23997,7 +24272,7 @@ sha256 = "0010dgkk521pn4cwir5lvkxxzfzzw2nyz1cr5zx1h1ahxvhrzsqm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/go-projectile"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/go-projectile"; sha256 = "07diik27gr82n11a8k62v1jxq8rhi16f02ybk548f6cn7iqgp2ml"; name = "go-projectile"; }; @@ -24010,14 +24285,14 @@ go-rename = callPackage ({ fetchgit, fetchurl, go-mode, lib, melpaBuild }: melpaBuild { pname = "go-rename"; - version = "20160307.944"; + version = "20160307.1044"; src = fetchgit { url = "https://go.googlesource.com/tools"; - rev = "4e3242e000c9086052d8d700ca255d64e2b9fdfb"; - sha256 = "0i4cdmh701vdxjykc3vndri2syg0hvgf4nma5kmyzzxc4g0zrr9s"; + rev = "2c200eec40d70d74e01852aad22cf6637e8f8f3d"; + sha256 = "0jqighkfxqv6rs4danhkfzc5411kk5lxfhcb3a3waj2w8qbi9xw7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/go-rename"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/go-rename"; sha256 = "1sc3iwxiydgs787a6pi778i0qzqv3bf498r47jwiw5b6mmib3fah"; name = "go-rename"; }; @@ -24030,7 +24305,7 @@ go-scratch = callPackage ({ emacs, fetchFromGitHub, fetchurl, go-mode, lib, melpaBuild }: melpaBuild { pname = "go-scratch"; - version = "20150809.2340"; + version = "20150810.40"; src = fetchFromGitHub { owner = "shosti"; repo = "go-scratch.el"; @@ -24038,7 +24313,7 @@ sha256 = "1a6vg2vwgnafb61pwrd837fwlq5gs80wawbzjsnykawnmcaag8pm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/go-scratch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/go-scratch"; sha256 = "11ahvmxbh67wa39cymymxmcpkq0kcn5jz0rrvazjy2p1hx3x1ma5"; name = "go-scratch"; }; @@ -24051,7 +24326,7 @@ go-snippets = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }: melpaBuild { pname = "go-snippets"; - version = "20151122.57"; + version = "20151122.157"; src = fetchFromGitHub { owner = "toumorokoshi"; repo = "go-snippets"; @@ -24059,7 +24334,7 @@ sha256 = "0di6xwpl6pi0430q208gliz8dgrzwqnmp997q7xcczbkk8zfwn0n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/go-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/go-snippets"; sha256 = "1wcbnfzxailv18spxyv4a0nwlqh9l7yf5vxg0qcjcp5ajd2w12kn"; name = "go-snippets"; }; @@ -24072,7 +24347,7 @@ go-stacktracer = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "go-stacktracer"; - version = "20150430.1642"; + version = "20150430.1742"; src = fetchFromGitHub { owner = "samertm"; repo = "go-stacktracer.el"; @@ -24080,7 +24355,7 @@ sha256 = "0n5nsyfwx2pdlwx6bl35wrfyady5dwraimv92f58mhc344ajd70y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/go-stacktracer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/go-stacktracer"; sha256 = "1laz2ggqydnyr7b36ggb7sphlib79dhp7nszw42wssmv212v94cy"; name = "go-stacktracer"; }; @@ -24093,7 +24368,7 @@ god-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "god-mode"; - version = "20151005.1125"; + version = "20151005.1225"; src = fetchFromGitHub { owner = "chrisdone"; repo = "god-mode"; @@ -24101,7 +24376,7 @@ sha256 = "1am415k4xxcva6y3vbvyvknzc6bma49pq3p85zmpjsdmsp18qdix"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/god-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/god-mode"; sha256 = "01xx2byjh6vlckaxamm2x2qzicd9qc8h6amyjg0bxz3932a4llaa"; name = "god-mode"; }; @@ -24114,7 +24389,7 @@ gold-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, sws-mode }: melpaBuild { pname = "gold-mode"; - version = "20140606.2106"; + version = "20140606.2206"; src = fetchFromGitHub { owner = "yuutayamada"; repo = "gold-mode-el"; @@ -24122,7 +24397,7 @@ sha256 = "1k4i9z9h4m0h0y92mncr96jir63q5h1bix5bpnlfxhxl5w8pvk1q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gold-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/gold-mode"; sha256 = "1b67hd1fp6xcj65xxp5jcpdjspxsbzxy26v6lqg5kiy8knls57kf"; name = "gold-mode"; }; @@ -24135,7 +24410,7 @@ golden-ratio = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "golden-ratio"; - version = "20150819.620"; + version = "20150819.720"; src = fetchFromGitHub { owner = "roman"; repo = "golden-ratio.el"; @@ -24143,7 +24418,7 @@ sha256 = "0wdw89n7ngxpcdigv8c01h4i84hsdh0y7xq6jdj1i6mnajl8gk92"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/golden-ratio"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/golden-ratio"; sha256 = "15fkrv0sgpzmnw2h4fp2gb83d8s42khkfq1h76l241njjayk1f81"; name = "golden-ratio"; }; @@ -24156,7 +24431,7 @@ golden-ratio-scroll-screen = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "golden-ratio-scroll-screen"; - version = "20151211.430"; + version = "20151211.530"; src = fetchFromGitHub { owner = "jixiuf"; repo = "golden-ratio-scroll-screen"; @@ -24164,7 +24439,7 @@ sha256 = "18a7dv8yshspyq4bi30j0l4ap9qp696syfc29mgvly4xyqh9x4qm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/golden-ratio-scroll-screen"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/golden-ratio-scroll-screen"; sha256 = "1ygh104vr65s7frlkzyhrfi6shrbvp2b2j3ynj5dip253v85xki5"; name = "golden-ratio-scroll-screen"; }; @@ -24177,15 +24452,15 @@ golint = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "golint"; - version = "20150414.1930"; + version = "20150414.2030"; src = fetchFromGitHub { owner = "golang"; repo = "lint"; - rev = "8f348af5e29faa4262efdc14302797f23774e477"; - sha256 = "1xz53lak1gswgzh05d687crjzbw7lz3pm0ggwsvmsqwwsdwiwavw"; + rev = "c7bacac2b21ca01afa1dee0acf64df3ce047c28f"; + sha256 = "024dllcmpg8lx78cqgq551i6f9w6qlykfcx8l7yazak9kjwhpwjg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/golint"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/golint"; sha256 = "1q4y6mgll8wyp0c7zx810nzsm0k4wvz0wkly1fbja9z63sjzzxwb"; name = "golint"; }; @@ -24198,7 +24473,7 @@ gom-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "gom-mode"; - version = "20131007.2153"; + version = "20131007.2253"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-gom-mode"; @@ -24206,7 +24481,7 @@ sha256 = "1anjzlg53kjdqfjcdahbxy8zk9hdha075c1f9nzrnnbbqvmirbbb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gom-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/gom-mode"; sha256 = "07zr38gzqb3ds9mpf94c1vhl1rqd0cjh4g4j2bz86q16c0rnmp7m"; name = "gom-mode"; }; @@ -24219,7 +24494,7 @@ google = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "google"; - version = "20140416.1248"; + version = "20140416.1348"; src = fetchFromGitHub { owner = "hober"; repo = "google-el"; @@ -24227,7 +24502,7 @@ sha256 = "06p1dpnmg7lhdff1g7c04qq8f9srgkmnm42jlqy85k87j3p5ys2i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/google"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/google"; sha256 = "11a521cq5bj7afl7bqiilg0c81dy00lnhak7h3d9c9kwg7kfljiq"; name = "google"; }; @@ -24240,15 +24515,15 @@ google-c-style = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "google-c-style"; - version = "20140929.1318"; + version = "20140929.1418"; src = fetchFromGitHub { owner = "google"; repo = "styleguide"; - rev = "8c09ccf840eab50b1323c931668661ac357fa08c"; - sha256 = "0jspkl67c8l5hdayl1bs8hq5h8i63ai2bxxnl6qd1hlicfypy3zi"; + rev = "66718b1d33649d460ebb9d2fbd9238cc1d4309a7"; + sha256 = "19byl1vpqb7827nkkh7my3xklwr7ajfq69da1bh0yl0jgva9xg7h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/google-c-style"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/google-c-style"; sha256 = "10gsbg880jbvxs4291vi2ww30ird2f313lbgcb11lswivmhrmd1r"; name = "google-c-style"; }; @@ -24261,7 +24536,7 @@ google-contacts = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, oauth2 }: melpaBuild { pname = "google-contacts"; - version = "20160111.411"; + version = "20160111.511"; src = fetchFromGitHub { owner = "jd"; repo = "google-contacts.el"; @@ -24269,7 +24544,7 @@ sha256 = "1h7nj570drp2l9x6475gwzcjrp75ms8dkixa7qsgszjdk58qyhnb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/google-contacts"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/google-contacts"; sha256 = "0wgi244zy2am90alimgzazshk2z756bk1hchphssfa4j15n16jgn"; name = "google-contacts"; }; @@ -24282,7 +24557,7 @@ google-maps = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "google-maps"; - version = "20130412.430"; + version = "20130412.530"; src = fetchFromGitHub { owner = "jd"; repo = "google-maps.el"; @@ -24290,7 +24565,7 @@ sha256 = "183igr5lp20zcqi7rc01fk76sfxdhksd74i11v16gdsifdkjimd0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/google-maps"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/google-maps"; sha256 = "0a0wqs3cnlpar2dzdi6h14isw78vgqr2r6psmrzbdl00s4fcyxwx"; name = "google-maps"; }; @@ -24303,7 +24578,7 @@ google-this = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "google-this"; - version = "20150522.440"; + version = "20150522.540"; src = fetchFromGitHub { owner = "Malabarba"; repo = "emacs-google-this"; @@ -24311,7 +24586,7 @@ sha256 = "0r6hngf3h5x55lk2qwfgd6bhjhkax5nz8ml43d1x23y5bjnrricq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/google-this"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/google-this"; sha256 = "0hg9y1b03aiamyn3mam3hyxmxy21wygxrnrww91zcbwlzgp4dd2c"; name = "google-this"; }; @@ -24324,15 +24599,15 @@ google-translate = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "google-translate"; - version = "20160111.854"; + version = "20160507.911"; src = fetchFromGitHub { owner = "atykhonov"; repo = "google-translate"; - rev = "109024fe437c3484160e82eb775343bc149a4446"; - sha256 = "0hvxyqkxv5hfsa9sv71m7d98g25a1xc962r961nw6vmbvsf64z6b"; + rev = "e48e70c18674502eeeb3d2f5bd03529f9ad255f5"; + sha256 = "0k2sn5ry2ssqxkybc53415zp330li6p4fwq3vvhgxilz1jlk0d02"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/google-translate"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/google-translate"; sha256 = "1crgzdd32mk6hrawdypg496dwh51wzwfb5wqw4a2j5l8y958xf47"; name = "google-translate"; }; @@ -24345,7 +24620,7 @@ goose-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "goose-theme"; - version = "20160401.33"; + version = "20160401.133"; src = fetchFromGitHub { owner = "thwg"; repo = "goose-theme"; @@ -24353,7 +24628,7 @@ sha256 = "1ms5f6imzw5klxi1mqqjxgb02iflvpam8cfxii3ljcr4fz093m4h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/goose-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/goose-theme"; sha256 = "18kfz61mhf8pvp3z5cdvjklla9p840p1dazylrgjb1g5hdwqw0n9"; name = "goose-theme"; }; @@ -24366,7 +24641,7 @@ gore-mode = callPackage ({ fetchFromGitHub, fetchurl, go-mode, lib, melpaBuild }: melpaBuild { pname = "gore-mode"; - version = "20151123.1327"; + version = "20151123.1427"; src = fetchFromGitHub { owner = "sergey-pashaev"; repo = "gore-mode"; @@ -24374,7 +24649,7 @@ sha256 = "0l022aqpnb38q6kgdqpbxrc1r7fljwl7xq14yi5jb7qgzw2v43cz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gore-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/gore-mode"; sha256 = "0nljybh2pw8pbbajfsz57r11rs4bvzfxmwpbm5qrdn6dzzv65nq3"; name = "gore-mode"; }; @@ -24387,7 +24662,7 @@ gorepl-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "gorepl-mode"; - version = "20151121.622"; + version = "20151121.722"; src = fetchFromGitHub { owner = "manute"; repo = "gorepl-mode"; @@ -24395,7 +24670,7 @@ sha256 = "1abb78xxsggawl43hspl0cr0f7i1b3jd9r6xl1nl5jg97i4byg0b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gorepl-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/gorepl-mode"; sha256 = "12h9r4kf9y2v601myhzzdw2c4jc5cb7s94r5dkzriq578digxphl"; name = "gorepl-mode"; }; @@ -24408,7 +24683,7 @@ gotest = callPackage ({ emacs, f, fetchFromGitHub, fetchurl, go-mode, lib, melpaBuild, s }: melpaBuild { pname = "gotest"; - version = "20160414.325"; + version = "20160414.425"; src = fetchFromGitHub { owner = "nlamirault"; repo = "gotest.el"; @@ -24416,7 +24691,7 @@ sha256 = "1idhnsl8vkq3v3nbvhkmxmvgqp97aycxvmkj7894mj9hvhib68l9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gotest"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/gotest"; sha256 = "1kan3gykhci33jgg67jjiiz7rqlz5mpxp8sh6mb0n6kpfmgb4ly9"; name = "gotest"; }; @@ -24429,15 +24704,15 @@ gotham-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "gotham-theme"; - version = "20160414.1335"; + version = "20160502.1524"; src = fetchFromGitHub { owner = "wasamasa"; repo = "gotham-theme"; - rev = "25e2a3af8a8cc786b1b03e27a5eec6bf0537cb14"; - sha256 = "0b52aib5m6n76fd814yigipnsfsrx2qpyckfra8hfc04zwx2hhlr"; + rev = "f380c2653c8d8276c7271b0f84b34ef9d697f7c7"; + sha256 = "0b14nnq9rid0d4hash65z0yy03bgrlva1ak12wijw4k97ibh9d2b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gotham-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/gotham-theme"; sha256 = "0jars6rvf7hkyf71vq06mqki1r840i1dvv43dissqjg5i4lr79cl"; name = "gotham-theme"; }; @@ -24449,13 +24724,13 @@ }) {}; goto-chg = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "goto-chg"; - version = "20131228.859"; + version = "20131228.959"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/goto-chg.el"; sha256 = "078d6p4br5vips7b9x4v6cy0wxf6m5ij9gpqd4g33bryn22gnpij"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/goto-chg"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/goto-chg"; sha256 = "0fs0fc1mksbb1266sywasl6pppdn1f9a4q9dwycl9zycr588yjyv"; name = "goto-chg"; }; @@ -24468,7 +24743,7 @@ goto-gem = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "goto-gem"; - version = "20140729.1345"; + version = "20140729.1445"; src = fetchFromGitHub { owner = "pidu"; repo = "goto-gem"; @@ -24476,7 +24751,7 @@ sha256 = "0j2hdxqfsifm0d8ilwcw7np6mvn4xm58xglzh42gigj2fxv87g99"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/goto-gem"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/goto-gem"; sha256 = "06vy9m01qccvahxr5xn0plzw9knl5ig7gi5q5r1smfx92bmzkg3a"; name = "goto-gem"; }; @@ -24489,7 +24764,7 @@ goto-last-change = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "goto-last-change"; - version = "20150109.1223"; + version = "20150109.1323"; src = fetchFromGitHub { owner = "camdez"; repo = "goto-last-change.el"; @@ -24497,7 +24772,7 @@ sha256 = "1f0zlvva7d7iza1v79yjp0bm7vd011q4cy14g1saryll32z115z5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/goto-last-change"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/goto-last-change"; sha256 = "1yl9p95ls04bkmf4d6az72pycp27bv7q7wxxzvj8sj97bgwvwajx"; name = "goto-last-change"; }; @@ -24510,15 +24785,15 @@ govc = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, json-mode, lib, magit-popup, melpaBuild, s }: melpaBuild { pname = "govc"; - version = "20160201.1146"; + version = "20160201.1246"; src = fetchFromGitHub { owner = "vmware"; repo = "govmomi"; - rev = "68d94eefbead1504e260ecfaeae0d76ba0a143f2"; - sha256 = "0m23i2gci38ch562vfm21az55m19ahagz556mv4g6cw4ab996pga"; + rev = "c98ee8bc17bfa5feff53495ad7875daf967c80a4"; + sha256 = "0vl9av0ln28xw092bfn4k08p2vfwasjp67ihij8bzg2sjvch87ny"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/govc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/govc"; sha256 = "1ivgaziv25wlzg6y4zh8x7mv97pnyhi7p8jpvgh5fg5lnqpzhl4v"; name = "govc"; }; @@ -24531,7 +24806,7 @@ govet = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "govet"; - version = "20150428.1359"; + version = "20150428.1459"; src = fetchFromGitHub { owner = "meshelton"; repo = "govet"; @@ -24539,7 +24814,7 @@ sha256 = "1fzf43my7qs4n37yh1jm6fyp76dfgknc5g4zin7x5b5lc63g0wxb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/govet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/govet"; sha256 = "1rpgngixf1xnnqf0l2vvh6y9q3395qyj9ln1rh0xz5lm7d4pq4hy"; name = "govet"; }; @@ -24552,7 +24827,7 @@ gplusify = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "gplusify"; - version = "20150312.1444"; + version = "20150312.1544"; src = fetchFromGitHub { owner = "jorgenschaefer"; repo = "gplusify"; @@ -24560,7 +24835,7 @@ sha256 = "1l43h008l7n6waclb2km32dy8aj7m5yavm1pkq38p9ppzayfxqq1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gplusify"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/gplusify"; sha256 = "0fgkcvppkq6pba1giddkfxp9z4c8v2cid9nb8a190b3g85wcwycr"; name = "gplusify"; }; @@ -24573,7 +24848,7 @@ gradle-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "gradle-mode"; - version = "20150313.1405"; + version = "20150313.1505"; src = fetchFromGitHub { owner = "jacobono"; repo = "emacs-gradle-mode"; @@ -24581,7 +24856,7 @@ sha256 = "0xs2278gamzg0710bm1fkhjh1p75m2l1jcl98ldhyjhvaf9d0ysc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gradle-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/gradle-mode"; sha256 = "0lx9qi93wmiy9pxjxqp68scbcb4bx88b6jiqk3y8jg5cajizh24g"; name = "gradle-mode"; }; @@ -24594,7 +24869,7 @@ grails = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "grails"; - version = "20160417.136"; + version = "20160417.236"; src = fetchFromGitHub { owner = "lifeisfoo"; repo = "emacs-grails"; @@ -24602,7 +24877,7 @@ sha256 = "1npsjniazaq20vz3kvwr8p30ivc6x24r9a16rfcwhr5wjx3nn91b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/grails"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/grails"; sha256 = "177y6xv35d2dhc3pdx5qhpywlmlqgfnjpzfm9yxc8l6q2rgs8irw"; name = "grails"; }; @@ -24615,15 +24890,15 @@ grails-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "grails-mode"; - version = "20151206.154"; + version = "20160504.511"; src = fetchFromGitHub { owner = "Groovy-Emacs-Modes"; repo = "groovy-emacs-modes"; - rev = "d17b29b0ccffb1a7c6e5f3f13268ad2c5770249b"; - sha256 = "0gvz0zdpspl8dhsm17f0q9020ayvxmgmm15yy7hnl4z0xrv9yvjr"; + rev = "9d42f284b3163215484e16bef1785456d2e7b68d"; + sha256 = "1dwj53z4422ks30cqr5rj6x91qf63sjzbmb06sz4ac5pdr1d66q6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/grails-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/grails-mode"; sha256 = "1zdlmdkwyaj2zns3xwmqpil83j7857aj2070kvx8xza66dxcnlm4"; name = "grails-mode"; }; @@ -24636,7 +24911,7 @@ grails-projectile-mode = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, projectile }: melpaBuild { pname = "grails-projectile-mode"; - version = "20160327.824"; + version = "20160327.924"; src = fetchFromGitHub { owner = "yveszoundi"; repo = "grails-projectile-mode"; @@ -24644,7 +24919,7 @@ sha256 = "0xnj0wp0na53l0y8fiaah50ij4r80j8a29hbjbcicska21p5w1s1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/grails-projectile-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/grails-projectile-mode"; sha256 = "0dy8v2mila7ccvb7j5jlfkhfjsjfk3bm3rcy84m0rgbqjai67amn"; name = "grails-projectile-mode"; }; @@ -24657,7 +24932,7 @@ grandshell-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "grandshell-theme"; - version = "20150404.701"; + version = "20150404.801"; src = fetchFromGitHub { owner = "steckerhalter"; repo = "grandshell-theme"; @@ -24665,7 +24940,7 @@ sha256 = "0803j6r447br0nszzcy6pc65l53j871icyr91dd7x10xi7ygw0lj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/grandshell-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/grandshell-theme"; sha256 = "1mnnjsw1kx40b6ws8wmk25fz9rq8rd70xia9cjpwdfkg7kh8xvsa"; name = "grandshell-theme"; }; @@ -24678,7 +24953,7 @@ graphene = callPackage ({ company, dash, exec-path-from-shell, fetchFromGitHub, fetchurl, flycheck, graphene-meta-theme, ido-ubiquitous, lib, melpaBuild, ppd-sr-speedbar, smartparens, smex, sr-speedbar, web-mode }: melpaBuild { pname = "graphene"; - version = "20151109.140"; + version = "20151109.240"; src = fetchFromGitHub { owner = "rdallasgray"; repo = "graphene"; @@ -24686,7 +24961,7 @@ sha256 = "1f34bhjxmbf2jjrkpdvqg2gwp83ka6d5vrxmsxdl3r57yc6rbrwa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/graphene"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/graphene"; sha256 = "1wz3rvd8b7gx5d0k7yi4dd69ax5bybcm10vdc7xp4yn296lmyl9k"; name = "graphene"; }; @@ -24711,7 +24986,7 @@ graphene-meta-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "graphene-meta-theme"; - version = "20151108.400"; + version = "20151108.500"; src = fetchFromGitHub { owner = "rdallasgray"; repo = "graphene-meta-theme"; @@ -24719,7 +24994,7 @@ sha256 = "1bidfn4x5lb6dylhadyf05g4l2k7jg83mi058cmv76av1glawk17"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/graphene-meta-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/graphene-meta-theme"; sha256 = "1cqdr93lccdpxkzgap3r3qc92dh8vqgdlnxvqkw7lrcbs31fvf3q"; name = "graphene-meta-theme"; }; @@ -24732,7 +25007,7 @@ graphviz-dot-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "graphviz-dot-mode"; - version = "20151127.821"; + version = "20151127.921"; src = fetchFromGitHub { owner = "ppareit"; repo = "graphviz-dot-mode"; @@ -24740,7 +25015,7 @@ sha256 = "12r6a3hikzqcdbplmraa4p4w136c006yamylxfjf8580v15xngrf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/graphviz-dot-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/graphviz-dot-mode"; sha256 = "04rkynsrsk6w4sxn1pc0b9b6pij1p7yraywbrk7qvv05fv69kri2"; name = "graphviz-dot-mode"; }; @@ -24753,7 +25028,7 @@ grapnel = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "grapnel"; - version = "20131001.1034"; + version = "20131001.1134"; src = fetchFromGitHub { owner = "leathekd"; repo = "grapnel"; @@ -24761,7 +25036,7 @@ sha256 = "0nvl8mh7jxailisq31h5bi64s9b74ah1465wiwh18x502swr2s3c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/grapnel"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/grapnel"; sha256 = "019cdx1wdx8sc2ibqwgp1akgckzxxvrayyp2sv806gha0kn6yf6r"; name = "grapnel"; }; @@ -24774,14 +25049,14 @@ grass-mode = callPackage ({ cl-lib ? null, dash, fetchhg, fetchurl, lib, melpaBuild }: melpaBuild { pname = "grass-mode"; - version = "20160317.814"; + version = "20160317.914"; src = fetchhg { url = "https://bitbucket.com/tws/grass-mode.el"; rev = "25414dff1fc5"; sha256 = "0mnwmsn078hz317xfz6c05r7narx3k8956v1ajz5myxx8xrcr24z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/grass-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/grass-mode"; sha256 = "1lq6bk4bwgcy4ra3d9rlca3fk87ydg7xnnqcqjg0pw4m9xnr3f7v"; name = "grass-mode"; }; @@ -24794,7 +25069,7 @@ green-phosphor-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "green-phosphor-theme"; - version = "20150515.947"; + version = "20150515.1047"; src = fetchFromGitHub { owner = "aalpern"; repo = "emacs-color-theme-green-phosphor"; @@ -24802,7 +25077,7 @@ sha256 = "0rgv96caigcjffg1983274p4ff1icx1xh5bj7rcd53hai5ag16mp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/green-phosphor-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/green-phosphor-theme"; sha256 = "1p4l75lahmbjcx74ca5jcyc04828vlcahk7gzv5lr7z9mhvq6fbh"; name = "green-phosphor-theme"; }; @@ -24815,7 +25090,7 @@ gregorio-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "gregorio-mode"; - version = "20151026.920"; + version = "20151026.1020"; src = fetchFromGitHub { owner = "cajetanus"; repo = "gregorio-mode.el"; @@ -24823,7 +25098,7 @@ sha256 = "1670pxgmqflzw5d02mzsmqjf3gp0c4wf25z0crmaamyfmwdz9pag"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gregorio-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/gregorio-mode"; sha256 = "0f226l67bqqc6m8wb97m7lkxvwrfbw74b1riasirca1anzjl8jfx"; name = "gregorio-mode"; }; @@ -24836,7 +25111,7 @@ grep-a-lot = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "grep-a-lot"; - version = "20131006.847"; + version = "20131006.947"; src = fetchFromGitHub { owner = "ZungBang"; repo = "emacs-grep-a-lot"; @@ -24844,7 +25119,7 @@ sha256 = "1f8262mrlinzgnn4m49hbj1hm3c1mvzza24py4b37sasn49546lw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/grep-a-lot"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/grep-a-lot"; sha256 = "1513vnm5b587r15hcbnplgsfv7kv8g5fd0w4nwb6pq7myzv53ra1"; name = "grep-a-lot"; }; @@ -24856,13 +25131,13 @@ }) {}; grep-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "grep-plus"; - version = "20160212.825"; + version = "20160212.925"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/grep+.el"; sha256 = "08jl4xhh25znyc6cm7288x4b55pykrpcsyym78fdlrw3xxr77cxs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/grep+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/grep+"; sha256 = "1qj4f6d3l88bdcnq825pylnc76m22x2i15yxdhc2b6rv80df7zsx"; name = "grep-plus"; }; @@ -24875,7 +25150,7 @@ greymatters-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "greymatters-theme"; - version = "20150621.623"; + version = "20150621.723"; src = fetchFromGitHub { owner = "mswift42"; repo = "greymatters-theme"; @@ -24883,7 +25158,7 @@ sha256 = "14c09m9p6556rrf0qfad4zsv7qxa5flamzg6fa83cxh0qfg7wjbp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/greymatters-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/greymatters-theme"; sha256 = "10cxajyws5rwk62i4vk26c1ih0dq490kcfx7gijw38q3b5r1l8nr"; name = "greymatters-theme"; }; @@ -24895,14 +25170,14 @@ }) {}; grin = callPackage ({ fetchhg, fetchurl, lib, melpaBuild }: melpaBuild { pname = "grin"; - version = "20110806.158"; + version = "20110806.258"; src = fetchhg { url = "https://bitbucket.com/dariusp686/emacs-grin"; rev = "f541aa22da52"; sha256 = "0rqpgc50z86j4waijfm6kw4zjmzqfii6nnvyix4rkd4y3ryny1x2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/grin"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/grin"; sha256 = "0mvzwmws5pi6hpzgkc43fjxs98ngkr0jvqbclza2jbbqawifzzbk"; name = "grin"; }; @@ -24915,7 +25190,7 @@ grizzl = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "grizzl"; - version = "20160131.151"; + version = "20160131.251"; src = fetchFromGitHub { owner = "grizzl"; repo = "grizzl"; @@ -24923,7 +25198,7 @@ sha256 = "1d2kwiq3zy8wdg5zig0q9rrdcs4xdv6zsgvgc21b3kv83daq1dsq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/grizzl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/grizzl"; sha256 = "0354xskqzxc38l14zxqs31hadwh27v9lyx67y3hnd94d8abr0qcb"; name = "grizzl"; }; @@ -24936,15 +25211,15 @@ groovy-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "groovy-mode"; - version = "20151228.1151"; + version = "20160504.511"; src = fetchFromGitHub { owner = "Groovy-Emacs-Modes"; repo = "groovy-emacs-modes"; - rev = "d17b29b0ccffb1a7c6e5f3f13268ad2c5770249b"; - sha256 = "0gvz0zdpspl8dhsm17f0q9020ayvxmgmm15yy7hnl4z0xrv9yvjr"; + rev = "9d42f284b3163215484e16bef1785456d2e7b68d"; + sha256 = "1dwj53z4422ks30cqr5rj6x91qf63sjzbmb06sz4ac5pdr1d66q6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/groovy-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/groovy-mode"; sha256 = "1pxw7rdn56klmr6kw21lhzh7zhp338gyf54ypsml64ibzr1x9kal"; name = "groovy-mode"; }; @@ -24957,7 +25232,7 @@ gruber-darker-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "gruber-darker-theme"; - version = "20160417.630"; + version = "20160417.730"; src = fetchFromGitHub { owner = "rexim"; repo = "gruber-darker-theme"; @@ -24965,7 +25240,7 @@ sha256 = "0dn1iscy0vw2bcnh5s675wjnfk9f20i30b8slyffvpzbbi369pys"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gruber-darker-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/gruber-darker-theme"; sha256 = "0vn4msixb77xj6p5mlfchjyyjhzah0lcmp0z82s8849zd194fxqi"; name = "gruber-darker-theme"; }; @@ -24978,7 +25253,7 @@ grunt = callPackage ({ ansi-color ? null, dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "grunt"; - version = "20160316.1028"; + version = "20160316.1128"; src = fetchFromGitHub { owner = "gempesaw"; repo = "grunt.el"; @@ -24986,7 +25261,7 @@ sha256 = "1xd6gv9bkqnj7j5mcnwvl1mxjmzvxqhp135hxj0ijc0ybdybacf7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/grunt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/grunt"; sha256 = "1qdzqcrff9x97kyy0d4j636d5i751qja10liw8i0lf4lk6n0lywz"; name = "grunt"; }; @@ -24999,15 +25274,15 @@ gruvbox-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "gruvbox-theme"; - version = "20151227.313"; + version = "20160429.1851"; src = fetchFromGitHub { owner = "Greduan"; repo = "emacs-theme-gruvbox"; - rev = "6af232a46073235ccf81cf99f46ee600fea7ba3e"; - sha256 = "04jknwkax9gdmzz0yq0m21grl9c43vr3abdam3g8zjh5sjx5gs14"; + rev = "737356c9d83867d9d082862b0c22ad5e8534eb5f"; + sha256 = "0qwwgzbzxbzbnfxpirkh6h0k1d9bhlkz978ccm21128fh50sz0yd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gruvbox-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/gruvbox-theme"; sha256 = "042mnwlmixygk2mf24ygk7rkv1rfavc5a36hs9x8b68jnf3khj32"; name = "gruvbox-theme"; }; @@ -25020,7 +25295,7 @@ gs-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "gs-mode"; - version = "20151202.406"; + version = "20151202.506"; src = fetchFromGitHub { owner = "yyr"; repo = "emacs-grads"; @@ -25028,7 +25303,7 @@ sha256 = "1d89gxyzv0z0nk7v1aa4qa0xfms2g2dsrr07cw0d99xsnyxfky31"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gs-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/gs-mode"; sha256 = "02ldd92fv1k28nygl34i8gv0b0i1v5qd7nl1l17cf5f3akdwc6iq"; name = "gs-mode"; }; @@ -25041,15 +25316,15 @@ gscholar-bibtex = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "gscholar-bibtex"; - version = "20160412.1619"; + version = "20160505.2322"; src = fetchFromGitHub { owner = "cute-jumper"; repo = "gscholar-bibtex"; - rev = "df504cf9d1aecccb99551067861e9e1bae932d99"; - sha256 = "1xc5lzrq9nz3cxx6gm89c9p00ki53gxa3bri5yn6yk4g7hbwqvz0"; + rev = "31ed907e90b28477a020bf055af6b7003aa7708e"; + sha256 = "0vfqwiiyvpn5m9mxdrm94pcl7jbpffxrjw1i87m66scrwppjjhdb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gscholar-bibtex"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/gscholar-bibtex"; sha256 = "0d41gr9amf9vdn9pl9lamhp2swqllxslv9r3wsgzqvjl7zayd1az"; name = "gscholar-bibtex"; }; @@ -25062,7 +25337,7 @@ guide-key = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, popwin, s }: melpaBuild { pname = "guide-key"; - version = "20150108.35"; + version = "20150108.135"; src = fetchFromGitHub { owner = "kai2nenobu"; repo = "guide-key"; @@ -25070,7 +25345,7 @@ sha256 = "14sx5m6fpkm2q8ljkicl1yy1sw003k4rzz9hi7lm1nfqr2l4n6q0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/guide-key"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/guide-key"; sha256 = "0zjrdvppcg8b2k6hfdj45rswc1ks9xgimcr2yvgpc8prrwk1yjsf"; name = "guide-key"; }; @@ -25083,7 +25358,7 @@ guide-key-tip = callPackage ({ fetchFromGitHub, fetchurl, guide-key, lib, melpaBuild, pos-tip }: melpaBuild { pname = "guide-key-tip"; - version = "20140406.2020"; + version = "20140406.2120"; src = fetchFromGitHub { owner = "aki2o"; repo = "guide-key-tip"; @@ -25091,7 +25366,7 @@ sha256 = "1s6p4ysdbqx5fk68s317ckj5rjmpkwwb0324sbqqa6byhw3j0xyj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/guide-key-tip"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/guide-key-tip"; sha256 = "0h2vkkbxq361dkn6irm1v19qj7bkhxcjljiksd5wwlq5zsq6bd06"; name = "guide-key-tip"; }; @@ -25104,7 +25379,7 @@ guru-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "guru-mode"; - version = "20160415.2121"; + version = "20160415.2221"; src = fetchFromGitHub { owner = "bbatsov"; repo = "guru-mode"; @@ -25112,7 +25387,7 @@ sha256 = "1jymhjjpn600svd5jbj42m3vnpaza838zby507ynbwc95nja29vs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/guru-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/guru-mode"; sha256 = "0j25nxs3ndybq1ik36qyqdprmhav4ba8ny7v2z61s23id8hz3xjs"; name = "guru-mode"; }; @@ -25125,7 +25400,7 @@ gvpr-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "gvpr-mode"; - version = "20131208.1118"; + version = "20131208.1218"; src = fetchFromGitHub { owner = "rodw"; repo = "gvpr-lib"; @@ -25133,7 +25408,7 @@ sha256 = "0060qw4gr9fv6db20xf3spgl2fwg2iid5ckfjm3vj3ydyv62q13s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gvpr-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/gvpr-mode"; sha256 = "19p6f06qdjvh2vmgbabajvkfxpn13j899jrivw9mqyssz0cyvzgw"; name = "gvpr-mode"; }; @@ -25146,7 +25421,7 @@ hackernews = callPackage ({ fetchFromGitHub, fetchurl, json ? null, lib, melpaBuild }: melpaBuild { pname = "hackernews"; - version = "20160326.925"; + version = "20160326.1025"; src = fetchFromGitHub { owner = "clarete"; repo = "hackernews.el"; @@ -25154,7 +25429,7 @@ sha256 = "1c49lfm5saafxks591qyy2nilymxz3aqlxpsmnad5d0kfhvjr47z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hackernews"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/hackernews"; sha256 = "1x1jf5gkhmpiby5rmy0sziywh6c1f1n0p4f6dlz6ifbwns7har6a"; name = "hackernews"; }; @@ -25167,7 +25442,7 @@ ham-mode = callPackage ({ fetchFromGitHub, fetchurl, html-to-markdown, lib, markdown-mode, melpaBuild }: melpaBuild { pname = "ham-mode"; - version = "20150811.806"; + version = "20150811.906"; src = fetchFromGitHub { owner = "Malabarba"; repo = "ham-mode"; @@ -25175,7 +25450,7 @@ sha256 = "0d3xmagl18pas19zbpg27j0lmdiry23df48z4vkjsrcllqg25v5g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ham-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ham-mode"; sha256 = "000qrdby7d6zmp5066vs4gjlc9ik0ybrgcwzcbfgxb16w1g9xpmz"; name = "ham-mode"; }; @@ -25188,7 +25463,7 @@ hamburg-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "hamburg-theme"; - version = "20160123.140"; + version = "20160123.240"; src = fetchFromGitHub { owner = "mswift42"; repo = "hamburg-theme"; @@ -25196,7 +25471,7 @@ sha256 = "1rnkzl51h263nck1bd0jyb7q58b54d764gcsh7wqxfgzs1jfr4am"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hamburg-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/hamburg-theme"; sha256 = "149ln7670kjyhdfj5j9akxch47dlff2hd58amla7j3297z1nhg4k"; name = "hamburg-theme"; }; @@ -25209,7 +25484,7 @@ haml-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, ruby-mode ? null }: melpaBuild { pname = "haml-mode"; - version = "20150508.2211"; + version = "20150508.2311"; src = fetchFromGitHub { owner = "nex3"; repo = "haml-mode"; @@ -25217,7 +25492,7 @@ sha256 = "0fmcm4pcivigz9xhf7z9wsxz9pg1yfx9qv8na2dxj426bibk0a6w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/haml-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/haml-mode"; sha256 = "0ih0m7zr6kgn6zd45zbp1jgs1ydc5i5gmq6l080wma83v5w1436f"; name = "haml-mode"; }; @@ -25230,7 +25505,7 @@ hamlet-mode = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "hamlet-mode"; - version = "20131208.124"; + version = "20131208.224"; src = fetchFromGitHub { owner = "lightquake"; repo = "hamlet-mode"; @@ -25238,7 +25513,7 @@ sha256 = "1njrpb1s2v9skyfbgb28clrxyvyp8i4b8kwa68ynvq3vjb4fnws6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hamlet-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/hamlet-mode"; sha256 = "0ils4w8ry1inlfj4931ypibj3n60xq6ah74hig62y4vrs4d47gyx"; name = "hamlet-mode"; }; @@ -25251,7 +25526,7 @@ handlebars-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "handlebars-mode"; - version = "20150211.1149"; + version = "20150211.1249"; src = fetchFromGitHub { owner = "danielevans"; repo = "handlebars-mode"; @@ -25259,7 +25534,7 @@ sha256 = "0w443knp6kvjm2m79cni5d17plyhbsl0a4kip7yrpv5nmg370q3p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/handlebars-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/handlebars-mode"; sha256 = "11ahrm4n588v7ir2r7sp4dkbypl5nhnr22px849hdxjcrwal24vj"; name = "handlebars-mode"; }; @@ -25272,7 +25547,7 @@ handlebars-sgml-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "handlebars-sgml-mode"; - version = "20130623.1833"; + version = "20130623.1933"; src = fetchFromGitHub { owner = "jacott"; repo = "handlebars-sgml-mode"; @@ -25280,7 +25555,7 @@ sha256 = "1z37di9vk1l35my8kl8jnyqlkr1rnp0iz13hpc0r065mib67v58k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/handlebars-sgml-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/handlebars-sgml-mode"; sha256 = "10sxm7v94yxa92mqbwj3shqjs6f3zbxjvwgbvg9m2fh3b7xj617w"; name = "handlebars-sgml-mode"; }; @@ -25293,7 +25568,7 @@ handoff = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "handoff"; - version = "20150917.100"; + version = "20150917.200"; src = fetchFromGitHub { owner = "rejeep"; repo = "handoff.el"; @@ -25301,7 +25576,7 @@ sha256 = "0whn8rc98dhncgizzrb22nx6b6cm655q1cf2fpn6g3knq1c2471r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/handoff"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/handoff"; sha256 = "0iqqvygx50wi2vcbs6bfgqzhcz9a89zrwb7sg0ang9qrkiz5k36w"; name = "handoff"; }; @@ -25314,7 +25589,7 @@ hardcore-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "hardcore-mode"; - version = "20151114.101"; + version = "20151114.201"; src = fetchFromGitHub { owner = "magnars"; repo = "hardcore-mode.el"; @@ -25322,7 +25597,7 @@ sha256 = "124k803pgxc7fz325yy6jcyam69f5fk9kdwfgmnwwca9ablq4cfb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hardcore-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/hardcore-mode"; sha256 = "1bgi1acpw4z7i03d0i8mrd2hpjn6hyvkdsk0ks9q380yp9mqmiwd"; name = "hardcore-mode"; }; @@ -25335,7 +25610,7 @@ hardhat = callPackage ({ fetchFromGitHub, fetchurl, ignoramus, lib, melpaBuild }: melpaBuild { pname = "hardhat"; - version = "20160414.913"; + version = "20160414.1013"; src = fetchFromGitHub { owner = "rolandwalker"; repo = "hardhat"; @@ -25343,7 +25618,7 @@ sha256 = "0j9z46j777y3ljpai5czdlwl07f0irp4fsk4677n11ndyqm1amb5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hardhat"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/hardhat"; sha256 = "16pdbpm647ag9cadmdm75nwwyzrqsd9y1b4zgkl3pg669mi5vl5z"; name = "hardhat"; }; @@ -25356,7 +25631,7 @@ harvest = callPackage ({ fetchFromGitHub, fetchurl, hydra, lib, melpaBuild, s, swiper }: melpaBuild { pname = "harvest"; - version = "20160405.1143"; + version = "20160405.1243"; src = fetchFromGitHub { owner = "kostajh"; repo = "harvest.el"; @@ -25364,7 +25639,7 @@ sha256 = "1nswlbw4x461zksjcy2kllgiz8h270iyk44bls3m3l9y2nx82fxm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/harvest"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/harvest"; sha256 = "1qfhfzjwlnqpbq4kfxvs97fa3xks8zi02fnwv0ik8wb1ppbb77qd"; name = "harvest"; }; @@ -25377,7 +25652,7 @@ haskell-emacs = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "haskell-emacs"; - version = "20160223.550"; + version = "20160223.650"; src = fetchFromGitHub { owner = "knupfer"; repo = "haskell-emacs"; @@ -25385,7 +25660,7 @@ sha256 = "114qg91mb53ib7alnn1i9wjcr4psqps6ncpyqyklllmbdm0q660n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/haskell-emacs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/haskell-emacs"; sha256 = "1wkh7qws35c32hha0p9rpjz5pls2844920nh919lvp2wmq9l6jd6"; name = "haskell-emacs"; }; @@ -25398,7 +25673,7 @@ haskell-emacs-base = callPackage ({ fetchFromGitHub, fetchurl, haskell-emacs, lib, melpaBuild }: melpaBuild { pname = "haskell-emacs-base"; - version = "20150714.1059"; + version = "20150714.1159"; src = fetchFromGitHub { owner = "knupfer"; repo = "haskell-emacs"; @@ -25406,7 +25681,7 @@ sha256 = "114qg91mb53ib7alnn1i9wjcr4psqps6ncpyqyklllmbdm0q660n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/haskell-emacs-base"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/haskell-emacs-base"; sha256 = "1fwkds6qyhbxxdgxfzmgd7dlcxr08ynrrg5jdp9r7f924pd536vb"; name = "haskell-emacs-base"; }; @@ -25419,7 +25694,7 @@ haskell-emacs-text = callPackage ({ fetchFromGitHub, fetchurl, haskell-emacs, lib, melpaBuild }: melpaBuild { pname = "haskell-emacs-text"; - version = "20150713.916"; + version = "20150713.1016"; src = fetchFromGitHub { owner = "knupfer"; repo = "haskell-emacs"; @@ -25427,7 +25702,7 @@ sha256 = "114qg91mb53ib7alnn1i9wjcr4psqps6ncpyqyklllmbdm0q660n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/haskell-emacs-text"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/haskell-emacs-text"; sha256 = "1j18fhhra6lv32xrq8jc6l8i56fgn68da81wymcimpmpbp0hl5fy"; name = "haskell-emacs-text"; }; @@ -25440,15 +25715,15 @@ haskell-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "haskell-mode"; - version = "20160425.1432"; + version = "20160507.42"; src = fetchFromGitHub { owner = "haskell"; repo = "haskell-mode"; - rev = "773540c8781a8abb9e799fa420983b1ac3e34a74"; - sha256 = "0gj91ffh2fahs68s8ml281frdb1dg89mrkw9446z8l8q7pwjqajm"; + rev = "c42691f4dda8bc2251a375cd818db2e601908ddb"; + sha256 = "1wgxhlxy1mvjc6br2my8lxqrfnlzq2046jbmrg5babd4lmfgx66i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/haskell-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/haskell-mode"; sha256 = "0wijvcpfdbl17iwzy47vf8brkj2djarfr8y28rw0wqvbs381zzwp"; name = "haskell-mode"; }; @@ -25461,7 +25736,7 @@ haskell-snippets = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }: melpaBuild { pname = "haskell-snippets"; - version = "20160121.1658"; + version = "20160121.1758"; src = fetchFromGitHub { owner = "haskell"; repo = "haskell-snippets"; @@ -25469,7 +25744,7 @@ sha256 = "1wha5f2zx5hr6y0wvpmkg7jnxcgbzx99gd70h96c3dqqqhqz6d2a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/haskell-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/haskell-snippets"; sha256 = "10bvv7q694fahcpm83v8lpqihg1gvfzrp1hdzwiffxydfvdbalh2"; name = "haskell-snippets"; }; @@ -25482,14 +25757,14 @@ haskell-tab-indent = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: melpaBuild { pname = "haskell-tab-indent"; - version = "20151205.1359"; + version = "20151205.1459"; src = fetchgit { url = "https://git.spwhitton.name/haskell-tab-indent"; rev = "150f52176242ba3bc4f58179cd2dbee4d89580f4"; sha256 = "0hfq8wpnyz5sqhkr53smw0k1wi7mb5k215xnvywkh5lhsq8cjhby"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/haskell-tab-indent"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/haskell-tab-indent"; sha256 = "0vdfmy56w5yi202nbd28v1bzj97v1wxnfnb5z3dh9687p2abgnr7"; name = "haskell-tab-indent"; }; @@ -25502,7 +25777,7 @@ haste = callPackage ({ fetchFromGitHub, fetchurl, json ? null, lib, melpaBuild }: melpaBuild { pname = "haste"; - version = "20141030.1534"; + version = "20141030.1634"; src = fetchFromGitHub { owner = "rlister"; repo = "emacs-haste-client"; @@ -25510,7 +25785,7 @@ sha256 = "1gmh455ahd9if11f8mrqbfky24c784bb4fgdl3pj8i0n5sl51i88"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/haste"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/haste"; sha256 = "0wz15p58g4mxvwbpy9k60gixs1g4jw7pay5pbxnlggc39x1py8nf"; name = "haste"; }; @@ -25523,14 +25798,14 @@ haxe-mode = callPackage ({ fetchhg, fetchurl, lib, melpaBuild }: melpaBuild { pname = "haxe-mode"; - version = "20131004.342"; + version = "20131004.442"; src = fetchhg { url = "https://bitbucket.com/jpsecher/haxe-mode"; rev = "850f29d9f70e"; sha256 = "106a7kpjj4laxl7x8aqpv75ih54569b3bs2a1b8z4rghmikqc4aw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/haxe-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/haxe-mode"; sha256 = "032h0nxlsrk30bsqb02by842ycrw1qscpfprifjjkaiq08wigh1l"; name = "haxe-mode"; }; @@ -25543,7 +25818,7 @@ haxor-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "haxor-mode"; - version = "20160111.1400"; + version = "20160111.1500"; src = fetchFromGitHub { owner = "krzysztof-magosa"; repo = "haxor-mode"; @@ -25551,7 +25826,7 @@ sha256 = "1si5r86zvnp4wbzvvqyc4zhap14k8pcq5nqigx45mgvpdnwdvzln"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/haxor-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/haxor-mode"; sha256 = "1y4m058whdqnkkf9s6hzi0h6w0fc8ajfawhpjj0wqjam4adnfkq5"; name = "haxor-mode"; }; @@ -25564,7 +25839,7 @@ hayoo = callPackage ({ emacs, fetchFromGitHub, fetchurl, json ? null, lib, melpaBuild }: melpaBuild { pname = "hayoo"; - version = "20140831.721"; + version = "20140831.821"; src = fetchFromGitHub { owner = "benma"; repo = "hayoo.el"; @@ -25572,7 +25847,7 @@ sha256 = "0pjxyhh8a02i54a9jsqr8p1mcqfl6k9b8gv9lnzb242gy4518y3l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hayoo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/hayoo"; sha256 = "1rqvnv5nxlsyvsa5my1wpfm82sw21s7kfbg80vrjmxh0mwlyv4p9"; name = "hayoo"; }; @@ -25585,7 +25860,7 @@ hc-zenburn-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "hc-zenburn-theme"; - version = "20150928.1133"; + version = "20150928.1233"; src = fetchFromGitHub { owner = "edran"; repo = "hc-zenburn-emacs"; @@ -25593,7 +25868,7 @@ sha256 = "0rgcj47h7a67qkw6696pcm1a4g4ryx8nrz55s69fw86958fp08hk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hc-zenburn-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/hc-zenburn-theme"; sha256 = "0jcddk9ppgcizyyciabj3sgk1pmingl97knf9nmr0mi89h7n2g5y"; name = "hc-zenburn-theme"; }; @@ -25606,15 +25881,15 @@ hcl-mode = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "hcl-mode"; - version = "20160426.538"; + version = "20160502.2000"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-hcl-mode"; - rev = "2ce5f28e3ebb7cd8e4279a507c27822875b475b0"; - sha256 = "1xadbyhzfbl75rm8n9kv0kmcbxd82c9w6p88ds394f3hjmjji3gg"; + rev = "cc13180e3af748d53c4a1d433ce2edf99bf68a7d"; + sha256 = "0hiw226gv73jh7s3jg4p1c15p4km4rs7i9ab4wgpkl5lg4vrz5i6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hcl-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/hcl-mode"; sha256 = "1wrs9kj6ahsdnbn3fdaqhclq1ia6w4x726hjvl6pyk01sb0spnin"; name = "hcl-mode"; }; @@ -25626,13 +25901,13 @@ }) {}; header2 = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "header2"; - version = "20151231.1526"; + version = "20151231.1626"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/header2.el"; sha256 = "00j74cqdnaf5rl7w4wabm4z88cm20s152y0yxnv73z9pvqbknrmm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/header2"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/header2"; sha256 = "1dg25krx3wxma2l5vb2ji7rpfp17qbrl62jyjpa52cjfsvyp6v06"; name = "header2"; }; @@ -25645,7 +25920,7 @@ headlong = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "headlong"; - version = "20150417.1026"; + version = "20150417.1126"; src = fetchFromGitHub { owner = "abo-abo"; repo = "headlong"; @@ -25653,7 +25928,7 @@ sha256 = "06hq6p6a4fzprbj4r885vsvzddlvx0wxqk5kik06v5bm7hjmnyrq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/headlong"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/headlong"; sha256 = "042ybplkqjb30qf5cpbw5d91j1rdc71b789v277h036bri7hgxz6"; name = "headlong"; }; @@ -25666,15 +25941,15 @@ helm = callPackage ({ async, emacs, fetchFromGitHub, fetchurl, helm-core, lib, melpaBuild, popup }: melpaBuild { pname = "helm"; - version = "20160426.758"; + version = "20160428.1502"; src = fetchFromGitHub { owner = "emacs-helm"; repo = "helm"; - rev = "3099cfca9e35b3df9bd1e80057f96246ef2e1705"; - sha256 = "1xspnqdg18rzjnd55vawcj74ypx430lzj19i70bhgzghb22pw3rl"; + rev = "2227344374e3113b149da84a65591ec673520777"; + sha256 = "0qbffdhlvcrslw1f1ngjw3wgydlxprj1ab8wf2ssh0vqdcarfs2v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm"; sha256 = "0xsf4rg7kn0m5wjlbwhd1mc38lg2822037dyd0h66h6x2gbs3fd9"; name = "helm"; }; @@ -25687,7 +25962,7 @@ helm-R = callPackage ({ ess, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-R"; - version = "20120819.1914"; + version = "20120819.2014"; src = fetchFromGitHub { owner = "myuhe"; repo = "helm-R.el"; @@ -25695,7 +25970,7 @@ sha256 = "0nip0zrmn944wy0x2dc5ryr0m7a948rn2a8cbaajghs7a7zai4cr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-R"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-R"; sha256 = "0zq9f2xhgap3ihnrlsrsaxaz0nx014k0820bfsq7lckwcnm0mng1"; name = "helm-R"; }; @@ -25708,7 +25983,7 @@ helm-ack = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-ack"; - version = "20141030.726"; + version = "20141030.826"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-helm-ack"; @@ -25716,7 +25991,7 @@ sha256 = "04rvbafa77blps7x7cmlsciys8fgmvhfhq4v51pk8z5q3j1lrgc5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-ack"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-ack"; sha256 = "1a8sc5gd2g57dl9g18wyydfmihy74yniwhjr27h7vxylnf2g3pni"; name = "helm-ack"; }; @@ -25729,7 +26004,7 @@ helm-ad = callPackage ({ dash, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-ad"; - version = "20151209.415"; + version = "20151209.515"; src = fetchFromGitHub { owner = "tnoda"; repo = "helm-ad"; @@ -25737,7 +26012,7 @@ sha256 = "0hxfgdn56c7qr64r59g9hvxxwa4mw0ad9c9m0z5cj85bsdd7rlx4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-ad"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-ad"; sha256 = "0h2zjfj9hy7bkpmmjjs0a4a06asbw0yww8mw9rk2xi1gc2aqq4hi"; name = "helm-ad"; }; @@ -25750,15 +26025,15 @@ helm-ag = callPackage ({ emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-ag"; - version = "20160424.746"; + version = "20160505.2148"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-helm-ag"; - rev = "edc264067b1b4e695e689cab4fd429f605ceef8e"; - sha256 = "1riaih9f74mv1kyy5g47p1s9idynjv11bi99mr4mdrr1gqwi2c8i"; + rev = "fa8d2aec9d6398dff197febb280867e7caa0bbd8"; + sha256 = "1lik1wkqx042j1bm7302w945j8x749mzws5287rl1rhcpbl39xqw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-ag"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-ag"; sha256 = "050qh5xqh8lwkgmz3jxm8gql5nd7bq8sp9q6mzm2z7367qy4qqyf"; name = "helm-ag"; }; @@ -25771,7 +26046,7 @@ helm-ag-r = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-ag-r"; - version = "20131123.931"; + version = "20131123.1031"; src = fetchFromGitHub { owner = "yuutayamada"; repo = "helm-ag-r"; @@ -25779,7 +26054,7 @@ sha256 = "1rifdkhzvf7xd2npban0i8v3rjcji69063dw9rs1d32w4n7fzlfa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-ag-r"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-ag-r"; sha256 = "0ivh7f021lbmbaj6gs4y8m99s63js57w04q7cwx7v4i32cpas7r9"; name = "helm-ag-r"; }; @@ -25792,7 +26067,7 @@ helm-anything = callPackage ({ anything, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-anything"; - version = "20141126.431"; + version = "20141126.531"; src = fetchFromGitHub { owner = "rubikitch"; repo = "helm-anything"; @@ -25800,7 +26075,7 @@ sha256 = "153zq1q3s3ihjh15wyci9qdic3pin8f1j1gq2qlzyhmy0njlvgjb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-anything"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-anything"; sha256 = "0yjlwsiahb7n4q3522d68xrdb8caad9gpnglz5php245yqy3n5vx"; name = "helm-anything"; }; @@ -25813,7 +26088,7 @@ helm-aws = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, s }: melpaBuild { pname = "helm-aws"; - version = "20151124.333"; + version = "20151124.433"; src = fetchFromGitHub { owner = "istib"; repo = "helm-aws"; @@ -25821,7 +26096,7 @@ sha256 = "1bnypr906gfc1fbyrqfsfilsl6wiacrnhr8flpa0gmdjhvmrw7af"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-aws"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-aws"; sha256 = "0sjgdjpznjxsf6nlv2ah45fw17j8j5apdphd1fp43rjv1lskkgc5"; name = "helm-aws"; }; @@ -25834,7 +26109,7 @@ helm-backup = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, s }: melpaBuild { pname = "helm-backup"; - version = "20151213.1247"; + version = "20151213.1347"; src = fetchFromGitHub { owner = "antham"; repo = "helm-backup"; @@ -25842,7 +26117,7 @@ sha256 = "0d6h4gbb69abxxgm85pdi5rsaf9h72yryg72ykd5633i1g4s8a76"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-backup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-backup"; sha256 = "182jbm36yzayxi9y3vhpyn25ivrgay37sncqvah35vbw52lnjcn3"; name = "helm-backup"; }; @@ -25855,7 +26130,7 @@ helm-bibtex = callPackage ({ biblio, cl-lib ? null, dash, f, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, parsebib, s }: melpaBuild { pname = "helm-bibtex"; - version = "20160422.1800"; + version = "20160422.1900"; src = fetchFromGitHub { owner = "tmalsburg"; repo = "helm-bibtex"; @@ -25863,7 +26138,7 @@ sha256 = "1zrs1gk95mna1kipgrq8mfhk0gqimvsb4b583f900fh86019nn1l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-bibtex"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-bibtex"; sha256 = "037pqgyyb2grg88yfxx1r8yp4lrgz2fyzz9fbbp34l8s6vk3cp4z"; name = "helm-bibtex"; }; @@ -25876,7 +26151,7 @@ helm-bibtexkey = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-bibtexkey"; - version = "20140214.904"; + version = "20140214.1004"; src = fetchFromGitHub { owner = "kenbeese"; repo = "helm-bibtexkey"; @@ -25884,7 +26159,7 @@ sha256 = "10k7hjfz9jmfpbmsv20jy9vr6fqxx1yp8v115hprqvw057iifsl9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-bibtexkey"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-bibtexkey"; sha256 = "00i7ni4r73mmxavhfcm0fd7jhx6gxvxx7prax1yxmhs46fpz8jwj"; name = "helm-bibtexkey"; }; @@ -25897,7 +26172,7 @@ helm-bind-key = callPackage ({ bind-key, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-bind-key"; - version = "20141108.2315"; + version = "20141109.15"; src = fetchFromGitHub { owner = "myuhe"; repo = "helm-bind-key.el"; @@ -25905,7 +26180,7 @@ sha256 = "1wmcy7q4ys2sf8ya5l4n7a6bq5m9d6m19amjfwkmkh4ajkwl041y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-bind-key"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-bind-key"; sha256 = "1yfj6mmxc165in1i85ccanssch6bg19ib1fcm7sa4i4hv0mgwaid"; name = "helm-bind-key"; }; @@ -25918,7 +26193,7 @@ helm-bm = callPackage ({ bm, cl-lib ? null, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, s }: melpaBuild { pname = "helm-bm"; - version = "20160321.831"; + version = "20160321.931"; src = fetchFromGitHub { owner = "yasuyk"; repo = "helm-bm"; @@ -25926,7 +26201,7 @@ sha256 = "011k37p4vnzm1x8vyairllanvjfknskl20bdfv0glf64xgbdpfil"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-bm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-bm"; sha256 = "1dnlcvn0zv4qv4ii4j0h9r8w6vhi3l0c5aa768kblh5r2rf4bjjh"; name = "helm-bm"; }; @@ -25939,7 +26214,7 @@ helm-bundle-show = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-bundle-show"; - version = "20151221.630"; + version = "20151221.730"; src = fetchFromGitHub { owner = "masutaka"; repo = "emacs-helm-bundle-show"; @@ -25947,7 +26222,7 @@ sha256 = "1j9xmlidipsfbz0kfxwz0c6hi9xsbk36h6i30wqdd0ls0zw5xm30"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-bundle-show"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-bundle-show"; sha256 = "1af5g233kjf04m2fryizk51a1s2mcmj36zip5nyb8skcsfl4riq7"; name = "helm-bundle-show"; }; @@ -25960,7 +26235,7 @@ helm-c-moccur = callPackage ({ color-moccur, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-c-moccur"; - version = "20151230.324"; + version = "20151230.424"; src = fetchFromGitHub { owner = "myuhe"; repo = "helm-c-moccur.el"; @@ -25968,7 +26243,7 @@ sha256 = "0w4svbg32y63v049plvk7djc1m2amjzrr1v979d9s6jbnnpzlb5c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-c-moccur"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-c-moccur"; sha256 = "1i6a4jqjy9amlhdbj5d26wzagndfgszha09vs5qf4760vjl7kn4b"; name = "helm-c-moccur"; }; @@ -25981,7 +26256,7 @@ helm-c-yasnippet = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, yasnippet }: melpaBuild { pname = "helm-c-yasnippet"; - version = "20151231.210"; + version = "20151231.310"; src = fetchFromGitHub { owner = "emacs-jp"; repo = "helm-c-yasnippet"; @@ -25989,7 +26264,7 @@ sha256 = "03c4w34r0q7xpz1ny8dya8f96rhjpc9r2c24n7vg9x6x4i2wl204"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-c-yasnippet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-c-yasnippet"; sha256 = "0jwj4giv6lxb3h7vqqb2alkwq5kp0shy2nraik33956p4l8dfs90"; name = "helm-c-yasnippet"; }; @@ -26002,7 +26277,7 @@ helm-chrome = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-chrome"; - version = "20151222.1958"; + version = "20151222.2058"; src = fetchFromGitHub { owner = "kawabata"; repo = "helm-chrome"; @@ -26010,7 +26285,7 @@ sha256 = "0wkskm0d1mvh49l65xg6pgwd7yxy02llflkzx59ayqv4wjvsyayb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-chrome"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-chrome"; sha256 = "0p3n2pna83mp4ym8x69lk4r3q4apbj5v2blg2mwcsd9zij153nxz"; name = "helm-chrome"; }; @@ -26023,7 +26298,7 @@ helm-chronos = callPackage ({ chronos, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-chronos"; - version = "20150528.1536"; + version = "20150528.1636"; src = fetchFromGitHub { owner = "dxknight"; repo = "helm-chronos"; @@ -26031,7 +26306,7 @@ sha256 = "1dmj4f8pris1i7wvfplp4dbnyfm403l6rplxfrfi0cd9afg7m68i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-chronos"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-chronos"; sha256 = "1a65b680741cx4cyyizyl2c3bss36x3j2m9sh9hjc87xrzarg0s3"; name = "helm-chronos"; }; @@ -26044,7 +26319,7 @@ helm-cider-history = callPackage ({ cider, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-cider-history"; - version = "20150719.1620"; + version = "20150719.1720"; src = fetchFromGitHub { owner = "Kungi"; repo = "helm-cider-history"; @@ -26052,7 +26327,7 @@ sha256 = "18j4ikb3q8ygdq74zqzm83wgb39x7w209n3186mm051n8lfmkaif"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-cider-history"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-cider-history"; sha256 = "12l8jyl743zqk8m2xzcz75y1ybdkbkvcbvfkn1k88k09s31kdq4h"; name = "helm-cider-history"; }; @@ -26065,7 +26340,7 @@ helm-circe = callPackage ({ circe, cl-lib ? null, emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-circe"; - version = "20160207.52"; + version = "20160207.152"; src = fetchFromGitHub { owner = "lesharris"; repo = "helm-circe"; @@ -26073,7 +26348,7 @@ sha256 = "1gwg299s8ps0q97iw6p515gwn73rjk1icgl3j7cj1s143njjg122"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-circe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-circe"; sha256 = "12jfzg03573lih2aapvv5h2mi3pwqc9nrmv538ivjywix5117k3v"; name = "helm-circe"; }; @@ -26086,7 +26361,7 @@ helm-clojuredocs = callPackage ({ edn, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-clojuredocs"; - version = "20160405.223"; + version = "20160405.323"; src = fetchFromGitHub { owner = "mbuczko"; repo = "helm-clojuredocs"; @@ -26094,7 +26369,7 @@ sha256 = "015b8zxh91ljhqvn6z43gy08di54xcw9skw0i7frj3d7gk984qhl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-clojuredocs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-clojuredocs"; sha256 = "0yz0wlyay9286by8i30gs3ispswq8ayqlcnna1s7bgspjvb7scmk"; name = "helm-clojuredocs"; }; @@ -26107,7 +26382,7 @@ helm-cmd-t = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "helm-cmd-t"; - version = "20150823.1357"; + version = "20150823.1457"; src = fetchFromGitHub { owner = "emacs-helm"; repo = "helm-cmd-t"; @@ -26115,7 +26390,7 @@ sha256 = "10cp21v8vwgp8hv2rkdn9x8v2n8wqbphgslb561rlwc2rfpvzqvs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-cmd-t"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-cmd-t"; sha256 = "1w870ldq029wgicgv4cqm31zw2i8vkap3m9hsr9d0i3gv2virnc6"; name = "helm-cmd-t"; }; @@ -26128,7 +26403,7 @@ helm-codesearch = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, s }: melpaBuild { pname = "helm-codesearch"; - version = "20160123.513"; + version = "20160123.613"; src = fetchFromGitHub { owner = "youngker"; repo = "helm-codesearch.el"; @@ -26136,7 +26411,7 @@ sha256 = "05nvbwz3inbmfj88am69sz032wsj8jkfpjk5drgfijw98il9blk9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-codesearch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-codesearch"; sha256 = "1v21zwcyx73bc1lcfk60v8xim31bwdk4p06g9i4qag3cijdlli9q"; name = "helm-codesearch"; }; @@ -26149,7 +26424,7 @@ helm-commandlinefu = callPackage ({ emacs, fetchFromGitHub, fetchurl, helm, json ? null, let-alist, lib, melpaBuild }: melpaBuild { pname = "helm-commandlinefu"; - version = "20150611.45"; + version = "20150611.145"; src = fetchFromGitHub { owner = "xuchunyang"; repo = "helm-commandlinefu"; @@ -26157,7 +26432,7 @@ sha256 = "0fxrmvb64lav4aqs61z3a4d2mcp9s2nw7fvysyjn0r1291pkzk9j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-commandlinefu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-commandlinefu"; sha256 = "150nqib0sr4n35vdj1xrxcja8gkv3chzhdbgkjxqgkz2yq10xxnd"; name = "helm-commandlinefu"; }; @@ -26170,7 +26445,7 @@ helm-company = callPackage ({ company, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-company"; - version = "20151216.209"; + version = "20151216.309"; src = fetchFromGitHub { owner = "manuel-uberti"; repo = "helm-company"; @@ -26178,7 +26453,7 @@ sha256 = "189qmc6fdj5a01a7w45r0qpn9qjf2q9g83qic9sgnrccc841zpyg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-company"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-company"; sha256 = "1pbsg7zrz447siwd8pasw2hz5z21wa1xpqs5nrylhbghsk076ld3"; name = "helm-company"; }; @@ -26191,15 +26466,15 @@ helm-core = callPackage ({ async, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "helm-core"; - version = "20160420.155"; + version = "20160505.259"; src = fetchFromGitHub { owner = "emacs-helm"; repo = "helm"; - rev = "3099cfca9e35b3df9bd1e80057f96246ef2e1705"; - sha256 = "1xspnqdg18rzjnd55vawcj74ypx430lzj19i70bhgzghb22pw3rl"; + rev = "2227344374e3113b149da84a65591ec673520777"; + sha256 = "0qbffdhlvcrslw1f1ngjw3wgydlxprj1ab8wf2ssh0vqdcarfs2v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-core"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-core"; sha256 = "1dyv8rv1728vwsp6vfdq954sp878jbp3srbfxl9gsgjnv1l6vjda"; name = "helm-core"; }; @@ -26212,7 +26487,7 @@ helm-cscope = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, xcscope }: melpaBuild { pname = "helm-cscope"; - version = "20150609.849"; + version = "20150609.949"; src = fetchFromGitHub { owner = "alpha22jp"; repo = "helm-cscope.el"; @@ -26220,7 +26495,7 @@ sha256 = "0nhi8xhcf7qpsibpyy5v364xx7lqkhskzai7awkg0xcdq8b5090x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-cscope"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-cscope"; sha256 = "13a76wc1ia4c0v701dxqc9ycbb43d5k09m5pfsvs8mccisfzk9y4"; name = "helm-cscope"; }; @@ -26233,7 +26508,7 @@ helm-css-scss = callPackage ({ emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-css-scss"; - version = "20140626.1925"; + version = "20140626.2025"; src = fetchFromGitHub { owner = "ShingoFukuyama"; repo = "helm-css-scss"; @@ -26241,7 +26516,7 @@ sha256 = "01a3pahpsxb7d15dkfgxypl7gzqb4dy4f36lmid1w77b9rhs6nph"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-css-scss"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-css-scss"; sha256 = "0iflwl0rijbkx1b7i1s7984dw7sz1wa1cb74fqij0kcn76kal7ak"; name = "helm-css-scss"; }; @@ -26254,7 +26529,7 @@ helm-ctest = callPackage ({ dash, fetchFromGitHub, fetchurl, helm-core, lib, melpaBuild, s }: melpaBuild { pname = "helm-ctest"; - version = "20150823.608"; + version = "20150823.708"; src = fetchFromGitHub { owner = "danlamanna"; repo = "helm-ctest"; @@ -26262,7 +26537,7 @@ sha256 = "18d96alik66nw3rkk7k8740b4rx2bnh3pwn27ahpgj5yf51wm0ry"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-ctest"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-ctest"; sha256 = "1mphc9fsclbw19p5i1xf52qg6ljljbajvbcsl95hisrnvhg89vpm"; name = "helm-ctest"; }; @@ -26275,7 +26550,7 @@ helm-dash = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-dash"; - version = "20160416.1908"; + version = "20160416.2008"; src = fetchFromGitHub { owner = "areina"; repo = "helm-dash"; @@ -26283,7 +26558,7 @@ sha256 = "03h9p3z6n9mi6hld86i6wj01glx4p058iifygrph0vvzczisixcq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-dash"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-dash"; sha256 = "1cnxssj2ilszq94v5cc4ixblar1nlilv9askqjp9gfnkj2z1n9cy"; name = "helm-dash"; }; @@ -26296,7 +26571,7 @@ helm-descbinds = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-descbinds"; - version = "20160108.2147"; + version = "20160108.2247"; src = fetchFromGitHub { owner = "emacs-helm"; repo = "helm-descbinds"; @@ -26304,7 +26579,7 @@ sha256 = "0y0xxs67bzh6j68j3f4zxzrl2ij5g1qvvxqklw7nz305xliis29g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-descbinds"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-descbinds"; sha256 = "1890ss4pimjxskzzllf57fg07xbs8zqcrp6r8r6x989llrfvd1h7"; name = "helm-descbinds"; }; @@ -26317,7 +26592,7 @@ helm-describe-modes = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-describe-modes"; - version = "20160211.2318"; + version = "20160212.18"; src = fetchFromGitHub { owner = "emacs-helm"; repo = "helm-describe-modes"; @@ -26325,7 +26600,7 @@ sha256 = "0li9bi1lm5ldwfpvzahxp7hyfd94jr1kl43rprx0myxb016yk2p5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-describe-modes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-describe-modes"; sha256 = "0ajy9kwspm8rzafl0df57fad5867s86yjqj29shznqb12r91lpqb"; name = "helm-describe-modes"; }; @@ -26338,7 +26613,7 @@ helm-dictionary = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-dictionary"; - version = "20160408.1145"; + version = "20160408.1245"; src = fetchFromGitHub { owner = "emacs-helm"; repo = "helm-dictionary"; @@ -26346,7 +26621,7 @@ sha256 = "0v5n46vkbhzsasz41dsllpmkn71y124zz9ycpdql4wsl3mlkhlcs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-dictionary"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-dictionary"; sha256 = "1pak8qn0qvbzyclhzvr5ka3pl370i4kiykypfkwbfgvqqwczhl3n"; name = "helm-dictionary"; }; @@ -26359,7 +26634,7 @@ helm-dired-recent-dirs = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-dired-recent-dirs"; - version = "20131228.814"; + version = "20131228.914"; src = fetchFromGitHub { owner = "akisute3"; repo = "helm-dired-recent-dirs"; @@ -26367,7 +26642,7 @@ sha256 = "14sifdrfg8ydvi9mj8qm2bfphbffglxrkb5ky4q5b3j96bn8v110"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-dired-recent-dirs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-dired-recent-dirs"; sha256 = "0kh0n5674ksswjzi9gji2qmx8v8g0axx8xbi0m3zby9nwcpv4qzs"; name = "helm-dired-recent-dirs"; }; @@ -26380,7 +26655,7 @@ helm-dirset = callPackage ({ cl-lib ? null, f, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, s }: melpaBuild { pname = "helm-dirset"; - version = "20151208.1812"; + version = "20151208.1912"; src = fetchFromGitHub { owner = "k1LoW"; repo = "helm-dirset"; @@ -26388,7 +26663,7 @@ sha256 = "183vj5yi575aqkak19hl8k4mw38r0ki9p1fnpa8nny2srjyy34yb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-dirset"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-dirset"; sha256 = "0vng52axp7r01s00cqbbclbm5bx1qbhmlrx9h9kj7smx1al4daml"; name = "helm-dirset"; }; @@ -26401,7 +26676,7 @@ helm-emmet = callPackage ({ emmet-mode, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-emmet"; - version = "20131014.129"; + version = "20131014.229"; src = fetchFromGitHub { owner = "yasuyk"; repo = "helm-emmet"; @@ -26409,7 +26684,7 @@ sha256 = "0c3mn5w98phsv7gsljyp5vxxmr2w6n3nczh5zm4hcpwsra3wh1v9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-emmet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-emmet"; sha256 = "1dkn9qa3dv2im11lm19wfh5jwwwp42sv7jc0p6qg35rhzwdpfg03"; name = "helm-emmet"; }; @@ -26422,7 +26697,7 @@ helm-emms = callPackage ({ cl-lib ? null, emacs, emms, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-emms"; - version = "20151001.1528"; + version = "20151001.1628"; src = fetchFromGitHub { owner = "emacs-helm"; repo = "helm-emms"; @@ -26430,7 +26705,7 @@ sha256 = "0330s07b41nw9q32xhjdl7yw83p8ikj6b2qkir3y0jyx16gk10dl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-emms"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-emms"; sha256 = "1vq7cxnacmhyczsa4s5h1nnzc08m66harfnxsqxyrdsnggv9hbf5"; name = "helm-emms"; }; @@ -26443,7 +26718,7 @@ helm-filesets = callPackage ({ fetchFromGitHub, fetchurl, filesets-plus, helm, lib, melpaBuild }: melpaBuild { pname = "helm-filesets"; - version = "20140929.1335"; + version = "20140929.1435"; src = fetchFromGitHub { owner = "gcla"; repo = "helm-filesets"; @@ -26451,7 +26726,7 @@ sha256 = "00yhmpv5xjlw1gwbcrznz83gkaby8zlqv74d3p7plca2cwjll1g9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-filesets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-filesets"; sha256 = "1yhhchksi0r4r5c5q1mggz2hykkvk93baq91b5hkaflqi30d1v8f"; name = "helm-filesets"; }; @@ -26464,7 +26739,7 @@ helm-firefox = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-firefox"; - version = "20160419.758"; + version = "20160419.858"; src = fetchFromGitHub { owner = "emacs-helm"; repo = "helm-firefox"; @@ -26472,7 +26747,7 @@ sha256 = "04zvpdb6hrkss6mvvl2676b8blvykf6w6ks03ljrfb7sdw9d17ll"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-firefox"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-firefox"; sha256 = "0677nj0zsk11vvp3q3xl9nk8dhz3ki9yl3kfb57wgnmprp109wgs"; name = "helm-firefox"; }; @@ -26485,7 +26760,7 @@ helm-flx = callPackage ({ emacs, fetchFromGitHub, fetchurl, flx, helm, lib, melpaBuild }: melpaBuild { pname = "helm-flx"; - version = "20160227.1852"; + version = "20160227.1952"; src = fetchFromGitHub { owner = "PythonNut"; repo = "helm-flx"; @@ -26493,7 +26768,7 @@ sha256 = "0mrck7qbqjqz5kpih3zb1yn2chjgv5ghrqc5cp80kmsmxasvk8zw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-flx"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-flx"; sha256 = "03vxr5f5m4s6k6rm0976w8h3s4c3b5mrdqgmkd281hmyh9q3cslq"; name = "helm-flx"; }; @@ -26506,7 +26781,7 @@ helm-flycheck = callPackage ({ dash, fetchFromGitHub, fetchurl, flycheck, helm, lib, melpaBuild }: melpaBuild { pname = "helm-flycheck"; - version = "20160319.117"; + version = "20160319.217"; src = fetchFromGitHub { owner = "yasuyk"; repo = "helm-flycheck"; @@ -26514,7 +26789,7 @@ sha256 = "062s08k8v657fpkqvdspv32awvj7dq929ks27w29k3kbzlqlrihp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-flycheck"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-flycheck"; sha256 = "038f9294qc0jnkzrrjxm97hyhwa4sca3wdsjbaya50cf0g4cmk7b"; name = "helm-flycheck"; }; @@ -26527,7 +26802,7 @@ helm-flymake = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-flymake"; - version = "20130717.44"; + version = "20130717.144"; src = fetchFromGitHub { owner = "tam17aki"; repo = "helm-flymake"; @@ -26535,7 +26810,7 @@ sha256 = "1liaid4l4x8sb133lj944gwwpqngsf8hzibdwyfdmsi4m4abh73h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-flymake"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-flymake"; sha256 = "0h87yd56nhxpahrcpk6hin142hzv3sdr5bvz0injbv8a2lwnny3b"; name = "helm-flymake"; }; @@ -26548,7 +26823,7 @@ helm-flyspell = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-flyspell"; - version = "20151026.1112"; + version = "20151026.1212"; src = fetchFromGitHub { owner = "pronobis"; repo = "helm-flyspell"; @@ -26556,7 +26831,7 @@ sha256 = "1k7invgzqrcm11plyvinqwf98yxibr8i4r9yw3csfsicc8b6if59"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-flyspell"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-flyspell"; sha256 = "1g6xry2y6396pg7rg8hc0l84z5r3j2df7dpd1jgffxa8xa3i661f"; name = "helm-flyspell"; }; @@ -26569,7 +26844,7 @@ helm-fuzzier = callPackage ({ emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-fuzzier"; - version = "20160220.240"; + version = "20160220.340"; src = fetchFromGitHub { owner = "EphramPerdition"; repo = "helm-fuzzier"; @@ -26577,7 +26852,7 @@ sha256 = "15am2dpva3fzj68sw9n4mpdxkw75l97l1k2j9vlvi2lbqk1h46pi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-fuzzier"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-fuzzier"; sha256 = "0qdgf0phs3iz29zj3qjhdgb3i4xvf5r2vi0709pwxx2s6r13pvcc"; name = "helm-fuzzier"; }; @@ -26590,7 +26865,7 @@ helm-fuzzy-find = callPackage ({ emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-fuzzy-find"; - version = "20150613.549"; + version = "20150613.649"; src = fetchFromGitHub { owner = "xuchunyang"; repo = "helm-fuzzy-find"; @@ -26598,7 +26873,7 @@ sha256 = "1yxnmxq6ppfgwxrk5ryc5xfn82kjf4j65j14hy077gphr0q61q6a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-fuzzy-find"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-fuzzy-find"; sha256 = "0lczlrpd5jy2vhy9jl3rjcdyiwr136spqm8k2rj8m9s8wpn0v75i"; name = "helm-fuzzy-find"; }; @@ -26611,7 +26886,7 @@ helm-ghc = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, ghc, helm, lib, melpaBuild }: melpaBuild { pname = "helm-ghc"; - version = "20141105.859"; + version = "20141105.959"; src = fetchFromGitHub { owner = "david-christiansen"; repo = "helm-ghc"; @@ -26619,7 +26894,7 @@ sha256 = "16p1gisbza48qircsvrwx020n96ss1c6s68d7cgqqfc0bf2467is"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-ghc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-ghc"; sha256 = "1q5ia8sgpflv2hhvw7hjpkfb25vmrjwlrqz1f9qj2qgmki5mix2d"; name = "helm-ghc"; }; @@ -26632,7 +26907,7 @@ helm-ghq = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-ghq"; - version = "20160203.927"; + version = "20160203.1027"; src = fetchFromGitHub { owner = "masutaka"; repo = "emacs-helm-ghq"; @@ -26640,7 +26915,7 @@ sha256 = "0y379qap3mssz9nslb08vfzq5ihqcm156fbx0dszgz9d6xgkpdhw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-ghq"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-ghq"; sha256 = "14f3cbsj7jhlhrp561d8pasllnx1cmi7jk6v2fja7ghzj76dnvq6"; name = "helm-ghq"; }; @@ -26653,7 +26928,7 @@ helm-git = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "helm-git"; - version = "20120630.1603"; + version = "20120630.1703"; src = fetchFromGitHub { owner = "maio"; repo = "helm-git"; @@ -26661,7 +26936,7 @@ sha256 = "1yfy4a52hx44r32i0b75bka8gfcn5lp61jl86lzrsi2cr9wg10pn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-git"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-git"; sha256 = "1ib73p7cmkw96csxxpkqwn6m60k1xrd46z6vyp29gj85cs4fpsb8"; name = "helm-git"; }; @@ -26674,7 +26949,7 @@ helm-git-files = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-git-files"; - version = "20141212.717"; + version = "20141212.817"; src = fetchFromGitHub { owner = "kenbeese"; repo = "helm-git-files"; @@ -26682,7 +26957,7 @@ sha256 = "157b525h0kiaknn12fsw67fg26lzb20apx8sssmvlcicqcd51iaw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-git-files"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-git-files"; sha256 = "02109r956nc1dmqh4v082vkr9wdixh03xhl7icwkzl7ipr5453s6"; name = "helm-git-files"; }; @@ -26695,7 +26970,7 @@ helm-git-grep = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-git-grep"; - version = "20160408.2152"; + version = "20160408.2252"; src = fetchFromGitHub { owner = "yasuyk"; repo = "helm-git-grep"; @@ -26703,7 +26978,7 @@ sha256 = "1b29g71a2hwr83j6mamlzrczz5sydvds23wf50ja7svy2qvzyvp3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-git-grep"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-git-grep"; sha256 = "1ww6a4q78w5hnwikq7y93ic2b7x070c27r946lh6p8cz1k4b8vqi"; name = "helm-git-grep"; }; @@ -26716,7 +26991,7 @@ helm-github-stars = callPackage ({ emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-github-stars"; - version = "20150625.1723"; + version = "20150625.1823"; src = fetchFromGitHub { owner = "Sliim"; repo = "helm-github-stars"; @@ -26724,7 +26999,7 @@ sha256 = "1sbhh3dmb47sy3r2iw6vmvbq5bpjac4xdg8i5a0m0c392a38nfqn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-github-stars"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-github-stars"; sha256 = "1r4mc4v71171sq9rbbhm346s92fb7jnvvl91y2q52jqmrnzzl9zy"; name = "helm-github-stars"; }; @@ -26737,7 +27012,7 @@ helm-gitignore = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, gitignore-mode, helm, lib, melpaBuild, request }: melpaBuild { pname = "helm-gitignore"; - version = "20150517.2256"; + version = "20150517.2356"; src = fetchFromGitHub { owner = "jupl"; repo = "helm-gitignore"; @@ -26745,7 +27020,7 @@ sha256 = "0pd755s5zcg8y1svxj3g8m0znkp6cyx5y6lsj4lxczrk7lynzc3g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-gitignore"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-gitignore"; sha256 = "01l7mx8g1m5qnwz973hzrgds4gywm56jgl4hcdxqvpi1n56md3x6"; name = "helm-gitignore"; }; @@ -26758,7 +27033,7 @@ helm-gitlab = callPackage ({ dash, fetchFromGitHub, fetchurl, gitlab, helm, lib, melpaBuild, s }: melpaBuild { pname = "helm-gitlab"; - version = "20150604.233"; + version = "20150604.333"; src = fetchFromGitHub { owner = "nlamirault"; repo = "emacs-gitlab"; @@ -26766,7 +27041,7 @@ sha256 = "00mma30r7ixbrxjmmddz4klh517fcr3yn6ss4zw33fh2hzj3w6rl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-gitlab"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-gitlab"; sha256 = "010ihx3yddhb8j3jqcssc49qnf3i7xlz0s380mpgrdxgz6yahsmd"; name = "helm-gitlab"; }; @@ -26779,7 +27054,7 @@ helm-go-package = callPackage ({ deferred, fetchFromGitHub, fetchurl, go-mode, helm, lib, melpaBuild }: melpaBuild { pname = "helm-go-package"; - version = "20160321.315"; + version = "20160321.415"; src = fetchFromGitHub { owner = "yasuyk"; repo = "helm-go-package"; @@ -26787,7 +27062,7 @@ sha256 = "0iyfn58h50xms5915i29b54wfyxh6vi9vy3v3r91g6dwlxrjibka"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-go-package"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-go-package"; sha256 = "102yhn1xg83l67yaq3brn35a03fkvqqhad10rq0h39n4i1slq3z6"; name = "helm-go-package"; }; @@ -26800,7 +27075,7 @@ helm-google = callPackage ({ fetchFromGitHub, fetchurl, google, helm, lib, melpaBuild }: melpaBuild { pname = "helm-google"; - version = "20160226.1420"; + version = "20160226.1520"; src = fetchFromGitHub { owner = "steckerhalter"; repo = "helm-google"; @@ -26808,7 +27083,7 @@ sha256 = "1addskcm325lb9plcbxfp1f6fsj3dcccb87gzihrp7ahiy7pmvih"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-google"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-google"; sha256 = "0d1y7232rm888car3h40fba1m1pna2nh1a3fcvpra74igwarfi32"; name = "helm-google"; }; @@ -26821,7 +27096,7 @@ helm-grepint = callPackage ({ emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-grepint"; - version = "20160303.1426"; + version = "20160303.1526"; src = fetchFromGitHub { owner = "kopoli"; repo = "helm-grepint"; @@ -26829,7 +27104,7 @@ sha256 = "1f88vd31fc7ksrhlc72i6c0wbbz62lxw9yakxdk0m72pfz345mz2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-grepint"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-grepint"; sha256 = "00wr3wk41sbpamxbjkqlby49g8y5z9n79p51sg7ginban4qy91gf"; name = "helm-grepint"; }; @@ -26842,7 +27117,7 @@ helm-growthforecast = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-growthforecast"; - version = "20140119.2144"; + version = "20140119.2244"; src = fetchFromGitHub { owner = "daic-h"; repo = "helm-growthforecast"; @@ -26850,7 +27125,7 @@ sha256 = "0p0mk44y2z875ra8mzcb6vlf4rbkiq9yank5hdxvg2x2sxsaambk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-growthforecast"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-growthforecast"; sha256 = "0716rhs5dam6p8ym83vy19svl6jr49lcfgb29mm3cqi9jcch3ckh"; name = "helm-growthforecast"; }; @@ -26863,7 +27138,7 @@ helm-gtags = callPackage ({ emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-gtags"; - version = "20160417.755"; + version = "20160417.855"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-helm-gtags"; @@ -26871,7 +27146,7 @@ sha256 = "0zyspn9rqfs3hkq8qx0q1w5qiv30ignbmycyv0vn3a6q7a5fsnhx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-gtags"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-gtags"; sha256 = "1kbpfqhhbxmp3f70h91x2fws9mhx87zx4nzjjl29lpl93vf8xckl"; name = "helm-gtags"; }; @@ -26884,7 +27159,7 @@ helm-hatena-bookmark = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-hatena-bookmark"; - version = "20151221.620"; + version = "20151221.720"; src = fetchFromGitHub { owner = "masutaka"; repo = "emacs-helm-hatena-bookmark"; @@ -26892,7 +27167,7 @@ sha256 = "189dv3qqqmfyhsqa1n52cgcn1xv7k49f92ndn43y2v20234nhl9f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-hatena-bookmark"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-hatena-bookmark"; sha256 = "14091zrp4vj7752rb5s3pkyvrrsdl7iaj3q9ys8rjmbsjwcv30id"; name = "helm-hatena-bookmark"; }; @@ -26905,7 +27180,7 @@ helm-hayoo = callPackage ({ fetchFromGitHub, fetchurl, haskell-mode, helm, json ? null, lib, melpaBuild }: melpaBuild { pname = "helm-hayoo"; - version = "20151014.151"; + version = "20151014.251"; src = fetchFromGitHub { owner = "markus1189"; repo = "helm-hayoo"; @@ -26913,7 +27188,7 @@ sha256 = "08pfzs030d8g5s7vkpgicz4srp5cr3xpd84lhrr24ncrhbszxar9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-hayoo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-hayoo"; sha256 = "0xdvl6q2rpfsma4hx8m4snbd05s4z0bi8psdalixywlp5s4vzr32"; name = "helm-hayoo"; }; @@ -26926,7 +27201,7 @@ helm-helm-commands = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-helm-commands"; - version = "20130902.1248"; + version = "20130902.1348"; src = fetchFromGitHub { owner = "vapniks"; repo = "helm-helm-commands"; @@ -26934,7 +27209,7 @@ sha256 = "05ksfx54ar2j4mypzwh0gfir8r26s4f1i4xw319q5pa1y2100cpn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-helm-commands"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-helm-commands"; sha256 = "0dq9p37i5rrp2nb1vhqzzqfmdg11va2xr3yz8hdxpwykm1ldqdcf"; name = "helm-helm-commands"; }; @@ -26947,7 +27222,7 @@ helm-hoogle = callPackage ({ emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-hoogle"; - version = "20150919.232"; + version = "20150919.332"; src = fetchFromGitHub { owner = "jwiegley"; repo = "helm-hoogle"; @@ -26955,7 +27230,7 @@ sha256 = "1l85kip4zd08d38sk7cdafmx0v68dh419cs86g7x0mgi0wn00kfc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-hoogle"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-hoogle"; sha256 = "0vhk4vwqfirdm5d0pppplfpqyc2sfj6jybhzp9n1w8xgrh2d1c0x"; name = "helm-hoogle"; }; @@ -26968,7 +27243,7 @@ helm-idris = callPackage ({ fetchFromGitHub, fetchurl, helm, idris-mode, lib, melpaBuild }: melpaBuild { pname = "helm-idris"; - version = "20141202.1157"; + version = "20141202.1257"; src = fetchFromGitHub { owner = "david-christiansen"; repo = "helm-idris"; @@ -26976,7 +27251,7 @@ sha256 = "0128nrhwyzslzl0l7wcjxn3dlx3h1sjmwnbbnp2fj4bjk7chc59q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-idris"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-idris"; sha256 = "1y52675j4kcq14jypxjw1rflxrxwaxyn1n3m613klad55wpfaamf"; name = "helm-idris"; }; @@ -26989,7 +27264,7 @@ helm-img = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-img"; - version = "20151224.1721"; + version = "20151224.1821"; src = fetchFromGitHub { owner = "l3msh0"; repo = "helm-img"; @@ -26997,7 +27272,7 @@ sha256 = "0py4xs27z2jvg99i6qaf2ccz0mvk6bb9cvdyz8v8ngmnj3rw2vla"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-img"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-img"; sha256 = "0sq9l1wgm97ppfc45w3bdcv0qq5m85ygnanv1bdcp8bxbdl4vg0q"; name = "helm-img"; }; @@ -27010,7 +27285,7 @@ helm-img-tiqav = callPackage ({ fetchFromGitHub, fetchurl, helm-img, lib, melpaBuild }: melpaBuild { pname = "helm-img-tiqav"; - version = "20151224.1722"; + version = "20151224.1822"; src = fetchFromGitHub { owner = "l3msh0"; repo = "helm-img-tiqav"; @@ -27018,7 +27293,7 @@ sha256 = "04vdin0n3514c8bycdjrwk3l6pkarrwanlklnm75315b91nkkbcp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-img-tiqav"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-img-tiqav"; sha256 = "1m083hiih2rpyy8i439745mj4ldqy85fpnvms8qnv3042b8x35y0"; name = "helm-img-tiqav"; }; @@ -27031,7 +27306,7 @@ helm-ispell = callPackage ({ fetchFromGitHub, fetchurl, helm-core, lib, melpaBuild }: melpaBuild { pname = "helm-ispell"; - version = "20151231.253"; + version = "20151231.353"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-helm-ispell"; @@ -27039,7 +27314,7 @@ sha256 = "04ddjdia09y14gq4h6m8g6aiwkqvdxp66yjx3j5dh2xrkyxhlxpz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-ispell"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-ispell"; sha256 = "0qyj6whgb2p0v231wn6pvx4awvl1wxppppqqbx5255j8r1f3l1b0"; name = "helm-ispell"; }; @@ -27052,7 +27327,7 @@ helm-itunes = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-itunes"; - version = "20151013.148"; + version = "20151013.248"; src = fetchFromGitHub { owner = "anschwa"; repo = "helm-itunes"; @@ -27060,7 +27335,7 @@ sha256 = "1czgf5br89x192g3lh3x2n998f79hi1n2f309ll264qnl35kv14w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-itunes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-itunes"; sha256 = "0zi4wyraqkjwp954pkng8b23giv1q9618apd9v3dczsvlmaar9hf"; name = "helm-itunes"; }; @@ -27073,7 +27348,7 @@ helm-j-cheatsheet = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-j-cheatsheet"; - version = "20131228.641"; + version = "20131228.741"; src = fetchFromGitHub { owner = "abo-abo"; repo = "helm-j-cheatsheet"; @@ -27081,7 +27356,7 @@ sha256 = "0f2psp7p82sa2fip282w152zc1rjd3l0sna1g7rgwi9x29gcsh0v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-j-cheatsheet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-j-cheatsheet"; sha256 = "0lppzk60vl3ps9fqnrh020awiy5w46gwlb6d91pr889x24ryphmm"; name = "helm-j-cheatsheet"; }; @@ -27094,7 +27369,7 @@ helm-jstack = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-jstack"; - version = "20150602.2322"; + version = "20150603.22"; src = fetchFromGitHub { owner = "raghavgautam"; repo = "helm-jstack"; @@ -27102,7 +27377,7 @@ sha256 = "0vhqpcv8xi6a6q7n6xxahdzijr1x5s40fvk9nc44q55psbyv627g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-jstack"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-jstack"; sha256 = "0giix1rv2jrmdxyg990w90ivl8bvgbbvah6nkpj7gb6vbnm15ldz"; name = "helm-jstack"; }; @@ -27115,7 +27390,7 @@ helm-lobsters = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-lobsters"; - version = "20150213.946"; + version = "20150213.1046"; src = fetchFromGitHub { owner = "julienXX"; repo = "helm-lobste.rs"; @@ -27123,7 +27398,7 @@ sha256 = "0nkmc17ggyfi7iz959mvzh6q7116j44zqwi7ydm9i8z49xfpzafy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-lobsters"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-lobsters"; sha256 = "0dkb78n373kywxj8zba2s5a2g85vx19rdswv9i78xjwv1lqh8cpp"; name = "helm-lobsters"; }; @@ -27136,7 +27411,7 @@ helm-ls-git = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-ls-git"; - version = "20160407.2340"; + version = "20160408.40"; src = fetchFromGitHub { owner = "emacs-helm"; repo = "helm-ls-git"; @@ -27144,7 +27419,7 @@ sha256 = "0yridy54p53zps33766hl7p2hq5pc4vxm08rb5vzbjw84vwaq07b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-ls-git"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-ls-git"; sha256 = "08rsy9479nk03kinjfkxddrq6wi4sx2a0wrz37cl2q517qi7sibj"; name = "helm-ls-git"; }; @@ -27157,7 +27432,7 @@ helm-ls-hg = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-ls-hg"; - version = "20150909.43"; + version = "20150909.143"; src = fetchFromGitHub { owner = "emacs-helm"; repo = "helm-ls-hg"; @@ -27165,7 +27440,7 @@ sha256 = "1msrsqiwk7bg5gry5cia8a6c7ifymfyn738hk8g2qwzzw4vkxxcs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-ls-hg"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-ls-hg"; sha256 = "0ca0xn7n8bagxb504xgkcv04rpm1vxhx2m77biqrx5886pwl25bh"; name = "helm-ls-hg"; }; @@ -27178,14 +27453,14 @@ helm-ls-svn = callPackage ({ cl-lib ? null, emacs, fetchsvn, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-ls-svn"; - version = "20150717.239"; + version = "20150717.339"; src = fetchsvn { url = "https://svn.macports.org/repository/macports/users/chunyang/helm-ls-svn.el"; - rev = "148084"; + rev = "148412"; sha256 = "0b7gah21rkfd43mb89lrwaqrrwq646abh7wi4q74sx796gmpz4dz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-ls-svn"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-ls-svn"; sha256 = "08mwzi340akw4ar20by0q981mzmzvf0wz3mn738q4inn2kqgs60d"; name = "helm-ls-svn"; }; @@ -27198,7 +27473,7 @@ helm-make = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild, projectile }: melpaBuild { pname = "helm-make"; - version = "20160331.954"; + version = "20160331.1054"; src = fetchFromGitHub { owner = "abo-abo"; repo = "helm-make"; @@ -27206,7 +27481,7 @@ sha256 = "1zxahr48s17di8mcy2sxvy4006ch9vwbvkbgkxdphijgqz41irqz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-make"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-make"; sha256 = "1r6jjy1rlsii6p6pinbz7h6gcw4vmcycd3vj338bfbnqp5rrf2mc"; name = "helm-make"; }; @@ -27219,7 +27494,7 @@ helm-migemo = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, helm-core, lib, melpaBuild, migemo }: melpaBuild { pname = "helm-migemo"; - version = "20151009.2256"; + version = "20151009.2356"; src = fetchFromGitHub { owner = "emacs-jp"; repo = "helm-migemo"; @@ -27227,7 +27502,7 @@ sha256 = "0gzlprf5js4y3vzkf7si2xc7ai5j97b5cqrs002hyjj5ij4f2vix"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-migemo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-migemo"; sha256 = "1cjvb1lm1fsg5ky63fvrphwl5a7r7xf6qzb4mvl06ikj8hv2h33x"; name = "helm-migemo"; }; @@ -27240,7 +27515,7 @@ helm-mode-manager = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-mode-manager"; - version = "20151124.338"; + version = "20151124.438"; src = fetchFromGitHub { owner = "istib"; repo = "helm-mode-manager"; @@ -27248,7 +27523,7 @@ sha256 = "1lbxb4vnnv6s46m90qihkj99qdbdylwncwaijjfd7i2kap2ayawh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-mode-manager"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-mode-manager"; sha256 = "1w9svq1kyyj8mmljardhbdvykb334nq1y18s956g4rvqyas2ciyd"; name = "helm-mode-manager"; }; @@ -27261,7 +27536,7 @@ helm-mt = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, multi-term }: melpaBuild { pname = "helm-mt"; - version = "20151104.2320"; + version = "20151105.20"; src = fetchFromGitHub { owner = "dfdeshom"; repo = "helm-mt"; @@ -27269,7 +27544,7 @@ sha256 = "09rb8aq7fnf661w3liwbkkaczjph3dzvg26slm9cwcnl7pqnvagl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-mt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-mt"; sha256 = "04hx8cg8wmm2w8g942nc9mvm12ammmjnx4k61ljrq76smd8s3x2a"; name = "helm-mt"; }; @@ -27282,7 +27557,7 @@ helm-mu = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-mu"; - version = "20160404.1053"; + version = "20160404.1153"; src = fetchFromGitHub { owner = "emacs-helm"; repo = "helm-mu"; @@ -27290,7 +27565,7 @@ sha256 = "1q55x1rygqxriwxyp88azfp3phnibjfz9bwq4dwsvqah1zpzdzma"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-mu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-mu"; sha256 = "0pydp6scj5icaqfp3dp5h0q1y2i7z9mfyw1ll6iphsz9qh3x2bj2"; name = "helm-mu"; }; @@ -27303,7 +27578,7 @@ helm-nixos-options = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild, nixos-options }: melpaBuild { pname = "helm-nixos-options"; - version = "20151013.1809"; + version = "20151013.1909"; src = fetchFromGitHub { owner = "travisbhartwell"; repo = "nix-emacs"; @@ -27311,7 +27586,7 @@ sha256 = "1r2qbd19kkqf70gq04jfpsrap75qcy359k3ian9rhapi8cj0n23w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-nixos-options"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-nixos-options"; sha256 = "1nsi4hfw53iwn29fp33dkri1c6w8kdyn4sa0yn2fi6144ilmq933"; name = "helm-nixos-options"; }; @@ -27324,7 +27599,7 @@ helm-notmuch = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild, notmuch }: melpaBuild { pname = "helm-notmuch"; - version = "20160412.1406"; + version = "20160412.1506"; src = fetchFromGitHub { owner = "xuchunyang"; repo = "helm-notmuch"; @@ -27332,7 +27607,7 @@ sha256 = "04c6k1rxdi175kwn146sb2nxd13mvx3irr9fbqykcfv81609kqx3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-notmuch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-notmuch"; sha256 = "1ixdc1ba4ygxl0lpg6ijk06dgj2hfv5p5k6ivq60ss0axyisnnv0"; name = "helm-notmuch"; }; @@ -27345,7 +27620,7 @@ helm-open-github = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, gh, helm-core, lib, melpaBuild }: melpaBuild { pname = "helm-open-github"; - version = "20151226.842"; + version = "20151226.942"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-helm-open-github"; @@ -27353,7 +27628,7 @@ sha256 = "1wkmbc7247f209krvw4dzja3z0wyny12x5yi1cn3fnfh5nx04851"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-open-github"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-open-github"; sha256 = "1wqlwg21s9pjgcrwr8kdrppinmjn235nadkp4003g0md1d64zxpx"; name = "helm-open-github"; }; @@ -27366,7 +27641,7 @@ helm-org-rifle = callPackage ({ dash, emacs, f, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, s }: melpaBuild { pname = "helm-org-rifle"; - version = "20160420.1018"; + version = "20160420.1118"; src = fetchFromGitHub { owner = "alphapapa"; repo = "helm-org-rifle"; @@ -27374,7 +27649,7 @@ sha256 = "0glrbln15wang9n1h76dk19ykcgmc8hwphg1qcmc4fbbcgmh1a1p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-org-rifle"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-org-rifle"; sha256 = "0hx764vql2qgw9i8qrr3kkn23lw6jx3x604dm1y33ig6a15gy3a3"; name = "helm-org-rifle"; }; @@ -27387,7 +27662,7 @@ helm-orgcard = callPackage ({ fetchFromGitHub, fetchurl, helm-core, lib, melpaBuild }: melpaBuild { pname = "helm-orgcard"; - version = "20151001.1024"; + version = "20151001.1124"; src = fetchFromGitHub { owner = "emacs-jp"; repo = "helm-orgcard"; @@ -27395,7 +27670,7 @@ sha256 = "1zyjxrrda7nxxjqczv2p3sfimxy2pq734kf51j6v2y0biclc4bk3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-orgcard"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-orgcard"; sha256 = "1a56y8fny7qxxidc357n7l3yi7h66hidhvwhkam8y5wk6k61460p"; name = "helm-orgcard"; }; @@ -27408,7 +27683,7 @@ helm-package = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-package"; - version = "20151210.248"; + version = "20151210.348"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-helm-package"; @@ -27416,7 +27691,7 @@ sha256 = "14ad0b9d07chabjclffjyvnmrasar1di9wmpzf78bw5yg99cbisw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-package"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-package"; sha256 = "1qab2abx52xcqrnxzl0m3533ngp8m1cqmm3hgpzgx7yfrkanyi4y"; name = "helm-package"; }; @@ -27429,7 +27704,7 @@ helm-pages = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-pages"; - version = "20160321.2113"; + version = "20160321.2213"; src = fetchFromGitHub { owner = "david-christiansen"; repo = "helm-pages"; @@ -27437,7 +27712,7 @@ sha256 = "1dyi3rs72jl7739knnikv8pawam54k0sxz5a4a33i6s2bg3ghxcd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-pages"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-pages"; sha256 = "1v3w8100invb5wsmm3dyl41pjs7s889s3b1rlr6vlcspa1ncv3wj"; name = "helm-pages"; }; @@ -27450,7 +27725,7 @@ helm-perldoc = callPackage ({ cl-lib ? null, deferred, fetchFromGitHub, fetchurl, helm-core, lib, melpaBuild }: melpaBuild { pname = "helm-perldoc"; - version = "20151031.2227"; + version = "20151031.2327"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-helm-perldoc"; @@ -27458,7 +27733,7 @@ sha256 = "13wnagmgicl2mi4iksqckrjbaiz05j9ykbmvj26jy8zcbll5imfs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-perldoc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-perldoc"; sha256 = "1qx0g81qcqanjiz5fxysagjhsxaj31g6nsi2hhdgq4x4nqrlmrhb"; name = "helm-perldoc"; }; @@ -27471,7 +27746,7 @@ helm-proc = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-proc"; - version = "20140504.357"; + version = "20140504.457"; src = fetchFromGitHub { owner = "markus1189"; repo = "helm-proc"; @@ -27479,7 +27754,7 @@ sha256 = "076yhcf447fas14k8gg67rc743x049xf66627sd9lgjv7107r8vr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-proc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-proc"; sha256 = "1bq60giy2bs9m3hlbc5nwvy51702a98s0vqass3b290hdgki4bnx"; name = "helm-proc"; }; @@ -27492,7 +27767,7 @@ helm-project-persist = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild, project-persist }: melpaBuild { pname = "helm-project-persist"; - version = "20151210.943"; + version = "20151210.1043"; src = fetchFromGitHub { owner = "Sliim"; repo = "helm-project-persist"; @@ -27500,7 +27775,7 @@ sha256 = "0j54c1kzsjgr05qx25rg3ylawvyw6n6liypiwaas47vpyfswbxhv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-project-persist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-project-persist"; sha256 = "1n87kn1n3453mpdj6amyrgivslskmnzdafpspvkz7b0smf9mv2ld"; name = "helm-project-persist"; }; @@ -27513,15 +27788,15 @@ helm-projectile = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, projectile }: melpaBuild { pname = "helm-projectile"; - version = "20160330.331"; + version = "20160429.2149"; src = fetchFromGitHub { owner = "bbatsov"; repo = "helm-projectile"; - rev = "87476ab9f5113d6c4e5de9920911b951b4092c19"; - sha256 = "09sw0mhsi5ifcwa3ldx9hgybvmv1xwvxh7sm57pvywaw77vg8k95"; + rev = "228c57e80569e5aa144b4d81d09c41afb0131bb3"; + sha256 = "0wspzrzxd9qcpn686crxic85grxhx25hmswhkkll3h7lzczixzvh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-projectile"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-projectile"; sha256 = "18y7phrvbpdi3cnghwyhh0v1bwm95nwq1lymzf8lrcbmrwcvh36a"; name = "helm-projectile"; }; @@ -27534,7 +27809,7 @@ helm-prosjekt = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild, prosjekt }: melpaBuild { pname = "helm-prosjekt"; - version = "20140129.117"; + version = "20140129.217"; src = fetchFromGitHub { owner = "abingham"; repo = "prosjekt"; @@ -27542,7 +27817,7 @@ sha256 = "1m8zvrv5aws7b0dffk8y6b5mncdk2c4k90mx69jys10fs0gc5hb3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-prosjekt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-prosjekt"; sha256 = "019rya3bf13cnval8iz680wby3sqlmqg4nbn0a13l1pkhlnv9fvm"; name = "helm-prosjekt"; }; @@ -27555,7 +27830,7 @@ helm-pt = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-pt"; - version = "20160214.1742"; + version = "20160214.1842"; src = fetchFromGitHub { owner = "ralesi"; repo = "helm-pt"; @@ -27563,7 +27838,7 @@ sha256 = "03ys40rr0pvgp35j5scw9c28j184f1c9m58a3x0c8f0lgyfpssjk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-pt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-pt"; sha256 = "1imhy0bsm9aldv0pvf88280qdya01lznxpx5gi5wffhrz17yh4pi"; name = "helm-pt"; }; @@ -27576,7 +27851,7 @@ helm-purpose = callPackage ({ emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, window-purpose }: melpaBuild { pname = "helm-purpose"; - version = "20160218.1209"; + version = "20160218.1309"; src = fetchFromGitHub { owner = "bmag"; repo = "helm-purpose"; @@ -27584,7 +27859,7 @@ sha256 = "1lxknzjfhl6irrspynlkc1dp02s0byp94y4qp69gcl9sla9262ip"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-purpose"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-purpose"; sha256 = "0am8fy7ihk4hv07a6bnk9mwy986h6i6qxwpdmfhajzga71ixchg6"; name = "helm-purpose"; }; @@ -27597,7 +27872,7 @@ helm-pydoc = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, helm-core, lib, melpaBuild }: melpaBuild { pname = "helm-pydoc"; - version = "20151008.924"; + version = "20151008.1024"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-helm-pydoc"; @@ -27605,7 +27880,7 @@ sha256 = "0admgfy0p13nilb4fi3dq8pm48w1fib8h8avi7h9ybi9k5h6x4ii"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-pydoc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-pydoc"; sha256 = "1sh7gqqiwk85kx89l1sihlkb8ff1g9n460nwj1y1bsrpfl6if4j7"; name = "helm-pydoc"; }; @@ -27615,10 +27890,31 @@ license = lib.licenses.free; }; }) {}; + helm-qiita = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: + melpaBuild { + pname = "helm-qiita"; + version = "20160506.112"; + src = fetchFromGitHub { + owner = "masutaka"; + repo = "emacs-helm-qiita"; + rev = "4ddd4039003ac3849b6a894bafdbf6ffdd11180a"; + sha256 = "1l2nwv6dgnd85w25ps5gnvjsvlirxx3jrp48cz1far11la8pjl4l"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-qiita"; + sha256 = "1iz2w1901zz3zk9zazikmnkzng5klnvqn4ph1id7liksrcdpdmpm"; + name = "helm-qiita"; + }; + packageRequires = [ cl-lib helm ]; + meta = { + homepage = "https://melpa.org/#/helm-qiita"; + license = lib.licenses.free; + }; + }) {}; helm-rails = callPackage ({ fetchFromGitHub, fetchurl, helm, inflections, lib, melpaBuild }: melpaBuild { pname = "helm-rails"; - version = "20130424.1019"; + version = "20130424.1119"; src = fetchFromGitHub { owner = "asok"; repo = "helm-rails"; @@ -27626,7 +27922,7 @@ sha256 = "1a26r21jvgzk21vh3mf29s1dhvvv70jh860zaq9ihrpfrrl91158"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-rails"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-rails"; sha256 = "1iihfsmnkpfp08pldghf3w5k8v5dlmy5ns0l4niwdwp5w8lyjcd6"; name = "helm-rails"; }; @@ -27639,7 +27935,7 @@ helm-rb = callPackage ({ fetchFromGitHub, fetchurl, helm, helm-ag-r, lib, melpaBuild }: melpaBuild { pname = "helm-rb"; - version = "20131123.1039"; + version = "20131123.1139"; src = fetchFromGitHub { owner = "yuutayamada"; repo = "helm-rb"; @@ -27647,7 +27943,7 @@ sha256 = "1b74jsr28ldz80mrqz3d1bmykpcprdbhf3fzhc0awd5i5xdnfaid"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-rb"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-rb"; sha256 = "14pkrj1rpi2ihpb7c1hx6xwzvc1x7l41lwr9znp5vn7z93i034fr"; name = "helm-rb"; }; @@ -27660,15 +27956,15 @@ helm-recoll = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-recoll"; - version = "20160108.1557"; + version = "20160501.1256"; src = fetchFromGitHub { owner = "emacs-helm"; repo = "helm-recoll"; - rev = "5f9b807a4415fcd3188b022be1233b4b2906c8eb"; - sha256 = "0nbny1a41sy4w3k2irp7rh6663jhbssqqshxd3y82iq0hs9h2wda"; + rev = "9dcd056214cb2665113743bb3b1a97973c002316"; + sha256 = "1hfn7zk3pgz3w8mn44hh6dcv377j5272azx4r12p95kkp770xls2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-recoll"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-recoll"; sha256 = "0pr2pllplml55k1xx9inr3dm90ichg2wb62dvgvmbq2sqdf4606b"; name = "helm-recoll"; }; @@ -27681,7 +27977,7 @@ helm-rhythmbox = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-rhythmbox"; - version = "20160310.634"; + version = "20160310.734"; src = fetchFromGitHub { owner = "mrBliss"; repo = "helm-rhythmbox"; @@ -27689,7 +27985,7 @@ sha256 = "114maxzybs3sn32nv12fgm6aqsdqzn59fjdk6ra5cbbfyjvin16l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-rhythmbox"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-rhythmbox"; sha256 = "0pnm7yvas0q3b38ch5idm7v4ih2fjyfai8217j74xhkpcc2w4g4a"; name = "helm-rhythmbox"; }; @@ -27702,7 +27998,7 @@ helm-robe = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-robe"; - version = "20151208.2155"; + version = "20151208.2255"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-helm-robe"; @@ -27710,7 +28006,7 @@ sha256 = "163ljqar3vvbavzc8sk6rnf8awyc2rhh2g117fglswich3c8lnqg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-robe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-robe"; sha256 = "1gi4nkm9xvnxv0frmhiiw8dkmnmhfpr9n0b6jpidlvr8xr4s5kyw"; name = "helm-robe"; }; @@ -27723,7 +28019,7 @@ helm-rubygems-local = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-rubygems-local"; - version = "20130711.2011"; + version = "20130711.2111"; src = fetchFromGitHub { owner = "hadashiA"; repo = "helm-rubygems-local"; @@ -27731,7 +28027,7 @@ sha256 = "0s4hb1fvwr9za5gkz8s5w1kh9qjyygz6g59w7vmrg2d8ds2an03d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-rubygems-local"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-rubygems-local"; sha256 = "134qyqnh9l05lfj0vizlx35631q8ih6cdblrvka3p8i571300ikh"; name = "helm-rubygems-local"; }; @@ -27744,7 +28040,7 @@ helm-rubygems-org = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-rubygems-org"; - version = "20140826.656"; + version = "20140826.756"; src = fetchFromGitHub { owner = "neomantic"; repo = "helm-rubygems-org"; @@ -27752,7 +28048,7 @@ sha256 = "1sff8kagyhmwcxf9062il1077d4slvr2kq76abj496610gpb75i0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-rubygems-org"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-rubygems-org"; sha256 = "04ni03ak53z3rggdgf68qh7ksgcf3s0f2cv6skwjqw7v8qhph6qs"; name = "helm-rubygems-org"; }; @@ -27765,7 +28061,7 @@ helm-safari = callPackage ({ emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-safari"; - version = "20160403.2224"; + version = "20160403.2324"; src = fetchFromGitHub { owner = "xuchunyang"; repo = "helm-safari"; @@ -27773,7 +28069,7 @@ sha256 = "1ws5zxanaiaaxpgkcb2914qa8wxp6ml019hfnfcp7amjnajq9pyz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-safari"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-safari"; sha256 = "0lvwghcl5w67g0lc97r7hfvca7ss0mysy2mxj9axxbpyiq6fmh0y"; name = "helm-safari"; }; @@ -27786,7 +28082,7 @@ helm-sage = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, sage-shell-mode }: melpaBuild { pname = "helm-sage"; - version = "20150827.2234"; + version = "20150827.2334"; src = fetchFromGitHub { owner = "stakemori"; repo = "helm-sage"; @@ -27794,7 +28090,7 @@ sha256 = "1s6aw1viyzhhrfiazzi82n7bkvshp7clwi6539660m72lfwc5zdl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-sage"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-sage"; sha256 = "1vnq15fjaap0ai7dadi64sm4415xssmahk2j7kx45sasy4qaxlbj"; name = "helm-sage"; }; @@ -27807,7 +28103,7 @@ helm-sheet = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-sheet"; - version = "20130630.739"; + version = "20130630.839"; src = fetchFromGitHub { owner = "yasuyk"; repo = "helm-sheet"; @@ -27815,7 +28111,7 @@ sha256 = "00wnqcgpf4hqdnqj5zrizr4s0pffb93xwya8k5c3rp4plncrcdzx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-sheet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-sheet"; sha256 = "0lx70l5gq43hckgdfna8s6wx287sw5ms9l1z3n6vg2x8nr9m61kc"; name = "helm-sheet"; }; @@ -27828,7 +28124,7 @@ helm-spaces = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild, spaces }: melpaBuild { pname = "helm-spaces"; - version = "20160319.954"; + version = "20160319.1054"; src = fetchFromGitHub { owner = "yasuyk"; repo = "helm-spaces"; @@ -27836,7 +28132,7 @@ sha256 = "0j3b5ypxq8k7mg6zlx3r15jpk3x2f0gx9p9bjr0h78h0sc0f46l7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-spaces"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-spaces"; sha256 = "0hdvkk173k98iycvii5xpbiblx044125pl7jyz4kb8r1vvwcv791"; name = "helm-spaces"; }; @@ -27849,7 +28145,7 @@ helm-spotify = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild, multi }: melpaBuild { pname = "helm-spotify"; - version = "20131014.1621"; + version = "20131014.1721"; src = fetchFromGitHub { owner = "krisajenkins"; repo = "helm-spotify"; @@ -27857,7 +28153,7 @@ sha256 = "133dcqk42nq5gh5qlcbcmx3lczisfgymcnypnld318jvjgd2ma8a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-spotify"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-spotify"; sha256 = "1rzvxnaqh8bm78qp0rhpqs971pc855qrq589r3s8z3gpqzmwlnmf"; name = "helm-spotify"; }; @@ -27870,7 +28166,7 @@ helm-swoop = callPackage ({ emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-swoop"; - version = "20160417.1657"; + version = "20160417.1757"; src = fetchFromGitHub { owner = "ShingoFukuyama"; repo = "helm-swoop"; @@ -27878,7 +28174,7 @@ sha256 = "1iid2jcnqpd5b2g0jgas76n06i8m20kp3j4lhmalg9jnyvgrlf7s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-swoop"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-swoop"; sha256 = "1fqbhj75hcmy7c2vdd0m7fk3m34njmv5s6k1i9y94djpbd13i3d8"; name = "helm-swoop"; }; @@ -27891,15 +28187,15 @@ helm-systemd = callPackage ({ emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, with-editor }: melpaBuild { pname = "helm-systemd"; - version = "20160424.854"; + version = "20160502.320"; src = fetchFromGitHub { owner = "lompik"; repo = "helm-systemd"; - rev = "f716006030aea2675e4c51705033f2ba980f964c"; - sha256 = "171yym0jkhgbvxwmqk4xla7bbhmnijdwkyrzqppa5nzl86g2g3kg"; + rev = "5ce9d34b38cd664c8516172034f5323f31521fc3"; + sha256 = "1d3ffdim1qbp8a0xcd80v6a5hsy7k40iair7mrgja6dk607amxg7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-systemd"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-systemd"; sha256 = "1kcf9218l8aygrcj1h3czyklk1cxc5c73qmv4d3r3bzpxbxgf6ib"; name = "helm-systemd"; }; @@ -27912,7 +28208,7 @@ helm-themes = callPackage ({ fetchFromGitHub, fetchurl, helm-core, lib, melpaBuild }: melpaBuild { pname = "helm-themes"; - version = "20151009.121"; + version = "20151009.221"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-helm-themes"; @@ -27920,7 +28216,7 @@ sha256 = "0a9h6rmjc6c6krkvxbgrzv35if260d9ma9a2k47jzm9psnyp9s2w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-themes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-themes"; sha256 = "0r7kyd0i0spwi7xkjrpm2kyphrsl3hqm5pw96nd3ia0jiwp8550j"; name = "helm-themes"; }; @@ -27933,7 +28229,7 @@ helm-unicode = callPackage ({ emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-unicode"; - version = "20150428.1354"; + version = "20150428.1454"; src = fetchFromGitHub { owner = "shosti"; repo = "helm-unicode"; @@ -27941,7 +28237,7 @@ sha256 = "1ypnsbx623gg3q07gxrbkn82jzy38sj4p52hj1wcb54qjqzyznkg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-unicode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-unicode"; sha256 = "052xqzvcfzpsbl75ylqb1khqndvc2dqdymqlwivs0darlds0w8y4"; name = "helm-unicode"; }; @@ -27954,7 +28250,7 @@ helm-w32-launcher = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-w32-launcher"; - version = "20141223.1414"; + version = "20141223.1514"; src = fetchFromGitHub { owner = "Fanael"; repo = "helm-w32-launcher"; @@ -27962,7 +28258,7 @@ sha256 = "0xlz9rxx7y9pkrzvxmv42vgys5iwx75zv9g50k8ihwc08z80dhcq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-w32-launcher"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-w32-launcher"; sha256 = "0bzn2vhspn6lla815qxwsl9gwfyiwgwmnysr6rjpyacmi17d73ri"; name = "helm-w32-launcher"; }; @@ -27975,7 +28271,7 @@ helm-w3m = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, w3m }: melpaBuild { pname = "helm-w3m"; - version = "20150722.1024"; + version = "20150722.1124"; src = fetchFromGitHub { owner = "emacs-helm"; repo = "helm-w3m"; @@ -27983,7 +28279,7 @@ sha256 = "0d47mqib4zkfadq26vpy0ih7j18d6n5v4c21wvr4hhg6hg205iiz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-w3m"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-w3m"; sha256 = "1rr83ija93iqz74k236hk3v75jk0iwcccwqpqgys7spvrld0b9pz"; name = "helm-w3m"; }; @@ -27996,7 +28292,7 @@ helm-wordnet = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-wordnet"; - version = "20160128.907"; + version = "20160128.1007"; src = fetchFromGitHub { owner = "raghavgautam"; repo = "helm-wordnet"; @@ -28004,7 +28300,7 @@ sha256 = "03a5hzgqak8wg6i2h2p3fr9ij55lqarcsblml8qrnrj27ghcvzzh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-wordnet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-wordnet"; sha256 = "0di8gxsa9r8mzja4akhz0wpgrhlidqyn1s1ix5szplwxklwf2r2f"; name = "helm-wordnet"; }; @@ -28017,7 +28313,7 @@ helm-words = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "helm-words"; - version = "20150413.1518"; + version = "20150413.1618"; src = fetchFromGitHub { owner = "pronobis"; repo = "helm-words"; @@ -28025,7 +28321,7 @@ sha256 = "19l8vysjygscr1nsddjz2yv0fjhbsswfq40rdny8zsmaa6qhpj35"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-words"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-words"; sha256 = "0l9mb7g3xzasna1bw2p7vh2wdg1hmjkff40p8kpqvwwzszdm9v76"; name = "helm-words"; }; @@ -28038,7 +28334,7 @@ helm-xcdoc = callPackage ({ emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-xcdoc"; - version = "20160116.418"; + version = "20160116.518"; src = fetchFromGitHub { owner = "fujimisakari"; repo = "emacs-helm-xcdoc"; @@ -28046,7 +28342,7 @@ sha256 = "1yqr5z5sw7schvaq9pmwg79anp806gikm28s6xvrayzyn4idz2n6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-xcdoc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-xcdoc"; sha256 = "1ikphlnj053i4g1l8r2pqaljvdqglj1yk0xx4vygnw98qyzdsx4v"; name = "helm-xcdoc"; }; @@ -28059,7 +28355,7 @@ helm-zhihu-daily = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-zhihu-daily"; - version = "20151006.319"; + version = "20151006.419"; src = fetchFromGitHub { owner = "xuchunyang"; repo = "helm-zhihu-daily"; @@ -28067,7 +28363,7 @@ sha256 = "11fznbfcv4rac4h50mkax1g66wd2f91f5dw2v4jxjq2f5y4h4w0g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-zhihu-daily"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-zhihu-daily"; sha256 = "0hkgail60s9qhxl0pskqxjvfz93iq1qh1kcmcq0x5kq7d08b911r"; name = "helm-zhihu-daily"; }; @@ -28079,13 +28375,13 @@ }) {}; help-fns-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "help-fns-plus"; - version = "20151215.837"; + version = "20151215.937"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/help-fns+.el"; sha256 = "00x3ln7x4d6r422x845smf3h0x1z85l5jqyjkrllqcs7qijcrk5w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/help-fns+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/help-fns+"; sha256 = "10vz7w79k3barlcs3ph3pc7914xdhcygagdk2wj3bq0wmwxa1lia"; name = "help-fns-plus"; }; @@ -28097,13 +28393,13 @@ }) {}; help-mode-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "help-mode-plus"; - version = "20151231.1531"; + version = "20151231.1631"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/help-mode+.el"; sha256 = "0qmf81maq6yvs68b8vlbxwkjk72qldamq75znrma9mhvlv8igrgx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/help-mode+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/help-mode+"; sha256 = "1pmb845bxa5kazjpdxm12rm2wcshmv2cmisigs3kyva1pmi1shra"; name = "help-mode-plus"; }; @@ -28115,13 +28411,13 @@ }) {}; help-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "help-plus"; - version = "20151231.1528"; + version = "20151231.1628"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/help+.el"; sha256 = "1r7kf9plnsjx87bhflsdh47wybvhis7gb10izqa1p6w0aqsg178s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/help+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/help+"; sha256 = "1jx0wa4md1mvdsvjyx2yvi4hhm5w061qqcafsrw4axsz7gjpd4yi"; name = "help-plus"; }; @@ -28134,7 +28430,7 @@ hemisu-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "hemisu-theme"; - version = "20130508.1344"; + version = "20130508.1444"; src = fetchFromGitHub { owner = "andrzejsliwa"; repo = "hemisu-theme"; @@ -28142,7 +28438,7 @@ sha256 = "178dvigiw162m01x7dm8pf61w2n3bq51lvk5q7jzpb9s35pz1697"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hemisu-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/hemisu-theme"; sha256 = "0byzrz74yvk12m8dl47kkmkziwrrql193q72qx974zbqdj8h2sph"; name = "hemisu-theme"; }; @@ -28155,7 +28451,7 @@ heroku = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "heroku"; - version = "20120629.1313"; + version = "20120629.1413"; src = fetchFromGitHub { owner = "technomancy"; repo = "heroku.el"; @@ -28163,7 +28459,7 @@ sha256 = "0c45pib8qpwgyr271g5ddnsn7hzq68mqflv0yyc8803ni06w9vhj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/heroku"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/heroku"; sha256 = "1kadmxmqhc60cb5k14943rad1gbril2hlcnqxnsy4h3j2ykmcdyy"; name = "heroku"; }; @@ -28176,7 +28472,7 @@ heroku-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "heroku-theme"; - version = "20150522.2119"; + version = "20150522.2219"; src = fetchFromGitHub { owner = "jonathanchu"; repo = "heroku-theme"; @@ -28184,7 +28480,7 @@ sha256 = "15hk0v6ck076mahsz4spq75jcnv587fx4d3w50c7bdh423fl0xvx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/heroku-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/heroku-theme"; sha256 = "0mchh9y3pqwamry6105qrv1bp1qg1g0jmz7rzc5svz9giynypwf9"; name = "heroku-theme"; }; @@ -28197,7 +28493,7 @@ hexo = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "hexo"; - version = "20160423.1017"; + version = "20160423.1117"; src = fetchFromGitHub { owner = "kuanyui"; repo = "hexo.el"; @@ -28205,7 +28501,7 @@ sha256 = "1ghknn1fd6lwxq035amrawx9ixw3qwjsfarsjyqss7rhs70wrn5a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hexo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/hexo"; sha256 = "0fgrxf6gdw0kzs6x6y8qr511cazaaiyk7licgkgznngj4w6g7jyn"; name = "hexo"; }; @@ -28217,13 +28513,13 @@ }) {}; hexrgb = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "hexrgb"; - version = "20151231.1532"; + version = "20151231.1632"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/hexrgb.el"; sha256 = "0rqjidjxa5j6rjknklfks743lczbq3qsyiranrf2z3ghzi0gf7fd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hexrgb"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/hexrgb"; sha256 = "0mzqslrrf7sc262syj3ja7b7rnbg80dwf2p9bzxdrzx6b8vvsx06"; name = "hexrgb"; }; @@ -28236,7 +28532,7 @@ hfst-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "hfst-mode"; - version = "20160402.628"; + version = "20160402.728"; src = fetchFromGitHub { owner = "unhammer"; repo = "hfst-mode"; @@ -28244,7 +28540,7 @@ sha256 = "1zr59kcnkd9bm5676shmz63n0wpnfr7yl9g4l01ng0xcili1n13i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hfst-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/hfst-mode"; sha256 = "1w342n5k9ak1m5znysvrplpr9dhmi7hxbkr4d1dx51dn0azbpjh7"; name = "hfst-mode"; }; @@ -28257,15 +28553,15 @@ hgignore-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "hgignore-mode"; - version = "20150412.1300"; + version = "20160430.2007"; src = fetchFromGitHub { owner = "omajid"; repo = "hgignore-mode"; - rev = "054c370c6df1b789f0d9907b30b54ef2287aafbe"; - sha256 = "06hm98aq87l91fhb2bqz8jw427k8fb280ygz5g44fy6sqc6js7v0"; + rev = "7aa9f3b8a9c610dbd80b952061b40194e1d9c5bd"; + sha256 = "0l22sqi9lmy25idh231p0hgq22b3dxwb9wq60yxk8dck9zlkv7rr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hgignore-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/hgignore-mode"; sha256 = "0ja71l3cghhn1c6w2pff80km8h8xgzf0j9gcldfyc72ar6ifhjkj"; name = "hgignore-mode"; }; @@ -28275,10 +28571,31 @@ license = lib.licenses.free; }; }) {}; + hgrc-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "hgrc-mode"; + version = "20150409.1643"; + src = fetchFromGitHub { + owner = "omajid"; + repo = "hgrc-mode"; + rev = "314e8320b82cc1ce74b1bd372f296252e7a23090"; + sha256 = "1ky5s7hzqbxgasdz285q3rnvzh3irwsq61rlivjrcxyfdxdjbbvp"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/hgrc-mode"; + sha256 = "18400dhdackdpndkz6shjmd4klfh6b4vlccnnqlzf3a93alw6vqf"; + name = "hgrc-mode"; + }; + packageRequires = []; + meta = { + homepage = "https://melpa.org/#/hgrc-mode"; + license = lib.licenses.free; + }; + }) {}; hi2 = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "hi2"; - version = "20141005.1431"; + version = "20141005.1531"; src = fetchFromGitHub { owner = "nilcons"; repo = "hi2"; @@ -28286,7 +28603,7 @@ sha256 = "1s08sgbh5v59lqskd0s1dscs6dy7z5mkqqkabs3gd35agbfvbmlf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hi2"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/hi2"; sha256 = "1wxkjg1jnw05lqzggi20jy2jl20d8brvv76vmrf6lnz62g6jv9h2"; name = "hi2"; }; @@ -28298,13 +28615,13 @@ }) {}; hide-comnt = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "hide-comnt"; - version = "20151231.1533"; + version = "20151231.1633"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/hide-comnt.el"; sha256 = "1l5jvgjgd0kzv1sn6h467fbnl487hma4h4pkwq4x1dhbc26yvfpz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hide-comnt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/hide-comnt"; sha256 = "181kns2rg4rc0pyyxw305qc06d10v025ad7v2m037y72vfwb0igx"; name = "hide-comnt"; }; @@ -28316,13 +28633,13 @@ }) {}; hide-lines = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "hide-lines"; - version = "20151127.1240"; + version = "20151127.1340"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/hide-lines.el"; sha256 = "1q87yp1pr62cza3pqimqd09a39yyij4c7pncdww84zz7cii9qrn2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hide-lines"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/hide-lines"; sha256 = "146sgvd88w20rqvd8y8kc76cb1nqk6dvqsz9rgl4rcrf0xfqvp7q"; name = "hide-lines"; }; @@ -28334,13 +28651,13 @@ }) {}; hide-region = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "hide-region"; - version = "20140201.514"; + version = "20140201.614"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/hide-region.el"; sha256 = "1zxrygpf47bzj6p808r3qhj3dfr3m8brp1xgxs33c7f88rinfval"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hide-region"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/hide-region"; sha256 = "0nsc6m3yza658xsxvjz8766vkp71rcm6vwnvcv225r2pr94mq7vm"; name = "hide-region"; }; @@ -28353,7 +28670,7 @@ hideshow-org = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "hideshow-org"; - version = "20120223.1650"; + version = "20120223.1750"; src = fetchFromGitHub { owner = "shanecelis"; repo = "hideshow-org"; @@ -28361,7 +28678,7 @@ sha256 = "1dr06b9njzih8z97k62l9w3x0a801x4bp043zvk7av9qkz8izl2r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hideshow-org"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/hideshow-org"; sha256 = "1bzx5ii06r64nra92zv1dvw5zv3im7la2dd3md801hxyfrpb74gc"; name = "hideshow-org"; }; @@ -28373,13 +28690,13 @@ }) {}; hideshowvis = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "hideshowvis"; - version = "20130824.700"; + version = "20130824.800"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/hideshowvis.el"; sha256 = "15ax1j3j7kylyc8a91ja825sp4mhbdgx0j4i5kqxwhvmwvpmyrv6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hideshowvis"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/hideshowvis"; sha256 = "1ajr71fch3v5g8brb83kwmlakcam5w21i3yr8df00c5j2pnc6v1f"; name = "hideshowvis"; }; @@ -28391,13 +28708,13 @@ }) {}; highlight = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "highlight"; - version = "20151231.1537"; + version = "20151231.1637"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/highlight.el"; sha256 = "15s4463damlszd5wqi22a6w25i8l0m5rvqdg73k3yp01i65jc29z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/highlight"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/highlight"; sha256 = "0clv4mzy9kllcvc0cgsbx3a9anw68dc2c7vzwbrv13sw5gh9skc0"; name = "highlight"; }; @@ -28410,7 +28727,7 @@ highlight-blocks = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "highlight-blocks"; - version = "20151201.1015"; + version = "20151201.1115"; src = fetchFromGitHub { owner = "Fanael"; repo = "highlight-blocks"; @@ -28418,7 +28735,7 @@ sha256 = "0c65jk00j88qxfki2g88hy9g6n92rzskwcn1fbmwcw3qgaz4b6w5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/highlight-blocks"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/highlight-blocks"; sha256 = "1a32iv5kgf6g6ygbs559w156dh578k45m860czazfx0d6ap3k5m1"; name = "highlight-blocks"; }; @@ -28430,13 +28747,13 @@ }) {}; highlight-chars = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "highlight-chars"; - version = "20151231.1535"; + version = "20151231.1635"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/highlight-chars.el"; sha256 = "18y6cw43mhizccvwfydv6g2kz8w7vff0n3k9sq5ghwq3rb3z14b2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/highlight-chars"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/highlight-chars"; sha256 = "19jawbjvqx1hsjbynx0jgpziap3r64k8s1xfckajrx8aq8m4c6i0"; name = "highlight-chars"; }; @@ -28448,13 +28765,13 @@ }) {}; highlight-cl = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "highlight-cl"; - version = "20091012.1230"; + version = "20091012.1330"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/highlight-cl.el"; sha256 = "0r3kzs2fsi3kl5gqmsv75dc7lgfl4imrrqhg09ij6kq1ri8gjxjw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/highlight-cl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/highlight-cl"; sha256 = "164h3c3rzriahb7v5hk2pw4i0gk2vk5ak722bai6x4zx4l1xp20w"; name = "highlight-cl"; }; @@ -28467,13 +28784,13 @@ highlight-current-line = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "highlight-current-line"; - version = "20051013.1256"; + version = "20051013.1356"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/highlight-current-line.el"; sha256 = "1aki7a7nnj9n7vh19k4fr0v7cqbwkrpc6b3f3yv95vcqj8a4y34c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/highlight-current-line"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/highlight-current-line"; sha256 = "01bga6is3frzlzfajpvpgz224vhl0jnc2bl2ipvlygdcmv4h8973"; name = "highlight-current-line"; }; @@ -28486,7 +28803,7 @@ highlight-defined = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "highlight-defined"; - version = "20141225.930"; + version = "20141225.1030"; src = fetchFromGitHub { owner = "Fanael"; repo = "highlight-defined"; @@ -28494,7 +28811,7 @@ sha256 = "1l10xnjyvcbv1v8xlldaca7z3fk5qav7nsbhfnjxxd0bgh5v9by2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/highlight-defined"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/highlight-defined"; sha256 = "1vjxm35wf4c2qphpkjh57hf03a5qdssdlmfj0n0gwxsdw1q5rpms"; name = "highlight-defined"; }; @@ -28507,7 +28824,7 @@ highlight-escape-sequences = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "highlight-escape-sequences"; - version = "20151231.612"; + version = "20151231.712"; src = fetchFromGitHub { owner = "dgutov"; repo = "highlight-escape-sequences"; @@ -28515,7 +28832,7 @@ sha256 = "0rs8zyjz5mh26n8bdxn6fmyw2809nihz1vp7ih59dq11lx3mf9az"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/highlight-escape-sequences"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/highlight-escape-sequences"; sha256 = "0938b29cqapid9v9q4w2jwh8kdb0p70qwzy9xm2nxaairm7436d6"; name = "highlight-escape-sequences"; }; @@ -28528,7 +28845,7 @@ highlight-indent-guides = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "highlight-indent-guides"; - version = "20151112.1427"; + version = "20151112.1527"; src = fetchFromGitHub { owner = "DarthFennec"; repo = "highlight-indent-guides"; @@ -28536,7 +28853,7 @@ sha256 = "10m1cr5plzsxbq08lck4c2w0whcdrnl9h2qm4bbr9srhnpry7fxj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/highlight-indent-guides"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/highlight-indent-guides"; sha256 = "00ghp677qgb5clxhdjarfl8ab3mbp6v7yfsldm9bn0s14lyaq5pm"; name = "highlight-indent-guides"; }; @@ -28549,7 +28866,7 @@ highlight-indentation = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "highlight-indentation"; - version = "20150307.408"; + version = "20150307.508"; src = fetchFromGitHub { owner = "antonj"; repo = "Highlight-Indentation-for-Emacs"; @@ -28557,7 +28874,7 @@ sha256 = "00l54k75qk24a0znzl4ij3s3nrnr2wy9ha3za8apphzlm98m907k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/highlight-indentation"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/highlight-indentation"; sha256 = "0iblrrbssjwfn71n8xxjcl98pjv1qw1igf3hlz6mh8740fsca3d6"; name = "highlight-indentation"; }; @@ -28570,7 +28887,7 @@ highlight-leading-spaces = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "highlight-leading-spaces"; - version = "20151216.622"; + version = "20151216.722"; src = fetchFromGitHub { owner = "mrBliss"; repo = "highlight-leading-spaces"; @@ -28578,7 +28895,7 @@ sha256 = "1vy6j63jp83ljdqkrqglpys74yfh7p61sd0lqiwczgr5nqyc60rl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/highlight-leading-spaces"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/highlight-leading-spaces"; sha256 = "0h2ww2vqmarghf4zg0wbwn0wgndmkcjy696mc885rwavck2dav4p"; name = "highlight-leading-spaces"; }; @@ -28591,7 +28908,7 @@ highlight-numbers = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, parent-mode }: melpaBuild { pname = "highlight-numbers"; - version = "20150531.807"; + version = "20150531.907"; src = fetchFromGitHub { owner = "Fanael"; repo = "highlight-numbers"; @@ -28599,7 +28916,7 @@ sha256 = "0ffhc5s0h34064bix4qyiiyx30m4hpv0phmxwcrwiyvanj9ggfai"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/highlight-numbers"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/highlight-numbers"; sha256 = "1bywrjv9ybr65mwkrxggb52jdqn16z8acgs5vqm0faq43an8i5yv"; name = "highlight-numbers"; }; @@ -28612,7 +28929,7 @@ highlight-parentheses = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "highlight-parentheses"; - version = "20151108.116"; + version = "20151108.216"; src = fetchFromGitHub { owner = "tsdh"; repo = "highlight-parentheses.el"; @@ -28620,7 +28937,7 @@ sha256 = "0kzqx1y6rr4ryxi2md9087saad4g4bzysckmp8272k521d46xa1r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/highlight-parentheses"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/highlight-parentheses"; sha256 = "1d38wxk5bwblddr74crzwjwpgyr8zgcl5h5ilywg35jpv7n66lp5"; name = "highlight-parentheses"; }; @@ -28633,7 +28950,7 @@ highlight-quoted = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "highlight-quoted"; - version = "20140916.1322"; + version = "20140916.1422"; src = fetchFromGitHub { owner = "Fanael"; repo = "highlight-quoted"; @@ -28641,7 +28958,7 @@ sha256 = "1gq8inxfni9zgz2brqm4nlswgr8b0spq15wr532xfrgr456g10ks"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/highlight-quoted"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/highlight-quoted"; sha256 = "0x6gxi0jfxvpx7r1fm43ikxlxilnbk2xbhdy9xivhgmmdyqiqqkl"; name = "highlight-quoted"; }; @@ -28654,7 +28971,7 @@ highlight-stages = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "highlight-stages"; - version = "20150421.2257"; + version = "20150421.2357"; src = fetchFromGitHub { owner = "zk-phi"; repo = "highlight-stages"; @@ -28662,7 +28979,7 @@ sha256 = "0gnr1dqkcmc9gfzqjaixh76g1kq7xp20mg1h6vl3c4na7nk6a3fg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/highlight-stages"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/highlight-stages"; sha256 = "0r4kmjmrpi38q3y0q9h5xkxh7x728ha2nbnc152lzw6zfsxnm4x4"; name = "highlight-stages"; }; @@ -28675,7 +28992,7 @@ highlight-symbol = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "highlight-symbol"; - version = "20160102.1409"; + version = "20160102.1509"; src = fetchFromGitHub { owner = "nschum"; repo = "highlight-symbol.el"; @@ -28683,7 +29000,7 @@ sha256 = "19cgyk0sh8nsmf3jbi92i8qsdx4l4yilfq5jj9zfdbj9p5gvwx96"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/highlight-symbol"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/highlight-symbol"; sha256 = "0gw8ffr64s58qdbvm034s1b9xz1hynzvbk8ld67j06fxpc98qaj4"; name = "highlight-symbol"; }; @@ -28695,13 +29012,13 @@ }) {}; highlight-tail = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "highlight-tail"; - version = "20140415.2041"; + version = "20140415.2141"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/highlight-tail.el"; sha256 = "1bbiyqddqkrp3c7xsg1m4143611bhg1kkakrwscqjb4cfmx29qqg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/highlight-tail"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/highlight-tail"; sha256 = "187kv3n262l38jdapi9bwcafz8fh61pdq2zliwiz7m7xdspp2iws"; name = "highlight-tail"; }; @@ -28714,7 +29031,7 @@ highlight-thing = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "highlight-thing"; - version = "20160220.1842"; + version = "20160220.1942"; src = fetchFromGitHub { owner = "fgeller"; repo = "highlight-thing.el"; @@ -28722,7 +29039,7 @@ sha256 = "00s2nm0rfdgkpn2v9m36y0l42jyfah5hp5hd3bkwljgs99cp1ihk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/highlight-thing"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/highlight-thing"; sha256 = "0rvdb1lx9xn9drqw0sw9ih759n10g7k0af39w6n8g0wfr67p96w1"; name = "highlight-thing"; }; @@ -28735,7 +29052,7 @@ highlight-unique-symbol = callPackage ({ deferred, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "highlight-unique-symbol"; - version = "20130612.42"; + version = "20130612.142"; src = fetchFromGitHub { owner = "hitode909"; repo = "emacs-highlight-unique-symbol"; @@ -28743,7 +29060,7 @@ sha256 = "0hhc2l4pz6q8injpplv6b5l08l8q2lnjdpwabp7gwmhraq54rhjx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/highlight-unique-symbol"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/highlight-unique-symbol"; sha256 = "0lwl8pkmq0q4dvyflarggnn8vzpvk5hhcnk508r6xml2if1sg9zx"; name = "highlight-unique-symbol"; }; @@ -28756,7 +29073,7 @@ highlight2clipboard = callPackage ({ fetchFromGitHub, fetchurl, htmlize, lib, melpaBuild }: melpaBuild { pname = "highlight2clipboard"; - version = "20151020.1340"; + version = "20151020.1440"; src = fetchFromGitHub { owner = "Lindydancer"; repo = "highlight2clipboard"; @@ -28764,7 +29081,7 @@ sha256 = "06nnqry36ncqacfzd8yvc4q59bwk3vgf9a14rkpph2hk2rfvq2m6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/highlight2clipboard"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/highlight2clipboard"; sha256 = "19r7abbpm31b0azf2v3xn0rjagg9h01i8g72qapp8dhqb4d9n9r0"; name = "highlight2clipboard"; }; @@ -28777,7 +29094,7 @@ hindent = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "hindent"; - version = "20151113.224"; + version = "20151113.324"; src = fetchFromGitHub { owner = "chrisdone"; repo = "hindent"; @@ -28785,7 +29102,7 @@ sha256 = "03mnvhav2bm51s430z3vyig5z5q8rg9glr8zqxwdnw297ln2f3l6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hindent"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/hindent"; sha256 = "1f3vzgnqigwbwvglxv0ziz3kyp5dxjraw3vlghkpw39f57mky4xz"; name = "hindent"; }; @@ -28797,13 +29114,13 @@ }) {}; hippie-exp-ext = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "hippie-exp-ext"; - version = "20151011.345"; + version = "20151011.445"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/hippie-exp-ext.el"; sha256 = "1jkjg7zxpc06plzlyvj1a8dcvj8ijqzhkxwlsd12cgkymvp411yl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hippie-exp-ext"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/hippie-exp-ext"; sha256 = "14py5hz523847f7bhw67v81x5cfhzz5la15mrqavc4z4yicy63iq"; name = "hippie-exp-ext"; }; @@ -28816,7 +29133,7 @@ hippie-expand-slime = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "hippie-expand-slime"; - version = "20130907.332"; + version = "20130907.432"; src = fetchFromGitHub { owner = "purcell"; repo = "hippie-expand-slime"; @@ -28824,7 +29141,7 @@ sha256 = "1l76r8hzhaapx76f6spm5jmjbrrm5zf79cpd5024xw3hpj1jbkjp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hippie-expand-slime"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/hippie-expand-slime"; sha256 = "0kxyv1lpkg33qgfv1jfqx03640py7525bcnc9dk98w6y6y92zf4m"; name = "hippie-expand-slime"; }; @@ -28837,7 +29154,7 @@ hippie-namespace = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "hippie-namespace"; - version = "20140508.1541"; + version = "20140508.1641"; src = fetchFromGitHub { owner = "rolandwalker"; repo = "hippie-namespace"; @@ -28845,7 +29162,7 @@ sha256 = "0b5wrid428s11afc48d6mdifmd31gmzyrj9zcpd3jwk63ydiihdc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hippie-namespace"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/hippie-namespace"; sha256 = "1bzjhq116ci9c9f0aw121fn3drmg2pw5ny1w6wcasa4p30syxxf0"; name = "hippie-namespace"; }; @@ -28858,7 +29175,7 @@ hipster-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "hipster-theme"; - version = "20141205.2205"; + version = "20141205.2305"; src = fetchFromGitHub { owner = "xzerocode"; repo = "hipster-theme"; @@ -28866,7 +29183,7 @@ sha256 = "17dcpwx2y464g8qi3ixlsf3la8dn0bkxax296bhfg4vh73dxccl3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hipster-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/hipster-theme"; sha256 = "1xrgpqlzp4lhh5h3sv7pg1nqzc9wcv1hs6ybv2h4x6jangicwfl2"; name = "hipster-theme"; }; @@ -28879,7 +29196,7 @@ history = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "history"; - version = "20150409.1934"; + version = "20150409.2034"; src = fetchFromGitHub { owner = "boyw165"; repo = "history"; @@ -28887,7 +29204,7 @@ sha256 = "1dmrg39g0faqqkgrpcbybjbb91vcpkwawxsplckkj92y59zanq3x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/history"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/history"; sha256 = "0s8pcz53bk1w4h5847204vb6j838vr8za66ni1b2y4pas76zjr5g"; name = "history"; }; @@ -28900,7 +29217,7 @@ historyf = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "historyf"; - version = "20151123.1959"; + version = "20151123.2059"; src = fetchFromGitHub { owner = "k1LoW"; repo = "emacs-historyf"; @@ -28908,7 +29225,7 @@ sha256 = "1y275fchhx0n6dv038hsr44a3bjghqdhc8j1dcpm2rvs8chgm8g0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/historyf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/historyf"; sha256 = "15pcaqfjpkfwcy46yqqw10q8kpw7aamcg0gr4frbdgzbv0yld08s"; name = "historyf"; }; @@ -28921,7 +29238,7 @@ hive = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, sql ? null }: melpaBuild { pname = "hive"; - version = "20131217.912"; + version = "20131217.1012"; src = fetchFromGitHub { owner = "r0man"; repo = "hive-el"; @@ -28929,7 +29246,7 @@ sha256 = "097lrj9lgfa7szww324hlqywwkbi31n1pxfqyg0zbfj45djkp9bx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hive"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/hive"; sha256 = "1marz8gmk824hb0nkhaw48d4qw1xjk1aad27gviya7f5ilypxrya"; name = "hive"; }; @@ -28942,7 +29259,7 @@ hiwin = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "hiwin"; - version = "20150825.327"; + version = "20150825.427"; src = fetchFromGitHub { owner = "yoshida-mediba"; repo = "hiwin-mode"; @@ -28950,7 +29267,7 @@ sha256 = "177blksgncxpxd1zi9kmbcfjnpd3ll1szjxiyc4am8a6hs1dyyqk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hiwin"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/hiwin"; sha256 = "0klhxwxsz7xan2vsknw79r1dj4qhhjbfpddr67mk9qzccp8q0w8g"; name = "hiwin"; }; @@ -28963,7 +29280,7 @@ hl-anything = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "hl-anything"; - version = "20160422.1208"; + version = "20160422.1308"; src = fetchFromGitHub { owner = "hl-anything"; repo = "hl-anything-emacs"; @@ -28971,7 +29288,7 @@ sha256 = "10ps1rb5fqwaw4lz3nz2rbsry4y81asmi5557g229h8xjhp6gpnm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hl-anything"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/hl-anything"; sha256 = "0czpc82j5hbzprc66aall72lqnk38dxgpzx4rs8sbx95cag12dxa"; name = "hl-anything"; }; @@ -28983,13 +29300,13 @@ }) {}; hl-defined = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "hl-defined"; - version = "20151231.1538"; + version = "20151231.1638"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/hl-defined.el"; sha256 = "170sz6hjd85cw1x0y2g81ks3x3niib4f7y2xz6k8x0dpw357ggv3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hl-defined"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/hl-defined"; sha256 = "1y7vbhvpwxz70kja5hfm4i57mdd1cv43m4y9fr978y3nk265p8xx"; name = "hl-defined"; }; @@ -29002,7 +29319,7 @@ hl-indent = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "hl-indent"; - version = "20141227.1530"; + version = "20141227.1630"; src = fetchFromGitHub { owner = "ikirill"; repo = "hl-indent"; @@ -29010,7 +29327,7 @@ sha256 = "17apqs7yqd89mv5283kmwp7byaaimj7j0vis0z1d89jlmp8i6zbc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hl-indent"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/hl-indent"; sha256 = "1z42kcwcyinjay65mv042ijh4xfaaiyri368g0sjw0fflsg0ikcr"; name = "hl-indent"; }; @@ -29022,13 +29339,13 @@ }) {}; hl-line-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "hl-line-plus"; - version = "20151231.1539"; + version = "20151231.1639"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/hl-line+.el"; sha256 = "1kxq79pfs83gp12p2g093m6shsf25q88mi29bvhapxx77ahmxpkn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hl-line+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/hl-line+"; sha256 = "13yv2nmx1wb80z4yifnh6d67rag17wirmp7z8ssq3havjl8lbpix"; name = "hl-line-plus"; }; @@ -29041,7 +29358,7 @@ hl-sentence = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "hl-sentence"; - version = "20140802.1120"; + version = "20140802.1220"; src = fetchFromGitHub { owner = "milkypostman"; repo = "hl-sentence"; @@ -29049,7 +29366,7 @@ sha256 = "0pjfbm8p077frk475bx8xkygn8r4vdsvnx4rcqbjlpjawj0ndgxs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hl-sentence"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/hl-sentence"; sha256 = "16sjfs0nnpwzj1cqfna9vhmxgznwwhb2qdmjci25hlgrdxwwyahs"; name = "hl-sentence"; }; @@ -29062,7 +29379,7 @@ hl-sexp = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "hl-sexp"; - version = "20101130.643"; + version = "20101130.743"; src = fetchFromGitHub { owner = "emacsmirror"; repo = "hl-sexp"; @@ -29070,7 +29387,7 @@ sha256 = "1fsyj9cmqcz5nfxsfcyvpq2vqrhgl99xvq7ligviawl3x77376kw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hl-sexp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/hl-sexp"; sha256 = "0kg0m20i9ylphf4w0qcvii8yp65abdl2q5flyphilk0jahwbj9jy"; name = "hl-sexp"; }; @@ -29082,13 +29399,13 @@ }) {}; hl-spotlight = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "hl-spotlight"; - version = "20151231.1540"; + version = "20151231.1640"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/hl-spotlight.el"; sha256 = "0m84d1rdsp9r5ip79jlrp69pf1daw0ch8c378q3kc328606i3p2d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hl-spotlight"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/hl-spotlight"; sha256 = "1166g27fp2pj4j3a8904pzvp5idlq4l22i0w6lbk5c9zh5pqyyf3"; name = "hl-spotlight"; }; @@ -29101,7 +29418,7 @@ hl-todo = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "hl-todo"; - version = "20160424.649"; + version = "20160424.749"; src = fetchFromGitHub { owner = "tarsius"; repo = "hl-todo"; @@ -29109,7 +29426,7 @@ sha256 = "1ljakm15bsl9hv1rbg6lj0mnbc4qna5fr9rwkalnlwknjpka1bx3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hl-todo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/hl-todo"; sha256 = "1iyh68xwldj1r02blar5zi01wnb90dkbmi67vd6h78ksghl3z9j4"; name = "hl-todo"; }; @@ -29122,7 +29439,7 @@ hlint-refactor = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "hlint-refactor"; - version = "20151124.1441"; + version = "20151124.1541"; src = fetchFromGitHub { owner = "mpickering"; repo = "hlint-refactor-mode"; @@ -29130,7 +29447,7 @@ sha256 = "02mkfrs55d32948x739f94v35343gw6a0f7fknbcigbz56mzsvsp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hlint-refactor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/hlint-refactor"; sha256 = "1311z6y7ycwx0mj67bya7a39j5hiypg72y6yg93dhgpk23wk7frq"; name = "hlint-refactor"; }; @@ -29143,7 +29460,7 @@ hlinum = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "hlinum"; - version = "20150621.2133"; + version = "20150621.2233"; src = fetchFromGitHub { owner = "tom-tan"; repo = "hlinum-mode"; @@ -29151,7 +29468,7 @@ sha256 = "0yw89kxvz53i9rbq3lsbp5xkgfl1986s23vyra5pipakfv85gmq4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hlinum"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/hlinum"; sha256 = "04b6m0njr7yrbcbpkhqz4hmqpfacmyca3lw75dyw3vpjpsj2g0iv"; name = "hlinum"; }; @@ -29164,14 +29481,14 @@ hoa-mode = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: melpaBuild { pname = "hoa-mode"; - version = "20151203.1050"; + version = "20151203.1150"; src = fetchgit { url = "https://gitlab.lrde.epita.fr/spot/emacs-modes.git"; rev = "3c608e15b655d2375c5f81323ac561c7848dc029"; sha256 = "1s3wgsgl1min2zbfr6wacb7wnff95r8kgmfzlma8b02440cmch5z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hoa-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/hoa-mode"; sha256 = "06rfqn7sqvmgpvwhfmk17qqs4q0frfzhm597z3p1q7kys2035kiv"; name = "hoa-mode"; }; @@ -29184,7 +29501,7 @@ hoa-pp-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, names }: melpaBuild { pname = "hoa-pp-mode"; - version = "20151027.236"; + version = "20151027.336"; src = fetchFromGitHub { owner = "hoaproject"; repo = "Contributions-Emacs-Pp"; @@ -29192,7 +29509,7 @@ sha256 = "0g2r4d0ivbadqw1k8jsv0jwv8krpfahsg0qmzyi909p2yfddqk1l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hoa-pp-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/hoa-pp-mode"; sha256 = "01ijfn0hd645j6j88rids5dsanmzwmky37slf50yqffnv69jwvla"; name = "hoa-pp-mode"; }; @@ -29205,7 +29522,7 @@ homebrew-mode = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, inf-ruby, lib, melpaBuild }: melpaBuild { pname = "homebrew-mode"; - version = "20160406.1125"; + version = "20160406.1225"; src = fetchFromGitHub { owner = "dunn"; repo = "homebrew-mode"; @@ -29213,7 +29530,7 @@ sha256 = "0yh9v5zng1j2kfjjadfkdds67jws79q52kvl2mx9s8mq28263idm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/homebrew-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/homebrew-mode"; sha256 = "088wc5fq4r5yj1nbh7mriyqf0xwqmbxvblj9d2wwrkkdm5flc8mj"; name = "homebrew-mode"; }; @@ -29226,7 +29543,7 @@ hookify = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "hookify"; - version = "20141216.1609"; + version = "20141216.1709"; src = fetchFromGitHub { owner = "Silex"; repo = "hookify"; @@ -29234,7 +29551,7 @@ sha256 = "1d3dlkrv95xrpv4rv3jgn58mxs71f6vi2lr88bddhxz702vb11d8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hookify"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/hookify"; sha256 = "0prls539ifk2fsqklcxmbrwmgbm9hya50z486d7sw426lh648qmy"; name = "hookify"; }; @@ -29247,7 +29564,7 @@ hound = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, web }: melpaBuild { pname = "hound"; - version = "20150217.1149"; + version = "20150217.1249"; src = fetchFromGitHub { owner = "ryoung786"; repo = "hound.el"; @@ -29255,7 +29572,7 @@ sha256 = "1gm5nczq5lsxqkfb38ajffg65zwxkfqvqhk33bwnnd00rpa1ix6j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hound"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/hound"; sha256 = "0qri6bddd3c4sqvaqvmqw6xg46vwlfi1by3gc9i3izpq4xl1cr1v"; name = "hound"; }; @@ -29268,7 +29585,7 @@ how-many-lines-in-project = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "how-many-lines-in-project"; - version = "20140806.2342"; + version = "20140807.42"; src = fetchFromGitHub { owner = "hiddenlotus"; repo = "how-many-lines-in-project"; @@ -29276,7 +29593,7 @@ sha256 = "0vygbdjy2dv7n50vrkcnqyswq48sgas0zzjfsac8x5g9vhxjkawj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/how-many-lines-in-project"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/how-many-lines-in-project"; sha256 = "1dfh1ydpjbrawqpsj6kydvy8sz3rlwn4ma5cizfw5spd2gcmj1zb"; name = "how-many-lines-in-project"; }; @@ -29289,7 +29606,7 @@ howdoi = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "howdoi"; - version = "20150203.1843"; + version = "20150203.1943"; src = fetchFromGitHub { owner = "atykhonov"; repo = "emacs-howdoi"; @@ -29297,7 +29614,7 @@ sha256 = "01sj9c8mxqaif8wh6zz9v2czjaq7vcdi66drldyjmifkln6rg2v8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/howdoi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/howdoi"; sha256 = "12vgbypawxhhrnjp8dgh0wrcp7pvjccfaxw4yhq7msai7ik3h83b"; name = "howdoi"; }; @@ -29310,14 +29627,14 @@ howm = callPackage ({ cl-lib ? null, fetchgit, fetchurl, lib, melpaBuild }: melpaBuild { pname = "howm"; - version = "20160405.718"; + version = "20160405.818"; src = fetchgit { url = "git://git.osdn.jp/gitroot/howm/howm.git"; rev = "6d6b4ca60e5c164a3e284ba82156b8ae33e83b7a"; sha256 = "0q9rjy8i263d6fcyj0s1l95s7vajf15i2fkbkbmhh4rp63nd04g3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/howm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/howm"; sha256 = "007r8mjn7m7m1mvsb1gaiqbizlwykh23k72g48nwan8bw556gfcr"; name = "howm"; }; @@ -29330,7 +29647,7 @@ ht = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ht"; - version = "20150830.1315"; + version = "20150830.1415"; src = fetchFromGitHub { owner = "Wilfred"; repo = "ht.el"; @@ -29338,7 +29655,7 @@ sha256 = "17x5w5kzam8cgaphyasnqzm2yhc0hwm38azvmin7ra4h912vlisd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ht"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ht"; sha256 = "16vmxksannn2wyn8r44jbkdp19jvz1bg57ggbs1vn0yi7nkanwbd"; name = "ht"; }; @@ -29351,7 +29668,7 @@ html-check-frag = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "html-check-frag"; - version = "20160130.2335"; + version = "20160131.35"; src = fetchFromGitHub { owner = "TobiasZawada"; repo = "html-check-frag"; @@ -29359,7 +29676,7 @@ sha256 = "10lbxf56gvy26grzrhhx2p710fzs0h866jd2zmmgkisvyb0vaiay"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/html-check-frag"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/html-check-frag"; sha256 = "0drancb9ryifiln44b40l6cal0c7nyp597a6q26288s3v909yk2a"; name = "html-check-frag"; }; @@ -29372,7 +29689,7 @@ html-script-src = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "html-script-src"; - version = "20120403.1315"; + version = "20120403.1415"; src = fetchFromGitHub { owner = "rejeep"; repo = "html-script-src.el"; @@ -29380,7 +29697,7 @@ sha256 = "0k9ga0qi6h33akip2vrpclfp4zljnbw5ax40lxyxc1813hwkdrmh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/html-script-src"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/html-script-src"; sha256 = "0pdyc2a9wxxc9rivjm2kgh4ysdxmdp73wg37nfy2nzka1m7qni7j"; name = "html-script-src"; }; @@ -29393,7 +29710,7 @@ html-to-markdown = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "html-to-markdown"; - version = "20151105.240"; + version = "20151105.340"; src = fetchFromGitHub { owner = "Malabarba"; repo = "html-to-markdown"; @@ -29401,7 +29718,7 @@ sha256 = "09n3zm9ivln8ng80fv5vwwzh9mj355ni685axda3m85xfxgai8gi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/html-to-markdown"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/html-to-markdown"; sha256 = "1gjh9ndqsb3nfb7w5h7carjckkgy6qh63b4mg141j19dsyx9rrjv"; name = "html-to-markdown"; }; @@ -29413,14 +29730,14 @@ }) {}; htmlize = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: melpaBuild { pname = "htmlize"; - version = "20130207.1402"; + version = "20130207.1502"; src = fetchgit { url = "http://fly.srk.fer.hr/~hniksic/emacs/htmlize.git"; rev = "aa6e2f6dba6fdfa200c7c55efe29ff63380eac8f"; sha256 = "0lc2j0zifjwzab2khwmd769i5497ddx28rb96y6zv2k261xziyla"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/htmlize"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/htmlize"; sha256 = "15pym76iwqb1dqkbmkgc1yar450g2xinfl89fyss2ifyi4am1nxp"; name = "htmlize"; }; @@ -29433,7 +29750,7 @@ http = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, request }: melpaBuild { pname = "http"; - version = "20160126.2225"; + version = "20160126.2325"; src = fetchFromGitHub { owner = "emacs-pe"; repo = "http.el"; @@ -29441,7 +29758,7 @@ sha256 = "1i0r677zwnl5xl64cqk47y0gfd87vw49nf6ry5v2imbc95ni56wc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/http"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/http"; sha256 = "1176jhm8m7s1pzp0zv1sqawcgn4m5zvxghypmsrjyyb5p7m6dalm"; name = "http"; }; @@ -29453,13 +29770,13 @@ }) {}; http-post-simple = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "http-post-simple"; - version = "20131010.2258"; + version = "20131010.2358"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/http-post-simple.el"; sha256 = "1wp2rwc1hgd5c3yr6b96yzzakd1qmy5d95mhc6q4f6lx279nx0my"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/http-post-simple"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/http-post-simple"; sha256 = "1b2fh0hp5z3712ncgc5ns1f3sww84khkq7zb3k9xclsp1p12a4cf"; name = "http-post-simple"; }; @@ -29472,7 +29789,7 @@ http-twiddle = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "http-twiddle"; - version = "20151121.744"; + version = "20151121.844"; src = fetchFromGitHub { owner = "hassy"; repo = "http-twiddle"; @@ -29480,7 +29797,7 @@ sha256 = "008iq5fhsw4qklw2l457a1cfqq8diadpnf1c1di5p07sc0za5562"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/http-twiddle"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/http-twiddle"; sha256 = "153qavpcwvk2g15w5a814xjsnsv54xksx4iz6yjffvvzq14a08ry"; name = "http-twiddle"; }; @@ -29493,7 +29810,7 @@ httpcode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "httpcode"; - version = "20121001.2245"; + version = "20121001.2345"; src = fetchFromGitHub { owner = "rspivak"; repo = "httpcode.el"; @@ -29501,7 +29818,7 @@ sha256 = "02jz8qwxl69zhwvpmlqc15znr8x4f30paqszmm7xrrrz5x1c1rn4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/httpcode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/httpcode"; sha256 = "05k1al1j119x6zf03p7jn2r9qql33859583nbf85k41bhicknpgh"; name = "httpcode"; }; @@ -29514,7 +29831,7 @@ httprepl = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "httprepl"; - version = "20141101.1234"; + version = "20141101.1334"; src = fetchFromGitHub { owner = "gregsexton"; repo = "httprepl.el"; @@ -29522,7 +29839,7 @@ sha256 = "0wd4wmy99mx677x4sdbp57bxxll1fsnnf8hk97r85xdmmjsmrkld"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/httprepl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/httprepl"; sha256 = "0899qb1yfnsyf04hhvnk47qnq4d1f4vd5ghj43x4743wd2b9qawh"; name = "httprepl"; }; @@ -29535,7 +29852,7 @@ hungry-delete = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "hungry-delete"; - version = "20151203.1514"; + version = "20151203.1614"; src = fetchFromGitHub { owner = "nflath"; repo = "hungry-delete"; @@ -29543,7 +29860,7 @@ sha256 = "1vy521ljn16a1lcmpj09mr9y0m15lfjhl6xk04sb7nisps3vljyl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hungry-delete"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/hungry-delete"; sha256 = "0hcsm3yndkyfqzb77ibx7df6bjppc34x5yabi6nd389pdscp9rpz"; name = "hungry-delete"; }; @@ -29556,7 +29873,7 @@ hy-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "hy-mode"; - version = "20151025.743"; + version = "20151025.843"; src = fetchFromGitHub { owner = "hylang"; repo = "hy-mode"; @@ -29564,7 +29881,7 @@ sha256 = "0wn83n1780bvrzx9p870wln51n9rfdghsxl79dp968dxycyhyxvj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hy-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/hy-mode"; sha256 = "1vxrqla3p82x7s3kn7x4h33vcdfms21srxgxzidr02k37f0vi82m"; name = "hy-mode"; }; @@ -29577,7 +29894,7 @@ hyai = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "hyai"; - version = "20160319.2035"; + version = "20160319.2135"; src = fetchFromGitHub { owner = "iquiw"; repo = "hyai"; @@ -29585,7 +29902,7 @@ sha256 = "0k7r5zddlfipnf6za467lmjx8s6h68dflj7gk05vqr4n4xniwgja"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hyai"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/hyai"; sha256 = "00ns7q5b11c5amwkq11fs4p5vrmdfmjljfrcxbwb39gc12yrhn7s"; name = "hyai"; }; @@ -29598,7 +29915,7 @@ hydandata-light-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "hydandata-light-theme"; - version = "20160122.1953"; + version = "20160122.2053"; src = fetchFromGitHub { owner = "hydandata"; repo = "hydandata-light-theme"; @@ -29606,7 +29923,7 @@ sha256 = "11vgz64f8vs8vqp4scj9qvrfdshag7bs615ly9zvzzlk68jivdya"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hydandata-light-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/hydandata-light-theme"; sha256 = "0jw43m91m10ifqg335y6d52r6ri77hcmxkird8wsyrpsnk3cfb60"; name = "hydandata-light-theme"; }; @@ -29619,7 +29936,7 @@ hyde = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "hyde"; - version = "20150615.1225"; + version = "20150615.1325"; src = fetchFromGitHub { owner = "nibrahim"; repo = "Hyde"; @@ -29627,7 +29944,7 @@ sha256 = "14gxbza26ccah8jl0fm7ksvaag0mv3c348bgqjy88dqq2qlwcrav"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hyde"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/hyde"; sha256 = "18kjcxm7qmv9bfh4crw37zgax8khjqs9zkp4lrb490zlad2asbs3"; name = "hyde"; }; @@ -29640,7 +29957,7 @@ hydra = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "hydra"; - version = "20160415.623"; + version = "20160415.723"; src = fetchFromGitHub { owner = "abo-abo"; repo = "hydra"; @@ -29648,7 +29965,7 @@ sha256 = "1h6pj6bgsh3z8azikxxvwqrbk7pg3zr5q2h3cha88fvxsrzxfhy7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hydra"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/hydra"; sha256 = "1c59l43p39ins3dn9690gm6llwm4b9p0pk78lip0dwlx736drdbw"; name = "hydra"; }; @@ -29661,7 +29978,7 @@ i2b2-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "i2b2-mode"; - version = "20140709.2004"; + version = "20140709.2104"; src = fetchFromGitHub { owner = "danlamanna"; repo = "i2b2-mode"; @@ -29669,7 +29986,7 @@ sha256 = "17k41rah17l9kf7bvlm83x71nzz4aizgn7254cl5sb59mdhcm8pm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/i2b2-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/i2b2-mode"; sha256 = "172qnprmfliic3rszzg3g7q015i3dchd23skrbdikg0kxj5c57lf"; name = "i2b2-mode"; }; @@ -29682,7 +29999,7 @@ iasm-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "iasm-mode"; - version = "20131004.1844"; + version = "20131004.1944"; src = fetchFromGitHub { owner = "RAttab"; repo = "iasm-mode"; @@ -29690,7 +30007,7 @@ sha256 = "1gl21li9vqfjvls4ffjw8a4bicas2c7hmaa621k3hpllgpy6qdg5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/iasm-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/iasm-mode"; sha256 = "09xh41ayaha07fi5crk3c6pn17gwm3samsf6h71ldkywvz74kipv"; name = "iasm-mode"; }; @@ -29703,7 +30020,7 @@ ibuffer-git = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ibuffer-git"; - version = "20110508.231"; + version = "20110508.331"; src = fetchFromGitHub { owner = "jrockway"; repo = "ibuffer-git"; @@ -29711,7 +30028,7 @@ sha256 = "1s5qvlf310b0z7q9k1xhcf4qmyfqd37jpqd67ciahaxk7cp224rd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ibuffer-git"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ibuffer-git"; sha256 = "048888y07bzmi9x5i43fg6bgqbzdqi3nfjfnn6zr29jvlx366r5z"; name = "ibuffer-git"; }; @@ -29724,7 +30041,7 @@ ibuffer-projectile = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, projectile }: melpaBuild { pname = "ibuffer-projectile"; - version = "20150121.1037"; + version = "20150121.1137"; src = fetchFromGitHub { owner = "purcell"; repo = "ibuffer-projectile"; @@ -29732,7 +30049,7 @@ sha256 = "1zcnp61c9cp2kvns3v499hifk072rxm4rhw4pvdv2mm966vcxzvc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ibuffer-projectile"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ibuffer-projectile"; sha256 = "1qh4krggmsc6lx5mg60n8aakmi3f6ppl1gw094vfcsni96jl34fk"; name = "ibuffer-projectile"; }; @@ -29745,7 +30062,7 @@ ibuffer-rcirc = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ibuffer-rcirc"; - version = "20150215.1518"; + version = "20150215.1618"; src = fetchFromGitHub { owner = "fgallina"; repo = "ibuffer-rcirc"; @@ -29753,7 +30070,7 @@ sha256 = "15lapyj7qkkw1i1g1aizappm7gxkfnxhvd4fq66lghkzb76clz2m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ibuffer-rcirc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ibuffer-rcirc"; sha256 = "1y6pyc6g8j42hs103yynjsdkkxvcq0q4xsz4r93rqwsr3za3wcmc"; name = "ibuffer-rcirc"; }; @@ -29766,7 +30083,7 @@ ibuffer-tramp = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ibuffer-tramp"; - version = "20151118.1139"; + version = "20151118.1239"; src = fetchFromGitHub { owner = "svend"; repo = "ibuffer-tramp"; @@ -29774,7 +30091,7 @@ sha256 = "1mfrbr725p27p3s5nxh7xhm81pdr78ysz8l3kwrlp97bb6dmljmq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ibuffer-tramp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ibuffer-tramp"; sha256 = "11a9b9g1jk2r3fldi012zka4jzy68kfn4991xp046qm2fbc7la32"; name = "ibuffer-tramp"; }; @@ -29787,7 +30104,7 @@ ibuffer-vc = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ibuffer-vc"; - version = "20150714.1520"; + version = "20150714.1620"; src = fetchFromGitHub { owner = "purcell"; repo = "ibuffer-vc"; @@ -29795,7 +30112,7 @@ sha256 = "0fwxhkx5rkyv3w5vs2swhmly9siahlww2ipsmk7v8xmvk4a63bhp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ibuffer-vc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ibuffer-vc"; sha256 = "0bn5qyiq07cgzci10xl57ss5wsk7bfhi3hjq2v6yvpy9v704dvla"; name = "ibuffer-vc"; }; @@ -29807,13 +30124,13 @@ }) {}; icicles = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "icicles"; - version = "20160328.1"; + version = "20160328.25"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/icicles.el"; sha256 = "1ppximw1j433hfp63apnsz9wgq1nj1lh5cd0zfchrkmgfyhymq7k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/icicles"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/icicles"; sha256 = "15h2511gm38q14avsd86j5mnxhsjvcdmwbnhj66ashj5p5nxhr92"; name = "icicles"; }; @@ -29825,13 +30142,13 @@ }) {}; icomplete-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "icomplete-plus"; - version = "20151231.1600"; + version = "20151231.1700"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/icomplete+.el"; sha256 = "0z7v4pj0m6pwrjzyzz2xmwf6a53kmka9hxlzd1dxcpzx47pyvz3w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/icomplete+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/icomplete+"; sha256 = "0gxqkj4bjrxb046qisfz22wvanxx6bzl4hfv91rfwm78q3484slx"; name = "icomplete-plus"; }; @@ -29844,7 +30161,7 @@ id-manager = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "id-manager"; - version = "20160425.416"; + version = "20160425.516"; src = fetchFromGitHub { owner = "kiwanami"; repo = "emacs-id-manager"; @@ -29852,7 +30169,7 @@ sha256 = "0xd0zhbabb9cx4rsapvq6qs40w4q2cav6p16vrka54rmr98544vl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/id-manager"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/id-manager"; sha256 = "13g5fi06hvx0x2wn1d1d8rkfq5n6wbk9g5bhx2b5sar2yw0akmwm"; name = "id-manager"; }; @@ -29865,7 +30182,7 @@ idea-darkula-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "idea-darkula-theme"; - version = "20160416.1803"; + version = "20160416.1903"; src = fetchFromGitHub { owner = "fourier"; repo = "idea-darkula-theme"; @@ -29873,7 +30190,7 @@ sha256 = "1hknhbm3b5rsba2s84iwspylhzjsm91zdckz22j9gyrq37wjgyrr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/idea-darkula-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/idea-darkula-theme"; sha256 = "0lanhwlhd7pbzjc047vd5sgsmi2bx66gr3inr8y57swgrfw3l8sk"; name = "idea-darkula-theme"; }; @@ -29886,7 +30203,7 @@ identica-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "identica-mode"; - version = "20130204.1653"; + version = "20130204.1753"; src = fetchFromGitHub { owner = "gabrielsaldana"; repo = "Emacs-Identica-mode"; @@ -29894,7 +30211,7 @@ sha256 = "047gzycr49cs8wlmm9j4ry7b7jxmfhmbayx6rbbxs49lba8dgwlk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/identica-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/identica-mode"; sha256 = "1r69ylykjap305g23cry4wajiqhpgw08nw3b5d9i1y3mwx0j253q"; name = "identica-mode"; }; @@ -29907,7 +30224,7 @@ idle-highlight-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "idle-highlight-mode"; - version = "20120920.1148"; + version = "20120920.1248"; src = fetchFromGitHub { owner = "nonsequitur"; repo = "idle-highlight-mode"; @@ -29915,7 +30232,7 @@ sha256 = "0x4w1ksrw7dicl84zpf4d4scg672dyan9g95jkn6zvri0lr8xciv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/idle-highlight-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/idle-highlight-mode"; sha256 = "1i5ky61bq0dpk71yasfpjhsrv29mmp9nly9f5xxin7gz3x0f36fc"; name = "idle-highlight-mode"; }; @@ -29928,7 +30245,7 @@ idle-require = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "idle-require"; - version = "20090715.1703"; + version = "20090715.1803"; src = fetchFromGitHub { owner = "nschum"; repo = "idle-require.el"; @@ -29936,7 +30253,7 @@ sha256 = "0f8rxvc3dk2hi4x524l18fx73xrxy0qqwbybdma4ca67ck9n6xam"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/idle-require"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/idle-require"; sha256 = "1lr330bqj4rfh2jgn3562sliani4yw5y4j2hr6cq9cfjjp18qgsj"; name = "idle-require"; }; @@ -29949,7 +30266,7 @@ ido-at-point = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ido-at-point"; - version = "20151021.257"; + version = "20151021.357"; src = fetchFromGitHub { owner = "katspaugh"; repo = "ido-at-point"; @@ -29957,7 +30274,7 @@ sha256 = "1bii7vj8pmmijcpvq3a1scky4ais7k6d7zympb3m9dmz355m9rpp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ido-at-point"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ido-at-point"; sha256 = "0jpgq2iiwgqifwdhwhqv0cd3lp846pdqar6rxqgw9fvvb8bijqm0"; name = "ido-at-point"; }; @@ -29970,7 +30287,7 @@ ido-clever-match = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ido-clever-match"; - version = "20151011.1226"; + version = "20151011.1326"; src = fetchFromGitHub { owner = "Bogdanp"; repo = "ido-clever-match"; @@ -29978,7 +30295,7 @@ sha256 = "14nmldahr0pj2x4vkzpnpx0bsxafmiihgjylk5j5linqvy8q6wk6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ido-clever-match"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ido-clever-match"; sha256 = "081i6cjvqyfpgj0nvzc94zrl2v3l6nv6mhfda4zf7c8qqbvx1m8m"; name = "ido-clever-match"; }; @@ -29991,7 +30308,7 @@ ido-complete-space-or-hyphen = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ido-complete-space-or-hyphen"; - version = "20130228.408"; + version = "20130228.508"; src = fetchFromGitHub { owner = "doitian"; repo = "ido-complete-space-or-hyphen"; @@ -29999,7 +30316,7 @@ sha256 = "1aih8n10lcrw0bdgvlrkxzhkpxpmphw07cvbp6zd27ia25037fzw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ido-complete-space-or-hyphen"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ido-complete-space-or-hyphen"; sha256 = "1wk0cq5gjnprmpyvhh80ksz3fash42hckvmx8m95crbzjg9j0gbc"; name = "ido-complete-space-or-hyphen"; }; @@ -30012,7 +30329,7 @@ ido-completing-read-plus = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ido-completing-read-plus"; - version = "20160320.138"; + version = "20160320.238"; src = fetchFromGitHub { owner = "DarwinAwardWinner"; repo = "ido-ubiquitous"; @@ -30020,7 +30337,7 @@ sha256 = "13mcpc8qlv0mvabd33cah1zqybfa0hrzanp16ikbsc449zyz3889"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ido-completing-read+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ido-completing-read+"; sha256 = "034j1q47d57ia5bwbf1w66gw6c7aqbhscpy3dg2a71lwjzfmshwh"; name = "ido-completing-read-plus"; }; @@ -30033,7 +30350,7 @@ ido-describe-bindings = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ido-describe-bindings"; - version = "20160105.253"; + version = "20160105.353"; src = fetchFromGitHub { owner = "danil"; repo = "ido-describe-bindings"; @@ -30041,7 +30358,7 @@ sha256 = "0055dda1la7yah33xsi19j4hcdmqp17ily2dvkipm4y6d3ww8yqa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ido-describe-bindings"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ido-describe-bindings"; sha256 = "1lsa09h025vd908r9q571iq2ia0zdpnq04mlihb3crpp5v9n9ws2"; name = "ido-describe-bindings"; }; @@ -30054,7 +30371,7 @@ ido-exit-target = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ido-exit-target"; - version = "20150904.937"; + version = "20150904.1037"; src = fetchFromGitHub { owner = "waymondo"; repo = "ido-exit-target"; @@ -30062,7 +30379,7 @@ sha256 = "1s93q47cadanynvm1y4y08s68yq0l8q8vfasdk7w39vrjsxxsj3x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ido-exit-target"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ido-exit-target"; sha256 = "17vmg47xwk6yjlbcsswirl8s2q565k291ajzjglnz7qg2fwx6spi"; name = "ido-exit-target"; }; @@ -30075,7 +30392,7 @@ ido-gnus = callPackage ({ fetchFromGitHub, fetchurl, gnus ? null, lib, melpaBuild }: melpaBuild { pname = "ido-gnus"; - version = "20140216.1046"; + version = "20140216.1146"; src = fetchFromGitHub { owner = "vapniks"; repo = "ido-gnus"; @@ -30083,7 +30400,7 @@ sha256 = "0ifdwd5vnjv2iyb5bnz8pij35lc0ymmyx8j8zhpkbgjigz8f05ip"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ido-gnus"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ido-gnus"; sha256 = "14ijb8q4s846984h102h72ij713v5bj3k2vfdvr94gw1f0iya2yg"; name = "ido-gnus"; }; @@ -30096,7 +30413,7 @@ ido-grid-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ido-grid-mode"; - version = "20160122.539"; + version = "20160122.639"; src = fetchFromGitHub { owner = "larkery"; repo = "ido-grid-mode.el"; @@ -30104,7 +30421,7 @@ sha256 = "1ip8g0r0aimhc4a1f06m711zmbs0krxn8hmayk99gk5kkz12igkb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ido-grid-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ido-grid-mode"; sha256 = "1wl1yclcxmkbfnvp0il23csdf6gprzf7fkcknpivk784fhl19acr"; name = "ido-grid-mode"; }; @@ -30117,7 +30434,7 @@ ido-hacks = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ido-hacks"; - version = "20150331.1409"; + version = "20150331.1509"; src = fetchFromGitHub { owner = "scottjad"; repo = "ido-hacks"; @@ -30125,7 +30442,7 @@ sha256 = "01p4az128k1jvd9i1gshgg87z6048cw9cnm57l8qdlw01c3h6dkx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ido-hacks"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ido-hacks"; sha256 = "05f9pdkqppnp7wafka2d2yj84gqchjd7vnrl5rcywy1l47gbxiw0"; name = "ido-hacks"; }; @@ -30138,7 +30455,7 @@ ido-load-library = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, pcache, persistent-soft }: melpaBuild { pname = "ido-load-library"; - version = "20140611.1100"; + version = "20140611.1200"; src = fetchFromGitHub { owner = "rolandwalker"; repo = "ido-load-library"; @@ -30146,7 +30463,7 @@ sha256 = "0l69sr3g1n2x61j6sv6hnbiyk8a2qra6y2kh413qp0sfpx4fzchv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ido-load-library"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ido-load-library"; sha256 = "13f83gqh39p3yjy7r7qc7kzgdcmqh4b5c07zl7rwzb8y9rz59lhj"; name = "ido-load-library"; }; @@ -30159,7 +30476,7 @@ ido-migemo = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, migemo }: melpaBuild { pname = "ido-migemo"; - version = "20150921.1744"; + version = "20150921.1844"; src = fetchFromGitHub { owner = "myuhe"; repo = "ido-migemo.el"; @@ -30167,7 +30484,7 @@ sha256 = "15iajhrgy989pn91ijcd1mq2015bkaacaplm79rmb0ggxhh8vq38"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ido-migemo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ido-migemo"; sha256 = "02hbwchwx2bcwdxz7gz555699l7n9wisfikax1j6idn167n4wdpi"; name = "ido-migemo"; }; @@ -30180,7 +30497,7 @@ ido-occasional = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ido-occasional"; - version = "20150214.648"; + version = "20150214.748"; src = fetchFromGitHub { owner = "abo-abo"; repo = "ido-occasional"; @@ -30188,7 +30505,7 @@ sha256 = "0zlkq29wxd3a4vg0w6ds2jad5h1pja7ccd3l6ppl0kz1b1517qlr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ido-occasional"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ido-occasional"; sha256 = "1vdh5i9qznzd9r148a6jw9v47swf7ykwyciqfzc3ismv5q909bl2"; name = "ido-occasional"; }; @@ -30201,7 +30518,7 @@ ido-occur = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ido-occur"; - version = "20160114.1313"; + version = "20160114.1413"; src = fetchFromGitHub { owner = "danil"; repo = "ido-occur"; @@ -30209,7 +30526,7 @@ sha256 = "0j12li001yq08vzwh1b25qyq09llizrkgaay9k07g9pvfxlx6zb3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ido-occur"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ido-occur"; sha256 = "058l2pklg12wkvyyshk8va6shphpbc508fv9a8x25pw857a28pji"; name = "ido-occur"; }; @@ -30222,7 +30539,7 @@ ido-select-window = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ido-select-window"; - version = "20131220.1447"; + version = "20131220.1547"; src = fetchFromGitHub { owner = "pjones"; repo = "ido-select-window"; @@ -30230,7 +30547,7 @@ sha256 = "0qvf3h2ljlbf3z36dhywzza62mfi6mqbrfc0sqfsbyia9bn1df4f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ido-select-window"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ido-select-window"; sha256 = "03xqfpnagy2sk67yq7n7s6ma3im37d558zzx8sdzd9pbfxy9ij23"; name = "ido-select-window"; }; @@ -30243,7 +30560,7 @@ ido-skk = callPackage ({ ddskk, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ido-skk"; - version = "20151111.350"; + version = "20151111.450"; src = fetchFromGitHub { owner = "tsukimizake"; repo = "ido-skk"; @@ -30251,7 +30568,7 @@ sha256 = "149cznbybwj0gkjyvpnh4kn258kxw449m7cn95n9jbh1r45vljvy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ido-skk"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ido-skk"; sha256 = "1fyzjkw9xp126bzfv1254bvyakh323iw3wdzrkd9gb4ir39k5jzw"; name = "ido-skk"; }; @@ -30264,7 +30581,7 @@ ido-sort-mtime = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ido-sort-mtime"; - version = "20131117.730"; + version = "20131117.830"; src = fetchFromGitHub { owner = "pkkm"; repo = "ido-sort-mtime"; @@ -30272,7 +30589,7 @@ sha256 = "0w3cr2yf8644i0g8w6r147vi9wanibn41sg7dzws51yb9q0y92vd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ido-sort-mtime"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ido-sort-mtime"; sha256 = "1dkny9y3x49dv1vjwz78x2qhb6kdq3fa8qh1xkm30jyapvgiwdg2"; name = "ido-sort-mtime"; }; @@ -30285,7 +30602,7 @@ ido-springboard = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ido-springboard"; - version = "20150505.1211"; + version = "20150505.1311"; src = fetchFromGitHub { owner = "jwiegley"; repo = "springboard"; @@ -30293,7 +30610,7 @@ sha256 = "0p13q8xax2h3m6rddvmh1p9biw3d1shvwwmqfhg0c93xajlwdfqi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ido-springboard"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ido-springboard"; sha256 = "04jqnag8jiyfbwvc3vd9ikrsmf6cajld7dz2gz9y0zkj1k4gs7zv"; name = "ido-springboard"; }; @@ -30306,7 +30623,7 @@ ido-ubiquitous = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, ido-completing-read-plus, lib, melpaBuild }: melpaBuild { pname = "ido-ubiquitous"; - version = "20160320.138"; + version = "20160320.238"; src = fetchFromGitHub { owner = "DarwinAwardWinner"; repo = "ido-ubiquitous"; @@ -30314,7 +30631,7 @@ sha256 = "13mcpc8qlv0mvabd33cah1zqybfa0hrzanp16ikbsc449zyz3889"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ido-ubiquitous"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ido-ubiquitous"; sha256 = "143pzpix9aqpzjy8akrxfsxmwlzc9bmaqzp9fyhjgzrhq7zchjsp"; name = "ido-ubiquitous"; }; @@ -30327,15 +30644,15 @@ ido-vertical-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ido-vertical-mode"; - version = "20151003.2033"; + version = "20160429.1337"; src = fetchFromGitHub { owner = "creichert"; repo = "ido-vertical-mode.el"; - rev = "0beaf1eaa8509bece9419b663826665322b22b4c"; - sha256 = "1vl87phswkciijq0j07lqlgmha5dmff8yd4j4jn7cfrkrdjp6jbx"; + rev = "b42e4227ed5d37b5d840a9d9d1cdaabf50e189b1"; + sha256 = "1h0kwsrg0xaqmk37hij2ssi9vcvxq49bdc4s3amwc45x1i369q7q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ido-vertical-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ido-vertical-mode"; sha256 = "1vg5s6nd6v2g8ychz1q9cdqvsdw6vag7d9w68sn7blpmlr0nqhfm"; name = "ido-vertical-mode"; }; @@ -30348,7 +30665,7 @@ ido-yes-or-no = callPackage ({ fetchFromGitHub, fetchurl, ido-completing-read-plus, lib, melpaBuild }: melpaBuild { pname = "ido-yes-or-no"; - version = "20160217.1817"; + version = "20160217.1917"; src = fetchFromGitHub { owner = "DarwinAwardWinner"; repo = "ido-yes-or-no"; @@ -30356,7 +30673,7 @@ sha256 = "046ns1nqisz830f6xwlly1qgmi4v2ikw6vmj0f93jprv4vkjylpq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ido-yes-or-no"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ido-yes-or-no"; sha256 = "0glag4yb9xyf1lxxbdhph2nq6s1vg44i6f2z1ii8bkxpambz2ana"; name = "ido-yes-or-no"; }; @@ -30369,7 +30686,7 @@ idomenu = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "idomenu"; - version = "20141123.1520"; + version = "20141123.1620"; src = fetchFromGitHub { owner = "birkenfeld"; repo = "idomenu"; @@ -30377,7 +30694,7 @@ sha256 = "1vx2g1xgxpcabr49mkl6ggzrpa3k2zhm479j6262vb64swzx33jw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/idomenu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/idomenu"; sha256 = "0mg601ak9mhp2fg5n13npcfzphgyms4vkqd18ldmv098z2z1412h"; name = "idomenu"; }; @@ -30390,7 +30707,7 @@ idris-mode = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, prop-menu }: melpaBuild { pname = "idris-mode"; - version = "20160302.835"; + version = "20160302.935"; src = fetchFromGitHub { owner = "idris-hackers"; repo = "idris-mode"; @@ -30398,7 +30715,7 @@ sha256 = "0ngqsh0ncwcr377ifvnx5j352bf1f7lhcq7qc8avcn5pwlshri4w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/idris-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/idris-mode"; sha256 = "0hiiizz976hz3z3ciwg1gs9y10qhxbs8givhz89kvyn4s4861a1s"; name = "idris-mode"; }; @@ -30411,7 +30728,7 @@ ids-edit = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ids-edit"; - version = "20160324.1722"; + version = "20160324.1822"; src = fetchFromGitHub { owner = "kawabata"; repo = "ids-edit"; @@ -30419,7 +30736,7 @@ sha256 = "18dca47ds5fiihijd1vv7nif44n4b4nv4za2djjfqbhbvizra1fd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ids-edit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ids-edit"; sha256 = "0jzmcynr6lvsr36nblqzrjwxawyqcdz972zsv4rqkihdydpqfz7m"; name = "ids-edit"; }; @@ -30432,7 +30749,7 @@ iedit = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "iedit"; - version = "20150915.2222"; + version = "20150915.2322"; src = fetchFromGitHub { owner = "victorhge"; repo = "iedit"; @@ -30440,7 +30757,7 @@ sha256 = "1n2yz6jzbminrviadhd3h42fwvfrdy0v2nw7sk5plkzc8zrs3x25"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/iedit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/iedit"; sha256 = "02gjshvkcvyr58yf6vlg3s2pzls5sd54xpxggdmqajfg8xmpkq04"; name = "iedit"; }; @@ -30453,7 +30770,7 @@ ietf-docs = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ietf-docs"; - version = "20150928.457"; + version = "20150928.557"; src = fetchFromGitHub { owner = "choppsv1"; repo = "ietf-docs"; @@ -30461,7 +30778,7 @@ sha256 = "0b86x675g95yrlc0alffx0z9fmficlwv3gpy5cy86z1xvvyh3nzw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ietf-docs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ietf-docs"; sha256 = "0wnk36z9g7lksmynd04hb2m6rx45wpxnxj1lhrlpjnzsrknhf4k3"; name = "ietf-docs"; }; @@ -30474,7 +30791,7 @@ iflipb = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "iflipb"; - version = "20141123.1516"; + version = "20141123.1616"; src = fetchFromGitHub { owner = "jrosdahl"; repo = "iflipb"; @@ -30482,7 +30799,7 @@ sha256 = "18rlyjsn9w0zbs0c002s84qzark3rrcmjn9vq4nap7i6zpaq8hki"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/iflipb"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/iflipb"; sha256 = "1nfrrxgi9nlhn477z8ay7jxycpcghhhmmg9dagdhrlrr20fx697d"; name = "iflipb"; }; @@ -30495,7 +30812,7 @@ ignoramus = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ignoramus"; - version = "20160414.909"; + version = "20160414.1009"; src = fetchFromGitHub { owner = "rolandwalker"; repo = "ignoramus"; @@ -30503,7 +30820,7 @@ sha256 = "1b4r4h8yrs8zkyr1hnnx2wjrmm39wbqxfhyxpjb5pxi4zk3fh4rj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ignoramus"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ignoramus"; sha256 = "1czqdmlrds1l5afi8ldg7nrxcwav86538z2w1npad3dz8xk67da9"; name = "ignoramus"; }; @@ -30515,13 +30832,13 @@ }) {}; igrep = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "igrep"; - version = "20130824.707"; + version = "20130824.807"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/igrep.el"; sha256 = "0qiv69v7ig38iizif7zg8aljdmpa1jk8bsfa0iyhqqqrkvsmhc29"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/igrep"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/igrep"; sha256 = "1vyhrziy29q6w8w9vvanb7d29r1n7nfkznbcd62il991n48d08i3"; name = "igrep"; }; @@ -30533,14 +30850,14 @@ }) {}; igv = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: melpaBuild { pname = "igv"; - version = "20141210.627"; + version = "20141210.727"; src = fetchgit { url = "https://bitbucket.org/sbarbit/eigv"; rev = "47ac6ceede252f451348a2c696398c0cb5279555"; sha256 = "11pss3hfxkfkyi273zfajdj43shdl6pn739zfv9jbm75v7m9bz6f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/igv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/igv"; sha256 = "01igm3cb0lncmcyy72mjf93byh42k2hvscqhg8r7iljbxm58460z"; name = "igv"; }; @@ -30553,7 +30870,7 @@ image-archive = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "image-archive"; - version = "20150620.2032"; + version = "20150620.2132"; src = fetchFromGitHub { owner = "mhayashi1120"; repo = "Emacs-image-archive"; @@ -30561,7 +30878,7 @@ sha256 = "068z3ygq9p139ikm04xqhhqhc994an5isba5c7kpqs009y09xw3w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/image-archive"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/image-archive"; sha256 = "0x0lv5dr1gc9bnr3dn26bc9s1ccq2rp8c4a1licbi929f0jyxxfp"; name = "image-archive"; }; @@ -30574,7 +30891,7 @@ image-dired-plus = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "image-dired-plus"; - version = "20150430.44"; + version = "20150430.144"; src = fetchFromGitHub { owner = "mhayashi1120"; repo = "Emacs-image-diredx"; @@ -30582,7 +30899,7 @@ sha256 = "1n2ya9s0ld257a8iryjd0dz0z2zs1xhzfiwsdkq4l4azwxl54m29"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/image-dired+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/image-dired+"; sha256 = "0hhwqfn490n7p12n7ij4xbjh15gfvicmn21fvwbnrmfqc343pcdy"; name = "image-dired-plus"; }; @@ -30595,7 +30912,7 @@ image-plus = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "image-plus"; - version = "20150707.1116"; + version = "20150707.1216"; src = fetchFromGitHub { owner = "mhayashi1120"; repo = "Emacs-imagex"; @@ -30603,7 +30920,7 @@ sha256 = "0v66wk9nh0raih4jhrzmmyi5lbysjnmbv791vm2230ffi2hmwxnd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/image+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/image+"; sha256 = "1a9dxswnqn6cvx28180kclpjc0vc6fimzp7n91gpdwnmy123x6hg"; name = "image-plus"; }; @@ -30616,7 +30933,7 @@ imakado = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "imakado"; - version = "20141024.423"; + version = "20141024.523"; src = fetchFromGitHub { owner = "imakado"; repo = "emacs-imakado"; @@ -30624,7 +30941,7 @@ sha256 = "0f3xdqhq9nprvl8bnmgrx20h08ddkfak0is29bsqwckkfgn7pmqp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/imakado"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/imakado"; sha256 = "18mj0vpv3dybfpa8hl9jwlagsivbhgqgz8lwb8cswsq9hwv3jgd3"; name = "imakado"; }; @@ -30637,7 +30954,7 @@ imapfilter = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "imapfilter"; - version = "20160419.446"; + version = "20160419.546"; src = fetchFromGitHub { owner = "tarsius"; repo = "imapfilter"; @@ -30645,7 +30962,7 @@ sha256 = "15lflvpapm5749qq7jzdwbd0isb89i6df3np4wn9y9gjl7y92wk7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/imapfilter"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/imapfilter"; sha256 = "0i893kqj6yzadhza800r6ri7fihl01r57z8yrzzh3d09qaias5vz"; name = "imapfilter"; }; @@ -30658,15 +30975,15 @@ imenu-anywhere = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "imenu-anywhere"; - version = "20160426.1132"; + version = "20160427.518"; src = fetchFromGitHub { owner = "vspinu"; repo = "imenu-anywhere"; - rev = "a1c0d4acc2abc366ac5a4c975524c14c5804233f"; - sha256 = "1hdfnbxcawwhlff9yndh4n5z7a1dgyab3qid6pm6xzbckmhbqss3"; + rev = "938166bc02b88edd3af94dd1381755eed0b6d4e0"; + sha256 = "16r9jjl05ga016rds4v2vrir08mfz08rrphn3cmsdkpqxrzw6jhr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/imenu-anywhere"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/imenu-anywhere"; sha256 = "1ylqzdnd3nzcpyyd6rh6i5q9mvf8c99rvpk51fzfm3yq2kyw4dbq"; name = "imenu-anywhere"; }; @@ -30679,7 +30996,7 @@ imenu-list = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "imenu-list"; - version = "20160211.541"; + version = "20160211.641"; src = fetchFromGitHub { owner = "bmag"; repo = "imenu-list"; @@ -30687,7 +31004,7 @@ sha256 = "1j0p0zkk89lg5xk5qzdnj9nxxiaxhff2y9iv9lw456kvb3lsyvjk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/imenu-list"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/imenu-list"; sha256 = "092fsn7hnbfabcyakbqyk20pk62sr8xrs45aimkv1l91681np98s"; name = "imenu-list"; }; @@ -30699,13 +31016,13 @@ }) {}; imenu-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "imenu-plus"; - version = "20151231.1601"; + version = "20151231.1701"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/imenu+.el"; sha256 = "00w88d37mg2hdrzpw5cxrgqz5jbf7rylmir95hs8j1cm8fk787bb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/imenu+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/imenu+"; sha256 = "1v2h3xs5pnv7z5qphkn2y5pa1p8pivrknkw7xihm5yr4a4dqjv5d"; name = "imenu-plus"; }; @@ -30718,7 +31035,7 @@ imenus = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "imenus"; - version = "20160220.1532"; + version = "20160220.1632"; src = fetchFromGitHub { owner = "alezost"; repo = "imenus.el"; @@ -30726,7 +31043,7 @@ sha256 = "1y57xp0w0c6hg3gn4f1l3612a18li4gwhfa4dy18fy94gr54ycpx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/imenus"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/imenus"; sha256 = "1q0j6r2n5vjlbgchkz9zdglmmbpd8agawzcg61knqrgzpc4lk82r"; name = "imenus"; }; @@ -30739,7 +31056,7 @@ imgix = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, ht, json ? null, lib, melpaBuild, s }: melpaBuild { pname = "imgix"; - version = "20141226.1532"; + version = "20141226.1632"; src = fetchFromGitHub { owner = "imgix"; repo = "imgix-emacs"; @@ -30747,7 +31064,7 @@ sha256 = "1q53r3f3x0hpzryxd1v1w3qgs54p384q0azi7xj2gppi1q49sa42"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/imgix"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/imgix"; sha256 = "0dh7qsz5c9mflldcw60vc8mrxrw76n2ydd7blv6jfmsnr19ila4q"; name = "imgix"; }; @@ -30760,7 +31077,7 @@ imgur = callPackage ({ anything, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "imgur"; - version = "20120307.425"; + version = "20120307.525"; src = fetchFromGitHub { owner = "myuhe"; repo = "imgur.el"; @@ -30768,7 +31085,7 @@ sha256 = "0nzgfj083im8lc62ifgsh1pmbw0j9wivimjgih7k6ny3jgw834rs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/imgur"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/imgur"; sha256 = "0hr2zz7nq65jig2036g5sa8q2lhb42jv40ijikcz8s4f5v3y14i7"; name = "imgur"; }; @@ -30781,7 +31098,7 @@ immutant-server = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "immutant-server"; - version = "20140311.1708"; + version = "20140311.1808"; src = fetchFromGitHub { owner = "leathekd"; repo = "immutant-server.el"; @@ -30789,7 +31106,7 @@ sha256 = "0rbamm9qvipgswxng8g1d7rbdbcj7sgwrccg7imcfapwwq7xhj4h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/immutant-server"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/immutant-server"; sha256 = "15vcxag1ni41ja4b3q0444sq5ysrisis59la7li6h3617wy8r02i"; name = "immutant-server"; }; @@ -30802,7 +31119,7 @@ impatient-mode = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, htmlize, lib, melpaBuild, simple-httpd }: melpaBuild { pname = "impatient-mode"; - version = "20150501.447"; + version = "20150501.547"; src = fetchFromGitHub { owner = "netguy204"; repo = "imp.el"; @@ -30810,7 +31127,7 @@ sha256 = "0vr4i3ayp1n8zg3v9rfv81qnr0vrdbkzphwd5kyadjgy4sbfjykj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/impatient-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/impatient-mode"; sha256 = "05vp04zh5w0ss959galdrnridv268dzqymqzqfpkfjbg8kryzfxg"; name = "impatient-mode"; }; @@ -30820,31 +31137,10 @@ license = lib.licenses.free; }; }) {}; - import-js = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: - melpaBuild { - pname = "import-js"; - version = "20160103.1631"; - src = fetchFromGitHub { - owner = "trotzig"; - repo = "import-js"; - rev = "0635ef3a17ccc985e707117f6ab753fdbf90573c"; - sha256 = "1px5ym5mpna5vkbl07liqyw46x9n13nf98k44xx9papzb0ss6hf1"; - }; - recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/import-js"; - sha256 = "1grvzy378qj14wlbmhb3j7fx2zkl9wp65b5g0brjimav08nz7bls"; - name = "import-js"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/import-js"; - license = lib.licenses.free; - }; - }) {}; import-popwin = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, popwin }: melpaBuild { pname = "import-popwin"; - version = "20150716.433"; + version = "20150716.533"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-import-popwin"; @@ -30852,7 +31148,7 @@ sha256 = "0ycsdwwfb27g85aby4jix1aj41a4vq6bf541iwla0xh3wsyxb01w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/import-popwin"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/import-popwin"; sha256 = "0vkw6y09m68bvvn1wzah4gzm69z099xnqhn359xfns2ljm74bvgy"; name = "import-popwin"; }; @@ -30865,7 +31161,7 @@ indent-guide = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "indent-guide"; - version = "20151119.917"; + version = "20151119.1017"; src = fetchFromGitHub { owner = "zk-phi"; repo = "indent-guide"; @@ -30873,7 +31169,7 @@ sha256 = "1p54w9dwkc76nvc4m0q9a0lh4bdxp4ad1wzscadayqy8qbrylf97"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/indent-guide"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/indent-guide"; sha256 = "029fj9rr9vfmkysi6lzpwra92j6ppw675qpj3sinfq7fqqlicvp7"; name = "indent-guide"; }; @@ -30886,7 +31182,7 @@ indicators = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "indicators"; - version = "20130217.1605"; + version = "20130217.1705"; src = fetchFromGitHub { owner = "Fuco1"; repo = "indicators.el"; @@ -30894,7 +31190,7 @@ sha256 = "1zsw68zzvjjh93cldc0w83k67hzcgi226vz3d0nzqc9sczqk8civ"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/indicators"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/indicators"; sha256 = "1rhmz8sfi2gnv72sbw6kgyzidk43mnp05wnscw9vjvz9v0vwirss"; name = "indicators"; }; @@ -30907,7 +31203,7 @@ indy = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "indy"; - version = "20150610.1206"; + version = "20150610.1306"; src = fetchFromGitHub { owner = "kwrooijen"; repo = "indy"; @@ -30915,7 +31211,7 @@ sha256 = "0kv0aj444i2rzksvcfz8sw0yyig3ca3m05agnhw9jzr01y05yl1n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/indy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/indy"; sha256 = "118n3n07h1vx576fdv6v5a94aa004q0gmy9hlsnrswpxa30ahnw7"; name = "indy"; }; @@ -30928,7 +31224,7 @@ inf-clojure = callPackage ({ clojure-mode, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "inf-clojure"; - version = "20160404.2338"; + version = "20160405.38"; src = fetchFromGitHub { owner = "clojure-emacs"; repo = "inf-clojure"; @@ -30936,7 +31232,7 @@ sha256 = "1632q7zbqqs5nvvxly3b2fj9b9q9mgxwh5sspamj7442s7i0j645"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/inf-clojure"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/inf-clojure"; sha256 = "0n8w0vx1dnbfz88j45a57z9bsmkxr2zyh6ld72ady8asanf17zhl"; name = "inf-clojure"; }; @@ -30949,7 +31245,7 @@ inf-mongo = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "inf-mongo"; - version = "20131216.428"; + version = "20131216.528"; src = fetchFromGitHub { owner = "tobiassvn"; repo = "inf-mongo"; @@ -30957,7 +31253,7 @@ sha256 = "14kf3zvms1w8cbixhpgw3m2xxc2r87i57gmx00jwh89282i6kgsi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/inf-mongo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/inf-mongo"; sha256 = "09hf3jmacsk4hl0rxk35cza8vjl0xfmv19dagb8h8fli97fb65hh"; name = "inf-mongo"; }; @@ -30970,7 +31266,7 @@ inf-php = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, php-mode }: melpaBuild { pname = "inf-php"; - version = "20130414.221"; + version = "20130414.321"; src = fetchFromGitHub { owner = "taksatou"; repo = "inf-php"; @@ -30978,7 +31274,7 @@ sha256 = "1z5ns94xgj2dkv2sc2ckax6bzwdxsm19pkvni24ys2w7d5nhajzr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/inf-php"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/inf-php"; sha256 = "011sc6f0ka7mmik8z0df8qk24mf6ygq22jy781f2ikhjh94gy83d"; name = "inf-php"; }; @@ -30991,7 +31287,7 @@ inf-ruby = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "inf-ruby"; - version = "20160423.1037"; + version = "20160423.1137"; src = fetchFromGitHub { owner = "nonsequitur"; repo = "inf-ruby"; @@ -30999,7 +31295,7 @@ sha256 = "12qjz6bp6p6yh5nxin6w7snil9954mhd4kfnk0wwbijpd1lqw73l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/inf-ruby"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/inf-ruby"; sha256 = "02f01vwzr6j9iqcdns4l579bhia99sw8hwdqfwqjs9gk3xampfpp"; name = "inf-ruby"; }; @@ -31012,7 +31308,7 @@ inflections = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "inflections"; - version = "20121016.357"; + version = "20121016.457"; src = fetchFromGitHub { owner = "eschulte"; repo = "jump.el"; @@ -31020,7 +31316,7 @@ sha256 = "0061hcmj63g13bvacwkmcb5iggwnk27dvb04fz4hihqis6jg01c5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/inflections"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/inflections"; sha256 = "0f02bhm2a5xiaxnf2c2hlpa4p121xfyyj3c59fy0yldipdxhvw70"; name = "inflections"; }; @@ -31032,13 +31328,13 @@ }) {}; info-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "info-plus"; - version = "20151231.1603"; + version = "20151231.1703"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/info+.el"; sha256 = "068y1p44ynimxfrqgrrhrj4gldf661dr0kbc9p7dqm1mw928hxmm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/info+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/info+"; sha256 = "0flpmi8dsaalg14xd86xcr087j51899sm8ghsa150ag4g4acfggr"; name = "info-plus"; }; @@ -31051,7 +31347,7 @@ inform7-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, sws-mode }: melpaBuild { pname = "inform7-mode"; - version = "20131010.154"; + version = "20131010.254"; src = fetchFromGitHub { owner = "fred-o"; repo = "inform7-mode"; @@ -31059,7 +31355,7 @@ sha256 = "19kc6a8jkx22rg9xp862pqfhv0an7q6fs7v7i2kxp3ji55aq001w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/inform7-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/inform7-mode"; sha256 = "0fpnf9rgizsfz9pn06k87v4s0dr7z1pn0gdxfi6hnnv68qni8hg3"; name = "inform7-mode"; }; @@ -31072,7 +31368,7 @@ init-loader = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "init-loader"; - version = "20141031.133"; + version = "20141031.233"; src = fetchFromGitHub { owner = "emacs-jp"; repo = "init-loader"; @@ -31080,7 +31376,7 @@ sha256 = "1zykh80k2sy0as1rn7qaa2hyvkagcvzzmxik4jpb0apw0ha1bf6s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/init-loader"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/init-loader"; sha256 = "0rq7759abp0ml0l8dycvdl0j5wsxw9z5y9pyx68973a4ssbx2i0r"; name = "init-loader"; }; @@ -31093,7 +31389,7 @@ init-open-recentf = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "init-open-recentf"; - version = "20151106.2223"; + version = "20151106.2323"; src = fetchFromGitHub { owner = "zonuexe"; repo = "init-open-recentf.el"; @@ -31101,7 +31397,7 @@ sha256 = "0xk7lyhd9pgahbscqwa2qkh2vgnbs5yz78am3zh930k4ig9lbmjh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/init-open-recentf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/init-open-recentf"; sha256 = "0xlmfxhxb2car8vfx7krxmxb3d56x0r3zzkj8ds7yqvr65z85x2r"; name = "init-open-recentf"; }; @@ -31114,7 +31410,7 @@ initsplit = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "initsplit"; - version = "20160113.853"; + version = "20160113.953"; src = fetchFromGitHub { owner = "dabrahams"; repo = "initsplit"; @@ -31122,7 +31418,7 @@ sha256 = "1qvkxpxdv0n9qlzigvi25iw485824pgbpb10lwhh8bs2074dvrgq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/initsplit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/initsplit"; sha256 = "0n9dk3x62vgxfn39jkmdg8wxsik0xqkprifgvqzyvn8xcx1blyyq"; name = "initsplit"; }; @@ -31135,7 +31431,7 @@ inkpot-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "inkpot-theme"; - version = "20120505.908"; + version = "20120505.1008"; src = fetchFromGitHub { owner = "siovan"; repo = "emacs24-inkpot"; @@ -31143,7 +31439,7 @@ sha256 = "063v3a783si5fi8jrnysss60qma1c3whvyb48i10qbrrrx750cmv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/inkpot-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/inkpot-theme"; sha256 = "0w4q74w769n88zb2q7x326cxji42278lf95wnpslgjybnaxycgw7"; name = "inkpot-theme"; }; @@ -31156,7 +31452,7 @@ inline-crypt = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "inline-crypt"; - version = "20130409.707"; + version = "20130409.807"; src = fetchFromGitHub { owner = "Sodel-the-Vociferous"; repo = "inline-crypt-el"; @@ -31164,7 +31460,7 @@ sha256 = "0jipds844432a8m4d5gxbbkk2h1rsq9fg748g6bxy2q066kyzfz6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/inline-crypt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/inline-crypt"; sha256 = "04mcyyqa9h6g6wrzphzqalpqxsndmzxpavlpdc24z4a2c5s3yz8n"; name = "inline-crypt"; }; @@ -31177,7 +31473,7 @@ inlineR = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "inlineR"; - version = "20120520.932"; + version = "20120520.1032"; src = fetchFromGitHub { owner = "myuhe"; repo = "inlineR.el"; @@ -31185,7 +31481,7 @@ sha256 = "15nasjknmzy57ilj1gaz3w5sj8b3ijcpgwcd6w2r9xhgcl86m40q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/inlineR"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/inlineR"; sha256 = "1fflq2gkpfn3jkv4a6yywzmxsq6qszfid1ri85ass1ppw6scdvzw"; name = "inlineR"; }; @@ -31198,7 +31494,7 @@ insert-shebang = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "insert-shebang"; - version = "20160413.912"; + version = "20160413.1012"; src = fetchFromGitHub { owner = "psachin"; repo = "insert-shebang"; @@ -31206,7 +31502,7 @@ sha256 = "198pgj0xsfyp8s1kkjjp48w7j3i5cf6zsp46vdwiifj64yfmq7yi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/insert-shebang"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/insert-shebang"; sha256 = "0z88l1q925v9lwzr6nas9qjy0f57qxilg6smgpx9wj6lll3f7p5v"; name = "insert-shebang"; }; @@ -31219,7 +31515,7 @@ insfactor = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "insfactor"; - version = "20141116.1802"; + version = "20141116.1902"; src = fetchFromGitHub { owner = "duelinmarkers"; repo = "insfactor.el"; @@ -31227,7 +31523,7 @@ sha256 = "112s3c0ii8zjc6vlj2im2qd2pl3hb95pq4zibm86gjpw428wd8iy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/insfactor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/insfactor"; sha256 = "0c6q1d864qc78sqk9iadjpd01xc7myipgnf89pqa2z75yprndvyn"; name = "insfactor"; }; @@ -31240,14 +31536,14 @@ instapaper = callPackage ({ fetchhg, fetchurl, lib, melpaBuild }: melpaBuild { pname = "instapaper"; - version = "20130104.821"; + version = "20130104.921"; src = fetchhg { url = "https://bitbucket.com/jfm/emacs-instapaper"; rev = "8daa0058ede7"; sha256 = "0krscid3yz2b7kv75gd9fs92zgfl7pnl77dbp5gycv5rmw5mivp8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/instapaper"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/instapaper"; sha256 = "1yibdpj3lx6vr33s75s1y415lxqljrk7pqc901f8nfa01kca7axn"; name = "instapaper"; }; @@ -31260,7 +31556,7 @@ interaction-log = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "interaction-log"; - version = "20160305.701"; + version = "20160305.801"; src = fetchFromGitHub { owner = "michael-heerdegen"; repo = "interaction-log.el"; @@ -31268,7 +31564,7 @@ sha256 = "0mvhydb4lfm2kazmb7fab8zh7sd8l9casghn8wl42mqji3v7lfwh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/interaction-log"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/interaction-log"; sha256 = "1r9qbvgssc2zdwgwmmwv5kapvmg1y3px7268gkiakkfanw3kqk6j"; name = "interaction-log"; }; @@ -31281,7 +31577,7 @@ interleave = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "interleave"; - version = "20160208.437"; + version = "20160208.537"; src = fetchFromGitHub { owner = "rudolfochrist"; repo = "interleave"; @@ -31289,7 +31585,7 @@ sha256 = "1qs6j9cz152wfy54c5d1a558l0df6wxv3djlvfl2mx58wf0sk73h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/interleave"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/interleave"; sha256 = "18b3fpxn07y5abkcnaw9is9ihdhik7xjdj6kzl1pz958lk9f4hfy"; name = "interleave"; }; @@ -31302,7 +31598,7 @@ interval-list = callPackage ({ cl-lib ? null, dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "interval-list"; - version = "20150327.1218"; + version = "20150327.1318"; src = fetchFromGitHub { owner = "Fuco1"; repo = "interval-list"; @@ -31310,7 +31606,7 @@ sha256 = "1zv6m24ryls9hvla3hf8wzp6r7fzbxa1lzr1mb0wz0s292l38wjz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/interval-list"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/interval-list"; sha256 = "0926z3lxkmpxalpq7hj355cjzbgpdiw7z4s8xdrpa1pi818d35zf"; name = "interval-list"; }; @@ -31323,7 +31619,7 @@ interval-tree = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "interval-tree"; - version = "20130325.907"; + version = "20130325.1007"; src = fetchFromGitHub { owner = "Fuco1"; repo = "interval-tree"; @@ -31331,7 +31627,7 @@ sha256 = "0fqnn9xhrc9hkaiziafjgg288l6m05416z9kz8l5845fnqsb7pb3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/interval-tree"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/interval-tree"; sha256 = "13zynac3h50x68f1ja72kqdrapjks2zmgqd4g7qwscq92mmh60i9"; name = "interval-tree"; }; @@ -31344,7 +31640,7 @@ io-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "io-mode"; - version = "20140814.521"; + version = "20140814.621"; src = fetchFromGitHub { owner = "superbobry"; repo = "io-mode"; @@ -31352,7 +31648,7 @@ sha256 = "10xpxmbzhmi0lmby2rpmxrbr3qf1vlbif2inmfsvkj85wyh8a7rp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/io-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/io-mode"; sha256 = "1fpiml7lvbl4s2xw4wk2y10iifvfza24kd9j8qvi1bgd85qkx42q"; name = "io-mode"; }; @@ -31365,7 +31661,7 @@ io-mode-inf = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "io-mode-inf"; - version = "20140128.1334"; + version = "20140128.1434"; src = fetchFromGitHub { owner = "slackorama"; repo = "io-emacs"; @@ -31373,7 +31669,7 @@ sha256 = "1ard88kc13c57y9zdkyr012w8rdrwahz8a3fb5v6hwqymg16m20s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/io-mode-inf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/io-mode-inf"; sha256 = "0hwhvf1qwkmzzlzdda1flw6p1jjh9rzxsfwm2sc4795ac2xm6dhc"; name = "io-mode-inf"; }; @@ -31386,7 +31682,7 @@ ioccur = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ioccur"; - version = "20130822.48"; + version = "20130822.148"; src = fetchFromGitHub { owner = "thierryvolpiatto"; repo = "ioccur"; @@ -31394,7 +31690,7 @@ sha256 = "1rz5wf19lg1lnm0h73ynhb0vl3c99k7vpipay2f8jls24pv60bra"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ioccur"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ioccur"; sha256 = "1a9iy6x4lkm4wgkcb0pv86c2kvpq8ymrc4ssp109r67kwqw7lrr6"; name = "ioccur"; }; @@ -31407,7 +31703,7 @@ iodine-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "iodine-theme"; - version = "20151031.1139"; + version = "20151031.1239"; src = fetchFromGitHub { owner = "srdja"; repo = "iodine-theme"; @@ -31415,7 +31711,7 @@ sha256 = "14zfxa8fc7h4rkz1hyplwf4q2lga3l5dd7a2xq5kk0kvf2fs4mk3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/iodine-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/iodine-theme"; sha256 = "05mnq0bgcla0pxsgywpvcdgd4sk2xr7bjlp87l0dx8j121vqripj"; name = "iodine-theme"; }; @@ -31428,7 +31724,7 @@ iplayer = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "iplayer"; - version = "20150101.455"; + version = "20150101.555"; src = fetchFromGitHub { owner = "csrhodes"; repo = "iplayer-el"; @@ -31436,7 +31732,7 @@ sha256 = "043dnij48zdyg081sa7y64lm35z7zvrv8gcymv3l3a98r1yhy3v6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/iplayer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/iplayer"; sha256 = "0wnxvdlnvlmspqsaqx0ldw8j03qjckkqzvx3cbpc2yfs55pm3p7r"; name = "iplayer"; }; @@ -31449,7 +31745,7 @@ ipretty = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ipretty"; - version = "20140407.20"; + version = "20140407.120"; src = fetchFromGitHub { owner = "steckerhalter"; repo = "ipretty"; @@ -31457,7 +31753,7 @@ sha256 = "0skyd9c7pz68v17aj3h47ralszbmc4gqg552q8jpimcjd1lacc7l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ipretty"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ipretty"; sha256 = "1zysip6cb8s4nzsxiwk052gq6higz2xnd376r9wxmgj7w8him2c4"; name = "ipretty"; }; @@ -31470,7 +31766,7 @@ ir-black-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ir-black-theme"; - version = "20130303.155"; + version = "20130303.255"; src = fetchFromGitHub { owner = "jmdeldin"; repo = "ir-black-theme.el"; @@ -31478,7 +31774,7 @@ sha256 = "1cy9xwhswj9vahg8zr16r2crm2mm3vczqs73gc580iidasb1q1i2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ir-black-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ir-black-theme"; sha256 = "1qpq9zbv63ywzk5mlr8x53g3rn37k0mdv6x1l1hcd90gka7vga9v"; name = "ir-black-theme"; }; @@ -31491,7 +31787,7 @@ iregister = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "iregister"; - version = "20150515.1607"; + version = "20150515.1707"; src = fetchFromGitHub { owner = "atykhonov"; repo = "iregister.el"; @@ -31499,7 +31795,7 @@ sha256 = "1ch610b3d0x3nxglp749305syliivamc108rgv9if4ihb67gp8b5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/iregister"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/iregister"; sha256 = "0iq1nlj5czi4nblrszfv3grkl1fni7blh8bhcfccidms8v9r3mdm"; name = "iregister"; }; @@ -31511,13 +31807,13 @@ }) {}; irfc = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "irfc"; - version = "20130824.707"; + version = "20130824.807"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/irfc.el"; sha256 = "197ybqwbj8qjh2p9pkf5mvqnrkpcgmv8c5s2gvl6msyrabk0mnca"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/irfc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/irfc"; sha256 = "0186l6zk5l427vjvmjvi0xhwk8a4fjhsvw9kd0yw88q3ggpdl25i"; name = "irfc"; }; @@ -31530,15 +31826,15 @@ irony = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, json ? null, lib, melpaBuild }: melpaBuild { pname = "irony"; - version = "20160317.1727"; + version = "20160506.1255"; src = fetchFromGitHub { owner = "Sarcasm"; repo = "irony-mode"; - rev = "3d64dec24b01bc582801db537ed12a5812f4f0ee"; - sha256 = "1y72xhs978ah53fmp10pa8riscx94y9bjvr26wk2f3zc94c6cq3d"; + rev = "8d6562a5d75ba65c6fbeff50d2eb9127d45dffa9"; + sha256 = "0hglggkjd6201vjrj8pb1xpw7811wb21vmi2c4wj7qy1rkg3lzpb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/irony"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/irony"; sha256 = "1xcxrdrs7imi31nxpszgpaywq4ivni75hrdl4zzrf103xslqpl8a"; name = "irony"; }; @@ -31551,7 +31847,7 @@ irony-eldoc = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, irony, lib, melpaBuild }: melpaBuild { pname = "irony-eldoc"; - version = "20141227.19"; + version = "20141227.119"; src = fetchFromGitHub { owner = "ikirill"; repo = "irony-eldoc"; @@ -31559,7 +31855,7 @@ sha256 = "01fjpfixfcca01a5fnnpd2wga4j30p0kwhbai25prvib4qcp1kqn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/irony-eldoc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/irony-eldoc"; sha256 = "03m0h13jd37vfvn4mavaq3vbzx4x0lklbs0mbc29zaz8pwqlcwz6"; name = "irony-eldoc"; }; @@ -31572,7 +31868,7 @@ isearch-dabbrev = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "isearch-dabbrev"; - version = "20141224.22"; + version = "20141224.122"; src = fetchFromGitHub { owner = "Dewdrops"; repo = "isearch-dabbrev"; @@ -31580,7 +31876,7 @@ sha256 = "17d0816awadvsw1qc7r0p6ira75jmgxaj9hsk9ypayxsaf6ynyrb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/isearch-dabbrev"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/isearch-dabbrev"; sha256 = "1hl7zl5vjcsk3z452874g4nfcnmna8m2242dc9cgpl5jddzwqa7x"; name = "isearch-dabbrev"; }; @@ -31592,13 +31888,13 @@ }) {}; isearch-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "isearch-plus"; - version = "20160227.1617"; + version = "20160227.1717"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/isearch+.el"; sha256 = "00m4kh2j4a2rqlagz4b5wdhnrk266whbncwkjbxx0rlxzvsi5skh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/isearch+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/isearch+"; sha256 = "1rzlsf08nmc3p3vhpwbiy8cgnnl2c10xrnsr2rlpv0g2kxkrd69r"; name = "isearch-plus"; }; @@ -31610,13 +31906,13 @@ }) {}; isearch-prop = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "isearch-prop"; - version = "20151231.1607"; + version = "20151231.1707"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/isearch-prop.el"; sha256 = "1i1ypganr2ivwgi0vgjihgk1s4yglwj8nbqnqjiiwdywf8g5hcmr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/isearch-prop"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/isearch-prop"; sha256 = "1z9y88b23m4ffil8p3wcq61q1fiyqjxphyd3wacs5fnc53mdzad9"; name = "isearch-prop"; }; @@ -31629,7 +31925,7 @@ isearch-symbol-at-point = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "isearch-symbol-at-point"; - version = "20130728.1721"; + version = "20130728.1821"; src = fetchFromGitHub { owner = "re5et"; repo = "isearch-symbol-at-point"; @@ -31637,7 +31933,7 @@ sha256 = "09z49850c32x0rchxg203cxg504xi2b6cjgnd0i4axcs5fmq7gv9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/isearch-symbol-at-point"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/isearch-symbol-at-point"; sha256 = "0j5fr7qdvpd5b096h5a83fz8sh9wybdnsgix6v94gv8lkzdsqkr8"; name = "isearch-symbol-at-point"; }; @@ -31650,7 +31946,7 @@ isend-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "isend-mode"; - version = "20130419.458"; + version = "20130419.558"; src = fetchFromGitHub { owner = "ffevotte"; repo = "isend-mode.el"; @@ -31658,7 +31954,7 @@ sha256 = "022j39r2vvppnh3p5rp9i4cgc3lg24ksjcmcjmbmna1vf624izn0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/isend-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/isend-mode"; sha256 = "0sk80a08ny9vqw94klqfgii297qm633000wlcldha76ip8viikdv"; name = "isend-mode"; }; @@ -31671,7 +31967,7 @@ isgd = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "isgd"; - version = "20150414.436"; + version = "20150414.536"; src = fetchFromGitHub { owner = "chmouel"; repo = "isgd.el"; @@ -31679,7 +31975,7 @@ sha256 = "09hx28lmldm7z3x22a0qx34id09fdp3z61pdr61flgny213q1ach"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/isgd"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/isgd"; sha256 = "0yc9mkjzj3w64f48flnjvd193mk9gndrrqbxz3cvmvq3vgahhzyi"; name = "isgd"; }; @@ -31692,7 +31988,7 @@ iss-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "iss-mode"; - version = "20141001.1413"; + version = "20141001.1513"; src = fetchFromGitHub { owner = "rasmus-toftdahl-olesen"; repo = "iss-mode"; @@ -31700,7 +31996,7 @@ sha256 = "0992lzgar0kz9i1sk5vz17q9qzfgl8fkyxa1q0hmhgnpjf503cnj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/iss-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/iss-mode"; sha256 = "1my4vi1x07hg0dva97i685lx6m6fcbfk16j1zy93zriyd7z5plkc"; name = "iss-mode"; }; @@ -31713,7 +32009,7 @@ itail = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "itail"; - version = "20151113.1035"; + version = "20151113.1135"; src = fetchFromGitHub { owner = "re5et"; repo = "itail"; @@ -31721,7 +32017,7 @@ sha256 = "1az986mk8j8hyvr1mi9hirixwcd73jcqkjsw4xy34vjbwxi122r9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/itail"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/itail"; sha256 = "0mcyly88a3c15hl3wll56agpdsyvd26r501h0v64lasfr4k634m7"; name = "itail"; }; @@ -31734,7 +32030,7 @@ itasca = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "itasca"; - version = "20160406.742"; + version = "20160406.842"; src = fetchFromGitHub { owner = "jkfurtney"; repo = "itasca-emacs"; @@ -31742,7 +32038,7 @@ sha256 = "1174f75p3rkq812gl2rs1x51nqbz4fqxwsbrd7djh1vkd2zii3aw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/itasca"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/itasca"; sha256 = "01075ad0sb5q7aql6j5wmjdk2qhdgbbm5xb0ikrnl7rzc1afvv6j"; name = "itasca"; }; @@ -31755,7 +32051,7 @@ iterator = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "iterator"; - version = "20160406.1406"; + version = "20160406.1506"; src = fetchFromGitHub { owner = "thierryvolpiatto"; repo = "iterator"; @@ -31763,7 +32059,7 @@ sha256 = "006lw8zjxz0702wlrs0nb0ijwh5air3yc3cam7dbkyy7mh632vhi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/iterator"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/iterator"; sha256 = "17q10fw6y0icsv6vv9n968bwmbjlihrpkkyw62d1kfxhs9yw659z"; name = "iterator"; }; @@ -31776,7 +32072,7 @@ ivariants = callPackage ({ emacs, fetchFromGitHub, fetchurl, ivs-edit, lib, melpaBuild }: melpaBuild { pname = "ivariants"; - version = "20140720.2327"; + version = "20140721.27"; src = fetchFromGitHub { owner = "kawabata"; repo = "emacs-ivariants"; @@ -31784,7 +32080,7 @@ sha256 = "12nqpzcmz724wpk8p16lc3z26rxma3wp6pf6dvrsqagnlixrs9si"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ivariants"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ivariants"; sha256 = "00fgcm62g4fw4306lw9ld2k7w0c358fcbkxn969k5p009g7pk5bw"; name = "ivariants"; }; @@ -31797,7 +32093,7 @@ ivs-edit = callPackage ({ cl-lib ? null, dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ivs-edit"; - version = "20140720.546"; + version = "20140720.646"; src = fetchFromGitHub { owner = "kawabata"; repo = "ivs-edit"; @@ -31805,7 +32101,7 @@ sha256 = "1926pyfsbr6j7cn3diq8ibs0db94rgsf0aifvbqrqp4grs85pkva"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ivs-edit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ivs-edit"; sha256 = "0gzhvzrfk17j2vwlg82f5ifk4dcfc1yv7barcij38ckran8cqmb2"; name = "ivs-edit"; }; @@ -31818,16 +32114,16 @@ ivy = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ivy"; - version = "20160425.507"; + version = "20160507.156"; src = fetchFromGitHub { owner = "abo-abo"; repo = "swiper"; - rev = "c24a3728538dd7d11de9f141b3ad1d8e0996c330"; - sha256 = "19vfj01x7b8f7wyx7m51z00la2r7jcwzv0n06srkvcls0wm5s1h3"; + rev = "f3690b610ae43ec21e45885166a146ce59a54baa"; + sha256 = "0bgfkp30xfl473lzrd7jrpps87v2w2bdi82mjw3lbxadfml6cspx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ivy"; - sha256 = "1w6dh05k1m1b1m3qy1mhfrl9rck0h1x6kh2b2llidwbv346wp17g"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ivy"; + sha256 = "1y1izabz2gx2f26ayrfg0094ygb1n5val0ng226p3pfxgj07wfss"; name = "ivy"; }; packageRequires = [ emacs ]; @@ -31839,7 +32135,7 @@ ivy-bibtex = callPackage ({ biblio, cl-lib ? null, dash, f, fetchFromGitHub, fetchurl, lib, melpaBuild, parsebib, s, swiper }: melpaBuild { pname = "ivy-bibtex"; - version = "20160422.1800"; + version = "20160422.1900"; src = fetchFromGitHub { owner = "tmalsburg"; repo = "helm-bibtex"; @@ -31847,7 +32143,7 @@ sha256 = "1zrs1gk95mna1kipgrq8mfhk0gqimvsb4b583f900fh86019nn1l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ivy-bibtex"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ivy-bibtex"; sha256 = "0qni48s09lgzqr98r49dhrzpfqp9yfwga11h7vhqclscjvlalpc2"; name = "ivy-bibtex"; }; @@ -31860,7 +32156,7 @@ ix = callPackage ({ fetchFromGitHub, fetchurl, grapnel, lib, melpaBuild }: melpaBuild { pname = "ix"; - version = "20131027.1129"; + version = "20131027.1229"; src = fetchFromGitHub { owner = "theanalyst"; repo = "ix.el"; @@ -31868,7 +32164,7 @@ sha256 = "069alh9vs6is3hvbwxbwr9g8qq9md5c92wg5bfswi99yciqdvc4i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ix"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ix"; sha256 = "1fl76dk8vgw3mrh5iz99lrsllwya6ij9d1lj3szcrs4qnj0b5ql3"; name = "ix"; }; @@ -31881,7 +32177,7 @@ iy-go-to-char = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "iy-go-to-char"; - version = "20141029.1046"; + version = "20141029.1146"; src = fetchFromGitHub { owner = "doitian"; repo = "iy-go-to-char"; @@ -31889,7 +32185,7 @@ sha256 = "0bcm3y3qvsrk7gd23xfzz5bgcnm3h4l63w9hv8cr9n86sm8475m1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/iy-go-to-char"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/iy-go-to-char"; sha256 = "10szn9y7gl8947p3f9w6p6vzjf1a9cjif9mbj3qdqx4vbsl9mqpz"; name = "iy-go-to-char"; }; @@ -31902,7 +32198,7 @@ j-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "j-mode"; - version = "20140702.1009"; + version = "20140702.1109"; src = fetchFromGitHub { owner = "zellio"; repo = "j-mode"; @@ -31910,7 +32206,7 @@ sha256 = "07kbicf760nw4qlb2lkf1ns8yzqy0r5jqqwqjbsnqxx4sm52hml9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/j-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/j-mode"; sha256 = "0f9lsr9hjhdvmzx565ivlncfzb4iq4rjjn6a41053cjy50bl066i"; name = "j-mode"; }; @@ -31923,14 +32219,14 @@ jabber = callPackage ({ fetchgit, fetchurl, fsm, lib, melpaBuild }: melpaBuild { pname = "jabber"; - version = "20160124.752"; + version = "20160124.852"; src = fetchgit { url = "git://git.code.sf.net/p/emacs-jabber/git"; rev = "98dc8e429ba6f79065f1c9fc3878d92314d4b510"; sha256 = "138mj06dd057nw617n5lanzg3q8y0iyq4c7cc3378a3sj4nmqkcr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jabber"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/jabber"; sha256 = "1g5pc80n3cd5pzs3hmpbnmxbldwakd72pdn3vvb0h26j9v073pa8"; name = "jabber"; }; @@ -31943,7 +32239,7 @@ jabber-otr = callPackage ({ emacs, fetchFromGitHub, fetchurl, jabber, lib, melpaBuild }: melpaBuild { pname = "jabber-otr"; - version = "20150918.644"; + version = "20150918.744"; src = fetchFromGitHub { owner = "legoscia"; repo = "emacs-jabber-otr"; @@ -31951,7 +32247,7 @@ sha256 = "0yv86nadp6dfzl05vhk8c1kahg2pcrhfmd3mnfjrngp7ksac5lyf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jabber-otr"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/jabber-otr"; sha256 = "114z5bwhkza03yvfa4nmicaih2jdq83lh6micxjimpddsc8fjgi0"; name = "jabber-otr"; }; @@ -31964,14 +32260,14 @@ jack-connect = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: melpaBuild { pname = "jack-connect"; - version = "20141207.607"; + version = "20141207.707"; src = fetchgit { url = "https://bitbucket.org/sbarbit/jack-connect"; rev = "b00658dfe3d5d67431c18ffa693d5a3705067ba0"; sha256 = "1a33z07m9rh42pbcjv7sd640gf6jjzs4yn6idx52g8i5vzns0dkh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jack-connect"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/jack-connect"; sha256 = "1ssl126wihaf8m2f6ms0l5ai6pz5wn348a09k6l0h3jfww032g1q"; name = "jack-connect"; }; @@ -31984,7 +32280,7 @@ jade-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "jade-mode"; - version = "20150801.1144"; + version = "20150801.1244"; src = fetchFromGitHub { owner = "brianc"; repo = "jade-mode"; @@ -31992,7 +32288,7 @@ sha256 = "1q6wpjb7vhsy92li6fag34pwyil4zvcchbvfjml612aaykiys506"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jade-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/jade-mode"; sha256 = "156j0d9wx6hrhph0nsjsi1jha4h65rcbrbff1j2yr8vdsszjrs94"; name = "jade-mode"; }; @@ -32005,7 +32301,7 @@ jammer = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "jammer"; - version = "20160310.259"; + version = "20160310.359"; src = fetchFromGitHub { owner = "wasamasa"; repo = "jammer"; @@ -32013,7 +32309,7 @@ sha256 = "1gnj8vmpxds2wdkz49swiby5vq2hvbf64q5hhvwymfdvwlk54v55"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jammer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/jammer"; sha256 = "01c4bii7gswhp6z9dgx4bhvsywiwbbdv7mg1zj6vp1530l74zx6z"; name = "jammer"; }; @@ -32026,7 +32322,7 @@ japanese-holidays = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "japanese-holidays"; - version = "20150208.1937"; + version = "20150208.2037"; src = fetchFromGitHub { owner = "emacs-jp"; repo = "japanese-holidays"; @@ -32034,7 +32330,7 @@ sha256 = "1mwm9wpnxqq3nw7fl0jf40a92ha51yd95vvr58zllhbxdpy3q9pv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/japanese-holidays"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/japanese-holidays"; sha256 = "0pxpkikkn2ys0kgf3lbrdxv8iym50h5ik2xzza0qk7cw1v93jza9"; name = "japanese-holidays"; }; @@ -32047,7 +32343,7 @@ japanlaw = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "japanlaw"; - version = "20160129.220"; + version = "20160129.320"; src = fetchFromGitHub { owner = "mhayashi1120"; repo = "japanlaw.el"; @@ -32055,7 +32351,7 @@ sha256 = "1lrsm282lhp7pf0gwr3aad2228lvpqnqs1qdv2xk0zljqnqc0bhx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/japanlaw"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/japanlaw"; sha256 = "1pxss1mjk5660k80r1xqgslnbrsr6r4apgp9abjwjfxpg4f6d0sa"; name = "japanlaw"; }; @@ -32068,7 +32364,7 @@ jape-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "jape-mode"; - version = "20140903.1006"; + version = "20140903.1106"; src = fetchFromGitHub { owner = "tanzoniteblack"; repo = "jape-mode"; @@ -32076,7 +32372,7 @@ sha256 = "0xmv7gw5xms6nhjcl51cw33yvjgw0c6bpnlyca3195x7g34sg1zj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jape-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/jape-mode"; sha256 = "1gd685r86h0kr36msw81gfgwv7d35hihz6h0jkc6vd22wf6qc3ly"; name = "jape-mode"; }; @@ -32089,15 +32385,15 @@ jar-manifest-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "jar-manifest-mode"; - version = "20150329.1733"; + version = "20160430.2026"; src = fetchFromGitHub { owner = "omajid"; repo = "jar-manifest-mode"; - rev = "200dcf6ec5116b506ae24a83511837adf0acedef"; - sha256 = "0nydj0y58yhfh16492q5gzkkz7qrxbdhp4gh2xbiykcbynygj2mq"; + rev = "270dae14c481300f75ed96dad3a5ae42ca928a1d"; + sha256 = "1p7w3hq2cyn1245q0zn8m7hpjs8nbp7kqfmd2gzi2k209czipy21"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jar-manifest-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/jar-manifest-mode"; sha256 = "0kx358m3p23r8m7z45454i62ijmdlf4mljlbqc20jkihfanr6wqd"; name = "jar-manifest-mode"; }; @@ -32110,7 +32406,7 @@ jasminejs-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "jasminejs-mode"; - version = "20150526.1905"; + version = "20150526.2005"; src = fetchFromGitHub { owner = "stoltene2"; repo = "jasminejs-mode"; @@ -32118,7 +32414,7 @@ sha256 = "1zcrxijcwqfs6r1cd6w4jq8g3ly0a69nf0cbx93w5v86x2kjpz0l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jasminejs-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/jasminejs-mode"; sha256 = "1a70j3aglrwmaw9g8m99sxad2vs53y4swxh97gqjsgx1rrx03g52"; name = "jasminejs-mode"; }; @@ -32131,7 +32427,7 @@ jaunte = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "jaunte"; - version = "20130413.419"; + version = "20130413.519"; src = fetchFromGitHub { owner = "kawaguchi"; repo = "jaunte.el"; @@ -32139,7 +32435,7 @@ sha256 = "1bv0al89wlwdv3bhasxnwhsv84phgnixclgrh4l52385rjn8v53f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jaunte"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/jaunte"; sha256 = "0chqiai7fv1idga71gc5dw4rdv1rblg5rrbdijh3glyi8yfr4snf"; name = "jaunte"; }; @@ -32152,7 +32448,7 @@ java-imports = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, pcache, s }: melpaBuild { pname = "java-imports"; - version = "20160311.1715"; + version = "20160311.1815"; src = fetchFromGitHub { owner = "dakrone"; repo = "emacs-java-imports"; @@ -32160,7 +32456,7 @@ sha256 = "1wk9i43b147bjcvhq27vcqxi6y1yl6w3n4i2sw3krk4vxcm1mwnm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/java-imports"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/java-imports"; sha256 = "1waz6skyrm1n8wpc0pwa652l11wz8qz1m89mqxk27k3lwyd84n98"; name = "java-imports"; }; @@ -32173,7 +32469,7 @@ java-snippets = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }: melpaBuild { pname = "java-snippets"; - version = "20160328.2210"; + version = "20160328.2310"; src = fetchFromGitHub { owner = "nekop"; repo = "yasnippet-java-mode"; @@ -32181,7 +32477,7 @@ sha256 = "0w67vjpazbrgd9j5xzsrj3m45iw6lyqkgxx1ap5afvgyn5hqhkih"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/java-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/java-snippets"; sha256 = "0bsmp6sc3khdadkmwqy8khz8kzqijcsv70gimm2cs1kwnbyj6pfp"; name = "java-snippets"; }; @@ -32194,7 +32490,7 @@ javadoc-lookup = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "javadoc-lookup"; - version = "20160213.1831"; + version = "20160213.1931"; src = fetchFromGitHub { owner = "skeeto"; repo = "javadoc-lookup"; @@ -32202,7 +32498,7 @@ sha256 = "16gywcma1s8kslwznlxwlx0xj0gs5g31637kb74vfdplk48f04zj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/javadoc-lookup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/javadoc-lookup"; sha256 = "1fffs0iqkk9rg5vbxifvn09j4i2751p81bzcvy5fslr3r1r2nv79"; name = "javadoc-lookup"; }; @@ -32215,7 +32511,7 @@ javap-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "javap-mode"; - version = "20120223.1608"; + version = "20120223.1708"; src = fetchFromGitHub { owner = "hiredman"; repo = "javap-mode"; @@ -32223,7 +32519,7 @@ sha256 = "070r4mg4v937n4h2bmzdbn3vsmmq7ijz69nankqs761jxv5gcwlg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/javap-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/javap-mode"; sha256 = "19p39l4nwgxm52yimy4j6l43845cpk8g5qdrldlwfxd7dvay09ay"; name = "javap-mode"; }; @@ -32236,7 +32532,7 @@ jaword = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, tinysegmenter }: melpaBuild { pname = "jaword"; - version = "20150325.918"; + version = "20150325.1018"; src = fetchFromGitHub { owner = "zk-phi"; repo = "jaword"; @@ -32244,7 +32540,7 @@ sha256 = "1430xwd86fdlv1gzkdlp9a0x3w4blbplw24z0m7y8b0j9rhl4fka"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jaword"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/jaword"; sha256 = "05pzh99zfl8n3p6lxdd9abr52m24hqcb105458i1cy0ra840bf4d"; name = "jaword"; }; @@ -32257,7 +32553,7 @@ jazz-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "jazz-theme"; - version = "20160412.1236"; + version = "20160412.1336"; src = fetchFromGitHub { owner = "donderom"; repo = "jazz-theme"; @@ -32265,7 +32561,7 @@ sha256 = "0dikmd1w6jh152hvawgvzlpv87xqnf669a8x427rbshnbj2bly64"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jazz-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/jazz-theme"; sha256 = "0ad8kvrmd3gyb8wfghcl4r3kwzplk5gxlw3p23wsbx6c2xq6xr7g"; name = "jazz-theme"; }; @@ -32278,7 +32574,7 @@ jbeans-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "jbeans-theme"; - version = "20160406.1457"; + version = "20160406.1557"; src = fetchFromGitHub { owner = "synic"; repo = "jbeans-emacs"; @@ -32286,7 +32582,7 @@ sha256 = "1gns0y05kyxl2fcyiawgdx2hi0vslz97kvirbckg19id50cv9ac1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jbeans-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/jbeans-theme"; sha256 = "0y7ccycfnpykgzr88968w7dl45qazf8b9zlf7ydw3ghkl4f6lbwl"; name = "jbeans-theme"; }; @@ -32299,7 +32595,7 @@ jdee = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "jdee"; - version = "20160304.736"; + version = "20160304.836"; src = fetchFromGitHub { owner = "jdee-emacs"; repo = "jdee"; @@ -32307,7 +32603,7 @@ sha256 = "01dcxf47qlp089sf3b23kzaad7zrxzgcxf4s2awcj69ips8zkbik"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jdee"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/jdee"; sha256 = "1yn8vszj0hs2jwwd4x55f11hs2wrxjjvxpngsj7lkcwax04kkvq3"; name = "jdee"; }; @@ -32320,15 +32616,15 @@ jedi = callPackage ({ auto-complete, emacs, fetchFromGitHub, fetchurl, jedi-core, lib, melpaBuild }: melpaBuild { pname = "jedi"; - version = "20160425.2356"; + version = "20160426.56"; src = fetchFromGitHub { owner = "tkf"; repo = "emacs-jedi"; - rev = "1521c525483263b7241c4881b15299b38700070c"; - sha256 = "1xj6rswsnicwcgcqid4qji1x4yhdhrgvvjdd3jhb4z8mfahpnpp6"; + rev = "aa2cff0b4aa9fbae23c054f185769d7661666c97"; + sha256 = "1xkzf7p3ws5s5i8aymz60c4vhifchj68595878nc3yrk5zzlhyjr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jedi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/jedi"; sha256 = "1777060q25k9n2g6h1lm5lkki900pmjqkxq72mrk3j19jr4pk9m4"; name = "jedi"; }; @@ -32341,15 +32637,15 @@ jedi-core = callPackage ({ cl-lib ? null, emacs, epc, fetchFromGitHub, fetchurl, lib, melpaBuild, python-environment }: melpaBuild { pname = "jedi-core"; - version = "20151214.905"; + version = "20160501.2343"; src = fetchFromGitHub { owner = "tkf"; repo = "emacs-jedi"; - rev = "1521c525483263b7241c4881b15299b38700070c"; - sha256 = "1xj6rswsnicwcgcqid4qji1x4yhdhrgvvjdd3jhb4z8mfahpnpp6"; + rev = "aa2cff0b4aa9fbae23c054f185769d7661666c97"; + sha256 = "1xkzf7p3ws5s5i8aymz60c4vhifchj68595878nc3yrk5zzlhyjr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jedi-core"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/jedi-core"; sha256 = "0pzi32zdb4g9n4kvpmkdflmqypa7nckmnjq60a3ngym4wlzbb32f"; name = "jedi-core"; }; @@ -32362,7 +32658,7 @@ jedi-direx = callPackage ({ direx, fetchFromGitHub, fetchurl, jedi, lib, melpaBuild }: melpaBuild { pname = "jedi-direx"; - version = "20140310.436"; + version = "20140310.536"; src = fetchFromGitHub { owner = "tkf"; repo = "emacs-jedi-direx"; @@ -32370,7 +32666,7 @@ sha256 = "1pgi5vnwz5agrpvy7nwg3gv2nfbbmimhk8dxkg81k6yf1iiqxcap"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jedi-direx"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/jedi-direx"; sha256 = "1y4n4c2imnm3f1q129bvbi4gzk0iazd8qq959gvq9j9fl1aziiz1"; name = "jedi-direx"; }; @@ -32383,7 +32679,7 @@ jekyll-modes = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, polymode }: melpaBuild { pname = "jekyll-modes"; - version = "20141117.714"; + version = "20141117.814"; src = fetchFromGitHub { owner = "fred-o"; repo = "jekyll-modes"; @@ -32391,7 +32687,7 @@ sha256 = "0rx72rid7922mhw21j85kxmx0fhpkmkv9jvxmj9izy01xnjbk00c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jekyll-modes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/jekyll-modes"; sha256 = "1305f1yg1mamyw3bkzrk5q3q58ihs8f5k9vjknsww5xvrzz3r1si"; name = "jekyll-modes"; }; @@ -32404,7 +32700,7 @@ jenkins = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, json ? null, lib, melpaBuild }: melpaBuild { pname = "jenkins"; - version = "20151114.2108"; + version = "20151114.2208"; src = fetchFromGitHub { owner = "rmuslimov"; repo = "jenkins.el"; @@ -32412,7 +32708,7 @@ sha256 = "08ywfmsjv3vjqy95hx095kasy8knh3asl7mrlkgmv9wjwnxw45zs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jenkins"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/jenkins"; sha256 = "0ji42r7p3f3hh643839xf74gb231vr7anycr2xhkga8qy2vwa53s"; name = "jenkins"; }; @@ -32425,7 +32721,7 @@ jenkins-watch = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "jenkins-watch"; - version = "20121004.1826"; + version = "20121004.1926"; src = fetchFromGitHub { owner = "ataylor284"; repo = "jenkins-watch"; @@ -32433,7 +32729,7 @@ sha256 = "0jayhv8j7b527dimhvcs0d7ax25x7v50dk0k6apisqc23psvkq66"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jenkins-watch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/jenkins-watch"; sha256 = "0brgjgbw804x0gf2vq01yv6bd0ilp3x9kvr1nnsqxb9c03ffmb2m"; name = "jenkins-watch"; }; @@ -32446,7 +32742,7 @@ jg-quicknav = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "jg-quicknav"; - version = "20160216.2235"; + version = "20160216.2335"; src = fetchFromGitHub { owner = "jeffgran"; repo = "jg-quicknav"; @@ -32454,7 +32750,7 @@ sha256 = "164wm83av3p2c9dkhpmqrb7plq9ngmnsa5aly3a1xam1cds22hp4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jg-quicknav"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/jg-quicknav"; sha256 = "1pxyv1nbnqb0s177kczy6b6q4l8d2r52xqhx2rdb0wxdmp6m5x9c"; name = "jg-quicknav"; }; @@ -32467,7 +32763,7 @@ jinja2-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "jinja2-mode"; - version = "20141128.407"; + version = "20141128.507"; src = fetchFromGitHub { owner = "paradoxxxzero"; repo = "jinja2-mode"; @@ -32475,7 +32771,7 @@ sha256 = "0l26wcy496k6xk7q5sf905xir0p73ziy6c44is77854lv3y0z381"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jinja2-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/jinja2-mode"; sha256 = "0480fh719r4v7xdwyf4jlg1k36y54i5zrv7gxlhfm66pil75zafx"; name = "jinja2-mode"; }; @@ -32487,13 +32783,13 @@ }) {}; jira = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "jira"; - version = "20131210.1222"; + version = "20131210.1322"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/jira.el"; sha256 = "18b6hdqk59gnqh4ibq8lj59kbsg5gbyfb7vfcvpgmxjikpl3cgkz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jira"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/jira"; sha256 = "0cf5zgkxagvka5v6scgyxqx4mz1n7lxbynn3gl2a4s9s64jycsy6"; name = "jira"; }; @@ -32506,7 +32802,7 @@ jira-markup-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "jira-markup-mode"; - version = "20150601.1609"; + version = "20150601.1709"; src = fetchFromGitHub { owner = "mnuessler"; repo = "jira-markup-mode"; @@ -32514,7 +32810,7 @@ sha256 = "1ack7dmapva3wc2gm22prd5wd3cmq19sl4xl9f04a3nk2msr6ksx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jira-markup-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/jira-markup-mode"; sha256 = "0f3sw41b4wl0aajq0ap66942rb2015d9iks0ss016jgzashw7zsp"; name = "jira-markup-mode"; }; @@ -32527,7 +32823,7 @@ jist = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, let-alist, lib, magit, melpaBuild, pkg-info, request }: melpaBuild { pname = "jist"; - version = "20151228.1750"; + version = "20151228.1850"; src = fetchFromGitHub { owner = "emacs-pe"; repo = "jist.el"; @@ -32535,7 +32831,7 @@ sha256 = "0mh7990zqrprsa1g9jzpqm666pynlqd2nh9z236zyzykf8d8il8c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/jist"; sha256 = "11m9li1016cfkm4931h69d7g1dc59lwjl83wy3yipswdg3zlw0ar"; name = "jist"; }; @@ -32548,7 +32844,7 @@ jknav = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "jknav"; - version = "20121006.1525"; + version = "20121006.1625"; src = fetchFromGitHub { owner = "aculich"; repo = "jknav.el"; @@ -32556,7 +32852,7 @@ sha256 = "1idby2rjkslw85593qd4zy6an9zz71yzwqc6rck57r54xyfs8mij"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jknav"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/jknav"; sha256 = "0c0a8plqrlsw8lhmyj9c1lfkj2b48cjkbw9pna8qcizvwgym9089"; name = "jknav"; }; @@ -32569,7 +32865,7 @@ jonprl-mode = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }: melpaBuild { pname = "jonprl-mode"; - version = "20151203.342"; + version = "20151203.442"; src = fetchFromGitHub { owner = "david-christiansen"; repo = "jonprl-mode"; @@ -32577,7 +32873,7 @@ sha256 = "1a0091r1xs3fpvg1wynh53xibdsiaf2khz1gp6s8dc45z8r0bclx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jonprl-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/jonprl-mode"; sha256 = "0763ad65dmpl2l5lw91mlppfdvrjg6ym45brhi8sdwwri1xnyv9z"; name = "jonprl-mode"; }; @@ -32590,7 +32886,7 @@ jq-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "jq-mode"; - version = "20160222.640"; + version = "20160222.740"; src = fetchFromGitHub { owner = "ljos"; repo = "jq-mode"; @@ -32598,7 +32894,7 @@ sha256 = "08wffbljnaxz2sh72vsqpq1lc47mnh4d47fl71dvw4pqs50zp8v0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jq-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/jq-mode"; sha256 = "1xvh641pdkvbppb2nzwn1ljdk7sv6laq29kdv09kxaqd89vm0vin"; name = "jq-mode"; }; @@ -32611,7 +32907,7 @@ jquery-doc = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "jquery-doc"; - version = "20150812.258"; + version = "20150812.358"; src = fetchFromGitHub { owner = "ananthakumaran"; repo = "jquery-doc.el"; @@ -32619,7 +32915,7 @@ sha256 = "0gh2bgmsbi9lby89ssvl49kpz07jqrfnyg47g6b9xmf5rw42s1z9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jquery-doc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/jquery-doc"; sha256 = "0pyg90izdrb9mvpbz9nx21mp8m3svqjnz1jr8i7wqgfjxsxdklxj"; name = "jquery-doc"; }; @@ -32632,7 +32928,7 @@ js-comint = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, nvm }: melpaBuild { pname = "js-comint"; - version = "20160220.550"; + version = "20160220.650"; src = fetchFromGitHub { owner = "redguardtoo"; repo = "js-comint"; @@ -32640,7 +32936,7 @@ sha256 = "1f1zad423q5adycbbh62094m622gl8ncwbr8vxad1a6zcga70cgi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/js-comint"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/js-comint"; sha256 = "0jvkjb0rmh87mf20v6rjapi2j6qv8klixy0y0kmh3shylkni3an1"; name = "js-comint"; }; @@ -32653,7 +32949,7 @@ js-doc = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "js-doc"; - version = "20160208.1907"; + version = "20160208.2007"; src = fetchFromGitHub { owner = "mooz"; repo = "js-doc"; @@ -32661,7 +32957,7 @@ sha256 = "12kwjkhw5x6jb79m49gbypb6br482bpi73788h71lgl5i3g95s5q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/js-doc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/js-doc"; sha256 = "0nafqgb4kf8jgrb7ijfcvigq8kf043ki89h61izda4hccm3c42pk"; name = "js-doc"; }; @@ -32674,7 +32970,7 @@ js2-closure = callPackage ({ fetchFromGitHub, fetchurl, js2-mode, lib, melpaBuild }: melpaBuild { pname = "js2-closure"; - version = "20141027.1750"; + version = "20141027.1850"; src = fetchFromGitHub { owner = "jart"; repo = "js2-closure"; @@ -32682,7 +32978,7 @@ sha256 = "0105vx7bc681q9v2x6wj2r63pwp7g0cjjgpg7k4r852zmndfbzsc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/js2-closure"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/js2-closure"; sha256 = "19732bf98lk2ah2ssgkr1ngxx7rz3nhsiw84lsfmydb0vvm4fpk7"; name = "js2-closure"; }; @@ -32695,7 +32991,7 @@ js2-highlight-vars = callPackage ({ fetchFromGitHub, fetchurl, js2-mode, lib, melpaBuild }: melpaBuild { pname = "js2-highlight-vars"; - version = "20150914.308"; + version = "20150914.408"; src = fetchFromGitHub { owner = "unhammer"; repo = "js2-highlight-vars.el"; @@ -32703,7 +32999,7 @@ sha256 = "1gad5a18m3jfhnklsj0ka3p2wbihh1yvpcn7mwlmm7cjjxcaly9g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/js2-highlight-vars"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/js2-highlight-vars"; sha256 = "07bq393g2jy8ydvaqyqn6vdyfvyminvgi239yvwzg5g9a1xjc475"; name = "js2-highlight-vars"; }; @@ -32716,15 +33012,15 @@ js2-mode = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "js2-mode"; - version = "20160409.1313"; + version = "20160504.746"; src = fetchFromGitHub { owner = "mooz"; repo = "js2-mode"; - rev = "812df519069555a7b670f6d300239092642aa02e"; - sha256 = "1j6g801skbx27ajymxlyswlpv6xf06jkih3z51rmjcaq2n55h8r6"; + rev = "173d1c84078afa9d0ee72d2b641354860793905f"; + sha256 = "08drq85hjq9cqbsg4nxig9migpypg0yqjd0m9bpg8385b6bqm535"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/js2-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/js2-mode"; sha256 = "0f9cj3n55qnlifxwk1yp8n1kfd319jf7qysnkk28xpvglzw24yjv"; name = "js2-mode"; }; @@ -32737,15 +33033,15 @@ js2-refactor = callPackage ({ dash, fetchFromGitHub, fetchurl, js2-mode, lib, melpaBuild, multiple-cursors, s, yasnippet }: melpaBuild { pname = "js2-refactor"; - version = "20160315.555"; + version = "20160506.912"; src = fetchFromGitHub { owner = "magnars"; repo = "js2-refactor.el"; - rev = "30b7d218bde230adef6608de68f936edb7d52beb"; - sha256 = "04gbap3mfc5r46vdxymfmr15b9zxdzqdddhfg3v327n40n3djrsd"; + rev = "303f8fba4b5e42b7b5f9a8f37c1d641e529db1ff"; + sha256 = "0lksky7b2qfd4lvgpbanhcpr6i2prm9nd6gc3rja0axv51p03y9a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/js2-refactor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/js2-refactor"; sha256 = "09dcfwpxxyw0ffgjjjaaxbsj0x2nwfrmxy1a05h8ba3r3jl4kl1r"; name = "js2-refactor"; }; @@ -32758,7 +33054,7 @@ js3-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "js3-mode"; - version = "20150902.1149"; + version = "20150902.1249"; src = fetchFromGitHub { owner = "thomblake"; repo = "js3-mode"; @@ -32766,7 +33062,7 @@ sha256 = "137lypg6jwsisn2g5h0wiqh57icj46zv3albxjf2q1k5isszhy1l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/js3-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/js3-mode"; sha256 = "12s5qf6zfcv4m5kqxvh9b4zgwf433x39a210d957gjjp5mywbb1r"; name = "js3-mode"; }; @@ -32779,7 +33075,7 @@ jscs = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "jscs"; - version = "20151015.1249"; + version = "20151015.1349"; src = fetchFromGitHub { owner = "papaeye"; repo = "emacs-jscs"; @@ -32787,7 +33083,7 @@ sha256 = "1bqsv2drhcs8ia7nxss33f80p2mhcl4mr1nalphzw6s1f4mq2sgy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jscs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/jscs"; sha256 = "1yw251f6vpj2bikjw79arywprk8qnmmfcki99mvwnqhsqlv1a8iv"; name = "jscs"; }; @@ -32800,7 +33096,7 @@ jsfmt = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "jsfmt"; - version = "20150727.1725"; + version = "20150727.1825"; src = fetchFromGitHub { owner = "brettlangdon"; repo = "jsfmt.el"; @@ -32808,7 +33104,7 @@ sha256 = "0h9gx5cl3lashk0n8pv9yzb0mm8dyziddfbwfqfm70638p93ylhc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jsfmt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/jsfmt"; sha256 = "1syy32sv2d57b3gja0ly65h36mfnyq6hzf5lnnl3r58yvbdzngqd"; name = "jsfmt"; }; @@ -32821,7 +33117,7 @@ json-mode = callPackage ({ fetchFromGitHub, fetchurl, json-reformat, json-snatcher, lib, melpaBuild }: melpaBuild { pname = "json-mode"; - version = "20151116.2200"; + version = "20151116.2300"; src = fetchFromGitHub { owner = "joshwnj"; repo = "json-mode"; @@ -32829,7 +33125,7 @@ sha256 = "0sxkp9m68rvff8dbr8jlsx85w5ngifn19lwhcydysm7grbwzrdi3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/json-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/json-mode"; sha256 = "014j10wgxsqy6d6aksnkz2dr5cmpsi8c7v4a825si1vgb4622a70"; name = "json-mode"; }; @@ -32842,7 +33138,7 @@ json-reformat = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "json-reformat"; - version = "20160212.253"; + version = "20160212.353"; src = fetchFromGitHub { owner = "gongo"; repo = "json-reformat"; @@ -32850,7 +33146,7 @@ sha256 = "05bjyw0hkpiyfadsx3giawykbj4qinfr1ilzd0xvx8akzq2ipq0y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/json-reformat"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/json-reformat"; sha256 = "1m5p895w9qdgb8f67xykhzriribgmp20a1lvj64iap4aam6wp8na"; name = "json-reformat"; }; @@ -32863,15 +33159,15 @@ json-rpc = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "json-rpc"; - version = "20150830.1601"; + version = "20160427.1107"; src = fetchFromGitHub { owner = "skeeto"; repo = "elisp-json-rpc"; - rev = "a83189b126d8d3d7a856008a5b6ad267b2fcc126"; - sha256 = "0xgrb0zfxyfmfnvx1l7ca99lzl6f2qyal798rcra45167c0j0vbb"; + rev = "5692192d25eba1b47758272e8de9d67c9ea4aecd"; + sha256 = "0cbqhijv2zv9mhnjxadr2kbz5b6jcvciwmza22jkwds0nkn2snmp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/json-rpc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/json-rpc"; sha256 = "1v1pfmm9g18p6kgn27q1m1bjgwbzvwfm0jbsxp8gdsssaygky71k"; name = "json-rpc"; }; @@ -32884,7 +33180,7 @@ json-snatcher = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "json-snatcher"; - version = "20150511.2247"; + version = "20150511.2347"; src = fetchFromGitHub { owner = "Sterlingg"; repo = "json-snatcher"; @@ -32892,7 +33188,7 @@ sha256 = "05zsgnk7grgw9jzwl80h5sxfpifxlr37b4mkbvx7mjq4z14xc2jw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/json-snatcher"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/json-snatcher"; sha256 = "0f6j9g3c5fz3wlqa88706cbzinrs3dnfpgsr2d3h3117gic4iwp4"; name = "json-snatcher"; }; @@ -32905,7 +33201,7 @@ jss = callPackage ({ emacs, fetchFromGitHub, fetchurl, js2-mode, lib, melpaBuild, websocket }: melpaBuild { pname = "jss"; - version = "20130508.923"; + version = "20130508.1023"; src = fetchFromGitHub { owner = "segv"; repo = "jss"; @@ -32913,7 +33209,7 @@ sha256 = "07yd7sxb5f2mbm2nva7b2nwyxxkmsi2rdd5qig0bq1b2mf3g5l83"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jss"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/jss"; sha256 = "050hskqcjz5kc8nni255vj3hc9m936w1rybvg5kqyz4p4lpzj00k"; name = "jss"; }; @@ -32926,7 +33222,7 @@ jst = callPackage ({ dash, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, pcache, s }: melpaBuild { pname = "jst"; - version = "20150604.638"; + version = "20150604.738"; src = fetchFromGitHub { owner = "cheunghy"; repo = "jst-mode"; @@ -32934,7 +33230,7 @@ sha256 = "16jgmabcqrjb3v9c6q711jqn9dna88bmzm4880mdry69ixwcydxy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jst"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/jst"; sha256 = "0hp1f7p6m1gfv1a3plavzkzn87dllb5g2xrgg3mch4qsgdbqx65i"; name = "jst"; }; @@ -32947,7 +33243,7 @@ jsx-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "jsx-mode"; - version = "20130908.1224"; + version = "20130908.1324"; src = fetchFromGitHub { owner = "jsx"; repo = "jsx-mode.el"; @@ -32955,7 +33251,7 @@ sha256 = "1g648r0wrd8m5ggl5jrplmj7jmr68bh2ykyii5wv30zfba97r1sh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jsx-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/jsx-mode"; sha256 = "1lnjnyn8qf3biqr92z443z6b58dly7glksp1g986vgqzdprq3n1b"; name = "jsx-mode"; }; @@ -32967,14 +33263,14 @@ }) {}; jtags = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: melpaBuild { pname = "jtags"; - version = "20160211.1429"; + version = "20160211.1529"; src = fetchgit { url = "git://git.code.sf.net/p/jtags/code"; rev = "b50daa48510f71e74ce0ec2eb85030896a79cf96"; sha256 = "03w5y9c1109kpsn6xnxdaz3maiwbvxywqshc1l5wngfc85jwiv8y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jtags"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/jtags"; sha256 = "0in5ybgwmghlpa5d7wz0477ba6n14f1mwp5dxcl4y11f1lsq041r"; name = "jtags"; }; @@ -32987,7 +33283,7 @@ julia-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "julia-mode"; - version = "20160407.1501"; + version = "20160407.1601"; src = fetchFromGitHub { owner = "JuliaLang"; repo = "julia-emacs"; @@ -32995,7 +33291,7 @@ sha256 = "0b6fk40yhzi2iy75gpi7fx3qa6zhr83wgvkmcn140i74f92wc1yk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/julia-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/julia-mode"; sha256 = "0m49v67fs5yq0q3lwkcfmrzsjdzi1qrkfjyvjcdwnfmp29w14kq6"; name = "julia-mode"; }; @@ -33008,7 +33304,7 @@ julia-shell = callPackage ({ fetchFromGitHub, fetchurl, julia-mode, lib, melpaBuild }: melpaBuild { pname = "julia-shell"; - version = "20151104.1252"; + version = "20151104.1352"; src = fetchFromGitHub { owner = "dennisog"; repo = "julia-shell-mode"; @@ -33016,7 +33312,7 @@ sha256 = "0r4ajn3f1c8n0r831ihvzwyzy94aiv0ijqrwhpq0s85cqvzr7pq8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/julia-shell"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/julia-shell"; sha256 = "0182irlvk6nn71zk4j8xjgcqp4bxi7a2dbj44frrssy6018cd410"; name = "julia-shell"; }; @@ -33029,7 +33325,7 @@ jumblr = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "jumblr"; - version = "20140908.1552"; + version = "20140908.1652"; src = fetchFromGitHub { owner = "mkmcc"; repo = "jumblr"; @@ -33037,7 +33333,7 @@ sha256 = "1f0kai4cz3r25fqlnryyvnyf80cf57xa655dvv1rx8si3xd20x4j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jumblr"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/jumblr"; sha256 = "1wnawz1m6x95iyzac453p55h7hlr5q0ry5437aqqx0bw7gdwg3dp"; name = "jumblr"; }; @@ -33050,7 +33346,7 @@ jump = callPackage ({ fetchFromGitHub, fetchurl, findr, inflections, lib, melpaBuild }: melpaBuild { pname = "jump"; - version = "20151009.329"; + version = "20151009.429"; src = fetchFromGitHub { owner = "eschulte"; repo = "jump.el"; @@ -33058,7 +33354,7 @@ sha256 = "0061hcmj63g13bvacwkmcb5iggwnk27dvb04fz4hihqis6jg01c5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jump"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/jump"; sha256 = "18g0fa9g8m9jscsm6pn7jwdq94l4aj0dfhrv2hqapq1q1x537364"; name = "jump"; }; @@ -33071,15 +33367,15 @@ jump-char = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "jump-char"; - version = "20150108.1435"; + version = "20160505.1151"; src = fetchFromGitHub { owner = "lewang"; repo = "jump-char"; - rev = "b6011a1cb501c0242d11103bbee4d9138fcc765f"; - sha256 = "0vpla6lyr30fyq9gi7g9zmnhysbm077m0qgi7w3axppfbxdvg67q"; + rev = "9c1c3618662e7b43d5937342816fd63b5a31e861"; + sha256 = "1dgghswf6s7h6h04mhfnsh2m0ld8qqk70l0dq3cxhdjzqx16vnms"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jump-char"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/jump-char"; sha256 = "0l8zvfwpngkgcxl1a36jwwxdh23hi390mikz7xrq63w5zwm0007n"; name = "jump-char"; }; @@ -33092,7 +33388,7 @@ jump-to-line = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "jump-to-line"; - version = "20130122.1053"; + version = "20130122.1153"; src = fetchFromGitHub { owner = "ongaeshi"; repo = "jump-to-line"; @@ -33100,7 +33396,7 @@ sha256 = "1s9plmg323m1p625xqnks0yqz0zlsjacdj7pv8f783r0d9jmfq3s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jump-to-line"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/jump-to-line"; sha256 = "09ifhsggl5mrb6l8nqnl38yph0v26v30y98ic8hl23i455hqkkdr"; name = "jump-to-line"; }; @@ -33113,7 +33409,7 @@ jumplist = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "jumplist"; - version = "20151119.2145"; + version = "20151119.2245"; src = fetchFromGitHub { owner = "ganmacs"; repo = "jumplist"; @@ -33121,7 +33417,7 @@ sha256 = "0ykzvy8034mchq6ffyi7vqnwyrj6gnqqgn39ki81pv97qh8hh8yl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jumplist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/jumplist"; sha256 = "06xjg1q8b2fwfhfmdkb76bw2id8pgqc61fmwlgri5746jgdmd7nf"; name = "jumplist"; }; @@ -33134,7 +33430,7 @@ jvm-mode = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "jvm-mode"; - version = "20150422.208"; + version = "20150422.308"; src = fetchFromGitHub { owner = "martintrojer"; repo = "jvm-mode.el"; @@ -33142,7 +33438,7 @@ sha256 = "0k91cdjlpil8npc4d3zsgx2gk41crl7qgm9r85khcgxs59kmkniw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jvm-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/jvm-mode"; sha256 = "1r283b4s0pzq4hgwcz5cnhlvdvq4gy0x51g3vp0762s8qx969a5w"; name = "jvm-mode"; }; @@ -33155,7 +33451,7 @@ kaesar = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "kaesar"; - version = "20160128.408"; + version = "20160128.508"; src = fetchFromGitHub { owner = "mhayashi1120"; repo = "Emacs-kaesar"; @@ -33163,7 +33459,7 @@ sha256 = "1pl0514rj99b1j3y33x2bnhjbdbv9bfxgqn9498bf4ns8zayc6y9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/kaesar"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/kaesar"; sha256 = "0zhi1dv1ay1azh7afq4x6bdg91clwpsr13nrzy7539yrn9sglj5l"; name = "kaesar"; }; @@ -33176,7 +33472,7 @@ kaesar-file = callPackage ({ fetchFromGitHub, fetchurl, kaesar, lib, melpaBuild }: melpaBuild { pname = "kaesar-file"; - version = "20160128.408"; + version = "20160128.508"; src = fetchFromGitHub { owner = "mhayashi1120"; repo = "Emacs-kaesar"; @@ -33184,7 +33480,7 @@ sha256 = "1pl0514rj99b1j3y33x2bnhjbdbv9bfxgqn9498bf4ns8zayc6y9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/kaesar-file"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/kaesar-file"; sha256 = "0dcizg82maad98mbqqw5lamwz7n2lpai09jsrc66x3wy8k784alc"; name = "kaesar-file"; }; @@ -33197,7 +33493,7 @@ kaesar-mode = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, kaesar, lib, melpaBuild }: melpaBuild { pname = "kaesar-mode"; - version = "20160128.408"; + version = "20160128.508"; src = fetchFromGitHub { owner = "mhayashi1120"; repo = "Emacs-kaesar"; @@ -33205,7 +33501,7 @@ sha256 = "1pl0514rj99b1j3y33x2bnhjbdbv9bfxgqn9498bf4ns8zayc6y9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/kaesar-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/kaesar-mode"; sha256 = "0yqnlchbpmhsqc8j531n08vybwa32cy0v9sy4f9fgxa90rfqczry"; name = "kaesar-mode"; }; @@ -33218,7 +33514,7 @@ kakapo-mode = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "kakapo-mode"; - version = "20150906.2352"; + version = "20150907.52"; src = fetchFromGitHub { owner = "listx"; repo = "kakapo-mode"; @@ -33226,7 +33522,7 @@ sha256 = "0b6af8hnrn0v4z1xpahjfpw5iga2bmgd3qwfn3is2rygsn5rkm40"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/kakapo-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/kakapo-mode"; sha256 = "0a99cqflpzasl4wcmmf99aj8xgywkym37j7mvnsajrsk5wawdlss"; name = "kakapo-mode"; }; @@ -33238,14 +33534,14 @@ }) {}; kanban = callPackage ({ fetchhg, fetchurl, lib, melpaBuild }: melpaBuild { pname = "kanban"; - version = "20150930.1117"; + version = "20150930.1217"; src = fetchhg { url = "https://bitbucket.com/ArneBab/kanban.el"; rev = "54d855426372"; sha256 = "14g0f51jig8b1y6zfaw7b1cp692lddqzkc0ngf4y89sw9gbmsh3w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/kanban"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/kanban"; sha256 = "1sif2ayb8fq5vjz9lpkaq40aw9wiciz84yipab2qczszlgw1l1hb"; name = "kanban"; }; @@ -33258,7 +33554,7 @@ kanji-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "kanji-mode"; - version = "20150202.225"; + version = "20150202.325"; src = fetchFromGitHub { owner = "wsgac"; repo = "kanji-mode"; @@ -33266,7 +33562,7 @@ sha256 = "0rxf44kszxazkpjmccz3wnks7si3g8vsfi2lamwynmksk8sw5d7g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/kanji-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/kanji-mode"; sha256 = "0nnkv7lp7ks9qhkbhz15ixm53grc2q0xfspzykxi9c4b59kypcq5"; name = "kanji-mode"; }; @@ -33279,7 +33575,7 @@ kaomoji = callPackage ({ emacs, fetchFromGitHub, fetchurl, helm-core, lib, melpaBuild }: melpaBuild { pname = "kaomoji"; - version = "20160218.220"; + version = "20160218.320"; src = fetchFromGitHub { owner = "kuanyui"; repo = "kaomoji.el"; @@ -33287,7 +33583,7 @@ sha256 = "0vqjbv3pqlbyibqylfsqqjzkvjhdg01hlxszfblpg72fziyzcci5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/kaomoji"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/kaomoji"; sha256 = "1p61pbqf2lnwr6ryxxc4jkd5bmlgknrc27lg89h3b4pw7k39cqy1"; name = "kaomoji"; }; @@ -33300,7 +33596,7 @@ karma = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, pkg-info }: melpaBuild { pname = "karma"; - version = "20160220.645"; + version = "20160220.745"; src = fetchFromGitHub { owner = "tonini"; repo = "karma.el"; @@ -33308,7 +33604,7 @@ sha256 = "12v242kfcx849j8w95v2g7djh9xqbx8n033iaxyavfxnz0pp7zdl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/karma"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/karma"; sha256 = "19wl7js7wmw7jv2q3l4r5zl718lhy2a0jhl79k57ihwhxdc58fwc"; name = "karma"; }; @@ -33321,7 +33617,7 @@ kerl = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "kerl"; - version = "20150424.1505"; + version = "20150424.1605"; src = fetchFromGitHub { owner = "correl"; repo = "kerl.el"; @@ -33329,7 +33625,7 @@ sha256 = "1kkzs7nrcr74qn1m456vaj52a9j3ah4biakimz06hls415l56yk9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/kerl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/kerl"; sha256 = "0f8n7cm5c432pwj28bcpv2jj5z3br3k164xj6nwfis3dvijwsgss"; name = "kerl"; }; @@ -33341,13 +33637,13 @@ }) {}; key-chord = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "key-chord"; - version = "20160227.638"; + version = "20160227.738"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/key-chord.el"; sha256 = "03m44pqggfrd53nh9dvpdjgm0rvca34qxmd30hr33hzprzjambxg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/key-chord"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/key-chord"; sha256 = "0cr9lx1pvr0qc762nn5pbh8w93dx1hh1zzf806cag2b9pgk6d4an"; name = "key-chord"; }; @@ -33360,7 +33656,7 @@ key-combo = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "key-combo"; - version = "20150324.939"; + version = "20150324.1039"; src = fetchFromGitHub { owner = "uk-ar"; repo = "key-combo"; @@ -33368,7 +33664,7 @@ sha256 = "1is7s50lgn77lxxwgakiaywx6jqdfg8045d18m4zn3ilxg6k8ljf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/key-combo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/key-combo"; sha256 = "1v8saw92jphvjkyy7j9jx7cxzgisl4zpf4wjzdjfw3la5lz11waf"; name = "key-combo"; }; @@ -33381,7 +33677,7 @@ key-intercept = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "key-intercept"; - version = "20140211.149"; + version = "20140211.249"; src = fetchFromGitHub { owner = "tarao"; repo = "key-intercept-el"; @@ -33389,7 +33685,7 @@ sha256 = "143nfs8pgi5yy3mjq7nirffplk4vb8kik4q7zypynh2pddip30a4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/key-intercept"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/key-intercept"; sha256 = "1z776jbpjks5bir6bd0748mlrmz05nf0jy9l4hlmwgyn72dcbx16"; name = "key-intercept"; }; @@ -33402,7 +33698,7 @@ key-leap = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "key-leap"; - version = "20160109.1437"; + version = "20160109.1537"; src = fetchFromGitHub { owner = "MartinRykfors"; repo = "key-leap"; @@ -33410,7 +33706,7 @@ sha256 = "14xk0crl25alcckkcg0wx7gwb65hmicfn01db1zip8swk249g9w3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/key-leap"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/key-leap"; sha256 = "0z1fhpf8g0c4rh3bf8dfmdgyhj5w686kavjr214czaga0x7mwlwj"; name = "key-leap"; }; @@ -33423,7 +33719,7 @@ key-seq = callPackage ({ fetchFromGitHub, fetchurl, key-chord, lib, melpaBuild }: melpaBuild { pname = "key-seq"; - version = "20150907.256"; + version = "20150907.356"; src = fetchFromGitHub { owner = "vlevit"; repo = "key-seq.el"; @@ -33431,7 +33727,7 @@ sha256 = "05vpydcgiaya35b62cdjxna9y02vnwzzg6p8jh0dkr9k44h4iy3f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/key-seq"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/key-seq"; sha256 = "166k6hl9vvsnnksvhrv5cbhv9bdiclnbfv7qf67q4c1an9xzqi74"; name = "key-seq"; }; @@ -33444,7 +33740,7 @@ keychain-environment = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "keychain-environment"; - version = "20160424.646"; + version = "20160424.746"; src = fetchFromGitHub { owner = "tarsius"; repo = "keychain-environment"; @@ -33452,7 +33748,7 @@ sha256 = "0xgm80dbg45bs3k8psd3pv49z1xbvzm156xs55gmxdzbgxbzpazr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/keychain-environment"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/keychain-environment"; sha256 = "1w77cg00bwx68h0d6k6r1fzwdwz97q12ch2hmpzjnblqs0i4sv8v"; name = "keychain-environment"; }; @@ -33465,7 +33761,7 @@ keydef = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "keydef"; - version = "20090428.1431"; + version = "20090428.1531"; src = fetchFromGitHub { owner = "emacsorphanage"; repo = "keydef"; @@ -33473,7 +33769,7 @@ sha256 = "0dkc51bmix4b8czs2wg6vz8vk32qlll1b9fjmx6xshrxm85cyhvv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/keydef"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/keydef"; sha256 = "0yb2vgj7abyg8j7qmv74nsanv50lf350q1m58rjv8wm31yykg992"; name = "keydef"; }; @@ -33486,15 +33782,15 @@ keyfreq = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "keyfreq"; - version = "20150924.2205"; + version = "20160503.952"; src = fetchFromGitHub { owner = "dacap"; repo = "keyfreq"; - rev = "06cb50b2796688cc76eeb86d48c9826abbee6383"; - sha256 = "18qiw2324gx5w12pqka9njsysxym8dpglk7dzadg0k1wji73nn6l"; + rev = "f3a96693e2e4c6893198a0223e3f3c648ae09cec"; + sha256 = "1x87mbnzkggx5llh0i0s3sj1nfw7liwnlqc9csya517w4x5mhl8i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/keyfreq"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/keyfreq"; sha256 = "1rw6hzmw7h5ngvndy7aa41pq911y2hr9kqc9w4gdd5v2p4ln1qh7"; name = "keyfreq"; }; @@ -33507,7 +33803,7 @@ keymap-utils = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "keymap-utils"; - version = "20160212.1729"; + version = "20160212.1829"; src = fetchFromGitHub { owner = "tarsius"; repo = "keymap-utils"; @@ -33515,7 +33811,7 @@ sha256 = "1c4qqfq7c1d31v9ap7fgq019l5vds7jzqq9c2dp4gj7j00d9vvlx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/keymap-utils"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/keymap-utils"; sha256 = "0nbcwz4nls0pva79lbx91bpzkl38g98yavwkvg2rxbhn9vjbhzs9"; name = "keymap-utils"; }; @@ -33528,7 +33824,7 @@ keyset = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "keyset"; - version = "20150219.2330"; + version = "20150220.30"; src = fetchFromGitHub { owner = "HKey"; repo = "keyset"; @@ -33536,7 +33832,7 @@ sha256 = "0cm6naqlwk65xy9lwnn5r7m6nc1l7ims2ckydmyzny5ak8y5jbws"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/keyset"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/keyset"; sha256 = "1kfw0pfb6qm2ji1v0kb8xgz8q2yd2k9kxmaz5vxcdixdlax3xiqg"; name = "keyset"; }; @@ -33549,7 +33845,7 @@ keyword-search = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "keyword-search"; - version = "20160415.441"; + version = "20160415.541"; src = fetchFromGitHub { owner = "keyword-search"; repo = "keyword-search"; @@ -33557,7 +33853,7 @@ sha256 = "0li7x72ppxjh111njkkrc00lvsfm14h784m6yh3cvgsbx02lywbq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/keyword-search"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/keyword-search"; sha256 = "0wvci1v8pblfbdslfzpi46c149y8pi49kza9jf33jzhj357lp5qa"; name = "keyword-search"; }; @@ -33570,7 +33866,7 @@ kfg = callPackage ({ f, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "kfg"; - version = "20140909.38"; + version = "20140909.138"; src = fetchFromGitHub { owner = "abingham"; repo = "kfg"; @@ -33578,7 +33874,7 @@ sha256 = "0xq835xzywks4b4kaz5i0pp759i23kibs5gkvvxasw0dncqh7j5c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/kfg"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/kfg"; sha256 = "0vvvxl6a4ac27igwmsgzpf0whf9h2pjl9d89fd9fizad6gi8x1fs"; name = "kfg"; }; @@ -33591,7 +33887,7 @@ kibit-helper = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "kibit-helper"; - version = "20150508.1033"; + version = "20150508.1133"; src = fetchFromGitHub { owner = "brunchboy"; repo = "kibit-helper"; @@ -33599,7 +33895,7 @@ sha256 = "0s2hb2lvfmcvm3n1fg4biaafc1p7j7w990d7w15gicaw6rr2j4nr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/kibit-helper"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/kibit-helper"; sha256 = "15viybjqksylvm5ash2kzsil0cpdka56wj1rryixa8y1bwlj8y4s"; name = "kibit-helper"; }; @@ -33612,7 +33908,7 @@ kill-or-bury-alive = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "kill-or-bury-alive"; - version = "20160128.309"; + version = "20160128.409"; src = fetchFromGitHub { owner = "mrkkrp"; repo = "kill-or-bury-alive"; @@ -33620,7 +33916,7 @@ sha256 = "0a2jmk4wryngs56rqh6sxiyk5yh25l2qvping86yipic2wia17n8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/kill-or-bury-alive"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/kill-or-bury-alive"; sha256 = "0mm0m8hpy5v98cap4f0s38dcviirm7s6ra4l94mknyvnx0f73lz8"; name = "kill-or-bury-alive"; }; @@ -33633,7 +33929,7 @@ kill-ring-search = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "kill-ring-search"; - version = "20140422.1055"; + version = "20140422.1155"; src = fetchFromGitHub { owner = "nschum"; repo = "kill-ring-search.el"; @@ -33641,7 +33937,7 @@ sha256 = "0yrc09k64rv5is4wvss938mkj2pkvbr98lr3ahsi7p0aqn7s444v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/kill-ring-search"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/kill-ring-search"; sha256 = "1pg4j1rrji64rrdv2xpwz33vlyk8r0hz4j4fikzwpbcbmni3skan"; name = "kill-ring-search"; }; @@ -33654,7 +33950,7 @@ killer = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "killer"; - version = "20120808.622"; + version = "20120808.722"; src = fetchFromGitHub { owner = "tarsius"; repo = "killer"; @@ -33662,7 +33958,7 @@ sha256 = "05rbh5hkj3jsn9pw0qa4d5a5pi6367vdqkijcn9k14fdfbmyd30x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/killer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/killer"; sha256 = "10z4vqwrpss7mk0gq8xdsbsl0qibpp7s1g0l8wlmrsgn6kjkr2ma"; name = "killer"; }; @@ -33675,7 +33971,7 @@ kite = callPackage ({ fetchFromGitHub, fetchurl, json ? null, lib, melpaBuild, websocket }: melpaBuild { pname = "kite"; - version = "20130201.1338"; + version = "20130201.1438"; src = fetchFromGitHub { owner = "jscheid"; repo = "kite"; @@ -33683,7 +33979,7 @@ sha256 = "1cr4i66lws6yhyxmyx5jw6d5x7i75435mafkkych4nfa0mv4vicd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/kite"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/kite"; sha256 = "04x92qcvx428l2cvm2nk9px7r8i159k0ra0haq2sjncjr1ajhg9m"; name = "kite"; }; @@ -33696,15 +33992,15 @@ kite-mini = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, websocket }: melpaBuild { pname = "kite-mini"; - version = "20150811.1329"; + version = "20160507.1149"; src = fetchFromGitHub { owner = "tungd"; repo = "kite-mini.el"; - rev = "d9eb14593364f7d58eed3f26b45e8aef5b845b20"; - sha256 = "1m0f1hiczq88qjy573rhlkw2lmjy814cgdl42zxsjbf78wg4qx8d"; + rev = "5ca732fa4068a50e772d1ac1e34eef3846bf3ffb"; + sha256 = "1a3rq4g2162kpigpq565jy4czxa7is2cxqan68748wkgzncvl738"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/kite-mini"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/kite-mini"; sha256 = "1g644406zm3db0fjyv704aa8dbd20v1apmysb3mmh2vldbch4iyh"; name = "kite-mini"; }; @@ -33717,15 +34013,15 @@ kivy-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "kivy-mode"; - version = "20140524.757"; + version = "20140524.857"; src = fetchFromGitHub { owner = "kivy"; repo = "kivy"; - rev = "ef4e311a67416a6642e62db140aa458b1492b934"; - sha256 = "1fdkca63ii2lhss2mff9swxbhymf9hq8znjyfkji5bhq517158qx"; + rev = "7b96e4e02aad7cf5115d826b52c75031b729c644"; + sha256 = "13mwddfrikw7f1ch2dvg289spbmzclxxdmqqyzamkrkzg79bd44m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/kivy-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/kivy-mode"; sha256 = "02l230rwivr7rbiqm4vg70458z35f9v9w3mdapcrqd5d07y5mvi1"; name = "kivy-mode"; }; @@ -33738,7 +34034,7 @@ kixtart-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "kixtart-mode"; - version = "20150611.1104"; + version = "20150611.1204"; src = fetchFromGitHub { owner = "ryrun"; repo = "kixtart-mode"; @@ -33746,7 +34042,7 @@ sha256 = "1ld3ccg8q7hmjrj60rxvmmfy4dpm2lvlshjqdf9ifgjzp221g4vb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/kixtart-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/kixtart-mode"; sha256 = "079bw4lgxbmk65rrfyy8givs8j5wsyhpcjjw915ifkg577gj87qp"; name = "kixtart-mode"; }; @@ -33759,7 +34055,7 @@ know-your-http-well = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "know-your-http-well"; - version = "20160208.1704"; + version = "20160208.1804"; src = fetchFromGitHub { owner = "for-GET"; repo = "know-your-http-well"; @@ -33767,7 +34063,7 @@ sha256 = "1lppggnii2r9fvlhh33gbdrwb50za8lnalavlq9s86ngndn4n94k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/know-your-http-well"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/know-your-http-well"; sha256 = "0k2x0ajxkivim8nfpli716y7f4ssrmvwi56r94y34x4j3ib3px3q"; name = "know-your-http-well"; }; @@ -33780,7 +34076,7 @@ kolon-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "kolon-mode"; - version = "20140122.534"; + version = "20140122.634"; src = fetchFromGitHub { owner = "samvtran"; repo = "kolon-mode"; @@ -33788,7 +34084,7 @@ sha256 = "0yr4yxwxgxp5pm9f8gaqlikxp26inv01inq0ya42dzam5yphkafw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/kolon-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/kolon-mode"; sha256 = "0wcg8ph3mk4zcmzqpvl2w6rfgvrfvhmgwb14y8agh9b7v5d9xwj3"; name = "kolon-mode"; }; @@ -33801,7 +34097,7 @@ kooten-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "kooten-theme"; - version = "20160214.651"; + version = "20160214.751"; src = fetchFromGitHub { owner = "kootenpv"; repo = "emacs-kooten-theme"; @@ -33809,7 +34105,7 @@ sha256 = "1bh2zpprh2zwhfgdw131lm0j7zm0hmnb0zqcahps104xna9s5x60"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/kooten-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/kooten-theme"; sha256 = "1kkk8nl1xykc4c487icmjrc2xsv8i4s2r5h5gbcpyrk2myqi4179"; name = "kooten-theme"; }; @@ -33822,7 +34118,7 @@ kpm-list = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "kpm-list"; - version = "20160310.1250"; + version = "20160310.1350"; src = fetchFromGitHub { owner = "KMahoney"; repo = "kpm-list"; @@ -33830,7 +34126,7 @@ sha256 = "0hbzr5x9ykzrbwzfsf6rc4pbiw9m59ny3cgcx26nbi6ijbjl2fxj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/kpm-list"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/kpm-list"; sha256 = "0022bhy1mzngjmjydyqnmlgnhww05v4dxsfav034r8nyyc7677z0"; name = "kpm-list"; }; @@ -33843,7 +34139,7 @@ kroman = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "kroman"; - version = "20150827.1840"; + version = "20150827.1940"; src = fetchFromGitHub { owner = "cheunghy"; repo = "kroman-el"; @@ -33851,7 +34147,7 @@ sha256 = "11axxmhdpwgrcyjz200pf5bqzjw9wz4085r8p1n2vr5gx98374fr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/kroman"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/kroman"; sha256 = "0y9ji3c8kndrz605n7b4w5xq0qp093d61hxwhblm3qrh3370mws7"; name = "kroman"; }; @@ -33861,10 +34157,31 @@ license = lib.licenses.free; }; }) {}; + ksp-cfg-mode = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "ksp-cfg-mode"; + version = "20160506.1501"; + src = fetchFromGitHub { + owner = "lashtear"; + repo = "ksp-cfg-mode"; + rev = "4b972f504672309e36c64f963eea49df1d4eba77"; + sha256 = "1q55lwpq9g2dnxwr8k9m7b7sd9lr02xqk9xw115lfncjhwkzaqcq"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ksp-cfg-mode"; + sha256 = "0azcn4qvziacbw1qy33fwdaldw7xpzr672vzjsqhr0b2vg9m2ipi"; + name = "ksp-cfg-mode"; + }; + packageRequires = [ cl-lib ]; + meta = { + homepage = "https://melpa.org/#/ksp-cfg-mode"; + license = lib.licenses.free; + }; + }) {}; kurecolor = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "kurecolor"; - version = "20150423.2322"; + version = "20150424.22"; src = fetchFromGitHub { owner = "emacsfodder"; repo = "kurecolor"; @@ -33872,7 +34189,7 @@ sha256 = "0da4y9pf6vq0i6w7bmvrszg9bji3ylhr44hmyrmxvah28pigb2fz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/kurecolor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/kurecolor"; sha256 = "0q0q0dfv376h7j3sgwxqwfpxy1qjbvb6i5clsxz9xp4ly89w4d4f"; name = "kurecolor"; }; @@ -33885,7 +34202,7 @@ kv = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "kv"; - version = "20140108.934"; + version = "20140108.1034"; src = fetchFromGitHub { owner = "nicferrier"; repo = "emacs-kv"; @@ -33893,7 +34210,7 @@ sha256 = "0r0lz2s6gvy04fwnafai668jsf4546h4k6zd6isx5wpk0n33pj5m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/kv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/kv"; sha256 = "1vzifi6zpkmsh1a3c2njrw7mpfdgyjvpbz3bj42j8cg3vwjnjznb"; name = "kv"; }; @@ -33906,7 +34223,7 @@ kwin = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "kwin"; - version = "20150308.1312"; + version = "20150308.1412"; src = fetchFromGitHub { owner = "reactormonk"; repo = "kwin-minor-mode"; @@ -33914,7 +34231,7 @@ sha256 = "0irbfgip493hyh45msnb7climgfwr8f05nvc97bzaqggnay88scy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/kwin"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/kwin"; sha256 = "1pxnyj81py3ygadmyfrqndb0jkk6xlbf0rg3857hsy3ccblzm7ki"; name = "kwin"; }; @@ -33927,7 +34244,7 @@ labburn-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "labburn-theme"; - version = "20160411.321"; + version = "20160411.421"; src = fetchFromGitHub { owner = "ksjogo"; repo = "labburn-theme"; @@ -33935,7 +34252,7 @@ sha256 = "0ldjkwfxac3lkfl5r1qgbjf74yc6k2b7f5imgcina34vd3jk0s3h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/labburn-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/labburn-theme"; sha256 = "09qqb62hfga88zka0pc27rc8i43cxi84cv1x8wj0vvzx6mvic1lm"; name = "labburn-theme"; }; @@ -33947,13 +34264,13 @@ }) {}; lacarte = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "lacarte"; - version = "20151231.1609"; + version = "20151231.1709"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/lacarte.el"; sha256 = "01vs0v17l76zwyrblf9c6x0xg5fagd4qv8pr1fwfw7kl64hb9aa2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/lacarte"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/lacarte"; sha256 = "0a0n1lqakgsbz0scn6617rkkkvzwranzlvkzw9q4zapiz1s9xqp9"; name = "lacarte"; }; @@ -33966,7 +34283,7 @@ lang-refactor-perl = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "lang-refactor-perl"; - version = "20131122.1527"; + version = "20131122.1627"; src = fetchFromGitHub { owner = "jplindstrom"; repo = "emacs-lang-refactor-perl"; @@ -33974,7 +34291,7 @@ sha256 = "135k7inkvdz51j7al3nndaamrkyn989vlv1mxcp8lwx8cgq0rqfj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/lang-refactor-perl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/lang-refactor-perl"; sha256 = "02fv25d76rvxqzxs48j4lkrifdhqayyb1in05ryyz2pk9x5hbax9"; name = "lang-refactor-perl"; }; @@ -33987,7 +34304,7 @@ langdoc = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "langdoc"; - version = "20150218.45"; + version = "20150218.145"; src = fetchFromGitHub { owner = "tom-tan"; repo = "langdoc"; @@ -33995,7 +34312,7 @@ sha256 = "0svci7xs4iysv8ysf93g382arip0xpgi0fllw8xx2vrd70sz7lff"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/langdoc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/langdoc"; sha256 = "19i6ys58wswl5ckf33swl6lsfzg4znx850br4icik15yrry65yj7"; name = "langdoc"; }; @@ -34008,7 +34325,7 @@ langtool = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "langtool"; - version = "20160116.1854"; + version = "20160116.1954"; src = fetchFromGitHub { owner = "mhayashi1120"; repo = "Emacs-langtool"; @@ -34016,7 +34333,7 @@ sha256 = "1rj0j4vxfwss0w6bwh591w5mbyzjg5rkbwyjaphyi6p7wq5w6np1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/langtool"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/langtool"; sha256 = "1xq70jyhzg0qmvialy015crbdk9rdibhwpl36khab9hi2999wxyw"; name = "langtool"; }; @@ -34029,7 +34346,7 @@ latest-clojure-libraries = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "latest-clojure-libraries"; - version = "20140314.817"; + version = "20140314.917"; src = fetchFromGitHub { owner = "AdamClements"; repo = "latest-clojure-libraries"; @@ -34037,7 +34354,7 @@ sha256 = "1cqbdgk3sd0xbw76qrhlild9dvgds3vgldq0rcl200kh7y8l6g4k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/latest-clojure-libraries"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/latest-clojure-libraries"; sha256 = "1vnm9piq71nx7q1843izm4vydfjq1564ax4ffwmqmlpisqzd6wq5"; name = "latest-clojure-libraries"; }; @@ -34050,7 +34367,7 @@ latex-extra = callPackage ({ auctex, cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "latex-extra"; - version = "20160328.1921"; + version = "20160328.2021"; src = fetchFromGitHub { owner = "Malabarba"; repo = "latex-extra"; @@ -34058,7 +34375,7 @@ sha256 = "07aavdr1dlw8hca27l8a0i8cs5ga1wqqdf1v1iyvjz61vygld77a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/latex-extra"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/latex-extra"; sha256 = "1w98ngxymafigjpfalybhs12jcf4916wk4nlxflfjcx8ryd9wjcj"; name = "latex-extra"; }; @@ -34071,7 +34388,7 @@ latex-math-preview = callPackage ({ fetchFromGitLab, fetchurl, lib, melpaBuild }: melpaBuild { pname = "latex-math-preview"; - version = "20160321.2359"; + version = "20160322.59"; src = fetchFromGitLab { owner = "latex-math-preview"; repo = "latex-math-preview"; @@ -34079,7 +34396,7 @@ sha256 = "0cxmvadkiqhvhmvmx3vvwxasw7wll8abhviss7wgizwqf4i2p3v4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/latex-math-preview"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/latex-math-preview"; sha256 = "14bn0q5czrrkb1vjdkwx6f2x4zwjkxgrc0bcncv23l13qls1gkmr"; name = "latex-math-preview"; }; @@ -34092,14 +34409,14 @@ latex-pretty-symbols = callPackage ({ fetchhg, fetchurl, lib, melpaBuild }: melpaBuild { pname = "latex-pretty-symbols"; - version = "20151112.444"; + version = "20151112.544"; src = fetchhg { url = "https://bitbucket.com/mortiferus/latex-pretty-symbols.el"; rev = "ef4ea64c09ea"; sha256 = "0h9hncf2ghfkd3i3342ajj1niykhfr0aais3j6sjg1vkm16xbr3b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/latex-pretty-symbols"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/latex-pretty-symbols"; sha256 = "1f2s2f64bmsx89a3crm4skhdi4pq9w18z9skxw3i3ydaj15s8jgl"; name = "latex-pretty-symbols"; }; @@ -34112,7 +34429,7 @@ latex-preview-pane = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "latex-preview-pane"; - version = "20151023.1503"; + version = "20151023.1603"; src = fetchFromGitHub { owner = "jsinglet"; repo = "latex-preview-pane"; @@ -34120,7 +34437,7 @@ sha256 = "1bvhrh9xfl7p474b8jcczw255d2pjmrz5b60wis0lmmxdljplrfa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/latex-preview-pane"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/latex-preview-pane"; sha256 = "1id1l473azmc9hm5vq5wba8gad9np7sv38x94qd2zkf8b78pzkbw"; name = "latex-preview-pane"; }; @@ -34133,7 +34450,7 @@ latex-unicode-math-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "latex-unicode-math-mode"; - version = "20160411.730"; + version = "20160411.830"; src = fetchFromGitHub { owner = "Christoph-D"; repo = "latex-unicode-math-mode"; @@ -34141,7 +34458,7 @@ sha256 = "10i4r81pm95990d4yrabzdm49gp47mqpv15h4r4sih10p1kbn83h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/latex-unicode-math-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/latex-unicode-math-mode"; sha256 = "1p9gpp28vylibv1s95bzfgscznw146ybgk6f3qdbbnafrcrmifcr"; name = "latex-unicode-math-mode"; }; @@ -34154,7 +34471,7 @@ launch = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "launch"; - version = "20130619.1704"; + version = "20130619.1804"; src = fetchFromGitHub { owner = "sfllaw"; repo = "emacs-launch"; @@ -34162,7 +34479,7 @@ sha256 = "0ciycsqzyj6ld60c7sfqjq59ln3jvk3w9vy606kqzpcvj01ihmv1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/launch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/launch"; sha256 = "043gwz583pa1wv84fl634p1v86lcsldsw7qkjbm6y678q5mms0m6"; name = "launch"; }; @@ -34175,7 +34492,7 @@ launchctl = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "launchctl"; - version = "20150518.809"; + version = "20150518.909"; src = fetchFromGitHub { owner = "pekingduck"; repo = "launchctl-el"; @@ -34183,7 +34500,7 @@ sha256 = "154z7bhb7qagvl3dlgrlsxdg4chz2863ijglg47xs3yhjp5ypanj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/launchctl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/launchctl"; sha256 = "07fq445cjpv4ndi7hnjmsrmskm2rlp6ghq0k3bcbjxl21smd9vs9"; name = "launchctl"; }; @@ -34196,7 +34513,7 @@ lavender-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "lavender-theme"; - version = "20141116.102"; + version = "20141116.202"; src = fetchFromGitHub { owner = "emacsfodder"; repo = "emacs-lavender-theme"; @@ -34204,7 +34521,7 @@ sha256 = "1mg923rs2dk104bcr461dif3mg42r081ii8ipnnr588w7il0xh7k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/lavender-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/lavender-theme"; sha256 = "1x7mk3dpk44fkzll6xmh2dw270cgb3a9qs3h8bmiq2dw0wrcwcd1"; name = "lavender-theme"; }; @@ -34217,7 +34534,7 @@ ldap-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ldap-mode"; - version = "20091203.1215"; + version = "20091203.1315"; src = fetchFromGitHub { owner = "emacsmirror"; repo = "ldap-mode"; @@ -34225,7 +34542,7 @@ sha256 = "03mv2r6k9syr7bk4vmdafmpa8kz19hv5h68ahj2bmdcmwlvwhkf3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ldap-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ldap-mode"; sha256 = "0lkfpbzsry9jigrx5zp14bkrvqnavnk4y3s0whnbigc4fgpf94rq"; name = "ldap-mode"; }; @@ -34238,15 +34555,15 @@ ledger-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ledger-mode"; - version = "20160228.1934"; + version = "20160504.2143"; src = fetchFromGitHub { owner = "ledger"; repo = "ledger"; - rev = "b08c03f05e2cfe7c4071a51075e83221edb24c33"; - sha256 = "0g0lz66lclr8fjlv6rr86l3sx3ib6s78ryvzffc3yy7pwz4xl0gx"; + rev = "fcf16d035e9d61ed903499d0e72985970aec9170"; + sha256 = "1hp65aai2bp5l7b3dhr6bz042xcikkk8vssirzibdw5qq6zqzgxm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ledger-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ledger-mode"; sha256 = "0hi9waxmw1bbg88brlr3816vhdi0jj05wcwvrvfc1agvrvzyqq8s"; name = "ledger-mode"; }; @@ -34259,7 +34576,7 @@ leerzeichen = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "leerzeichen"; - version = "20151106.28"; + version = "20151106.128"; src = fetchFromGitHub { owner = "fgeller"; repo = "leerzeichen.el"; @@ -34267,7 +34584,7 @@ sha256 = "0yrrlwmxg1wy65bqyacjpzd5ksljgp41x4zyizl7h0zx9rmqcdvn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/leerzeichen"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/leerzeichen"; sha256 = "0h7zpskcgkswr110vckfdbxggz5b3g9grk1j1cbd98pmrpgfqrvp"; name = "leerzeichen"; }; @@ -34280,7 +34597,7 @@ legalese = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "legalese"; - version = "20150820.1224"; + version = "20150820.1324"; src = fetchFromGitHub { owner = "jorgenschaefer"; repo = "legalese"; @@ -34288,7 +34605,7 @@ sha256 = "05zpc8b2pyjz76fvmgr7zkl56g6nf6hi4nmxdg6gkw8fx6p8i19f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/legalese"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/legalese"; sha256 = "18rkvfknaqwkmhsjpgrf2hknrb2zj61aw8rb4907gsbs9rciqpdd"; name = "legalese"; }; @@ -34301,7 +34618,7 @@ lemon-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "lemon-mode"; - version = "20130216.704"; + version = "20130216.804"; src = fetchFromGitHub { owner = "mooz"; repo = "lemon-mode"; @@ -34309,7 +34626,7 @@ sha256 = "0n6jrm5ilm5wzfrh7yjxn3sr5m10hwdm55b179ild32lh4795zj7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/lemon-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/lemon-mode"; sha256 = "0jdf3556kmv55jh85ljqh2gdx0jl2b8zgvpz9a4kf53xifk3lqz5"; name = "lemon-mode"; }; @@ -34322,7 +34639,7 @@ lenlen-theme = callPackage ({ color-theme-solarized, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "lenlen-theme"; - version = "20150307.211"; + version = "20150307.311"; src = fetchFromGitHub { owner = "zk-phi"; repo = "lenlen-theme"; @@ -34330,7 +34647,7 @@ sha256 = "0ab84qiqaz3swiraks8lx0y1kzwylpy9wz2104xgnpwnc5169z65"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/lenlen-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/lenlen-theme"; sha256 = "1bddkcl9kzj3v071qpzmxzjwywqfj5j6cldz240qgp5mx685r0a9"; name = "lenlen-theme"; }; @@ -34343,7 +34660,7 @@ lentic = callPackage ({ dash, emacs, f, fetchFromGitHub, fetchurl, lib, m-buffer, melpaBuild, s }: melpaBuild { pname = "lentic"; - version = "20160110.1105"; + version = "20160110.1205"; src = fetchFromGitHub { owner = "phillord"; repo = "lentic"; @@ -34351,7 +34668,7 @@ sha256 = "04h6vk7w25yp4kzkwqnsmc59bm0182qqkyk5nxm3a1lv1v1590lf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/lentic"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/lentic"; sha256 = "0y94y1qwj23kqp491b1fzqsrjak96k1dmmzmakbl7q8vc9bncl5m"; name = "lentic"; }; @@ -34364,7 +34681,7 @@ lentic-server = callPackage ({ fetchFromGitHub, fetchurl, lentic, lib, melpaBuild, web-server }: melpaBuild { pname = "lentic-server"; - version = "20150320.826"; + version = "20150320.926"; src = fetchFromGitHub { owner = "phillord"; repo = "lentic-server"; @@ -34372,7 +34689,7 @@ sha256 = "0c6wkfz6sdcs4aglvx6h3slhma2vbj7idckwzvp8ji6s7p1mavlv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/lentic-server"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/lentic-server"; sha256 = "1y9idhf9qcsw3dbdj7rwa7bdrn1q0m3bg3r2jzwdnvkq8aas1w56"; name = "lentic-server"; }; @@ -34385,7 +34702,7 @@ less-css-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "less-css-mode"; - version = "20150511.519"; + version = "20150511.619"; src = fetchFromGitHub { owner = "purcell"; repo = "less-css-mode"; @@ -34393,7 +34710,7 @@ sha256 = "1w6mbk4gc63sh2p9rsy851x2kid0dp2ja4ai5badkr5prxkcpfdn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/less-css-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/less-css-mode"; sha256 = "188iplnwwhawq3dby3388kimy0jh1k9r8v9nxz52hy9rhh9hykf8"; name = "less-css-mode"; }; @@ -34406,7 +34723,7 @@ letcheck = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "letcheck"; - version = "20160202.1348"; + version = "20160202.1448"; src = fetchFromGitHub { owner = "Fuco1"; repo = "letcheck"; @@ -34414,7 +34731,7 @@ sha256 = "06hggcbz98qhfbvp0fxn89j98d0mmki4wc4k8kfzp5fhg071chbi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/letcheck"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/letcheck"; sha256 = "1sjwi1ldg6b1qvj9cvfwxq3qlkfas6pm8zasf43baljmnz38mxh2"; name = "letcheck"; }; @@ -34427,7 +34744,7 @@ leuven-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "leuven-theme"; - version = "20160319.1019"; + version = "20160319.1119"; src = fetchFromGitHub { owner = "fniessen"; repo = "emacs-leuven-theme"; @@ -34435,7 +34752,7 @@ sha256 = "1av1dpi1spddb1w0q370qq8zi5rjfr1d9a0f0xqy877i66wc51xf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/leuven-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/leuven-theme"; sha256 = "0pm5majr9cmj6g4zr7vb55ypk9fmfbvxx78mgmgignknbasq9g9a"; name = "leuven-theme"; }; @@ -34447,13 +34764,13 @@ }) {}; levenshtein = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "levenshtein"; - version = "20051013.1256"; + version = "20051013.1356"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/levenshtein.el"; sha256 = "0m94z18i1428bispxi285flvjf22kjm33s4sm0ad11m0w0jizir6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/levenshtein"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/levenshtein"; sha256 = "1iypnz0bw3baqxa9gldz8cikxvdhw60pvqp00kq5p3v4x3xcy4z2"; name = "levenshtein"; }; @@ -34466,7 +34783,7 @@ lexbind-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "lexbind-mode"; - version = "20141027.929"; + version = "20141027.1029"; src = fetchFromGitHub { owner = "spacebat"; repo = "lexbind-mode"; @@ -34474,7 +34791,7 @@ sha256 = "167ayfl1k8dnajw173hh67nbwbk4frmjc4fzc515q67m9d7m5932"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/lexbind-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/lexbind-mode"; sha256 = "1hs9wg45mwp3fwi827rc4g0gjx4fk87zlibq3id9fcqic8q7nrnl"; name = "lexbind-mode"; }; @@ -34487,15 +34804,15 @@ lfe-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "lfe-mode"; - version = "20160422.1406"; + version = "20160422.1506"; src = fetchFromGitHub { owner = "rvirding"; repo = "lfe"; - rev = "0406467fc129bebfb72e36b20839007cd09d7cf9"; - sha256 = "1wysncb3bs795wj1ysq206im14zwc04460pb329vlwzvl9hygmx7"; + rev = "2d703d200f6425fe66ad1af05b32218bfd584cf6"; + sha256 = "1fgcwzg9dbjacjwknr5pa3jr9p7la9bc2p5zzd76d6a1pa9f929y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/lfe-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/lfe-mode"; sha256 = "0smncyby53ipm8yqslz88sqjafk0x6r8d0qwk4wzk0pbgfyklhgs"; name = "lfe-mode"; }; @@ -34507,13 +34824,13 @@ }) {}; lib-requires = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "lib-requires"; - version = "20151231.1610"; + version = "20151231.1710"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/lib-requires.el"; sha256 = "077cy2clllrvabw44wb1pzcqz97r3y92j7cb9lnhd9pix0wpcq6g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/lib-requires"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/lib-requires"; sha256 = "1g22jh56z8rnq0h80wj10gs38yig1rk9xmk3kmhmm5mm6b14iwdx"; name = "lib-requires"; }; @@ -34526,7 +34843,7 @@ libmpdee = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "libmpdee"; - version = "20160117.1701"; + version = "20160117.1801"; src = fetchFromGitHub { owner = "andyetitmoves"; repo = "libmpdee"; @@ -34534,7 +34851,7 @@ sha256 = "039awlam3nrgkxrarcapfyc2myvc77aw7whrkcsjjybzylpzv0pr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/libmpdee"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/libmpdee"; sha256 = "0z4d8y8jlsjw20b31akkaikh5xl0c05lj77d2i1xbgzam4iixma0"; name = "libmpdee"; }; @@ -34547,7 +34864,7 @@ lice = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "lice"; - version = "20151225.1222"; + version = "20151225.1322"; src = fetchFromGitHub { owner = "buzztaiki"; repo = "lice-el"; @@ -34555,7 +34872,7 @@ sha256 = "11c3vmxyddx7zm8fpxmzhq2xygyijbszinfiwllgb4l738bxwljb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/lice"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/lice"; sha256 = "1hv2hz3153x0gk7f2js18dbx5pyprfdf2pfxb658fj16vxpp7y6x"; name = "lice"; }; @@ -34568,7 +34885,7 @@ light-soap-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "light-soap-theme"; - version = "20150607.945"; + version = "20150607.1045"; src = fetchFromGitHub { owner = "mswift42"; repo = "light-soap-theme"; @@ -34576,7 +34893,7 @@ sha256 = "04dik8z2mg6qr4d3fkd26kg29b4c5crvbnc1lfsrzyrik7ipvsi8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/light-soap-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/light-soap-theme"; sha256 = "09p4w51d5szhi81a6a3l0r4zd4ixkrkzxldr938bcmj0qmj62iyk"; name = "light-soap-theme"; }; @@ -34589,7 +34906,7 @@ lingr = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "lingr"; - version = "20100807.1231"; + version = "20100807.1331"; src = fetchFromGitHub { owner = "lugecy"; repo = "lingr-el"; @@ -34597,7 +34914,7 @@ sha256 = "0rkx0hk3y79rwhjqs3wvgxhg1rj83mxbqkhhm3jfawp8c1av4f40"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/lingr"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/lingr"; sha256 = "1445bxiirsxl9kgm0j86xc9d0pbaa5f07c1i66pw2vl40bvhrjff"; name = "lingr"; }; @@ -34610,7 +34927,7 @@ link = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "link"; - version = "20140717.2229"; + version = "20140717.2329"; src = fetchFromGitHub { owner = "myrkr"; repo = "dictionary-el"; @@ -34618,7 +34935,7 @@ sha256 = "0gz03hji6mcrzvxd74qim63g159sc8ggb6hq3x42x5l01g980fbm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/link"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/link"; sha256 = "17jpsg3f2954b740vyj37ikygrg5gmp0bjhbid8bh8vbz7xx9zy8"; name = "link"; }; @@ -34631,7 +34948,7 @@ link-hint = callPackage ({ avy, cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "link-hint"; - version = "20160413.18"; + version = "20160413.118"; src = fetchFromGitHub { owner = "noctuid"; repo = "link-hint.el"; @@ -34639,7 +34956,7 @@ sha256 = "0xkpnp5rccxf8184c4hpi3zlik5l89s64yizj0vwc2z73xah8alq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/link-hint"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/link-hint"; sha256 = "12fb2zm9jnh92fc2nzmzmwjlhi64rhakwbh9lsydx9svsvkgcs89"; name = "link-hint"; }; @@ -34652,7 +34969,7 @@ linphone = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "linphone"; - version = "20130524.609"; + version = "20130524.709"; src = fetchFromGitHub { owner = "zabbal"; repo = "emacs-linphone"; @@ -34660,7 +34977,7 @@ sha256 = "01yv6239z90hvncwmm9g5nh4xvyxv2ig3h4hsmxdn4kacfxvc84n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/linphone"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/linphone"; sha256 = "0q7mw1npxq24szhwswc93qz5h6magcxw63ymba7hwhif6my65zx7"; name = "linphone"; }; @@ -34673,7 +34990,7 @@ linum-off = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "linum-off"; - version = "20160217.1537"; + version = "20160217.1637"; src = fetchFromGitHub { owner = "mattfidler"; repo = "linum-off"; @@ -34681,7 +34998,7 @@ sha256 = "1pvgp76n2qnm01l5f9mkb9yqwfxag9x23wwqbsna66rmvsag69w0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/linum-off"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/linum-off"; sha256 = "1yilsdsyxlzmh64dpzirzga9c7lhp1phps9cdgp2898zpnzaclay"; name = "linum-off"; }; @@ -34694,7 +35011,7 @@ linum-relative = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "linum-relative"; - version = "20160118.0"; + version = "20160118.100"; src = fetchFromGitHub { owner = "coldnew"; repo = "linum-relative"; @@ -34702,7 +35019,7 @@ sha256 = "01r8vbblpqfyfafmgbcw02f371j6c2g940bwmvi54rmjf9kjd6h7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/linum-relative"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/linum-relative"; sha256 = "0s1lc3lppazv0481dxknm6qrxhvkv0r9hw8xmdrpjc282l91whkj"; name = "linum-relative"; }; @@ -34715,7 +35032,7 @@ liso-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "liso-theme"; - version = "20160410.1529"; + version = "20160410.1629"; src = fetchFromGitHub { owner = "caisah"; repo = "liso-theme"; @@ -34723,7 +35040,7 @@ sha256 = "01ycjy3amzbplp3zf0x5fahsja92gyg2252xhzcyiazmhaz7gkrd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/liso-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/liso-theme"; sha256 = "014a71dnhnr0dr36sl2h8ffp6il9nasij31ahqz0bjgn4r16s5gy"; name = "liso-theme"; }; @@ -34736,7 +35053,7 @@ lisp-extra-font-lock = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "lisp-extra-font-lock"; - version = "20150129.1516"; + version = "20150129.1616"; src = fetchFromGitHub { owner = "Lindydancer"; repo = "lisp-extra-font-lock"; @@ -34744,7 +35061,7 @@ sha256 = "1r2yhjfby4mibbr7d14m1rifchdy7bvwy50xz2wx4004zqhjmnjd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/lisp-extra-font-lock"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/lisp-extra-font-lock"; sha256 = "1xchqwhav9x7b02787ghka567fihdc14aamx92jg549c6d14qpwk"; name = "lisp-extra-font-lock"; }; @@ -34756,13 +35073,13 @@ }) {}; lispxmp = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "lispxmp"; - version = "20130824.707"; + version = "20130824.807"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/lispxmp.el"; sha256 = "1m07gb3v1a7al0h4nj3914y8lqrwzi8fwb1ih66nxzn6kb0qj3mf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/lispxmp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/lispxmp"; sha256 = "02gfbyng3dh2445jfkasxzjc9dlk02dafbfkjm40iwmb8h0fzji4"; name = "lispxmp"; }; @@ -34775,15 +35092,15 @@ lispy = callPackage ({ ace-window, emacs, fetchFromGitHub, fetchurl, hydra, iedit, lib, melpaBuild, swiper }: melpaBuild { pname = "lispy"; - version = "20160424.1244"; + version = "20160428.950"; src = fetchFromGitHub { owner = "abo-abo"; repo = "lispy"; - rev = "c70eca49a451fc58b308f2c7a4b991367a5eb633"; - sha256 = "18hcjnra7ibmaavy883gs1v6ybi6fb1i08brmc6y6gjk84grm4jp"; + rev = "c9921571db00198ca476b76f87d99105c0c86aeb"; + sha256 = "03q2y9zmxkis9dzcy25va2yc58azw2yvl4k3wv5kvl6psjmnqzab"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/lispy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/lispy"; sha256 = "12qk2gpwzz7chfz7x3wds39r4iiipvcw2rjqncir46b6zzlb1q0g"; name = "lispy"; }; @@ -34796,7 +35113,7 @@ lispyscript-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "lispyscript-mode"; - version = "20130828.919"; + version = "20130828.1019"; src = fetchFromGitHub { owner = "krisajenkins"; repo = "lispyscript-mode"; @@ -34804,7 +35121,7 @@ sha256 = "0n0mk01h9c3f24gzpws5xf6syrdwkq4kzs9mgwl74x9l0x904rgf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/lispyscript-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/lispyscript-mode"; sha256 = "02biai45l5xl2m9l1drphrlj6r01msmadhyg774ijdk1x4gm5nhr"; name = "lispyscript-mode"; }; @@ -34817,7 +35134,7 @@ list-environment = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "list-environment"; - version = "20151226.2056"; + version = "20151226.2156"; src = fetchFromGitHub { owner = "dgtized"; repo = "list-environment.el"; @@ -34825,7 +35142,7 @@ sha256 = "1szbs16jlxfj71986dbg0d3j5raaxcwz0xq5ar352731r5mdcqw4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/list-environment"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/list-environment"; sha256 = "1zdhrlp8vk8knjwh56pws6dyn003r6avjzvhghlkgnw9nfrdk57h"; name = "list-environment"; }; @@ -34838,7 +35155,7 @@ list-packages-ext = callPackage ({ fetchFromGitHub, fetchurl, ht, lib, melpaBuild, persistent-soft, s }: melpaBuild { pname = "list-packages-ext"; - version = "20151115.1116"; + version = "20151115.1216"; src = fetchFromGitHub { owner = "laynor"; repo = "list-packages-ext"; @@ -34846,7 +35163,7 @@ sha256 = "02l7q5376ydz6a8i9x74bsx5bbxz8xkasmv1lzvf79d3jbg28l1s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/list-packages-ext"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/list-packages-ext"; sha256 = "15m4888fm5xv697y7jspghg1ra49fyrny4y2x7h8ivcbslvpglvk"; name = "list-packages-ext"; }; @@ -34859,13 +35176,13 @@ list-processes-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "list-processes-plus"; - version = "20131117.1335"; + version = "20131117.1435"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/list-processes+.el"; sha256 = "1bssvyjgk1h1wiaxxdi2m5gjy6a790a9rwvi0r22hin7iskg300a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/list-processes+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/list-processes+"; sha256 = "10x7hkba2bmryyl68w769fggw65dl4f3a9g0gqdzmkdj80rcipky"; name = "list-processes-plus"; }; @@ -34878,7 +35195,7 @@ list-register = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "list-register"; - version = "20091203.1215"; + version = "20091203.1315"; src = fetchFromGitHub { owner = "emacsmirror"; repo = "list-register"; @@ -34886,7 +35203,7 @@ sha256 = "1pr7vmjmyildg44n7psg0zmj8a3kfsw5xmgh600fhs95wqxn3sag"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/list-register"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/list-register"; sha256 = "0kza9xfhmxc8qia5yixx5z2y9j4wb1530rcvgxn545b903fs55kv"; name = "list-register"; }; @@ -34899,7 +35216,7 @@ list-unicode-display = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "list-unicode-display"; - version = "20150219.301"; + version = "20150219.401"; src = fetchFromGitHub { owner = "purcell"; repo = "list-unicode-display"; @@ -34907,7 +35224,7 @@ sha256 = "05nn4db8s8h4mn3fxhwsa111ayvlq1raf6bifh7jciyw7a2c3aww"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/list-unicode-display"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/list-unicode-display"; sha256 = "01x9i5k5vhjscmkx0l6r27w1cdp9n6xk1pdjf98z3y88dnsmyfha"; name = "list-unicode-display"; }; @@ -34920,7 +35237,7 @@ list-utils = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "list-utils"; - version = "20160414.902"; + version = "20160414.1002"; src = fetchFromGitHub { owner = "rolandwalker"; repo = "list-utils"; @@ -34928,7 +35245,7 @@ sha256 = "0ql159v7sxs33yh2l080kchrj52vk34knz50cvqi3ykpb7djg3sz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/list-utils"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/list-utils"; sha256 = "0bknprr4jb1d20i9lj2aa17vpg1kqwdyzzwmy1kfydnkpf5scnr3"; name = "list-utils"; }; @@ -34941,7 +35258,7 @@ lit-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "lit-mode"; - version = "20141123.1136"; + version = "20141123.1236"; src = fetchFromGitHub { owner = "HectorAE"; repo = "lit-mode"; @@ -34949,7 +35266,7 @@ sha256 = "0mr0king5dj20vdycpszxnfs9ch808fhcz3q7svxfngj3d3671wd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/lit-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/lit-mode"; sha256 = "05rf7ki060nqnvircn0dkpdrg7xbh7phb8bqgsab89ycc7l9vv59"; name = "lit-mode"; }; @@ -34962,7 +35279,7 @@ litable = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "litable"; - version = "20150908.909"; + version = "20150908.1009"; src = fetchFromGitHub { owner = "Fuco1"; repo = "litable"; @@ -34970,7 +35287,7 @@ sha256 = "1nbz119ldwjvkm3xd9m0dx820lc177frz5mn585fsd7kqdbkam99"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/litable"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/litable"; sha256 = "073yw3ivkl093xxppn5vqyh69jhfc97al505mnyn34fwdj5v8fji"; name = "litable"; }; @@ -34983,7 +35300,7 @@ litecoin-ticker = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "litecoin-ticker"; - version = "20160130.2107"; + version = "20160130.2207"; src = fetchFromGitHub { owner = "llcc"; repo = "btcbox-ticker"; @@ -34991,7 +35308,7 @@ sha256 = "1pxcm4dxb0mggjzcv6r0a34qwq6jyih1afplysh01wk5p3nqlpyk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/litecoin-ticker"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/litecoin-ticker"; sha256 = "14gak0av8wljmyq9lcf44dc2bvlfjb86filanqh0wkf2swpbdw85"; name = "litecoin-ticker"; }; @@ -35004,7 +35321,7 @@ literate-coffee-mode = callPackage ({ coffee-mode, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "literate-coffee-mode"; - version = "20160114.634"; + version = "20160114.734"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-literate-coffee-mode"; @@ -35012,7 +35329,7 @@ sha256 = "1wxysnsigjw40ykdwngg0gqfaag0dx6zg029i2zx25kl3gr1lflc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/literate-coffee-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/literate-coffee-mode"; sha256 = "1bll1y9q3kcg3v250asjvx2k9kb314qadaq1iwanwgdlp3qvvs40"; name = "literate-coffee-mode"; }; @@ -35025,7 +35342,7 @@ literate-starter-kit = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "literate-starter-kit"; - version = "20150730.1354"; + version = "20150730.1454"; src = fetchFromGitHub { owner = "eschulte"; repo = "emacs24-starter-kit"; @@ -35033,7 +35350,7 @@ sha256 = "1v37bii372w2g3pl09n5dcrk6y7glhpg8qiv17zsk9jy3ps2xm1b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/literate-starter-kit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/literate-starter-kit"; sha256 = "1n2njf007fmrmsb8zrgxbz1cpxmr5nsp8w41yxa934iqc7qygkjy"; name = "literate-starter-kit"; }; @@ -35046,7 +35363,7 @@ live-code-talks = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, narrowed-page-navigation }: melpaBuild { pname = "live-code-talks"; - version = "20150115.1623"; + version = "20150115.1723"; src = fetchFromGitHub { owner = "david-christiansen"; repo = "live-code-talks"; @@ -35054,7 +35371,7 @@ sha256 = "1j0qa96vlsqybhp0082a466qb1hd2b0621306brl9pfl5srf5jsj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/live-code-talks"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/live-code-talks"; sha256 = "173mjmxanva13vk2f3a06s4dy62x271kynsa7pbhdg4fd72hdjma"; name = "live-code-talks"; }; @@ -35067,15 +35384,15 @@ live-py-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "live-py-mode"; - version = "20160329.2335"; + version = "20160501.55"; src = fetchFromGitHub { owner = "donkirkby"; repo = "live-py-plugin"; - rev = "f040dab8f3f09c3cc68f5ffaa06df92b50422c8f"; - sha256 = "03ickn42s7a4rxx6p596l13nsh1vgq2s3194bgd6gbm3i0f3mlhy"; + rev = "363f62c9d4c4e2434b6944891de835c4794a290b"; + sha256 = "0gc2x8kx0jawy5mbpa0vd2kj9dyvggbhnhs8vmrzf5zjs0am3wxg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/live-py-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/live-py-mode"; sha256 = "0yn1a0gf9yn068xifpv8p77d917mnalc56pll800zlpsdk8ljicq"; name = "live-py-mode"; }; @@ -35088,7 +35405,7 @@ lively = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "lively"; - version = "20160208.1235"; + version = "20160208.1335"; src = fetchFromGitHub { owner = "emacsorphanage"; repo = "lively"; @@ -35096,7 +35413,7 @@ sha256 = "1qxw7i23z6c4yimrzpaqna8j39rashgbswdv4m0x4qg4sqc7szdp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/lively"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/lively"; sha256 = "0qnyqlhqmmfq2f47zmy29hn6wqrx5yvsax8kn63nmxw380gw1z18"; name = "lively"; }; @@ -35109,7 +35426,7 @@ livescript-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "livescript-mode"; - version = "20140612.2321"; + version = "20140613.21"; src = fetchFromGitHub { owner = "yhisamatsu"; repo = "livescript-mode"; @@ -35117,7 +35434,7 @@ sha256 = "0kqjz0i0zapyhh8z57cvc8ifiizngix3ca01mjnvyq3zxg1bqrsg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/livescript-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/livescript-mode"; sha256 = "1fdfhp39zr2mhy5rd6mwqv5fwd8xaypdqig7v3ksv77m5zq7cmmj"; name = "livescript-mode"; }; @@ -35130,7 +35447,7 @@ livid-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, s, skewer-mode }: melpaBuild { pname = "livid-mode"; - version = "20131116.744"; + version = "20131116.844"; src = fetchFromGitHub { owner = "pandeiro"; repo = "livid-mode"; @@ -35138,7 +35455,7 @@ sha256 = "178ldzpk8a9m9abn8xlplxn5jgcca71dpkp82bs5g7bsccp3rx6p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/livid-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/livid-mode"; sha256 = "0jy16m6injqznx4gmxzvhys480pclw9g07z4qll2dna37177ww9d"; name = "livid-mode"; }; @@ -35151,14 +35468,14 @@ llvm-mode = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: melpaBuild { pname = "llvm-mode"; - version = "20150910.844"; + version = "20150910.944"; src = fetchgit { url = "http://llvm.org/git/llvm"; - rev = "5571fd88f171cbeba3f7d0eaaf4ea67b9e02b1de"; - sha256 = "0d5djnz6nn6h5p2vfw9sv441rq6cmz9lswxmqm87b0sbikzk7sxc"; + rev = "d2bfb6199493dbb29d1aac4da04f44f294411253"; + sha256 = "1648l1ybyc7l7cnmbdxs0833jz31dlv4iqri6557d3zjkfmy0llp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/llvm-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/llvm-mode"; sha256 = "0j3zsd0shd7kbi65a2ha7kmr0zy3my05378swx6m5m9x7miyr4y7"; name = "llvm-mode"; }; @@ -35171,15 +35488,15 @@ load-relative = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "load-relative"; - version = "20150224.1922"; + version = "20160505.319"; src = fetchFromGitHub { owner = "rocky"; repo = "emacs-load-relative"; - rev = "9514dcd0130666d1ec583fd4df5f2d578b19df33"; - sha256 = "0zf7f84g1022j2ha5pxy6ibg3i0blik00lv9s9sm3crdfcn35jik"; + rev = "2aa165fba4a663fdaeda7f7e2cec38bad617ccd8"; + sha256 = "0izrli7f20iq1pz1r1l0kshzpz7vl4p1gyn2n5mdjv5lbpq7cykb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/load-relative"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/load-relative"; sha256 = "0j8ybbjzhzgjx47pqqdbsqi8n6pzqcf6zqc38x7cf1kkklgc87ay"; name = "load-relative"; }; @@ -35192,7 +35509,7 @@ load-theme-buffer-local = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "load-theme-buffer-local"; - version = "20120702.1536"; + version = "20120702.1636"; src = fetchFromGitHub { owner = "vic"; repo = "color-theme-buffer-local"; @@ -35200,7 +35517,7 @@ sha256 = "0gvc9jy34a8wvzwjpmqhshbx2kpk6ckmdrdj5v00iya7c4afnckx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/load-theme-buffer-local"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/load-theme-buffer-local"; sha256 = "13829yrh36qac7gpxanizlk4n7av99ngvv06y6mmi5rq06a4hjx4"; name = "load-theme-buffer-local"; }; @@ -35213,7 +35530,7 @@ loc-changes = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "loc-changes"; - version = "20150302.1048"; + version = "20150302.1148"; src = fetchFromGitHub { owner = "rocky"; repo = "emacs-loc-changes"; @@ -35221,7 +35538,7 @@ sha256 = "0i0ainawjvfl3qix329hx01x7rxyfin2xgpjk7y5dgmh4p3xhv94"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/loc-changes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/loc-changes"; sha256 = "1akgij61b2ixpkchrriabwvx68cg4v5r5w9ncjrjh91hskjprfxh"; name = "loc-changes"; }; @@ -35234,7 +35551,7 @@ loccur = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "loccur"; - version = "20160129.1422"; + version = "20160129.1522"; src = fetchFromGitHub { owner = "fourier"; repo = "loccur"; @@ -35242,7 +35559,7 @@ sha256 = "1npz90zf91wqf35bqd3zmkh0b538i69w8ygc78x5w2x5005aqr0p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/loccur"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/loccur"; sha256 = "06pv2i05yzjzal4q21krbnp9rp4bsainxcwvpc98020vsmms0z8h"; name = "loccur"; }; @@ -35255,7 +35572,7 @@ lodgeit = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "lodgeit"; - version = "20150312.849"; + version = "20150312.949"; src = fetchFromGitHub { owner = "ionrock"; repo = "lodgeit-el"; @@ -35263,7 +35580,7 @@ sha256 = "1cdnm270kzixa0kpis0xw2ybkw8lqh7kykc7blxkxjrr9yjvbawl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/lodgeit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/lodgeit"; sha256 = "1ax2w5yxscycjz90g4jdbhd64g9sipzxpfjs7gq3na77s5dcjzsq"; name = "lodgeit"; }; @@ -35276,7 +35593,7 @@ log4e = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "log4e"; - version = "20150105.705"; + version = "20150105.805"; src = fetchFromGitHub { owner = "aki2o"; repo = "log4e"; @@ -35284,7 +35601,7 @@ sha256 = "1l28n7a0v2zkknc70i1wn6qb5i21dkhfizzk8wcj28v44cgzk022"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/log4e"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/log4e"; sha256 = "1klj59dv8k4r0hily489dp12ra5hq1jnsdc0wcakh6zirmakhs34"; name = "log4e"; }; @@ -35297,14 +35614,14 @@ log4j-mode = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: melpaBuild { pname = "log4j-mode"; - version = "20160108.1318"; + version = "20160108.1418"; src = fetchgit { url = "git://git.code.sf.net/p/log4j-mode/code"; rev = "26171b1e723502055e085393b0ecdcb6db406010"; sha256 = "15x6368pk4bbvhbd6cqnazcxfdz0b3f70029x0884a5797janln5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/log4j-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/log4j-mode"; sha256 = "06lam4iqxlbl9ib2n2db2nj6jbjzrw2ak8r99n6w4s3fny1q3yxx"; name = "log4j-mode"; }; @@ -35317,7 +35634,7 @@ logalimacs = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, popup, popwin, stem }: melpaBuild { pname = "logalimacs"; - version = "20131021.1329"; + version = "20131021.1429"; src = fetchFromGitHub { owner = "logaling"; repo = "logalimacs"; @@ -35325,7 +35642,7 @@ sha256 = "0lj3i9i3mg17xws13gzx8myc6d7djgsj47yx4kaq5hycgkni1p7q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/logalimacs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/logalimacs"; sha256 = "0ai7a01bdi3a0amgi63pwgdp8wgcgx10an4nhc627wgb1cqxb7p6"; name = "logalimacs"; }; @@ -35338,7 +35655,7 @@ logito = callPackage ({ eieio ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "logito"; - version = "20120225.1455"; + version = "20120225.1555"; src = fetchFromGitHub { owner = "sigma"; repo = "logito"; @@ -35346,7 +35663,7 @@ sha256 = "0jpyd2f33pk984kg0q9hxdl4615jb7sxsggnb30mpz7a2ws479xr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/logito"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/logito"; sha256 = "0bk4qnz66kvhzsk88lw45209778y53kg17iih70ix4ma1x6a3v5l"; name = "logito"; }; @@ -35359,7 +35676,7 @@ logstash-conf = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "logstash-conf"; - version = "20150308.718"; + version = "20150308.818"; src = fetchFromGitHub { owner = "Wilfred"; repo = "logstash-conf.el"; @@ -35367,7 +35684,7 @@ sha256 = "05px3zc3is7k2jmh7mal0al5zx5cqvn1bzmhgqq02pp6lwsx5xqa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/logstash-conf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/logstash-conf"; sha256 = "03i2ilphf3fdjag7m9z5gi23n6ik36qn42mzc22432m4y3c7iksh"; name = "logstash-conf"; }; @@ -35380,7 +35697,7 @@ logview = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "logview"; - version = "20160306.1455"; + version = "20160306.1555"; src = fetchFromGitHub { owner = "doublep"; repo = "logview"; @@ -35388,7 +35705,7 @@ sha256 = "14mrj3c8b5dhcl262dd6nh8zfyqgmvl75lyd7319jzwlliyxz673"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/logview"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/logview"; sha256 = "0gks3j5avx8k3427a36lv7gr95id3cylaamgn5qwbg14s54y0vsh"; name = "logview"; }; @@ -35401,7 +35718,7 @@ lolcode-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "lolcode-mode"; - version = "20111002.347"; + version = "20111002.447"; src = fetchFromGitHub { owner = "bodil"; repo = "lolcode-mode"; @@ -35409,7 +35726,7 @@ sha256 = "0pyfgywmmnlz1arvdxwyw96gr6xcg2sp3bqjli8xfcl8i0nww4kb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/lolcode-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/lolcode-mode"; sha256 = "0dxdqr3z5bw0vcfxhhhc1499vrfk1xqwxshr0kvlhdalpf59rqiw"; name = "lolcode-mode"; }; @@ -35422,7 +35739,7 @@ look-dired = callPackage ({ fetchFromGitHub, fetchurl, lib, look-mode, melpaBuild }: melpaBuild { pname = "look-dired"; - version = "20151115.1956"; + version = "20151115.2056"; src = fetchFromGitHub { owner = "vapniks"; repo = "look-dired"; @@ -35430,7 +35747,7 @@ sha256 = "0w9pbjcp4d2w3qb3nnyzq2d0d9f0pgz5lyzapidxa9z1xcj51ccj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/look-dired"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/look-dired"; sha256 = "0dddx5nxr519wqdgrbglh0pqjl3alg4ddmank42g4llzycy61wsd"; name = "look-dired"; }; @@ -35442,13 +35759,13 @@ }) {}; look-mode = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "look-mode"; - version = "20151211.1226"; + version = "20151211.1326"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/look-mode.el"; sha256 = "0sl6hqggi6qn2qp9khw11qp5hamngwxrrwx98k3pwpj9kgicdpgp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/look-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/look-mode"; sha256 = "0y3wjfjx0g5jclmv9m3vimv7zd18pk5im7smr41qk09hswi63yqj"; name = "look-mode"; }; @@ -35461,7 +35778,7 @@ loop = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "loop"; - version = "20151228.521"; + version = "20151228.621"; src = fetchFromGitHub { owner = "Wilfred"; repo = "loop.el"; @@ -35469,7 +35786,7 @@ sha256 = "1wmd7s3dk9krgmhs4f92mig18vx6y551n45ai7cvj92f4fbrsd08"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/loop"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/loop"; sha256 = "0pav16kinzljmzx84vfz63fvi39af4628vk1jw79jk0pyg9rjbar"; name = "loop"; }; @@ -35482,7 +35799,7 @@ lorem-ipsum = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "lorem-ipsum"; - version = "20140911.1608"; + version = "20140911.1708"; src = fetchFromGitHub { owner = "jschaf"; repo = "emacs-lorem-ipsum"; @@ -35490,7 +35807,7 @@ sha256 = "0grzl4kqpc1x6569yfh9xdzzbgmhcskxwk6f7scjpl32acr88cmx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/lorem-ipsum"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/lorem-ipsum"; sha256 = "0p62yifbrknjn8z0613wy2aaknj44liyrgbknhpa0qn0d4fcrp4h"; name = "lorem-ipsum"; }; @@ -35503,7 +35820,7 @@ love-minor-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, lua-mode, melpaBuild }: melpaBuild { pname = "love-minor-mode"; - version = "20130429.1659"; + version = "20130429.1759"; src = fetchFromGitHub { owner = "ejmr"; repo = "love-minor-mode"; @@ -35511,7 +35828,7 @@ sha256 = "179r4pz3hlb5p6bjfhdikkx1zvh09ln5dbw3c3rmlyww1q7v26yl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/love-minor-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/love-minor-mode"; sha256 = "1skg039h2hn8dh47ww6n9l776s2yda8ariab4v9f56kb21bncr4m"; name = "love-minor-mode"; }; @@ -35524,15 +35841,15 @@ lua-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "lua-mode"; - version = "20151025.730"; + version = "20160502.1441"; src = fetchFromGitHub { owner = "immerrr"; repo = "lua-mode"; - rev = "bdf121b2c05bc74d3d7961a91d7afeb6176e0f45"; - sha256 = "1psk4202rmkkfy1ir1ax4x4djfngd5pfry7x30ybq2ifqzymb9qb"; + rev = "3019e7537ba807313f5536b39eb708d949a1cd23"; + sha256 = "03k7nqk6vz8949pj77lsmw2rrzip7xnfp5nyy18y5d8rvifrcdgw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/lua-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/lua-mode"; sha256 = "0gyi7w2h192h3pmrhq39lxwlwd9qyqs303lnp2655pikdzk9js94"; name = "lua-mode"; }; @@ -35545,7 +35862,7 @@ lush-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "lush-theme"; - version = "20141107.1006"; + version = "20141107.1106"; src = fetchFromGitHub { owner = "andre-richter"; repo = "emacs-lush-theme"; @@ -35553,7 +35870,7 @@ sha256 = "0mv73s89n59m44szc37086wq55py5sx0lc0jxncfybawhsqyd0ar"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/lush-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/lush-theme"; sha256 = "03kqws8dzm0ay5k86f4v7g2g2ygwk4fzmz2vyzhzhbsj8hrniq9p"; name = "lush-theme"; }; @@ -35566,7 +35883,7 @@ lusty-explorer = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "lusty-explorer"; - version = "20150508.1757"; + version = "20150508.1857"; src = fetchFromGitHub { owner = "sjbach"; repo = "lusty-emacs"; @@ -35574,7 +35891,7 @@ sha256 = "1r1xfn0dyc4m49064g9n6hpwn4r763kpbg3dgprsv30i5ska61qa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/lusty-explorer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/lusty-explorer"; sha256 = "0xqanmmkyvzcg2g4zvascq5j004bqz7vmz1a19c25g9cs3rdh0ps"; name = "lusty-explorer"; }; @@ -35587,7 +35904,7 @@ lxc = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "lxc"; - version = "20140410.1522"; + version = "20140410.1622"; src = fetchFromGitHub { owner = "nicferrier"; repo = "emacs-lxc"; @@ -35595,7 +35912,7 @@ sha256 = "090gk0il4yyypzjbh2qrjdaldwf90fi30impmh4zcfl73bic5q9q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/lxc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/lxc"; sha256 = "1rv1ybmbjx7n3cavx21nzmvckw63q3jmjsfdr2pcgavrr2ck6lka"; name = "lxc"; }; @@ -35608,7 +35925,7 @@ m-buffer = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "m-buffer"; - version = "20160125.1503"; + version = "20160125.1603"; src = fetchFromGitHub { owner = "phillord"; repo = "m-buffer-el"; @@ -35616,7 +35933,7 @@ sha256 = "1rrfvshl6zbsrswg5hrvq1p0rd9vacqwbr4s44kln7vg4ybcgr24"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/m-buffer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/m-buffer"; sha256 = "0l2rayglv48pcwnr1ggmn8c0az0mffgv02ivnzr9jcfs55ki07fc"; name = "m-buffer"; }; @@ -35629,7 +35946,7 @@ macro-math = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "macro-math"; - version = "20130328.1104"; + version = "20130328.1204"; src = fetchFromGitHub { owner = "nschum"; repo = "macro-math.el"; @@ -35637,7 +35954,7 @@ sha256 = "119c77s3qp1vqc5m2yf7m4s81aphkhsvsnwqmpq6xl08r3592zxz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/macro-math"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/macro-math"; sha256 = "1r7splwq5kdrdhbmw5zn81vxymsrllgil48g8dl0r60293384h00"; name = "macro-math"; }; @@ -35649,13 +35966,13 @@ }) {}; macros-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "macros-plus"; - version = "20151231.1619"; + version = "20151231.1719"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/macros+.el"; sha256 = "07iw9iarz6z9n6vnhqqljfjpvq6vb97ca2hwj9v0k5k8mafdqg7d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/macros+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/macros+"; sha256 = "0aihszxsjnc93pbbkmkr1iwzvii3jw8yh1f6dpnjykgvb328pvqi"; name = "macros-plus"; }; @@ -35668,7 +35985,7 @@ macrostep = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "macrostep"; - version = "20151213.345"; + version = "20151213.445"; src = fetchFromGitHub { owner = "joddie"; repo = "macrostep"; @@ -35676,7 +35993,7 @@ sha256 = "0g9bnq4p3ffvva30hpll80dn3i41m51mcvw3qf787zg1nmc5a0j6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/macrostep"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/macrostep"; sha256 = "1wjibxbdsp5qfhq8xy0mcf3ms0q74qhdrhqndprn6jh3kcn5q63c"; name = "macrostep"; }; @@ -35689,7 +36006,7 @@ mag-menu = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, splitter }: melpaBuild { pname = "mag-menu"; - version = "20150505.1350"; + version = "20150505.1450"; src = fetchFromGitHub { owner = "chumpage"; repo = "mag-menu"; @@ -35697,7 +36014,7 @@ sha256 = "1flamyk7z3r723cczqra0f4yabc6kmgwjaw2bvs3kisppqmmz72g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mag-menu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/mag-menu"; sha256 = "1r1yisjnqxl9llpf91rwqp4q47jc4qp32xnkl8wzsgr0r2qf5yk2"; name = "mag-menu"; }; @@ -35710,15 +36027,15 @@ magic-filetype = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "magic-filetype"; - version = "20160220.818"; + version = "20160507.230"; src = fetchFromGitHub { owner = "zonuexe"; repo = "magic-filetype.el"; - rev = "1111a67dd07b1d2a91614c8234e459081ca95e24"; - sha256 = "1km5g9g1jmyx1r3fhd9w8091xainmmvmhi6bzqr1l4nx138wwf2h"; + rev = "d44080082dde61e884179ac1232c8ae1f9927d5c"; + sha256 = "0nxgy2282iy8bavphjbzn9b74wj864lwdvx1pcphj0n4dcf5bv63"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/magic-filetype"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/magic-filetype"; sha256 = "0gcys45cqn5ghppkn0rmyvfybprlfz1x6hqr21yv93mf79h75zhg"; name = "magic-filetype"; }; @@ -35731,7 +36048,7 @@ magic-latex-buffer = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "magic-latex-buffer"; - version = "20160212.803"; + version = "20160212.903"; src = fetchFromGitHub { owner = "zk-phi"; repo = "magic-latex-buffer"; @@ -35739,7 +36056,7 @@ sha256 = "1gmhb8g1pl4qqk1d32hlvmhx2jqfsn3hkc4lkzhgk1n3qzfrq4hf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/magic-latex-buffer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/magic-latex-buffer"; sha256 = "0xm4vk4aggyfw96cgya5cp97jzx5ha0xwpf2yfh7c3m8d9cca4y8"; name = "magic-latex-buffer"; }; @@ -35752,15 +36069,15 @@ magit = callPackage ({ async, dash, emacs, fetchFromGitHub, fetchurl, git-commit, lib, magit-popup, melpaBuild, with-editor }: melpaBuild { pname = "magit"; - version = "20160425.630"; + version = "20160507.1031"; src = fetchFromGitHub { owner = "magit"; repo = "magit"; - rev = "d1f678316f2c27e9677760938757b38168e36ebc"; - sha256 = "01pcx8bx07vqzd3b3rb3y4hgv8fhrlal7ayn0f70nr01f3v0gfl1"; + rev = "d836f2e037812271ca1f6cec5303d6d91b921508"; + sha256 = "16a9laf3lgjcksip31j2nvbfx26r8ri4ajph4w0b893mfzdqv2qk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/magit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/magit"; sha256 = "0518ax2y7y2ji4jp7yghy84yxm0zgb059aqfa4v17grm4kr8p16q"; name = "magit"; }; @@ -35780,7 +36097,7 @@ magit-annex = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, magit, melpaBuild }: melpaBuild { pname = "magit-annex"; - version = "20160204.2135"; + version = "20160204.2235"; src = fetchFromGitHub { owner = "magit"; repo = "magit-annex"; @@ -35788,7 +36105,7 @@ sha256 = "0fc8g1lba8pfd04i084djfn11c1yqf2rildf7w5jr9l0cryv6f7h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/magit-annex"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/magit-annex"; sha256 = "1ri58s1ly416ksmb7mql6vnmx7hq59lmhi7qijknjarw7qs3bqys"; name = "magit-annex"; }; @@ -35801,7 +36118,7 @@ magit-filenotify = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, magit, melpaBuild }: melpaBuild { pname = "magit-filenotify"; - version = "20151116.1740"; + version = "20151116.1840"; src = fetchFromGitHub { owner = "magit"; repo = "magit-filenotify"; @@ -35809,7 +36126,7 @@ sha256 = "0nkxxhxkhy314jv1l3hza84vigl8q7fc8hjjvrx58gfgsfgifx6r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/magit-filenotify"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/magit-filenotify"; sha256 = "00a77czdi24n3zkx6jwaj2asablzpxq16iqd8s84kkqxcfiiahn7"; name = "magit-filenotify"; }; @@ -35822,7 +36139,7 @@ magit-find-file = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, magit, melpaBuild }: melpaBuild { pname = "magit-find-file"; - version = "20150702.330"; + version = "20150702.430"; src = fetchFromGitHub { owner = "bradwright"; repo = "magit-find-file.el"; @@ -35830,7 +36147,7 @@ sha256 = "1j3jsrp0qpaa2xd98d1g9z0zc4b93knwajrlnlsc7l6g0vlfsddb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/magit-find-file"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/magit-find-file"; sha256 = "1y66nsq1hbv1sb4n71gdxv7p1rz37vd9lkf7zl7avy0dchs499ik"; name = "magit-find-file"; }; @@ -35843,7 +36160,7 @@ magit-gerrit = callPackage ({ fetchFromGitHub, fetchurl, lib, magit, melpaBuild }: melpaBuild { pname = "magit-gerrit"; - version = "20160226.330"; + version = "20160226.430"; src = fetchFromGitHub { owner = "terranpro"; repo = "magit-gerrit"; @@ -35851,7 +36168,7 @@ sha256 = "0mms0gxv9a3ns8lk5k2wjibm3088y1cmpr3axjdh6ppv7r5wdvii"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/magit-gerrit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/magit-gerrit"; sha256 = "1iwvg10ly6dlf8llz9f8d4qfdbvd3s28wf48qgn1wjlxpka6zrd4"; name = "magit-gerrit"; }; @@ -35864,7 +36181,7 @@ magit-gh-pulls = callPackage ({ emacs, fetchFromGitHub, fetchurl, gh, lib, magit, melpaBuild, pcache, s }: melpaBuild { pname = "magit-gh-pulls"; - version = "20160413.1651"; + version = "20160413.1751"; src = fetchFromGitHub { owner = "sigma"; repo = "magit-gh-pulls"; @@ -35872,7 +36189,7 @@ sha256 = "0j2gj7lnbwzhbhhccsq4gws7gkzlafz25bp47907rf7a3vq8714a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/magit-gh-pulls"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/magit-gh-pulls"; sha256 = "0qn9vjxi33pya9s8v3g95scmhwrn2yf5pjm7d24frq766wigjv8d"; name = "magit-gh-pulls"; }; @@ -35885,15 +36202,15 @@ magit-gitflow = callPackage ({ fetchFromGitHub, fetchurl, lib, magit, magit-popup, melpaBuild }: melpaBuild { pname = "magit-gitflow"; - version = "20160318.900"; + version = "20160428.530"; src = fetchFromGitHub { owner = "jtatarik"; repo = "magit-gitflow"; - rev = "e65ac501b603f245737b0fb73e71520356924f3f"; - sha256 = "0g9wqd4dbd0spal7ss9k679nak02hr1z0mgq6k4g5nkgngwn6l2q"; + rev = "26b64ec4f0953645c3e8afa806d873778cc61bb6"; + sha256 = "0ibb0fs21hwmhxrm43d0zb9wlnzr9mlbl5nxg2k6rd4x5xd1869d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/magit-gitflow"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/magit-gitflow"; sha256 = "0wsqq3xpqqfak4aqwsh5sxjb1m62z3z0ysgdmnrch3qsh480r8vf"; name = "magit-gitflow"; }; @@ -35906,7 +36223,7 @@ magit-p4 = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, magit, magit-popup, melpaBuild, p4 }: melpaBuild { pname = "magit-p4"; - version = "20160311.1109"; + version = "20160311.1209"; src = fetchFromGitHub { owner = "qoocku"; repo = "magit-p4"; @@ -35914,7 +36231,7 @@ sha256 = "01ifl1bg3sd5d4b5ms9kyw074as8bkzqpwhxppp79ml46vp1np2x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/magit-p4"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/magit-p4"; sha256 = "19p7h3a21jjr2h52ika14lyczdv6z36gl7hk1v17bffffac8q069"; name = "magit-p4"; }; @@ -35927,15 +36244,15 @@ magit-popup = callPackage ({ async, dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "magit-popup"; - version = "20160425.630"; + version = "20160425.730"; src = fetchFromGitHub { owner = "magit"; repo = "magit"; - rev = "d1f678316f2c27e9677760938757b38168e36ebc"; - sha256 = "01pcx8bx07vqzd3b3rb3y4hgv8fhrlal7ayn0f70nr01f3v0gfl1"; + rev = "d836f2e037812271ca1f6cec5303d6d91b921508"; + sha256 = "16a9laf3lgjcksip31j2nvbfx26r8ri4ajph4w0b893mfzdqv2qk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/magit-popup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/magit-popup"; sha256 = "0w6m384bbmp3bd4qbss5h1jvcfp4qnpqvzlfykhdgjwpv2b2a2fj"; name = "magit-popup"; }; @@ -35948,15 +36265,15 @@ magit-rockstar = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, magit, melpaBuild }: melpaBuild { pname = "magit-rockstar"; - version = "20160424.632"; + version = "20160430.713"; src = fetchFromGitHub { owner = "tarsius"; repo = "magit-rockstar"; - rev = "16b576c45d5ce1ffda80f0db5d779b9c548a5adb"; - sha256 = "1wxk7h1v123h4m20fk5h70an17zzkfr437xyqjpcy085qqz679jr"; + rev = "76f85a97d152777df6d27fecce4cf43d3dd5b3d9"; + sha256 = "14g9idwdvvx5b1cw9ba99pzbylaikl7w8xqgs87f3smzaqr6151w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/magit-rockstar"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/magit-rockstar"; sha256 = "1i4fmraiypyd3q6vvibkg9xqfxiq83kcz64b1dr3wmwn30j7986n"; name = "magit-rockstar"; }; @@ -35969,7 +36286,7 @@ magit-stgit = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, magit, melpaBuild }: melpaBuild { pname = "magit-stgit"; - version = "20160224.903"; + version = "20160224.1003"; src = fetchFromGitHub { owner = "magit"; repo = "magit-stgit"; @@ -35977,7 +36294,7 @@ sha256 = "163a1rddl54jgxm5dygnbp1pz1as4hhjszan1rcabvzcfnfdpakj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/magit-stgit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/magit-stgit"; sha256 = "12wg1ig2jzy2np76brpwxdix9pwv75chviq3c24qyv4y80pd11sv"; name = "magit-stgit"; }; @@ -35990,7 +36307,7 @@ magit-svn = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, magit, melpaBuild }: melpaBuild { pname = "magit-svn"; - version = "20151219.747"; + version = "20151219.847"; src = fetchFromGitHub { owner = "magit"; repo = "magit-svn"; @@ -35998,7 +36315,7 @@ sha256 = "0r3nkrisyjawjwbm74yi6fqiwcqzlfkypsdscfhii0q50ky8plph"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/magit-svn"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/magit-svn"; sha256 = "02n732z06f0bhxqkxzlvm36bpqr40pas09zbzpfdk4pb6f9f80s0"; name = "magit-svn"; }; @@ -36011,7 +36328,7 @@ magit-topgit = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, magit, melpaBuild }: melpaBuild { pname = "magit-topgit"; - version = "20160313.1454"; + version = "20160313.1554"; src = fetchFromGitHub { owner = "magit"; repo = "magit-topgit"; @@ -36019,7 +36336,7 @@ sha256 = "06fbjv3zd92lvg4xjsp9l4jkxx2glhng3ys3s9jmvy5y49pymwb2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/magit-topgit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/magit-topgit"; sha256 = "1ngrgf40n1g6ncd5nqgr0zgxwlkmv9k4fik96dgzysgwincx683i"; name = "magit-topgit"; }; @@ -36032,7 +36349,7 @@ magma-mode = callPackage ({ cl-lib ? null, dash, f, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "magma-mode"; - version = "20160304.608"; + version = "20160304.708"; src = fetchFromGitHub { owner = "ThibautVerron"; repo = "magma-mode"; @@ -36040,7 +36357,7 @@ sha256 = "1pq6ckxp3dcb2f6xfsd4jwd43r9d0920m30ammp39glgc39p9lsq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/magma-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/magma-mode"; sha256 = "1gq6yi51h1h7ivrm1xr6nfrpabx8ylbk0waaw04gnw3bb54dmmvc"; name = "magma-mode"; }; @@ -36053,7 +36370,7 @@ magnatune = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "magnatune"; - version = "20151030.1435"; + version = "20151030.1535"; src = fetchFromGitHub { owner = "eikek"; repo = "magnatune.el"; @@ -36061,7 +36378,7 @@ sha256 = "1hqz26zm4bdz5wavna4j9yia3ns4z19dnszl7k0lcpgbgmb0wh8y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/magnatune"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/magnatune"; sha256 = "0fmxlrq5ls6fpbk5fv67aan8gg1c61i1chfw5lhf496pwqzq901d"; name = "magnatune"; }; @@ -36074,7 +36391,7 @@ main-line = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "main-line"; - version = "20151120.2006"; + version = "20151120.2106"; src = fetchFromGitHub { owner = "emacsfodder"; repo = "emacs-mainline"; @@ -36082,7 +36399,7 @@ sha256 = "06sjwl0bk648wnnrmyh6qgnlqmxypjmy0gkfl6kpv01r8vh7x2q5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/main-line"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/main-line"; sha256 = "06rihx9h2h8ayrirbx74d9qdf26laz9yxffvxyldzm9hymlbzadd"; name = "main-line"; }; @@ -36095,7 +36412,7 @@ majapahit-theme = callPackage ({ fetchFromGitLab, fetchurl, lib, melpaBuild }: melpaBuild { pname = "majapahit-theme"; - version = "20160412.632"; + version = "20160412.732"; src = fetchFromGitLab { owner = "franksn"; repo = "majapahit-theme"; @@ -36103,7 +36420,7 @@ sha256 = "1s4sm59wz03yz4srqzav7myq6p0gmijw5zj2kbpvxfanlr8b2rb1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/majapahit-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/majapahit-theme"; sha256 = "04k2smrya27rrjlzvnl3a6llg8vj8x4mm9qyk4kwrmckhd6jd68s"; name = "majapahit-theme"; }; @@ -36116,7 +36433,7 @@ make-color = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "make-color"; - version = "20140625.650"; + version = "20140625.750"; src = fetchFromGitHub { owner = "alezost"; repo = "make-color.el"; @@ -36124,7 +36441,7 @@ sha256 = "1ky3scyjb69wi76xg6a8qx4ja6lr6mk530bv5gmhj7fxbq8b3x5c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/make-color"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/make-color"; sha256 = "0mrv8b67lpid5m8rfbhcik76bvnjlw4xmcrd2c2iinyl02y07r5k"; name = "make-color"; }; @@ -36137,7 +36454,7 @@ make-it-so = callPackage ({ emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "make-it-so"; - version = "20150319.1407"; + version = "20150319.1507"; src = fetchFromGitHub { owner = "abo-abo"; repo = "make-it-so"; @@ -36145,7 +36462,7 @@ sha256 = "00j5n9pil1qik4mrzvam4rp6213w8jm4qw7c4z8sxpq57xa0b679"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/make-it-so"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/make-it-so"; sha256 = "0a8abz54mb60mfr0bl9ry8yawq99vx9hjl4fm2sivns58qjgfy73"; name = "make-it-so"; }; @@ -36158,7 +36475,7 @@ maker-mode = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "maker-mode"; - version = "20150116.554"; + version = "20150116.654"; src = fetchFromGitHub { owner = "fommil"; repo = "maker-mode"; @@ -36166,7 +36483,7 @@ sha256 = "0w3kar52yf8clf9801c4jzfrixi10clc8fs8ni2d4pzhdwwca2zw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/maker-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/maker-mode"; sha256 = "03q09jxmhwqy7g09navj08z9ir0rbh7w26c1av7hwhmq4i6xwg8a"; name = "maker-mode"; }; @@ -36179,7 +36496,7 @@ makey = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "makey"; - version = "20131231.830"; + version = "20131231.930"; src = fetchFromGitHub { owner = "mickeynp"; repo = "makey"; @@ -36187,7 +36504,7 @@ sha256 = "1rr7vpm3xxzcaam3m8xni3ajy8ycyljix07n2jzczayri9sd8csy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/makey"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/makey"; sha256 = "06xgrlkqvg288yd4lyhx4vi80jlfarhblxk5m5zzs5as7n08cvk4"; name = "makey"; }; @@ -36200,7 +36517,7 @@ malabar-mode = callPackage ({ fetchFromGitHub, fetchurl, fringe-helper, groovy-mode, lib, melpaBuild }: melpaBuild { pname = "malabar-mode"; - version = "20150720.1255"; + version = "20150720.1355"; src = fetchFromGitHub { owner = "m0smith"; repo = "malabar-mode"; @@ -36208,7 +36525,7 @@ sha256 = "0hlxs9gi2vml2id9q0r1r0xdm0zshjzc1w3phjf2ab0aa3hl5k6l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/malabar-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/malabar-mode"; sha256 = "026ing7v22rz1pfzs2j9z09pm6dajpys992n45gzhwirz5f0q1rk"; name = "malabar-mode"; }; @@ -36221,7 +36538,7 @@ malinka = callPackage ({ cl-lib ? null, dash, f, fetchFromGitHub, fetchurl, lib, melpaBuild, projectile, rtags, s }: melpaBuild { pname = "malinka"; - version = "20160402.329"; + version = "20160402.429"; src = fetchFromGitHub { owner = "LefterisJP"; repo = "malinka"; @@ -36229,7 +36546,7 @@ sha256 = "04j7x7kkilfrk4i76aizkdhmghi9a5hc63mj6mhm8x0v1c4f15lj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/malinka"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/malinka"; sha256 = "1245mpxsxwnnpdsf0pd28mddgdfhh7x32a2l3sxfq0dyg2xlgvrp"; name = "malinka"; }; @@ -36242,7 +36559,7 @@ mallard-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "mallard-mode"; - version = "20131203.2225"; + version = "20131203.2325"; src = fetchFromGitHub { owner = "jhradilek"; repo = "emacs-mallard-mode"; @@ -36250,7 +36567,7 @@ sha256 = "18x3cssfn81k8hg4frj7dhzphg784321z51wbbvn3bjhq7s6j3a2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mallard-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/mallard-mode"; sha256 = "0y2ikjgy107kb85pz50vv7ywslqgbrrkcfsrd8gsk1jky4qn8izd"; name = "mallard-mode"; }; @@ -36263,7 +36580,7 @@ mallard-snippets = callPackage ({ fetchFromGitHub, fetchurl, lib, mallard-mode, melpaBuild, yasnippet }: melpaBuild { pname = "mallard-snippets"; - version = "20131023.1351"; + version = "20131023.1451"; src = fetchFromGitHub { owner = "jhradilek"; repo = "emacs-mallard-snippets"; @@ -36271,7 +36588,7 @@ sha256 = "0qk7i47nmyp4llwp6x0i1i5dk82ck26iyz1sjvvlihaw8a5akny2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mallard-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/mallard-snippets"; sha256 = "0437qd7q9i32pmhxaz3vi2dnfpj4nddmzgnqpwsgl28slhjw2hv8"; name = "mallard-snippets"; }; @@ -36284,7 +36601,7 @@ man-commands = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "man-commands"; - version = "20151221.1621"; + version = "20151221.1721"; src = fetchFromGitHub { owner = "nflath"; repo = "man-commands"; @@ -36292,7 +36609,7 @@ sha256 = "1lfq4hsq2n33l58ja5kzy6bwk9jxbcdsg6y8gqlk71lcslzqldrk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/man-commands"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/man-commands"; sha256 = "1yl7y0k24gydldfs406v1n523q46m9x6in6pgljgjnjravc67wnq"; name = "man-commands"; }; @@ -36305,7 +36622,7 @@ manage-minor-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "manage-minor-mode"; - version = "20140310.1100"; + version = "20140310.1200"; src = fetchFromGitHub { owner = "ShingoFukuyama"; repo = "manage-minor-mode"; @@ -36313,7 +36630,7 @@ sha256 = "10wl7kc76dyijrmdlcl5cx821jg7clsj35r22955mbbgh7zl1x07"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/manage-minor-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/manage-minor-mode"; sha256 = "11jdj8kd401q0y8bbyyn72f27f51bckqid10dnh64z8w7hv59cw6"; name = "manage-minor-mode"; }; @@ -36326,15 +36643,15 @@ mandoku = callPackage ({ fetchFromGitHub, fetchurl, git, github-clone, lib, magit, melpaBuild, org }: melpaBuild { pname = "mandoku"; - version = "20160417.539"; + version = "20160504.1312"; src = fetchFromGitHub { owner = "mandoku"; repo = "mandoku"; - rev = "977dcc41e90465c8d1a35f07289d8631b389495f"; - sha256 = "0mqvbniz9qwi2cawyrgi8a99mwpvi7n5pbxgqh5bw844y54yfhnd"; + rev = "f9b419c0069145f596aea12149e66ffef173ced4"; + sha256 = "0g2rxq0xy3kgd9v100nanisyg045gl93jqvgwbib6qzaf9bfvh60"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mandoku"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/mandoku"; sha256 = "1pg7ir3y6yk92kfs5agbxapcxf7gy60m353rjv8g3kfkx5zyh3mv"; name = "mandoku"; }; @@ -36347,7 +36664,7 @@ map-progress = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "map-progress"; - version = "20140310.1632"; + version = "20140310.1732"; src = fetchFromGitHub { owner = "tarsius"; repo = "map-progress"; @@ -36355,7 +36672,7 @@ sha256 = "0pd6bh7wrrh59blp86a2jl2vi4qkzx49z0hy7dkc71ccg0wjsgz1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/map-progress"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/map-progress"; sha256 = "0zc5vii72gbfwbb35w8m30c8r9zck971hwgcn1a4wjczgn4vkln7"; name = "map-progress"; }; @@ -36368,7 +36685,7 @@ map-regexp = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "map-regexp"; - version = "20130522.1603"; + version = "20130522.1703"; src = fetchFromGitHub { owner = "tarsius"; repo = "map-regexp"; @@ -36376,7 +36693,7 @@ sha256 = "0kk1sk3cr4dbmgq4wzml8kdf14dn9jbyq4bwmvk0i7dic9vwn21c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/map-regexp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/map-regexp"; sha256 = "0yiif0033lhaqggywzfizfia3siggwcz7yv4z7przhnr04akdmbj"; name = "map-regexp"; }; @@ -36389,7 +36706,7 @@ marcopolo = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, pkg-info, request, s }: melpaBuild { pname = "marcopolo"; - version = "20160421.504"; + version = "20160421.604"; src = fetchFromGitHub { owner = "nlamirault"; repo = "marcopolo"; @@ -36397,7 +36714,7 @@ sha256 = "1qf724y1zq3z6fzm23qhwjl2knhs49nbz0vizwf8g9s51bk6bny2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/marcopolo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/marcopolo"; sha256 = "1nbck1m7lhync7n474578d2g1zc72c841hi236xjbdd2lnxz3zz0"; name = "marcopolo"; }; @@ -36410,7 +36727,7 @@ mark-multiple = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "mark-multiple"; - version = "20121118.954"; + version = "20121118.1054"; src = fetchFromGitHub { owner = "magnars"; repo = "mark-multiple.el"; @@ -36418,7 +36735,7 @@ sha256 = "1x3anvy3hlmydxyfzr1rhaiy502yi1yz3v54sg8wc1w7jrvwaj29"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mark-multiple"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/mark-multiple"; sha256 = "179wd9g0smm76k92n7j2vgg8gz5wn9lczrns5ggq2yhbc77j0gn4"; name = "mark-multiple"; }; @@ -36431,7 +36748,7 @@ mark-tools = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "mark-tools"; - version = "20130614.525"; + version = "20130614.625"; src = fetchFromGitHub { owner = "stsquad"; repo = "emacs-mark-tools"; @@ -36439,7 +36756,7 @@ sha256 = "0k4zvbs09mkr8vdffv18s55rn9cyxldzav9vw04lm7v296k94ivz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mark-tools"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/mark-tools"; sha256 = "1688y7lnzhwdva2ildjabzi10i87klfsgvs947i7gfgxl7jwhisq"; name = "mark-tools"; }; @@ -36452,15 +36769,15 @@ markdown-mode = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "markdown-mode"; - version = "20160409.850"; + version = "20160507.804"; src = fetchFromGitHub { owner = "jrblevin"; repo = "markdown-mode"; - rev = "f3928b79dc2afa471f2093ef123377ba04b5350b"; - sha256 = "0dx084n2l93hss161z3v87rjpfhv03cmn0hylnsv81hfim8iwi5c"; + rev = "e19f41974d07341638e10562b34023dcc459be4e"; + sha256 = "1ddymck7ij98ikk1i8j63vqj14m9dx740yvy3rcfgv1q4dm5jk6i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/markdown-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/markdown-mode"; sha256 = "0gfb3hp87kpcrvxax3m5hsaclwwk1qmxc73cg26smzd1kjfwgz14"; name = "markdown-mode"; }; @@ -36473,7 +36790,7 @@ markdown-mode-plus = callPackage ({ fetchFromGitHub, fetchurl, lib, markdown-mode, melpaBuild }: melpaBuild { pname = "markdown-mode-plus"; - version = "20120829.710"; + version = "20120829.810"; src = fetchFromGitHub { owner = "milkypostman"; repo = "markdown-mode-plus"; @@ -36481,7 +36798,7 @@ sha256 = "1adl36fj506kgfw40gpagzsd7aypfdvy60141raggd5844i6y96r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/markdown-mode+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/markdown-mode+"; sha256 = "1535kcj9nmcgmk2448jxc0jmnqy7f50cw2ngffjq5w8bfhgf7q00"; name = "markdown-mode-plus"; }; @@ -36494,7 +36811,7 @@ markdown-preview-eww = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "markdown-preview-eww"; - version = "20160111.902"; + version = "20160111.1002"; src = fetchFromGitHub { owner = "niku"; repo = "markdown-preview-eww"; @@ -36502,7 +36819,7 @@ sha256 = "1i5gr3j9dq41p2zl4bfyvzv6i5z7hgrxzrycmbdc3s7nja36k9z4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/markdown-preview-eww"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/markdown-preview-eww"; sha256 = "0j6924f84is41dspib68y5lnz1f8nm7pqyhv47alxra50cjrpxnx"; name = "markdown-preview-eww"; }; @@ -36515,7 +36832,7 @@ markdown-preview-mode = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, markdown-mode, melpaBuild, websocket }: melpaBuild { pname = "markdown-preview-mode"; - version = "20160215.1049"; + version = "20160215.1149"; src = fetchFromGitHub { owner = "ancane"; repo = "markdown-preview-mode"; @@ -36523,7 +36840,7 @@ sha256 = "1yi5hsgf8hr7v1wyn3bw650g3ysbglwn5qfrmb6yl3s08lvi1vlf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/markdown-preview-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/markdown-preview-mode"; sha256 = "0i0mld45d8y96nkqn2r77nvbyw6wgsf8r54d3c2jrv04mnaxs7pg"; name = "markdown-preview-mode"; }; @@ -36536,7 +36853,7 @@ markdown-toc = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, markdown-mode, melpaBuild, s }: melpaBuild { pname = "markdown-toc"; - version = "20160227.508"; + version = "20160227.608"; src = fetchFromGitHub { owner = "ardumont"; repo = "markdown-toc"; @@ -36544,7 +36861,7 @@ sha256 = "0l687bna8rrc49y1fyn1ldjcwh290qgvi3p86c63yj4xy24fmdm6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/markdown-toc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/markdown-toc"; sha256 = "0slky735yzmbfi4ld264vw64b4a4nllhywp19ya0sljbsfycbihv"; name = "markdown-toc"; }; @@ -36557,7 +36874,7 @@ markup = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "markup"; - version = "20130207.1509"; + version = "20130207.1609"; src = fetchFromGitHub { owner = "leoc"; repo = "markup.el"; @@ -36565,7 +36882,7 @@ sha256 = "1i95b15mvkkki2iq8hysdr7jr1d5nix9jjkh7jz0alvaybqlsnqi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/markup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/markup"; sha256 = "0yw4b42nc2n7nanqvj596hwjf0p4qc7x6g2d9g5cwi7975iak8pf"; name = "markup"; }; @@ -36578,7 +36895,7 @@ markup-faces = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "markup-faces"; - version = "20141110.217"; + version = "20141110.317"; src = fetchFromGitHub { owner = "sensorflo"; repo = "markup-faces"; @@ -36586,7 +36903,7 @@ sha256 = "1w6i1m7xdr9cijnmdj35cl99r12vl83qws0qlfhrgvisilshnr27"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/markup-faces"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/markup-faces"; sha256 = "12z92j9f0mpn7w2qkiwg54wh743q3inx56q3f8qcpfzyks546grq"; name = "markup-faces"; }; @@ -36599,7 +36916,7 @@ marmalade = callPackage ({ fetchFromGitHub, fetchurl, furl, lib, melpaBuild }: melpaBuild { pname = "marmalade"; - version = "20110602.1822"; + version = "20110602.1922"; src = fetchFromGitHub { owner = "nex3"; repo = "marmalade"; @@ -36607,7 +36924,7 @@ sha256 = "1ygznmqb3fqy94p8qi71i223m7cpw3f596pkls2ybjlbpb4psjcl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/marmalade"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/marmalade"; sha256 = "0ppa2s1fma1lc01byanfxpxfrjqk2snxbsmdbkcipjdi5dpb0a9s"; name = "marmalade"; }; @@ -36620,7 +36937,7 @@ marmalade-client = callPackage ({ fetchFromGitHub, fetchurl, gh, kv, lib, melpaBuild, web }: melpaBuild { pname = "marmalade-client"; - version = "20141231.1407"; + version = "20141231.1507"; src = fetchFromGitHub { owner = "nicferrier"; repo = "emacs-marmalade-upload"; @@ -36628,7 +36945,7 @@ sha256 = "017k109nfif5mzkj547py8pdnzlr4sxb74yqqsl944znflq67blr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/marmalade-client"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/marmalade-client"; sha256 = "0llwqwwxrf7qdkpdb03ij0iinll0vc9qr557zyr3bn5zb4fad1sq"; name = "marmalade-client"; }; @@ -36641,7 +36958,7 @@ marshal = callPackage ({ eieio ? null, fetchFromGitHub, fetchurl, json ? null, lib, melpaBuild }: melpaBuild { pname = "marshal"; - version = "20150916.2057"; + version = "20150916.2157"; src = fetchFromGitHub { owner = "sigma"; repo = "marshal.el"; @@ -36649,7 +36966,7 @@ sha256 = "0fwhhzfd6vgpaf5mrw90hvm35j2kzhk9h3gbrwd7y7q08nrmsx9p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/marshal"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/marshal"; sha256 = "17ikd8f1k42f28d4v5dn83zb44bsx7g336db60q068w6z8d4jbgl"; name = "marshal"; }; @@ -36662,15 +36979,15 @@ material-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "material-theme"; - version = "20160302.1534"; + version = "20160506.1015"; src = fetchFromGitHub { owner = "cpaulik"; repo = "emacs-material-theme"; - rev = "149ef120a2f5c3af72b040261dd455baea7ceb2a"; - sha256 = "0qw7m82gx2dqcrs5ycg0hn7y9qjzmkp5afdlx5ddxc2igp2a5q7h"; + rev = "41d8c567d6370f39e4088ca7b54a5b5dab92ea67"; + sha256 = "00fns34sxkkzxlf6q37gw81nj20drwnqnvj9dhv6cgrb4qzk0326"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/material-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/material-theme"; sha256 = "1d259avldc5fq121xrqv53h8s4f4bp6b89nz2rvjhygz7f8hargq"; name = "material-theme"; }; @@ -36683,15 +37000,15 @@ math-symbol-lists = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "math-symbol-lists"; - version = "20160302.1631"; + version = "20160302.1731"; src = fetchFromGitHub { owner = "vspinu"; repo = "math-symbol-lists"; - rev = "5bf2a050127228fda36ab6c492806f1f0f8af686"; - sha256 = "1cpwa5cwnkxf4n1bd4cji3v9wdp057jdw7vckr02ra3s9s2ay5n3"; + rev = "b540f67201e6e13e0e1dd97ceba3070a83e5649c"; + sha256 = "0k1ayv0a9g778b50jni3hh70pg6axmq34wl8x3zgphadgms1w9dd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/math-symbol-lists"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/math-symbol-lists"; sha256 = "01j11k29acj0b1pcapmgi2d2s3p50bkms21i2qcj0cbqgz8h6s27"; name = "math-symbol-lists"; }; @@ -36704,7 +37021,7 @@ math-symbols = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "math-symbols"; - version = "20151121.1842"; + version = "20151121.1942"; src = fetchFromGitHub { owner = "kawabata"; repo = "math-symbols"; @@ -36712,7 +37029,7 @@ sha256 = "1chyxi096krjbi9zgbrnrkvwgmn4wygnia9m57m0jh4arlbm28la"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/math-symbols"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/math-symbols"; sha256 = "0sx9cgyk56npjd6z78y9cldbvjl5ipl7k1nc1sylg1iggkbwxnqx"; name = "math-symbols"; }; @@ -36725,14 +37042,14 @@ matlab-mode = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: melpaBuild { pname = "matlab-mode"; - version = "20160416.234"; + version = "20160416.334"; src = fetchgit { url = "git://git.code.sf.net/p/matlab-emacs/src"; rev = "4e052dea36a6bbdf81c8ada5be5eca3297f54bd6"; sha256 = "0pwbq6hpvd4n9aw94dfpzynli6xc8r21q6kjpiwpfmyvag0lvyg9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/matlab-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/matlab-mode"; sha256 = "1bybc5xv5hbjh8afmh03qda5g3m2wcgsk6lgj6jkyyxzdfxqkrck"; name = "matlab-mode"; }; @@ -36745,14 +37062,14 @@ matrix-client = callPackage ({ fetchgit, fetchurl, json ? null, lib, melpaBuild, request }: melpaBuild { pname = "matrix-client"; - version = "20160424.2359"; + version = "20160425.59"; src = fetchgit { url = "git://fort.kickass.systems/personal/rrix/pub/matrix.el"; rev = "087e5520a3a1f9a8fcaa1ce61b4c06bc55a63605"; sha256 = "0z79l8md683vvc51fz0nmbazb6i7hklkm0asglflr96pldil50l8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/matrix-client"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/matrix-client"; sha256 = "09mgxk0xngw8j46vz6f5nwkb01iq96bf9m51w2q61wxivypnsyr6"; name = "matrix-client"; }; @@ -36765,7 +37082,7 @@ maude-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "maude-mode"; - version = "20160222.1007"; + version = "20160222.1107"; src = fetchFromGitHub { owner = "rudi"; repo = "maude-mode"; @@ -36773,7 +37090,7 @@ sha256 = "1sn9bdaq3mf2vss5gzmxhnp9fz43cakxh36qjdgqrvx302nlnv52"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/maude-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/maude-mode"; sha256 = "1w5v3r905xkwchkm2gzvzpswba5p2m7hqpyg9fzq2ldlr8kk7ah3"; name = "maude-mode"; }; @@ -36786,7 +37103,7 @@ maven-test-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "maven-test-mode"; - version = "20141219.2357"; + version = "20141220.57"; src = fetchFromGitHub { owner = "rranelli"; repo = "maven-test-mode"; @@ -36794,7 +37111,7 @@ sha256 = "1xn2yyr8mr90cynbxgv0h5v180pzf0ydnjr9spg34mrdicqlki6c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/maven-test-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/maven-test-mode"; sha256 = "1k9w51rh003p67yalzq1w8am40nnr2khyyb5y4bwxgpms8z391fm"; name = "maven-test-mode"; }; @@ -36807,7 +37124,7 @@ maxframe = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "maxframe"; - version = "20140916.954"; + version = "20140916.1054"; src = fetchFromGitHub { owner = "rmm5t"; repo = "maxframe.el"; @@ -36815,7 +37132,7 @@ sha256 = "0g9kpsg6623nmxnshj49q8k952xybrkmqqy6m892m8wnm22pjdz1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/maxframe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/maxframe"; sha256 = "10cwy3gi3xb3pfdh6xiafxp3vvssawci3y26jda6550d0w5vardj"; name = "maxframe"; }; @@ -36827,13 +37144,13 @@ }) {}; mb-depth-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "mb-depth-plus"; - version = "20151231.1621"; + version = "20151231.1721"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/mb-depth+.el"; sha256 = "0w8clp96jblsc9v87404zpc280ms0d644in34jdgjc5r33f4i0g3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mb-depth+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/mb-depth+"; sha256 = "031hh227rh7l818p3di4h34i4698yynw5g9a5sl2hj47c0734q6w"; name = "mb-depth-plus"; }; @@ -36846,7 +37163,7 @@ mb-url = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "mb-url"; - version = "20151210.1216"; + version = "20151210.1316"; src = fetchFromGitHub { owner = "dochang"; repo = "mb-url"; @@ -36854,7 +37171,7 @@ sha256 = "1g90f8ysj35bw9686gb3sczxqg3ilj3a7xnfskrkbp2llpvd5y43"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mb-url"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/mb-url"; sha256 = "1nf8ssan00qsn3d4dc6h6qzdwqzh977qb5d2m33kiwi6qb98988h"; name = "mb-url"; }; @@ -36867,7 +37184,7 @@ mbe = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "mbe"; - version = "20151126.534"; + version = "20151126.634"; src = fetchFromGitHub { owner = "ijp"; repo = "mbe.el"; @@ -36875,7 +37192,7 @@ sha256 = "1zywygdgnp2zr8fxqhl0cbrgbl43931k936b9imhqi96p6622pb6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mbe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/mbe"; sha256 = "0h18mbcjy8nh4gl12kg2v8x6ps320yk7sbgq5alqnx2shp80kri3"; name = "mbe"; }; @@ -36888,7 +37205,7 @@ mbo70s-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "mbo70s-theme"; - version = "20141122.842"; + version = "20141122.942"; src = fetchFromGitHub { owner = "emacsfodder"; repo = "emacs-mbo70s-theme"; @@ -36896,7 +37213,7 @@ sha256 = "1vr85fdlb4zwgid1v00ndppla9fqqk25g2x2f5alm69pfqssr75z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mbo70s-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/mbo70s-theme"; sha256 = "1abx2rw09xxp122ff7i9sry5djd4l6vn4lfzxs92rknjzkyc40pb"; name = "mbo70s-theme"; }; @@ -36909,7 +37226,7 @@ mc-extras = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, multiple-cursors }: melpaBuild { pname = "mc-extras"; - version = "20150218.434"; + version = "20150218.534"; src = fetchFromGitHub { owner = "knu"; repo = "mc-extras.el"; @@ -36917,7 +37234,7 @@ sha256 = "0252wdq4sd6jhzfy0pn3gdm6aq2h13nnp8hvrn1mpml9x473a5n1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mc-extras"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/mc-extras"; sha256 = "0b110x6ygc95v5pb9lk1i731x5s6dagl5afzv37l1qchys36xrym"; name = "mc-extras"; }; @@ -36930,7 +37247,7 @@ md-readme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "md-readme"; - version = "20150506.159"; + version = "20150506.259"; src = fetchFromGitHub { owner = "thomas11"; repo = "md-readme"; @@ -36938,7 +37255,7 @@ sha256 = "1j8gp3byanf1mq8sc4hv838rgcywlv35d8q1vjwzsjaznvz8hvc3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/md-readme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/md-readme"; sha256 = "1krq0f79jjrlihr2aqq87pxdqixv2zdjw4hm732sz79g996yxyw3"; name = "md-readme"; }; @@ -36951,7 +37268,7 @@ meacupla-theme = callPackage ({ fetchFromGitLab, fetchurl, lib, melpaBuild }: melpaBuild { pname = "meacupla-theme"; - version = "20151027.1717"; + version = "20151027.1817"; src = fetchFromGitLab { owner = "jtecca"; repo = "meacupla-theme"; @@ -36959,7 +37276,7 @@ sha256 = "136lh39hakwx46rd1gsmsfhsj78mrpamid766v2vjx9rkkprk0zv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/meacupla-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/meacupla-theme"; sha256 = "09q88q2xghj5vn5y3mjrcparfwdzavkgjyg2ay55h7wf5f2zpw2d"; name = "meacupla-theme"; }; @@ -36972,7 +37289,7 @@ mediawiki = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "mediawiki"; - version = "20160425.902"; + version = "20160425.1002"; src = fetchFromGitHub { owner = "hexmode"; repo = "mediawiki-el"; @@ -36980,7 +37297,7 @@ sha256 = "0kzmvsbzqrkrlnr5sf1xwazm9zyzbrflb4d1jrkp206q9yk439cr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mediawiki"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/mediawiki"; sha256 = "17cbrzfdp6jbbf74mn2fi1cwv7d1hvdbw9j84p43jzscnaa5ikx6"; name = "mediawiki"; }; @@ -36993,7 +37310,7 @@ mellow-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "mellow-theme"; - version = "20141116.102"; + version = "20141116.202"; src = fetchFromGitHub { owner = "emacsfodder"; repo = "emacs-mellow-theme"; @@ -37001,7 +37318,7 @@ sha256 = "0bilwhvprzk634sk5hnxilrvrl0yv593swzznch0p38hqxl585ld"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mellow-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/mellow-theme"; sha256 = "0kl1psykx7akxwabszk4amszh3zil8ia4bfbjjvr6h9phgx66pb0"; name = "mellow-theme"; }; @@ -37014,7 +37331,7 @@ melpa-upstream-visit = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "melpa-upstream-visit"; - version = "20130720.533"; + version = "20130720.633"; src = fetchFromGitHub { owner = "laynor"; repo = "melpa-upstream-visit"; @@ -37022,7 +37339,7 @@ sha256 = "12cp56ppmwpdgf5afx7hd2qb8d1qq8z27191fbbf5zqw8cq5zkpd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/melpa-upstream-visit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/melpa-upstream-visit"; sha256 = "0j4afy9ipzr7pwkij8ab207mabd7srganlyyif9h1hvclj9svdmf"; name = "melpa-upstream-visit"; }; @@ -37035,7 +37352,7 @@ memento = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "memento"; - version = "20150823.539"; + version = "20150823.639"; src = fetchFromGitHub { owner = "ehartc"; repo = "memento"; @@ -37043,7 +37360,7 @@ sha256 = "0pjqax3pi6pb650yb8iwa4brwwl6cdka7jym3cfkpppyy782dm0q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/memento"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/memento"; sha256 = "0f8ajhj677r2kxszmad6h1j1b827ja0vaz2my1vx145y3gf160b8"; name = "memento"; }; @@ -37056,7 +37373,7 @@ memoize = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "memoize"; - version = "20130421.1434"; + version = "20130421.1534"; src = fetchFromGitHub { owner = "skeeto"; repo = "emacs-memoize"; @@ -37064,7 +37381,7 @@ sha256 = "0fjwlrdm270qcrqffvarw5yhijk656q4lam79ybhaznzj0dq3xpw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/memoize"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/memoize"; sha256 = "0mzz3hghnbkmxf9wgjqv3sbyxyqqzvvscazq9ybb0b41qrzm73s6"; name = "memoize"; }; @@ -37077,7 +37394,7 @@ memolist = callPackage ({ ag, fetchFromGitHub, fetchurl, lib, markdown-mode, melpaBuild }: melpaBuild { pname = "memolist"; - version = "20150804.1221"; + version = "20150804.1321"; src = fetchFromGitHub { owner = "mikanfactory"; repo = "memolist.el"; @@ -37085,7 +37402,7 @@ sha256 = "1jd4rjv812iv7kp4wyxdz8sk7j0442m8x2ypk6hiqis0braxnspm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/memolist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/memolist"; sha256 = "1whajbwmz1v01dirv795bhvs27vq9dh0qmj10dk2xia7vhn42mgh"; name = "memolist"; }; @@ -37098,7 +37415,7 @@ mentor = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, xml-rpc }: melpaBuild { pname = "mentor"; - version = "20140904.1910"; + version = "20140904.2010"; src = fetchFromGitHub { owner = "skangas"; repo = "mentor"; @@ -37106,7 +37423,7 @@ sha256 = "11hyydc13jdai6lkxx8nqf8xljh0gx7fcmywhik4f1hf3pdv7i2q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mentor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/mentor"; sha256 = "0nkf7f90m2qf11l97zwvb114yrpbqk1xxr2bh2nvbx8m1c8nad9s"; name = "mentor"; }; @@ -37118,13 +37435,13 @@ }) {}; menu-bar-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "menu-bar-plus"; - version = "20151231.1622"; + version = "20151231.1722"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/menu-bar+.el"; sha256 = "1i96s0z0q9z2ws2b1lz1n50j6hih9y4rsy7mwx0k8a4ikll0gx82"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/menu-bar+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/menu-bar+"; sha256 = "181jxjnzdckmvpsdknhm21xwimvsp0qxn8azfn58dz41gl4xcg90"; name = "menu-bar-plus"; }; @@ -37137,15 +37454,15 @@ merlin = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "merlin"; - version = "20160229.828"; + version = "20160229.928"; src = fetchFromGitHub { owner = "the-lambda-church"; repo = "merlin"; - rev = "708b083ac8081c5b07e8bfb6e179a0c6e7d171ac"; - sha256 = "09yjgf3li4hgljcrwlg195wa6a8l7zm8ia1slbpsrjgwnc15wqrs"; + rev = "3a99e7528853715d3008a21287cd97cafd28cc7c"; + sha256 = "0702h9s2kv2ry7666y060zbr0k0pw2qga6zm9sh9c6wrhz45b3km"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/merlin"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/merlin"; sha256 = "177cy9xcrjckxv8gvi1zhg2ndfr8cmsr37inyvpi5dxqy6d6alhp"; name = "merlin"; }; @@ -37157,13 +37474,13 @@ }) {}; message-x = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "message-x"; - version = "20151029.918"; + version = "20151029.1018"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/message-x.el"; sha256 = "05ic97plsysh4nqwdrsl5m9f24m11w24bahj8bxzfdawfima2bkf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/message-x"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/message-x"; sha256 = "0z12alizwrqp5f9wq3qllym9k5xljh904c9qhlfhp9biazj6yqwj"; name = "message-x"; }; @@ -37176,7 +37493,7 @@ meta-presenter = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "meta-presenter"; - version = "20150501.610"; + version = "20150501.710"; src = fetchFromGitHub { owner = "myTerminal"; repo = "meta-presenter"; @@ -37184,7 +37501,7 @@ sha256 = "1x425ah3ymjyp3pxvyzyp4gd8zrjx8lgdzprml8qvf1yk82iv45l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/meta-presenter"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/meta-presenter"; sha256 = "0f70cfa91wavchlx8d9hdlgq90cmnylhbg2dbw603rzjkyvslp5d"; name = "meta-presenter"; }; @@ -37197,7 +37514,7 @@ metafmt = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "metafmt"; - version = "20160221.1055"; + version = "20160221.1155"; src = fetchFromGitHub { owner = "lvillani"; repo = "metafmt"; @@ -37205,7 +37522,7 @@ sha256 = "0n4nv1s25z70xfy3bl1wy467abz3agj4qmpx4rwdwzbarnqp9ps3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/metafmt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/metafmt"; sha256 = "1ca102al7r3k2g92b4jkqv53crnmxy3z7cz31w1rprf41s69mn75"; name = "metafmt"; }; @@ -37218,7 +37535,7 @@ metascript-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "metascript-mode"; - version = "20150708.1957"; + version = "20150708.2057"; src = fetchFromGitHub { owner = "metascript"; repo = "metascript-mode"; @@ -37226,7 +37543,7 @@ sha256 = "1rascpmv17dksyn9y0llmjb8r4484x5ax54w6r83k1x7ha1iacx5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/metascript-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/metascript-mode"; sha256 = "1kgs4ki0s6bxx2ri6zxmsy2b2w56gnr9hjkr6302wcmp3qy7clwn"; name = "metascript-mode"; }; @@ -37239,7 +37556,7 @@ metaweblog = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, xml-rpc }: melpaBuild { pname = "metaweblog"; - version = "20141130.805"; + version = "20141130.905"; src = fetchFromGitHub { owner = "punchagan"; repo = "metaweblog"; @@ -37247,7 +37564,7 @@ sha256 = "06mbdb4zb07skq1jpv05hr45k5x96d9hgkb358jiq0kfsqlrbbb4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/metaweblog"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/metaweblog"; sha256 = "10kwqnfafby4ap0572mfkkdssr13y9p2gl9z3nmxqjjy04fkfi8b"; name = "metaweblog"; }; @@ -37260,7 +37577,7 @@ mew = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "mew"; - version = "20150814.154"; + version = "20150814.254"; src = fetchFromGitHub { owner = "kazu-yamamoto"; repo = "Mew"; @@ -37268,7 +37585,7 @@ sha256 = "1rkipcv53p7zra3gbjc77ywyxn8d1kx2gniyfqq16d2p2jw0lbzb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mew"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/mew"; sha256 = "0423xxn3cw6jmsd7vrw30hx9phga5chxzi6x7cvpswg1mhcyn9fk"; name = "mew"; }; @@ -37281,7 +37598,7 @@ mexican-holidays = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "mexican-holidays"; - version = "20160109.1542"; + version = "20160109.1642"; src = fetchFromGitHub { owner = "shopClerk"; repo = "mexican-holidays"; @@ -37289,7 +37606,7 @@ sha256 = "0bhllmyk1r9y63jw5gx10v09791w33lc54qs31gcxbnss094l6py"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mexican-holidays"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/mexican-holidays"; sha256 = "0awf4vv6mbp1xr92nsgdn513g4adqhp21k12q4fbm85b2l3jlspb"; name = "mexican-holidays"; }; @@ -37302,7 +37619,7 @@ mhc = callPackage ({ calfw, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "mhc"; - version = "20160210.2237"; + version = "20160210.2337"; src = fetchFromGitHub { owner = "yoshinari-nomura"; repo = "mhc"; @@ -37310,7 +37627,7 @@ sha256 = "0ahbf4cd9q65xrvsc1clym3swdwwsl8llccrl5l1qgxqx5xg61hv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mhc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/mhc"; sha256 = "02ikn9hx0kcfc2xrx4f38zpkfi6vgz7chcxk6q5d0vcsp93b4lql"; name = "mhc"; }; @@ -37323,7 +37640,7 @@ mic-paren = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "mic-paren"; - version = "20150110.2016"; + version = "20150110.2116"; src = fetchFromGitHub { owner = "emacsmirror"; repo = "mic-paren"; @@ -37331,7 +37648,7 @@ sha256 = "0l7xfana2cb894w5qi6wwx7w9k89c3i8k40fpsd93sm3hgi5ryii"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mic-paren"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/mic-paren"; sha256 = "042dzp0nal18nxq94qlwwksh0nnypsyc0yykmc6l3kayp9pv4hw7"; name = "mic-paren"; }; @@ -37344,7 +37661,7 @@ micgoline = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, powerline }: melpaBuild { pname = "micgoline"; - version = "20160414.2226"; + version = "20160414.2326"; src = fetchFromGitHub { owner = "yzprofile"; repo = "micgoline"; @@ -37352,7 +37669,7 @@ sha256 = "0r6l6iqn5z9wp4w58flnls7kk6300qlxyy04fw0np00nvwsy4qvp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/micgoline"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/micgoline"; sha256 = "0xixcy006my2s0wn0isiag0b4rm38kswa5m0xnhg5n30qjjfzf4i"; name = "micgoline"; }; @@ -37365,7 +37682,7 @@ midje-mode = callPackage ({ cider, clojure-mode, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "midje-mode"; - version = "20150921.1950"; + version = "20150921.2050"; src = fetchFromGitHub { owner = "dnaumov"; repo = "midje-mode"; @@ -37373,7 +37690,7 @@ sha256 = "1cigsr0hkbi1860w38k2j8fw6j4w43pgv2bpkmdsifbqy6l8grpg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/midje-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/midje-mode"; sha256 = "0069hwy5cyrsv5b1yvjhmjasywbmc8x3daq9hkzidy3a2fmqgqv3"; name = "midje-mode"; }; @@ -37386,7 +37703,7 @@ migemo = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "migemo"; - version = "20150412.941"; + version = "20150412.1041"; src = fetchFromGitHub { owner = "emacs-jp"; repo = "migemo"; @@ -37394,7 +37711,7 @@ sha256 = "1az4mnmanhz9ga0g46jf33w8axcw8lnrb9lmszajwv7y5j9nk7yr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/migemo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/migemo"; sha256 = "0y49imdwygv5zd7cyh9ngda4gyb2mld2a4s7zh4yzlh7z5ha9qkr"; name = "migemo"; }; @@ -37407,7 +37724,7 @@ milkode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "milkode"; - version = "20140927.29"; + version = "20140927.129"; src = fetchFromGitHub { owner = "ongaeshi"; repo = "emacs-milkode"; @@ -37415,7 +37732,7 @@ sha256 = "1qg64mxsm2cswk52mlj7sx7k6gfnrsdwnf68i7cachri0i8aq4ap"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/milkode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/milkode"; sha256 = "07v6xgalx7vcw5sghckwvz584746cba05ql8flv8n556glm7hibh"; name = "milkode"; }; @@ -37428,14 +37745,14 @@ minesweeper = callPackage ({ fetchhg, fetchurl, lib, melpaBuild }: melpaBuild { pname = "minesweeper"; - version = "20150414.22"; + version = "20150414.122"; src = fetchhg { url = "https://bitbucket.com/zck/minesweeper.el"; rev = "d29af12fc611"; sha256 = "1b2kn4c90hl07lzdg10wamd4lq8f24wmaj4zvr728pwyga99b2av"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/minesweeper"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/minesweeper"; sha256 = "1n6r3a3rl09pv4jvb7ald1gaipqylfchggza973qv9rgh5g90nag"; name = "minesweeper"; }; @@ -37448,7 +37765,7 @@ mingus = callPackage ({ fetchFromGitHub, fetchurl, lib, libmpdee, melpaBuild }: melpaBuild { pname = "mingus"; - version = "20160321.1117"; + version = "20160321.1217"; src = fetchFromGitHub { owner = "pft"; repo = "mingus"; @@ -37456,7 +37773,7 @@ sha256 = "14dqa37z96nhmrhiczri0cyrzmjc3larw8sszvdal9prj47363sh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mingus"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/mingus"; sha256 = "0vw09qk56l792706vvp465f40shf678mcmdh7iw8wsjix4401bzi"; name = "mingus"; }; @@ -37469,7 +37786,7 @@ minibuf-isearch = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "minibuf-isearch"; - version = "20151226.1343"; + version = "20151226.1443"; src = fetchFromGitHub { owner = "knagano"; repo = "minibuf-isearch"; @@ -37477,7 +37794,7 @@ sha256 = "1n4b039448826w2jcsv4r2iw3v2vlrsxw8dbci8wcfigmkbfc879"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/minibuf-isearch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/minibuf-isearch"; sha256 = "0n36d152lc53zj9jy38b0c7hlww0z6hx94y3x2njy6cmh3p5g8nh"; name = "minibuf-isearch"; }; @@ -37490,7 +37807,7 @@ minibuffer-complete-cycle = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "minibuffer-complete-cycle"; - version = "20130813.1145"; + version = "20130813.1245"; src = fetchFromGitHub { owner = "knu"; repo = "minibuffer-complete-cycle"; @@ -37498,7 +37815,7 @@ sha256 = "1zyb6c3xwdzk7dpn7xi0mvbcjdfxvzz1a0zlbs053pfar8iim5fk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/minibuffer-complete-cycle"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/minibuffer-complete-cycle"; sha256 = "0y1mxs6q9a8lzprrlb22qff6x5mvkw4gp2l6p2js2r0j9jzyffq2"; name = "minibuffer-complete-cycle"; }; @@ -37511,7 +37828,7 @@ minibuffer-cua = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "minibuffer-cua"; - version = "20130906.634"; + version = "20130906.734"; src = fetchFromGitHub { owner = "knu"; repo = "minibuffer-cua.el"; @@ -37519,7 +37836,7 @@ sha256 = "011kg76zr4hfhi2gngnc7jlmp0l0nvhmlgyc0y9bir2jbjf4yyvz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/minibuffer-cua"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/minibuffer-cua"; sha256 = "1ragvr73ykbvpgynnq3z0z4yzrlfhfqlwc1vbxclb8x2xmxq7pzw"; name = "minibuffer-cua"; }; @@ -37532,7 +37849,7 @@ miniedit = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "miniedit"; - version = "20100419.1245"; + version = "20100419.1345"; src = fetchFromGitHub { owner = "emacsorphanage"; repo = "miniedit"; @@ -37540,7 +37857,7 @@ sha256 = "1850z96gly0jnr50472idqz1drzqarr0n23bbasslrc501xkg0bq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/miniedit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/miniedit"; sha256 = "10s407q7igdi2hsaaahbw8vckalrl7z3s6l9cflf51q16xh2ih87"; name = "miniedit"; }; @@ -37553,7 +37870,7 @@ minimal-session-saver = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "minimal-session-saver"; - version = "20140508.1541"; + version = "20140508.1641"; src = fetchFromGitHub { owner = "rolandwalker"; repo = "minimal-session-saver"; @@ -37561,7 +37878,7 @@ sha256 = "1sj5sq932w079y3vy55q5b6wybwrzz30y092iq1mpfg5xvl42sbm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/minimal-session-saver"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/minimal-session-saver"; sha256 = "1ay7wvriga28bdmarpfwagqzmmk93ri9f3idhr6z6iivwggwyy2i"; name = "minimal-session-saver"; }; @@ -37574,7 +37891,7 @@ minimal-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "minimal-theme"; - version = "20140409.1801"; + version = "20140409.1901"; src = fetchFromGitHub { owner = "ikame"; repo = "minimal-theme"; @@ -37582,7 +37899,7 @@ sha256 = "1iy1z2kwnbzxhz5r4gsy4zm0l3xbwy314dqxliprbl8n2m9w0lmz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/minimal-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/minimal-theme"; sha256 = "0l4xj5q06h5fk634d6v3idm0zniq8grz4rjm6qzi7b4jr9sc60gm"; name = "minimal-theme"; }; @@ -37595,15 +37912,15 @@ minitest = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "minitest"; - version = "20160422.2241"; + version = "20160428.1350"; src = fetchFromGitHub { owner = "arthurnn"; repo = "minitest-emacs"; - rev = "82097e692b96860b60061ea13cdb7caadc75032f"; - sha256 = "1yvr04z5dw39mippg6ngif1j3bb6m21zizrwpsxsra7ikdb06avc"; + rev = "54c32c727ef1f8967bbe6134fefc1183d76cfe21"; + sha256 = "0m37gjrcsjsvprq8w19qw5ivd4l1xb12609ixvbv1k21b15s1x38"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/minitest"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/minitest"; sha256 = "0x6nd4kkhiw8hh79r69861pf41j8p1y39kzf2rl61zlmyjz9zpmw"; name = "minitest"; }; @@ -37616,7 +37933,7 @@ minizinc-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "minizinc-mode"; - version = "20151214.758"; + version = "20151214.858"; src = fetchFromGitHub { owner = "m00nlight"; repo = "minizinc-mode"; @@ -37624,7 +37941,7 @@ sha256 = "0808cl5ixvmhd8pa6fc8rn7wbxzvqjgz43mz1pambj89vbkzmw1c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/minizinc-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/minizinc-mode"; sha256 = "1blb6mbyqvmdvwp477p1ggs3n6rzi9sdfvi0v1wfzmd7k749b10c"; name = "minizinc-mode"; }; @@ -37636,13 +37953,13 @@ }) {}; minor-mode-hack = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "minor-mode-hack"; - version = "20141226.1420"; + version = "20141226.1520"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/minor-mode-hack.el"; sha256 = "0vwvvhzqiad82qvfwygb2arq1mdvh1lj6q2as0a92fg1vc95qcb0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/minor-mode-hack"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/minor-mode-hack"; sha256 = "1f2wy25iphk3hzjy39ls5j04173g7gaq2rdp2grkawfhwx0ld4pj"; name = "minor-mode-hack"; }; @@ -37655,7 +37972,7 @@ mip-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "mip-mode"; - version = "20151127.17"; + version = "20151127.117"; src = fetchFromGitHub { owner = "gaudecker"; repo = "mip-mode"; @@ -37663,7 +37980,7 @@ sha256 = "12k9ii4090dn03xvgqisl4zl4qi33054zxyfkqzzpa9wv72h4knc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mip-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/mip-mode"; sha256 = "1wx5zg4kimd29vqipbzm4vjphn0mldri12g6b18kc290nhgj22ar"; name = "mip-mode"; }; @@ -37675,13 +37992,13 @@ }) {}; misc-cmds = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "misc-cmds"; - version = "20151231.1623"; + version = "20151231.1723"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/misc-cmds.el"; sha256 = "0sc4l0prwmakxmdq22xd5mj8ddwhzrs034zmx2swi2k3s07x15id"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/misc-cmds"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/misc-cmds"; sha256 = "0bylb84icddgznmim18fwq1mhh3qz8yh8ch6lpadf9p3h420qgcl"; name = "misc-cmds"; }; @@ -37693,13 +38010,13 @@ }) {}; misc-fns = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "misc-fns"; - version = "20151231.1708"; + version = "20151231.1808"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/misc-fns.el"; sha256 = "1mksmxy741sv7d5lr9wlj4klb0sg06bg5z1zpd5hj0bd4b3mx7x0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/misc-fns"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/misc-fns"; sha256 = "1spjbkcac33lyfsgkd6z186a3432x9nw3akmx194gaap2863xcam"; name = "misc-fns"; }; @@ -37712,7 +38029,7 @@ mkdown = callPackage ({ fetchFromGitHub, fetchurl, lib, markdown-mode, melpaBuild }: melpaBuild { pname = "mkdown"; - version = "20140517.918"; + version = "20140517.1018"; src = fetchFromGitHub { owner = "ajtulloch"; repo = "mkdown.el"; @@ -37720,7 +38037,7 @@ sha256 = "1d08i2cfn1q446nyyji0hi9vlw7bzkpxhn6653jz2k77vd2y0wmk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mkdown"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/mkdown"; sha256 = "1b2vi8q6jhq1xv7yr5f3aiyp1w8j59w19vxys0pv6bqr2gra07i1"; name = "mkdown"; }; @@ -37733,7 +38050,7 @@ mmm-jinja2 = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, mmm-mode }: melpaBuild { pname = "mmm-jinja2"; - version = "20150904.1334"; + version = "20150904.1434"; src = fetchFromGitHub { owner = "beardedprojamz"; repo = "mmm-jinja2"; @@ -37741,7 +38058,7 @@ sha256 = "1lcc2p9qz70kpykgx82isv0qiqlsajp4vvcj6bvag92d7h9yk9bv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mmm-jinja2"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/mmm-jinja2"; sha256 = "0579sv77dyzishhcw4xxi444inwy4jgh9vmxwd856nd05j3cyc7z"; name = "mmm-jinja2"; }; @@ -37754,14 +38071,14 @@ mmm-mako = callPackage ({ fetchhg, fetchurl, lib, melpaBuild, mmm-mode }: melpaBuild { pname = "mmm-mako"; - version = "20121020.151"; + version = "20121020.251"; src = fetchhg { url = "https://bitbucket.com/pjenvey/mmm-mako"; rev = "5c9ff92137b5"; sha256 = "0rpp748ym79sxccp9pyrwri14m7624zzb80srfgjfdpysrrs0jrr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mmm-mako"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/mmm-mako"; sha256 = "0a4af5q9wxafrid8visp30cz6073ig0c961b78vmmgqrwvvxd3kn"; name = "mmm-mako"; }; @@ -37774,7 +38091,7 @@ mmm-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "mmm-mode"; - version = "20150828.1916"; + version = "20150828.2016"; src = fetchFromGitHub { owner = "purcell"; repo = "mmm-mode"; @@ -37782,7 +38099,7 @@ sha256 = "04rapmqblfjvmdccm9kqi8gn0him1x2q7hjwsyb8mg4lwxcd7qp9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mmm-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/mmm-mode"; sha256 = "10vkqaf4684cm5yds1xfinvgc3v7871fb203sfl9dbkcgnd5dcjw"; name = "mmm-mode"; }; @@ -37795,7 +38112,7 @@ mmt = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "mmt"; - version = "20150906.1159"; + version = "20150906.1259"; src = fetchFromGitHub { owner = "mrkkrp"; repo = "mmt"; @@ -37803,7 +38120,7 @@ sha256 = "05nmcx3f63ds31cj3qwwp03ksflkfwlcn3z2xyxbny83r0dxbgvc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mmt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/mmt"; sha256 = "0hal3qcw6x9658xpdaw6q9l2rr2z107pvg5bdzshf67p1b3lf9dq"; name = "mmt"; }; @@ -37816,7 +38133,7 @@ mo-git-blame = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "mo-git-blame"; - version = "20160129.1159"; + version = "20160129.1259"; src = fetchFromGitHub { owner = "mbunkus"; repo = "mo-git-blame"; @@ -37824,7 +38141,7 @@ sha256 = "1dh92hzpicfvrlg6swrw4igwb771xbsmsf7hxp1a4iry4w8dk398"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mo-git-blame"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/mo-git-blame"; sha256 = "1dp9pxhggappb70m5hyp8sxlnh06y996adabq7x6qvm745mk6f0x"; name = "mo-git-blame"; }; @@ -37837,7 +38154,7 @@ mo-vi-ment-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "mo-vi-ment-mode"; - version = "20131029.133"; + version = "20131029.233"; src = fetchFromGitHub { owner = "AjayMT"; repo = "mo-vi-ment"; @@ -37845,7 +38162,7 @@ sha256 = "0k0scl9z35d8x4ikxm2db1frpbx151p2m181fa1armxbd9lbfvnn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mo-vi-ment-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/mo-vi-ment-mode"; sha256 = "1pg889mgpv0waccm135mlvag7q13gzfkzchv2532jngwrn6amqc7"; name = "mo-vi-ment-mode"; }; @@ -37858,7 +38175,7 @@ mobdebug-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, lua-mode, melpaBuild }: melpaBuild { pname = "mobdebug-mode"; - version = "20140109.2146"; + version = "20140109.2246"; src = fetchFromGitHub { owner = "deftsp"; repo = "mobdebug-mode"; @@ -37866,7 +38183,7 @@ sha256 = "04hbd7mv29v3fv4ld0b3skrir0wp9dix2n5nbqp63fj6n5i4cyyz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mobdebug-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/mobdebug-mode"; sha256 = "19k0c7igqsqvib6hx0nssig4l5f959dlr4wijd1hp5h1hmcb5vv8"; name = "mobdebug-mode"; }; @@ -37879,7 +38196,7 @@ mocha = callPackage ({ fetchFromGitHub, fetchurl, js2-mode, lib, melpaBuild }: melpaBuild { pname = "mocha"; - version = "20160223.2255"; + version = "20160223.2355"; src = fetchFromGitHub { owner = "scottaj"; repo = "mocha.el"; @@ -37887,7 +38204,7 @@ sha256 = "1xhmmdwbypjwdcp0bciy1dqxy6nmslyiybdysgb5ii6man512wgd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mocha"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/mocha"; sha256 = "0kjgrl5iy7cd3b9csgpjg3y0wp0q6c7c8cvf0mx8gdbsj7296kyx"; name = "mocha"; }; @@ -37900,7 +38217,7 @@ mocha-snippets = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }: melpaBuild { pname = "mocha-snippets"; - version = "20160211.1032"; + version = "20160211.1132"; src = fetchFromGitHub { owner = "cowboyd"; repo = "mocha-snippets.el"; @@ -37908,7 +38225,7 @@ sha256 = "1f8h5c9vvwynq92b1ii5hdpqmf52l5j443ir5hdbiigq30wkwlhx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mocha-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/mocha-snippets"; sha256 = "0dbsdk4jpzxv2sxx0nia9zhd0a0wmkz1qcqmbd15m1909ccdwxds"; name = "mocha-snippets"; }; @@ -37921,7 +38238,7 @@ mocker = callPackage ({ eieio ? null, el-x, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "mocker"; - version = "20150916.2054"; + version = "20150916.2154"; src = fetchFromGitHub { owner = "sigma"; repo = "mocker.el"; @@ -37929,7 +38246,7 @@ sha256 = "0dngznaraphpc5amn9n120la7ga3rj7h67pnnal6qwflh5rqcmss"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mocker"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/mocker"; sha256 = "1g90jp1czrrzrmn7n4linby3q4fb4gcflzv2amjv0sdimw1ln1w3"; name = "mocker"; }; @@ -37942,7 +38259,7 @@ modalka = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "modalka"; - version = "20160122.633"; + version = "20160122.733"; src = fetchFromGitHub { owner = "mrkkrp"; repo = "modalka"; @@ -37950,7 +38267,7 @@ sha256 = "0r24186d1q9436h3qhqz1z8q978d01an0dvpvzirf4x9ickrib3k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/modalka"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/modalka"; sha256 = "0bkjykvl6sw797h7j76dzn1viy598asly98gcl5wrq13n4w1md4c"; name = "modalka"; }; @@ -37963,15 +38280,15 @@ mode-icons = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "mode-icons"; - version = "20160425.425"; + version = "20160502.146"; src = fetchFromGitHub { owner = "ryuslash"; repo = "mode-icons"; - rev = "26625e0dfa78305863eff1551c04735d9e0d241c"; - sha256 = "067dmkzkrdbgvwmrxw7pgjdjln5vii2r79i3xcqxjn5xjvsii47x"; + rev = "3fcf0bae32c1b030ea3754564446c8339020038e"; + sha256 = "1md367x2h3awpskpjampg6b41md9zhbb9xsldqlv65rnlf1hqadb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mode-icons"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/mode-icons"; sha256 = "1dqcry27rz7afyvjg7345wysp6wmh8fpj32ysk5iw5i7v5scf6kf"; name = "mode-icons"; }; @@ -37984,7 +38301,7 @@ mode-line-debug = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "mode-line-debug"; - version = "20150307.712"; + version = "20150307.812"; src = fetchFromGitHub { owner = "tarsius"; repo = "mode-line-debug"; @@ -37992,7 +38309,7 @@ sha256 = "1lkw9nnlns6v7r6nx915f85whq1ri4w8lccwyxrvam40hfvq60s1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mode-line-debug"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/mode-line-debug"; sha256 = "0ppj14bm3rx3xgg4mfxa5zcm2r129jgmsx817wq3h7akjngcbfkd"; name = "mode-line-debug"; }; @@ -38004,13 +38321,13 @@ }) {}; modeline-char = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "modeline-char"; - version = "20151231.1719"; + version = "20151231.1819"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/modeline-char.el"; sha256 = "1dlprk1jlfw7b7vnxi0d0mf85737wkjc5fkvycx8nawngb2fqhbw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/modeline-char"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/modeline-char"; sha256 = "1cb6pm69db0jbksmc4mkawf643i74is9v7ka34pv3mb21nj095qp"; name = "modeline-char"; }; @@ -38022,13 +38339,13 @@ }) {}; modeline-posn = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "modeline-posn"; - version = "20160112.849"; + version = "20160112.949"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/modeline-posn.el"; sha256 = "1r4zq355h570hk7qq0ik121bwsr4hjnhacal4d4h119d11gq2p8d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/modeline-posn"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/modeline-posn"; sha256 = "0dngfcbcdh22fl6nd47dhg9z9iivj67six67zjr9j1cbngp10dwk"; name = "modeline-posn"; }; @@ -38041,7 +38358,7 @@ modtime-skip-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "modtime-skip-mode"; - version = "20140128.1601"; + version = "20140128.1701"; src = fetchFromGitHub { owner = "jordonbiondo"; repo = "modtime-skip-mode"; @@ -38049,7 +38366,7 @@ sha256 = "0ri841cwx2mx8ri50lhvifmxnysdc022421mlmklql0252kn775l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/modtime-skip-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/modtime-skip-mode"; sha256 = "1drafwf4kqp83jp47j2ddl2n4a92zf1589fnp6c72hmjqcxv3l28"; name = "modtime-skip-mode"; }; @@ -38062,7 +38379,7 @@ moe-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "moe-theme"; - version = "20160322.315"; + version = "20160322.415"; src = fetchFromGitHub { owner = "kuanyui"; repo = "moe-theme.el"; @@ -38070,7 +38387,7 @@ sha256 = "1567k0zacdf9zlmypb8fywz49n37hm8p60vrq2jqql8n8nq325gq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/moe-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/moe-theme"; sha256 = "1nqvj8spvffgjvqlf25rcm3dc6w1axb6qlwwsjhq401a6xhw67f6"; name = "moe-theme"; }; @@ -38083,7 +38400,7 @@ molokai-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "molokai-theme"; - version = "20151016.1045"; + version = "20151016.1145"; src = fetchFromGitHub { owner = "alloy-d"; repo = "color-theme-molokai"; @@ -38091,7 +38408,7 @@ sha256 = "1hqa59pdrnwfykyl58lr8pfbh2f13sygvmrh707hbwc2aii0jjv2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/molokai-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/molokai-theme"; sha256 = "0srdh3yx7j6xs7rgpzmsyzz6ds00kq887rs2sfa0nvk0j0ga6baf"; name = "molokai-theme"; }; @@ -38104,7 +38421,7 @@ mongo = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "mongo"; - version = "20150315.719"; + version = "20150315.819"; src = fetchFromGitHub { owner = "m2ym"; repo = "mongo-el"; @@ -38112,7 +38429,7 @@ sha256 = "0z8mcfhj425hb91fkj1pyg3apw1kf4mgy8lx6n1sc8zmib38py0x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mongo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/mongo"; sha256 = "103zkslqdihjyl81688fvkq96rzk3an1vf3gz8rlmmz5anbql8ai"; name = "mongo"; }; @@ -38125,7 +38442,7 @@ monky = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "monky"; - version = "20160315.2251"; + version = "20160315.2351"; src = fetchFromGitHub { owner = "ananthakumaran"; repo = "monky"; @@ -38133,7 +38450,7 @@ sha256 = "1p9p0yp68wb7f1qf0c02fk7ayb7dw6gv57368ksa6nw76w58hhfm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/monky"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/monky"; sha256 = "1m7hy3ijwgxqjk3vjvqkxqj8b5bqnd201bmf302k45n0dpjmhshz"; name = "monky"; }; @@ -38146,7 +38463,7 @@ monochrome-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "monochrome-theme"; - version = "20140326.550"; + version = "20140326.650"; src = fetchFromGitHub { owner = "fxn"; repo = "monochrome-theme.el"; @@ -38154,7 +38471,7 @@ sha256 = "1sxhpvxapzgrwvzibkg7zd3ppmfcz5rhrbvg73b8rggjg4m5snyf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/monochrome-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/monochrome-theme"; sha256 = "191ikqns1sxcz6ca6xp6mb2vyfj19x19cmcf17snrf46kmx60qk9"; name = "monochrome-theme"; }; @@ -38167,15 +38484,15 @@ monokai-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "monokai-theme"; - version = "20160419.1644"; + version = "20160505.1534"; src = fetchFromGitHub { owner = "oneKelvinSmith"; repo = "monokai-emacs"; - rev = "8683dceadcb4072bb33723bd1d4b1fa6555810a1"; - sha256 = "0djgxmd1nqfhyxzag3hq1q7lhsgx5d8cid11i64il9rpiqfyysip"; + rev = "35c7bca4c2284012fd849daea5dd937cf0bcfd0b"; + sha256 = "0wmc22m9hhr1a03l4h0k3qb8db1p9ybnllm7s79k1qnfa4q1gb5n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/monokai-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/monokai-theme"; sha256 = "13mv4vgsmdbf3v748lqi7b42hvr3yp86n97rb6792bcgd3kbdx7a"; name = "monokai-theme"; }; @@ -38188,7 +38505,7 @@ monroe = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "monroe"; - version = "20160421.640"; + version = "20160421.740"; src = fetchFromGitHub { owner = "sanel"; repo = "monroe"; @@ -38196,7 +38513,7 @@ sha256 = "0jac2i5hwdi65rrif0xq86wsimxlpwcfbzsv7fjhc5f16bs6dmnk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/monroe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/monroe"; sha256 = "04rhninxppvilk7s90g0wwa0g9vfcg7mk8mrb2m2c7cb9vj6wyig"; name = "monroe"; }; @@ -38206,10 +38523,31 @@ license = lib.licenses.free; }; }) {}; + moonscript = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "moonscript"; + version = "20160503.931"; + src = fetchFromGitHub { + owner = "k2052"; + repo = "moonscript-mode"; + rev = "2278810a43ee41b760e84e48e54ffc48b11772b0"; + sha256 = "0bz35m0drjl12f9y42a79nnzxz5ahf5m7c2l2nfz8fyif270ph1y"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/moonscript"; + sha256 = "1fi4hg5gk5zpfkrk0hqghghkzbbi33v48piq2i085i4nc6m3imp0"; + name = "moonscript"; + }; + packageRequires = [ cl-lib emacs ]; + meta = { + homepage = "https://melpa.org/#/moonscript"; + license = lib.licenses.free; + }; + }) {}; morlock = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "morlock"; - version = "20150815.1034"; + version = "20150815.1134"; src = fetchFromGitHub { owner = "tarsius"; repo = "morlock"; @@ -38217,7 +38555,7 @@ sha256 = "1ndgw4799d816pkn2bwja5kmigydpmj9znn8cax4dxsd9fg2hzjy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/morlock"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/morlock"; sha256 = "0693jr1k8mzd7hwp52azkl62c1g1p5yinarjcmdksfyqblqq5jna"; name = "morlock"; }; @@ -38230,7 +38568,7 @@ mote-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, ruby-mode ? null }: melpaBuild { pname = "mote-mode"; - version = "20160122.1829"; + version = "20160122.1929"; src = fetchFromGitHub { owner = "inkel"; repo = "mote-mode"; @@ -38238,7 +38576,7 @@ sha256 = "10mf96r75558scn71pri71aa8nhp6hmnb5rwjxlh5dlf80r5dfd7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mote-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/mote-mode"; sha256 = "1lg5z5d0d35sh21maiwmgzvc31iki9yg6x0awy5xrfsains7ykn9"; name = "mote-mode"; }; @@ -38251,7 +38589,7 @@ motion-mode = callPackage ({ fetchFromGitHub, fetchurl, flymake-cursor, flymake-easy, lib, melpaBuild }: melpaBuild { pname = "motion-mode"; - version = "20140919.2056"; + version = "20140919.2156"; src = fetchFromGitHub { owner = "ainame"; repo = "motion-mode"; @@ -38259,7 +38597,7 @@ sha256 = "17570labnwdnwca2cg4ga0mrrm00n0h3wlxry823k5yn3k93rnj1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/motion-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/motion-mode"; sha256 = "1lfsc8ayiz2v3dfn8c0mmfch8vpzqyddxw8kscan2lzl2lcj50h0"; name = "motion-mode"; }; @@ -38271,13 +38609,13 @@ }) {}; mouse-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "mouse-plus"; - version = "20151231.1725"; + version = "20151231.1825"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/mouse+.el"; sha256 = "0rakxcpqdx175hic3ykwbd5if53dvvf0sxhq0gplpsybpqvkimyv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mouse+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/mouse+"; sha256 = "1fv7jnqzskx9iv92dm2pf0mqy2accl0svjl2kkb6v273n1day3f8"; name = "mouse-plus"; }; @@ -38290,7 +38628,7 @@ mouse-slider-mode = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "mouse-slider-mode"; - version = "20150910.1600"; + version = "20150910.1700"; src = fetchFromGitHub { owner = "skeeto"; repo = "mouse-slider-mode"; @@ -38298,7 +38636,7 @@ sha256 = "05pzplb3gmlnlvn2azbxdlf4vrkvk8fc9dkgi2nq4shysnh4c9v7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mouse-slider-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/mouse-slider-mode"; sha256 = "0aqxjm78k7i8c59w6mw9wsfw3rail1pg40ac1dbcjkm62fjbh5hy"; name = "mouse-slider-mode"; }; @@ -38310,13 +38648,13 @@ }) {}; mouse3 = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "mouse3"; - version = "20151231.1726"; + version = "20151231.1826"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/mouse3.el"; sha256 = "1831jpi06hi5v2jdjgs83jma7fp8xiqdmvvwxfyp2zpbfwi1lkb6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mouse3"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/mouse3"; sha256 = "1rppn55axjpqwqm2lq4dvwi3z7xkd5jkyqi1x8jqgcsfc9w6m777"; name = "mouse3"; }; @@ -38329,7 +38667,7 @@ move-dup = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "move-dup"; - version = "20140925.1008"; + version = "20140925.1108"; src = fetchFromGitHub { owner = "wyuenho"; repo = "move-dup"; @@ -38337,7 +38675,7 @@ sha256 = "0baynb6gq04rxh10l6rn0myrhg7c7fwqaryiiyddp4jy7llf83c8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/move-dup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/move-dup"; sha256 = "0b0lmiisl9yckblwf7619if88qsmbka3bl4qiaqam7fka7psxs7f"; name = "move-dup"; }; @@ -38350,15 +38688,15 @@ move-text = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "move-text"; - version = "20160211.2047"; + version = "20160430.2030"; src = fetchFromGitHub { owner = "emacsfodder"; repo = "move-text"; - rev = "6219c1e222c463217007efc7f4eaeffef166fe21"; - sha256 = "0f7gwwkyxk9rv6rhpc88w8vz4x0ww6r9cxmy7bs9lqsf8a7y2095"; + rev = "e8098573d4f422ad3797ed7b73edaa78474c6b36"; + sha256 = "1i8nbxmxi9yblik7ma3wm19sajk1pgpw83mj990vhj1yl1k7m136"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/move-text"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/move-text"; sha256 = "04bfrkanafmbrdyw06ciw9kiyn7h3kpikxk3clx2gc04jl67hzgy"; name = "move-text"; }; @@ -38371,7 +38709,7 @@ mowedline = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "mowedline"; - version = "20150601.1209"; + version = "20150601.1309"; src = fetchFromGitHub { owner = "retroj"; repo = "mowedline"; @@ -38379,7 +38717,7 @@ sha256 = "179mc70x3dvj0cz6yyhs00ndh0xvk71gmiscln9y0f1ngxr5h338"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mowedline"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/mowedline"; sha256 = "0c2hvvwa7s5iyz517jaskshdcq9zs15zr6xsvrcb3biahrh4bmfb"; name = "mowedline"; }; @@ -38392,7 +38730,7 @@ moz = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "moz"; - version = "20150805.1206"; + version = "20150805.1306"; src = fetchFromGitHub { owner = "bard"; repo = "mozrepl"; @@ -38400,7 +38738,7 @@ sha256 = "1g06i3d8xv8ja6nfww4k60l3467xr1s9xsk7i6dbicq0lf8559h9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/moz"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/moz"; sha256 = "0ar2xgsi7csjj6fgiamrjwjc58j942dm32j3f3lz21yn2c4pnyxi"; name = "moz"; }; @@ -38413,7 +38751,7 @@ moz-controller = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, moz }: melpaBuild { pname = "moz-controller"; - version = "20151208.2006"; + version = "20151208.2106"; src = fetchFromGitHub { owner = "RenWenshan"; repo = "emacs-moz-controller"; @@ -38421,7 +38759,7 @@ sha256 = "0fssn33ld6xhjlwg1dbrjg8sa0pjmglq0dw792yrmvm4fj0zjph8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/moz-controller"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/moz-controller"; sha256 = "18gca1csl9dfi9995mky8cbgi3xzf1if8pzdjiz5404gzcqk0rfd"; name = "moz-controller"; }; @@ -38434,7 +38772,7 @@ mozc = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "mozc"; - version = "20160102.1706"; + version = "20160102.1806"; src = fetchFromGitHub { owner = "google"; repo = "mozc"; @@ -38442,7 +38780,7 @@ sha256 = "1l1qds7mzn7cx0ijdwcdihqbmidwh16a96v4la9ris07k5fxqiph"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mozc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/mozc"; sha256 = "0nslh4xyqpvzdxcgrd1bzaqcdz77bghizh6n2w6wk46cflir8xba"; name = "mozc"; }; @@ -38455,7 +38793,7 @@ mozc-im = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, mozc }: melpaBuild { pname = "mozc-im"; - version = "20160411.1922"; + version = "20160411.2022"; src = fetchFromGitHub { owner = "d5884"; repo = "mozc-im"; @@ -38463,7 +38801,7 @@ sha256 = "0cpcldizgyr125j7lzkl8l6jw1hc3fb12cwgkpjrl6pjpr80vb15"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mozc-im"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/mozc-im"; sha256 = "1gqzmm712npj36qfi506zgl0ycd6k7l5m46c7zz2z2lb6jpssw10"; name = "mozc-im"; }; @@ -38476,7 +38814,7 @@ mozc-popup = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, mozc, popup }: melpaBuild { pname = "mozc-popup"; - version = "20150223.1834"; + version = "20150223.1934"; src = fetchFromGitHub { owner = "d5884"; repo = "mozc-popup"; @@ -38484,7 +38822,7 @@ sha256 = "1mbpkjc6sk7qqmgsmr5a5l2ycwnqp8bkwgikdavgs6hnal10bkmn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mozc-popup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/mozc-popup"; sha256 = "1n43lwflxzzyskxgzg19rg3hiqqkf5l7vfgaydryf4sk8480x687"; name = "mozc-popup"; }; @@ -38497,7 +38835,7 @@ mozc-temp = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, mozc }: melpaBuild { pname = "mozc-temp"; - version = "20160228.240"; + version = "20160228.340"; src = fetchFromGitHub { owner = "HKey"; repo = "mozc-temp"; @@ -38505,7 +38843,7 @@ sha256 = "1vwciy6hcbcyid41bykibx6ii1y9ln7kdxn7cjwfjrgd3kl9wg19"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mozc-temp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/mozc-temp"; sha256 = "0x1bsa1py0kn73hzbsb4ijl0bqng8nib191vgn6xq8f5cx55044d"; name = "mozc-temp"; }; @@ -38518,7 +38856,7 @@ mpages = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "mpages"; - version = "20150710.904"; + version = "20150710.1004"; src = fetchFromGitHub { owner = "slevin"; repo = "mpages"; @@ -38526,7 +38864,7 @@ sha256 = "11c8pr3s77aq34ic32lnsialwh8bw3m78kj838xl2aab2pgrlny2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mpages"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/mpages"; sha256 = "11scjjwwrpgaz6i4jq9y7m864nfak46vnbfb0w15625znz926jcs"; name = "mpages"; }; @@ -38539,7 +38877,7 @@ mpg123 = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "mpg123"; - version = "20151214.1350"; + version = "20151214.1450"; src = fetchFromGitHub { owner = "emacsmirror"; repo = "mpg123"; @@ -38547,7 +38885,7 @@ sha256 = "09731mwm23b6ic53366lnxy2p7dfd245yh75gaf6ijfa22jks7gb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mpg123"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/mpg123"; sha256 = "184ip9pvv4zkfxnrzxbfajjadc9f4dz4psn33f9x3sfh7s1y4nw8"; name = "mpg123"; }; @@ -38560,7 +38898,7 @@ mpv = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, json ? null, lib, melpaBuild, names, org }: melpaBuild { pname = "mpv"; - version = "20150218.318"; + version = "20150218.418"; src = fetchFromGitHub { owner = "kljohann"; repo = "mpv.el"; @@ -38568,7 +38906,7 @@ sha256 = "193j90sgn1zgl00mji86wll4djj57vk5arhwbmhhf5b1qx3wpbhm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mpv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/mpv"; sha256 = "1vq308ac6jj1h8qa2b2sypisb38hbvwjimqndhpfir06fghkw94l"; name = "mpv"; }; @@ -38581,7 +38919,7 @@ msvc = callPackage ({ ac-clang, cedet ? null, cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "msvc"; - version = "20150530.351"; + version = "20150530.451"; src = fetchFromGitHub { owner = "yaruopooner"; repo = "msvc"; @@ -38589,7 +38927,7 @@ sha256 = "1draiwbwb8zfi6rdr5irv8091xv2pmnifq7pzi3rrvjb8swb28z3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/msvc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/msvc"; sha256 = "04gq2klana557qvsi3bv6416l0319jsqb6bdfs7y6729qd94hlq3"; name = "msvc"; }; @@ -38602,7 +38940,7 @@ mu-cite = callPackage ({ fetchFromGitHub, fetchurl, flim, lib, melpaBuild }: melpaBuild { pname = "mu-cite"; - version = "20160130.500"; + version = "20160130.600"; src = fetchFromGitHub { owner = "ksato9700"; repo = "mu-cite"; @@ -38610,7 +38948,7 @@ sha256 = "1gxspy50gh7j4sysvr17fvvp8p417ww39ii5dy0fxncfwczdsa19"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mu-cite"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/mu-cite"; sha256 = "0ap21sw4r2x774q2np6rhrxh2m2rf3f6ak3k71iar159chx32y6q"; name = "mu-cite"; }; @@ -38623,7 +38961,7 @@ mu4e-alert = callPackage ({ alert, emacs, fetchFromGitHub, fetchurl, ht, lib, melpaBuild, s }: melpaBuild { pname = "mu4e-alert"; - version = "20160215.409"; + version = "20160215.509"; src = fetchFromGitHub { owner = "iqbalansari"; repo = "mu4e-alert"; @@ -38631,7 +38969,7 @@ sha256 = "0klnpbb47l3s8cdv1ikldiqw83mggxcbnhlvs3g13a36vx6cxxp4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mu4e-alert"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/mu4e-alert"; sha256 = "15nwj09iyrvjsc9lrxla6qa0s8izcllxghw5gx3ffncfcrx2l8qm"; name = "mu4e-alert"; }; @@ -38644,7 +38982,7 @@ mu4e-maildirs-extension = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "mu4e-maildirs-extension"; - version = "20160126.239"; + version = "20160126.339"; src = fetchFromGitHub { owner = "agpchil"; repo = "mu4e-maildirs-extension"; @@ -38652,7 +38990,7 @@ sha256 = "1cvpzs65fjmhdza1vi2lpk68vkvivb0igrpgm42andi42gc6k50b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mu4e-maildirs-extension"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/mu4e-maildirs-extension"; sha256 = "1xz19dxrj1grnl7wy9qglh08xb3dr509232l3xizpkxgqqk8pwbi"; name = "mu4e-maildirs-extension"; }; @@ -38665,7 +39003,7 @@ multi = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "multi"; - version = "20131013.1044"; + version = "20131013.1144"; src = fetchFromGitHub { owner = "kurisuwhyte"; repo = "emacs-multi"; @@ -38673,7 +39011,7 @@ sha256 = "0f5hc6mgq0hg1wwnvqd4fp7ck58lcavvgqjggz9zlhrjgkmynjxx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/multi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/multi"; sha256 = "1c240d1c1g8wb2ld944344zklnv86d9rycmya4z53b2ai10642ig"; name = "multi"; }; @@ -38686,7 +39024,7 @@ multi-compile = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "multi-compile"; - version = "20160306.1623"; + version = "20160306.1723"; src = fetchFromGitHub { owner = "ReanGD"; repo = "emacs-multi-compile"; @@ -38694,7 +39032,7 @@ sha256 = "1aswpv1m02n26620hgkcfd38f06bzmmijlr9rs5krv6snq5gdb8g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/multi-compile"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/multi-compile"; sha256 = "16fv0hpwcjw1771zlbgznph0fix9fbm6yqj2rcz1f9l26iih6apz"; name = "multi-compile"; }; @@ -38706,13 +39044,13 @@ }) {}; multi-eshell = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "multi-eshell"; - version = "20120608.1335"; + version = "20120608.1435"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/multi-eshell.el"; sha256 = "1w1jwfznpl214a1xx46zlgqbx9c5yjzpyqqrkn3xqjgnj485yhkl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/multi-eshell"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/multi-eshell"; sha256 = "1i0mvgqxsc99dwp9qcdrijqxsxflrbxw846rgw89p1jfs8mp4l7d"; name = "multi-eshell"; }; @@ -38725,7 +39063,7 @@ multi-line = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "multi-line"; - version = "20151206.1813"; + version = "20151206.1913"; src = fetchFromGitHub { owner = "IvanMalison"; repo = "multi-line"; @@ -38733,7 +39071,7 @@ sha256 = "13rp6kbabjy9dy0x4696065yyaxlgmfnwcqq9vcw2jhbb2gl9gs5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/multi-line"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/multi-line"; sha256 = "1aadmijnjr029s1qq4gk8xyl9m8xb5x5774b8i3jyfixyjqvhvwp"; name = "multi-line"; }; @@ -38746,14 +39084,14 @@ multi-project = callPackage ({ fetchhg, fetchurl, lib, melpaBuild }: melpaBuild { pname = "multi-project"; - version = "20150314.944"; + version = "20150314.1044"; src = fetchhg { url = "https://bitbucket.com/ellisvelo/multi-project"; rev = "f7fd0ae6819e"; sha256 = "0lcx73vzm7zwvzzc53pfb5y16bhvq9cm9fdy63d3242s8v834z3c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/multi-project"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/multi-project"; sha256 = "19dy2wl5ad1xldiznlw2vjvr9ja8h9wiv6igcggixq56fhngp40x"; name = "multi-project"; }; @@ -38765,13 +39103,13 @@ }) {}; multi-term = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "multi-term"; - version = "20150220.720"; + version = "20150220.820"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/multi-term.el"; sha256 = "062c52xd469jdmsq4fvdhsmgfjrlanv0bb1w5vglz7bsn68d2bim"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/multi-term"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/multi-term"; sha256 = "1va4ihngwv5qvwps3m9jj0150gbrmq3zllnyq1hbx5ap8hjrhvdx"; name = "multi-term"; }; @@ -38784,7 +39122,7 @@ multi-web-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "multi-web-mode"; - version = "20130823.2254"; + version = "20130823.2354"; src = fetchFromGitHub { owner = "fgallina"; repo = "multi-web-mode"; @@ -38792,7 +39130,7 @@ sha256 = "0mc4kkgwnwfk27wwc21nw5ly7qcsl7y5bd8wf2y8r6pxhvwran4n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/multi-web-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/multi-web-mode"; sha256 = "0vi4yvahr10aqpcz4127c8pcqpr5srwc1yhgipnbnm86qnh34ql5"; name = "multi-web-mode"; }; @@ -38805,7 +39143,7 @@ multicolumn = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "multicolumn"; - version = "20150202.1651"; + version = "20150202.1751"; src = fetchFromGitHub { owner = "Lindydancer"; repo = "multicolumn"; @@ -38813,7 +39151,7 @@ sha256 = "1ispa0wxpkydm0cyj4scyyacfrbilrip5v8bsrcqfc6qs597z8rf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/multicolumn"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/multicolumn"; sha256 = "1ylnc3s4ixvnqn7g2p6nzz8x29ggqc703waci430f1rp1lsd3q09"; name = "multicolumn"; }; @@ -38826,7 +39164,7 @@ multifiles = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "multifiles"; - version = "20130615.1633"; + version = "20130615.1733"; src = fetchFromGitHub { owner = "magnars"; repo = "multifiles.el"; @@ -38834,7 +39172,7 @@ sha256 = "065l04ylplng1vgykkbn2vnkcs3sn1k2cikx1ha2q8wmgx6bkvai"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/multifiles"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/multifiles"; sha256 = "0m0pi2qjis9p6z9cd8hlxm1r88ynwmd2ks8wg65sffffwsdbg4kz"; name = "multifiles"; }; @@ -38844,22 +39182,22 @@ license = lib.licenses.free; }; }) {}; - multiple-cursors = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + multiple-cursors = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "multiple-cursors"; - version = "20160304.859"; + version = "20160427.2233"; src = fetchFromGitHub { owner = "magnars"; repo = "multiple-cursors.el"; - rev = "8297f1f210f263fd96dfc28e9fb43522fd102c23"; - sha256 = "065qni8q25awpa8bdajz51vx96labigq3mk4094gn1np84zxg13g"; + rev = "6a62e60bf2920b0790ce27dfce8afd7c9f079f80"; + sha256 = "0pffy3jhdld1j86plmxxm9rn6l8aqn088wng91fwai7h1d5xv9b5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/multiple-cursors"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/multiple-cursors"; sha256 = "0mky5p9wpd3270wr5vfna8rkk2ff81wk7vicyxli39195m0qgg0x"; name = "multiple-cursors"; }; - packageRequires = []; + packageRequires = [ cl-lib ]; meta = { homepage = "https://melpa.org/#/multiple-cursors"; license = lib.licenses.free; @@ -38868,7 +39206,7 @@ mustache = callPackage ({ dash, fetchFromGitHub, fetchurl, ht, lib, melpaBuild, s }: melpaBuild { pname = "mustache"; - version = "20131117.1607"; + version = "20131117.1707"; src = fetchFromGitHub { owner = "Wilfred"; repo = "mustache.el"; @@ -38876,7 +39214,7 @@ sha256 = "1n2ymd92qpvsby6ms0l3kjhdzzc47rri2aiscc6bs07hm4mjpr9q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mustache"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/mustache"; sha256 = "1pjr00xx77mlfw1myxaz6i3y2gbivhbiq5hyjxxbjlfrkm1vxc8g"; name = "mustache"; }; @@ -38889,7 +39227,7 @@ mustache-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "mustache-mode"; - version = "20141024.932"; + version = "20141024.1032"; src = fetchFromGitHub { owner = "mustache"; repo = "emacs"; @@ -38897,7 +39235,7 @@ sha256 = "15gw4d0hp15rglsj8hzd290li4p0kadj2dsz0dgfcxld7hnimihk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mustache-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/mustache-mode"; sha256 = "076ar57qhwcpl4n634ma827r2rh61670778wqr5za2444a6ax1gs"; name = "mustache-mode"; }; @@ -38910,7 +39248,7 @@ mustang-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "mustang-theme"; - version = "20141017.1823"; + version = "20141017.1923"; src = fetchFromGitHub { owner = "mswift42"; repo = "mustang-theme"; @@ -38918,7 +39256,7 @@ sha256 = "19qd34dcfspv621p4y07zhq2pr8pwss3lcssm9sfhr6w2vmvgcr4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mustang-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/mustang-theme"; sha256 = "0771l3x6109ki914nwpfz3fj7pbvpcg9vf485mrccq2wlxymr5dr"; name = "mustang-theme"; }; @@ -38931,7 +39269,7 @@ mustard-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "mustard-theme"; - version = "20141116.102"; + version = "20141116.202"; src = fetchFromGitHub { owner = "emacsfodder"; repo = "emacs-mustard-theme"; @@ -38939,7 +39277,7 @@ sha256 = "170qhbbvcv9dg6jzfd9r95in5m8z1k647mn0gaqflfj0hvq5hwgf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mustard-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/mustard-theme"; sha256 = "0izxhivhmv49dja4wy9n0ipd41xdzdza2ql7pfa7ny35ji5hskik"; name = "mustard-theme"; }; @@ -38952,7 +39290,7 @@ mutant = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "mutant"; - version = "20160124.753"; + version = "20160124.853"; src = fetchFromGitHub { owner = "p-lambert"; repo = "mutant.el"; @@ -38960,7 +39298,7 @@ sha256 = "0w9blrm3596hmip8jg2hlz9sl31ci89b90jglmg4ipldgrgj3ly6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mutant"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/mutant"; sha256 = "0m5l5r37zb0ig96757ldyl9hbb01lknzqf08ap6dsmdwr1zayvp1"; name = "mutant"; }; @@ -38972,13 +39310,13 @@ }) {}; muttrc-mode = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "muttrc-mode"; - version = "20090804.1752"; + version = "20090804.1852"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/muttrc-mode.el"; sha256 = "1xihp3zdqs9054j3bfrd9wnahsvvxjk1ags1iy50ncv5850ppjis"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/muttrc-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/muttrc-mode"; sha256 = "0ym6rfrhrmpnlqhkxv9ck5893qm0yhswslvgc9vb4nl9hyc1b5jn"; name = "muttrc-mode"; }; @@ -38991,7 +39329,7 @@ mvn = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "mvn"; - version = "20160211.943"; + version = "20160211.1043"; src = fetchFromGitHub { owner = "apg"; repo = "mvn-el"; @@ -38999,7 +39337,7 @@ sha256 = "1jg3xrk44lspxli0zr02jcsl8phj0ns7ly3dkd7rx2wgsk69ari3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mvn"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/mvn"; sha256 = "0bpg9zpyfdyn9xvrbmq4gb10hd701mc49np8arlmnilphb3fdgzs"; name = "mvn"; }; @@ -39012,7 +39350,7 @@ mwe-log-commands = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "mwe-log-commands"; - version = "20100703.741"; + version = "20100703.841"; src = fetchFromGitHub { owner = "emacsmirror"; repo = "mwe-log-commands"; @@ -39020,7 +39358,7 @@ sha256 = "0qdlbyq47gr65yq5ri8s9lxw4wp9fmyqc2prkh560d4hkvw60aw3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mwe-log-commands"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/mwe-log-commands"; sha256 = "05z2ax9mgyxldd3ds44xnh9f5w5q4ziy4rxmnfiqjykan2f5hnkn"; name = "mwe-log-commands"; }; @@ -39033,7 +39371,7 @@ mwim = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "mwim"; - version = "20150822.1436"; + version = "20150822.1536"; src = fetchFromGitHub { owner = "alezost"; repo = "mwim.el"; @@ -39041,7 +39379,7 @@ sha256 = "0hvq6z754niqjyv79jzb833wrwbspc7npfg85scwdv8vzwassjx4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mwim"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/mwim"; sha256 = "0bsibwplvyv96y5i5svm2b0jwzs5a7jr2aara7v7xnpj0nqaxm8k"; name = "mwim"; }; @@ -39054,7 +39392,7 @@ myanmar-input-methods = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "myanmar-input-methods"; - version = "20160106.937"; + version = "20160106.1037"; src = fetchFromGitHub { owner = "yelinkyaw"; repo = "emacs-myanmar-input-methods"; @@ -39062,7 +39400,7 @@ sha256 = "0cf0c9g9k2lk1ifi2dlw7c601sh1ycxf3fgl2hy5wliyd6l9rf86"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/myanmar-input-methods"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/myanmar-input-methods"; sha256 = "1yg8zy2z18pbyr507ms2b162c0819rna1ilwyp6hb3iv2zjw45sd"; name = "myanmar-input-methods"; }; @@ -39075,7 +39413,7 @@ mykie = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "mykie"; - version = "20150808.1705"; + version = "20150808.1805"; src = fetchFromGitHub { owner = "yuutayamada"; repo = "mykie-el"; @@ -39083,7 +39421,7 @@ sha256 = "0a9a6hmv8vjmp6h9mnzin9vc0sncg79v5z72pasvbrplfxijzan0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mykie"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/mykie"; sha256 = "12ram39fp3m9ar6q184rsnpkxb14y0ajibng7ia2ck54ck7n36cj"; name = "mykie"; }; @@ -39096,7 +39434,7 @@ mynt-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, virtualenvwrapper }: melpaBuild { pname = "mynt-mode"; - version = "20150512.1549"; + version = "20150512.1649"; src = fetchFromGitHub { owner = "crshd"; repo = "mynt-mode"; @@ -39104,7 +39442,7 @@ sha256 = "18ml0qz3iipm9w36zvwz77cbbrg885jgvzk6z4a33xcfp524xhma"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mynt-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/mynt-mode"; sha256 = "17s0wdwgh2dcpww6h3qszc9dcs7ki00xkyisvsfn4xqajrmmp75b"; name = "mynt-mode"; }; @@ -39117,7 +39455,7 @@ mysql2sqlite = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "mysql2sqlite"; - version = "20151123.1539"; + version = "20151123.1639"; src = fetchFromGitHub { owner = "echosa"; repo = "emacs-mysql2sqlite"; @@ -39125,7 +39463,7 @@ sha256 = "0q5809hq22hyzxx5xr2hwwf3jh3qlpf3mkbl3fxqq93gm16plh1i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mysql2sqlite"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/mysql2sqlite"; sha256 = "1jblrbw4rq2jwpb8d1dyna0fiv52b9va3sj881cb17rqx200y3nd"; name = "mysql2sqlite"; }; @@ -39138,7 +39476,7 @@ myterminal-controls = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "myterminal-controls"; - version = "20160119.2230"; + version = "20160119.2330"; src = fetchFromGitHub { owner = "myTerminal"; repo = "myterminal-controls"; @@ -39146,7 +39484,7 @@ sha256 = "18wqgjn38jxzsbivmf2fkcq3r1y4lffh3dbpv1jj7s9qn91pyp6a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/myterminal-controls"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/myterminal-controls"; sha256 = "0ipk5s2whf3l68q0dydm1j6rcb6jhk61hgjwxygdphifvih7c5y2"; name = "myterminal-controls"; }; @@ -39159,7 +39497,7 @@ n3-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "n3-mode"; - version = "20141027.1257"; + version = "20141027.1357"; src = fetchFromGitHub { owner = "doriantaylor"; repo = "n3-mode-for-emacs"; @@ -39167,7 +39505,7 @@ sha256 = "1lp1bx9110vqzjww94va8pdks39qvqzl8rf0p8na1q0qn06rnk9h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/n3-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/n3-mode"; sha256 = "0hasxq39phgyc259dgxskhqxjsp0yi98vx1bs8ynvwa26la4ddzh"; name = "n3-mode"; }; @@ -39180,7 +39518,7 @@ n4js = callPackage ({ cypher-mode, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "n4js"; - version = "20150713.2131"; + version = "20150713.2231"; src = fetchFromGitHub { owner = "tmtxt"; repo = "n4js.el"; @@ -39188,7 +39526,7 @@ sha256 = "1pd6c0jc1zxx3i3nk4qdx7gdf1qn8sc9jgqd72pkkpzvdwv998cp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/n4js"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/n4js"; sha256 = "0x7smxs91ffriyxx2df61fh1abpl39gqy4m62k77h7xb6fg7af6m"; name = "n4js"; }; @@ -39200,13 +39538,13 @@ }) {}; naked = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "naked"; - version = "20151231.1727"; + version = "20151231.1827"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/naked.el"; sha256 = "0zq13qjqfpxjba1bhdqqxkvgxq1dxyb7hd1bpnk6cbhsxr6mr50i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/naked"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/naked"; sha256 = "06p6dzhn34dva3677mrvwq2a2x3bhw7f486y654hszla7i75pilq"; name = "naked"; }; @@ -39219,7 +39557,7 @@ name-this-color = callPackage ({ cl-lib ? null, dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "name-this-color"; - version = "20151014.1530"; + version = "20151014.1630"; src = fetchFromGitHub { owner = "knl"; repo = "name-this-color.el"; @@ -39227,7 +39565,7 @@ sha256 = "0amhw630hgc0j8wr8m6aav399ixi3vbwrck79hhlr3pmyh91vv7n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/name-this-color"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/name-this-color"; sha256 = "12nrk1ww766jb4gb4iz6w485nimh2iv8wni2jq4l38v8ndh490zb"; name = "name-this-color"; }; @@ -39240,7 +39578,7 @@ nameframe = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "nameframe"; - version = "20151017.2319"; + version = "20151018.19"; src = fetchFromGitHub { owner = "john2x"; repo = "nameframe"; @@ -39248,7 +39586,7 @@ sha256 = "07zgwyrss23yb8plnhhwmh0khdvfp539891sj1z1vs50jcllcpw5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/nameframe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/nameframe"; sha256 = "0iq8cfii39ha8sxn9w7kyfvys8kwyax8g4l0pkl05q0a0s95padp"; name = "nameframe"; }; @@ -39261,7 +39599,7 @@ nameframe-perspective = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, nameframe, perspective }: melpaBuild { pname = "nameframe-perspective"; - version = "20151018.407"; + version = "20151018.507"; src = fetchFromGitHub { owner = "john2x"; repo = "nameframe"; @@ -39269,7 +39607,7 @@ sha256 = "07zgwyrss23yb8plnhhwmh0khdvfp539891sj1z1vs50jcllcpw5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/nameframe-perspective"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/nameframe-perspective"; sha256 = "0wgr90m2pazc514slgdl1lin4mr3xxizasc82k7qinvdvdja515x"; name = "nameframe-perspective"; }; @@ -39282,7 +39620,7 @@ nameframe-projectile = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, nameframe, projectile }: melpaBuild { pname = "nameframe-projectile"; - version = "20151018.407"; + version = "20151018.507"; src = fetchFromGitHub { owner = "john2x"; repo = "nameframe"; @@ -39290,7 +39628,7 @@ sha256 = "07zgwyrss23yb8plnhhwmh0khdvfp539891sj1z1vs50jcllcpw5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/nameframe-projectile"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/nameframe-projectile"; sha256 = "11z64wy8mnnrjmgfs2sjbv3mh136aki8r5f89myx861nfx18hc3k"; name = "nameframe-projectile"; }; @@ -39303,7 +39641,7 @@ nameless = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "nameless"; - version = "20160403.1313"; + version = "20160403.1413"; src = fetchFromGitHub { owner = "Malabarba"; repo = "Nameless"; @@ -39311,7 +39649,7 @@ sha256 = "1g8852c68ca4b4wf781aiyhbgk2a3g39jw1mijzpp0lmmnsbmmwc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/nameless"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/nameless"; sha256 = "14agx54h2vqfb0656n12z761ywyxsdskd6xa1ccar70l9vwj85vq"; name = "nameless"; }; @@ -39324,7 +39662,7 @@ names = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "names"; - version = "20151201.604"; + version = "20151201.704"; src = fetchFromGitHub { owner = "Malabarba"; repo = "names"; @@ -39332,7 +39670,7 @@ sha256 = "0m82g27gwf9mvicivmcilqghz5b24ijmnw0jf0wl2skfbbg0sydh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/names"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/names"; sha256 = "1q784606jlakw1z6sx2g2x8hz8c8arywrm2r626wj0v105v510vg"; name = "names"; }; @@ -39345,7 +39683,7 @@ namespaces = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "namespaces"; - version = "20130326.1750"; + version = "20130326.1850"; src = fetchFromGitHub { owner = "chrisbarrett"; repo = "elisp-namespaces"; @@ -39353,7 +39691,7 @@ sha256 = "157hhb253m6a9l5wy6x8w5ar3x0qz1326l7a0npxif6pma0dd140"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/namespaces"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/namespaces"; sha256 = "02pb7762khxpah4q6xg8r7dmlv1kwyzinffi7pcaps6ycj29q2fr"; name = "namespaces"; }; @@ -39366,7 +39704,7 @@ nand2tetris = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, names }: melpaBuild { pname = "nand2tetris"; - version = "20151027.1651"; + version = "20151027.1751"; src = fetchFromGitHub { owner = "CestDiego"; repo = "nand2tetris.el"; @@ -39374,7 +39712,7 @@ sha256 = "003zgkpzz9q0bkkw6psks0vbfikzikfm42myqk14xn7330vgcxz7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/nand2tetris"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/nand2tetris"; sha256 = "1zg9xx7mj8334m2v2zqqfkr5vkj4dzqbj8y13qk6xhzb7qkppyqd"; name = "nand2tetris"; }; @@ -39387,7 +39725,7 @@ nand2tetris-assembler = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, names, nand2tetris }: melpaBuild { pname = "nand2tetris-assembler"; - version = "20151027.1636"; + version = "20151027.1736"; src = fetchFromGitHub { owner = "CestDiego"; repo = "nand2tetris.el"; @@ -39395,7 +39733,7 @@ sha256 = "003zgkpzz9q0bkkw6psks0vbfikzikfm42myqk14xn7330vgcxz7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/nand2tetris-assembler"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/nand2tetris-assembler"; sha256 = "1761kgrflipxba8894cnx90ks7f3ba4nj6ci515zzxcx9s45mfyy"; name = "nand2tetris-assembler"; }; @@ -39408,14 +39746,14 @@ nanowrimo = callPackage ({ fetchhg, fetchurl, lib, melpaBuild }: melpaBuild { pname = "nanowrimo"; - version = "20151104.2028"; + version = "20151104.2128"; src = fetchhg { url = "https://bitbucket.com/gvol/nanowrimo.el"; rev = "25e2ca20ed34"; sha256 = "1nzkamy53kl1g4y1jm7j5zgpkdsyg5ykp8zp1f0bg5mhy8mmf75w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/nanowrimo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/nanowrimo"; sha256 = "1nhyj38qyn1x6a5rbrwhcxwfwzyqqjm3dvksdnmam6vfwn3s2r31"; name = "nanowrimo"; }; @@ -39428,7 +39766,7 @@ naquadah-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "naquadah-theme"; - version = "20150923.341"; + version = "20150923.441"; src = fetchFromGitHub { owner = "jd"; repo = "naquadah-theme"; @@ -39436,7 +39774,7 @@ sha256 = "0mxf61ky1dd7r2qd4j7k6bdppmkilkq5l9gv257a12539wkw5yq2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/naquadah-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/naquadah-theme"; sha256 = "1aml1f2lgn530i86218nrc1pk3zw5n3qd2gw4gylwi7g75i0cqn1"; name = "naquadah-theme"; }; @@ -39448,13 +39786,13 @@ }) {}; narrow-indirect = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "narrow-indirect"; - version = "20151231.1739"; + version = "20151231.1839"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/narrow-indirect.el"; sha256 = "1lyszm94pd3jxs73v7k0aaazm0sd2rpz2pphcdag7lk7k6vppd9n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/narrow-indirect"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/narrow-indirect"; sha256 = "10aq4gssayh3adw8yz2lza1xbypyffi8r03lsc0kiis6gd9ibiyj"; name = "narrow-indirect"; }; @@ -39467,7 +39805,7 @@ narrow-reindent = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "narrow-reindent"; - version = "20150722.1406"; + version = "20150722.1506"; src = fetchFromGitHub { owner = "emallson"; repo = "narrow-reindent.el"; @@ -39475,7 +39813,7 @@ sha256 = "10yn215xb4s6kshk108y75im1xbdp0vwc9kah5bbaflp9234i0zh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/narrow-reindent"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/narrow-reindent"; sha256 = "0fybal70kk62zlra63x4jb72694m0mzv4cx746prx9anvq1ss2i0"; name = "narrow-reindent"; }; @@ -39488,7 +39826,7 @@ narrowed-page-navigation = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "narrowed-page-navigation"; - version = "20150108.2319"; + version = "20150109.19"; src = fetchFromGitHub { owner = "david-christiansen"; repo = "narrowed-page-navigation"; @@ -39496,7 +39834,7 @@ sha256 = "0ydxj6dc10knambma2hpimqrhfz216nbj96w1dcwgjixs4cd4nax"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/narrowed-page-navigation"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/narrowed-page-navigation"; sha256 = "1yrmih60dd69qnin505jlmfidm2svzpdrz46286r7nm6pk7s4pb7"; name = "narrowed-page-navigation"; }; @@ -39509,15 +39847,15 @@ nasm-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "nasm-mode"; - version = "20151109.1858"; + version = "20160427.1512"; src = fetchFromGitHub { owner = "skeeto"; repo = "nasm-mode"; - rev = "d95a12d3caaf1decf4d3bd39ac8559098e7227aa"; - sha256 = "19v1qp4rzqvyzrk5zaxdjhki8cjl4fg6lr4ai3vi06yf62ds9mcs"; + rev = "4de4e5634b5a7db8ce6ac5e62df5638b3636d153"; + sha256 = "1vkvv8v26ln8ngxf33h9cg31py2nlaf9wgc17i6v9i3s6am9gmkr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/nasm-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/nasm-mode"; sha256 = "1626yf9mmqlsw8w01vzqsyb5ipa56259d4kl6w871k7rvhxwff17"; name = "nasm-mode"; }; @@ -39530,7 +39868,7 @@ nav = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "nav"; - version = "20120507.207"; + version = "20120507.307"; src = fetchFromGitHub { owner = "ijt"; repo = "emacs-nav"; @@ -39538,7 +39876,7 @@ sha256 = "0kfqpji6z3ra8sc951vmm1bzyhkws7vb5q6djvl45wlf1wrgkc4p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/nav"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/nav"; sha256 = "0ly1fk4ak1p8gkz3qmmxyslcjgicnfm8bpqqgndvwcznp8pvpjml"; name = "nav"; }; @@ -39551,7 +39889,7 @@ nav-flash = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "nav-flash"; - version = "20140508.1541"; + version = "20140508.1641"; src = fetchFromGitHub { owner = "rolandwalker"; repo = "nav-flash"; @@ -39559,7 +39897,7 @@ sha256 = "07wjicbvzg7cz983hv0p2qw1qlln07djigkmbqfpwvg3fk50fdyg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/nav-flash"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/nav-flash"; sha256 = "0936kr0s6zxxmjwaqm7ywdw2im4dxai1xb7j6xa2gp7c70qvvsx3"; name = "nav-flash"; }; @@ -39572,7 +39910,7 @@ navi-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, outorg, outshine }: melpaBuild { pname = "navi-mode"; - version = "20160327.334"; + version = "20160327.434"; src = fetchFromGitHub { owner = "tj64"; repo = "navi"; @@ -39580,7 +39918,7 @@ sha256 = "0vmrh8y8q7zch48iz9lk4n0b3s1b8zp3wki3906s709b5ajfvk7h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/navi-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/navi-mode"; sha256 = "0f5db983w9kxq8mcjr22zfrm7cpxydml4viac62lvab2kwbpbrmi"; name = "navi-mode"; }; @@ -39593,7 +39931,7 @@ navi2ch = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "navi2ch"; - version = "20150329.2116"; + version = "20150329.2216"; src = fetchFromGitHub { owner = "naota"; repo = "navi2ch"; @@ -39601,7 +39939,7 @@ sha256 = "15l2zmm8bp4ip8m1hfxkvswfwa29pg72kisfya2n5v900r184a4m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/navi2ch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/navi2ch"; sha256 = "13xwvyy27dz1abjkkazm3s1p6cw32l2klr1bnln02w0azkbdy7x3"; name = "navi2ch"; }; @@ -39614,7 +39952,7 @@ navorski = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, multi-term, s }: melpaBuild { pname = "navorski"; - version = "20141203.1224"; + version = "20141203.1324"; src = fetchFromGitHub { owner = "roman"; repo = "navorski.el"; @@ -39622,7 +39960,7 @@ sha256 = "0g7rmvfm0ldv0d2x7f8k761mgmi47siyspfi1ns40ijhkpc15x8l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/navorski"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/navorski"; sha256 = "0dnzpsm0ya8rbcik5wp378hc9k7gjb3gwmkqqj889c38q5cdwsx7"; name = "navorski"; }; @@ -39635,7 +39973,7 @@ ncl-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ncl-mode"; - version = "20150525.1129"; + version = "20150525.1229"; src = fetchFromGitHub { owner = "yyr"; repo = "ncl-mode"; @@ -39643,7 +39981,7 @@ sha256 = "0gbv5fv401z58ycbqlivqamf5kp3x6krhi36q7q0m4gvy448xz0n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ncl-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ncl-mode"; sha256 = "0hmd606xgapzbc79px9l1q6pphrhdzip495yprvg20xsdpmjlfw9"; name = "ncl-mode"; }; @@ -39656,7 +39994,7 @@ nclip = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "nclip"; - version = "20130617.1515"; + version = "20130617.1615"; src = fetchFromGitHub { owner = "maio"; repo = "nclip.el"; @@ -39664,7 +40002,7 @@ sha256 = "178gjv7kq97p9i4naxql7xabvmchw5x8idkpyjqqky3b24v5wkis"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/nclip"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/nclip"; sha256 = "016jp1rqrf1baxlxbi3476m88a0l3r405dh6pmly519wm2k8pipw"; name = "nclip"; }; @@ -39677,7 +40015,7 @@ nemerle = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "nemerle"; - version = "20130328.946"; + version = "20130328.1046"; src = fetchFromGitHub { owner = "rsdn"; repo = "nemerle"; @@ -39685,7 +40023,7 @@ sha256 = "0xij6gqa6xmjz041vmi4k1xfp7bsp51vk4x6mdy4rv7556sznrrb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/nemerle"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/nemerle"; sha256 = "0698hbgk80w7wp0ssx9pl13aapm7rc6l3y2zydfkyqdfwy5y71v6"; name = "nemerle"; }; @@ -39698,7 +40036,7 @@ neotree = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "neotree"; - version = "20160306.930"; + version = "20160306.1030"; src = fetchFromGitHub { owner = "jaypei"; repo = "emacs-neotree"; @@ -39706,7 +40044,7 @@ sha256 = "1sf8yw1vg01r4969jk1x1k4nad4q7bf1fd8vnranxvhz9md34262"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/neotree"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/neotree"; sha256 = "05smm1xsn866lsrak0inn2qw6dvzy24lz6h7rvinlhk5w27xva06"; name = "neotree"; }; @@ -39719,7 +40057,7 @@ netherlands-holidays = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "netherlands-holidays"; - version = "20150202.1017"; + version = "20150202.1117"; src = fetchFromGitHub { owner = "abo-abo"; repo = "netherlands-holidays"; @@ -39727,7 +40065,7 @@ sha256 = "1kkflj2qnrn6kzh1l6bjl5n5507qilb22pqj3h0f2m6hfyn0sw5z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/netherlands-holidays"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/netherlands-holidays"; sha256 = "181linsbg5wrx1z7zbj3in2d3d4zd2v7drspkj0b6l0c5yfxwayf"; name = "netherlands-holidays"; }; @@ -39740,7 +40078,7 @@ never-comment = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "never-comment"; - version = "20140104.1607"; + version = "20140104.1707"; src = fetchFromGitHub { owner = "To1ne"; repo = "never-comment"; @@ -39748,7 +40086,7 @@ sha256 = "0p00mmid04pfsna4ify3cy0b9lx431q1r5h772hihsg4f1rs2ppy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/never-comment"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/never-comment"; sha256 = "0sn8y57895bfpgiynnj4m9b3x3dbb9v5fwkcwmf9jr39dbf98v6s"; name = "never-comment"; }; @@ -39761,7 +40099,7 @@ newlisp-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "newlisp-mode"; - version = "20160226.945"; + version = "20160226.1045"; src = fetchFromGitHub { owner = "kosh04"; repo = "newlisp-mode"; @@ -39769,7 +40107,7 @@ sha256 = "1zzsfyqwj1k4zh30gl491ipavr9pp9djwjq3zz2q3xh7jys68w8r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/newlisp-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/newlisp-mode"; sha256 = "0i2d2gyzzvpr5qm2cqzbn9my21lfb66315hg9fj86ac5pkc25zrd"; name = "newlisp-mode"; }; @@ -39782,7 +40120,7 @@ nexus = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "nexus"; - version = "20140114.705"; + version = "20140114.805"; src = fetchFromGitHub { owner = "juergenhoetzel"; repo = "emacs-nexus"; @@ -39790,7 +40128,7 @@ sha256 = "1xnx6v49i6abzbhq4fl4bp9d0pp9gby40splpcj211xsb8yiry27"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/nexus"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/nexus"; sha256 = "1mdphgsqg6n4hryr53rk42z58vfv0g5wkar5ipanr4h4iclkf5vd"; name = "nexus"; }; @@ -39803,7 +40141,7 @@ nginx-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "nginx-mode"; - version = "20150824.1611"; + version = "20150824.1711"; src = fetchFromGitHub { owner = "ajc"; repo = "nginx-mode"; @@ -39811,7 +40149,7 @@ sha256 = "08bpyk0brx0x2l0y8hn8zpkaxb2ndmxz22kzxxypj6hdz303wf38"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/nginx-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/nginx-mode"; sha256 = "07k17m64zhv6gik8v4n73d8l1k6fsp4qp8cl94r384ny0187y65c"; name = "nginx-mode"; }; @@ -39824,7 +40162,7 @@ niceify-info = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "niceify-info"; - version = "20160416.744"; + version = "20160416.844"; src = fetchFromGitHub { owner = "aaron-em"; repo = "niceify-info.el"; @@ -39832,7 +40170,7 @@ sha256 = "0hgrf628ris94pmvmgibkq6zmwrqkv9q70c5a2gsbdpqmfikj8m1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/niceify-info"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/niceify-info"; sha256 = "1s9c8yxbab9zl5jx38alwa2hpp4zj5cb9a5gfm3x09jf3iw768bl"; name = "niceify-info"; }; @@ -39845,7 +40183,7 @@ niflheim-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "niflheim-theme"; - version = "20150630.1021"; + version = "20150630.1121"; src = fetchFromGitHub { owner = "niflheim-theme"; repo = "emacs"; @@ -39853,7 +40191,7 @@ sha256 = "147vw3qlsply5h8cjmjzqr5dv9jzf9xlmhjnmcpyb1r7krh1l8xm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/niflheim-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/niflheim-theme"; sha256 = "1dipxwaar7rghmz7s733v035vrbijcg1dla9f7cld1gkgiq9iq36"; name = "niflheim-theme"; }; @@ -39866,15 +40204,15 @@ nim-mode = callPackage ({ commenter, company, emacs, epc, fetchFromGitHub, fetchurl, flycheck, let-alist, lib, melpaBuild }: melpaBuild { pname = "nim-mode"; - version = "20160418.218"; + version = "20160507.516"; src = fetchFromGitHub { owner = "nim-lang"; repo = "nim-mode"; - rev = "78eb58a3d8d857ba41dbfe7afd745b5c6e612a55"; - sha256 = "0dmh04kss6krp2nz6i43k2ii7glpwgcw12n5mvd1k20bhp1dybm1"; + rev = "199ca3288d44cd46e586a4a737d646197016b448"; + sha256 = "0kmqxcvj3mflv44s7qzsq6y0lzbccl1ny5r5d45ncyg0hgfvipv2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/nim-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/nim-mode"; sha256 = "1kzn3kkkj7jzs7fqhvib196sl3vp7kbhb4icqzmvvmv366lkaib6"; name = "nim-mode"; }; @@ -39887,15 +40225,15 @@ ninja-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ninja-mode"; - version = "20141203.2359"; + version = "20141204.59"; src = fetchFromGitHub { owner = "martine"; repo = "ninja"; - rev = "aa79fbe25f55e4eeac384d322df8a44bbeb4fe23"; - sha256 = "0yfm81355mz4m9xjlvxfjp60s9iibcd6268s3nqi54kgxn3m82m6"; + rev = "63a8584b069a32b871237fc80dcb4c397b863ef7"; + sha256 = "14iwzyxm0g45315n1761a5q6h28q54cy2yh5hb5070s6fcbkqp09"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ninja-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ninja-mode"; sha256 = "1m7f25sbkz8k343giczrnw2ah5i3mk4c7csi8kk9x5y16030asik"; name = "ninja-mode"; }; @@ -39908,15 +40246,15 @@ nix-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "nix-mode"; - version = "20151026.515"; + version = "20160502.937"; src = fetchFromGitHub { owner = "NixOS"; repo = "nix"; - rev = "c879a20850f2035cd87b1693da26cadf30affe11"; - sha256 = "03rk3g52d6kkn5i6g4vx8fl169jcrww66dyzs3ajdcgf8j3hnk2w"; + rev = "75d2492f20dc513337de3ef2d45e1d5c68c7dff8"; + sha256 = "08nzcsn33hchm1bg814karc8f7amma5zvj4mrrzmhmxh0541w07w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/nix-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/nix-mode"; sha256 = "00rqawi8zs2x79c91gmk0anfyqbwalvfwmpak20i11lfzmdsza1s"; name = "nix-mode"; }; @@ -39929,7 +40267,7 @@ nix-sandbox = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "nix-sandbox"; - version = "20160223.753"; + version = "20160223.853"; src = fetchFromGitHub { owner = "travisbhartwell"; repo = "nix-emacs"; @@ -39937,7 +40275,7 @@ sha256 = "1r2qbd19kkqf70gq04jfpsrap75qcy359k3ian9rhapi8cj0n23w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/nix-sandbox"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/nix-sandbox"; sha256 = "13zr0jbc6if2wvyiplay2gkd5548imfm38x1qy1dw6m2vhbzwp0k"; name = "nix-sandbox"; }; @@ -39950,7 +40288,7 @@ nixos-options = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "nixos-options"; - version = "20160209.1241"; + version = "20160209.1341"; src = fetchFromGitHub { owner = "travisbhartwell"; repo = "nix-emacs"; @@ -39958,7 +40296,7 @@ sha256 = "1r2qbd19kkqf70gq04jfpsrap75qcy359k3ian9rhapi8cj0n23w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/nixos-options"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/nixos-options"; sha256 = "1m3jipidk10zj68rzjbacgjlal31jf80gqjxlgj4qs8lm671gxmm"; name = "nixos-options"; }; @@ -39971,7 +40309,7 @@ nm = callPackage ({ company, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, notmuch, peg }: melpaBuild { pname = "nm"; - version = "20151110.1310"; + version = "20151110.1410"; src = fetchFromGitHub { owner = "tjim"; repo = "nevermore"; @@ -39979,7 +40317,7 @@ sha256 = "1skbjmyikzyiic470sngskggs05r35m8vzm69wbmrjapczginnak"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/nm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/nm"; sha256 = "004rjbrkc7jalbd8ih170sy97w2g16k3whqrqwywh09pzrzb05kw"; name = "nm"; }; @@ -39992,7 +40330,7 @@ nnir-est = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "nnir-est"; - version = "20140301.802"; + version = "20140301.902"; src = fetchFromGitHub { owner = "kawabata"; repo = "nnir-est"; @@ -40000,7 +40338,7 @@ sha256 = "0gzxcq0gki89dz9ad26683zhq1nif3wdz185cdplwy68z9szbdx1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/nnir-est"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/nnir-est"; sha256 = "04ih47pipph8sl84nv6ka4xlpd8vhnpwhs5cchgk5k1zv3l5scxv"; name = "nnir-est"; }; @@ -40013,7 +40351,7 @@ noccur = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "noccur"; - version = "20150514.1620"; + version = "20150514.1720"; src = fetchFromGitHub { owner = "NicolasPetton"; repo = "noccur.el"; @@ -40021,7 +40359,7 @@ sha256 = "0wk86gm0by9c8mfbvydz5va07qd30n6wx067inqfa7wjffaq0xr7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/noccur"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/noccur"; sha256 = "0a8l50v09bgap7rsls808k9wyjpjbcxaffsvz7hh9rw9s7m5fz5g"; name = "noccur"; }; @@ -40034,7 +40372,7 @@ noctilux-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "noctilux-theme"; - version = "20150723.947"; + version = "20150723.1047"; src = fetchFromGitHub { owner = "sjrmanning"; repo = "noctilux-theme"; @@ -40042,7 +40380,7 @@ sha256 = "1a1pp3sd5g4wkhywb5jfchcdpjsjb0iyhk2sxvd0gpc4kk4zh6xs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/noctilux-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/noctilux-theme"; sha256 = "15ymyv3rq0n31d8h0ry0l4w4r5a8as0q63ajm9wb6yrxxjl1imfp"; name = "noctilux-theme"; }; @@ -40055,7 +40393,7 @@ node-resolver = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "node-resolver"; - version = "20140930.1223"; + version = "20140930.1323"; src = fetchFromGitHub { owner = "meandavejustice"; repo = "node-resolver.el"; @@ -40063,7 +40401,7 @@ sha256 = "1cgmq00ackabwcl4h0n2bb8y08wz0ir5rzca2q3sk4asly6d02m7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/node-resolver"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/node-resolver"; sha256 = "1ng4rgm8f745fajqnbjhi2rshvn6icwdpbh5dzpzhim1w9kb3bhh"; name = "node-resolver"; }; @@ -40076,7 +40414,7 @@ nodejs-repl = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "nodejs-repl"; - version = "20151229.803"; + version = "20151229.903"; src = fetchFromGitHub { owner = "abicky"; repo = "nodejs-repl.el"; @@ -40084,7 +40422,7 @@ sha256 = "03vcs458rcn1hgfvmgmijadjvri7zlh2z4lxgaplzfnga13mapym"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/nodejs-repl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/nodejs-repl"; sha256 = "0rvhhrsw87kfrwdhm8glq6b3nr0v90ivm7fcc0da4yc2jmcyk907"; name = "nodejs-repl"; }; @@ -40097,7 +40435,7 @@ noflet = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "noflet"; - version = "20141102.854"; + version = "20141102.954"; src = fetchFromGitHub { owner = "nicferrier"; repo = "emacs-noflet"; @@ -40105,7 +40443,7 @@ sha256 = "0g70gnmfi8n24jzfci9nrj0n9bn1qig7b8f9f325rin8h7x32ypf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/noflet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/noflet"; sha256 = "0vzamqb52n330mi6rydrd4ls8nbwh5s42fc2gs5y15zakp6mvhr3"; name = "noflet"; }; @@ -40117,14 +40455,14 @@ }) {}; nose = callPackage ({ fetchhg, fetchurl, lib, melpaBuild }: melpaBuild { pname = "nose"; - version = "20140520.1148"; + version = "20140520.1248"; src = fetchhg { url = "https://bitbucket.com/durin42/nosemacs"; rev = "194d7789bf79"; sha256 = "07bhzddaxdjd591xmg59yd657a1is0q515291jd83mjsmgq258bm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/nose"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/nose"; sha256 = "0l77hsmn3qk934ppdav1gy9sq48g0v1dzc5qy0rp9vv4yz2jx2jk"; name = "nose"; }; @@ -40136,14 +40474,14 @@ }) {}; notmuch = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: melpaBuild { pname = "notmuch"; - version = "20160416.740"; + version = "20160501.2011"; src = fetchgit { url = "git://git.notmuchmail.org/git/notmuch"; - rev = "1819d03c2744246ad4158c616969d4a911a988d6"; - sha256 = "07x3lg3hjsnb5wnlsikynabsrv2yqrys8xrhjjwiy265zhz3b0kc"; + rev = "124a67e96ecab5495c0f17b6875d53dfd67ff137"; + sha256 = "1wcshf7yi1ws2s2f1q7n04dqr5nysag88sp0d4nb1pjsxxmwkkg5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/notmuch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/notmuch"; sha256 = "173d1gf5rd4nbjwg91486ibg54n3qlpwgyvkcy4d30jm4vqwqrqv"; name = "notmuch"; }; @@ -40156,7 +40494,7 @@ notmuch-labeler = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, notmuch }: melpaBuild { pname = "notmuch-labeler"; - version = "20131230.1119"; + version = "20131230.1219"; src = fetchFromGitHub { owner = "DamienCassou"; repo = "notmuch-labeler"; @@ -40164,7 +40502,7 @@ sha256 = "1ss87vlp7625lnn2iah3rc1xfxcbpx4kmiww9n16jx073fs2rj18"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/notmuch-labeler"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/notmuch-labeler"; sha256 = "1c0cbkk5k8ps01xl63a0xa2adkqaj0znw8qs8ca4ai8v1420bpl0"; name = "notmuch-labeler"; }; @@ -40176,13 +40514,13 @@ }) {}; novice-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "novice-plus"; - version = "20151231.1740"; + version = "20151231.1840"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/novice+.el"; sha256 = "0mmdf3z9299hbs3wr8hqgpmg74sb2xm0rxyh38sjcqmk8f310rqh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/novice+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/novice+"; sha256 = "0r4w4c6y4fny8k0kipzqjsn7idwbi9jq6x9yw51d41ra3pkpvfzf"; name = "novice-plus"; }; @@ -40195,7 +40533,7 @@ noxml-fold = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "noxml-fold"; - version = "20151216.1021"; + version = "20151216.1121"; src = fetchFromGitHub { owner = "paddymcall"; repo = "noXML-fold"; @@ -40203,7 +40541,7 @@ sha256 = "0jahr1380919p272srym1pp16ifdz69fn1m45ppglm54q4a741d8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/noxml-fold"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/noxml-fold"; sha256 = "11dninxxwhflf2qrmvwmrryspd9j6m95kdlmyx59ykqvw8j0siqc"; name = "noxml-fold"; }; @@ -40216,7 +40554,7 @@ nrepl-eval-sexp-fu = callPackage ({ fetchFromGitHub, fetchurl, highlight, lib, melpaBuild, smartparens, thingatpt ? null }: melpaBuild { pname = "nrepl-eval-sexp-fu"; - version = "20140311.541"; + version = "20140311.641"; src = fetchFromGitHub { owner = "samaaron"; repo = "nrepl-eval-sexp-fu"; @@ -40224,7 +40562,7 @@ sha256 = "1nwj1ax2qmmlab4lik0b7japhqd424d0rb995dfv89p99gp8vmvc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/nrepl-eval-sexp-fu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/nrepl-eval-sexp-fu"; sha256 = "17g4nih9kz2483ylp651lwfxkvmaj7wpinpgnifwbciyrplfvx2j"; name = "nrepl-eval-sexp-fu"; }; @@ -40237,7 +40575,7 @@ nrepl-sync = callPackage ({ cider, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "nrepl-sync"; - version = "20140807.1054"; + version = "20140807.1154"; src = fetchFromGitHub { owner = "phillord"; repo = "lein-sync"; @@ -40245,7 +40583,7 @@ sha256 = "1129r3rzmfbl8nxjz71xnlyaszhhldawj467zbl36brdadp014n1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/nrepl-sync"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/nrepl-sync"; sha256 = "01b504b4d8rrhlf3sfq3kk9i222fch6jd5jbm02kqw20fgv6q3jd"; name = "nrepl-sync"; }; @@ -40258,7 +40596,7 @@ nsis-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "nsis-mode"; - version = "20150914.746"; + version = "20150914.846"; src = fetchFromGitHub { owner = "mattfidler"; repo = "nsis-mode"; @@ -40266,7 +40604,7 @@ sha256 = "1w80mbwlvmpd5ff7vy84z61b27klzh9z4wa6m2g7cy674fw4r1xp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/nsis-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/nsis-mode"; sha256 = "0pc047ryw906sz5mv0awvl67kh20prsgx6fbh0j1qm0cali2792l"; name = "nsis-mode"; }; @@ -40279,7 +40617,7 @@ nu-mode = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild, undo-tree }: melpaBuild { pname = "nu-mode"; - version = "20150413.1515"; + version = "20150413.1615"; src = fetchFromGitHub { owner = "pyluyten"; repo = "emacs-nu"; @@ -40287,7 +40625,7 @@ sha256 = "0nbmpnljl0wdkwmxzg6lqd3mand9w043qmwp727hb84gxy0j4dib"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/nu-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/nu-mode"; sha256 = "0nzv3p62k8yyyww6idlxyi94q4d07nis7ydypar8d01jfqlrybkn"; name = "nu-mode"; }; @@ -40300,7 +40638,7 @@ number = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "number"; - version = "20141127.1204"; + version = "20141127.1304"; src = fetchFromGitHub { owner = "chrisdone"; repo = "number"; @@ -40308,7 +40646,7 @@ sha256 = "045m83rdqryjpqh6y9s6x0yf9fw9xrwmxbm4qgg8ka164x9szv0n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/number"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/number"; sha256 = "1nwcdv5ibirxx3sqadh6mnpj40ni3wna7wnjh343mx38dk2dzncf"; name = "number"; }; @@ -40321,7 +40659,7 @@ nummm-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "nummm-mode"; - version = "20131117.414"; + version = "20131117.514"; src = fetchFromGitHub { owner = "agpchil"; repo = "nummm-mode"; @@ -40329,7 +40667,7 @@ sha256 = "1i0yymsx8kin28bkrgwkk9ngsmjh0gh5j4hb0k03bq4fy799f2xx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/nummm-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/nummm-mode"; sha256 = "10khhc6q0zjzrhsv4fgfdbs7qcwi1bgkwq4yqzidqcdndsailyh0"; name = "nummm-mode"; }; @@ -40342,7 +40680,7 @@ nvm = callPackage ({ dash, dash-functional, f, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "nvm"; - version = "20151113.255"; + version = "20151113.355"; src = fetchFromGitHub { owner = "rejeep"; repo = "nvm.el"; @@ -40350,7 +40688,7 @@ sha256 = "0prag0ks511ifa5mdpqmizp5n8190dxp4vdr81ld9w9xv7migpd7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/nvm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/nvm"; sha256 = "03gy7wavc2q02lnr9pmp3l1pn0lzbdq0kwnmg9fvklmq6r6n3x34"; name = "nvm"; }; @@ -40363,15 +40701,15 @@ nyan-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "nyan-mode"; - version = "20160425.1937"; + version = "20160429.1623"; src = fetchFromGitHub { owner = "TeMPOraL"; repo = "nyan-mode"; - rev = "95034cefb34df3b11a547e75a4b85c423502341d"; - sha256 = "1gxwss5rr4j6pv74fadmvnhdzlhk839am15cr9bj4qm47vrr98jl"; + rev = "b5db3a612bba35c8f54f44c300ebc879db6b3288"; + sha256 = "199ii1658k4sp5krha77n9l5jblyvnvvvr28g2nbc74lfybckjwq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/nyan-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/nyan-mode"; sha256 = "1z2wnsbjllqa533g1ab5cgbv3d9hjix7fsd7z9c45nqh5cmadmyv"; name = "nyan-mode"; }; @@ -40384,7 +40722,7 @@ nyan-prompt = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "nyan-prompt"; - version = "20140810.8"; + version = "20140810.108"; src = fetchFromGitHub { owner = "PuercoPop"; repo = "nyan-prompt"; @@ -40392,7 +40730,7 @@ sha256 = "0bgspjy8h3d7v12sfjnd2ghj4183pdf0z48g5xs129jwd3nycykp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/nyan-prompt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/nyan-prompt"; sha256 = "1s0qyhpfpncsv9qfxy07rbp4gv8pp5xzb48rbd3r14nkjlnylnfb"; name = "nyan-prompt"; }; @@ -40405,7 +40743,7 @@ o-blog = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "o-blog"; - version = "20151202.1739"; + version = "20151202.1839"; src = fetchFromGitHub { owner = "renard"; repo = "o-blog"; @@ -40413,7 +40751,7 @@ sha256 = "0xs6787a4v7djgd2zz2v1pk14x27mg2ganz30j9f0gdiai7da6ch"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/o-blog"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/o-blog"; sha256 = "08grkyvg27wd5232q3y8p0v7higfq7bmsdzmvhja96v6qy2xsbja"; name = "o-blog"; }; @@ -40426,7 +40764,7 @@ oauth = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "oauth"; - version = "20130127.1951"; + version = "20130127.2051"; src = fetchFromGitHub { owner = "psanford"; repo = "emacs-oauth"; @@ -40434,7 +40772,7 @@ sha256 = "058dyk1c3iw0ip8n8rfpskvqiriqilpclkzc18x73msp5svrh3lj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/oauth"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/oauth"; sha256 = "18z3i5brxm60z373cwx2sa3hx7v38a5s62gbs9b0lxb20ah4p9rz"; name = "oauth"; }; @@ -40447,14 +40785,14 @@ ob-axiom = callPackage ({ axiom-environment, emacs, fetchhg, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ob-axiom"; - version = "20160310.1553"; + version = "20160310.1653"; src = fetchhg { url = "https://bitbucket.com/pdo/axiom-environment"; rev = "bc294e47f51c"; sha256 = "0z15n7cpprbhiamq26240g5bqsiw5mgyzdisi7j6hpybyk2zyl9q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ob-axiom"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ob-axiom"; sha256 = "12cmzhgzk8314y6nvzdjwidalccz6h440lil83c1h4lz4ddlwmf6"; name = "ob-axiom"; }; @@ -40467,7 +40805,7 @@ ob-browser = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org }: melpaBuild { pname = "ob-browser"; - version = "20150101.910"; + version = "20150101.1010"; src = fetchFromGitHub { owner = "krisajenkins"; repo = "ob-browser"; @@ -40475,7 +40813,7 @@ sha256 = "1nzli8wk3nd05j2z2fw511857qbawirhg8mfw21wqclkz8zqn813"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ob-browser"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ob-browser"; sha256 = "1yqbzmmazamgf8fi8ipq14ffm8h1pp5d2lkflbxjsagdq61hirxm"; name = "ob-browser"; }; @@ -40488,7 +40826,7 @@ ob-coffee = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org }: melpaBuild { pname = "ob-coffee"; - version = "20160415.2236"; + version = "20160415.2336"; src = fetchFromGitHub { owner = "zweifisch"; repo = "ob-coffee"; @@ -40496,7 +40834,7 @@ sha256 = "01l8zvnfpc1vihnpqj75xlvjkk2hkvxpb1872jdzv2k1na2ajfxm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ob-coffee"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ob-coffee"; sha256 = "16k8r9rqz4mayxl85pjdfsrz43k2hwcf8k7aff8wnic0ldzp6ivf"; name = "ob-coffee"; }; @@ -40509,7 +40847,7 @@ ob-cypher = callPackage ({ cypher-mode, dash, dash-functional, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "ob-cypher"; - version = "20150224.2037"; + version = "20150224.2137"; src = fetchFromGitHub { owner = "zweifisch"; repo = "ob-cypher"; @@ -40517,7 +40855,7 @@ sha256 = "1xbczyqfqdig5w6jvx2kg57mk16sbiz5ysv445v83wqk0sz6nc9n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ob-cypher"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ob-cypher"; sha256 = "1ygmx0rjvxjl8hifkkwrkk9gpsmdsk6ndb6pg7y78p8hfp5jpyq3"; name = "ob-cypher"; }; @@ -40530,7 +40868,7 @@ ob-diagrams = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ob-diagrams"; - version = "20160407.737"; + version = "20160407.837"; src = fetchFromGitHub { owner = "bergey"; repo = "org-babel-diagrams"; @@ -40538,7 +40876,7 @@ sha256 = "0kx95lvkvg6h6lhs9knlp8rwi05y8y0i8w8vs7mwm378syls0qk0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ob-diagrams"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ob-diagrams"; sha256 = "1r1p9l61az1jb5m4k2dwnkp9j8xlcb588gq4mcg796vnbdscfcy2"; name = "ob-diagrams"; }; @@ -40551,7 +40889,7 @@ ob-elixir = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org }: melpaBuild { pname = "ob-elixir"; - version = "20151021.647"; + version = "20151021.747"; src = fetchFromGitHub { owner = "zweifisch"; repo = "ob-elixir"; @@ -40559,7 +40897,7 @@ sha256 = "0qknm1h2ijnzs1km51hqwpnv5083m9ngi3nbxd90r7d6vva5fhhk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ob-elixir"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ob-elixir"; sha256 = "1l5b9hww2vmqnjlsd6lbjpz9walck82ngang1amfnk4xn6d0gdhi"; name = "ob-elixir"; }; @@ -40572,7 +40910,7 @@ ob-go = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ob-go"; - version = "20160318.1452"; + version = "20160318.1552"; src = fetchFromGitHub { owner = "pope"; repo = "ob-go"; @@ -40580,7 +40918,7 @@ sha256 = "1pa7zclci87rd4fx731z37pdbdjabmknbr0xmdk1g92g0hjhk2rb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ob-go"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ob-go"; sha256 = "09d8jrzijf8gr08615rdmf366zgip43dxvyihy0yzhk7j0p3iahj"; name = "ob-go"; }; @@ -40593,7 +40931,7 @@ ob-http = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "ob-http"; - version = "20160415.2332"; + version = "20160416.32"; src = fetchFromGitHub { owner = "zweifisch"; repo = "ob-http"; @@ -40601,7 +40939,7 @@ sha256 = "00mnpnlsd774z87ziqmaq9h4rbxmf197cm2kk4v6s15rs3np617m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ob-http"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ob-http"; sha256 = "0b7ghz9pqbyn3b52cpmnwa2wnd4svj23p6gc48ybwzwiid42wiss"; name = "ob-http"; }; @@ -40614,7 +40952,7 @@ ob-ipython = callPackage ({ dash, dash-functional, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "ob-ipython"; - version = "20160424.1505"; + version = "20160424.1605"; src = fetchFromGitHub { owner = "gregsexton"; repo = "ob-ipython"; @@ -40622,7 +40960,7 @@ sha256 = "071ma803l6ixg12brbc8p2bxnvl2skmr8r913pz07qh0n8k83zqf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ob-ipython"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ob-ipython"; sha256 = "06llf365k8m81ljmlajqvxlh84qg6h0flp3m6gb0zx71xilvw186"; name = "ob-ipython"; }; @@ -40635,7 +40973,7 @@ ob-kotlin = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org }: melpaBuild { pname = "ob-kotlin"; - version = "20150312.814"; + version = "20150312.914"; src = fetchFromGitHub { owner = "zweifisch"; repo = "ob-kotlin"; @@ -40643,7 +40981,7 @@ sha256 = "01cjwg27m0iqndkwwl0v5w8vvk270xvi81za3y5hyrmb7dq6bfy7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ob-kotlin"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ob-kotlin"; sha256 = "19g4s9dnipg9aa360mp0affmnslm6h7byg595rnaz6rz25a3qdpx"; name = "ob-kotlin"; }; @@ -40656,7 +40994,7 @@ ob-lfe = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org }: melpaBuild { pname = "ob-lfe"; - version = "20150701.855"; + version = "20150701.955"; src = fetchFromGitHub { owner = "zweifisch"; repo = "ob-lfe"; @@ -40664,7 +41002,7 @@ sha256 = "1mk7qcf4svf4yk4mimcyhbw5imq3zps2vh2zzq9gwjcn17jnplhn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ob-lfe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ob-lfe"; sha256 = "11cpaxk9wb27b9zhyns75dqpds4gh3cbjcvia4p2bnvmbm8lz4y8"; name = "ob-lfe"; }; @@ -40677,7 +41015,7 @@ ob-lua = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org }: melpaBuild { pname = "ob-lua"; - version = "20160411.2224"; + version = "20160411.2324"; src = fetchFromGitHub { owner = "stardiviner"; repo = "ob-lua"; @@ -40685,7 +41023,7 @@ sha256 = "11cdf5nfmn5cc1i4kqxq0hks8d19sf5rwavpfmz39xysbnr65s68"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ob-lua"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ob-lua"; sha256 = "13ailb285bs9sm9qmjrpq0wjk7sp3w019p94pzrwmzqf52y1dapg"; name = "ob-lua"; }; @@ -40698,7 +41036,7 @@ ob-mongo = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org }: melpaBuild { pname = "ob-mongo"; - version = "20130718.932"; + version = "20130718.1032"; src = fetchFromGitHub { owner = "krisajenkins"; repo = "ob-mongo"; @@ -40706,7 +41044,7 @@ sha256 = "0qibnn908a59jyfslsnpjanbm85f8xw9zywsqsh37nv27ncbx0hr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ob-mongo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ob-mongo"; sha256 = "1cgmqsl5dzi8xy3sh5xsfkczl555fpd4q6kgsh9xkn74sz227907"; name = "ob-mongo"; }; @@ -40716,10 +41054,31 @@ license = lib.licenses.free; }; }) {}; + ob-php = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org }: + melpaBuild { + pname = "ob-php"; + version = "20160505.519"; + src = fetchFromGitHub { + owner = "stardiviner"; + repo = "ob-php"; + rev = "fd30c5e945a08b605725cf51808b3512ca885777"; + sha256 = "02vmy3nnk4yyjbp3r7zzv9sb3frv7kbj4a2a855iqa0isp8nhyfi"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ob-php"; + sha256 = "0n6m6rpd0rsk6idhxs9qf5pb6p9ch2immczj5br7h5xf1bc7x2fp"; + name = "ob-php"; + }; + packageRequires = [ org ]; + meta = { + homepage = "https://melpa.org/#/ob-php"; + license = lib.licenses.free; + }; + }) {}; ob-prolog = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ob-prolog"; - version = "20150530.1137"; + version = "20150530.1237"; src = fetchFromGitHub { owner = "ljos"; repo = "ob-prolog"; @@ -40727,7 +41086,7 @@ sha256 = "14scbds1rlmii52i0zr3s0r1wmga7qysj63c2dpinhagxa36d51n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ob-prolog"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ob-prolog"; sha256 = "0ki8yd20yk5xwn0zpk06zjxzgrsf8paydif9n98svb9s2l9wrh1s"; name = "ob-prolog"; }; @@ -40740,7 +41099,7 @@ ob-redis = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org }: melpaBuild { pname = "ob-redis"; - version = "20160411.2213"; + version = "20160411.2313"; src = fetchFromGitHub { owner = "stardiviner"; repo = "ob-redis"; @@ -40748,7 +41107,7 @@ sha256 = "1f8qz5bwz5yd3clvjc0zw3yf9m9fh5vn2gil69ay1a2n00qwkq78"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ob-redis"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ob-redis"; sha256 = "1xsz4cc8cqx03ckpcwi7dc3l6v4c5mdbby37a9i0n5q6wd4r92mm"; name = "ob-redis"; }; @@ -40761,7 +41120,7 @@ ob-restclient = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, restclient }: melpaBuild { pname = "ob-restclient"; - version = "20160324.105"; + version = "20160324.205"; src = fetchFromGitHub { owner = "alf"; repo = "ob-restclient.el"; @@ -40769,7 +41128,7 @@ sha256 = "09zxf158sspwv7j0kjjxzlymxi9ax7xpk5d5fry2jljskgn17csv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ob-restclient"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ob-restclient"; sha256 = "0nv2wsqmpschym6ch8fr4a79hlnpz31jc8y2flsygaqj0annjkfk"; name = "ob-restclient"; }; @@ -40782,15 +41141,15 @@ ob-sagemath = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, s, sage-shell-mode }: melpaBuild { pname = "ob-sagemath"; - version = "20160414.852"; + version = "20160427.2235"; src = fetchFromGitHub { owner = "stakemori"; repo = "ob-sagemath"; - rev = "fec3fbabaef5f5d679ef1ccbbc39958a4d01b839"; - sha256 = "0hapjgzbd4s5jif8jdm9svl58h6a504gxc8jq57sibfcbwkjbfk4"; + rev = "da0b9b8c15398ca1d3e0b0671dd6ea3a1d41e7ae"; + sha256 = "0y8vc3p95mhpdg5mzdxxcpzxlhd7fmdsbs2b1bfklnnasvzbdfq7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ob-sagemath"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ob-sagemath"; sha256 = "02ispac1y4g7p7iyscf5p8lvp92ncrn6281jm9igyiny1w6hivy7"; name = "ob-sagemath"; }; @@ -40803,7 +41162,7 @@ ob-scala = callPackage ({ ensime, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ob-scala"; - version = "20160209.835"; + version = "20160209.935"; src = fetchFromGitHub { owner = "reactormonk"; repo = "ob-scala"; @@ -40811,7 +41170,7 @@ sha256 = "1ax78ggmzz4lmaw62j0cm8l0n60nyhp6c8f02mdszvv6vnpvyncm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ob-scala"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ob-scala"; sha256 = "1cjbdfxkj5rk164wrad7r470xynfjjaa1aj130zbw9zmn36m6lza"; name = "ob-scala"; }; @@ -40824,7 +41183,7 @@ ob-sml = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, sml-mode }: melpaBuild { pname = "ob-sml"; - version = "20130829.1343"; + version = "20130829.1443"; src = fetchFromGitHub { owner = "swannodette"; repo = "ob-sml"; @@ -40832,7 +41191,7 @@ sha256 = "0gymna48igcixrapjmg842pnlsshhw8zplxwyyn0x2yrma9fjyyg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ob-sml"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ob-sml"; sha256 = "04qvzhwjr8ipvq3znnhn0wbl4pbb1rwxi90iidavzk3phbkpaskn"; name = "ob-sml"; }; @@ -40842,10 +41201,31 @@ license = lib.licenses.free; }; }) {}; + ob-swift = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org }: + melpaBuild { + pname = "ob-swift"; + version = "20151205.211"; + src = fetchFromGitHub { + owner = "zweifisch"; + repo = "ob-swift"; + rev = "f376af0d86fb410e41289df59a0c2625954c9067"; + sha256 = "071rl0bvhwh5vqbl7n84shvzgqgwg2f5l9vb8wfs4y24hsqfgxmz"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ob-swift"; + sha256 = "19mcjfmijbajldm3jz8ij1x2p7d164mbq2ln6yb6iihxmdqnn2q4"; + name = "ob-swift"; + }; + packageRequires = [ org ]; + meta = { + homepage = "https://melpa.org/#/ob-swift"; + license = lib.licenses.free; + }; + }) {}; ob-translate = callPackage ({ fetchFromGitHub, fetchurl, google-translate, lib, melpaBuild, org }: melpaBuild { pname = "ob-translate"; - version = "20160411.324"; + version = "20160411.424"; src = fetchFromGitHub { owner = "krisajenkins"; repo = "ob-translate"; @@ -40853,7 +41233,7 @@ sha256 = "086z3smcfn5g599967vmxj3akppyqk9d64acm8zzj76zj29xfk1k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ob-translate"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ob-translate"; sha256 = "1hi0rxbyxvk9sbk2fy3kqw7l4lgri921vya1mn4i1q2i1979r2gz"; name = "ob-translate"; }; @@ -40866,7 +41246,7 @@ ob-typescript = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, org }: melpaBuild { pname = "ob-typescript"; - version = "20150804.730"; + version = "20150804.830"; src = fetchFromGitHub { owner = "lurdan"; repo = "ob-typescript"; @@ -40874,7 +41254,7 @@ sha256 = "1ycqdjqn5361pcnc95hxhjqd3y96cjjnaylrnzwhmacl38jm3vai"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ob-typescript"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ob-typescript"; sha256 = "1wpy928ndvc076jzi14f6k5fsw8had0pz7f1yjdqql4icszhqa0p"; name = "ob-typescript"; }; @@ -40887,7 +41267,7 @@ oberon = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "oberon"; - version = "20120715.409"; + version = "20120715.509"; src = fetchFromGitHub { owner = "emacsorphanage"; repo = "oberon"; @@ -40895,7 +41275,7 @@ sha256 = "16462cgq91jg7i97h440zss5vw2qkxgdy7gm148ns4djr2fchnf6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/oberon"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/oberon"; sha256 = "1wna7ld670r6ljdg5yx0ga0grbq1ma8q92gkari0d5czr7s9lggv"; name = "oberon"; }; @@ -40908,7 +41288,7 @@ objc-font-lock = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "objc-font-lock"; - version = "20141021.1322"; + version = "20141021.1422"; src = fetchFromGitHub { owner = "Lindydancer"; repo = "objc-font-lock"; @@ -40916,7 +41296,7 @@ sha256 = "138c1nm579vr37dqprqsakfkhs2awm3klzyyd6bv9rhkrysrpbqk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/objc-font-lock"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/objc-font-lock"; sha256 = "0njslpgdcph3p3gamrbd6pc04szks07yv4ij3p1l7p5dc2p06rs6"; name = "objc-font-lock"; }; @@ -40929,7 +41309,7 @@ obsidian-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "obsidian-theme"; - version = "20140420.1143"; + version = "20140420.1243"; src = fetchFromGitHub { owner = "mswift42"; repo = "obsidian-theme"; @@ -40937,7 +41317,7 @@ sha256 = "00v21iw9wwxap8jhg9035cp47fm5v2djmldq6nprv860m01xlwh1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/obsidian-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/obsidian-theme"; sha256 = "17ckshimdma6fqiis4kxczxkbrsfpm2a0b41m5f3qz3qlhcw2xgr"; name = "obsidian-theme"; }; @@ -40950,7 +41330,7 @@ occidental-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "occidental-theme"; - version = "20130312.1458"; + version = "20130312.1558"; src = fetchFromGitHub { owner = "olcai"; repo = "occidental-theme"; @@ -40958,7 +41338,7 @@ sha256 = "0pnliw02crqw8hbg088klz54z6s1ih8q2lcn9mq5f12xi752hxm8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/occidental-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/occidental-theme"; sha256 = "1ra5p8k96wvb04v69xm87jl4jlgi57v4jw2xxzkwbwxbydncnv0b"; name = "occidental-theme"; }; @@ -40971,7 +41351,7 @@ occur-context-resize = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "occur-context-resize"; - version = "20151227.2202"; + version = "20151227.2302"; src = fetchFromGitHub { owner = "dgtized"; repo = "occur-context-resize.el"; @@ -40979,7 +41359,7 @@ sha256 = "1v1c2481v2xgnw8kgbbqhqkdd41lzvki9hm3iypbf3n0jxz8nnzy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/occur-context-resize"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/occur-context-resize"; sha256 = "0sp5v4rwqgqdj26gdkrmjvkmbp4g6jq4lrn2c3zm8s2gq0s3l6ri"; name = "occur-context-resize"; }; @@ -40992,7 +41372,7 @@ occur-x = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "occur-x"; - version = "20130610.843"; + version = "20130610.943"; src = fetchFromGitHub { owner = "juan-leon"; repo = "occur-x"; @@ -41000,7 +41380,7 @@ sha256 = "1zj0xhvl5qx42injv0av4lyzd3jsjls1m368dqd2qnswhfw8wfn6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/occur-x"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/occur-x"; sha256 = "1xq1k9rq7k1zw90shbgiidwvcn0ys1d53q03b5mpvvfqhj4n0i1g"; name = "occur-x"; }; @@ -41013,7 +41393,7 @@ ocodo-svg-modelines = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, svg-mode-line-themes }: melpaBuild { pname = "ocodo-svg-modelines"; - version = "20150516.919"; + version = "20150516.1019"; src = fetchFromGitHub { owner = "ocodo"; repo = "ocodo-svg-modelines"; @@ -41021,7 +41401,7 @@ sha256 = "155gmls6cz3zf4lcj89kzb96y7k0glx0f659jg5z0skgxq79hf48"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ocodo-svg-modelines"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ocodo-svg-modelines"; sha256 = "0fa88ns70wsr9i9gf4zx3fvmn1a32mrjsda105n0cx6c965kfmay"; name = "ocodo-svg-modelines"; }; @@ -41034,15 +41414,15 @@ ocp-indent = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ocp-indent"; - version = "20150914.332"; + version = "20160429.234"; src = fetchFromGitHub { owner = "OCamlPro"; repo = "ocp-indent"; - rev = "267a6fdb9cac9a6afa1fe645e0a6bc54ff4f4168"; - sha256 = "00fm6xg3q7d0vrx5wdg9badv587g4v9k3szwj00wscn9jb0bjhd3"; + rev = "46e914b3511e4bb93b3428ef773d2208d684355b"; + sha256 = "0kjx68hk1svix237842maf91rhx7l4002yzq5hj33n4nfggqm09c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ocp-indent"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ocp-indent"; sha256 = "0wc4z9dsnnyr24n3vg1npvc3rm53av8bpbvrl8kldxxdiwgnbkjw"; name = "ocp-indent"; }; @@ -41055,7 +41435,7 @@ octicons = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "octicons"; - version = "20151031.2240"; + version = "20151031.2340"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-octicons"; @@ -41063,7 +41443,7 @@ sha256 = "0dp7dhmgrq078rjhpm1cr993qjqz7qgy2z4sn73qw6j55va7d9kw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/octicons"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/octicons"; sha256 = "02f37bvnc5qvkvfbyx5wp54nz71bqm747mq1p5361sx091lllkxk"; name = "octicons"; }; @@ -41076,7 +41456,7 @@ octopress = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "octopress"; - version = "20160123.1606"; + version = "20160123.1706"; src = fetchFromGitHub { owner = "aaronbieber"; repo = "octopress.el"; @@ -41084,7 +41464,7 @@ sha256 = "0p9ph62vnw1r9dbvrjyw356a9bjnzh0hglssi97dr0qd6cs8whf3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/octopress"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/octopress"; sha256 = "0zsir6chjvn5i1irmf5aj6mmb401c553r5wykq796sz7jnjhrjg0"; name = "octopress"; }; @@ -41097,7 +41477,7 @@ offlineimap = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "offlineimap"; - version = "20150916.658"; + version = "20150916.758"; src = fetchFromGitHub { owner = "jd"; repo = "offlineimap.el"; @@ -41105,7 +41485,7 @@ sha256 = "1bjrgj8klg7ly63vx90jpaih9virn02bhqi16p6z0mw36q1q7ysq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/offlineimap"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/offlineimap"; sha256 = "0nza7lrz7cn06njcblwh9hy3050j8ja4awbxx7jzv6nazjg7201b"; name = "offlineimap"; }; @@ -41118,7 +41498,7 @@ oldlace-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "oldlace-theme"; - version = "20150705.800"; + version = "20150705.900"; src = fetchFromGitHub { owner = "mswift42"; repo = "oldlace-theme"; @@ -41126,7 +41506,7 @@ sha256 = "0y9fxrsxp1158fyjp4f69r7g2s7b6nbxlsmsb8clwqc8pmmg2z82"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/oldlace-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/oldlace-theme"; sha256 = "1pxiqqh5x4wsayqgwplzvsbalbj44zvby7x0pijdvwcnsh74znj8"; name = "oldlace-theme"; }; @@ -41139,15 +41519,15 @@ olivetti = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "olivetti"; - version = "20160412.2322"; + version = "20160413.22"; src = fetchFromGitHub { owner = "rnkn"; repo = "olivetti"; - rev = "4095b761e12352a0862e6fadbc56483e7c756f21"; - sha256 = "1hx1yv0fd64832y15c2chz9d50hqs4ap5vry4x6745vify6mchlj"; + rev = "35654fe8959cf53f0beac69d8921b2d4f9a881d6"; + sha256 = "0mlklcgakcb2nafs25hpy31jwjd9rrrxc494b5kfcw3g5b3z8q40"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/olivetti"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/olivetti"; sha256 = "0fkvw2y8r4ww2ar9505xls44j0rcrxc884p5srf1q47011v69mhd"; name = "olivetti"; }; @@ -41160,7 +41540,7 @@ om-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "om-mode"; - version = "20140915.1610"; + version = "20140915.1710"; src = fetchFromGitHub { owner = "danielsz"; repo = "om-mode"; @@ -41168,7 +41548,7 @@ sha256 = "03szb2i2xk3nq578cz1drsddsbld03ryvykdfzmfvwcmlpaknvzb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/om-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/om-mode"; sha256 = "1q2h9wjnyg7wlk913px4vj1cxqynd6xfh9ind7kjyra436yw3l4j"; name = "om-mode"; }; @@ -41181,7 +41561,7 @@ omni-kill = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "omni-kill"; - version = "20150527.149"; + version = "20150527.249"; src = fetchFromGitHub { owner = "AdrieanKhisbe"; repo = "omni-kill.el"; @@ -41189,7 +41569,7 @@ sha256 = "1925mh47n4x9v780qp5l6cksl64v9mpyb87znsg93x6sxr0cvv4c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/omni-kill"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/omni-kill"; sha256 = "03kydl16rd9mnc1rnan2byqa6f70891fhcj16wkavl2r68rfj75k"; name = "omni-kill"; }; @@ -41202,7 +41582,7 @@ omni-log = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, ht, lib, melpaBuild, s }: melpaBuild { pname = "omni-log"; - version = "20150604.1238"; + version = "20150604.1338"; src = fetchFromGitHub { owner = "AdrieanKhisbe"; repo = "omni-log.el"; @@ -41210,7 +41590,7 @@ sha256 = "1nvgh9wvgswcs3r958b579rsx540xrhlnafc6cmcd63z6yck19w0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/omni-log"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/omni-log"; sha256 = "0c29243zq8r89ax4rxlmb8imag12icnldcb0q0xsnhjccw8lyw1r"; name = "omni-log"; }; @@ -41223,7 +41603,7 @@ omni-quotes = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, omni-log }: melpaBuild { pname = "omni-quotes"; - version = "20150604.1257"; + version = "20150604.1357"; src = fetchFromGitHub { owner = "AdrieanKhisbe"; repo = "omni-quotes.el"; @@ -41231,7 +41611,7 @@ sha256 = "1x8af8jv4n83sl4rgj0d2rpmw9g78rknm1h523f3b1a5x4kdvsz6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/omni-quotes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/omni-quotes"; sha256 = "0dqki0ibabs9cpcjvnh8lc2114x46i1xmnyjc6qqblfxa3ggdygs"; name = "omni-quotes"; }; @@ -41244,7 +41624,7 @@ omni-scratch = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "omni-scratch"; - version = "20151211.1059"; + version = "20151211.1159"; src = fetchFromGitHub { owner = "AdrieanKhisbe"; repo = "omni-scratch.el"; @@ -41252,7 +41632,7 @@ sha256 = "1icdk19vwihc8mn04yxl2brql2gssn3gxd5bv7ljdd6mn5hkw500"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/omni-scratch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/omni-scratch"; sha256 = "190dkqcw8xywzrq8a99w4rqi0y1h2aj23s84g2ln1sf7jaf6d6n9"; name = "omni-scratch"; }; @@ -41265,7 +41645,7 @@ omni-tags = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, pcre2el }: melpaBuild { pname = "omni-tags"; - version = "20150513.1253"; + version = "20150513.1353"; src = fetchFromGitHub { owner = "AdrieanKhisbe"; repo = "omni-tags.el"; @@ -41273,7 +41653,7 @@ sha256 = "1lvnkdrav7h15p8d5ayhfsjynllwp4br1vqxmw0ppxnlyq7337n5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/omni-tags"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/omni-tags"; sha256 = "133ww1jf14jbw02ssbx2a46mp52j18a2wwzb6x77azb0akmf1lzl"; name = "omni-tags"; }; @@ -41286,7 +41666,7 @@ omniref = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "omniref"; - version = "20160225.1624"; + version = "20160225.1724"; src = fetchFromGitHub { owner = "dotemacs"; repo = "omniref.el"; @@ -41294,7 +41674,7 @@ sha256 = "0d6kjggi2p937ydpvw3fr2cxy5vj46dmfqbkb7a9jdhnzxadnwh5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/omniref"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/omniref"; sha256 = "0lgw1knqppdg046zqx4m7nbzvsasr89wa9i4594hf46w1094dabj"; name = "omniref"; }; @@ -41307,7 +41687,7 @@ omnisharp = callPackage ({ auto-complete, cl-lib ? null, csharp-mode, dash, fetchFromGitHub, fetchurl, flycheck, json ? null, lib, melpaBuild, popup, s }: melpaBuild { pname = "omnisharp"; - version = "20151210.1314"; + version = "20151210.1414"; src = fetchFromGitHub { owner = "OmniSharp"; repo = "omnisharp-emacs"; @@ -41315,7 +41695,7 @@ sha256 = "1iq8yzjv7wb0jfi3lqqyx4n7whvb7xf8ls0q0w7pgsrsslrxbwcm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/omnisharp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/omnisharp"; sha256 = "0dwya22y92k7x2s223az1g8hmrpfmk1sgwbr9z47raaa8kd52iad"; name = "omnisharp"; }; @@ -41337,7 +41717,7 @@ omtose-phellack-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "omtose-phellack-theme"; - version = "20160412.628"; + version = "20160412.728"; src = fetchFromGitHub { owner = "franksn"; repo = "omtose-phellack-theme"; @@ -41345,7 +41725,7 @@ sha256 = "01cssk6dxinfy1h431cx1yq5nbk0pc5j0h3iir2anzz1kfzbzilz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/omtose-phellack-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/omtose-phellack-theme"; sha256 = "09nyc7sdhzy4vmngzdj6r7cv2nbbwqlcyyi2mcg5a8lml4f6fj5i"; name = "omtose-phellack-theme"; }; @@ -41358,7 +41738,7 @@ on-parens = callPackage ({ dash, emacs, evil, fetchFromGitHub, fetchurl, lib, melpaBuild, smartparens }: melpaBuild { pname = "on-parens"; - version = "20150702.1706"; + version = "20150702.1806"; src = fetchFromGitHub { owner = "willghatch"; repo = "emacs-on-parens"; @@ -41366,7 +41746,7 @@ sha256 = "1616bdvrf1bawcqgj7balbxaw26waw81gxiw7yspnvpyb009j66y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/on-parens"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/on-parens"; sha256 = "19kyzpkgfl0ipbcgnl8fbfbapnfdxr8w9i7prfkm6rjp6amxyqab"; name = "on-parens"; }; @@ -41379,7 +41759,7 @@ on-screen = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "on-screen"; - version = "20160302.350"; + version = "20160302.450"; src = fetchFromGitHub { owner = "michael-heerdegen"; repo = "on-screen.el"; @@ -41387,7 +41767,7 @@ sha256 = "1rrby3mbh24qd43nsb3ymcrjxh1cz6iasf1gv0a8fmivmb4f7dyz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/on-screen"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/on-screen"; sha256 = "104jisc2bckzrajxlvj1cfx1drnjj7jhqjblvm89ry32xdnjxmqb"; name = "on-screen"; }; @@ -41400,7 +41780,7 @@ one-time-pad-encrypt = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "one-time-pad-encrypt"; - version = "20160329.1013"; + version = "20160329.1113"; src = fetchFromGitHub { owner = "garvinguan"; repo = "emacs-one-time-pad"; @@ -41408,7 +41788,7 @@ sha256 = "0g2hvpnmgyy1k393prv97nqwlqc58nqf71hkrmaijw0cyy9q03nz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/one-time-pad-encrypt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/one-time-pad-encrypt"; sha256 = "0aa7qcii7yf4527nhlwwp0hbhamhyp2xg0fsscnq2m28l5d5kmn6"; name = "one-time-pad-encrypt"; }; @@ -41420,13 +41800,13 @@ }) {}; oneonone = callPackage ({ fetchurl, hexrgb, lib, melpaBuild }: melpaBuild { pname = "oneonone"; - version = "20151231.1741"; + version = "20151231.1841"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/oneonone.el"; sha256 = "05njigqi9061d34530d76kwsdzqgk9qxnwhn9xis64w59f5nzf1h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/oneonone"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/oneonone"; sha256 = "0v4nvhzgq97zbi18jd3ds57yh1fpv57b2a1cd7r8jbxwaaz3gpg9"; name = "oneonone"; }; @@ -41439,7 +41819,7 @@ opam = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "opam"; - version = "20150719.720"; + version = "20150719.820"; src = fetchFromGitHub { owner = "lunaryorn"; repo = "opam.el"; @@ -41447,7 +41827,7 @@ sha256 = "1yqrp9icci5snp1485wb6y8mr2hjp9006ahch58lvmnq98bn7j45"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/opam"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/opam"; sha256 = "004r93nn1ranvxkcc0y5m3p8gh4axgghgnsvim38nc1sqda5h6xa"; name = "opam"; }; @@ -41459,13 +41839,13 @@ }) {}; open-junk-file = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "open-junk-file"; - version = "20130131.120"; + version = "20160506.1924"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/open-junk-file.el"; - sha256 = "1vjmgayksdgg54b46aqmvhd7a9arjx9p3jyrjs2z9262f6r288lj"; + sha256 = "1qvvsk3mv98fw3fhs49pjj9ay5mgslzjyv5frkacx3bm56rkbf60"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/open-junk-file"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/open-junk-file"; sha256 = "0ybycprs5di9niai4hbmfq4xdacfgrzf1mwq1aj1hi53phl8l4di"; name = "open-junk-file"; }; @@ -41478,7 +41858,7 @@ opencl-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "opencl-mode"; - version = "20160220.1109"; + version = "20160220.1209"; src = fetchFromGitHub { owner = "salmanebah"; repo = "opencl-mode"; @@ -41486,7 +41866,7 @@ sha256 = "094r6fx1s76m8anqqg2qrddidn1dp08kmv8p8md27yy9mm49d91n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/opencl-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/opencl-mode"; sha256 = "1g351wiaycwmg1bnf4s2mdnc3lb2ml5l54g19184xqssfqlx7y79"; name = "opencl-mode"; }; @@ -41499,7 +41879,7 @@ openstack-cgit-browse-file = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "openstack-cgit-browse-file"; - version = "20130819.427"; + version = "20130819.527"; src = fetchFromGitHub { owner = "chmouel"; repo = "openstack-cgit-browse-file"; @@ -41507,7 +41887,7 @@ sha256 = "0086pfk4pq6xmknk7a42fihcjgzkcplqqc1rk9fhwmn9j7djbq70"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/openstack-cgit-browse-file"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/openstack-cgit-browse-file"; sha256 = "05dl28a4npnnzzipypfcqb21sdww715lwji2xnsabx3fb1h1w5jl"; name = "openstack-cgit-browse-file"; }; @@ -41519,14 +41899,14 @@ }) {}; openwith = callPackage ({ fetchhg, fetchurl, lib, melpaBuild }: melpaBuild { pname = "openwith"; - version = "20120531.1636"; + version = "20120531.1736"; src = fetchhg { url = "https://bitbucket.com/jpkotta/openwith"; rev = "aeb78782ec87"; sha256 = "1wl6gnxsyhaad4cl9bxjc0qbc5jzvlwbwjbajs0n1s6qr07d6r01"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/openwith"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/openwith"; sha256 = "05lkx3yfv2445fp07bhqv2aqz5hgf3dxp39lmz3nfxn4c9v8nkqi"; name = "openwith"; }; @@ -41539,7 +41919,7 @@ operate-on-number = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "operate-on-number"; - version = "20150707.123"; + version = "20150707.223"; src = fetchFromGitHub { owner = "knu"; repo = "operate-on-number.el"; @@ -41547,7 +41927,7 @@ sha256 = "0iw3c8sn702ziki59mvd5gxm484i7f0bwsy8fz95y08s9gknjjf9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/operate-on-number"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/operate-on-number"; sha256 = "1rw3fqbzfizgcbz3yaf99rr2546msna4z7dyfa8dbi8h7yzl4fhk"; name = "operate-on-number"; }; @@ -41560,7 +41940,7 @@ org-ac = callPackage ({ auto-complete-pcmp, fetchFromGitHub, fetchurl, lib, log4e, melpaBuild, yaxception }: melpaBuild { pname = "org-ac"; - version = "20140302.613"; + version = "20140302.713"; src = fetchFromGitHub { owner = "aki2o"; repo = "org-ac"; @@ -41568,7 +41948,7 @@ sha256 = "1xckin2d6s40kgr2293g72ipc57f8gp6y63303kmqcv3qm8q13ca"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-ac"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-ac"; sha256 = "059jr3v3558cgw626zbqfwmwwv5f4637ai26h7b6psqh0x9sf3mr"; name = "org-ac"; }; @@ -41581,7 +41961,7 @@ org-agenda-property = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "org-agenda-property"; - version = "20140626.1616"; + version = "20140626.1716"; src = fetchFromGitHub { owner = "Malabarba"; repo = "org-agenda-property"; @@ -41589,7 +41969,7 @@ sha256 = "15xgkm5p30qfghyhkjivh5n4770794qf4pza462vb0xl5v6kffbm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-agenda-property"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-agenda-property"; sha256 = "0zsjzjw52asl609q7a2s4jcsm478p4cxzhnd3azyr9ypxydjf6qk"; name = "org-agenda-property"; }; @@ -41602,7 +41982,7 @@ org-alert = callPackage ({ alert, dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "org-alert"; - version = "20151007.537"; + version = "20151007.637"; src = fetchFromGitHub { owner = "groksteve"; repo = "org-alert"; @@ -41610,7 +41990,7 @@ sha256 = "0yzvir2gmyv9k43q3sf37lc9xcmfyaj5wh825xax7305j3b2hhvv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-alert"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-alert"; sha256 = "0n5a24iv8cj395xr0gfgi0hs237dd98zm2fws05k47vy3ygni152"; name = "org-alert"; }; @@ -41623,7 +42003,7 @@ org-attach-screenshot = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "org-attach-screenshot"; - version = "20160125.1532"; + version = "20160125.1632"; src = fetchFromGitHub { owner = "dfeich"; repo = "org-screenshot"; @@ -41631,7 +42011,7 @@ sha256 = "0f4ja4m1r6bbgachipswb2001ryg8cqcxjvwmnab951mw0cbg7v4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-attach-screenshot"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-attach-screenshot"; sha256 = "0108kahyd499q87wzvirv5d6p7jrb7ckz8r96pwqzgflj3njbnmn"; name = "org-attach-screenshot"; }; @@ -41644,7 +42024,7 @@ org-autolist = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "org-autolist"; - version = "20150922.905"; + version = "20150922.1005"; src = fetchFromGitHub { owner = "calvinwyoung"; repo = "org-autolist"; @@ -41652,7 +42032,7 @@ sha256 = "0j6fqgzvbmvvdh0dgwsxq004wxys2zwnq9wa3idm087ynp2a2ani"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-autolist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-autolist"; sha256 = "1jvspxhxlvd7h1srk9dbk1v5dykmf8jsjaqicpll7ial6i0qgikj"; name = "org-autolist"; }; @@ -41665,7 +42045,7 @@ org-beautify-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "org-beautify-theme"; - version = "20150106.1156"; + version = "20150106.1256"; src = fetchFromGitHub { owner = "jonnay"; repo = "emagicians-starter-kit"; @@ -41673,7 +42053,7 @@ sha256 = "00iklf97mszrsdv20q55qhml1dscvmmalpfnlkwi9mabklyq3i6z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-beautify-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-beautify-theme"; sha256 = "1j2gi3f72kvavdcj6xs7zng0dcnivrhc7pjzm2g4mjm5ad5s1flq"; name = "org-beautify-theme"; }; @@ -41686,7 +42066,7 @@ org-bookmark-heading = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "org-bookmark-heading"; - version = "20160326.159"; + version = "20160326.259"; src = fetchFromGitHub { owner = "alphapapa"; repo = "org-bookmark-heading"; @@ -41694,7 +42074,7 @@ sha256 = "084ij85pw53pzr220ql97544zkh23xb8gr81397asfdhc5wrzkqw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-bookmark-heading"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-bookmark-heading"; sha256 = "1q92rg9d945ypcpb7kig2r0cr7nb7avsylaa7nxjib25advx80n9"; name = "org-bookmark-heading"; }; @@ -41707,7 +42087,7 @@ org-bullets = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "org-bullets"; - version = "20140918.1337"; + version = "20140918.1437"; src = fetchFromGitHub { owner = "sabof"; repo = "org-bullets"; @@ -41715,7 +42095,7 @@ sha256 = "10nr4sjffnqbllv6gmak6pviyynrb7pi5nvrq331h5alm3xcpq0w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-bullets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-bullets"; sha256 = "1kxhlabaqi1g6pz215afp65d9cp324s8mvabjh7q1h7ari32an75"; name = "org-bullets"; }; @@ -41728,7 +42108,7 @@ org-caldav = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org }: melpaBuild { pname = "org-caldav"; - version = "20160306.837"; + version = "20160306.937"; src = fetchFromGitHub { owner = "dengste"; repo = "org-caldav"; @@ -41736,7 +42116,7 @@ sha256 = "0fq9d1q16fs0i3x9gs8k1n98nvh971r6g5bk2bswpfbpvndgwbi1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-caldav"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-caldav"; sha256 = "0166y04gxrwnynm4jshm2kqk5jbvl5g5078dxvw18nicrgq3y4r8"; name = "org-caldav"; }; @@ -41746,10 +42126,31 @@ license = lib.licenses.free; }; }) {}; + org-capture-pop-frame = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "org-capture-pop-frame"; + version = "20160507.1017"; + src = fetchFromGitHub { + owner = "tumashu"; + repo = "org-capture-pop-frame"; + rev = "1662739c75338c5d2908df47414a31e27d9e3104"; + sha256 = "0ck3dw7l5mi9kaglsj3zkipzilcnmzlrlpx7pksll90mfa450j88"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-capture-pop-frame"; + sha256 = "0g0b3vifwg39rb0fmad7y955dcqccnm01c6m27cv2x4xfib8ik3w"; + name = "org-capture-pop-frame"; + }; + packageRequires = [ emacs ]; + meta = { + homepage = "https://melpa.org/#/org-capture-pop-frame"; + license = lib.licenses.free; + }; + }) {}; org-cliplink = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "org-cliplink"; - version = "20160319.700"; + version = "20160319.800"; src = fetchFromGitHub { owner = "rexim"; repo = "org-cliplink"; @@ -41757,7 +42158,7 @@ sha256 = "048mcjgls405wwvn2r90cxkyw9z2nf97gif86k0gxk7yrbbkiy2x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-cliplink"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-cliplink"; sha256 = "19l3k9w9csgvdr7n824bzg7jja0f28dmz6caldxh43vankpmlg3p"; name = "org-cliplink"; }; @@ -41770,7 +42171,7 @@ org-clock-convenience = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, org }: melpaBuild { pname = "org-clock-convenience"; - version = "20160217.306"; + version = "20160217.406"; src = fetchFromGitHub { owner = "dfeich"; repo = "org-clock-convenience"; @@ -41778,7 +42179,7 @@ sha256 = "0l0r44brs3fcgpjjirfrbf5cgxmsc0siqakv5mlvmr64xd1vi2lw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-clock-convenience"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-clock-convenience"; sha256 = "1zis0fp7q253qfxypm7a69zb3w8jb4cbrbj2rk34d1jisvnn4irw"; name = "org-clock-convenience"; }; @@ -41791,7 +42192,7 @@ org-context = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "org-context"; - version = "20160108.414"; + version = "20160108.514"; src = fetchFromGitHub { owner = "thisirs"; repo = "org-context"; @@ -41799,7 +42200,7 @@ sha256 = "0q4v216ihhwv8rlb9xc8xy7nj1p058xabfflglhgcd7mfjrsyayx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-context"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-context"; sha256 = "19y8aln7wix9p506ajvfkl641147c5mdmjm98jnq68cx2r4wp6zz"; name = "org-context"; }; @@ -41812,7 +42213,7 @@ org-cua-dwim = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "org-cua-dwim"; - version = "20120202.2334"; + version = "20120203.34"; src = fetchFromGitHub { owner = "mattfidler"; repo = "org-cua-dwim.el"; @@ -41820,7 +42221,7 @@ sha256 = "0nrfvmqb70phnq0k4wbdj6z666wq6xvabg4pgv8qn62rbrw4yyhm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-cua-dwim"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-cua-dwim"; sha256 = "0ib3m41b4lh0p0xxhsmfv42qs00xm2cfwwl2cgfdjjp1s57p19xy"; name = "org-cua-dwim"; }; @@ -41833,7 +42234,7 @@ org-dashboard = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "org-dashboard"; - version = "20150812.502"; + version = "20150812.602"; src = fetchFromGitHub { owner = "bard"; repo = "org-dashboard"; @@ -41841,7 +42242,7 @@ sha256 = "1nqfi139cag3ll8wxk8rh59hay97vi8i0mlgnams4jla285zydj5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-dashboard"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-dashboard"; sha256 = "1hvhhbmyx12wsf2n1hd0hg5cy05zyspd82xxcdh04g4s9r3ikqj5"; name = "org-dashboard"; }; @@ -41854,7 +42255,7 @@ org-doing = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "org-doing"; - version = "20150824.901"; + version = "20150824.1001"; src = fetchFromGitHub { owner = "omouse"; repo = "org-doing"; @@ -41862,7 +42263,7 @@ sha256 = "1wrgqdrfdxc1vrcr6dsa8dcxrwj6zgjr9h1fzilwnxlzfvdilnsm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-doing"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-doing"; sha256 = "17w49z78fvbz182sxv9mnryj124gm9jbdmbybppjqz4rk6wvnm2j"; name = "org-doing"; }; @@ -41875,7 +42276,7 @@ org-dotemacs = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, org }: melpaBuild { pname = "org-dotemacs"; - version = "20151119.1222"; + version = "20151119.1322"; src = fetchFromGitHub { owner = "vapniks"; repo = "org-dotemacs"; @@ -41883,7 +42284,7 @@ sha256 = "15zrnd168n4pwa1bj5fz79hcrgw61braf0b095rsfhjh5w2sasy7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-dotemacs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-dotemacs"; sha256 = "1vc391fdkdqd4g0piq66zhrlgqx5s2ijv7qd1rc3a235sjb9i2n4"; name = "org-dotemacs"; }; @@ -41896,7 +42297,7 @@ org-download = callPackage ({ async, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "org-download"; - version = "20160411.910"; + version = "20160411.1010"; src = fetchFromGitHub { owner = "abo-abo"; repo = "org-download"; @@ -41904,7 +42305,7 @@ sha256 = "02344qyhz4bjz0rg4lmmqpn43lf03ag5v384ppczqks61rq7zpq9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-download"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-download"; sha256 = "19yjx0qqpmrdwagp3d6lwwv7dcb745m9ccq3m29sin74f5p4svsi"; name = "org-download"; }; @@ -41917,7 +42318,7 @@ org-dp = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "org-dp"; - version = "20160326.803"; + version = "20160326.903"; src = fetchFromGitHub { owner = "tj64"; repo = "org-dp"; @@ -41925,7 +42326,7 @@ sha256 = "0misv6g1cql7qc3xhy56cn79pzvn811fvhvivvq0bdx4g0hpp2fg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-dp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-dp"; sha256 = "0fnrzpgw8l0g862j20yy4mw1wfcm2i04r6dxi4yd7yay8bw2i4yq"; name = "org-dp"; }; @@ -41938,7 +42339,7 @@ org-drill-table = callPackage ({ cl-lib ? null, dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, org-plus-contrib, s }: melpaBuild { pname = "org-drill-table"; - version = "20140117.337"; + version = "20140117.437"; src = fetchFromGitHub { owner = "chrisbarrett"; repo = "org-drill-table"; @@ -41946,7 +42347,7 @@ sha256 = "0m5c9x0vazciq6czpg5y9nr5yzjf6nl0qp5cfajv49cw2h0cwqyy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-drill-table"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-drill-table"; sha256 = "1gb5b4hj4xr8nv8bxfar145i38zcic6c34gk98wpshvwzvb43r69"; name = "org-drill-table"; }; @@ -41959,7 +42360,7 @@ org-dropbox = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, names }: melpaBuild { pname = "org-dropbox"; - version = "20150113.2309"; + version = "20150114.9"; src = fetchFromGitHub { owner = "heikkil"; repo = "org-dropbox"; @@ -41967,7 +42368,7 @@ sha256 = "0jjdsng7fm4wbhvd9naqzdfsmkvj1sf1d9rikprg1pd58azv6idx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-dropbox"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-dropbox"; sha256 = "0qfvdz13ncqn7qaz03lwabzsnk62z6wqzlxlvdqv5xyllcy9m6ln"; name = "org-dropbox"; }; @@ -41980,7 +42381,7 @@ org-ehtml = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, web-server }: melpaBuild { pname = "org-ehtml"; - version = "20150506.1858"; + version = "20150506.1958"; src = fetchFromGitHub { owner = "eschulte"; repo = "org-ehtml"; @@ -41988,7 +42389,7 @@ sha256 = "0kqvwqmwnwg2h7r38fpjg6qlkcj9v8011df8nmsgs1w1mfdvnjsq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-ehtml"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-ehtml"; sha256 = "0n82fbd7aircqg2c9m138qfv8csrv0amhya3xlwswdkqn51vn3gw"; name = "org-ehtml"; }; @@ -42001,7 +42402,7 @@ org-elisp-help = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, org }: melpaBuild { pname = "org-elisp-help"; - version = "20130423.1745"; + version = "20130423.1845"; src = fetchFromGitHub { owner = "tarsius"; repo = "org-elisp-help"; @@ -42009,7 +42410,7 @@ sha256 = "0va8wm319vvw7w0j102mx656icy3fi4mz3b6bxira6z6xl9b92s0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-elisp-help"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-elisp-help"; sha256 = "0a4wvz52hkcw5nrml3h1yp8w97vg5jw22wnpfbb827zh7iwb259h"; name = "org-elisp-help"; }; @@ -42022,7 +42423,7 @@ org-eww = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "org-eww"; - version = "20160425.751"; + version = "20160425.851"; src = fetchFromGitHub { owner = "lujun9972"; repo = "org-eww"; @@ -42030,7 +42431,7 @@ sha256 = "0bcwxly77yc2i4x1lz4584k6pd9gx1mawci8ibsxcmjvgzch6x84"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-eww"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-eww"; sha256 = "132asshgfpphjckd5vz1vcs18lj55mrqs1l4ggfa89rc6aj8xrca"; name = "org-eww"; }; @@ -42043,14 +42444,14 @@ org-fstree = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: melpaBuild { pname = "org-fstree"; - version = "20090723.1019"; + version = "20090723.1119"; src = fetchgit { url = "http://repo.or.cz/r/org-fstree.git"; rev = "24e305c6443be9f45198185772eecfddc390a9ce"; sha256 = "0ydsmjjc64r50qilgazmv5gzdv67vszlid67wskc2zii5ss0y01m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-fstree"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-fstree"; sha256 = "11ddkfddmsy26mmhgw24757f753ssh056v9vxn89pxp4qypxidfz"; name = "org-fstree"; }; @@ -42063,7 +42464,7 @@ org-gcal = callPackage ({ alert, cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, org, request-deferred }: melpaBuild { pname = "org-gcal"; - version = "20160307.1406"; + version = "20160307.1506"; src = fetchFromGitHub { owner = "myuhe"; repo = "org-gcal.el"; @@ -42071,7 +42472,7 @@ sha256 = "1di32pvkqbd90f4j4d07gdbba6d0fzyhw5lsynz7cl6yrh5y9cpr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-gcal"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-gcal"; sha256 = "1mp6cm0rhd4r9pfvsjjp86sdqxjbbg7gk41zx0zf0s772smddy3q"; name = "org-gcal"; }; @@ -42084,7 +42485,7 @@ org-gnome = callPackage ({ alert, fetchFromGitHub, fetchurl, gnome-calendar, lib, melpaBuild, telepathy }: melpaBuild { pname = "org-gnome"; - version = "20150614.957"; + version = "20150614.1057"; src = fetchFromGitHub { owner = "NicolasPetton"; repo = "org-gnome.el"; @@ -42092,7 +42493,7 @@ sha256 = "0b57ik05iax2h3nrj96kysbk4hxmxlaabd0n6lv1xsayrlli3sj1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-gnome"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-gnome"; sha256 = "0c37gfs6xs0jbvg6ypd4z5ip1khm26wr5lxgmv1dzcc383ynzg0v"; name = "org-gnome"; }; @@ -42105,7 +42506,7 @@ org-grep = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "org-grep"; - version = "20151202.629"; + version = "20151202.729"; src = fetchFromGitHub { owner = "emacsorphanage"; repo = "org-grep"; @@ -42113,7 +42514,7 @@ sha256 = "10jwqzs431mnwz717qdmcn0v8raklw41sbxbnkb36yrgznk8c09c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-grep"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-grep"; sha256 = "0kpgizy0zxnlmyh0prwdll62ri2c1l4sb0yrkl7yw17cr4gxmkkz"; name = "org-grep"; }; @@ -42126,7 +42527,7 @@ org-if = callPackage ({ fetchFromGitLab, fetchurl, lib, melpaBuild }: melpaBuild { pname = "org-if"; - version = "20150920.1013"; + version = "20150920.1113"; src = fetchFromGitLab { owner = "elzair"; repo = "org-if"; @@ -42134,7 +42535,7 @@ sha256 = "1iyqv34b7q2k73srshcnpvfzcadq47w4rzkqp6m1d3ajk8x2vypq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-if"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-if"; sha256 = "0h0jdyawz2j4mp33w85z8q77l37qid8palvw5n4z379qa0wr5h96"; name = "org-if"; }; @@ -42147,7 +42548,7 @@ org-iv = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, impatient-mode, lib, melpaBuild, org }: melpaBuild { pname = "org-iv"; - version = "20151213.914"; + version = "20151213.1014"; src = fetchFromGitHub { owner = "kuangdash"; repo = "org-iv"; @@ -42155,7 +42556,7 @@ sha256 = "1n7l70pl9x6mh7dyyiihg4zi1advzlaq2x7vivhas1i2120884i6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-iv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-iv"; sha256 = "1akhabp6mdw1h7zms6ahlfvwizl07fwsizwxpdzi4viggfccsfwx"; name = "org-iv"; }; @@ -42168,7 +42569,7 @@ org-jekyll = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org }: melpaBuild { pname = "org-jekyll"; - version = "20130508.439"; + version = "20130508.539"; src = fetchFromGitHub { owner = "juanre"; repo = "org-jekyll"; @@ -42176,7 +42577,7 @@ sha256 = "0whv8nsla93194jjpxrhlr6g230spdxbac8ibmzmyad075vx97z5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-jekyll"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-jekyll"; sha256 = "0jh3rla8s8prprvhnlg0psdrj7swz7v6vf2xy1m6ff66p9saiv8i"; name = "org-jekyll"; }; @@ -42189,7 +42590,7 @@ org-jira = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "org-jira"; - version = "20150911.758"; + version = "20150911.858"; src = fetchFromGitHub { owner = "baohaojun"; repo = "org-jira"; @@ -42197,7 +42598,7 @@ sha256 = "0b5f8qkyzh4jwj3kvbaj3m4dpjbvh1fql7v1nb9bi5n7iwkv3lxp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-jira"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-jira"; sha256 = "11h7kbkf38p2xycw8hvabpaacp72xdgy8c7kzcgjb2a8qlbs5ifm"; name = "org-jira"; }; @@ -42210,15 +42611,15 @@ org-journal = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "org-journal"; - version = "20151228.803"; + version = "20160427.918"; src = fetchFromGitHub { owner = "bastibe"; repo = "org-journal"; - rev = "0ddd54c1112b077d0061f22dfa9c187e0ec7cb1b"; - sha256 = "15swkzq5v9jnpmsziy8mj9rkriilxrm1c24lbfg0a4pwax5nkzp9"; + rev = "17d74bf1c33da3e2831ab3eee134d54caf58919e"; + sha256 = "0rsirs9rfgrsi667vjmag0h6m704j35mv9rg5q50p9jsa38xy78i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-journal"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-journal"; sha256 = "1npzqxn1ssigq7k1nrxz3xymxaazby0ddgxq6lgw2a1zjmjm4h2b"; name = "org-journal"; }; @@ -42231,7 +42632,7 @@ org-link-travis = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org }: melpaBuild { pname = "org-link-travis"; - version = "20140405.1827"; + version = "20140405.1927"; src = fetchFromGitHub { owner = "aki2o"; repo = "org-link-travis"; @@ -42239,7 +42640,7 @@ sha256 = "1797pd264zn19zk93nifyw6pwk2a7wrpfir373qclk601yv2g5h8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-link-travis"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-link-travis"; sha256 = "0hj4x7cw7a3ry8xislkz9bnavy77z4cpmnvns02yi3gnib53mlfs"; name = "org-link-travis"; }; @@ -42252,7 +42653,7 @@ org-linkany = callPackage ({ fetchFromGitHub, fetchurl, lib, log4e, melpaBuild, yaxception }: melpaBuild { pname = "org-linkany"; - version = "20160206.2211"; + version = "20160206.2311"; src = fetchFromGitHub { owner = "aki2o"; repo = "org-linkany"; @@ -42260,7 +42661,7 @@ sha256 = "0lqxzmjxs80z3z90f66f3zfrdajiamdcwpvfv5j2w40js9xz4x37"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-linkany"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-linkany"; sha256 = "0arjj3c23yqm1ljvbnl7v9cqvd9lbz4381g8f3jyqbafs25bdc3c"; name = "org-linkany"; }; @@ -42273,14 +42674,14 @@ org-mac-iCal = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: melpaBuild { pname = "org-mac-iCal"; - version = "20140107.719"; + version = "20140107.819"; src = fetchgit { url = "git://orgmode.org/org-mode.git"; - rev = "ce748a7ed5fd7b9b57c0a0e8cdcc65a28c8ee06a"; - sha256 = "16vy6nd3wdqlkyk4dkav5a66xh9q9qfmh03a6j8dbx1wxy9y8g09"; + rev = "8127b3c30d8a2217468068a73f23bfa4945573dc"; + sha256 = "1wilf5ahb8fhfwqyfz39gpbybrwy2p7bzwn55yd1scrdpmg4vi4b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-mac-iCal"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-mac-iCal"; sha256 = "1ilzvmw1x5incagp1vf8d9v9mz0krlv7bpv428gg3gpqzpm6kksw"; name = "org-mac-iCal"; }; @@ -42293,14 +42694,14 @@ org-mac-link = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: melpaBuild { pname = "org-mac-link"; - version = "20160109.1643"; + version = "20160109.1743"; src = fetchgit { url = "git://orgmode.org/org-mode.git"; - rev = "ce748a7ed5fd7b9b57c0a0e8cdcc65a28c8ee06a"; - sha256 = "16vy6nd3wdqlkyk4dkav5a66xh9q9qfmh03a6j8dbx1wxy9y8g09"; + rev = "8127b3c30d8a2217468068a73f23bfa4945573dc"; + sha256 = "1wilf5ahb8fhfwqyfz39gpbybrwy2p7bzwn55yd1scrdpmg4vi4b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-mac-link"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-mac-link"; sha256 = "02rmhrwikppppw8adnzvwj43kp9wsyk60csj5pygg7cd7wah7khw"; name = "org-mac-link"; }; @@ -42313,7 +42714,7 @@ org-mobile-sync = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, org }: melpaBuild { pname = "org-mobile-sync"; - version = "20131118.1316"; + version = "20131118.1416"; src = fetchFromGitHub { owner = "steckerhalter"; repo = "org-mobile-sync"; @@ -42321,7 +42722,7 @@ sha256 = "0d22q57mizw70qxbvwi4yz15jg86icqq1z963rliwss3wgpirndh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-mobile-sync"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-mobile-sync"; sha256 = "1cj0pxcjngiipmyl0w1p0g4wrxgm2y98a8862x1lcbali9lqbrwj"; name = "org-mobile-sync"; }; @@ -42334,7 +42735,7 @@ org-multiple-keymap = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, org }: melpaBuild { pname = "org-multiple-keymap"; - version = "20150328.2006"; + version = "20150328.2106"; src = fetchFromGitHub { owner = "myuhe"; repo = "org-multiple-keymap.el"; @@ -42342,7 +42743,7 @@ sha256 = "0zbpzm9lni6z180s7n52x8s5by5zkq2nlhx82l2h9i7in9y4r6c3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-multiple-keymap"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-multiple-keymap"; sha256 = "16iv5575634asvn1b2k535ml8g4lqgy8z5w6ykma5f9phq5idb9f"; name = "org-multiple-keymap"; }; @@ -42355,7 +42756,7 @@ org-octopress = callPackage ({ ctable, fetchFromGitHub, fetchurl, lib, melpaBuild, org, orglue }: melpaBuild { pname = "org-octopress"; - version = "20150826.616"; + version = "20150826.716"; src = fetchFromGitHub { owner = "yoshinari-nomura"; repo = "org-octopress"; @@ -42363,7 +42764,7 @@ sha256 = "132jv1zvp3yp4pa4ysl0n3a81d39cdi3nqfziz1ha1pl10qbn6wr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-octopress"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-octopress"; sha256 = "0r6ms9j4xxsrik4206g7gz4wz41wr4ylpal6yfqs4hhz88yhxrhw"; name = "org-octopress"; }; @@ -42376,7 +42777,7 @@ org-outlook = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "org-outlook"; - version = "20150914.747"; + version = "20150914.847"; src = fetchFromGitHub { owner = "mattfidler"; repo = "org-outlook.el"; @@ -42384,7 +42785,7 @@ sha256 = "10dddbs9jppqqzwwv5y6pj2szdkw3223gvzzd4pzn9biv5d9kzsb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-outlook"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-outlook"; sha256 = "0cn8h6yy67jr5h1yxsfqmr8q7ii4f99pgghfp821m01pj55qyjx9"; name = "org-outlook"; }; @@ -42397,7 +42798,7 @@ org-page = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, git, ht, htmlize, lib, melpaBuild, mustache, org, simple-httpd }: melpaBuild { pname = "org-page"; - version = "20160413.529"; + version = "20160413.629"; src = fetchFromGitHub { owner = "kelvinh"; repo = "org-page"; @@ -42405,7 +42806,7 @@ sha256 = "1w853v4fsrvgczl2rvmy3dv9shyhv8f4bc0gqnk4r5ihmgf46a1s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-page"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-page"; sha256 = "1326m3w7vz22zk7rx40z28fddsccy5fl1qhbb7clci8l69blcc2v"; name = "org-page"; }; @@ -42427,7 +42828,7 @@ org-pandoc = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "org-pandoc"; - version = "20130729.2050"; + version = "20130729.2150"; src = fetchFromGitHub { owner = "robtillotson"; repo = "org-pandoc"; @@ -42435,7 +42836,7 @@ sha256 = "022qqas919aziq4scs5j1wdbvd0qyw8kkirn2vzfb5k2fjl8z7iq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-pandoc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-pandoc"; sha256 = "1r6j6rkwfv7fv7kp73gh1bdz3y5ffwk5f2wyv4mpxs885cfbsm8v"; name = "org-pandoc"; }; @@ -42448,14 +42849,14 @@ org-password-manager = callPackage ({ fetchgit, fetchurl, lib, melpaBuild, org, s }: melpaBuild { pname = "org-password-manager"; - version = "20150729.1715"; + version = "20160430.2151"; src = fetchgit { url = "https://git.leafac.com/leafac/org-password-manager"; - rev = "200aff149a8a089e352316d5ed438f919932e4e9"; - sha256 = "0j193rllhm5n65qyirj99ifxhzk5y5z003g6qpr1261mylycngp8"; + rev = "5dffcd5f7d7f1852fdd31a193bea5c70ea130082"; + sha256 = "023xsyvppq771yvxd9kqhn9lffhr83sfb0h9g405ayfjys94m2xd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-password-manager"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-password-manager"; sha256 = "021yhp417b9c8cjh8ynmz2fqyplpr2qvc0djxf74kd8lhn4pl397"; name = "org-password-manager"; }; @@ -42468,7 +42869,7 @@ org-pdfview = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org, pdf-tools }: melpaBuild { pname = "org-pdfview"; - version = "20160125.1454"; + version = "20160125.1554"; src = fetchFromGitHub { owner = "markus1189"; repo = "org-pdfview"; @@ -42476,7 +42877,7 @@ sha256 = "16z44kdsg8w1p27fsi72k8wqr35xbb0777rq7h7swv6j2jn1b6hc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-pdfview"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-pdfview"; sha256 = "1z4gb5lw7ngphixw06b5484kwlxbc098w2xshzml5sywr16a4iab"; name = "org-pdfview"; }; @@ -42489,7 +42890,7 @@ org-pomodoro = callPackage ({ alert, cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "org-pomodoro"; - version = "20151217.753"; + version = "20151217.853"; src = fetchFromGitHub { owner = "lolownia"; repo = "org-pomodoro"; @@ -42497,7 +42898,7 @@ sha256 = "015idpk66835jdg1sbvpksyr07xk4vn17z8cng2qw87fss688ihb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-pomodoro"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-pomodoro"; sha256 = "1vdi07hrhniyhhvg0hcr5mlixy6bjynvwm89z2lvfyvnnxpx0r27"; name = "org-pomodoro"; }; @@ -42510,7 +42911,7 @@ org-present = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org }: melpaBuild { pname = "org-present"; - version = "20141109.1956"; + version = "20141109.2056"; src = fetchFromGitHub { owner = "rlister"; repo = "org-present"; @@ -42518,7 +42919,7 @@ sha256 = "1n9magg7r7xnw16d43fh6nzjf42s70l3mxq6ph727zi4lz5ngmfm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-present"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-present"; sha256 = "09h0cjqjwhqychyrdv1hmiyak677vgf1b94392sdsq3ns70zyjk7"; name = "org-present"; }; @@ -42531,7 +42932,7 @@ org-projectile = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, projectile }: melpaBuild { pname = "org-projectile"; - version = "20160324.959"; + version = "20160324.1059"; src = fetchFromGitHub { owner = "IvanMalison"; repo = "org-projectile"; @@ -42539,7 +42940,7 @@ sha256 = "1cxg4qci0k2nrafhipsb223ania29n9w4h33z6n62wk2q5yp1yhr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-projectile"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-projectile"; sha256 = "078s77wms1n1b29mrn6x25sksfjad0yns51gmahzd7hlgp5d56dm"; name = "org-projectile"; }; @@ -42552,7 +42953,7 @@ org-protocol-jekyll = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "org-protocol-jekyll"; - version = "20151119.1038"; + version = "20151119.1138"; src = fetchFromGitHub { owner = "vonavi"; repo = "org-protocol-jekyll"; @@ -42560,7 +42961,7 @@ sha256 = "1jzp65sf1am6pz533kg1z666h4jlynvjyx1mf24gyksiiwdhypsy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-protocol-jekyll"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-protocol-jekyll"; sha256 = "18wg489n2d1sx9jk00ki6p2rxkqz67kqwnmy2kb1ga1rmb6x9wfs"; name = "org-protocol-jekyll"; }; @@ -42573,7 +42974,7 @@ org-random-todo = callPackage ({ alert, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "org-random-todo"; - version = "20160208.626"; + version = "20160208.726"; src = fetchFromGitHub { owner = "unhammer"; repo = "org-random-todo"; @@ -42581,7 +42982,7 @@ sha256 = "06apaa8pjrw14g2gyjpxjd6bjv1w0md4vl5jx78krcyr0bcc08mx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-random-todo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-random-todo"; sha256 = "0yflppdbkfn2phd21zkjdlidzasfm846mzniay83v3akz0qx31lr"; name = "org-random-todo"; }; @@ -42594,7 +42995,7 @@ org-readme = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, header2, http-post-simple, lib, lib-requires, melpaBuild, yaoddmuse }: melpaBuild { pname = "org-readme"; - version = "20151204.617"; + version = "20151204.717"; src = fetchFromGitHub { owner = "mattfidler"; repo = "org-readme"; @@ -42602,7 +43003,7 @@ sha256 = "1q3s12s0ll7jhrnd3adkaxv7ff69ppprv0pyl5f6gy8y51y63k8d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-readme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-readme"; sha256 = "1qqbsgspd006gy0kc614w7bg6na0ygmflvqkmw47899pbgj81hxh"; name = "org-readme"; }; @@ -42621,7 +43022,7 @@ org-redmine = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "org-redmine"; - version = "20160205.544"; + version = "20160205.644"; src = fetchFromGitHub { owner = "gongo"; repo = "org-redmine"; @@ -42629,7 +43030,7 @@ sha256 = "0q26knckq213r885i5947970qagjmb7ybs4ag0ignls4dzbqlbmz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-redmine"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-redmine"; sha256 = "0y2pm18nnyzm9wjc0j15v46nf3xi7a0wvspfzi360qv08i54skqv"; name = "org-redmine"; }; @@ -42642,15 +43043,15 @@ org-ref = callPackage ({ dash, emacs, f, fetchFromGitHub, fetchurl, helm, helm-bibtex, hydra, key-chord, lib, melpaBuild, s }: melpaBuild { pname = "org-ref"; - version = "20160426.958"; + version = "20160507.1217"; src = fetchFromGitHub { owner = "jkitchin"; repo = "org-ref"; - rev = "ff3aef81d7b2df9e19512cfe62152fe035f769a6"; - sha256 = "126rah7709mcfl40s2lp8h26h0xkh5m134r230n8f26ha81fw2q6"; + rev = "1963f6c2cea9d1111dbf1a3f38cfa13c865c8d44"; + sha256 = "1q8mik04gjyc94286vmsg056xzjp4yk8fmkqlx8w0vgkb8wrmwkn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-ref"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-ref"; sha256 = "087isxf3z8cgmmniaxr3lpq9jg3sriw88dwp4f0ky286hlvgzw08"; name = "org-ref"; }; @@ -42663,7 +43064,7 @@ org-repo-todo = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "org-repo-todo"; - version = "20160307.1229"; + version = "20160307.1329"; src = fetchFromGitHub { owner = "waymondo"; repo = "org-repo-todo"; @@ -42671,7 +43072,7 @@ sha256 = "0as82hf81czks9fcmhy9wjwl8d4mbylrm13c02y8abp0am41r28f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-repo-todo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-repo-todo"; sha256 = "0l5ns1hs3i4dhrpmvzl34zc9zysgjkfa7j8apbda59n9jdvml5v1"; name = "org-repo-todo"; }; @@ -42684,7 +43085,7 @@ org-rtm = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, rtm }: melpaBuild { pname = "org-rtm"; - version = "20160214.636"; + version = "20160214.736"; src = fetchFromGitHub { owner = "pmiddend"; repo = "org-rtm"; @@ -42692,7 +43093,7 @@ sha256 = "1hn8y9933x5x6lxpijcqx97p3hln69ahabqdsl2bmzda3mxm4bn2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-rtm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-rtm"; sha256 = "1paiy5zmdlxb3a1cjk9d30mqbl60bkairw6xkix2qw36p07jwlj5"; name = "org-rtm"; }; @@ -42705,7 +43106,7 @@ org-sync = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, org }: melpaBuild { pname = "org-sync"; - version = "20150817.954"; + version = "20150817.1054"; src = fetchFromGitHub { owner = "arbox"; repo = "org-sync"; @@ -42713,7 +43114,7 @@ sha256 = "14zn0b8qs740ls1069kg2lwm0b9yc4qv525fg8km0hgi0yp8qw7z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-sync"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-sync"; sha256 = "0n8fz2d1vg9r8dszgasbnb6pgaxr2i8mqrp953prf1nhmfpjpxad"; name = "org-sync"; }; @@ -42726,7 +43127,7 @@ org-table-comment = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "org-table-comment"; - version = "20120209.1251"; + version = "20120209.1351"; src = fetchFromGitHub { owner = "mattfidler"; repo = "org-table-comment.el"; @@ -42734,7 +43135,7 @@ sha256 = "1qx3kd02sxs9k7adlvdlbmyhkc5kr7ni5lw4gxjw3nphnc536bkb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-table-comment"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-table-comment"; sha256 = "1d40vl8aa1x27z4gwnkzxgrqp7vd3ln2pc445ijjxp1wr8bjxvdz"; name = "org-table-comment"; }; @@ -42747,7 +43148,7 @@ org-tfl = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, org }: melpaBuild { pname = "org-tfl"; - version = "20160407.1640"; + version = "20160407.1740"; src = fetchFromGitHub { owner = "storax"; repo = "org-tfl"; @@ -42755,7 +43156,7 @@ sha256 = "1qz1qhd7v6ynmvz7j1xscz85z6zwy9dcarwhbz020l4bk4g9zf94"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-tfl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-tfl"; sha256 = "1rqmmw0222vbxfn5wxq9ni2j813x92lpv99jjszqjvgnf2rkhjhf"; name = "org-tfl"; }; @@ -42768,7 +43169,7 @@ org-themis = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "org-themis"; - version = "20160121.2204"; + version = "20160121.2304"; src = fetchFromGitHub { owner = "zellio"; repo = "org-themis"; @@ -42776,7 +43177,7 @@ sha256 = "1apd5yyr12skagma7xpzrh22rhplmhhv0pma4zf5b0i6nkxy06j2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-themis"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-themis"; sha256 = "08rajz5y7h88fh94s2ad0f66va4vi31k9hwdv8p212bs276rp7ln"; name = "org-themis"; }; @@ -42789,7 +43190,7 @@ org-time-budgets = callPackage ({ alert, cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "org-time-budgets"; - version = "20151111.201"; + version = "20151111.301"; src = fetchFromGitHub { owner = "leoc"; repo = "org-time-budgets"; @@ -42797,7 +43198,7 @@ sha256 = "04adkz950vvwyzy3da468nnqsknpr5kw5369w2yqhnph16cwwfxb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-time-budgets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-time-budgets"; sha256 = "0r8km586n6xdnjha7xnzlh03nw1dp066hydaz8kxfmhvygl9cpah"; name = "org-time-budgets"; }; @@ -42810,7 +43211,7 @@ org-toodledo = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, request-deferred }: melpaBuild { pname = "org-toodledo"; - version = "20150301.513"; + version = "20150301.613"; src = fetchFromGitHub { owner = "myuhe"; repo = "org-toodledo"; @@ -42818,7 +43219,7 @@ sha256 = "014337wimvzy0rxh2p2c647ly215zcyhgym2hcljkdriv15cafna"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-toodledo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-toodledo"; sha256 = "0c7qr0jsc4iyrwkc22xp9nmk6984v7q1k0rvpd62m07lb5gvbiq3"; name = "org-toodledo"; }; @@ -42831,7 +43232,7 @@ org-tracktable = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "org-tracktable"; - version = "20160420.845"; + version = "20160420.945"; src = fetchFromGitHub { owner = "tty-tourist"; repo = "org-tracktable"; @@ -42839,7 +43240,7 @@ sha256 = "0jh9i41zqs9rvghfjhp5nl2ycav1pj1yv2hsr6skwqdpkwggvvmq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-tracktable"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-tracktable"; sha256 = "0mngf9q2ffxq32cgng0xl30661mj15wmr9y4hr3xddj626kxrp00"; name = "org-tracktable"; }; @@ -42852,7 +43253,7 @@ org-transform-tree-table = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "org-transform-tree-table"; - version = "20150110.833"; + version = "20150110.933"; src = fetchFromGitHub { owner = "jplindstrom"; repo = "emacs-org-transform-tree-table"; @@ -42860,7 +43261,7 @@ sha256 = "1h15fr16kgbyrxambmk4hsmha6hx4c4yqkccb82g3wlvzmnqj5x3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-transform-tree-table"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-transform-tree-table"; sha256 = "0n68cw769nk90ms6w1w6cc1nxjwn1navkz56mf11bsiqvsk3km7r"; name = "org-transform-tree-table"; }; @@ -42873,15 +43274,15 @@ org-tree-slide = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "org-tree-slide"; - version = "20151223.147"; + version = "20160428.2128"; src = fetchFromGitHub { owner = "takaxp"; repo = "org-tree-slide"; - rev = "3a2d3733baa81484ac53bee9a8d0f9dafa54881c"; - sha256 = "19id53sjv0r0xnm3l8d694s27dxlmdfm9dal57zlf60s5lg8hykq"; + rev = "68779b8fe44cf6d09cb0829648d3a349fd663fda"; + sha256 = "0dvig3fvsapvlv59w8iii85kr6xv005byp6w1r5ypdy5jgnbs1y1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-tree-slide"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-tree-slide"; sha256 = "0v857zplv0wdbg4li667v2p5pn5zcf9fgbqcwa75x8babilkl6jn"; name = "org-tree-slide"; }; @@ -42894,7 +43295,7 @@ org-trello = callPackage ({ dash, dash-functional, deferred, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, request-deferred, s }: melpaBuild { pname = "org-trello"; - version = "20160301.1141"; + version = "20160301.1241"; src = fetchFromGitHub { owner = "org-trello"; repo = "org-trello"; @@ -42902,7 +43303,7 @@ sha256 = "061nf6gwrzi36q3m3b1hn4bj33a6q4yic3fxdxxwvwrzi42bl74a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-trello"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-trello"; sha256 = "14lq8nn1x6qb3jx518zaaz5582m4npd593w056igqhahkfm0qp8i"; name = "org-trello"; }; @@ -42922,7 +43323,7 @@ org-vcard = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "org-vcard"; - version = "20151214.22"; + version = "20151214.122"; src = fetchFromGitHub { owner = "flexibeast"; repo = "org-vcard"; @@ -42930,7 +43331,7 @@ sha256 = "1m2xdp6wfg11wi7s4i675c3m5qancm8bpizcf380r6vmkcdfkrdy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-vcard"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-vcard"; sha256 = "0l6azshvzl1wws582njqr3qx4h73gwrdqwa3jcic1qbs9hg2l4yl"; name = "org-vcard"; }; @@ -42943,7 +43344,7 @@ org-wc = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "org-wc"; - version = "20160204.1915"; + version = "20160204.2015"; src = fetchFromGitHub { owner = "dato"; repo = "org-wc"; @@ -42951,7 +43352,7 @@ sha256 = "08yww77697kck1ld9xcrcx8amqdh28rdc4fsavp5d3my78qk7rac"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-wc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-wc"; sha256 = "1sa9fcy0bnn06swwq2gfrgmppd6dsbmw2mq0v73mizg3l6has1zb"; name = "org-wc"; }; @@ -42964,7 +43365,7 @@ org-webpage = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, ht, htmlize, lib, melpaBuild, mustache, org, web-server }: melpaBuild { pname = "org-webpage"; - version = "20160307.226"; + version = "20160307.326"; src = fetchFromGitHub { owner = "tumashu"; repo = "org-webpage"; @@ -42972,7 +43373,7 @@ sha256 = "18idnl2hx1s5hv1xm5akd35favnjnj2pxw6h00956lrapg01d1fn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-webpage"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-webpage"; sha256 = "0vwv8cv38gx8rnfskbmnaf8y8sffjqy1408655bwhjz6dp69qmah"; name = "org-webpage"; }; @@ -42985,7 +43386,7 @@ org-wunderlist = callPackage ({ alert, cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, org, request-deferred, s }: melpaBuild { pname = "org-wunderlist"; - version = "20150817.2113"; + version = "20150817.2213"; src = fetchFromGitHub { owner = "myuhe"; repo = "org-wunderlist.el"; @@ -42993,7 +43394,7 @@ sha256 = "1cagmwl3acanwc2nky7m61cawi0i0x703sjc6zlw968lacyw86wa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-wunderlist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-wunderlist"; sha256 = "08zg3wgr80rp89c53ffqzz22ws9bp62a1m74xvxa74x6nq9i4xl0"; name = "org-wunderlist"; }; @@ -43006,15 +43407,15 @@ org2blog = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, metaweblog, org, xml-rpc }: melpaBuild { pname = "org2blog"; - version = "20151208.1028"; + version = "20160502.2121"; src = fetchFromGitHub { owner = "punchagan"; repo = "org2blog"; - rev = "a0262931c79f59d79993e4d0237d9dcd6693f7ef"; - sha256 = "1q7207sn949s2xf2wj6p7yb3q4kjbrbxsz0jyp7xnrg3w762g6zm"; + rev = "fc7b2d934f2199368d9fc2a0a97d46f20c4f667b"; + sha256 = "1bqiq27ln1pl40b9dms05nla4kf72s80g9ilvrgqflxgl36gxws7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org2blog"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org2blog"; sha256 = "0ancvn4ji4552k4nfd2ijclsd027am93ngg241ll8f6h6k0wpmzq"; name = "org2blog"; }; @@ -43027,15 +43428,15 @@ org2issue = callPackage ({ emacs, fetchFromGitHub, fetchurl, gh, lib, melpaBuild, org, ox-gfm, s }: melpaBuild { pname = "org2issue"; - version = "20160420.142"; + version = "20160426.2118"; src = fetchFromGitHub { owner = "lujun9972"; repo = "org2issue"; - rev = "7547c528d42e9133f64927e82173083777b459f9"; - sha256 = "139y1ql7x95bmyz7sk6g3lpsivmzyz1naykayb6bhby69xr4cwb2"; + rev = "0f7f13463e389f2d8d7d830a928042d0cf1c71eb"; + sha256 = "1lvwkvzqgy9nlz7zmqfl9j8cairjfv3vknpzcqp6rzp6hkq04zk5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org2issue"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org2issue"; sha256 = "1qd5l9ga26smgp1gkc8r9ja2n974kq1jf2z876s5v0489ipa59bz"; name = "org2issue"; }; @@ -43048,7 +43449,7 @@ org2jekyll = callPackage ({ dash-functional, deferred, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "org2jekyll"; - version = "20160418.1050"; + version = "20160418.1150"; src = fetchFromGitHub { owner = "ardumont"; repo = "org2jekyll"; @@ -43056,7 +43457,7 @@ sha256 = "089nqbda5mg1ippqnsl5wcx9n1gpnaqhl6kz54n47kivb400bidh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org2jekyll"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org2jekyll"; sha256 = "1j9d6xf5nsakifxwd4zmjc29lbj46ffn3z109k2y2yhz7q3r9hzv"; name = "org2jekyll"; }; @@ -43069,15 +43470,15 @@ organic-green-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "organic-green-theme"; - version = "20160324.1444"; + version = "20160504.1228"; src = fetchFromGitHub { owner = "kostafey"; repo = "organic-green-theme"; - rev = "bb0e4c6ddd299abb975bcb92cb1309b95cd7aa90"; - sha256 = "06n6qz6f0z5kn9r5rq44dxf3x5j2avfzixrfi8nm5r6g7bfkfa5c"; + rev = "bb624992797b84d7c876c73e9f35c399a3b30a16"; + sha256 = "131fb64v2ii8by9g1ws9rrh92m7kbwn74bv9z2jw3gd6c5575jhn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/organic-green-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/organic-green-theme"; sha256 = "1fdj3dpcdqx0db5q8dlxag6pr2qn4yiz1hmg3c7dkmh51n85ssw2"; name = "organic-green-theme"; }; @@ -43090,7 +43491,7 @@ orgbox = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, org }: melpaBuild { pname = "orgbox"; - version = "20140528.2026"; + version = "20140528.2126"; src = fetchFromGitHub { owner = "yasuhito"; repo = "orgbox"; @@ -43098,7 +43499,7 @@ sha256 = "0hwmr67nky9xp5xlrkp54nw6b72d29lmna28dnbgqs2i5rccbk55"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/orgbox"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/orgbox"; sha256 = "12wfqlpjh9nr7zgqs4h8kmfsk825n68qcbn8z2fw2mpshg3nj7l8"; name = "orgbox"; }; @@ -43111,7 +43512,7 @@ orgit = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, magit, melpaBuild, org }: melpaBuild { pname = "orgit"; - version = "20160119.1624"; + version = "20160119.1724"; src = fetchFromGitHub { owner = "magit"; repo = "orgit"; @@ -43119,7 +43520,7 @@ sha256 = "1wxxdx3c5qacsii4kysk438cjr1hnmpir78kp6xgk9xw5g9snlnj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/orgit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/orgit"; sha256 = "0askccb3h98v8gmylwxaph3gbyv5b1sp4slws76aqz1kq9x0jy7w"; name = "orgit"; }; @@ -43132,7 +43533,7 @@ orglink = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, org }: melpaBuild { pname = "orglink"; - version = "20160424.920"; + version = "20160424.1020"; src = fetchFromGitHub { owner = "tarsius"; repo = "orglink"; @@ -43140,7 +43541,7 @@ sha256 = "076q8j70vqabirri6ckl1f0y60pq4bnilds6s34mxsxz1k3z3m1s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/orglink"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/orglink"; sha256 = "0ldrvvqs3hlazj0dch162gsbnbxcg6fgrxid8p7w9gj19vbcl52b"; name = "orglink"; }; @@ -43153,7 +43554,7 @@ orglue = callPackage ({ epic, fetchFromGitHub, fetchurl, lib, melpaBuild, org, org-mac-link }: melpaBuild { pname = "orglue"; - version = "20150430.713"; + version = "20150430.813"; src = fetchFromGitHub { owner = "yoshinari-nomura"; repo = "orglue"; @@ -43161,7 +43562,7 @@ sha256 = "1w0hadpslxcjn29yxl9i37sja4qf4kp7ffjpwij5hs73r518c2z6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/orglue"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/orglue"; sha256 = "14g4q2k9zjzipzrp5mg72s40b0rwiaixgq3rvi15wh4vvcw5xajn"; name = "orglue"; }; @@ -43174,7 +43575,7 @@ orgtbl-aggregate = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "orgtbl-aggregate"; - version = "20160421.926"; + version = "20160421.1026"; src = fetchFromGitHub { owner = "tbanel"; repo = "orgaggregate"; @@ -43182,7 +43583,7 @@ sha256 = "0zh8n8jb479ilmz88kj0q5wx8a9zqkfqds0rr8jbk2rqmj6j72v3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/orgtbl-aggregate"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/orgtbl-aggregate"; sha256 = "0gnyjwn6jshs8bzdssm2xppg2s9p2x3rrhp523q39aydskc6ggc9"; name = "orgtbl-aggregate"; }; @@ -43195,7 +43596,7 @@ orgtbl-ascii-plot = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "orgtbl-ascii-plot"; - version = "20151215.1551"; + version = "20151215.1651"; src = fetchFromGitHub { owner = "tbanel"; repo = "orgtblasciiplot"; @@ -43203,7 +43604,7 @@ sha256 = "1vbnp37xz0nrpyi0hah345928zsb1xw915mdb0wybq1fzn93mp1z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/orgtbl-ascii-plot"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/orgtbl-ascii-plot"; sha256 = "1ssjbdprbn34nsfx1xjc382l2195rbh8mybpn31d4kcjx6fqf78h"; name = "orgtbl-ascii-plot"; }; @@ -43216,7 +43617,7 @@ orgtbl-join = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "orgtbl-join"; - version = "20150121.1646"; + version = "20150121.1746"; src = fetchFromGitHub { owner = "tbanel"; repo = "orgtbljoin"; @@ -43224,7 +43625,7 @@ sha256 = "06nc82wiha11i79izqil53dkd95fl55nb5m739gyyzvx3sksb0dg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/orgtbl-join"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/orgtbl-join"; sha256 = "1kq2h0lb521z8q2xb9bsi37xzzdsa0hw4mm3qkzidi5j9fi3apf1"; name = "orgtbl-join"; }; @@ -43237,7 +43638,7 @@ orgtbl-show-header = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "orgtbl-show-header"; - version = "20141023.337"; + version = "20141023.437"; src = fetchFromGitHub { owner = "DamienCassou"; repo = "orgtbl-show-header"; @@ -43245,7 +43646,7 @@ sha256 = "0zfiq9d5jqzpmscngb1s2jgfiqmbi4dyw0fqa59v2g84gxjg793x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/orgtbl-show-header"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/orgtbl-show-header"; sha256 = "1xgqjg3lmcczdblxaka47cc1ad8p8jhyb2nqwq0qnbqw46fqjp3k"; name = "orgtbl-show-header"; }; @@ -43258,7 +43659,7 @@ origami = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "origami"; - version = "20160313.1613"; + version = "20160313.1713"; src = fetchFromGitHub { owner = "gregsexton"; repo = "origami.el"; @@ -43266,7 +43667,7 @@ sha256 = "18f5b6902zqayhhcchhsvszw1kryvhkhpc5vv0s187dkj38agsv3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/origami"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/origami"; sha256 = "0rkb55zcvsgxzp190vrnbzdfbcjd8zi6vhbhwpqxi0qmyq6a08pr"; name = "origami"; }; @@ -43279,7 +43680,7 @@ osx-browse = callPackage ({ browse-url-dwim, fetchFromGitHub, fetchurl, lib, melpaBuild, string-utils }: melpaBuild { pname = "osx-browse"; - version = "20140508.1541"; + version = "20140508.1641"; src = fetchFromGitHub { owner = "rolandwalker"; repo = "osx-browse"; @@ -43287,7 +43688,7 @@ sha256 = "1iybrhp607a5rb3ynlaf8w2x9wdgdbril702z44dgcg3wxih2zy1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/osx-browse"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/osx-browse"; sha256 = "06rfzq2hxhzg6jh2zs28r7ffxwlq40nz954j13ly8403c7rmbrfm"; name = "osx-browse"; }; @@ -43300,7 +43701,7 @@ osx-clipboard = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "osx-clipboard"; - version = "20141012.217"; + version = "20141012.317"; src = fetchFromGitHub { owner = "joddie"; repo = "osx-clipboard-mode"; @@ -43308,7 +43709,7 @@ sha256 = "1ykn48src7qhx9cmpjkaqsz7h36p75kkq1h9wlcpv5fhaky2d4n4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/osx-clipboard"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/osx-clipboard"; sha256 = "0gjgr451v6rlyarz96v6h8kfbvkk7npvhgvkgwdi0bjighrhlv4f"; name = "osx-clipboard"; }; @@ -43321,7 +43722,7 @@ osx-dictionary = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "osx-dictionary"; - version = "20160215.926"; + version = "20160215.1026"; src = fetchFromGitHub { owner = "xuchunyang"; repo = "osx-dictionary.el"; @@ -43329,7 +43730,7 @@ sha256 = "04fh4i8mydmvq58hd60lf0dglpcjqgzpwk93wqss72kpifwh68vc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/osx-dictionary"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/osx-dictionary"; sha256 = "13033fxc5vjd1f7mm6znmprcp3mwxbvblb2d25shr8d4imqqhv82"; name = "osx-dictionary"; }; @@ -43342,7 +43743,7 @@ osx-lib = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "osx-lib"; - version = "20160402.136"; + version = "20160402.236"; src = fetchFromGitHub { owner = "raghavgautam"; repo = "osx-lib"; @@ -43350,7 +43751,7 @@ sha256 = "1wbmqxx1qzjc5kxzkwx7c2wvq71iic1f5f29lj6ckpjn743dnb0d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/osx-lib"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/osx-lib"; sha256 = "12wvki8jhzqsanxv5yqzjmfx6ifwz9ab9zh6r8nss86bk8864ix4"; name = "osx-lib"; }; @@ -43363,7 +43764,7 @@ osx-location = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "osx-location"; - version = "20150613.417"; + version = "20150613.517"; src = fetchFromGitHub { owner = "purcell"; repo = "osx-location"; @@ -43371,7 +43772,7 @@ sha256 = "1csnxpsfnv9lv07kgvc60qx5c33sshmnz60p3qjz7ym7rnjy9b5x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/osx-location"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/osx-location"; sha256 = "1p12mmrw70p3b04zlprkdxdfnb7m3vkm6gci3fwhr5zyfvwxvn0c"; name = "osx-location"; }; @@ -43384,7 +43785,7 @@ osx-org-clock-menubar = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "osx-org-clock-menubar"; - version = "20150205.1511"; + version = "20150205.1611"; src = fetchFromGitHub { owner = "jordonbiondo"; repo = "osx-org-clock-menubar"; @@ -43392,7 +43793,7 @@ sha256 = "1rgykby1ysbapq53lnk9yy04r9q4qirnzs2abgvz7g2qjq5fyzag"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/osx-org-clock-menubar"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/osx-org-clock-menubar"; sha256 = "1y5qxslxl0d93f387nyj8zngz5nh1p4rzdfx0lnbvya6shfaxaf6"; name = "osx-org-clock-menubar"; }; @@ -43405,7 +43806,7 @@ osx-plist = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "osx-plist"; - version = "20101130.648"; + version = "20101130.748"; src = fetchFromGitHub { owner = "emacsmirror"; repo = "osx-plist"; @@ -43413,7 +43814,7 @@ sha256 = "0830kkmvc3ss7ygqfwz3j75s7mhxfxyadaksrp0v2cc4y6wn6nfv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/osx-plist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/osx-plist"; sha256 = "0zaqmhf5nm6jflwgxnknhi8zn97vhsia2xv8jm677l0h23pk2va8"; name = "osx-plist"; }; @@ -43426,7 +43827,7 @@ osx-pseudo-daemon = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "osx-pseudo-daemon"; - version = "20131026.1930"; + version = "20131026.2030"; src = fetchFromGitHub { owner = "DarwinAwardWinner"; repo = "osx-pseudo-daemon"; @@ -43434,7 +43835,7 @@ sha256 = "1j601gzizxjsvkw6bvih4a49iq05yfkw0ni77xbc5klc7x7s80hk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/osx-pseudo-daemon"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/osx-pseudo-daemon"; sha256 = "150fxj2phj5axnh5i8ws5fv2qzzmpyisch452wgxb604p56j7vy8"; name = "osx-pseudo-daemon"; }; @@ -43447,7 +43848,7 @@ osx-trash = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "osx-trash"; - version = "20150723.935"; + version = "20150723.1035"; src = fetchFromGitHub { owner = "lunaryorn"; repo = "osx-trash.el"; @@ -43455,7 +43856,7 @@ sha256 = "1l231168bjqz6lwzs0r9vihxi53d46csrr2gq7g33lg1zm3696ah"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/osx-trash"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/osx-trash"; sha256 = "1f6pi53mhp2pvrfjm8544lqqj36gzpzxq245lzvv91lvqkxr9ysj"; name = "osx-trash"; }; @@ -43468,7 +43869,7 @@ otama = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "otama"; - version = "20160404.532"; + version = "20160404.632"; src = fetchFromGitHub { owner = "yoshinari-nomura"; repo = "otama"; @@ -43476,7 +43877,7 @@ sha256 = "1jzyfvc25ls0l4kpxg6857ccynl1pzgxfif7bppz2nfmf99z4534"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/otama"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/otama"; sha256 = "04ffyscldb2sn2n26ixrnc07ybvl7iclv2hi1kmhr5hdgxwpyjq9"; name = "otama"; }; @@ -43489,7 +43890,7 @@ outline-magic = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "outline-magic"; - version = "20150209.1626"; + version = "20150209.1726"; src = fetchFromGitHub { owner = "tj64"; repo = "outline-magic"; @@ -43497,7 +43898,7 @@ sha256 = "116cwlhn7s47rhivz6113lh8lvaz3bjb3ynjlbx9hyf7gq3nfnxn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/outline-magic"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/outline-magic"; sha256 = "085yayzph3y7fh6pd5sdjdkhdcvwfzcyqd6y3xlbz7wni5ac6b5f"; name = "outline-magic"; }; @@ -43510,7 +43911,7 @@ outlined-elisp-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "outlined-elisp-mode"; - version = "20131108.527"; + version = "20131108.627"; src = fetchFromGitHub { owner = "zk-phi"; repo = "outlined-elisp-mode"; @@ -43518,7 +43919,7 @@ sha256 = "0d9hfr4kb6rkhwacdn70bkfchgam26gj92zfyaqw77a2sgwcmwwv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/outlined-elisp-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/outlined-elisp-mode"; sha256 = "165sivmv5h4nvh08ampq95x6b0bkzxgrdjbxjxlq6rv00vaidn7v"; name = "outlined-elisp-mode"; }; @@ -43531,7 +43932,7 @@ outorg = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "outorg"; - version = "20160327.332"; + version = "20160327.432"; src = fetchFromGitHub { owner = "tj64"; repo = "outorg"; @@ -43539,7 +43940,7 @@ sha256 = "0szvynvw16vr7br95pssqkil0xnfdh46x8lgan4z9v6impdav0nf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/outorg"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/outorg"; sha256 = "04swss84p33a9baa4swqc1a9lfp6wziqrwa7vcyi3y0yzllx36cx"; name = "outorg"; }; @@ -43552,7 +43953,7 @@ outshine = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, outorg }: melpaBuild { pname = "outshine"; - version = "20160416.1046"; + version = "20160416.1146"; src = fetchFromGitHub { owner = "tj64"; repo = "outshine"; @@ -43560,7 +43961,7 @@ sha256 = "1smfdfw0swvfbqlxi7nkrgbmfqhs0x47ky6xhgf38la1s6ivh29n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/outshine"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/outshine"; sha256 = "1ajddzcrnvfgx3xa5wm0bcll9dax52syg1p521mv0ffkld63jyfl"; name = "outshine"; }; @@ -43573,7 +43974,7 @@ ov = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ov"; - version = "20150312.28"; + version = "20150312.128"; src = fetchFromGitHub { owner = "ShingoFukuyama"; repo = "ov.el"; @@ -43581,7 +43982,7 @@ sha256 = "1rk5pzm5wmdq68d99hhhbq8pq37bnph0dip5j2jnfj6zsw70whr2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ov"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ov"; sha256 = "0d71mpv74cfxcnwixbrl90nr22cw4kv5sdgpny5wycvh6cgmd6qb"; name = "ov"; }; @@ -43594,15 +43995,15 @@ overseer = callPackage ({ dash, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, pkg-info }: melpaBuild { pname = "overseer"; - version = "20160416.358"; + version = "20160506.347"; src = fetchFromGitHub { owner = "tonini"; repo = "overseer.el"; - rev = "e66033c7dd43d7180ac68e7d38892f88fffa9a1d"; - sha256 = "1s6q253nhalqbykh95ns0mnh4piasfh8i0l76k9nxvw1ksh88b4k"; + rev = "7eb4e68a73fdf87657e1a0dfe4ed559ca1a68aee"; + sha256 = "073lfn1ag8vbcrqsbmkn8zzcm9w2jil605gfdj1bzx18hrfljvyk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/overseer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/overseer"; sha256 = "04wfwcal051jrnmm5dga6vl4c9j10pm416586yxb8smi6fxws2jg"; name = "overseer"; }; @@ -43615,7 +44016,7 @@ owdriver = callPackage ({ fetchFromGitHub, fetchurl, lib, log4e, melpaBuild, smartrep, yaxception }: melpaBuild { pname = "owdriver"; - version = "20141011.938"; + version = "20141011.1038"; src = fetchFromGitHub { owner = "aki2o"; repo = "owdriver"; @@ -43623,7 +44024,7 @@ sha256 = "0f2psx4lq98l3q3fnibsfqxp2hvvwk7b30zjvjlry3bffg3l7pfk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/owdriver"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/owdriver"; sha256 = "0j8z7ynan0zj581x50gsi9lljkbi6bwmzpfyha3i6q8ch5qkdxfd"; name = "owdriver"; }; @@ -43636,7 +44037,7 @@ ox-asciidoc = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org }: melpaBuild { pname = "ox-asciidoc"; - version = "20160120.723"; + version = "20160120.823"; src = fetchFromGitHub { owner = "yashi"; repo = "org-asciidoc"; @@ -43644,7 +44045,7 @@ sha256 = "03ivnvqxc5xdcik4skk32fhr686yv2y5mj8w7v27dhyc0vdpfhvy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ox-asciidoc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ox-asciidoc"; sha256 = "07b549dqyh1gk226d7zbls1mw6q4mas7kbfwkansmyykax0r2zyr"; name = "ox-asciidoc"; }; @@ -43657,7 +44058,7 @@ ox-gfm = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ox-gfm"; - version = "20160324.520"; + version = "20160324.620"; src = fetchFromGitHub { owner = "larstvei"; repo = "ox-gfm"; @@ -43665,7 +44066,7 @@ sha256 = "0hsbbsy0kyrmrcc6rkq75v5walrb8krvly5mm3vlmcahm1g4x2vb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ox-gfm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ox-gfm"; sha256 = "065ngmzfd3g2h8n903hc4d363hz4z5rrdgizh2xpz03kf3plca6q"; name = "ox-gfm"; }; @@ -43678,7 +44079,7 @@ ox-html5slide = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org }: melpaBuild { pname = "ox-html5slide"; - version = "20131228.6"; + version = "20131228.106"; src = fetchFromGitHub { owner = "coldnew"; repo = "org-html5slide"; @@ -43686,7 +44087,7 @@ sha256 = "19h3w3fcas60jv02v7hxjmh05804sb7bif70jssq3qwisj0j09xm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ox-html5slide"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ox-html5slide"; sha256 = "0nqk6chg0ky98ap2higa74786prj7dbwx2a3l67m0llmdajw76qn"; name = "ox-html5slide"; }; @@ -43699,7 +44100,7 @@ ox-impress-js = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org }: melpaBuild { pname = "ox-impress-js"; - version = "20150412.1216"; + version = "20150412.1316"; src = fetchFromGitHub { owner = "kinjo"; repo = "org-impress-js.el"; @@ -43707,7 +44108,7 @@ sha256 = "1kf2si2lyy0xc971bx5zd2j9mnz1smc9s8l0dwc6iksh2v9q8cy9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ox-impress-js"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ox-impress-js"; sha256 = "0p0cc51lmxgl0xv951ybdg5n8gbzv8qf0chfgigijizzjypxc21l"; name = "ox-impress-js"; }; @@ -43720,7 +44121,7 @@ ox-ioslide = callPackage ({ cl-lib ? null, emacs, f, fetchFromGitHub, fetchurl, lib, makey, melpaBuild, org }: melpaBuild { pname = "ox-ioslide"; - version = "20160120.1005"; + version = "20160120.1105"; src = fetchFromGitHub { owner = "coldnew"; repo = "org-ioslide"; @@ -43728,7 +44129,7 @@ sha256 = "0p03xzldz5v8lx3ip2pgll0da00ldfxmhr6r3jahwp6692kxpr6j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ox-ioslide"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ox-ioslide"; sha256 = "0z0qnvpw64wxbgz8203rphswlh9hd2i11pz2mlay8l3bzz4gx4vc"; name = "ox-ioslide"; }; @@ -43741,7 +44142,7 @@ ox-jira = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org }: melpaBuild { pname = "ox-jira"; - version = "20160426.753"; + version = "20160426.853"; src = fetchFromGitHub { owner = "stig"; repo = "ox-jira.el"; @@ -43749,7 +44150,7 @@ sha256 = "0csl9fcfwnpl6x3ld7xrlvgz6gwmgcd15a4zdc570w8vp26ra5k9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ox-jira"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ox-jira"; sha256 = "0bm7i1ambd71xmy1y9jcdh52irgcsziwwb9d3y3rq0pnsqv5cpvp"; name = "ox-jira"; }; @@ -43762,7 +44163,7 @@ ox-mediawiki = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "ox-mediawiki"; - version = "20150923.1102"; + version = "20150923.1202"; src = fetchFromGitHub { owner = "tomalexander"; repo = "orgmode-mediawiki"; @@ -43770,7 +44171,7 @@ sha256 = "0c2m02g6csg5fqizj3zqcm88q7w17kgvgi7swcx4fzz6rixnpsji"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ox-mediawiki"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ox-mediawiki"; sha256 = "0lijj2n4saw0xd3jaghbvx9v6a4ldl5gd8wy7s7hfcm30wb75cdb"; name = "ox-mediawiki"; }; @@ -43783,7 +44184,7 @@ ox-nikola = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, org, ox-rst }: melpaBuild { pname = "ox-nikola"; - version = "20151114.516"; + version = "20151114.616"; src = fetchFromGitHub { owner = "masayuko"; repo = "ox-nikola"; @@ -43791,7 +44192,7 @@ sha256 = "0cc14p6c3d4djfmrkac0abb2jq128vlmayv2a8cyvnyjffyvjbk7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ox-nikola"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ox-nikola"; sha256 = "1amplnazs9igfd382djq23d8j7r0knr0hwlpasd01aypc25c82a4"; name = "ox-nikola"; }; @@ -43804,7 +44205,7 @@ ox-pandoc = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, ht, lib, melpaBuild, org }: melpaBuild { pname = "ox-pandoc"; - version = "20151222.1753"; + version = "20151222.1853"; src = fetchFromGitHub { owner = "kawabata"; repo = "ox-pandoc"; @@ -43812,7 +44213,7 @@ sha256 = "0bawigwc6v5420642xlkyxdd0i82gicx69wqlnjf6lvhfvs990is"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ox-pandoc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ox-pandoc"; sha256 = "0wy6yvwd4vyq6xalkrshnfjjxlh1p24y52z49894nz5fl63b74xc"; name = "ox-pandoc"; }; @@ -43825,7 +44226,7 @@ ox-pukiwiki = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org }: melpaBuild { pname = "ox-pukiwiki"; - version = "20150124.1116"; + version = "20150124.1216"; src = fetchFromGitHub { owner = "yashi"; repo = "org-pukiwiki"; @@ -43833,7 +44234,7 @@ sha256 = "0adj6gm39qw4ivb7csfh21qqqipcnw1sgm1xdqvrk86kbs9k1b2g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ox-pukiwiki"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ox-pukiwiki"; sha256 = "10sfbri5hv5hyx9jc1bzlk4qmzfmpfgfy8wkjkpv7lv2x0axqd8a"; name = "ox-pukiwiki"; }; @@ -43846,15 +44247,15 @@ ox-reveal = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org }: melpaBuild { pname = "ox-reveal"; - version = "20160224.2019"; + version = "20160504.2308"; src = fetchFromGitHub { owner = "yjwen"; repo = "org-reveal"; - rev = "c4b6e7c3d6cb637cae65c0b1fe13755546ab690e"; - sha256 = "15yzfd3bc91lfhf64spyhm94byih6fgn8s7wknkz7znvw2fbjwzv"; + rev = "45f1e3b58632ce1aefba6aa8612e51b7122ed2f2"; + sha256 = "0pmshd58945h843c5hgzcz169kfzrwmkdzh7rv1cci783z3cxxdc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ox-reveal"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ox-reveal"; sha256 = "092swxkkisvj2y18ynal8dn7wcfi7h4y6n0dlzqq28bfflarbwik"; name = "ox-reveal"; }; @@ -43867,7 +44268,7 @@ ox-rst = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, org }: melpaBuild { pname = "ox-rst"; - version = "20151115.143"; + version = "20151115.243"; src = fetchFromGitHub { owner = "masayuko"; repo = "ox-rst"; @@ -43875,7 +44276,7 @@ sha256 = "1js4n8iwimc86fp2adzhbhy4ixss1yqngjd8gq7pxgpgmnhd66x3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ox-rst"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ox-rst"; sha256 = "1vyj6frrl7328n2x7vc3qwv3ssdhi8bp6ja5h2q4bqalc6bl1pq0"; name = "ox-rst"; }; @@ -43888,7 +44289,7 @@ ox-textile = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org }: melpaBuild { pname = "ox-textile"; - version = "20151114.2225"; + version = "20151114.2325"; src = fetchFromGitHub { owner = "yashi"; repo = "org-textile"; @@ -43896,7 +44297,7 @@ sha256 = "1r9c4s9f7cvxxzf9h07rg75bil0295zq1inh5i4r6za5jabkr4dg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ox-textile"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ox-textile"; sha256 = "01kri7vh16xhy8x5qd6s5z08xr0q964rk6xrligdb3i6x78wfvi4"; name = "ox-textile"; }; @@ -43909,7 +44310,7 @@ ox-tiddly = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, org }: melpaBuild { pname = "ox-tiddly"; - version = "20151206.440"; + version = "20151206.540"; src = fetchFromGitHub { owner = "dfeich"; repo = "org8-wikiexporters"; @@ -43917,7 +44318,7 @@ sha256 = "05rlfykwvfir177bvqa7nvwmzn1amhpaizfmyjzi73d78h062vcl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ox-tiddly"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ox-tiddly"; sha256 = "196i8lzxv2smpj5yhmiqwazn4pvc14yqyzasrgimhv3vi2xnxlfb"; name = "ox-tiddly"; }; @@ -43930,7 +44331,7 @@ ox-trac = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org }: melpaBuild { pname = "ox-trac"; - version = "20151102.1155"; + version = "20151102.1255"; src = fetchFromGitHub { owner = "JalapenoGremlin"; repo = "ox-trac"; @@ -43938,7 +44339,7 @@ sha256 = "0w6963jvz1sk732nh18735dxivd6nl59jd4m26ps6l4wqhqby0db"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ox-trac"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ox-trac"; sha256 = "0f8b3i83vzxzfa91p4ahlqz6njql18xy5nk265sjxpy9zr898rsa"; name = "ox-trac"; }; @@ -43951,7 +44352,7 @@ ox-twbs = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ox-twbs"; - version = "20160307.58"; + version = "20160307.158"; src = fetchFromGitHub { owner = "marsmining"; repo = "ox-twbs"; @@ -43959,7 +44360,7 @@ sha256 = "0yrac13xiyfxipy5qyq56jg7151wjs3xv4gpsarx4hkrxi96apbi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ox-twbs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ox-twbs"; sha256 = "15csgnph5wh2dvcc2dnvrlm7whh428rq8smqji1509ib7aw9y5mx"; name = "ox-twbs"; }; @@ -43972,7 +44373,7 @@ ox-twiki = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, org }: melpaBuild { pname = "ox-twiki"; - version = "20160306.1115"; + version = "20160306.1215"; src = fetchFromGitHub { owner = "dfeich"; repo = "org8-wikiexporters"; @@ -43980,7 +44381,7 @@ sha256 = "05rlfykwvfir177bvqa7nvwmzn1amhpaizfmyjzi73d78h062vcl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ox-twiki"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ox-twiki"; sha256 = "1p1k0yg5fxcjgwpq2ix9ckh2kn69m7d5rnz76h14hw9p72cb54r0"; name = "ox-twiki"; }; @@ -43993,7 +44394,7 @@ p4 = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "p4"; - version = "20150721.1437"; + version = "20150721.1537"; src = fetchFromGitHub { owner = "gareth-rees"; repo = "p4.el"; @@ -44001,7 +44402,7 @@ sha256 = "12jsnfppif4l548wymvakx0f2zlm63xs6kfrb49hicmk668cq4ra"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/p4"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/p4"; sha256 = "0215li17gn35wmvd84gnp4hkwa2jd81wz4frb1cba2b5j33rlprc"; name = "p4"; }; @@ -44014,7 +44415,7 @@ pabbrev = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pabbrev"; - version = "20160320.1601"; + version = "20160320.1701"; src = fetchFromGitHub { owner = "phillord"; repo = "pabbrev"; @@ -44022,7 +44423,7 @@ sha256 = "09bn19ydyz1hncmvyyh87gczp3lmlczpm352p0107z1gw6xmpjil"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pabbrev"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pabbrev"; sha256 = "1mbfa40pbzbi00sp155zm43sj6nw221mcayc2rk3ppin9ps95hx3"; name = "pabbrev"; }; @@ -44035,15 +44436,15 @@ package-build = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "package-build"; - version = "20160326.2052"; + version = "20160430.2001"; src = fetchFromGitHub { owner = "melpa"; repo = "melpa"; - rev = "e64cad81615ef3ec34fab1f438b0c55134833c97"; - sha256 = "1lvpzdg5wqnhdqhf2026mcznpyrslwmzpxzy6n3i193p3q2haqnd"; + rev = "0d77aee0b1b2eb7834436bdfa339f95cb97da140"; + sha256 = "1x7swj5sjgbwq63ll6kb59c8q80ja7l1v2s016rcnn1jq607sj56"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/package-build"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/package-build"; sha256 = "0618z43j6628jjj448hcigvsfwcs7p0n4bbcmqscrb6p59b7n4wx"; name = "package-build"; }; @@ -44056,7 +44457,7 @@ package-filter = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "package-filter"; - version = "20140105.1626"; + version = "20140105.1726"; src = fetchFromGitHub { owner = "milkypostman"; repo = "package-filter"; @@ -44064,7 +44465,7 @@ sha256 = "0i7f8ambcrhyqq15xwlk31jjdcii2hr37y45va8m5w6n9mkpz8c6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/package-filter"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/package-filter"; sha256 = "0am73zch2fy1hfjwzk8kg0j3lgbcz3hzxjrdf0j0a9w0myp0mmjm"; name = "package-filter"; }; @@ -44077,7 +44478,7 @@ package-plus = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "package-plus"; - version = "20150319.1655"; + version = "20150319.1755"; src = fetchFromGitHub { owner = "zenspider"; repo = "package"; @@ -44085,7 +44486,7 @@ sha256 = "1xv0ra130qg0ksgqi4npspnv0ckq77k7f5kcibavj030h578kj97"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/package+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/package+"; sha256 = "1mbsxr4llz8ny7n7w3lykld9yvbaywlfqnvr9l0aiv9rvmdv03bn"; name = "package-plus"; }; @@ -44098,7 +44499,7 @@ package-safe-delete = callPackage ({ emacs, epl, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "package-safe-delete"; - version = "20150116.1007"; + version = "20150116.1107"; src = fetchFromGitHub { owner = "Fanael"; repo = "package-safe-delete"; @@ -44106,7 +44507,7 @@ sha256 = "1pdv6d6bm5jmpgjqf9ycvzasxz1205zdi0zjrmkr33c03azwz7rd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/package-safe-delete"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/package-safe-delete"; sha256 = "12ss5yjhnyxsif4vlbgxamn5jfa0wxkkphffxnv6drhvmpq226jw"; name = "package-safe-delete"; }; @@ -44119,7 +44520,7 @@ package-utils = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "package-utils"; - version = "20160307.320"; + version = "20160307.420"; src = fetchFromGitHub { owner = "Silex"; repo = "package-utils"; @@ -44127,7 +44528,7 @@ sha256 = "1pcpr8ls0sqph098lrb6n8fbsm8rq8imglfx3m8zzyw78q9hwcjx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/package-utils"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/package-utils"; sha256 = "02hgh7wg68ysfhw5hckrpshzv4vm1vnm395d34x6vpgl4ccx7v9r"; name = "package-utils"; }; @@ -44140,7 +44541,7 @@ packed = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "packed"; - version = "20160409.1151"; + version = "20160409.1251"; src = fetchFromGitHub { owner = "tarsius"; repo = "packed"; @@ -44148,7 +44549,7 @@ sha256 = "1zzm43x0y90j4cr4zpwn3fs8apl7n0jhl6qlfkcbar7bb62pi66q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/packed"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/packed"; sha256 = "0sw7d2l17bq471i4isrf2xf0z85nqqiciw25whw0c0chdzwzai6z"; name = "packed"; }; @@ -44161,7 +44562,7 @@ pacmacs = callPackage ({ cl-lib ? null, dash, dash-functional, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pacmacs"; - version = "20160131.232"; + version = "20160131.332"; src = fetchFromGitHub { owner = "codingteam"; repo = "pacmacs.el"; @@ -44169,7 +44570,7 @@ sha256 = "0zx72qbqy2n1r6mjylw67zb6nnchp2b49vsdyl0k5bdaq2xyqv6i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pacmacs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pacmacs"; sha256 = "0w0r6z365jrglpbifb94w6c22wqi9x93qgkss9pn820hrndqbqxy"; name = "pacmacs"; }; @@ -44179,10 +44580,31 @@ license = lib.licenses.free; }; }) {}; + paganini-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "paganini-theme"; + version = "20160503.337"; + src = fetchFromGitHub { + owner = "onurtemizkan"; + repo = "paganini"; + rev = "6e40d5c0d0115b33be96294dae469df94bec60d0"; + sha256 = "0w9w0ypnisx9xs5nbnar9i477iipyzhpvfgnlkgsyprl8h6sdjm9"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/paganini-theme"; + sha256 = "1kypkf52hjlfj75pcmjf2a60m6iwj0y1dspjwqynzz3l48i6ippm"; + name = "paganini-theme"; + }; + packageRequires = [ emacs ]; + meta = { + homepage = "https://melpa.org/#/paganini-theme"; + license = lib.licenses.free; + }; + }) {}; page-break-lines = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "page-break-lines"; - version = "20160109.2013"; + version = "20160109.2113"; src = fetchFromGitHub { owner = "purcell"; repo = "page-break-lines"; @@ -44190,7 +44612,7 @@ sha256 = "0mqd18w98p6z0i08xx7jga10ljh9360x6sqfyvfq6bjfi2jvxdbk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/page-break-lines"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/page-break-lines"; sha256 = "0q1166z190dxznzgf2f29klj2jkaqlic483p4h3bylihkqp93ij7"; name = "page-break-lines"; }; @@ -44203,7 +44625,7 @@ pager = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pager"; - version = "20100330.1331"; + version = "20100330.1431"; src = fetchFromGitHub { owner = "emacsorphanage"; repo = "pager"; @@ -44211,7 +44633,7 @@ sha256 = "1dq5ibz7rx9a7gm9zq2pz4c1sxgrm59yibyq92bvmi68lvf2q851"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pager"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pager"; sha256 = "0s5zwimkbsivbwlyd7g8dpnjyzqcfc5plg53ij4sljiipgjh5brl"; name = "pager"; }; @@ -44224,7 +44646,7 @@ pager-default-keybindings = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, pager }: melpaBuild { pname = "pager-default-keybindings"; - version = "20130719.1557"; + version = "20130719.1657"; src = fetchFromGitHub { owner = "nflath"; repo = "pager-default-keybindings"; @@ -44232,7 +44654,7 @@ sha256 = "11msqs8v9wn8sj45dw1fl0ldi3sw33v0xclynbxgmawyabfq3bqm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pager-default-keybindings"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pager-default-keybindings"; sha256 = "0vqb3s1fxkl1fxxspq89344s55sfcplz26z0pbh347l1681h3pci"; name = "pager-default-keybindings"; }; @@ -44244,13 +44666,13 @@ }) {}; palette = callPackage ({ fetchurl, hexrgb, lib, melpaBuild }: melpaBuild { pname = "palette"; - version = "20151231.1745"; + version = "20151231.1845"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/palette.el"; sha256 = "1qnv84y0s437xcsjxh0gs9rb36pydba3qfrihvz5pqs9g9w7m94k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/palette"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/palette"; sha256 = "1v6dsph18rqfbvda2c25mqgdwap2a4zrg6qqq57n205zprpcwxc0"; name = "palette"; }; @@ -44263,7 +44685,7 @@ palimpsest = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "palimpsest"; - version = "20130731.1021"; + version = "20130731.1121"; src = fetchFromGitHub { owner = "danielsz"; repo = "Palimpsest"; @@ -44271,7 +44693,7 @@ sha256 = "1kbja107smdjqv82p84jx13jk1410c9vms89p1iy1jvn7s8g9fiq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/palimpsest"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/palimpsest"; sha256 = "18kklfdlcg982pdrslh0xqa42h28f91bdm7q2zn890d6dcivp6bk"; name = "palimpsest"; }; @@ -44284,7 +44706,7 @@ pallet = callPackage ({ cask, dash, f, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "pallet"; - version = "20150512.202"; + version = "20150512.302"; src = fetchFromGitHub { owner = "rdallasgray"; repo = "pallet"; @@ -44292,7 +44714,7 @@ sha256 = "03mlg6dmpjw8fq2s3c4gpqj20kjhzldz3m51bf6s0mxq9bclx2xw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pallet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pallet"; sha256 = "0q50cdwnn2w1n5h4bappncjjyi5yaixxannwgy23fngdrz1mxwd7"; name = "pallet"; }; @@ -44305,7 +44727,7 @@ pandoc-mode = callPackage ({ dash, fetchFromGitHub, fetchurl, hydra, lib, melpaBuild }: melpaBuild { pname = "pandoc-mode"; - version = "20160406.149"; + version = "20160406.249"; src = fetchFromGitHub { owner = "joostkremers"; repo = "pandoc-mode"; @@ -44313,7 +44735,7 @@ sha256 = "0hdrhjghr570w50ilc0q4wl89msgdlhb19p2k5m84qc8m6qdl2v0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pandoc-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pandoc-mode"; sha256 = "0qvc6cf87h1jqf590kd68jfg25snxaxayfds634wj4z6gp70l781"; name = "pandoc-mode"; }; @@ -44326,7 +44748,7 @@ pangu-spacing = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pangu-spacing"; - version = "20150927.224"; + version = "20150927.324"; src = fetchFromGitHub { owner = "coldnew"; repo = "pangu-spacing"; @@ -44334,7 +44756,7 @@ sha256 = "0bcqc4r0v02v99llphk8s0mj38gxk87a3jqcp8v4sb9040dkm8gd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pangu-spacing"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pangu-spacing"; sha256 = "082qh26vlk7kifz1800lyai17yvngwjygrfrsh1dsd8dxhk6l9j8"; name = "pangu-spacing"; }; @@ -44347,7 +44769,7 @@ paper-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, hexrgb, lib, melpaBuild }: melpaBuild { pname = "paper-theme"; - version = "20151231.1132"; + version = "20151231.1232"; src = fetchFromGitHub { owner = "cadadr"; repo = "paper-theme"; @@ -44355,7 +44777,7 @@ sha256 = "1xh614czldjvfl66vhkyaai5k4qsg1l3mz6wd5b1w6kd45qrc54i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/paper-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/paper-theme"; sha256 = "04diqm2c9fm29zyms3hplkzb4kb7b2kyrxdsy0jxyjj5kabypd50"; name = "paper-theme"; }; @@ -44368,7 +44790,7 @@ paradox = callPackage ({ emacs, fetchFromGitHub, fetchurl, hydra, let-alist, lib, melpaBuild, seq, spinner }: melpaBuild { pname = "paradox"; - version = "20160323.1410"; + version = "20160323.1510"; src = fetchFromGitHub { owner = "Malabarba"; repo = "paradox"; @@ -44376,7 +44798,7 @@ sha256 = "0bbpmrprc1bzil8xh2grnivxlfbjs252717rn7rq0nccdflp4akz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/paradox"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/paradox"; sha256 = "1xq14nfvprsq18464qr4mhphq7cl1f570lji5n8z6j9vpfm9a4p2"; name = "paradox"; }; @@ -44386,29 +44808,10 @@ license = lib.licenses.free; }; }) {}; - paredit = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: melpaBuild { - pname = "paredit"; - version = "20160324.1415"; - src = fetchgit { - url = "http://mumble.net/~campbell/git/paredit.git"; - rev = "2f6f67283c6c41af5a74271fc025c2e837f3d2a2"; - sha256 = "14k1xakdr58647cnq8ky73sh5j94jc6vls05jdxkbv681krdvqvj"; - }; - recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/paredit"; - sha256 = "1rp859y4qyqdfvp261l8mmbd62p1pw0dypm1mng6838b6q6ycakr"; - name = "paredit"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/paredit"; - license = lib.licenses.free; - }; - }) {}; paredit-everywhere = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, paredit }: melpaBuild { pname = "paredit-everywhere"; - version = "20150821.2344"; + version = "20150822.44"; src = fetchFromGitHub { owner = "purcell"; repo = "paredit-everywhere"; @@ -44416,7 +44819,7 @@ sha256 = "1jkpb67h96sm3fnga9hrg3kwhlp3czdv66v49a9szq174zpsnrgv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/paredit-everywhere"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/paredit-everywhere"; sha256 = "0gbkwk8mrbjr2l8pz3q4y6j8q4m12zmzl31c88ngs1k5d86wav36"; name = "paredit-everywhere"; }; @@ -44429,7 +44832,7 @@ paredit-menu = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, paredit }: melpaBuild { pname = "paredit-menu"; - version = "20160128.1133"; + version = "20160128.1233"; src = fetchFromGitHub { owner = "phillord"; repo = "paredit-menu"; @@ -44437,7 +44840,7 @@ sha256 = "15xkanrwxh3qqay3vkfqvhzs88g7nnfv9bqk509qflyhqnvc9sxr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/paredit-menu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/paredit-menu"; sha256 = "05jp4cc548x5f07k096dgizhivdpaajxq38hin831sm0p9cibm4p"; name = "paredit-menu"; }; @@ -44450,15 +44853,15 @@ paren-completer = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "paren-completer"; - version = "20150711.1723"; + version = "20160501.652"; src = fetchFromGitHub { owner = "MatthewBregg"; repo = "paren-completer"; - rev = "afb6d596ffac85b3457178cfdb384cd2a382b120"; - sha256 = "0fds9s16c0dgq6ah98x4pv5bgwbikqwiikcxjzmk9g1m3s232fl8"; + rev = "74183a8e13fa1266271bdcbcb4bfb29a4f915f0a"; + sha256 = "1il0gbyjnlxhk04z3lgxmvlmlhgc94rmxdf8nl5sk3gblqmr8v3b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/paren-completer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/paren-completer"; sha256 = "0xh17h8vmsgbrq6yf5sfy3kpia4za68f43gwgkvi2m430g15fr0x"; name = "paren-completer"; }; @@ -44471,7 +44874,7 @@ paren-face = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "paren-face"; - version = "20160424.635"; + version = "20160424.735"; src = fetchFromGitHub { owner = "tarsius"; repo = "paren-face"; @@ -44479,7 +44882,7 @@ sha256 = "1l0rq3k78k68ky58bv1mhya3mnl7n5wgr88n95na2lcil1dk8ghh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/paren-face"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/paren-face"; sha256 = "0dmzk66m3rd8x0rb925pyrfpc2qsvayks4kmhpb2ccdrx68pg8gf"; name = "paren-face"; }; @@ -44492,7 +44895,7 @@ parent-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "parent-mode"; - version = "20150824.1800"; + version = "20150824.1900"; src = fetchFromGitHub { owner = "Fanael"; repo = "parent-mode"; @@ -44500,7 +44903,7 @@ sha256 = "0i5bc7lyyrx6swqlrp9l5x72yzwi53qn6ldrfs99gh08b3yvsnni"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/parent-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/parent-mode"; sha256 = "1ndn6m6aasmk9yrml9xqj8141100nw7qi1bhnlsss3v8b6njwwig"; name = "parent-mode"; }; @@ -44513,7 +44916,7 @@ parse-csv = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "parse-csv"; - version = "20140203.316"; + version = "20140203.416"; src = fetchFromGitHub { owner = "mrc"; repo = "el-csv"; @@ -44521,7 +44924,7 @@ sha256 = "1z8cp1cdkxmdqislixxvncj0s1jx42i6arx48kdl5paymnnp282s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/parse-csv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/parse-csv"; sha256 = "0khpfxbarw0plx8kka357d8wl1vvdih5797xlld9adc0g3cng0zz"; name = "parse-csv"; }; @@ -44534,7 +44937,7 @@ parsebib = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "parsebib"; - version = "20151006.432"; + version = "20151006.532"; src = fetchFromGitHub { owner = "joostkremers"; repo = "parsebib"; @@ -44542,7 +44945,7 @@ sha256 = "0n91whyjnrdhb9bqfif01ygmwv5biwpz2pvjv5w5y1d4g0k1x9ml"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/parsebib"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/parsebib"; sha256 = "07br2x68scsxykdk2ajc4mfqhdb7vjkcfgz3vnpy91sirxzgfjdd"; name = "parsebib"; }; @@ -44555,7 +44958,7 @@ pass = callPackage ({ emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, password-store }: melpaBuild { pname = "pass"; - version = "20160214.435"; + version = "20160214.535"; src = fetchFromGitHub { owner = "NicolasPetton"; repo = "pass"; @@ -44563,7 +44966,7 @@ sha256 = "0npm5kv00fcnb5ajj76jp1dc84zxp7fgrkn472yxdq4hppvx0ixv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pass"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pass"; sha256 = "1vvyvnqf6k7wm0p45scwi6ny86slkrcbr36lnxdlkf96cqyrqzfr"; name = "pass"; }; @@ -44576,7 +44979,7 @@ passthword = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "passthword"; - version = "20141201.323"; + version = "20141201.423"; src = fetchFromGitHub { owner = "pidu"; repo = "passthword"; @@ -44584,7 +44987,7 @@ sha256 = "0yckh61v9a798gpyk8x2z9990h3b61lwsw0kish571pygfyqhjkq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/passthword"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/passthword"; sha256 = "076jayziipjx260yk3p37pf5k0qsagalidah3y6hiflrlq4sfgjn"; name = "passthword"; }; @@ -44597,7 +45000,7 @@ password-generator = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "password-generator"; - version = "20150222.1440"; + version = "20150222.1540"; src = fetchFromGitHub { owner = "zargener"; repo = "emacs-password-genarator"; @@ -44605,7 +45008,7 @@ sha256 = "1pw401ar114wpayibphv3n6m0gz68zjmiwz60r4lbar45bmxvihx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/password-generator"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/password-generator"; sha256 = "0aahpplmiwmp6a06y6hl4zvv8lvzkmakmaazlckl5r3rqbsf24cb"; name = "password-generator"; }; @@ -44618,14 +45021,14 @@ password-store = callPackage ({ f, fetchgit, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "password-store"; - version = "20151027.1649"; + version = "20151027.1749"; src = fetchgit { url = "http://git.zx2c4.com/password-store"; rev = "0b2f803fe61992af02b8820c400984b1f615a299"; sha256 = "11cq7wz57zc649zww720cdfa9rqyjl9gf9h0m96wfapm4mhczd1n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/password-store"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/password-store"; sha256 = "1jh24737l4hccr1k0b9fnq45ag2dsk84fnfs86hcgsadl94d6kss"; name = "password-store"; }; @@ -44638,7 +45041,7 @@ password-vault = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "password-vault"; - version = "20160126.1220"; + version = "20160126.1320"; src = fetchFromGitHub { owner = "PuercoPop"; repo = "password-vault"; @@ -44646,7 +45049,7 @@ sha256 = "0921xwg3d3345hiqz4c1iyqwvfyg8rv0wggcnig7xh9qivspag4c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/password-vault"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/password-vault"; sha256 = "17i556xwq6yaxv9v18l1abcpbaz6hygsa4vf4b68fc98vcy7396a"; name = "password-vault"; }; @@ -44659,7 +45062,7 @@ pastebin = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pastebin"; - version = "20101125.1402"; + version = "20101125.1502"; src = fetchFromGitHub { owner = "nicferrier"; repo = "elpastebin"; @@ -44667,7 +45070,7 @@ sha256 = "1hjzpza8zmzb83sacmqcnh9a52m4x5d8xbwvcqvld1ajglv4y124"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pastebin"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pastebin"; sha256 = "0ff01vzslgdmsj1jp1m2lvnan6immd4l7vz466g1glb5nkb7qfcr"; name = "pastebin"; }; @@ -44680,7 +45083,7 @@ pastehub = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pastehub"; - version = "20140615.120"; + version = "20140615.220"; src = fetchFromGitHub { owner = "kiyoka"; repo = "pastehub"; @@ -44688,7 +45091,7 @@ sha256 = "0m6qjsq6qfwwszm95lj8c58l75vbmx9r5hm9bfywyympfgy0fa1n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pastehub"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pastehub"; sha256 = "1slvqn5ay6gkbi0ai1gy1wmc02h4g3n6srrh4fqn72y7b9nv5i0v"; name = "pastehub"; }; @@ -44701,7 +45104,7 @@ pastelmac-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pastelmac-theme"; - version = "20151030.2136"; + version = "20151030.2236"; src = fetchFromGitHub { owner = "bmastenbrook"; repo = "pastelmac-theme-el"; @@ -44709,7 +45112,7 @@ sha256 = "1v5mpjb8kavbqhvg4rizwg8cypgmi6ngdiy8qp9pimmkb56y42ly"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pastelmac-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pastelmac-theme"; sha256 = "168zzqhp2dbfcnknwfqxk68rgmibfw71ksghvi6h2j2c1m08l23f"; name = "pastelmac-theme"; }; @@ -44722,14 +45125,14 @@ pastels-on-dark-theme = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pastels-on-dark-theme"; - version = "20120304.1222"; + version = "20120304.1322"; src = fetchgit { url = "https://gist.github.com/1974259.git"; rev = "854839a0b4bf8c3f6a7d947926bf41d690547002"; sha256 = "1ar6rf2ykd252y8ahx0lca7xsgfs6ff287q9iij79gs9fhn4yfy5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pastels-on-dark-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pastels-on-dark-theme"; sha256 = "0zdr29793gg229r47yjb3plagxc9pszqyy4sx81ffp3rpdf0nlbh"; name = "pastels-on-dark-theme"; }; @@ -44742,7 +45145,7 @@ path-headerline-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "path-headerline-mode"; - version = "20140423.832"; + version = "20140423.932"; src = fetchFromGitHub { owner = "7696122"; repo = "path-headerline-mode"; @@ -44750,7 +45153,7 @@ sha256 = "1ffnkw8djs8kvfjd1crnaqram1vl4w3g1zhsqp74ds0mccsd6830"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/path-headerline-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/path-headerline-mode"; sha256 = "0dwr8iyq62ad5xkh7r4kpywpypdq1wljsdzwqbq9zdr79yfqx337"; name = "path-headerline-mode"; }; @@ -44763,7 +45166,7 @@ pathify = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pathify"; - version = "20160423.346"; + version = "20160423.446"; src = fetchFromGitHub { owner = "alezost"; repo = "pathify.el"; @@ -44771,7 +45174,7 @@ sha256 = "0wsq11qffw1lx9x79law7jrz0sxm6km83gh891ic9ak2y6j5shxf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pathify"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pathify"; sha256 = "1z970xnzbhmfikj1rkfx24jvwc7f1xxw6hk7kmahxvphjxrvgc2f"; name = "pathify"; }; @@ -44784,7 +45187,7 @@ paxedit = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, paredit }: melpaBuild { pname = "paxedit"; - version = "20160102.2021"; + version = "20160102.2121"; src = fetchFromGitHub { owner = "promethial"; repo = "paxedit"; @@ -44792,7 +45195,7 @@ sha256 = "0kkgqaxyrv65rfg2ng1vmmmrc9bm98yqpsv2pcb760287dn0l27m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/paxedit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/paxedit"; sha256 = "06ymilr0zrwfpyzql7dcpg48lhkx73f2jlaw3caxgsjaz7x3n4ic"; name = "paxedit"; }; @@ -44805,7 +45208,7 @@ pbcopy = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pbcopy"; - version = "20150224.2259"; + version = "20150224.2359"; src = fetchFromGitHub { owner = "emacsfodder"; repo = "pbcopy.el"; @@ -44813,7 +45216,7 @@ sha256 = "138w0dlp3msjmr2x09kfcnxwhdldbz9xjfy7l6lig1x9ima0z5w6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pbcopy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pbcopy"; sha256 = "1989pkhaha6s2rmgyswnzps92x9hhzymjz4ng4a5jda1b9snp60q"; name = "pbcopy"; }; @@ -44826,7 +45229,7 @@ pc-bufsw = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pc-bufsw"; - version = "20150923.213"; + version = "20150923.313"; src = fetchFromGitHub { owner = "ibukanov"; repo = "pc-bufsw"; @@ -44834,7 +45237,7 @@ sha256 = "1jj5h92qakrn9d5d88dvl43b7ppw96rm11hqg3791i6k48nx1d1m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pc-bufsw"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pc-bufsw"; sha256 = "01d7735ininlsjkql7dy57irgwgk4k9br8bl18wq51vgkg90i5k5"; name = "pc-bufsw"; }; @@ -44847,7 +45250,7 @@ pcache = callPackage ({ eieio ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pcache"; - version = "20151109.839"; + version = "20151109.939"; src = fetchFromGitHub { owner = "sigma"; repo = "pcache"; @@ -44855,7 +45258,7 @@ sha256 = "0xbbq8ddlirhvv921nrf7bwazh0i98bk0a9xzyx8iqpyg66vbfa8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pcache"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pcache"; sha256 = "1q2wlbc58lyf3dxfs9ppdxvdsp81jmkq874zbd7f39wvc5ckbz0l"; name = "pcache"; }; @@ -44868,7 +45271,7 @@ pcmpl-args = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pcmpl-args"; - version = "20120912.24"; + version = "20120912.124"; src = fetchFromGitHub { owner = "JonWaltman"; repo = "pcmpl-args.el"; @@ -44876,7 +45279,7 @@ sha256 = "0pwx1nbgciy28rivvrgka46zihmag9ljrs40bvscgd9rkragm4zy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pcmpl-args"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pcmpl-args"; sha256 = "0sry4zvr8xmzyygf2m5dms52srkd1apj3i7a3aj23qa8jvndx8vr"; name = "pcmpl-args"; }; @@ -44889,7 +45292,7 @@ pcmpl-git = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pcmpl-git"; - version = "20160111.55"; + version = "20160111.155"; src = fetchFromGitHub { owner = "leoliu"; repo = "pcmpl-git-el"; @@ -44897,7 +45300,7 @@ sha256 = "0pspxgicc0mkypp94r0jydmkjr3ngv8y4w1xpj93kp79hnvyls0a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pcmpl-git"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pcmpl-git"; sha256 = "12y9pg1g4i1ghnjvgfdpa6p84h4bcqrr23y9bazwl9n6aj20cmxk"; name = "pcmpl-git"; }; @@ -44910,7 +45313,7 @@ pcmpl-homebrew = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pcmpl-homebrew"; - version = "20150506.2052"; + version = "20150506.2152"; src = fetchFromGitHub { owner = "hiddenlotus"; repo = "pcmpl-homebrew"; @@ -44918,7 +45321,7 @@ sha256 = "17i5j5005dhzgwzds5jj1a7d31xvbshjc139vawwz2xip5aynji4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pcmpl-homebrew"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pcmpl-homebrew"; sha256 = "11yd18s79iszp8gas97hqpa0b0whgh7dvlyci3nd4z28467p83v8"; name = "pcmpl-homebrew"; }; @@ -44931,7 +45334,7 @@ pcmpl-pip = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pcmpl-pip"; - version = "20141024.348"; + version = "20141024.448"; src = fetchFromGitHub { owner = "hiddenlotus"; repo = "pcmpl-pip"; @@ -44939,7 +45342,7 @@ sha256 = "14pz15by9gp0307bcdv9h90mcr35ya89wbn3y13n7k0z5r45gn58"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pcmpl-pip"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pcmpl-pip"; sha256 = "19a3np5swpqvrx133yvziqnr2pvj8zi0b725j8kxhp2bj1g1c6hr"; name = "pcmpl-pip"; }; @@ -44952,7 +45355,7 @@ pcomplete-extension = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pcomplete-extension"; - version = "20140604.1147"; + version = "20140604.1247"; src = fetchFromGitHub { owner = "thierryvolpiatto"; repo = "pcomplete-extension"; @@ -44960,7 +45363,7 @@ sha256 = "0h0p4c08z0dqxmg55fzch1d2f38rywfk1j0an2f4sc94lj7ckbm6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pcomplete-extension"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pcomplete-extension"; sha256 = "0m0c9ir44p21rj93fkisvpvi08936717ljmzsr4qdf69b3i54cwc"; name = "pcomplete-extension"; }; @@ -44973,7 +45376,7 @@ pcre2el = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pcre2el"; - version = "20151213.434"; + version = "20151213.534"; src = fetchFromGitHub { owner = "joddie"; repo = "pcre2el"; @@ -44981,7 +45384,7 @@ sha256 = "1dpfhrxbaqpgjzac3m9hclbzlnrxq9b8bx6za53aqvml72yzxc6i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pcre2el"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pcre2el"; sha256 = "1l72hv9843qk5p8gi9ibr15wczm804j3ws2v1x7nx4dr7pc5c7l3"; name = "pcre2el"; }; @@ -44994,7 +45397,7 @@ pcsv = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pcsv"; - version = "20150220.531"; + version = "20150220.631"; src = fetchFromGitHub { owner = "mhayashi1120"; repo = "Emacs-pcsv"; @@ -45002,7 +45405,7 @@ sha256 = "0aaprjczjf3al5vcypw1fsnz5a0xnnlhmvy0lc83i9aqbsa2y8af"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pcsv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pcsv"; sha256 = "1zphndkbva59g1fd319a240yvq8fjk315b1fyrb8zvmqpgk9n0dl"; name = "pcsv"; }; @@ -45015,7 +45418,7 @@ pdb-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pdb-mode"; - version = "20150128.1151"; + version = "20150128.1251"; src = fetchFromGitHub { owner = "sixpi"; repo = "pdb-mode"; @@ -45023,7 +45426,7 @@ sha256 = "1xkkyz7y08jr71rzdacb9v7gk95qsxlsshkdsxq8jp70irq51099"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pdb-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pdb-mode"; sha256 = "1ihkxd15kx5m5xb9yxwz8wqbmyk9iaskry9szzdz1j4gjlczb6hy"; name = "pdb-mode"; }; @@ -45036,7 +45439,7 @@ pdf-tools = callPackage ({ emacs, fetchFromGitHub, fetchurl, let-alist, lib, melpaBuild, tablist }: melpaBuild { pname = "pdf-tools"; - version = "20160410.414"; + version = "20160410.514"; src = fetchFromGitHub { owner = "politza"; repo = "pdf-tools"; @@ -45044,7 +45447,7 @@ sha256 = "00h35j1rhqqnfj7y6z3fblcq2kijnhl51h44424x0xjhydkk3kxv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pdf-tools"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pdf-tools"; sha256 = "1hnc8cci00mw78h7d7gs8smzrgihqz871sdc9hfvamb7iglmdlxw"; name = "pdf-tools"; }; @@ -45057,7 +45460,7 @@ peacock-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "peacock-theme"; - version = "20141116.102"; + version = "20141116.202"; src = fetchFromGitHub { owner = "emacsfodder"; repo = "emacs-peacock-theme"; @@ -45065,7 +45468,7 @@ sha256 = "1clvrmvijwpffigh5f29vnwcvffqk0nrvlz26158hip1z9x7nah3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/peacock-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/peacock-theme"; sha256 = "0jpdq090r37d07bm52yx3x9y3gsip6fyxxq1ax1k5k0r0js45kq9"; name = "peacock-theme"; }; @@ -45078,7 +45481,7 @@ peek-mode = callPackage ({ elnode, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "peek-mode"; - version = "20130620.1446"; + version = "20130620.1546"; src = fetchFromGitHub { owner = "erikriverson"; repo = "peek-mode"; @@ -45086,7 +45489,7 @@ sha256 = "11nv6pll0zj9dkgzlzgav39a6x3sfi7kvfhwm96fa3iy4v8bixrb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/peek-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/peek-mode"; sha256 = "07wcnh3jmp2gi9xhd3d8i2n0pr2g9kav497nnz94i85awhzf8fi4"; name = "peek-mode"; }; @@ -45099,7 +45502,7 @@ peep-dired = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "peep-dired"; - version = "20160321.1737"; + version = "20160321.1837"; src = fetchFromGitHub { owner = "asok"; repo = "peep-dired"; @@ -45107,7 +45510,7 @@ sha256 = "1wy5qpnfri1gha2cnl6q20qar8dbl2mimpb43bnhmm2g3wgjyad6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/peep-dired"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/peep-dired"; sha256 = "16k5y3h2ip96k071vhx83avg4r4nplnd973b1271vvxbx2bly735"; name = "peep-dired"; }; @@ -45120,7 +45523,7 @@ peg = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "peg"; - version = "20150708.141"; + version = "20150708.241"; src = fetchFromGitHub { owner = "ellerh"; repo = "peg.el"; @@ -45128,7 +45531,7 @@ sha256 = "0kjz7ch4bn0m4v9zgqyqcrsasnqc5c5drv2hp22j7rnbb7ny0q3n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/peg"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/peg"; sha256 = "0nxy9xn99myz0p36m4jflfj48qxhhn1sspbfx8d90030xg3cc2gm"; name = "peg"; }; @@ -45141,14 +45544,14 @@ per-buffer-theme = callPackage ({ cl-lib ? null, fetchhg, fetchurl, lib, melpaBuild }: melpaBuild { pname = "per-buffer-theme"; - version = "20160318.1701"; + version = "20160318.1801"; src = fetchhg { url = "https://bitbucket.com/inigoserna/per-buffer-theme.el"; rev = "9e6200da91b3"; sha256 = "0w02l91x624cgzdg33a9spgcwy12m607dsfnr1xbc1fi08np4sd1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/per-buffer-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/per-buffer-theme"; sha256 = "1czcaybpfmx4mwff7hs07iayyvgvlhifkickccap6kpd0cp4n6hn"; name = "per-buffer-theme"; }; @@ -45161,7 +45564,7 @@ perl-completion = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "perl-completion"; - version = "20090528.136"; + version = "20090528.236"; src = fetchFromGitHub { owner = "imakado"; repo = "perl-completion"; @@ -45169,7 +45572,7 @@ sha256 = "0fzypcxxd5zlkcybz0xppf09l0vf4vsfisr2y3ijsmxhg7yrwzj5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/perl-completion"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/perl-completion"; sha256 = "01p17mlkwjm60f14arda3ly8ng0r98nn3rly94ghn6jr7r7fv14b"; name = "perl-completion"; }; @@ -45182,7 +45585,7 @@ perl6-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, pkg-info }: melpaBuild { pname = "perl6-mode"; - version = "20160117.1309"; + version = "20160117.1409"; src = fetchFromGitHub { owner = "hinrik"; repo = "perl6-mode"; @@ -45190,7 +45593,7 @@ sha256 = "11fs78b7ssz18wr35vxf6h4zpfj4l4vsikfzayq6hyqjnchv7b45"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/perl6-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/perl6-mode"; sha256 = "0af1djypd8n0n1fq10sl8mrdg27354kg9g87d6xz4q5phvi48cqv"; name = "perl6-mode"; }; @@ -45203,7 +45606,7 @@ perlbrew = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "perlbrew"; - version = "20130127.524"; + version = "20130127.624"; src = fetchFromGitHub { owner = "kentaro"; repo = "perlbrew.el"; @@ -45211,7 +45614,7 @@ sha256 = "0wg0cpqxzfgln6xdngzspsbfirn9a5jxpgk66m0fpi33215z9q26"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/perlbrew"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/perlbrew"; sha256 = "1qadwkcic2qckqy8hgrnj08ajhxayknhpyxkc6ir15vfqjk5crr8"; name = "perlbrew"; }; @@ -45224,15 +45627,15 @@ persistent-overlays = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "persistent-overlays"; - version = "20160311.1910"; + version = "20160426.1521"; src = fetchFromGitHub { owner = "mneilly"; repo = "Emacs-Persistent-Overlays"; - rev = "524166fcf1dd6d69e1af3c8b36ecb15efb0b90fe"; - sha256 = "0kscx5phq84bxjwfjxqdj2jxk39jz4blw0y91vj6rw2y12k9jign"; + rev = "e89a04643dc4532882352888755d9d5e26c46ae4"; + sha256 = "0iw9qsqy1aszwfzfslyxz31zav4xq8pbrx0mwxqix5lvy7768ppp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/persistent-overlays"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/persistent-overlays"; sha256 = "136acbxqykvsw8a5il1zgpxr7llxmc3347847vf0jnmbzb1b472a"; name = "persistent-overlays"; }; @@ -45245,7 +45648,7 @@ persistent-scratch = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "persistent-scratch"; - version = "20160404.1115"; + version = "20160404.1215"; src = fetchFromGitHub { owner = "Fanael"; repo = "persistent-scratch"; @@ -45253,7 +45656,7 @@ sha256 = "0j72rqd96dz9pp9zwc88q3358m4b891dg0szmbyvs4myp3yandz2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/persistent-scratch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/persistent-scratch"; sha256 = "0iai65lsg3zxj07hdb9201w3rwrvdb3wffr6k2jdl8hzg5idghn1"; name = "persistent-scratch"; }; @@ -45266,7 +45669,7 @@ persistent-soft = callPackage ({ fetchFromGitHub, fetchurl, lib, list-utils, melpaBuild, pcache }: melpaBuild { pname = "persistent-soft"; - version = "20150223.1253"; + version = "20150223.1353"; src = fetchFromGitHub { owner = "rolandwalker"; repo = "persistent-soft"; @@ -45274,7 +45677,7 @@ sha256 = "14p20br8vzxs39d4hswzrrkgwql5nnmn5j17cpbabzjvck42rixc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/persistent-soft"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/persistent-soft"; sha256 = "0a4xiwpgyyynjf69s8p183mqd3z53absv544ggvhb2gkpm6jravc"; name = "persistent-soft"; }; @@ -45287,7 +45690,7 @@ persp-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "persp-mode"; - version = "20160426.109"; + version = "20160426.209"; src = fetchFromGitHub { owner = "Bad-ptr"; repo = "persp-mode.el"; @@ -45295,7 +45698,7 @@ sha256 = "0044029nrv6ricaddwg7nsz43qwnsahsy7v6k2fx38qss5cv35yr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/persp-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/persp-mode"; sha256 = "1bgni7y5xsn4a21494npr90w3320snfzw1hvql30xrr57pw3765w"; name = "persp-mode"; }; @@ -45308,7 +45711,7 @@ persp-projectile = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, perspective, projectile }: melpaBuild { pname = "persp-projectile"; - version = "20151220.630"; + version = "20151220.730"; src = fetchFromGitHub { owner = "bbatsov"; repo = "persp-projectile"; @@ -45316,7 +45719,7 @@ sha256 = "0b9hz253m6d58dwsjsk9d1fw0ql33m9wfvyx10ncsqbr0j0s98k5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/persp-projectile"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/persp-projectile"; sha256 = "10l2kqjyigg98qbbpf3qf4d5bm63kkk4vp7ip8fibgj1p9gqmnxm"; name = "persp-projectile"; }; @@ -45329,7 +45732,7 @@ perspective = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "perspective"; - version = "20160219.1822"; + version = "20160219.1922"; src = fetchFromGitHub { owner = "nex3"; repo = "perspective-el"; @@ -45337,7 +45740,7 @@ sha256 = "11slq43p6gjvmi4pqwh76a26c2v6l1dmnihgaskn4g0s65qw3kqk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/perspective"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/perspective"; sha256 = "150dxcsd0ylvfi9mmfpcki1wd3nl8q9mbszd3dgqfnm40yncklml"; name = "perspective"; }; @@ -45350,7 +45753,7 @@ pg = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pg"; - version = "20130731.1642"; + version = "20130731.1742"; src = fetchFromGitHub { owner = "cbbrowne"; repo = "pg.el"; @@ -45358,7 +45761,7 @@ sha256 = "1zh7v4nnpzvbi8yj1ynlqlawk5bmlxi6s80b5f2y7hkdqb5q26k0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pg"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pg"; sha256 = "0n0187ndvwza1nis9a12h584qdqkwqfzhdw21kz5d1i6c43g7gji"; name = "pg"; }; @@ -45371,7 +45774,7 @@ pgdevenv = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pgdevenv"; - version = "20150105.1636"; + version = "20150105.1736"; src = fetchFromGitHub { owner = "dimitri"; repo = "pgdevenv-el"; @@ -45379,7 +45782,7 @@ sha256 = "0c9d4c24ic67y07y74bv5b7vc56b6l0lbh2fbzm870r1dl5zbzcj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pgdevenv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pgdevenv"; sha256 = "0za35sdwwav81wpk4jjqh56icaswwxxyg3bqqp0qiz24llb5ln1w"; name = "pgdevenv"; }; @@ -45392,7 +45795,7 @@ ph = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ph"; - version = "20130312.1337"; + version = "20130312.1437"; src = fetchFromGitHub { owner = "gromnitsky"; repo = "ph"; @@ -45400,7 +45803,7 @@ sha256 = "1qxsc5wyk8l9gkgmqy3mzwxdhji1ljqw9s1jfxkax7fyv4d1v31p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ph"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ph"; sha256 = "0azx4cpfdn01yrqyn0q1gg9z7w0h0rn7zl39v3dx6yidd76ysh0l"; name = "ph"; }; @@ -45413,7 +45816,7 @@ phabricator = callPackage ({ dash, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, projectile, s }: melpaBuild { pname = "phabricator"; - version = "20151115.307"; + version = "20151115.407"; src = fetchFromGitHub { owner = "ajtulloch"; repo = "phabricator.el"; @@ -45421,7 +45824,7 @@ sha256 = "0y77ld1cmfpv9p7yx2mlbvjm5ivsrf2j0g0h4zabfrahz22v39d4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/phabricator"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/phabricator"; sha256 = "07988f2xyp76xjs25b3rdblhmijs2piriz4p0q92jw69bdvkl14c"; name = "phabricator"; }; @@ -45434,7 +45837,7 @@ phi-autopair = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, paredit }: melpaBuild { pname = "phi-autopair"; - version = "20150527.423"; + version = "20150527.523"; src = fetchFromGitHub { owner = "zk-phi"; repo = "phi-autopair"; @@ -45442,7 +45845,7 @@ sha256 = "14g06ndxrqz80kdyhil6ajcqqxkfa77r1gr7vwqa9sq6jgm8dpx5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/phi-autopair"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/phi-autopair"; sha256 = "1ya1bvh28qgz1zg9kdh2lzbsf0w0lx4xr42mdrjwaz3bbfa9asg4"; name = "phi-autopair"; }; @@ -45455,7 +45858,7 @@ phi-grep = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "phi-grep"; - version = "20150212.924"; + version = "20150212.1024"; src = fetchFromGitHub { owner = "zk-phi"; repo = "phi-grep"; @@ -45463,7 +45866,7 @@ sha256 = "1rchxhp4kji5kbg8kzkzdbfy8sdbgbqd5g59cch7ia9agh5jvwyx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/phi-grep"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/phi-grep"; sha256 = "1y5lq6lq9qdydbypb1pjnxryh94a295nnqqh2x27whiwdiysirjj"; name = "phi-grep"; }; @@ -45476,7 +45879,7 @@ phi-rectangle = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "phi-rectangle"; - version = "20151208.54"; + version = "20151208.154"; src = fetchFromGitHub { owner = "zk-phi"; repo = "phi-rectangle"; @@ -45484,7 +45887,7 @@ sha256 = "0d2c579rg8wdfmn94nzaix9332jch4wlr939jszls330s38d0iv4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/phi-rectangle"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/phi-rectangle"; sha256 = "08yw04wmbgbbr60i638m0rspfwn3cp47ky5ssgjcgcmmdgg9yfvy"; name = "phi-rectangle"; }; @@ -45497,7 +45900,7 @@ phi-search = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "phi-search"; - version = "20150807.312"; + version = "20150807.412"; src = fetchFromGitHub { owner = "zk-phi"; repo = "phi-search"; @@ -45505,7 +45908,7 @@ sha256 = "10kyq3lkhmbmj1hl9awzc0w8073dn9mbjd5skh660ljg5mmi6x62"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/phi-search"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/phi-search"; sha256 = "0nj06ixl76dd80zg83q4bi8k224mcwb612mr4gd1xppj5k8xl03g"; name = "phi-search"; }; @@ -45518,7 +45921,7 @@ phi-search-dired = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, phi-search }: melpaBuild { pname = "phi-search-dired"; - version = "20150405.214"; + version = "20150405.314"; src = fetchFromGitHub { owner = "zk-phi"; repo = "phi-search-dired"; @@ -45526,7 +45929,7 @@ sha256 = "1b44947hncw4q42fxxrz6fm21habzp4pyp0569xdwysrx2rca2fn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/phi-search-dired"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/phi-search-dired"; sha256 = "1gf3vs3vrp5kbq4ixnj7adazmnqixi63qswgc2512p10gf7inf8p"; name = "phi-search-dired"; }; @@ -45539,7 +45942,7 @@ phi-search-mc = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, multiple-cursors, phi-search }: melpaBuild { pname = "phi-search-mc"; - version = "20160324.1003"; + version = "20160324.1103"; src = fetchFromGitHub { owner = "knu"; repo = "phi-search-mc.el"; @@ -45547,7 +45950,7 @@ sha256 = "0wr86ad0yl52im6b9z0b9pzmhcn39qg5m9878yfv1nbxliw40lcd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/phi-search-mc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/phi-search-mc"; sha256 = "07hd80rbyzr5n3yd7hv1j51nl6pvcxmln20g6xvw8gh5yfl9k0m8"; name = "phi-search-mc"; }; @@ -45560,7 +45963,7 @@ phi-search-migemo = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, migemo, phi-search }: melpaBuild { pname = "phi-search-migemo"; - version = "20150116.706"; + version = "20150116.806"; src = fetchFromGitHub { owner = "zk-phi"; repo = "phi-search-migemo"; @@ -45568,7 +45971,7 @@ sha256 = "1k8hjnkinzdxy9qxldsyvj6npa2sv48m905d1cvxr8lyzpc5hikh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/phi-search-migemo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/phi-search-migemo"; sha256 = "0qk73s09sasm438w29j5z2bmlb60p1mgbv2ch43rgq8c6kjzg6h6"; name = "phi-search-migemo"; }; @@ -45581,7 +45984,7 @@ phoenix-dark-mono-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "phoenix-dark-mono-theme"; - version = "20130306.1415"; + version = "20130306.1515"; src = fetchFromGitHub { owner = "j0ni"; repo = "phoenix-dark-mono"; @@ -45589,7 +45992,7 @@ sha256 = "1fg63g1cm9mp50sf3ldcb0pr4bvlfxx010arisxdkj102pmib2ri"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/phoenix-dark-mono-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/phoenix-dark-mono-theme"; sha256 = "15in299j170n0wxmkg3cx1zzx1n7r1ifraqqzfqhcnk8i8lmc939"; name = "phoenix-dark-mono-theme"; }; @@ -45602,7 +46005,7 @@ phoenix-dark-pink-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "phoenix-dark-pink-theme"; - version = "20150406.2202"; + version = "20150406.2302"; src = fetchFromGitHub { owner = "j0ni"; repo = "phoenix-dark-pink"; @@ -45610,7 +46013,7 @@ sha256 = "042yw44d5pwykl177sdh209drc5f17yzhq0mxrf7qhycbjs4h8cg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/phoenix-dark-pink-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/phoenix-dark-pink-theme"; sha256 = "0bz6iw73d85bi12qqx6fdw3paqknrxvn0asbwjmgdcrlqrfczjlr"; name = "phoenix-dark-pink-theme"; }; @@ -45623,7 +46026,7 @@ php-auto-yasnippets = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, php-mode, yasnippet }: melpaBuild { pname = "php-auto-yasnippets"; - version = "20141128.1611"; + version = "20141128.1711"; src = fetchFromGitHub { owner = "ejmr"; repo = "php-auto-yasnippets"; @@ -45631,7 +46034,7 @@ sha256 = "1l64rka9wrnwdgfgwv8xh7mq9f1937z2v3r82qcfi6il3anw4zm0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/php-auto-yasnippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/php-auto-yasnippets"; sha256 = "1hhddvpc80b6wvjpbpibsf24rp5a5p45m0bg7m0c8mx181h9mqgn"; name = "php-auto-yasnippets"; }; @@ -45644,7 +46047,7 @@ php-boris = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "php-boris"; - version = "20130527.321"; + version = "20130527.421"; src = fetchFromGitHub { owner = "tomterl"; repo = "php-boris"; @@ -45652,7 +46055,7 @@ sha256 = "10lzbyr7z95mynz885k75n2ibsy92dh3mg3s5m69n03jnf9gv1jy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/php-boris"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/php-boris"; sha256 = "19yfbrlfqikix2lnnlbpzm6yakjhl84ix0zra2ycpvgg2pl88r0g"; name = "php-boris"; }; @@ -45665,7 +46068,7 @@ php-boris-minor-mode = callPackage ({ fetchFromGitHub, fetchurl, highlight, lib, melpaBuild, php-boris }: melpaBuild { pname = "php-boris-minor-mode"; - version = "20140209.1235"; + version = "20140209.1335"; src = fetchFromGitHub { owner = "steckerhalter"; repo = "php-boris-minor-mode"; @@ -45673,7 +46076,7 @@ sha256 = "1wk7vq80v97psxfg0pwy4mc6kdc61gm6h1vgl9p71ii6g6zvzcqg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/php-boris-minor-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/php-boris-minor-mode"; sha256 = "1cmpd303chldss7kylpinv8qc3c78srz02a9cp9x79c8arq7apwl"; name = "php-boris-minor-mode"; }; @@ -45686,7 +46089,7 @@ php-eldoc = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "php-eldoc"; - version = "20140202.1341"; + version = "20140202.1441"; src = fetchFromGitHub { owner = "sabof"; repo = "php-eldoc"; @@ -45694,7 +46097,7 @@ sha256 = "0hm6myvf91f4d2yfc7fs2xky9m8hfnimx1gkfzmn9f5pcc2l2p0i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/php-eldoc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/php-eldoc"; sha256 = "1q5fkl8crqrgxik2mxbkqv10qnqhqrazd66rgfw797s3jcchv58j"; name = "php-eldoc"; }; @@ -45707,7 +46110,7 @@ php-mode = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "php-mode"; - version = "20160413.228"; + version = "20160413.328"; src = fetchFromGitHub { owner = "ejmr"; repo = "php-mode"; @@ -45715,7 +46118,7 @@ sha256 = "1ybx2kb719xm4ld24kki7x5x6pygcxvnbp9dr49s8xh60g5h4b47"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/php-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/php-mode"; sha256 = "1lc4d3fgxhanqr3b8zr99z0la6cpzs2rksj806lnsfw38klvi89y"; name = "php-mode"; }; @@ -45728,7 +46131,7 @@ php-plus--mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "php-plus--mode"; - version = "20121129.1452"; + version = "20121129.1552"; src = fetchFromGitHub { owner = "echosa"; repo = "phpplus-mode"; @@ -45736,7 +46139,7 @@ sha256 = "0f1n0jcla157ngqshq5n8iws216ar63ynjd6743cbdrzj0v030wg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/php+-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/php+-mode"; sha256 = "1ibcsky6la3l7gawpgx814w1acjf73b68i6wbb4p6saxhwg6adik"; name = "php-plus--mode"; }; @@ -45749,7 +46152,7 @@ php-refactor-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "php-refactor-mode"; - version = "20160417.1646"; + version = "20160417.1746"; src = fetchFromGitHub { owner = "keelerm84"; repo = "php-refactor-mode.el"; @@ -45757,7 +46160,7 @@ sha256 = "01i552ch8r8i6nzw8prwxcafzrq6xnzyc4cn36w3my1xq0k2ljvz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/php-refactor-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/php-refactor-mode"; sha256 = "0gj0nv6ii7pya0hcxs8haz5pahj0sa12c2ls53c3j85in645zb3s"; name = "php-refactor-mode"; }; @@ -45770,7 +46173,7 @@ phpcbf = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "phpcbf"; - version = "20150302.728"; + version = "20150302.828"; src = fetchFromGitHub { owner = "nishimaki10"; repo = "emacs-phpcbf"; @@ -45778,7 +46181,7 @@ sha256 = "09rinyx0621d7613xmbyvrrlav6d4ia332wkgg0m9dn265g3h56z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/phpcbf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/phpcbf"; sha256 = "1hf88ys4grffpqgavrbc72dn3m7crafgid2ygzx9c5j55syh8mfv"; name = "phpcbf"; }; @@ -45791,7 +46194,7 @@ phpunit = callPackage ({ f, fetchFromGitHub, fetchurl, lib, melpaBuild, pkg-info, s }: melpaBuild { pname = "phpunit"; - version = "20151009.454"; + version = "20151009.554"; src = fetchFromGitHub { owner = "nlamirault"; repo = "phpunit.el"; @@ -45799,7 +46202,7 @@ sha256 = "1zghw5nfm4a9j98vsaw4fc8r4f98s5fhgvgbnbyyxapl851fa9i6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/phpunit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/phpunit"; sha256 = "0nj8ss1yjkcqnbnn4jgbp0403ljjk2xhipzikdrl3dbxlf14i4f8"; name = "phpunit"; }; @@ -45812,7 +46215,7 @@ pianobar = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pianobar"; - version = "20120128.1501"; + version = "20120128.1601"; src = fetchFromGitHub { owner = "agrif"; repo = "pianobar.el"; @@ -45820,7 +46223,7 @@ sha256 = "053jqzl0sp3dnl4919vi30xqrdcpi9jsqx5hndj1bprf7926w11d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pianobar"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pianobar"; sha256 = "16vsf2cig9qjbh9s58zb5byjmyghxbsxpzpm5hyyrv251jap1jjn"; name = "pianobar"; }; @@ -45833,7 +46236,7 @@ picolisp-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "picolisp-mode"; - version = "20150516.355"; + version = "20150516.455"; src = fetchFromGitHub { owner = "flexibeast"; repo = "picolisp-mode"; @@ -45841,7 +46244,7 @@ sha256 = "0p91ysyjksbravnw3l78mshay6swgb5k1zi5bbppppk8zkmdp115"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/picolisp-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/picolisp-mode"; sha256 = "1n56knbapyfs8n23arzlz27y0q4846r64krwlwh8agfqkcdw9dp5"; name = "picolisp-mode"; }; @@ -45854,7 +46257,7 @@ pig-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pig-mode"; - version = "20140617.1258"; + version = "20140617.1358"; src = fetchFromGitHub { owner = "motus"; repo = "pig-mode"; @@ -45862,7 +46265,7 @@ sha256 = "1yg9n265ljdjlh6a3jrjwyvj3f76wp68x25bl0p8dxrrsyr9kvfx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pig-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pig-mode"; sha256 = "0gmvc4rrqkn0cx8fk1sxk6phfbpf8dcba3k6i24k3idcx8rxsw3x"; name = "pig-mode"; }; @@ -45875,7 +46278,7 @@ pig-snippets = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }: melpaBuild { pname = "pig-snippets"; - version = "20130913.124"; + version = "20130913.224"; src = fetchFromGitHub { owner = "motus"; repo = "pig-mode"; @@ -45883,7 +46286,7 @@ sha256 = "1yg9n265ljdjlh6a3jrjwyvj3f76wp68x25bl0p8dxrrsyr9kvfx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pig-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pig-snippets"; sha256 = "1sqi0a2dsqgmabkrncxiyrhibyryyy25d11b15ybhlngd05wqbx2"; name = "pig-snippets"; }; @@ -45896,7 +46299,7 @@ pillar = callPackage ({ fetchFromGitHub, fetchurl, lib, makey, melpaBuild }: melpaBuild { pname = "pillar"; - version = "20141112.1211"; + version = "20141112.1311"; src = fetchFromGitHub { owner = "pillar-markup"; repo = "pillar-mode"; @@ -45904,7 +46307,7 @@ sha256 = "19i8hgzr7kdj4skf0cnv6vlsklq9qcyxcv3p33k9vgq7y4f9mah8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pillar"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pillar"; sha256 = "1lklky3shyvm1iygp621hbldpx37m0a9vd5l6mxs4y60ksj6z0js"; name = "pillar"; }; @@ -45917,7 +46320,7 @@ pinboard-api = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pinboard-api"; - version = "20140324.648"; + version = "20140324.748"; src = fetchFromGitHub { owner = "danieroux"; repo = "pinboard-api-el"; @@ -45925,7 +46328,7 @@ sha256 = "0wy9c37g6m5khchlp8qvfnjgkwq4r38659adcm5prvzjgzqhlfja"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pinboard-api"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pinboard-api"; sha256 = "0yzvgnpkj2fhl01id36nc5pj8vyb05bllraiz3lwwcc66y98h9n0"; name = "pinboard-api"; }; @@ -45938,7 +46341,7 @@ pinot = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pinot"; - version = "20140211.1426"; + version = "20140211.1526"; src = fetchFromGitHub { owner = "tkf"; repo = "emacs-pinot-search"; @@ -45946,7 +46349,7 @@ sha256 = "1wc31r5fpcia4n4vbpg7vv3rzrnjzh18yygi3kp4wvl2wzx2azqh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pinot"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pinot"; sha256 = "1kjzq02pddnkia637xz2mnjjyglyh6qzragnf7nnxbw9ayiim58i"; name = "pinot"; }; @@ -45959,7 +46362,7 @@ pinyin-search = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pinyin-search"; - version = "20150719.1955"; + version = "20150719.2055"; src = fetchFromGitHub { owner = "xuchunyang"; repo = "pinyin-search.el"; @@ -45967,7 +46370,7 @@ sha256 = "096izagfjw8cnxjq3v70x8a55npyxnr40mg1fc9b1jnqw6qwf491"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pinyin-search"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pinyin-search"; sha256 = "1si693nmmxgg0kp5mxvj5nq946kfc5cv3wfsl4znbqzps8qb2b7z"; name = "pinyin-search"; }; @@ -45977,10 +46380,31 @@ license = lib.licenses.free; }; }) {}; + pinyinlib = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "pinyinlib"; + version = "20160505.1548"; + src = fetchFromGitHub { + owner = "cute-jumper"; + repo = "pinyinlib.el"; + rev = "238f27746dafac576f0aa686b37dacfdd2327127"; + sha256 = "0wbdhd3wqha3ahyakdjj4ki3998l0fafi86l26gkir1bq2qpkmcs"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pinyinlib"; + sha256 = "0kv67qa3825fw64qimkph2b65pilrsx5730y4c7f7c1f8giz5vxr"; + name = "pinyinlib"; + }; + packageRequires = []; + meta = { + homepage = "https://melpa.org/#/pinyinlib"; + license = lib.licenses.free; + }; + }) {}; pip-requirements = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pip-requirements"; - version = "20160131.1126"; + version = "20160131.1226"; src = fetchFromGitHub { owner = "Wilfred"; repo = "pip-requirements.el"; @@ -45988,7 +46412,7 @@ sha256 = "0j4h6q1s2s9dw1pp22xsajchwg8nh3x4x5qxbzf19i1xbpcghw7h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pip-requirements"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pip-requirements"; sha256 = "1wsjfyqga7pzp8gsm5x53qrkn40srairbjpifyrqbi2fpzmwhrnz"; name = "pip-requirements"; }; @@ -46001,7 +46425,7 @@ pivotal-tracker = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pivotal-tracker"; - version = "20151203.1350"; + version = "20151203.1450"; src = fetchFromGitHub { owner = "jxa"; repo = "pivotal-tracker"; @@ -46009,7 +46433,7 @@ sha256 = "1sbwqrk9nciqwm53sfbq3nr9f9zzpz79dmxs8yp005dk7accdlls"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pivotal-tracker"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pivotal-tracker"; sha256 = "195wcfn434yp0p93zqih1snkkg1v7nxgb4gn0klajahmyrrjq2a2"; name = "pivotal-tracker"; }; @@ -46022,7 +46446,7 @@ pixie-mode = callPackage ({ clojure-mode, fetchFromGitHub, fetchurl, inf-clojure, lib, melpaBuild }: melpaBuild { pname = "pixie-mode"; - version = "20150121.2324"; + version = "20150122.24"; src = fetchFromGitHub { owner = "johnwalker"; repo = "pixie-mode"; @@ -46030,7 +46454,7 @@ sha256 = "0nnvf2p593gn8sbyrvczyll030xgnkxn900a2hy7ia7xh0wmvddp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pixie-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pixie-mode"; sha256 = "16z15yh78837k548xk5widdmy6fv03vym6q54i40knmgf5cllsl8"; name = "pixie-mode"; }; @@ -46043,7 +46467,7 @@ pixiv-novel-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pixiv-novel-mode"; - version = "20160220.821"; + version = "20160220.921"; src = fetchFromGitHub { owner = "zonuexe"; repo = "pixiv-novel-mode.el"; @@ -46051,7 +46475,7 @@ sha256 = "18rvnvm097ca4yc1nfswdv7dfqg36insnif5kfj19aa60m9qxl09"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pixiv-novel-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pixiv-novel-mode"; sha256 = "0f1rxvf9nrw984122i6dzsgik9axfjv6yscmg203s065n9lz17px"; name = "pixiv-novel-mode"; }; @@ -46064,7 +46488,7 @@ pkg-info = callPackage ({ epl, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pkg-info"; - version = "20150517.643"; + version = "20150517.743"; src = fetchFromGitHub { owner = "lunaryorn"; repo = "pkg-info.el"; @@ -46072,7 +46496,7 @@ sha256 = "1xkdbyhz9mgdz5zmjm4hh050klsl12w5lkckw2l77ihcxv0vjnf2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pkg-info"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pkg-info"; sha256 = "0whcvralk76mfmvbvwn57va5dkb1irj7iwffgddi7r0ima49iszx"; name = "pkg-info"; }; @@ -46085,7 +46509,7 @@ pkgbuild-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pkgbuild-mode"; - version = "20151010.936"; + version = "20151010.1036"; src = fetchFromGitHub { owner = "juergenhoetzel"; repo = "pkgbuild-mode"; @@ -46093,7 +46517,7 @@ sha256 = "077vp3fxwxj7b98ydw6iyi391w3acp73qwk6615yqdylpp66m750"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pkgbuild-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pkgbuild-mode"; sha256 = "1lp7frjahcpr4xnzxz77qj5hbpxbxm2g28apkixrnc1xjha66v3x"; name = "pkgbuild-mode"; }; @@ -46106,7 +46530,7 @@ plan9-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "plan9-theme"; - version = "20160111.2123"; + version = "20160111.2223"; src = fetchFromGitHub { owner = "john2x"; repo = "plan9-theme.el"; @@ -46114,7 +46538,7 @@ sha256 = "0rpiyp95k14fsc5hdbnj4hs3snh0vm8a2skcplsdwkmb5j9547w1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/plan9-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/plan9-theme"; sha256 = "0bvr877mc79s1shr82b33ipspz09jzc3809c6pkbw0jqpfid44cc"; name = "plan9-theme"; }; @@ -46127,7 +46551,7 @@ planet-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "planet-theme"; - version = "20160425.2258"; + version = "20160425.2358"; src = fetchFromGitHub { owner = "cmack"; repo = "emacs-planet-theme"; @@ -46135,7 +46559,7 @@ sha256 = "1aahyxmjsz9i5d22654bnmis8isbf5fydh0yy03sbiybm2hlyimi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/planet-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/planet-theme"; sha256 = "1mhbydvk7brmkgmij5gpp6l9ixcyh1g3r4fw3kpq8nvgbwknsqc9"; name = "planet-theme"; }; @@ -46148,7 +46572,7 @@ plantuml-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "plantuml-mode"; - version = "20150601.131"; + version = "20150601.231"; src = fetchFromGitHub { owner = "zwz"; repo = "plantuml-mode"; @@ -46156,7 +46580,7 @@ sha256 = "03nw4af1lgfppsbfq945c9pcz6ynhvpzlfdx3az83zi24b10az8n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/plantuml-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/plantuml-mode"; sha256 = "14imiqfgc2j9kjr3aqwzlw8xr1w5hb8i7d4ch709qky036i3lsci"; name = "plantuml-mode"; }; @@ -46169,7 +46593,7 @@ platformio-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, projectile }: melpaBuild { pname = "platformio-mode"; - version = "20160327.2020"; + version = "20160327.2120"; src = fetchFromGitHub { owner = "ZachMassia"; repo = "PlatformIO-Mode"; @@ -46177,7 +46601,7 @@ sha256 = "04xnk9s5mjr55y36y07k4vnsf841pg70c9wr6vcj5s16h3fhx9nw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/platformio-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/platformio-mode"; sha256 = "1v1pp3365wj19a5wmsxyyy5n548z3lmcbm2pwl914wip3ca7546f"; name = "platformio-mode"; }; @@ -46190,7 +46614,7 @@ play-routes-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "play-routes-mode"; - version = "20160322.1200"; + version = "20160322.1300"; src = fetchFromGitHub { owner = "brocode"; repo = "play-routes-mode"; @@ -46198,7 +46622,7 @@ sha256 = "0slfaclbhjm5paw8l7rr3y9xxjyhkizp9lwyvlgpkd38n4pgj2bx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/play-routes-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/play-routes-mode"; sha256 = "17phqil2zf5rfvhs5v743dh4lix4v2azbf33z9n97ahs7j66y2gz"; name = "play-routes-mode"; }; @@ -46211,7 +46635,7 @@ plenv = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "plenv"; - version = "20130707.116"; + version = "20130707.216"; src = fetchFromGitHub { owner = "karupanerura"; repo = "plenv.el"; @@ -46219,7 +46643,7 @@ sha256 = "11cbpgjsnw8fiqf1s12hbm9qxgjcw6y2zxx7wz4wg7idmi7m0b7g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/plenv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/plenv"; sha256 = "0dw9fy5wd9wm76ag6yyw3f9jnlj7rcdcxgdjm30h514qfi9hxbw4"; name = "plenv"; }; @@ -46232,7 +46656,7 @@ plim-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "plim-mode"; - version = "20140812.1913"; + version = "20140812.2013"; src = fetchFromGitHub { owner = "dongweiming"; repo = "plim-mode"; @@ -46240,7 +46664,7 @@ sha256 = "07hspp4bkb3f5dm0l1arm0w1m04cq4glg81x4a9kf7bl601wzki2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/plim-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/plim-mode"; sha256 = "0247fpvxki5jhxw6swv7pcw0qwxrqnp75acnfss2lf984vggzhxi"; name = "plim-mode"; }; @@ -46253,7 +46677,7 @@ plsense = callPackage ({ auto-complete, fetchFromGitHub, fetchurl, lib, log4e, melpaBuild, yaxception }: melpaBuild { pname = "plsense"; - version = "20151104.845"; + version = "20151104.945"; src = fetchFromGitHub { owner = "aki2o"; repo = "emacs-plsense"; @@ -46261,7 +46685,7 @@ sha256 = "1r2yxa7gqr0z9fwhx38siwjpg73a93rdmnhr4h6nm6lr32vviyxm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/plsense"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/plsense"; sha256 = "1ka06r4ashhjkfyzql9mfvs3gj7n684h4gaycj29w4nfqrhcw9va"; name = "plsense"; }; @@ -46274,7 +46698,7 @@ plsense-direx = callPackage ({ direx, fetchFromGitHub, fetchurl, lib, log4e, melpaBuild, plsense, yaxception }: melpaBuild { pname = "plsense-direx"; - version = "20140520.1508"; + version = "20140520.1608"; src = fetchFromGitHub { owner = "aki2o"; repo = "plsense-direx"; @@ -46282,7 +46706,7 @@ sha256 = "0s34nbqqy6aqi113xj452pbmqp43046wfbfbbfv1xwhybgq0c1j1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/plsense-direx"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/plsense-direx"; sha256 = "0qd4b7gkmn5ydadhp70995rap3643s1aa8gfi5izgllzhg0i864j"; name = "plsense-direx"; }; @@ -46294,13 +46718,13 @@ }) {}; plsql = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "plsql"; - version = "20121115.443"; + version = "20121115.543"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/plsql.el"; sha256 = "1v0wvy9fd1qq3aq83x5jv3953n0n51x7y2r2ql11j0h8xasy42p1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/plsql"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/plsql"; sha256 = "1jvppmfdll34b8dav5dvbabfxiapv92p7lciblj59a707bbdb7l1"; name = "plsql"; }; @@ -46310,16 +46734,37 @@ license = lib.licenses.free; }; }) {}; + plur = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "plur"; + version = "20160504.524"; + src = fetchFromGitHub { + owner = "xuchunyang"; + repo = "plur"; + rev = "5bdd3b9a2f0624414bd596e798644713cd1545f0"; + sha256 = "0qlxj19hj96l4lw81xh5r14ppf6kp63clikk060s9yw00q7gnl6a"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/plur"; + sha256 = "0nf1dc7xf2zp316rssnz8sv374akcr54hp0rb219qvgyck9bdqiv"; + name = "plur"; + }; + packageRequires = [ emacs ]; + meta = { + homepage = "https://melpa.org/#/plur"; + license = lib.licenses.free; + }; + }) {}; pmdm = callPackage ({ fetchhg, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pmdm"; - version = "20151109.1236"; + version = "20151109.1336"; src = fetchhg { url = "https://bitbucket.com/inigoserna/pmdm.el"; rev = "f50a54774156"; sha256 = "0x3s9fj41n6a21la762qm1si9ysv3zj5bbp6ykfskr73sxq6s9ff"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pmdm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pmdm"; sha256 = "1zmy6cbnqhsbwc5vx30mx45xn88d2186hgrl75ws7vvbl197j03b"; name = "pmdm"; }; @@ -46332,7 +46777,7 @@ point-stack = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "point-stack"; - version = "20141225.2310"; + version = "20141226.10"; src = fetchFromGitHub { owner = "dgutov"; repo = "point-stack"; @@ -46340,7 +46785,7 @@ sha256 = "0nqv63yy0qpxhblzmkyvla90p9a7729fqxvhkfld9jxfqpgv1xyp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/point-stack"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/point-stack"; sha256 = "0201gka1izqgxyivan60jbg9x1mmsw5dscxacasg97ffsciwbfr9"; name = "point-stack"; }; @@ -46352,13 +46797,13 @@ }) {}; point-undo = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "point-undo"; - version = "20100504.329"; + version = "20100504.429"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/point-undo.el"; sha256 = "13c1iw77ccvrfrv4lyljg8fpm7xqhnv29yzvig8wr8b5j2vsd8bz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/point-undo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/point-undo"; sha256 = "0by7ifj1lf0w9pp7v1j9liqjs40k8kk9yjnznxchq172816zbg3k"; name = "point-undo"; }; @@ -46371,7 +46816,7 @@ pointback = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pointback"; - version = "20100210.952"; + version = "20100210.1052"; src = fetchFromGitHub { owner = "emacsorphanage"; repo = "pointback"; @@ -46379,7 +46824,7 @@ sha256 = "016cjy5pnnqccjqb0njqc9jq6kf6p165nlki83b8c0sj75yxghav"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pointback"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pointback"; sha256 = "198q511hixvzc13b3ih89xs9g47rdvbiixn5baqakpmpx3a12hz4"; name = "pointback"; }; @@ -46392,15 +46837,15 @@ polymode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "polymode"; - version = "20160413.1600"; + version = "20160506.1643"; src = fetchFromGitHub { owner = "vspinu"; repo = "polymode"; - rev = "46b17263b5cb904dcfc12d06c1d4d32f7bd9ff40"; - sha256 = "0h6vg9msr8iw3iiy8s13dl8wdhay82q7dqir6dnj0868vdhnl3fb"; + rev = "3e4556d5c43ef62b81abd9162249617947e7ed2b"; + sha256 = "0fwsq5w5105c50ffpvbjf8m4f2yhz5y9njgxd8v61c1azapw2s9d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/polymode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/polymode"; sha256 = "0md02l7vhghvzplxa04sphimhphmksvmz079zykxajcvpm2rgwc8"; name = "polymode"; }; @@ -46413,7 +46858,7 @@ pomodoro = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pomodoro"; - version = "20150716.1246"; + version = "20150716.1346"; src = fetchFromGitHub { owner = "baudtack"; repo = "pomodoro.el"; @@ -46421,7 +46866,7 @@ sha256 = "1dlk0ypw8316vgvb7z2p7fvaiz1wcy1l8crixypaya1zdsnh9v1z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pomodoro"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pomodoro"; sha256 = "075sbypas8xlhsw8wg3mgi3fn5yf7xb3klyjgyy8wfkgdz0269f8"; name = "pomodoro"; }; @@ -46434,7 +46879,7 @@ pony-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pony-mode"; - version = "20151028.502"; + version = "20151028.602"; src = fetchFromGitHub { owner = "davidmiller"; repo = "pony-mode"; @@ -46442,7 +46887,7 @@ sha256 = "1g1yw0ykwswl9dnicyi7kxskqqry40wjykshgrqhs4k09j3jnacr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pony-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pony-mode"; sha256 = "1hgiryhpxv30bjlgv9pywzqn2ypimwzdhx03znqvn56zrwn1frnl"; name = "pony-mode"; }; @@ -46455,7 +46900,7 @@ pony-snippets = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }: melpaBuild { pname = "pony-snippets"; - version = "20160204.2211"; + version = "20160204.2311"; src = fetchFromGitHub { owner = "SeanTAllen"; repo = "pony-snippets"; @@ -46463,7 +46908,7 @@ sha256 = "002jhj47b9aqrfjy8b31ccbqhah5sn9wn7dmrhm1wbbgj9rfyw6s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pony-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pony-snippets"; sha256 = "12ygvpfkzldq6s4mwbrxs4x9927i7pa7ywn7lf1r3gg4h29ar9gn"; name = "pony-snippets"; }; @@ -46476,15 +46921,15 @@ ponylang-mode = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ponylang-mode"; - version = "20160403.1917"; + version = "20160504.1636"; src = fetchFromGitHub { owner = "SeanTAllen"; repo = "ponylang-mode"; - rev = "e6c713a1e43f4e5a3ee78e102050fff4efe334fb"; - sha256 = "0ay44hp82ly4kdsgwhhk16gvw26kyvpl8h3fziyicfl5swy954nb"; + rev = "cab4db97aacb9b5e05d6f0175154039a6b068cff"; + sha256 = "0by7klp7imy7zgc37wsiil86y6i2h1wfwfyifc2cf0jn5dsvfikw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ponylang-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ponylang-mode"; sha256 = "02fq0qp7f4bzmynzszrwskfs78nzsmf413qjxqndrh3hamixzpi1"; name = "ponylang-mode"; }; @@ -46497,7 +46942,7 @@ pophint = callPackage ({ fetchFromGitHub, fetchurl, lib, log4e, melpaBuild, popup, yaxception }: melpaBuild { pname = "pophint"; - version = "20150930.1234"; + version = "20150930.1334"; src = fetchFromGitHub { owner = "aki2o"; repo = "emacs-pophint"; @@ -46505,7 +46950,7 @@ sha256 = "0n1w1adglbavqgrv16rzhym72c3q083mh0c8yl5lj7adn4nr4gr3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pophint"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pophint"; sha256 = "1chq2j79hg095jxw5z3pz4qicqrccw0gj4sxrin0a55hnprzzp72"; name = "pophint"; }; @@ -46518,7 +46963,7 @@ poporg = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "poporg"; - version = "20150603.2047"; + version = "20150603.2147"; src = fetchFromGitHub { owner = "QBobWatson"; repo = "poporg"; @@ -46526,7 +46971,7 @@ sha256 = "0ja1kq4pl62zxlzwv2m8zzb55lg2fl366bi9pzvxl38frvbqg8qx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/poporg"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/poporg"; sha256 = "08s42689kd78h2fmw230ja5dd3c3b4lx5mzadncwq0lj91y86kd8"; name = "poporg"; }; @@ -46539,7 +46984,7 @@ popup = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "popup"; - version = "20160409.2333"; + version = "20160410.33"; src = fetchFromGitHub { owner = "auto-complete"; repo = "popup-el"; @@ -46547,7 +46992,7 @@ sha256 = "0a85ih4r8scxadfrj18kvd8k7p9s4wpi780w0rp5iby0fyh94bwl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/popup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/popup"; sha256 = "151g00h9rkid76qf6c53n8bncsfaikmhj8fqcb3r3a6mbngcd5k2"; name = "popup"; }; @@ -46560,7 +47005,7 @@ popup-complete = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, popup }: melpaBuild { pname = "popup-complete"; - version = "20141108.2108"; + version = "20141108.2208"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-popup-complete"; @@ -46568,7 +47013,7 @@ sha256 = "1q9zajv6g7mi6k98kzq3498nhmdkp1z9d2b8vgzbk7745d39gm9b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/popup-complete"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/popup-complete"; sha256 = "04bpm31zx87j390r2xi1yl4kyqgalmyqc48xarsm67zfww9fw9c1"; name = "popup-complete"; }; @@ -46581,7 +47026,7 @@ popup-imenu = callPackage ({ dash, fetchFromGitHub, fetchurl, flx-ido, lib, melpaBuild, popup }: melpaBuild { pname = "popup-imenu"; - version = "20160409.710"; + version = "20160409.810"; src = fetchFromGitHub { owner = "ancane"; repo = "popup-imenu"; @@ -46589,7 +47034,7 @@ sha256 = "19mqzfpki2zlnibp2vzymhdld1m20jinxwgdhmbl6zdfx74zbz7b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/popup-imenu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/popup-imenu"; sha256 = "0lxwfaa9vhdn55dj3idp8c3fg1g26qsqq46y5bimfd0s89bjbaxn"; name = "popup-imenu"; }; @@ -46602,7 +47047,7 @@ popup-kill-ring = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, popup, pos-tip }: melpaBuild { pname = "popup-kill-ring"; - version = "20131020.1354"; + version = "20131020.1454"; src = fetchFromGitHub { owner = "waymondo"; repo = "popup-kill-ring"; @@ -46610,7 +47055,7 @@ sha256 = "1zdwlmk3vr0mq0dxrnkqjncalnbmvpxc0lma2sv3a4czl8yv0inn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/popup-kill-ring"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/popup-kill-ring"; sha256 = "1jfw669xi2983jj3hiw5lyhc0rc0318qrmqx03f7m4ylg70dgxip"; name = "popup-kill-ring"; }; @@ -46623,15 +47068,15 @@ popup-switcher = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, popup }: melpaBuild { pname = "popup-switcher"; - version = "20160405.438"; + version = "20160504.1219"; src = fetchFromGitHub { owner = "kostafey"; repo = "popup-switcher"; - rev = "66c1b2491de92c05752267ff3cba3e8c9015c644"; - sha256 = "02d6rzxwzw1pbcjh8lxkaw1j77vq5jcryl8ajkmm6jp5daqyjjyc"; + rev = "54be940ce11b5ce4976043980929abe6cbc2c2ec"; + sha256 = "1zr7kvgk01d3628vz461mr5p1whr2jd7fwh7ry64rbk8zlhhklvi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/popup-switcher"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/popup-switcher"; sha256 = "1888xiqhrn7fcpjnr3smchmmqwfayfbbyvdkdb79c6drzjcvidp1"; name = "popup-switcher"; }; @@ -46644,7 +47089,7 @@ popwin = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "popwin"; - version = "20150315.800"; + version = "20150315.900"; src = fetchFromGitHub { owner = "m2ym"; repo = "popwin-el"; @@ -46652,7 +47097,7 @@ sha256 = "0nips9npm4zmz3f37vvb4s0g1ci0p9cl6w0z4sc6agg4rybjhpdp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/popwin"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/popwin"; sha256 = "1zp54nv8rh0b3g8y5aj4793miiw2r1ijwbzq31lkwmbdr09mixmf"; name = "popwin"; }; @@ -46665,7 +47110,7 @@ portage-navi = callPackage ({ concurrent, ctable, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "portage-navi"; - version = "20141208.755"; + version = "20141208.855"; src = fetchFromGitHub { owner = "kiwanami"; repo = "emacs-portage-navi"; @@ -46673,7 +47118,7 @@ sha256 = "1pm4x74pw67m2izr9dir201dn5g9icgk6h2j8rqvasgx8v8krv3i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/portage-navi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/portage-navi"; sha256 = "1wjkh8xj5120v9fz1nrpkd6x4f22ni8h2lfkd82df7kjz6bzdfwg"; name = "portage-navi"; }; @@ -46686,7 +47131,7 @@ pos-tip = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pos-tip"; - version = "20150318.1013"; + version = "20150318.1113"; src = fetchFromGitHub { owner = "pitkali"; repo = "pos-tip"; @@ -46694,7 +47139,7 @@ sha256 = "168hl76rhj6f5ncmrij4rd3z55228h6kb23384h2phsjw0avgf23"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pos-tip"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pos-tip"; sha256 = "13qjz112qlrnq34lr70087gshzq8m44knfl6694hfprzjgix84vh"; name = "pos-tip"; }; @@ -46707,7 +47152,7 @@ pov-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pov-mode"; - version = "20120825.916"; + version = "20120825.1016"; src = fetchFromGitHub { owner = "melmothx"; repo = "pov-mode"; @@ -46715,7 +47160,7 @@ sha256 = "14silfng5rbdc8hnzswjmqk705pncjlk8iphjcxcm799h44pnlcr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pov-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pov-mode"; sha256 = "1xzdmlfi5ixdh08v0ca80zkh9n3gfn4ql5pnl3jh745wbj9azxp9"; name = "pov-mode"; }; @@ -46728,7 +47173,7 @@ pow = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pow"; - version = "20140420.306"; + version = "20140420.406"; src = fetchFromGitHub { owner = "yukihr"; repo = "emacs-pow"; @@ -46736,7 +47181,7 @@ sha256 = "1jzqav2lchr0ggckjq9rwlxwryi7m7xnmn8471zgiamd1h04ddqf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pow"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pow"; sha256 = "05wc4ylp0xjqbzrm046lcsv4aw2a6s2rfv1ra38bfr0dai6qrsrn"; name = "pow"; }; @@ -46749,15 +47194,15 @@ powerline = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "powerline"; - version = "20160224.2252"; + version = "20160505.255"; src = fetchFromGitHub { owner = "milkypostman"; repo = "powerline"; - rev = "b0793ac11cdd6de17848ac654d61b1255416789e"; - sha256 = "1dmxnail0w4v5d29qiycqwd27mkxfk9cs5p2l9nm0fajm4mm5wa2"; + rev = "cafd957b33dbe8dc318b423082830a1f910da333"; + sha256 = "03828l2c8gxj4c9i6b16ynwkdr48gccwkpa1i0wk798f93kv8brw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/powerline"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/powerline"; sha256 = "0gsffr6ilmckrzifsmhwd42vr85vs42pc26f1205pbxb7ma34dhx"; name = "powerline"; }; @@ -46770,7 +47215,7 @@ powerline-evil = callPackage ({ evil, fetchFromGitHub, fetchurl, lib, melpaBuild, powerline }: melpaBuild { pname = "powerline-evil"; - version = "20151112.910"; + version = "20151112.1010"; src = fetchFromGitHub { owner = "raugturi"; repo = "powerline-evil"; @@ -46778,7 +47223,7 @@ sha256 = "1c8y4r7zdr6764kzs5bc64idv2pfjvi78lg2f1d2hp1595ia8y5r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/powerline-evil"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/powerline-evil"; sha256 = "0cdnmq9f06lzkj0hs948a7j5sgg6fl5f36bfnyaxgss23akbfjhr"; name = "powerline-evil"; }; @@ -46791,7 +47236,7 @@ powershell = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "powershell"; - version = "20160210.2058"; + version = "20160210.2158"; src = fetchFromGitHub { owner = "jschaf"; repo = "powershell.el"; @@ -46799,7 +47244,7 @@ sha256 = "1ym373mjyk3vfbw2c918zgaf9m35j8bkrpcj9d8m9drf4h7a8d3b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/powershell"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/powershell"; sha256 = "162k8y9k2n48whaq93sqk86zy3p9qvsfxgyfv9n1nvk4l5wn70wk"; name = "powershell"; }; @@ -46811,13 +47256,13 @@ }) {}; pp-c-l = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "pp-c-l"; - version = "20151231.1747"; + version = "20151231.1847"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/pp-c-l.el"; sha256 = "10gsdjdr8qngimqh57qxcljjnypbf38asxqb3zlfwc2ls52fc19q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pp-c-l"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pp-c-l"; sha256 = "0gbqxlrsh9lcdkrj8bqh1mpxyhdlwbaxz4ndp5s90inmisaqb83v"; name = "pp-c-l"; }; @@ -46829,13 +47274,13 @@ }) {}; pp-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "pp-plus"; - version = "20151231.1746"; + version = "20160501.2330"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/pp+.el"; - sha256 = "0zlmcrg8gx812gm04cil7p2z0g4814c158yv1ghmrbxshn8p45fg"; + sha256 = "0gs76dg2j6667zdk2sy64m3nzxy98cswx901x3f6d0c0s3qm5vdd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pp+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pp+"; sha256 = "1ng5x7dp85y6yqj6q43h08qdnapg2j1ab8rmc47w4w79d1pryniq"; name = "pp-plus"; }; @@ -46848,7 +47293,7 @@ ppd-sr-speedbar = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, project-persist-drawer, sr-speedbar }: melpaBuild { pname = "ppd-sr-speedbar"; - version = "20151108.624"; + version = "20151108.724"; src = fetchFromGitHub { owner = "rdallasgray"; repo = "ppd-sr-speedbar"; @@ -46856,7 +47301,7 @@ sha256 = "0pv671j8g09pn61kkfb3pa9axfa9zd2jdrkgr81rm2gqb2vh1hsq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ppd-sr-speedbar"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ppd-sr-speedbar"; sha256 = "1m2918hqvb9c6rgb5szs95ds99gdjdxggcbdfqzmbb5sz2936av8"; name = "ppd-sr-speedbar"; }; @@ -46869,7 +47314,7 @@ preproc-font-lock = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "preproc-font-lock"; - version = "20151107.1418"; + version = "20151107.1518"; src = fetchFromGitHub { owner = "Lindydancer"; repo = "preproc-font-lock"; @@ -46877,7 +47322,7 @@ sha256 = "0yrfd9qaz16nqcvjyjm9qci526qgkv6k51q5752h3iyqkxnss1pd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/preproc-font-lock"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/preproc-font-lock"; sha256 = "1ra0lgjv6713zym2h8pblf2ryf0f658l1khbxbwnxl023gkyj9v4"; name = "preproc-font-lock"; }; @@ -46890,7 +47335,7 @@ preseed-generic-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "preseed-generic-mode"; - version = "20150119.1441"; + version = "20150119.1541"; src = fetchFromGitHub { owner = "suntong"; repo = "preseed-generic-mode"; @@ -46898,7 +47343,7 @@ sha256 = "1dyi9nc2q43jf87xiz9xw42irrbla2vyixifdiibh6nm9misnfj0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/preseed-generic-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/preseed-generic-mode"; sha256 = "14vbx6y7h4vqc5kkgj4mbr9zj6gqf6ib3hh2917m203s8y87lsfl"; name = "preseed-generic-mode"; }; @@ -46910,13 +47355,13 @@ }) {}; pretty-lambdada = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "pretty-lambdada"; - version = "20151231.1748"; + version = "20151231.1848"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/pretty-lambdada.el"; sha256 = "1fn24399wsn12453py0hw2vbbkrkakiwi06cjvjzsdk7g3326ma4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pretty-lambdada"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pretty-lambdada"; sha256 = "16v5fgifz672c37xyzv557mm6za4rldvdrb26vdymxqg4fy62fd6"; name = "pretty-lambdada"; }; @@ -46929,7 +47374,7 @@ pretty-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pretty-mode"; - version = "20160416.934"; + version = "20160416.1034"; src = fetchFromGitHub { owner = "akatov"; repo = "pretty-mode"; @@ -46937,7 +47382,7 @@ sha256 = "0lrxd87p62s16bcp9r7hj1dnn67mgy2akslq4m9vb0xc7qckwr7y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pretty-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pretty-mode"; sha256 = "1zxi4nj7vnchiiz1ndx17b719a1wipiqniykzn4pa1w7dsnqg21f"; name = "pretty-mode"; }; @@ -46950,7 +47395,7 @@ pretty-sha-path = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pretty-sha-path"; - version = "20141105.1226"; + version = "20141105.1326"; src = fetchFromGitHub { owner = "alezost"; repo = "pretty-sha-path.el"; @@ -46958,7 +47403,7 @@ sha256 = "1n0594msgy53ia58gjfkm3z3cnmq52wrq5992fm28s4jgazbgdfd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pretty-sha-path"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pretty-sha-path"; sha256 = "0qqsg383391dnsk46xm8plq7xmdmnis3iv7h7dmchpzd99bkm9lq"; name = "pretty-sha-path"; }; @@ -46971,7 +47416,7 @@ pretty-symbols = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pretty-symbols"; - version = "20140814.459"; + version = "20140814.559"; src = fetchFromGitHub { owner = "drothlis"; repo = "pretty-symbols"; @@ -46979,7 +47424,7 @@ sha256 = "1f00l9f6an1mh8yhf629mw0p37m4jcpl8giz47xbdyw1k6bqn830"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pretty-symbols"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pretty-symbols"; sha256 = "0d1ad2x4md0n3fad3s2355wm8hl311qdhih1gkdqwdaj4i1d6gvb"; name = "pretty-symbols"; }; @@ -46992,7 +47437,7 @@ private = callPackage ({ aes, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "private"; - version = "20150121.1957"; + version = "20150121.2057"; src = fetchFromGitHub { owner = "cheunghy"; repo = "private"; @@ -47000,7 +47445,7 @@ sha256 = "0zng64f5vwnpkf9fk59yv1ndc646q608a6awr1y9qk0mhzbfzhqm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/private"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/private"; sha256 = "1glpcwcyndyn683q9mg99hr0h3l8pz7rrhbnfak01v826d5cnk9g"; name = "private"; }; @@ -47013,7 +47458,7 @@ private-diary = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "private-diary"; - version = "20151216.1057"; + version = "20151216.1157"; src = fetchFromGitHub { owner = "cacology"; repo = "private-diary"; @@ -47021,7 +47466,7 @@ sha256 = "1pxr5a9ik09k0f58lawhxiv179n5j8q24zhrs9vjk93yskl1ydwn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/private-diary"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/private-diary"; sha256 = "0dgnf375c00nlkp66kbkzsf469063l03b9miiplbhd63zshlv1i1"; name = "private-diary"; }; @@ -47034,7 +47479,7 @@ proc-net = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "proc-net"; - version = "20130321.1912"; + version = "20130321.2012"; src = fetchFromGitHub { owner = "nicferrier"; repo = "emacs-proc-net"; @@ -47042,7 +47487,7 @@ sha256 = "0nly5h0d6w8dc08ifb2fiqcn4cqcn9crkh2wn0jzlz4zd2x75qrb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/proc-net"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/proc-net"; sha256 = "0562x2s3kk9vlaavak4lya1nlmn4mwlzlc7nw1l3687q023z4hmv"; name = "proc-net"; }; @@ -47055,7 +47500,7 @@ processing-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "processing-mode"; - version = "20150217.632"; + version = "20150217.732"; src = fetchFromGitHub { owner = "ptrv"; repo = "processing2-emacs"; @@ -47063,7 +47508,7 @@ sha256 = "1smw786dcjvdn2j6bwqn2rfzhw039rrhxiv7vlrgzm0fyy2v1q6h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/processing-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/processing-mode"; sha256 = "184yg9z14ighz9djg53ji5dgnb98dnxkkwx55m8f0f879x31i89m"; name = "processing-mode"; }; @@ -47076,7 +47521,7 @@ processing-snippets = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }: melpaBuild { pname = "processing-snippets"; - version = "20140426.928"; + version = "20140426.1028"; src = fetchFromGitHub { owner = "ptrv"; repo = "processing2-emacs"; @@ -47084,7 +47529,7 @@ sha256 = "1smw786dcjvdn2j6bwqn2rfzhw039rrhxiv7vlrgzm0fyy2v1q6h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/processing-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/processing-snippets"; sha256 = "09vkm9asmjz1in0f63s7bf4amifspsqf5w9pxiy5y0qvmn28fr2r"; name = "processing-snippets"; }; @@ -47097,15 +47542,15 @@ prodigy = callPackage ({ dash, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "prodigy"; - version = "20160420.442"; + version = "20160429.254"; src = fetchFromGitHub { owner = "rejeep"; repo = "prodigy.el"; - rev = "983049811a14415583c90f14530b19cdcf448512"; - sha256 = "0br2nxi4wpla4rwknipv6y5f07wsi0j8f2gs52mxx48wnaiq1q1i"; + rev = "feb5e453cc550d7d8dd861080fbbeeae23e9e9a7"; + sha256 = "0yy4ximahmj3kbxn6bhag853vyy56g1n007qnd8hjsl1xawlin5x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/prodigy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/prodigy"; sha256 = "032868bgy2wmb2ws48lfibs4118inpna7mmml8m7i4m4y9ll6g85"; name = "prodigy"; }; @@ -47118,7 +47563,7 @@ professional-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "professional-theme"; - version = "20150315.600"; + version = "20150315.700"; src = fetchFromGitHub { owner = "juanjux"; repo = "emacs-professional-theme"; @@ -47126,7 +47571,7 @@ sha256 = "0hx7rxa3smdippcpj4j63k0r5l4wflllb0vpnwwknc9j93r7042b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/professional-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/professional-theme"; sha256 = "1l8nisn2c124cpylyahr76hfpdim2125zrns2897p466l5wcxcx5"; name = "professional-theme"; }; @@ -47139,7 +47584,7 @@ prognth = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "prognth"; - version = "20130920.1259"; + version = "20130920.1359"; src = fetchFromGitHub { owner = "Fuco1"; repo = "prognth"; @@ -47147,7 +47592,7 @@ sha256 = "1szxsbk470fg3jp70r20va9hnnf4jj0mb7kxdkn6rd7ky6w34lwm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/prognth"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/prognth"; sha256 = "0hr5a3s0ij4hvn424v885z7pcs62yqm9mamw5b096hgjxgjf6ylm"; name = "prognth"; }; @@ -47160,7 +47605,7 @@ programmer-dvorak = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "programmer-dvorak"; - version = "20150426.2037"; + version = "20150426.2137"; src = fetchFromGitHub { owner = "yangchenyun"; repo = "programmer-dvorak"; @@ -47168,7 +47613,7 @@ sha256 = "1yklm43d0ppyf4simhqab6m892z4mmxs2145lzw6kpizixavcv00"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/programmer-dvorak"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/programmer-dvorak"; sha256 = "1w8r35hkl6qy9a89l0m74x9q2vcc4h2hvmi3r2hqcy2ypkn5l5bv"; name = "programmer-dvorak"; }; @@ -47181,7 +47626,7 @@ project-explorer = callPackage ({ cl-lib ? null, emacs, es-lib, es-windows, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "project-explorer"; - version = "20150503.1914"; + version = "20150503.2014"; src = fetchFromGitHub { owner = "sabof"; repo = "project-explorer"; @@ -47189,7 +47634,7 @@ sha256 = "04l4m3kxbwvyw9xy6cwakrdxxdswrrs7sya8zn6m738aawbr1mcd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/project-explorer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/project-explorer"; sha256 = "076lzmyi1n7yrgdgyh9qinq271qk6k64x0msbzarihr3p4psrn8m"; name = "project-explorer"; }; @@ -47202,13 +47647,13 @@ project-local-variables = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "project-local-variables"; - version = "20080502.1152"; + version = "20080502.1252"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/project-local-variables.el"; sha256 = "1bb5b6hxg3gvwf0sqwkd97nnipsmr60py0rnsfhgvizn4cj3khhw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/project-local-variables"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/project-local-variables"; sha256 = "0mrf7p420rmjm8ydwc5blpxr6299pdg3sy3jwz2zz0420gkp0ihl"; name = "project-local-variables"; }; @@ -47221,7 +47666,7 @@ project-persist = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "project-persist"; - version = "20150519.1524"; + version = "20150519.1624"; src = fetchFromGitHub { owner = "rdallasgray"; repo = "project-persist"; @@ -47229,7 +47674,7 @@ sha256 = "1fvjap0bsyw5q92q50wk8c81yv4g8nqb6jdlnarf80glwk50avrs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/project-persist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/project-persist"; sha256 = "0csjwj0qaw0hz2qrj8kxgxlixh2hi3aqib98vm19sr3f1b8qab24"; name = "project-persist"; }; @@ -47242,7 +47687,7 @@ project-persist-drawer = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, project-persist }: melpaBuild { pname = "project-persist-drawer"; - version = "20151108.622"; + version = "20151108.722"; src = fetchFromGitHub { owner = "rdallasgray"; repo = "project-persist-drawer"; @@ -47250,7 +47695,7 @@ sha256 = "1nq320ph8fs9a197ji4mnw2xa24dld0r1nka476yvkg4azmcc9x8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/project-persist-drawer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/project-persist-drawer"; sha256 = "1jv2y2hcqakyvfibclzm7g4diw0bvsv3a8fa43yf19wb64jm8hdb"; name = "project-persist-drawer"; }; @@ -47263,14 +47708,14 @@ project-root = callPackage ({ fetchhg, fetchurl, lib, melpaBuild }: melpaBuild { pname = "project-root"; - version = "20110206.1430"; + version = "20110206.1530"; src = fetchhg { url = "https://bitbucket.com/piranha/project-root"; rev = "fcd9df2eadca"; sha256 = "08dd2y6hdsj1rxcqa2hnjypnn9c2z43y7z2hz0fi4vny547qybz8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/project-root"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/project-root"; sha256 = "0xjir204zk254y2x70k9vqwirx2ljmrikpsgn5kn170d1bxvhwmb"; name = "project-root"; }; @@ -47283,7 +47728,7 @@ projectile = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, pkg-info }: melpaBuild { pname = "projectile"; - version = "20160420.1708"; + version = "20160420.1808"; src = fetchFromGitHub { owner = "bbatsov"; repo = "projectile"; @@ -47291,7 +47736,7 @@ sha256 = "088jdw031wq1zrxd2rf72hzfhxxzsn2wnkbchibn41a3vr0w19zx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/projectile"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/projectile"; sha256 = "1kf8hql59nwiy13q0p6p6rf5agjvah43f0sflflfqsrxbihshvdn"; name = "projectile"; }; @@ -47304,7 +47749,7 @@ projectile-codesearch = callPackage ({ codesearch, fetchFromGitHub, fetchurl, lib, melpaBuild, projectile }: melpaBuild { pname = "projectile-codesearch"; - version = "20151228.220"; + version = "20151228.320"; src = fetchFromGitHub { owner = "abingham"; repo = "codesearch.el"; @@ -47312,7 +47757,7 @@ sha256 = "0ch3naqp3ji0q4blpjfr1xbzgzxhw10h08y2akik96kk1pnkwism"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/projectile-codesearch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/projectile-codesearch"; sha256 = "0jgvs9is59q45wh2a7k5sb6vj179ixqgj5dlndj9r6fh59qgrzdk"; name = "projectile-codesearch"; }; @@ -47325,7 +47770,7 @@ projectile-direnv = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, projectile, s }: melpaBuild { pname = "projectile-direnv"; - version = "20160305.1938"; + version = "20160305.2038"; src = fetchFromGitHub { owner = "christianromney"; repo = "projectile-direnv"; @@ -47333,7 +47778,7 @@ sha256 = "09zyzfqy1i3i8knvh1ajr5jcidjx3jpsyx8qarxfr5kv16pwyfvj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/projectile-direnv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/projectile-direnv"; sha256 = "1s5dapdcblcbcqyv8df26v8wxl8bhrs9ybl5h5qbzz49gigd8nqh"; name = "projectile-direnv"; }; @@ -47343,10 +47788,31 @@ license = lib.licenses.free; }; }) {}; + projectile-hanami = callPackage ({ emacs, fetchFromGitHub, fetchurl, inf-ruby, lib, melpaBuild, projectile, rake }: + melpaBuild { + pname = "projectile-hanami"; + version = "20160505.911"; + src = fetchFromGitHub { + owner = "avdgaag"; + repo = "projectile-hanami"; + rev = "c4b8e7d4dfec789ef8493a7c5d4ce0cf7937e579"; + sha256 = "1pqmyfz0vil30x739r18zpw9n76297ckisimq2g0xl1irhynsvbk"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/projectile-hanami"; + sha256 = "0qi9i4wdggrmihf1j42fqrf38psmb33rlafg3y6da5r7lpn03j1a"; + name = "projectile-hanami"; + }; + packageRequires = [ emacs inf-ruby projectile rake ]; + meta = { + homepage = "https://melpa.org/#/projectile-hanami"; + license = lib.licenses.free; + }; + }) {}; projectile-rails = callPackage ({ emacs, f, fetchFromGitHub, fetchurl, inf-ruby, inflections, lib, melpaBuild, projectile, rake }: melpaBuild { pname = "projectile-rails"; - version = "20160417.706"; + version = "20160417.806"; src = fetchFromGitHub { owner = "asok"; repo = "projectile-rails"; @@ -47354,7 +47820,7 @@ sha256 = "1q72n08znhbi2v0hd4cnwfhc1y0xc2017cms49d0ay9m6k10wi85"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/projectile-rails"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/projectile-rails"; sha256 = "0fgvignqdqh0ma91z9385782l89mvwfn77rp1gmy8cbkwi3b7fkq"; name = "projectile-rails"; }; @@ -47367,7 +47833,7 @@ projectile-sift = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, projectile, sift }: melpaBuild { pname = "projectile-sift"; - version = "20160107.415"; + version = "20160107.515"; src = fetchFromGitHub { owner = "nlamirault"; repo = "sift.el"; @@ -47375,7 +47841,7 @@ sha256 = "1ma6djvhvjai07v1g9a36lfa3nw8zsy6x5vliwcdnkf44gs287ra"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/projectile-sift"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/projectile-sift"; sha256 = "1wbgpwq9yy3v7hqidaczrvvsw5ajj7m3n4gsy3b169xv5h673a0i"; name = "projectile-sift"; }; @@ -47388,7 +47854,7 @@ projectile-speedbar = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, projectile }: melpaBuild { pname = "projectile-speedbar"; - version = "20150629.1353"; + version = "20150629.1453"; src = fetchFromGitHub { owner = "anshulverma"; repo = "projectile-speedbar"; @@ -47396,7 +47862,7 @@ sha256 = "0lr3vx1byf0i9jdzbyrvvzyzi1nfddvw5r9f9wm7gpfp5l8772la"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/projectile-speedbar"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/projectile-speedbar"; sha256 = "0dli4gzsiycivh8dwa00lfpbimyg42qygfachzrhi8qy5413pwlp"; name = "projectile-speedbar"; }; @@ -47409,7 +47875,7 @@ projector = callPackage ({ alert, cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, projectile }: melpaBuild { pname = "projector"; - version = "20151201.1441"; + version = "20151201.1541"; src = fetchFromGitHub { owner = "waymondo"; repo = "projector.el"; @@ -47417,7 +47883,7 @@ sha256 = "0y8zbywin99nhcrs5nzx4d179r84rdy39admajpi0j76v0b9pwl3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/projector"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/projector"; sha256 = "0hrinplk607wcc2ibn05pl8ghikv9f3zvymncp6nz95jw9brdapf"; name = "projector"; }; @@ -47430,7 +47896,7 @@ projekt = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "projekt"; - version = "20150324.348"; + version = "20150324.448"; src = fetchFromGitHub { owner = "tekai"; repo = "projekt"; @@ -47438,7 +47904,7 @@ sha256 = "0hvvlh24157qjxz82sbg22d4cbrf95xyx202cybp0n1vyxsmjcmw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/projekt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/projekt"; sha256 = "1bhb24701flihl54w8xrj6yxhynpq4dk0fp5ciac7k28n4930lw8"; name = "projekt"; }; @@ -47451,7 +47917,7 @@ projmake-mode = callPackage ({ dash, fetchFromGitHub, fetchurl, indicators, lib, melpaBuild }: melpaBuild { pname = "projmake-mode"; - version = "20150619.1620"; + version = "20150619.1720"; src = fetchFromGitHub { owner = "ericbmerritt"; repo = "projmake-mode"; @@ -47459,7 +47925,7 @@ sha256 = "1sxxy0s96sgm6i743qwjs0qjpsdr03gqc1cddvvpxbryh42vw9jn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/projmake-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/projmake-mode"; sha256 = "192gvmhcz1anl80hpmcjwwd08dljyrap9sk6qj0y85mcnaafm882"; name = "projmake-mode"; }; @@ -47472,7 +47938,7 @@ prompt-text = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "prompt-text"; - version = "20160106.809"; + version = "20160106.909"; src = fetchFromGitHub { owner = "10sr"; repo = "prompt-text-el"; @@ -47480,7 +47946,7 @@ sha256 = "1hq8426i8rpb3qzkd5akv3i08pa4jsp9lwsskn38bfgp71pwild2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/prompt-text"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/prompt-text"; sha256 = "1b9sj9kzx5ydq2zsfmkwsx78pzg0vsvrn92397js6b2cm24vrwwc"; name = "prompt-text"; }; @@ -47493,7 +47959,7 @@ prop-menu = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "prop-menu"; - version = "20150728.618"; + version = "20150728.718"; src = fetchFromGitHub { owner = "david-christiansen"; repo = "prop-menu-el"; @@ -47501,7 +47967,7 @@ sha256 = "18ap2liz5r5a8ja2zz9182fnfm47jnsbyblpq859zks356k37iwc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/prop-menu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/prop-menu"; sha256 = "0dhy52fxxpa058mhhx0slw3sly3dlxm9vkax6fd1sap6f6v00p5i"; name = "prop-menu"; }; @@ -47514,7 +47980,7 @@ propfont-mixed = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "propfont-mixed"; - version = "20150113.1611"; + version = "20150113.1711"; src = fetchFromGitHub { owner = "ikirill"; repo = "propfont-mixed"; @@ -47522,7 +47988,7 @@ sha256 = "0lch20njy248w7bnvgs7jz0zqasskf5dakmykxwpb48llm6kx95v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/propfont-mixed"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/propfont-mixed"; sha256 = "19k0ydpkiviznsngwcqwn4k30r6j8w34pchgpjlsfwq1bndaai9y"; name = "propfont-mixed"; }; @@ -47535,7 +48001,7 @@ prosjekt = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "prosjekt"; - version = "20151127.816"; + version = "20151127.916"; src = fetchFromGitHub { owner = "abingham"; repo = "prosjekt"; @@ -47543,7 +48009,7 @@ sha256 = "1m8zvrv5aws7b0dffk8y6b5mncdk2c4k90mx69jys10fs0gc5hb3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/prosjekt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/prosjekt"; sha256 = "1fn7ii1bq7bjkz27hihclpvx0aabgwy3kv47r9qibjl2jin97rck"; name = "prosjekt"; }; @@ -47556,15 +48022,15 @@ protobuf-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "protobuf-mode"; - version = "20150521.2211"; + version = "20150521.2311"; src = fetchFromGitHub { owner = "google"; repo = "protobuf"; - rev = "40574479978f80bd86caf44edae5b0a22d596c79"; - sha256 = "10058qk9jz9810s7ak2cbbjhyl4q0qp1qh0rznrwqc0ixsql78kl"; + rev = "d392ed4577a7c2e795a7f035a523f4c800123c41"; + sha256 = "05433qgg1i285g8bs9drvshdpxn1rpz9x9yi1nh6x75szvb48hfy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/protobuf-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/protobuf-mode"; sha256 = "1hh0w93fg6mfwsbb9wvp335ry8kflj50k8hybchpjcn6f4x39xsj"; name = "protobuf-mode"; }; @@ -47577,15 +48043,15 @@ psc-ide = callPackage ({ cl-lib ? null, company, dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "psc-ide"; - version = "20160408.1353"; + version = "20160506.705"; src = fetchFromGitHub { owner = "epost"; repo = "psc-ide-emacs"; - rev = "02e83f506ebc9212b852dcf36e867b3ddf842e5b"; - sha256 = "1q30jvml32claqa259zzfrpdpjcv1m4al3gq5pfcj5x0wcckm2k7"; + rev = "cd292c2b76c1bc5f046aa54e08f7a0f3abdc7db8"; + sha256 = "17d391hrang0jr8q40h89v30qb1aa3zb8mr2yh0fmjs4dz5rdjwq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/psc-ide"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/psc-ide"; sha256 = "1f8bphrbksz7si9flyhz54brb7w1lcz19pmn92hjwx7kd4nl18i9"; name = "psc-ide"; }; @@ -47598,7 +48064,7 @@ psci = callPackage ({ dash, deferred, f, fetchFromGitHub, fetchurl, lib, melpaBuild, purescript-mode, s }: melpaBuild { pname = "psci"; - version = "20150328.1401"; + version = "20150328.1501"; src = fetchFromGitHub { owner = "ardumont"; repo = "emacs-psci"; @@ -47606,7 +48072,7 @@ sha256 = "08j31bg5vwgirv5n5fsw7w6gncrkpwpjlj2m00dhj8wbvhp503sn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/psci"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/psci"; sha256 = "0sgrz8byz2pcsad2pydinp4hh2xb48pdb03r93wg2vvyy8p15j9g"; name = "psci"; }; @@ -47619,7 +48085,7 @@ psession = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "psession"; - version = "20151114.1306"; + version = "20151114.1406"; src = fetchFromGitHub { owner = "thierryvolpiatto"; repo = "psession"; @@ -47627,7 +48093,7 @@ sha256 = "1b8w9wnrwk4j2gn543phz9qp8813ksqakr5pi509m6ijwcv0cp7b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/psession"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/psession"; sha256 = "18va6kvpia5an74vkzccs72z02vg4vq9mjzr5ih7xbcqxna7yv3a"; name = "psession"; }; @@ -47640,7 +48106,7 @@ psvn = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "psvn"; - version = "20151103.1242"; + version = "20151103.1342"; src = fetchFromGitHub { owner = "emacsmirror"; repo = "psvn"; @@ -47648,7 +48114,7 @@ sha256 = "1jz1g0igpnsjn2r144205bffj10iyp8izm8678mzkhnricxkn0d6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/psvn"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/psvn"; sha256 = "1wdww25pjla7c8zf04mvgia1ws8cal9rb7z8g3vn2s3gp68py12n"; name = "psvn"; }; @@ -47661,7 +48127,7 @@ psysh = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "psysh"; - version = "20160423.336"; + version = "20160423.436"; src = fetchFromGitHub { owner = "zonuexe"; repo = "psysh.el"; @@ -47669,7 +48135,7 @@ sha256 = "0mnxvh5yd8v8a5mfi53isknc88kv2kdjjv0qffblz0sgshkpl30x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/psysh"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/psysh"; sha256 = "0ygnfmfx1ifppg6j3vfz10srbcpr5ird2bhw6pvydijxkyd75vy5"; name = "psysh"; }; @@ -47682,7 +48148,7 @@ pt = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pt"; - version = "20160119.1017"; + version = "20160119.1117"; src = fetchFromGitHub { owner = "bling"; repo = "pt.el"; @@ -47690,7 +48156,7 @@ sha256 = "0ca8j7xlqxbidqfz2iarwn7qq4v12pwvsq6vzj2473n2g1c09xzj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pt"; sha256 = "0zmz1hcr4ajc2ydvpdxhy1dlhp7hvlkv6y6w1b79ffvq6acdd5mj"; name = "pt"; }; @@ -47703,15 +48169,15 @@ puml-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "puml-mode"; - version = "20160324.1725"; + version = "20160324.1825"; src = fetchFromGitHub { owner = "skuro"; repo = "puml-mode"; - rev = "463aa0d54b5568189e6e93eafb98612ce0b11bbc"; - sha256 = "1bwlkv87nxqrdvq3682x5jqxhhiya2wjp3162mh801pnglaw1mv4"; + rev = "b31063125b16441cd88af75bb46de8575a0c626f"; + sha256 = "1qszv1xc0h5hj13znxxbqk362m8ada59p0gxss78r2c9k61r5ql4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/puml-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/puml-mode"; sha256 = "131ghjq6lsbhbx5hdg36swnkqijdb9bx6zg73hg0nw8qk0z742vn"; name = "puml-mode"; }; @@ -47724,7 +48190,7 @@ punctuality-logger = callPackage ({ fetchFromGitLab, fetchurl, lib, melpaBuild }: melpaBuild { pname = "punctuality-logger"; - version = "20141120.1431"; + version = "20141120.1531"; src = fetchFromGitLab { owner = "elzair"; repo = "punctuality-logger"; @@ -47732,7 +48198,7 @@ sha256 = "1bkkgs2agy00wivilljkj3a9fsb2ba935icjmhbk46zjc6yf3y6q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/punctuality-logger"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/punctuality-logger"; sha256 = "0q9s74hkfqvcx67xpq9rlvh38nyjnz230bll6ks7y5yzxvl4qhcm"; name = "punctuality-logger"; }; @@ -47745,7 +48211,7 @@ pungi = callPackage ({ fetchFromGitHub, fetchurl, jedi, lib, melpaBuild, pyvenv }: melpaBuild { pname = "pungi"; - version = "20150222.646"; + version = "20150222.746"; src = fetchFromGitHub { owner = "mgrbyte"; repo = "pungi"; @@ -47753,7 +48219,7 @@ sha256 = "1viw95y6fha782n1jw7snr7xc00iyf94r4whsm1a2q11vm2d1h21"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pungi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pungi"; sha256 = "1v9fsd764z5wdcips63z53rcipdz7bha4q6s4pnn114jn3a93ls1"; name = "pungi"; }; @@ -47766,7 +48232,7 @@ punpun-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "punpun-theme"; - version = "20160324.1245"; + version = "20160324.1345"; src = fetchFromGitHub { owner = "wasamasa"; repo = "punpun-theme"; @@ -47774,7 +48240,7 @@ sha256 = "1qqfv5qn336p6yk5fydphqpnp0p1ar6185ph2la32vy26k44nahd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/punpun-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/punpun-theme"; sha256 = "1l7nphh8v7w5w790cwmnp6nw5rciwhgzkvynkrvpiv9chhacx0xg"; name = "punpun-theme"; }; @@ -47787,7 +48253,7 @@ puppet-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, pkg-info }: melpaBuild { pname = "puppet-mode"; - version = "20160416.1136"; + version = "20160416.1236"; src = fetchFromGitHub { owner = "lunaryorn"; repo = "puppet-mode"; @@ -47795,7 +48261,7 @@ sha256 = "1ly7gkxlkfgx3nzw35f7rwx7x9w6jrhql15jgsrh9slcw3q2rksl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/puppet-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/puppet-mode"; sha256 = "1s2hap6fs6rg5q80dmzhaf4qqaf5sglhs8p896i3i5hq51w0ciyc"; name = "puppet-mode"; }; @@ -47808,7 +48274,7 @@ purescript-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "purescript-mode"; - version = "20150316.2028"; + version = "20150316.2128"; src = fetchFromGitHub { owner = "dysinger"; repo = "purescript-mode"; @@ -47816,7 +48282,7 @@ sha256 = "0k2plyvd6842yryzrfadbf4h7a9hrjvkcvixclbca2bkvfik3864"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/purescript-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/purescript-mode"; sha256 = "00gz752mh7144nsaka5q3q4681jp845kc5vcy2nbfnqp9b24l55m"; name = "purescript-mode"; }; @@ -47829,7 +48295,7 @@ purple-haze-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "purple-haze-theme"; - version = "20141014.2129"; + version = "20141014.2229"; src = fetchFromGitHub { owner = "jasonm23"; repo = "emacs-purple-haze-theme"; @@ -47837,7 +48303,7 @@ sha256 = "15myw5rkbnnpgzpiipm5xl4cyzymv8hh66x9al4aalb5nf52dckc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/purple-haze-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/purple-haze-theme"; sha256 = "0ld8k53823786y6f0dqcp0hlqlnmy323vdkanjfs5wg5ib60az1m"; name = "purple-haze-theme"; }; @@ -47850,7 +48316,7 @@ purty-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "purty-mode"; - version = "20131004.1759"; + version = "20131004.1859"; src = fetchFromGitHub { owner = "jcatw"; repo = "purty-mode"; @@ -47858,7 +48324,7 @@ sha256 = "0qm2xv762cz196aqs445crqrmsks8hpwzpaykzn0chlvdk0m5cv1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/purty-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/purty-mode"; sha256 = "0gbbwl5kg74jf1i1zsr40zg3gw43qmz1l87k0r578v1xvyqmhm1i"; name = "purty-mode"; }; @@ -47871,7 +48337,7 @@ pushbullet = callPackage ({ fetchFromGitHub, fetchurl, grapnel, json ? null, lib, melpaBuild }: melpaBuild { pname = "pushbullet"; - version = "20140809.732"; + version = "20140809.832"; src = fetchFromGitHub { owner = "theanalyst"; repo = "revolver"; @@ -47879,7 +48345,7 @@ sha256 = "03ivg3ddhy5zh410wgwxa17m98wywqhk62jgijhjd00b6l8i4aym"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pushbullet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pushbullet"; sha256 = "1swzl25rcw7anl7q099qh14yhnwlbn3m20ib9kis0l1rv59kkarl"; name = "pushbullet"; }; @@ -47892,7 +48358,7 @@ px = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "px"; - version = "20141006.748"; + version = "20141006.848"; src = fetchFromGitHub { owner = "aaptel"; repo = "preview-latex"; @@ -47900,7 +48366,7 @@ sha256 = "10g4imxgpv7a0j40qkx7xf2qnyz80ypd0mv0lf47n9dwln5byln3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/px"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/px"; sha256 = "0xjmz18m2dslh6yq5z32r43zq3svfxn8mhrfbmihglyv2mkwxw44"; name = "px"; }; @@ -47913,7 +48379,7 @@ py-autopep8 = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "py-autopep8"; - version = "20151231.814"; + version = "20151231.914"; src = fetchFromGitHub { owner = "paetzke"; repo = "py-autopep8.el"; @@ -47921,7 +48387,7 @@ sha256 = "1iw94m1bvsmadlj16f8ymwx0q6f9lqysy7by76hkpiwqqhd2i8rv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/py-autopep8"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/py-autopep8"; sha256 = "1argjdmh0x9c90zkb6cr4z3zkpgjp2mkpsw0dr4v6gg83jcggfpp"; name = "py-autopep8"; }; @@ -47934,7 +48400,7 @@ py-gnitset = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "py-gnitset"; - version = "20140224.2210"; + version = "20140224.2310"; src = fetchFromGitHub { owner = "quodlibetor"; repo = "py-gnitset"; @@ -47942,7 +48408,7 @@ sha256 = "05803wi7rj73sy9ihkilr6pcn72szfsvgf2dgbdpnqra508rxyb6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/py-gnitset"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/py-gnitset"; sha256 = "0f6ivq4ignb4gfxw2q8qvigvv3fbvvyr87x25wcaz6yipg1lr18r"; name = "py-gnitset"; }; @@ -47955,7 +48421,7 @@ py-import-check = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "py-import-check"; - version = "20130802.611"; + version = "20130802.711"; src = fetchFromGitHub { owner = "psibi"; repo = "emacs-py-import-check"; @@ -47963,7 +48429,7 @@ sha256 = "1416hbc64gwn9c8g9lxfx58w60ysi0x8rbps6mfxalavdhbs20sv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/py-import-check"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/py-import-check"; sha256 = "1261dki0q44sw9h0g1305i2fj1dg9xgwzry50jbn2idcrqg4xf7k"; name = "py-import-check"; }; @@ -47976,7 +48442,7 @@ py-isort = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "py-isort"; - version = "20150422.1039"; + version = "20150422.1139"; src = fetchFromGitHub { owner = "paetzke"; repo = "py-isort.el"; @@ -47984,7 +48450,7 @@ sha256 = "0150q6xcnzzrkn9fa9njm973l1d49c48ad8qia71k4jwrxjjj6zr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/py-isort"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/py-isort"; sha256 = "0k5gn3bjn5pv6dn6p0m9xghn0sx3m29bj3pfrmyh6gd5ic0l00yb"; name = "py-isort"; }; @@ -47997,7 +48463,7 @@ py-smart-operator = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "py-smart-operator"; - version = "20150824.2110"; + version = "20150824.2210"; src = fetchFromGitHub { owner = "rmuslimov"; repo = "py-smart-operator"; @@ -48005,7 +48471,7 @@ sha256 = "05gi17n488r2n6x33nj4a23ci89c9smsbanmap4i302dy0mnmwgd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/py-smart-operator"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/py-smart-operator"; sha256 = "1n0bdr9z2s1ikhmfz642k94gjzb88anwlb61mh27ay8wqdgm74c4"; name = "py-smart-operator"; }; @@ -48018,7 +48484,7 @@ py-test = callPackage ({ dash, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "py-test"; - version = "20151117.22"; + version = "20151117.122"; src = fetchFromGitHub { owner = "Bogdanp"; repo = "py-test.el"; @@ -48026,7 +48492,7 @@ sha256 = "1s39407z3rxz10r5sshv2vj7s23ylkhg59ixasgnpjk82gl4igpf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/py-test"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/py-test"; sha256 = "1mbwbzg606winf5af7qkg6a1hg79lc7k2miq4d3mwih496l5sinb"; name = "py-test"; }; @@ -48039,7 +48505,7 @@ py-yapf = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "py-yapf"; - version = "20160101.612"; + version = "20160101.712"; src = fetchFromGitHub { owner = "paetzke"; repo = "py-yapf.el"; @@ -48047,7 +48513,7 @@ sha256 = "09z739w4fjg9xnv3mbh7v8j59mnbsfq4ygq616pj4xcw3nsh0rbg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/py-yapf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/py-yapf"; sha256 = "1381x0ffpllxwgkr2d8xxbv1nd4k475m1aff8l5qijw7d1fqga2f"; name = "py-yapf"; }; @@ -48060,7 +48526,7 @@ pycarddavel = callPackage ({ emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "pycarddavel"; - version = "20150831.716"; + version = "20150831.816"; src = fetchFromGitHub { owner = "DamienCassou"; repo = "pycarddavel"; @@ -48068,7 +48534,7 @@ sha256 = "09glwrb9q65qdm4yd0mbi5hwdy2434zm8699ywhs6hqpjacadlmi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pycarddavel"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pycarddavel"; sha256 = "12k2mnzkd8yv17csfhclsnd479vcabawmac23yw6dsw7ic53jf1a"; name = "pycarddavel"; }; @@ -48081,7 +48547,7 @@ pycoverage = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pycoverage"; - version = "20160324.2012"; + version = "20160324.2112"; src = fetchFromGitHub { owner = "mattharrison"; repo = "pycoverage.el"; @@ -48089,7 +48555,7 @@ sha256 = "0qap6iz865l43mixga7541c2z9kdx8zkkdcgdlgn6n8pyv8iz7qs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pycoverage"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pycoverage"; sha256 = "1jaanmpnawk0r6zfzx18crqml7lv412l2l0iabp345xvfvsh8h1m"; name = "pycoverage"; }; @@ -48102,7 +48568,7 @@ pydoc = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pydoc"; - version = "20160403.1933"; + version = "20160403.2033"; src = fetchFromGitHub { owner = "statmobile"; repo = "pydoc"; @@ -48110,7 +48576,7 @@ sha256 = "0vg06snvy3rq5jgnb2xj3sp71mjmpsp1d9cn2vqvahpgpa05c968"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pydoc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pydoc"; sha256 = "0sf52cb80yiridsl1pffdr3wpbgxrn2l8vnq03l70djckild477n"; name = "pydoc"; }; @@ -48123,14 +48589,14 @@ pydoc-info = callPackage ({ fetchhg, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pydoc-info"; - version = "20110301.234"; + version = "20110301.334"; src = fetchhg { url = "https://bitbucket.com/jonwaltman/pydoc-info"; rev = "151d877c8fb8"; sha256 = "1mzyr6yznkyv99x9q8zx2f270ngjh8s94zvnhcbhidi57inpd1nh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pydoc-info"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pydoc-info"; sha256 = "0l80g0rzkk3a1wrw2riiywz9wdyxwr5i64jb2h5r8alp9qq1k7mf"; name = "pydoc-info"; }; @@ -48143,7 +48609,7 @@ pyenv-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, pythonic }: melpaBuild { pname = "pyenv-mode"; - version = "20160221.1323"; + version = "20160221.1423"; src = fetchFromGitHub { owner = "proofit404"; repo = "pyenv-mode"; @@ -48151,7 +48617,7 @@ sha256 = "049wgwygdaa0p8p4pl37wkc06nam9ph17i9gzcg7w0hfwghjrc5j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pyenv-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pyenv-mode"; sha256 = "00yqrk92knv9gq1m9xcg78gavv70jsjlwzkllzxl63iva9qrch59"; name = "pyenv-mode"; }; @@ -48164,7 +48630,7 @@ pyenv-mode-auto = callPackage ({ f, fetchFromGitHub, fetchurl, lib, melpaBuild, pyenv-mode, s }: melpaBuild { pname = "pyenv-mode-auto"; - version = "20160123.141"; + version = "20160123.241"; src = fetchFromGitHub { owner = "ssbb"; repo = "pyenv-mode-auto"; @@ -48172,7 +48638,7 @@ sha256 = "1sclhzv3w9fg54dg4qhlfbc0p1z5clyr8phrckhypvlwfgbar4b4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pyenv-mode-auto"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pyenv-mode-auto"; sha256 = "1l7h4fas1vshkh4skxzpw7v2a11s1hwnb20n6a81yh701pbikqnd"; name = "pyenv-mode-auto"; }; @@ -48185,7 +48651,7 @@ pyfmt = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pyfmt"; - version = "20150521.1556"; + version = "20150521.1656"; src = fetchFromGitHub { owner = "aheaume"; repo = "pyfmt.el"; @@ -48193,7 +48659,7 @@ sha256 = "1rp8zchvclh29rl9a1i82pcqghnhpaqnppaydxc2qx23y9pdgz9i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pyfmt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pyfmt"; sha256 = "112kjsp763c2plhqlhydpngrabhc58ya7cszvi4119xqw2s699g6"; name = "pyfmt"; }; @@ -48206,7 +48672,7 @@ pyimpsort = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pyimpsort"; - version = "20160129.2253"; + version = "20160129.2353"; src = fetchFromGitHub { owner = "emacs-pe"; repo = "pyimpsort.el"; @@ -48214,7 +48680,7 @@ sha256 = "05qx1p19dw3nr264shihfn33k579hd0wf4cxki5cqrxi7xzpjgrc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pyimpsort"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pyimpsort"; sha256 = "0kdk3bmryfzvwf8vshfszbih8mwncf4xlb0n0n0yjn0p1n98q99k"; name = "pyimpsort"; }; @@ -48227,15 +48693,15 @@ pylint = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pylint"; - version = "20160114.341"; + version = "20160505.544"; src = fetchFromGitHub { owner = "PyCQA"; repo = "pylint"; - rev = "2b9afbb95722ef3b76c0649c01a2d8066f812327"; - sha256 = "1b7rqhjw3xkmpb5zwhf9l5gflwn4qc1mpdn3qmfhmqw7yx2z4dwd"; + rev = "5d71b2d487402ed8ed67ca6e5df1af5a640a706b"; + sha256 = "09bpj1ap1sskb4cylap233x2ymj2bdp94wh1afdn22bibj9ixwwi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pylint"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pylint"; sha256 = "1138a8dn9y4ypbphs1zfvr8gr4vdjcy0adsl4xfbgsls4kcdwpxx"; name = "pylint"; }; @@ -48248,7 +48714,7 @@ pytest = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "pytest"; - version = "20160330.847"; + version = "20160330.947"; src = fetchFromGitHub { owner = "ionrock"; repo = "pytest-el"; @@ -48256,7 +48722,7 @@ sha256 = "0bg8pqqia9l39ac3s9xrnlyrg1pj2w00vc742qpjdk5349lazdl6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pytest"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pytest"; sha256 = "0ssib65wa20h8r6156f392l481vns5fcax6w70hcawmn84nficdh"; name = "pytest"; }; @@ -48269,7 +48735,7 @@ python-cell = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "python-cell"; - version = "20131029.1816"; + version = "20131029.1916"; src = fetchFromGitHub { owner = "thisch"; repo = "python-cell.el"; @@ -48277,7 +48743,7 @@ sha256 = "1cnjdgw3x6yb5k06z57xifywlg0kdx9ai4f1ajc0wx9aax8r5gav"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/python-cell"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/python-cell"; sha256 = "07i3vyci52jvslq28djwkgx1r157wvxd99rvqlxnmmsl5yj4k1jf"; name = "python-cell"; }; @@ -48290,7 +48756,7 @@ python-django = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "python-django"; - version = "20150821.2304"; + version = "20150822.4"; src = fetchFromGitHub { owner = "fgallina"; repo = "python-django.el"; @@ -48298,7 +48764,7 @@ sha256 = "1qckn5bi1ib54hgqbym5qqwzvbv70ria1w3c2x543xlr0l7zga6h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/python-django"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/python-django"; sha256 = "02whx8g8r02mzng7d7bnbkz5n7gyzp5hcnmvd6a3lq106c0h7w9k"; name = "python-django"; }; @@ -48311,15 +48777,15 @@ python-docstring = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "python-docstring"; - version = "20160210.1759"; + version = "20160505.2324"; src = fetchFromGitHub { owner = "glyph"; repo = "python-docstring-mode"; - rev = "711d07aef05218495625b696c2a281beac48537c"; - sha256 = "07nnj2rkpcfad8m9pynai1a3w5k9zazl1xpgm2mldy162snrwpql"; + rev = "bfd5961e2ac1bba11f50325288e4fdbc429a6999"; + sha256 = "0l20dmsxqlkvf1j92pvlg74p1j3c1kgg4idsxhvw1fs013cs61gg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/python-docstring"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/python-docstring"; sha256 = "1vi30y71vflsbprp5j4phbp7x1j24vxn9d6sifaddari0g0zxpfw"; name = "python-docstring"; }; @@ -48332,7 +48798,7 @@ python-environment = callPackage ({ deferred, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "python-environment"; - version = "20150310.353"; + version = "20150310.453"; src = fetchFromGitHub { owner = "tkf"; repo = "emacs-python-environment"; @@ -48340,7 +48806,7 @@ sha256 = "0q6bib9nr6xiq6npzbngyfcjk87yyvwzq1zirr3z1h5wadm34lsk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/python-environment"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/python-environment"; sha256 = "1pq16rddw76ic5d02j5bswl9qcydi47hqmhs7r06jk46vsfzxpl7"; name = "python-environment"; }; @@ -48353,7 +48819,7 @@ python-info = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "python-info"; - version = "20151228.1252"; + version = "20151228.1352"; src = fetchFromGitHub { owner = "Wilfred"; repo = "python-info"; @@ -48361,7 +48827,7 @@ sha256 = "0zk6014dzfrb3y3nhs890x082xf044w0a8nmy6rlrj375lvhfn99"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/python-info"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/python-info"; sha256 = "0kvpz1r2si94rs1iajn1ffmx7a5bgyjnzri36ajdgd5gcgh41dhy"; name = "python-info"; }; @@ -48374,7 +48840,7 @@ python-mode = callPackage ({ fetchFromGitLab, fetchurl, lib, melpaBuild }: melpaBuild { pname = "python-mode"; - version = "20160425.1227"; + version = "20160425.1327"; src = fetchFromGitLab { owner = "python-mode-devs"; repo = "python-mode"; @@ -48382,7 +48848,7 @@ sha256 = "0lml6lmnc40qcc1yd41asqwd85a5h3das4s9777qaywclg4wjms5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/python-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/python-mode"; sha256 = "1m7c6c97xpr5mrbyzhcl2cy7ykdz5yjj90mrakd4lknnsbcq205k"; name = "python-mode"; }; @@ -48395,7 +48861,7 @@ python-x = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, folding, lib, melpaBuild, python ? null }: melpaBuild { pname = "python-x"; - version = "20160313.836"; + version = "20160313.936"; src = fetchFromGitHub { owner = "wavexx"; repo = "python-x.el"; @@ -48403,7 +48869,7 @@ sha256 = "1shz8qha2cqv89hz27aazwd6qbf4qnz17h6hh8in5qxgfsndi7pp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/python-x"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/python-x"; sha256 = "115mvhqfa0fa8kdk64biba7ri4xjk74qqi6vm1a5z3psam9mjcmn"; name = "python-x"; }; @@ -48416,7 +48882,7 @@ python3-info = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "python3-info"; - version = "20151117.31"; + version = "20151117.131"; src = fetchFromGitHub { owner = "dvhansen"; repo = "python3-info"; @@ -48424,7 +48890,7 @@ sha256 = "1w29l4zyvcchjdywz2py95qq7bszhldpga2ng75g7p07pq7f2w1p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/python3-info"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/python3-info"; sha256 = "1hma8sphxk95m25s56adgyk7d4blsc02gq5a7vw1pawwvxm2qlz3"; name = "python3-info"; }; @@ -48437,7 +48903,7 @@ pythonic = callPackage ({ cl-lib ? null, dash, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "pythonic"; - version = "20160221.1323"; + version = "20160221.1423"; src = fetchFromGitHub { owner = "proofit404"; repo = "pythonic"; @@ -48445,7 +48911,7 @@ sha256 = "16sp3mg5jzx89lgr3kr61fqw1p9gc5zxq2mi9rpgqi5hkkcpnpgj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pythonic"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pythonic"; sha256 = "1hq0r3vg8vmgw89wfjdqknwm76pimlk0dy56wmh9vffh06gqsb51"; name = "pythonic"; }; @@ -48458,7 +48924,7 @@ pyvenv = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pyvenv"; - version = "20160413.256"; + version = "20160413.356"; src = fetchFromGitHub { owner = "jorgenschaefer"; repo = "pyvenv"; @@ -48466,7 +48932,7 @@ sha256 = "19q0hlhnjz77akax01cwbib7b71f8magd3k0nqdlg2p3xm8g07l8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pyvenv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pyvenv"; sha256 = "0gai9idss1wvryxyqk3pv854mc2xg9hd0r55r2blql8n5rd2yv8v"; name = "pyvenv"; }; @@ -48479,7 +48945,7 @@ qiita = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, markdown-mode, melpaBuild }: melpaBuild { pname = "qiita"; - version = "20140118.244"; + version = "20140118.344"; src = fetchFromGitHub { owner = "gongo"; repo = "qiita-el"; @@ -48487,7 +48953,7 @@ sha256 = "0ggivlaj29rbbhkjpf3bf7vr96xjzffas0sf5m54qh6nyz6nnha5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/qiita"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/qiita"; sha256 = "1kzk7pc68ks9gxm2l2d28al23gxh56z0cmkl80qwg7sh4gsmhyxl"; name = "qiita"; }; @@ -48500,7 +48966,7 @@ qml-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "qml-mode"; - version = "20160108.904"; + version = "20160108.1004"; src = fetchFromGitHub { owner = "coldnew"; repo = "qml-mode"; @@ -48508,7 +48974,7 @@ sha256 = "1mlka59gyylj4cabi1b552h11qx54kjqwx3bkmsdngjrd4da222a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/qml-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/qml-mode"; sha256 = "123mlibviplzra558x87da4zx0kpbhsgfigjjgjgp3mdg897084n"; name = "qml-mode"; }; @@ -48521,7 +48987,7 @@ quack = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "quack"; - version = "20160410.407"; + version = "20160410.507"; src = fetchFromGitHub { owner = "emacsmirror"; repo = "quack"; @@ -48529,7 +48995,7 @@ sha256 = "0vhzwr2adkprjibi3x4lnsvjxishysma7fhpwzgg28l21qjqc0nm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/quack"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/quack"; sha256 = "1l7jw8sx2llbzp3sg5755qdhhyq8jdaggxzzn7icjxxrmj1ji6ii"; name = "quack"; }; @@ -48542,7 +49008,7 @@ quasi-monochrome-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "quasi-monochrome-theme"; - version = "20150801.1525"; + version = "20150801.1625"; src = fetchFromGitHub { owner = "lbolla"; repo = "emacs-quasi-monochrome"; @@ -48550,7 +49016,7 @@ sha256 = "0y7mdizx6km3000cqjrirlgwzkq56asnzl8n1bl56pk5d9grfx9h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/quasi-monochrome-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/quasi-monochrome-theme"; sha256 = "0h5pqrklyga40jg8qc47lwmf8khn0vcs5jx2sdycl2ipy0ikmfs0"; name = "quasi-monochrome-theme"; }; @@ -48563,7 +49029,7 @@ quelpa = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, package-build }: melpaBuild { pname = "quelpa"; - version = "20160325.829"; + version = "20160325.929"; src = fetchFromGitHub { owner = "quelpa"; repo = "quelpa"; @@ -48571,7 +49037,7 @@ sha256 = "0l9wrx93pf6638fny1qa6a25hs15dpb0mklxcaz2l9bd7r7sx8ri"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/quelpa"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/quelpa"; sha256 = "1g53fcy837hpyn9lnmmri0h4c5va61vszhblz4caadqq265hknvs"; name = "quelpa"; }; @@ -48584,7 +49050,7 @@ quelpa-use-package = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, quelpa, use-package }: melpaBuild { pname = "quelpa-use-package"; - version = "20150805.528"; + version = "20150805.628"; src = fetchFromGitHub { owner = "quelpa"; repo = "quelpa-use-package"; @@ -48592,7 +49058,7 @@ sha256 = "00wnvyw2daiwwd1jyq1ag5jsws8k8jxs3lsj73dagbvqnlywmkm6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/quelpa-use-package"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/quelpa-use-package"; sha256 = "0p09w419kldgl913hgqfzyv2pck27vqq2i1xsx7g29biwgnp9hl9"; name = "quelpa-use-package"; }; @@ -48605,7 +49071,7 @@ quick-buffer-switch = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "quick-buffer-switch"; - version = "20151007.1708"; + version = "20151007.1808"; src = fetchFromGitHub { owner = "renard"; repo = "quick-buffer-switch"; @@ -48613,7 +49079,7 @@ sha256 = "0kh63nzdzwxksn2ar2i1ds7n96jga2dhhc9gg27p1g2ca66fs6h5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/quick-buffer-switch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/quick-buffer-switch"; sha256 = "1fsnha3x3pgq582libb3dmxb93aagv1avnc0rigpfd7hv6bagj40"; name = "quick-buffer-switch"; }; @@ -48626,7 +49092,7 @@ quick-preview = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "quick-preview"; - version = "20150828.2339"; + version = "20150829.39"; src = fetchFromGitHub { owner = "myuhe"; repo = "quick-preview.el"; @@ -48634,7 +49100,7 @@ sha256 = "1cp3z05qjy7qvjjv105ws1j9qykx8sl4s13xff0ijwvjza6ga44c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/quick-preview"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/quick-preview"; sha256 = "18janbmhbwb6a46fgc1sxl9ww591v60y3wgh2wqh62vdy4ix3bd9"; name = "quick-preview"; }; @@ -48647,7 +49113,7 @@ quickref = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "quickref"; - version = "20160326.1136"; + version = "20160326.1236"; src = fetchFromGitHub { owner = "pd"; repo = "quickref.el"; @@ -48655,7 +49121,7 @@ sha256 = "13svdvww8dbv75lg66xhca6xi08k7k44rsx2ckdf82j9i52y5lw6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/quickref"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/quickref"; sha256 = "0jahi84ra9g7h0cvz3c02zkbkknrzgv48zq32n72lkxl958swqn1"; name = "quickref"; }; @@ -48668,7 +49134,7 @@ quickrun = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "quickrun"; - version = "20160307.518"; + version = "20160307.618"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-quickrun"; @@ -48676,7 +49142,7 @@ sha256 = "0czmv7bdsayckg854jfpmaqs4qj9pdhhn0gsqkfa510d7qz032bj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/quickrun"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/quickrun"; sha256 = "0f989d6niw6ghf9mq454kqyp0gy7gj34vx5l6krwc52agckyfacy"; name = "quickrun"; }; @@ -48689,7 +49155,7 @@ r-autoyas = callPackage ({ ess, fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }: melpaBuild { pname = "r-autoyas"; - version = "20140101.910"; + version = "20140101.1010"; src = fetchFromGitHub { owner = "mattfidler"; repo = "r-autoyas.el"; @@ -48697,7 +49163,7 @@ sha256 = "0dhljmdlg4p832w9s7rp8vznkpjkwpg8k9hj95cn2h76c0afwz3j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/r-autoyas"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/r-autoyas"; sha256 = "18zifadsgbwnga205jvpx61wa2dvjxmxs5v7cjqhny45a524nbv4"; name = "r-autoyas"; }; @@ -48710,7 +49176,7 @@ racer = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, rust-mode, s }: melpaBuild { pname = "racer"; - version = "20160419.1625"; + version = "20160419.1725"; src = fetchFromGitHub { owner = "racer-rust"; repo = "emacs-racer"; @@ -48718,7 +49184,7 @@ sha256 = "1d128mamvwpjnk2dazhcxvfjw3lf0ix56l85gwsb377v05pn3wzf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/racer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/racer"; sha256 = "1091y5pisbf73i6zg5d7yny2d5yckkjg0z6fpjpmz5qjs3xcm9wi"; name = "racer"; }; @@ -48731,7 +49197,7 @@ racket-mode = callPackage ({ emacs, faceup, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "racket-mode"; - version = "20160213.1104"; + version = "20160213.1204"; src = fetchFromGitHub { owner = "greghendershott"; repo = "racket-mode"; @@ -48739,7 +49205,7 @@ sha256 = "1clpwjnph2ygmkn4r98wv3nxkvw4hg6nc01xph517lc7n15a3vri"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/racket-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/racket-mode"; sha256 = "04sr55zrgwyi48sj4ssm4rmm327yxs7hvjhxclnkhaaigrmrv7jb"; name = "racket-mode"; }; @@ -48752,7 +49218,7 @@ railgun = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "railgun"; - version = "20121017.57"; + version = "20121017.157"; src = fetchFromGitHub { owner = "mbriggs"; repo = "railgun.el"; @@ -48760,7 +49226,7 @@ sha256 = "00x09vjd3jz5f73qkf5v1y402zn8vl8dsyfwlq9z646p18ba7gyh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/railgun"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/railgun"; sha256 = "1a3fplfipk1nv3py1sy0p2adf3w1h4api01h2j5rjlq2jw06kyr0"; name = "railgun"; }; @@ -48773,7 +49239,7 @@ rails-log-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "rails-log-mode"; - version = "20140407.2325"; + version = "20140408.25"; src = fetchFromGitHub { owner = "ananthakumaran"; repo = "rails-log-mode"; @@ -48781,7 +49247,7 @@ sha256 = "1fh8wsb0pa2isr1kgh3v9zmmxq1nlmqwqk4z34dw5wpaiyihmk84"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rails-log-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/rails-log-mode"; sha256 = "0h7gfg0c5pwfh18qzg1mx7an9p958ygdfqb54s85mbkv8x3rh1a0"; name = "rails-log-mode"; }; @@ -48794,7 +49260,7 @@ rails-new = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "rails-new"; - version = "20141221.249"; + version = "20141221.349"; src = fetchFromGitHub { owner = "cheunghy"; repo = "rails-new"; @@ -48802,7 +49268,7 @@ sha256 = "0cqp2vns7gq377bm6q9n5q0ra1d5yy2x2aiw9q1hswk82xpibj9l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rails-new"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/rails-new"; sha256 = "0wgbm6qxqkpsbzj9wccicsphajaii07dl27b8x2vidsyw6ambj5h"; name = "rails-new"; }; @@ -48815,7 +49281,7 @@ railscasts-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "railscasts-theme"; - version = "20150219.925"; + version = "20150219.1025"; src = fetchFromGitHub { owner = "mikenichols"; repo = "railscasts-theme"; @@ -48823,7 +49289,7 @@ sha256 = "021x1l5kzsbm0qj5a3bngxa7ickm4lbwsdz81a2ks9pi1ivmw205"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/railscasts-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/railscasts-theme"; sha256 = "1z5m8ccx2k18gbzqvg0051mp2myy2qncf4xvv47k80f83pk2hw6r"; name = "railscasts-theme"; }; @@ -48836,7 +49302,7 @@ rainbow-blocks = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "rainbow-blocks"; - version = "20140306.1233"; + version = "20140306.1333"; src = fetchFromGitHub { owner = "istib"; repo = "rainbow-blocks"; @@ -48844,7 +49310,7 @@ sha256 = "02x5ciyafqwak06yk813kl8p92hq03wjsk1882q8axr9q231100c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rainbow-blocks"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/rainbow-blocks"; sha256 = "08p41wvrw1j3h7j7lyl8nxk1gcc2id9ikljmiklg0kc6s8ijhng8"; name = "rainbow-blocks"; }; @@ -48857,15 +49323,15 @@ rainbow-delimiters = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "rainbow-delimiters"; - version = "20150320.217"; + version = "20160501.258"; src = fetchFromGitHub { owner = "Fanael"; repo = "rainbow-delimiters"; - rev = "0823d0c67f935a4c36a1c945e93051102963c7fb"; - sha256 = "0gxc8j5a14bc9mp43cbcz41ipc0z1yvmypg52dnl8hadirry20gd"; + rev = "93cd2dc873e7fedca7abc599cd97d46db4376ac7"; + sha256 = "0vs9pf8lqq5p5qz1770pxgw47ym4xj8axxmwamn66br59mykdhv0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rainbow-delimiters"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/rainbow-delimiters"; sha256 = "132nslbnszvbgkl0819z811yar3lms1hp5na4ybi9gkmnb7bg4rg"; name = "rainbow-delimiters"; }; @@ -48878,7 +49344,7 @@ rainbow-identifiers = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "rainbow-identifiers"; - version = "20141102.926"; + version = "20141102.1026"; src = fetchFromGitHub { owner = "Fanael"; repo = "rainbow-identifiers"; @@ -48886,7 +49352,7 @@ sha256 = "05i0jpmxzsj2lsj48cafn3v93z37l7k5kaza2ik3yirdpjdibyrh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rainbow-identifiers"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/rainbow-identifiers"; sha256 = "0lw790ymrgpyh0sxwmzinl2ik5vl5vggbg14cd0cx5yagkw5y3mp"; name = "rainbow-identifiers"; }; @@ -48899,7 +49365,7 @@ rake = callPackage ({ cl-lib ? null, dash, f, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "rake"; - version = "20150831.358"; + version = "20150831.458"; src = fetchFromGitHub { owner = "asok"; repo = "rake"; @@ -48907,7 +49373,7 @@ sha256 = "1wcs8j8rdls0n3v8zdpk2n5riwzz2yvjf6b70a5bj7p20gyafhj2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rake"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/rake"; sha256 = "0cw47g6cjnkh3z4hbwwq1f8f5vrvs84spn06k53bx898brqdh8ns"; name = "rake"; }; @@ -48920,7 +49386,7 @@ rally-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, popwin }: melpaBuild { pname = "rally-mode"; - version = "20160326.1102"; + version = "20160326.1202"; src = fetchFromGitHub { owner = "seanleblanc"; repo = "rally-mode"; @@ -48928,7 +49394,7 @@ sha256 = "13pkp80cv1v3pjff1588cgyx18a31i668lwywll5dk4fxl4zdjvb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rally-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/rally-mode"; sha256 = "1vzsh5855bzln3p3235yccl2azpndpc4rh95zrx6p1k62h2kv0y1"; name = "rally-mode"; }; @@ -48941,7 +49407,7 @@ rand-theme = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "rand-theme"; - version = "20151219.1735"; + version = "20151219.1835"; src = fetchFromGitHub { owner = "gopar"; repo = "rand-theme"; @@ -48949,7 +49415,7 @@ sha256 = "0fmajgqf9j21qn7h35sky5di8cnma432g0ki9d5m41byxp9y1bdl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rand-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/rand-theme"; sha256 = "0h0n1lsxnl12mjrjpra62vblrg8kbp1hk7w1v6makj074d037j2h"; name = "rand-theme"; }; @@ -48962,7 +49428,7 @@ random-splash-image = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "random-splash-image"; - version = "20151002.2030"; + version = "20151002.2130"; src = fetchFromGitHub { owner = "kakakaya"; repo = "random-splash-image"; @@ -48970,7 +49436,7 @@ sha256 = "1z25xmz8pl3rsfahw6ay8wx5wbnlxabnzr2dq20m0i5jyci8lqll"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/random-splash-image"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/random-splash-image"; sha256 = "1j454jy4ia2wrgi3fxzjfdqi3z8x13hq8kh62lnb84whs7a1nhik"; name = "random-splash-image"; }; @@ -48983,15 +49449,15 @@ ranger = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ranger"; - version = "20160413.934"; + version = "20160505.401"; src = fetchFromGitHub { owner = "ralesi"; repo = "ranger.el"; - rev = "942f3bccf7cf081010708e2dddc30d92d01fdda9"; - sha256 = "1wgjjrr0m9x93q9q1lg52rl2i3k74csdbvlr1q8hdi9dnsrdm55x"; + rev = "9db73d61de2e4b9caeca50f220c1f4a8a1e7cfb6"; + sha256 = "1d64dddvrwf7rqfc50rn28l57mfm106cqqf4xf7w5d2cks6ysw4g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ranger"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ranger"; sha256 = "14g4r4iaz0nzfsklslrswsik670pvfd0605xfjghvpngn2a8ych4"; name = "ranger"; }; @@ -49004,7 +49470,7 @@ rase = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "rase"; - version = "20120928.1545"; + version = "20120928.1645"; src = fetchFromGitHub { owner = "m00natic"; repo = "rase"; @@ -49012,7 +49478,7 @@ sha256 = "1i16361klpdsxphcjdpxqswab3ing69j1wb9nygws7ghil85h0bx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rase"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/rase"; sha256 = "1g7v2z7l4csl5by64hc3zg4kgrkvv81iq30mfqq4nvy1jc0xa6j0"; name = "rase"; }; @@ -49025,7 +49491,7 @@ rats = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, go-mode, lib, melpaBuild, s }: melpaBuild { pname = "rats"; - version = "20160315.1345"; + version = "20160315.1445"; src = fetchFromGitHub { owner = "ane"; repo = "rats.el"; @@ -49033,7 +49499,7 @@ sha256 = "0dd9yhxwwk16xkwld9c3hpf9bw8zzc1lyvisp0vn6vcd240j02w0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rats"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/rats"; sha256 = "0jhwiq9yzwpyqhk3c32vqx8nryingzh58psxbzjl3812b7xdqphr"; name = "rats"; }; @@ -49046,7 +49512,7 @@ rbenv = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "rbenv"; - version = "20141120.149"; + version = "20141120.249"; src = fetchFromGitHub { owner = "senny"; repo = "rbenv.el"; @@ -49054,7 +49520,7 @@ sha256 = "0yd0rs6fnc6lsfi7pivw5sivh698055r8ifj9vrxb82dcx2y6v2h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rbenv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/rbenv"; sha256 = "09nw7sz6rdgs7hdw517qwgzgyrdmxb16sgldfkifk41rhiyqhr65"; name = "rbenv"; }; @@ -49067,7 +49533,7 @@ rbt = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "rbt"; - version = "20160129.1251"; + version = "20160129.1351"; src = fetchFromGitHub { owner = "joeheyming"; repo = "rbt.el"; @@ -49075,7 +49541,7 @@ sha256 = "0q5giixk6pv82cf34a0mxmnzh2gdiyq6dzv4ypkkdpz6wsm2ffhx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rbt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/rbt"; sha256 = "1mrb6v8zybvhh242vvq0kdvg6cvws7gabfhcydrw5g2njhyqkygm"; name = "rbt"; }; @@ -49088,7 +49554,7 @@ rcirc-alert = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "rcirc-alert"; - version = "20141127.447"; + version = "20141127.547"; src = fetchFromGitHub { owner = "csantosb"; repo = "rcirc-alert"; @@ -49096,7 +49562,7 @@ sha256 = "0xdyrp0zs2v2glpfwlajmj97wygwi0y492zbp6rp3caa5bj3j4z2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rcirc-alert"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/rcirc-alert"; sha256 = "0lyd3gz1sflp93xb7xbvk1gh69w468ync1p144avyh2pybl40q4a"; name = "rcirc-alert"; }; @@ -49109,7 +49575,7 @@ rcirc-alertify = callPackage ({ alert, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "rcirc-alertify"; - version = "20140406.2019"; + version = "20140406.2119"; src = fetchFromGitHub { owner = "fgallina"; repo = "rcirc-alertify"; @@ -49117,7 +49583,7 @@ sha256 = "1mpk5rzsil298q3ppv5v9jrn274v71jffyz0jihrksh1wbjzwhlx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rcirc-alertify"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/rcirc-alertify"; sha256 = "13448bykmy0jqcajhn2gjiar3m8cingyr8394vxybp2m1zvv0pws"; name = "rcirc-alertify"; }; @@ -49130,7 +49596,7 @@ rcirc-color = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "rcirc-color"; - version = "20151130.958"; + version = "20151130.1058"; src = fetchFromGitHub { owner = "kensanata"; repo = "rcirc-color"; @@ -49138,7 +49604,7 @@ sha256 = "173lhi48dwfp9k7jmgivhcc9f38snz5xlciyjhrafpadq1pir497"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rcirc-color"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/rcirc-color"; sha256 = "1a8qqwdc0gw6m1xsnwrj3xldp05p7pabyj6l4bccpg3vf5wbgkn5"; name = "rcirc-color"; }; @@ -49151,7 +49617,7 @@ rcirc-groups = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "rcirc-groups"; - version = "20160115.631"; + version = "20160115.731"; src = fetchFromGitHub { owner = "dimitri"; repo = "rcirc-groups"; @@ -49159,7 +49625,7 @@ sha256 = "0d99x7dfw5xrn62knvs65lvn6xyy7399xwqyy47bs4n81v25aqbh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rcirc-groups"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/rcirc-groups"; sha256 = "1iws3f8vkwrflcj6ni8nmf1wcw1jrlnssm76kzzhag77ry3iswgx"; name = "rcirc-groups"; }; @@ -49172,7 +49638,7 @@ rcirc-notify = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "rcirc-notify"; - version = "20150219.1604"; + version = "20150219.1704"; src = fetchFromGitHub { owner = "nicferrier"; repo = "rcirc-notify"; @@ -49180,7 +49646,7 @@ sha256 = "1k4knsrca626pikgaalqbqwy7im4wz1vrmzzhdrdb4lhdz6sq3q3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rcirc-notify"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/rcirc-notify"; sha256 = "0mwhzkbzhpq4jws05p7qp0kbay8kcblb9xikznm0i8drpdyc617v"; name = "rcirc-notify"; }; @@ -49193,7 +49659,7 @@ rcirc-styles = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "rcirc-styles"; - version = "20160206.2050"; + version = "20160206.2150"; src = fetchFromGitHub { owner = "aaron-em"; repo = "rcirc-styles.el"; @@ -49201,7 +49667,7 @@ sha256 = "1kwn33rxaqik5jls66c2indvswhwmxdmd60n7a1h9siqm5qhy9d6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rcirc-styles"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/rcirc-styles"; sha256 = "01dxhnzsnljig769dk9axdi970b3lw2s6p1z3ljf29qlb5j4548r"; name = "rcirc-styles"; }; @@ -49214,7 +49680,7 @@ rdf-prefix = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "rdf-prefix"; - version = "20160326.1204"; + version = "20160326.1304"; src = fetchFromGitHub { owner = "simenheg"; repo = "rdf-prefix"; @@ -49222,7 +49688,7 @@ sha256 = "0h54mpi8jd21vjifc0yy0hvpygiam1rlmypijpi4kv42x5mxkn3a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rdf-prefix"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/rdf-prefix"; sha256 = "1vxgn5f2kws17ndfdv1vj5p9ks3rp6sikzpc258j07bhsfpjz5qm"; name = "rdf-prefix"; }; @@ -49235,7 +49701,7 @@ rdp = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "rdp"; - version = "20120928.2054"; + version = "20120928.2154"; src = fetchFromGitHub { owner = "skeeto"; repo = "rdp"; @@ -49243,7 +49709,7 @@ sha256 = "08l96bhghmnckar4i6afj9csqglasmpmby1r7j38ic9bp37z2yqd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rdp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/rdp"; sha256 = "0lj3idwv4fxz8pi8mnxkbhwhzaa1gs6ib4nzly3fc6yiix9ampkz"; name = "rdp"; }; @@ -49256,7 +49722,7 @@ react-snippets = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }: melpaBuild { pname = "react-snippets"; - version = "20151104.1740"; + version = "20151104.1840"; src = fetchFromGitHub { owner = "johnmastro"; repo = "react-snippets.el"; @@ -49264,7 +49730,7 @@ sha256 = "00j0iqa37yzd7xrgd8xcgpgmjcarhn0yx4zpbnr7z7kzmg24ywa7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/react-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/react-snippets"; sha256 = "0chs0h41nb2fdz02hdsaynz7ma8fg66a8m1q1np0464skrsdaj73"; name = "react-snippets"; }; @@ -49277,7 +49743,7 @@ readability = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, oauth, ov }: melpaBuild { pname = "readability"; - version = "20140715.1927"; + version = "20140715.2027"; src = fetchFromGitHub { owner = "ShingoFukuyama"; repo = "emacs-readability"; @@ -49285,7 +49751,7 @@ sha256 = "0kg18ybgwcxhv5fiya5d3wn5w9si4914q946gjannk67d6jcq08g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/readability"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/readability"; sha256 = "0kg91ma9k3p5ps467jjz2lw13rv1l8ivwc3zpg6c1rl474ds0qqv"; name = "readability"; }; @@ -49298,7 +49764,7 @@ readline-complete = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "readline-complete"; - version = "20150708.937"; + version = "20150708.1037"; src = fetchFromGitHub { owner = "monsanto"; repo = "readline-complete.el"; @@ -49306,7 +49772,7 @@ sha256 = "1j5b5xapflwzh8a297gva0l12ralwa9vl5z3bb75c9ksjkhi4nm6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/readline-complete"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/readline-complete"; sha256 = "1qymk5ypv6ljk8x49z4jcifz7c2dqcg5181f4hqh67g1byvj2277"; name = "readline-complete"; }; @@ -49319,7 +49785,7 @@ real-auto-save = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "real-auto-save"; - version = "20150701.1015"; + version = "20150701.1115"; src = fetchFromGitHub { owner = "chillaranand"; repo = "real-auto-save"; @@ -49327,7 +49793,7 @@ sha256 = "1kghhps8mqys5l59qwzv3fgy1fvb15cnyaxmk29v818a6khjc5l2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/real-auto-save"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/real-auto-save"; sha256 = "03dbbizpyg62v6zbq8hd16ikrifz8m2bdlbb3g67f2834xqmxha8"; name = "real-auto-save"; }; @@ -49340,7 +49806,7 @@ realgud = callPackage ({ fetchFromGitHub, fetchurl, lib, list-utils, load-relative, loc-changes, melpaBuild, test-simple }: melpaBuild { pname = "realgud"; - version = "20160305.357"; + version = "20160305.457"; src = fetchFromGitHub { owner = "rocky"; repo = "emacs-dbgr"; @@ -49348,7 +49814,7 @@ sha256 = "0qzwg3g8cqms1xx1yw8h7xck8ym8gb6avnnqx737r078yaa9l8hj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/realgud"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/realgud"; sha256 = "0qmvd35ng1aqclwj3pskn58c0fi98kvx9666wp3smgj3n88vgy15"; name = "realgud"; }; @@ -49361,7 +49827,7 @@ realgud-byebug = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, realgud }: melpaBuild { pname = "realgud-byebug"; - version = "20160303.640"; + version = "20160303.740"; src = fetchFromGitHub { owner = "rocky"; repo = "realgud-byebug"; @@ -49369,7 +49835,7 @@ sha256 = "01wa8jwwlx5qmn5w83r3ak74hjp89zyhsx13c4ijqfns7d92xjd0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/realgud-byebug"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/realgud-byebug"; sha256 = "1m4pqnvnnfzq7b9bv5fkz70pifklddwqrwbwnrfyiawx9vdgrpz9"; name = "realgud-byebug"; }; @@ -49382,7 +49848,7 @@ realgud-old-debuggers = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, realgud }: melpaBuild { pname = "realgud-old-debuggers"; - version = "20160303.254"; + version = "20160303.354"; src = fetchFromGitHub { owner = "rocky"; repo = "realgud-old-debuggers"; @@ -49390,7 +49856,7 @@ sha256 = "0jxi5a6mlgwjj14gfajs951180m8r8m4vqx09xz1yyc9qq8ywfk9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/realgud-old-debuggers"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/realgud-old-debuggers"; sha256 = "0iwi1byfwcpviaizdw9wzdcjlbk35ql4wfzj0ynh331g0hmibhs9"; name = "realgud-old-debuggers"; }; @@ -49403,7 +49869,7 @@ realgud-pry = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, realgud }: melpaBuild { pname = "realgud-pry"; - version = "20160303.254"; + version = "20160303.354"; src = fetchFromGitHub { owner = "rocky"; repo = "realgud-pry"; @@ -49411,7 +49877,7 @@ sha256 = "1dgxlmdzp1m6xr94nkvh6whvg23yq2d3v6k95vacx0khfbc16w17"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/realgud-pry"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/realgud-pry"; sha256 = "1p5ijig5rczndcykllq0vy6w4askwl0yd8b5fqg7yl5yx45r8xgs"; name = "realgud-pry"; }; @@ -49424,7 +49890,7 @@ realgud-rdb2 = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, realgud }: melpaBuild { pname = "realgud-rdb2"; - version = "20160303.243"; + version = "20160303.343"; src = fetchFromGitHub { owner = "rocky"; repo = "realgud-ruby-debugger2"; @@ -49432,7 +49898,7 @@ sha256 = "1ip22z48vj6a6xh54s26ss10pxhqrdm5k9h28i1vgv5x75kqgxii"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/realgud-rdb2"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/realgud-rdb2"; sha256 = "0wqvgb3h2b0ys76sq2z462cjv0fajqc41f7wqvf53wfcs2zw4l9y"; name = "realgud-rdb2"; }; @@ -49445,7 +49911,7 @@ rebox2 = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "rebox2"; - version = "20121113.700"; + version = "20121113.800"; src = fetchFromGitHub { owner = "lewang"; repo = "rebox2"; @@ -49453,7 +49919,7 @@ sha256 = "1xh9nxqfg9abcl41ni69rnwjfgyfr0pbl55dzyxsbh6sb36r3h8z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rebox2"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/rebox2"; sha256 = "06ra50afjqac9ck1s9gaxy0sqxcb612wzd28s4q4imicqpgfxzjw"; name = "rebox2"; }; @@ -49465,13 +49931,13 @@ }) {}; recentf-ext = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "recentf-ext"; - version = "20130130.1550"; + version = "20130130.1650"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/recentf-ext.el"; sha256 = "15kwkphrlxq6nbmqm95sxv4rykl1d35sjm59ncy07ncqm706h33l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/recentf-ext"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/recentf-ext"; sha256 = "1m54w1n3ci5j7i1jhw6cs7dgzmxrj1hsrrarqlrd1d4iqhixjzbq"; name = "recentf-ext"; }; @@ -49484,7 +49950,7 @@ recompile-on-save = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "recompile-on-save"; - version = "20151126.846"; + version = "20151126.946"; src = fetchFromGitHub { owner = "maio"; repo = "recompile-on-save.el"; @@ -49492,7 +49958,7 @@ sha256 = "0wk28blnfks987iby0p3qpd4nxnz6sqn4fx8g59gyddjhav51lri"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/recompile-on-save"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/recompile-on-save"; sha256 = "0bg2p7pk4jlpqc7lg48mxd6zkwnx15r0r7lmsxgx9dv1ilfwrmgn"; name = "recompile-on-save"; }; @@ -49505,7 +49971,7 @@ recover-buffers = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "recover-buffers"; - version = "20150812.205"; + version = "20150812.305"; src = fetchFromGitHub { owner = "tripleee"; repo = "recover-buffers"; @@ -49513,7 +49979,7 @@ sha256 = "114ssmby614xjs7mrpbbsdd4gj5ra6klfh8h6z8iij8xn3kii83q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/recover-buffers"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/recover-buffers"; sha256 = "0g40d7440hzlc9b45v63ng0anvmgip4dhbd9wcm2sn8qjfr4w11b"; name = "recover-buffers"; }; @@ -49526,7 +49992,7 @@ rect-plus = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "rect-plus"; - version = "20150620.1944"; + version = "20150620.2044"; src = fetchFromGitHub { owner = "mhayashi1120"; repo = "Emacs-rectplus"; @@ -49534,7 +50000,7 @@ sha256 = "1vpsihrl03hkd6n6b7mrjccm0a023qf3154a8rw4chihikxw27pj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rect+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/rect+"; sha256 = "0vk0jwpl6yp2md9nh0ghp2qn883a8lr3cq8c9mgq0g552dwdiv5m"; name = "rect-plus"; }; @@ -49547,15 +50013,15 @@ rectangle-utils = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "rectangle-utils"; - version = "20160426.545"; + version = "20160427.1324"; src = fetchFromGitHub { owner = "thierryvolpiatto"; repo = "rectangle-utils"; - rev = "602183e5e57725a41f9da10b23b070ad95089bf0"; - sha256 = "15kl72vias2b72bpji743aknml4kywqbb39kb8qm4bzbmc9ymfdx"; + rev = "5ee8a0955967181629393e1fd6589a6e2590a56e"; + sha256 = "0i336qakdkvxgyhjfq6b957xqlll156i1a8g1f5xap46v35d6gh3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rectangle-utils"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/rectangle-utils"; sha256 = "1w5z2gykydsfp30ahqjihpvq04c5v0cfslbrrg429hycys8apws7"; name = "rectangle-utils"; }; @@ -49568,7 +50034,7 @@ recursive-narrow = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "recursive-narrow"; - version = "20140902.1227"; + version = "20140902.1327"; src = fetchFromGitHub { owner = "nflath"; repo = "recursive-narrow"; @@ -49576,7 +50042,7 @@ sha256 = "1mj7lyadzn3bwig3f9zariq5z4fg6liqnjvfd34yx88xc52nwf33"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/recursive-narrow"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/recursive-narrow"; sha256 = "1bx8l8wjxrkv949c73dp93knbn1iwnblcm8iw822mq2mgbgwsa7f"; name = "recursive-narrow"; }; @@ -49589,7 +50055,7 @@ redis = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "redis"; - version = "20150531.1448"; + version = "20150531.1548"; src = fetchFromGitHub { owner = "emacs-pe"; repo = "redis.el"; @@ -49597,7 +50063,7 @@ sha256 = "1rjpf23a8rggjmmxvm1997d3xz03kz84xams486b9ky0n2v02d57"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/redis"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/redis"; sha256 = "1awnilb8bk0izp6yw0187ybh9slf1hc51014xvvmj90darxby79a"; name = "redis"; }; @@ -49609,13 +50075,13 @@ }) {}; redo-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "redo-plus"; - version = "20131117.551"; + version = "20131117.651"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/redo+.el"; sha256 = "1jc4n60spzssa57i3jwrqwy20f741hb271vmmx49riycx1ybx3d3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/redo+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/redo+"; sha256 = "1alfs7k5mydgvzsjmdifcizqgrqjrk2kbh3mabai7nlrwi47w9n2"; name = "redo-plus"; }; @@ -49628,7 +50094,7 @@ redpen-paragraph = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "redpen-paragraph"; - version = "20160321.519"; + version = "20160321.619"; src = fetchFromGitHub { owner = "karronoli"; repo = "redpen-paragraph.el"; @@ -49636,7 +50102,7 @@ sha256 = "1idm3mp016p5d6jyxl58rlhirbc5qmglmjpncj3s1qg3yarlxw2j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/redpen-paragraph"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/redpen-paragraph"; sha256 = "0jr707ik6fhznq0q421l986w85ah0n9b4is91zrgbk1v6miqrhca"; name = "redpen-paragraph"; }; @@ -49649,14 +50115,14 @@ redshank = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: melpaBuild { pname = "redshank"; - version = "20120510.1430"; + version = "20120510.1530"; src = fetchgit { url = "http://www.foldr.org/~michaelw/projects/redshank.git"; rev = "f98e68f532e622bcd464292ca4a9cf5fbea14ebb"; sha256 = "14p39gl4bvicqxf6rjzsyixv8ac6ib2vk680zbi7l55a1kdwaism"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/redshank"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/redshank"; sha256 = "07s4gja1w8piabkajbzrgq77mkdkxr0jy9bmy2qb9w2svfsyns9b"; name = "redshank"; }; @@ -49669,7 +50135,7 @@ redtick = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "redtick"; - version = "20160410.1734"; + version = "20160410.1834"; src = fetchFromGitHub { owner = "ferfebles"; repo = "redtick"; @@ -49677,7 +50143,7 @@ sha256 = "0ciw1qgbnlhr1ys4m9r6yi0zrmq99dja7vm959yb22zyggw5dqn4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/redtick"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/redtick"; sha256 = "0qnx9s2rch4xn98vbgiq8ll2hxrwi4fi4vg4bccyvwh21nj51iq0"; name = "redtick"; }; @@ -49690,7 +50156,7 @@ refheap = callPackage ({ fetchFromGitHub, fetchurl, json ? null, lib, melpaBuild }: melpaBuild { pname = "refheap"; - version = "20140902.1602"; + version = "20140902.1702"; src = fetchFromGitHub { owner = "Raynes"; repo = "refheap.el"; @@ -49698,7 +50164,7 @@ sha256 = "08kzi2jcfqnlanqzvbk5gq1if7k8qc9gmz5bmvd2mvmx6z436398"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/refheap"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/refheap"; sha256 = "0pzark1db9k2pavd5sn89a28gd9j5jlkx3wkhwfzln3y5c1wnvdk"; name = "refheap"; }; @@ -49711,7 +50177,7 @@ regex-dsl = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "regex-dsl"; - version = "20100124.428"; + version = "20100124.528"; src = fetchFromGitHub { owner = "alk"; repo = "elisp-regex-dsl"; @@ -49719,7 +50185,7 @@ sha256 = "1d34jd7is979vfgdy56zkd1m15ng3waiabfpak6dv6ak3cdh5fgx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/regex-dsl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/regex-dsl"; sha256 = "129sapsmvcqqqgcr9xlmxwszsxvsb4nj9g2fxsl4y6r383840jbr"; name = "regex-dsl"; }; @@ -49732,7 +50198,7 @@ regex-tool = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "regex-tool"; - version = "20131104.1634"; + version = "20131104.1734"; src = fetchFromGitHub { owner = "jwiegley"; repo = "regex-tool"; @@ -49740,7 +50206,7 @@ sha256 = "1wr12j16hckvc8bxxgxw280frl12h23cp44sxg28lczl16d9693l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/regex-tool"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/regex-tool"; sha256 = "1nd23vjij5h5gk5l7hbd5ks9ljisn054wp138jx2v6i51izxvh2v"; name = "regex-tool"; }; @@ -49753,7 +50219,7 @@ region-bindings-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "region-bindings-mode"; - version = "20140407.1714"; + version = "20140407.1814"; src = fetchFromGitHub { owner = "fgallina"; repo = "region-bindings-mode"; @@ -49761,7 +50227,7 @@ sha256 = "02kfi3c6ydnr7xw611ck66kfjyl5w86dr9vfjv3wjl6ad9jya4zy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/region-bindings-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/region-bindings-mode"; sha256 = "141q4x6rilidpnsm9s78qks9i1v6ng0ydhbzqi39xcaccfyyjb69"; name = "region-bindings-mode"; }; @@ -49774,7 +50240,7 @@ region-state = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "region-state"; - version = "20151128.438"; + version = "20151128.538"; src = fetchFromGitHub { owner = "xuchunyang"; repo = "region-state.el"; @@ -49782,7 +50248,7 @@ sha256 = "0gsh0x1rqxvzrszdyna9d8b8w22mqnd9yqcwzay2prc6rpl26g1f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/region-state"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/region-state"; sha256 = "1iq2x1w8lqjjiwjja7r3qki6drvydnk171k9fj9g6rk7wslknz8x"; name = "region-state"; }; @@ -49795,7 +50261,7 @@ register-channel = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "register-channel"; - version = "20150513.2259"; + version = "20150513.2359"; src = fetchFromGitHub { owner = "YangZhao11"; repo = "register-channel"; @@ -49803,7 +50269,7 @@ sha256 = "01k3v4yiilz1k6drv7b2x6zbjx6dlz7cch8rq63mwc7v8kvdnqmi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/register-channel"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/register-channel"; sha256 = "037i2fgxxsfb85vd6xk17wyh7ny6fqfixvb0a18lf8m1hib1gyhr"; name = "register-channel"; }; @@ -49816,7 +50282,7 @@ relative-buffers = callPackage ({ cl-lib ? null, dash, f, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "relative-buffers"; - version = "20160221.1323"; + version = "20160221.1423"; src = fetchFromGitHub { owner = "proofit404"; repo = "relative-buffers"; @@ -49824,7 +50290,7 @@ sha256 = "0100maanb1v0hl4pj8ykzlqpr3cvs6ldak5japndm5yngzp6m8ks"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/relative-buffers"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/relative-buffers"; sha256 = "131182yb0pr0d6jibqd8aag4w8hywdyi87ldp77b95gw4bqhr96i"; name = "relative-buffers"; }; @@ -49837,7 +50303,7 @@ relative-line-numbers = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "relative-line-numbers"; - version = "20151006.1646"; + version = "20151006.1746"; src = fetchFromGitHub { owner = "Fanael"; repo = "relative-line-numbers"; @@ -49845,7 +50311,7 @@ sha256 = "1r8fhs7d2vkrbv15ic2bm79i9a8swbc38vk566vnxkhl3rfd5a0a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/relative-line-numbers"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/relative-line-numbers"; sha256 = "0mj1w5a4ax8hwz41vn02bacxlnifd14hvf3p288ljvwchvlf0hn3"; name = "relative-line-numbers"; }; @@ -49858,7 +50324,7 @@ relax = callPackage ({ fetchFromGitHub, fetchurl, json ? null, lib, melpaBuild }: melpaBuild { pname = "relax"; - version = "20131029.1634"; + version = "20131029.1734"; src = fetchFromGitHub { owner = "technomancy"; repo = "relax.el"; @@ -49866,7 +50332,7 @@ sha256 = "0lqbhwi1f8b4sv9p1rf0gyjllk0l7g6v6mlws496079wxx1n5j66"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/relax"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/relax"; sha256 = "0gfr4ym6aakawhkfz40ar2n0rfz503hq428yj6rbf7jmq3ajaysk"; name = "relax"; }; @@ -49879,7 +50345,7 @@ remark-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, markdown-mode, melpaBuild }: melpaBuild { pname = "remark-mode"; - version = "20151004.1155"; + version = "20151004.1255"; src = fetchFromGitHub { owner = "torgeir"; repo = "remark-mode.el"; @@ -49887,7 +50353,7 @@ sha256 = "0w40cx58c0hmc0yzs8maq1389hwha0qwfbz76pc6kpcx14v1gkhh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/remark-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/remark-mode"; sha256 = "1zl8k3h4acbgb3hmjs2b4a14g0s0vl3xamrqxrr742zmqpr1h0w0"; name = "remark-mode"; }; @@ -49900,7 +50366,7 @@ repeatable-motion = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "repeatable-motion"; - version = "20150629.1312"; + version = "20150629.1412"; src = fetchFromGitHub { owner = "willghatch"; repo = "emacs-repeatable-motion"; @@ -49908,7 +50374,7 @@ sha256 = "007lqahjbig6yygqik6fgbq114784z6l40a3vrc4qs9361zqizck"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/repeatable-motion"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/repeatable-motion"; sha256 = "12z4z8apd8ksf6dfvqm54l71mx68j0yg4hrjypa9p77fpcd6p0zw"; name = "repeatable-motion"; }; @@ -49921,7 +50387,7 @@ repl-toggle = callPackage ({ fetchFromGitHub, fetchurl, fullframe, lib, melpaBuild }: melpaBuild { pname = "repl-toggle"; - version = "20160119.621"; + version = "20160119.721"; src = fetchFromGitHub { owner = "tomterl"; repo = "repl-toggle"; @@ -49929,7 +50395,7 @@ sha256 = "12wylmyz54n1f3kaw9clhvs66dg43xvcvll4pl5ii0ibfv6pls1b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/repl-toggle"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/repl-toggle"; sha256 = "1jyaksxgyygfv1wn9c6y8sykb4hicwgs9n5vrdikd2i0iix29zpb"; name = "repl-toggle"; }; @@ -49942,13 +50408,13 @@ replace-from-region = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "replace-from-region"; - version = "20150406.1930"; + version = "20150406.2030"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/replace-from-region.el"; sha256 = "1clxkzxqsm91zbzv8nffav224ldr04ww5lppga2l41xjfl6z12qb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/replace-from-region"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/replace-from-region"; sha256 = "19q8hz2xiyamhw8hzpahqwd4352k1m9r9wlh9kdh6hbb6sjgllnb"; name = "replace-from-region"; }; @@ -49961,7 +50427,7 @@ replace-pairs = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "replace-pairs"; - version = "20160207.651"; + version = "20160207.751"; src = fetchFromGitHub { owner = "davidshepherd7"; repo = "replace-pairs"; @@ -49969,7 +50435,7 @@ sha256 = "169p85rmgashm0g26apkxynmypqk9ndh76kvh572db5kqb8ix0c6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/replace-pairs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/replace-pairs"; sha256 = "0l9674rba25wh6fskvfwkhv99lwlszb177hsfzx39s6b4hshvlsb"; name = "replace-pairs"; }; @@ -49981,13 +50447,13 @@ }) {}; replace-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "replace-plus"; - version = "20151231.1749"; + version = "20151231.1849"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/replace+.el"; sha256 = "1af4sdhkzxknqzdkzc5gpm5j3s5k776j293hqq7cqzk533fdh4iz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/replace+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/replace+"; sha256 = "1imsgr3v8g2p2mnkzp92ga3nvckr758pblmlha8gh8mb80089krn"; name = "replace-plus"; }; @@ -50000,7 +50466,7 @@ replace-symbol = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "replace-symbol"; - version = "20151030.1857"; + version = "20151030.1957"; src = fetchFromGitHub { owner = "bmastenbrook"; repo = "replace-symbol-el"; @@ -50008,7 +50474,7 @@ sha256 = "0ks884jhxqkr8j38r9m4s56krm2gpkm0v5d51zzivcfhs30s6nff"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/replace-symbol"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/replace-symbol"; sha256 = "07ljmw6aw9hsqffhwmiq2pvhry27acg6f4vgxgi91vjr8jj3r4ng"; name = "replace-symbol"; }; @@ -50021,7 +50487,7 @@ repo = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "repo"; - version = "20160114.1314"; + version = "20160114.1414"; src = fetchFromGitHub { owner = "canatella"; repo = "repo-el"; @@ -50029,7 +50495,7 @@ sha256 = "0hs80g3npgb6qfcaivdfkpsc9mss1kdmyp5j7s922qcy2k4yxmgl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/repo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/repo"; sha256 = "0z4lcswh0c6xnsxlv33bsxh0nh26ydzfl8sv8xabdp5a2gk6bhpb"; name = "repo"; }; @@ -50042,7 +50508,7 @@ req-package = callPackage ({ dash, fetchFromGitHub, fetchurl, ht, lib, log4e, melpaBuild, use-package }: melpaBuild { pname = "req-package"; - version = "20160227.1205"; + version = "20160227.1305"; src = fetchFromGitHub { owner = "edvorg"; repo = "req-package"; @@ -50050,7 +50516,7 @@ sha256 = "0905525nw78bz7qs1scmqss5dffp2aabvmwvcvgl6b2bz92w9nb2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/req-package"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/req-package"; sha256 = "1438f60dnmc3a2dh6hd0wslrh25nd3af797aif70kv6qc71h87vf"; name = "req-package"; }; @@ -50063,7 +50529,7 @@ request = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "request"; - version = "20160424.2232"; + version = "20160424.2332"; src = fetchFromGitHub { owner = "tkf"; repo = "emacs-request"; @@ -50071,7 +50537,7 @@ sha256 = "0rpw9is8sx2gmbc7l6mv5qdd0jrh497lyj5f0zx0lqwjl8imw401"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/request"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/request"; sha256 = "0h4jqg98px9dqqvjp08vi2z1lhmk0ca59lnrcl96bi7gkkj3jiji"; name = "request"; }; @@ -50084,7 +50550,7 @@ request-deferred = callPackage ({ deferred, fetchFromGitHub, fetchurl, lib, melpaBuild, request }: melpaBuild { pname = "request-deferred"; - version = "20160419.1805"; + version = "20160419.1905"; src = fetchFromGitHub { owner = "tkf"; repo = "emacs-request"; @@ -50092,7 +50558,7 @@ sha256 = "0rpw9is8sx2gmbc7l6mv5qdd0jrh497lyj5f0zx0lqwjl8imw401"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/request-deferred"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/request-deferred"; sha256 = "1dcxqnzmvddk61dzmfx8vjbzd8m44lscr3pjdp3r7211zhwfk40n"; name = "request-deferred"; }; @@ -50105,7 +50571,7 @@ requirejs = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, js2-mode, lib, melpaBuild, popup, s, yasnippet }: melpaBuild { pname = "requirejs"; - version = "20151204.119"; + version = "20151204.219"; src = fetchFromGitHub { owner = "joeheyming"; repo = "requirejs-emacs"; @@ -50113,7 +50579,7 @@ sha256 = "1bfj2zjn3x41jal6c136wnwkgmag27bmrwbfwdylafc7qqk6dflv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/requirejs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/requirejs"; sha256 = "09z6r9wcag3gj075wq215zcslyknl1izap595rn48xvizxi06c6k"; name = "requirejs"; }; @@ -50126,7 +50592,7 @@ requirejs-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "requirejs-mode"; - version = "20130215.1504"; + version = "20130215.1604"; src = fetchFromGitHub { owner = "moricard"; repo = "requirejs-mode"; @@ -50134,7 +50600,7 @@ sha256 = "02wva5q8mvc0a5kms2wm1gyaag2x3zd6fkkpl4218nrbb0mbficv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/requirejs-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/requirejs-mode"; sha256 = "00bl5dz56f77hl9wy3xvjhq81641mv9jbskcd8mcgcz9ycj9g5k2"; name = "requirejs-mode"; }; @@ -50147,7 +50613,7 @@ resize-window = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "resize-window"; - version = "20151126.2229"; + version = "20151126.2329"; src = fetchFromGitHub { owner = "dpsutton"; repo = "resize-window"; @@ -50155,7 +50621,7 @@ sha256 = "055km3g4bwl73kca6ky3qzzmy103w0mqcfscj33ppdhg2n7m94n0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/resize-window"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/resize-window"; sha256 = "0h1hlj50hc97wxqpnmvg6w3qhdd9nbnb8r8v39ylv87zqjcmlp8l"; name = "resize-window"; }; @@ -50168,7 +50634,7 @@ restart-emacs = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "restart-emacs"; - version = "20151203.1035"; + version = "20151203.1135"; src = fetchFromGitHub { owner = "iqbalansari"; repo = "restart-emacs"; @@ -50176,7 +50642,7 @@ sha256 = "0gbm208hmmmpjyj0x3z0cszphawkgvjqzi5idbdca3gikyiqw80n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/restart-emacs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/restart-emacs"; sha256 = "03aabz7fmy99nwimvjn7qz6pvc94i470hfgiwmjz3348cw02k0n6"; name = "restart-emacs"; }; @@ -50189,7 +50655,7 @@ restclient = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "restclient"; - version = "20160414.1724"; + version = "20160414.1824"; src = fetchFromGitHub { owner = "pashky"; repo = "restclient.el"; @@ -50197,7 +50663,7 @@ sha256 = "0r3q9cbf39pf4diynw4q8g7p5i6ylyk8jwxi2z2afwiblnnr9gsz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/restclient"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/restclient"; sha256 = "0wzp8i89a4hwm7qyxvdk10frknbqcni0isnp8k63nhq7c30s7md4"; name = "restclient"; }; @@ -50210,7 +50676,7 @@ restclient-helm = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild, restclient }: melpaBuild { pname = "restclient-helm"; - version = "20160407.449"; + version = "20160407.549"; src = fetchFromGitHub { owner = "pashky"; repo = "restclient.el"; @@ -50218,7 +50684,7 @@ sha256 = "0r3q9cbf39pf4diynw4q8g7p5i6ylyk8jwxi2z2afwiblnnr9gsz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/restclient-helm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/restclient-helm"; sha256 = "0cpf02ippfr9w6kiw3kng8smabv256ff388322hhn8a8icyjl24j"; name = "restclient-helm"; }; @@ -50231,7 +50697,7 @@ reveal-in-osx-finder = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "reveal-in-osx-finder"; - version = "20150802.1157"; + version = "20150802.1257"; src = fetchFromGitHub { owner = "kaz-yos"; repo = "reveal-in-osx-finder"; @@ -50239,7 +50705,7 @@ sha256 = "1q13cgpz4wzhnqv84ablawy3y2wgdwy46sp7454mmfx9m77jzb2v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/reveal-in-osx-finder"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/reveal-in-osx-finder"; sha256 = "00jgrmh5s3vlpj1jjf8l3c3h4hjk5x781m95sidw6chimizvfmfc"; name = "reveal-in-osx-finder"; }; @@ -50251,13 +50717,13 @@ }) {}; reveal-next = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "reveal-next"; - version = "20151231.1750"; + version = "20151231.1850"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/reveal-next.el"; sha256 = "1h27kg2k8f6smbqxandmvg859qk66jydbbbiwwjmk7316k66w8qa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/reveal-next"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/reveal-next"; sha256 = "0fp6ssd4fad0s2pbxbw75bnx7fcgasig8xvcx7nls8m9p6zbbmh2"; name = "reveal-next"; }; @@ -50270,7 +50736,7 @@ reverse-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "reverse-theme"; - version = "20141204.1945"; + version = "20141204.2045"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-reverse-theme"; @@ -50278,7 +50744,7 @@ sha256 = "002ywhjms8ybk7cma2p2i11z3fz6kb0w8mlafysm911rvcq2hg5f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/reverse-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/reverse-theme"; sha256 = "163kk5qnz9bk3l2fam79n264s764jfxbwqbiwgid8kw9cmk0v776"; name = "reverse-theme"; }; @@ -50291,7 +50757,7 @@ review-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "review-mode"; - version = "20150110.812"; + version = "20150110.912"; src = fetchFromGitHub { owner = "kmuto"; repo = "review-el"; @@ -50299,7 +50765,7 @@ sha256 = "0lzsy68k7sm9d3r8lzhzx9alc1f0cgfclry40pa4x0ilkcr7ysch"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/review-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/review-mode"; sha256 = "0wapicggkngpdzi0yxc0b24s526fs819rc2d6miv6ix3gnw11n0n"; name = "review-mode"; }; @@ -50312,7 +50778,7 @@ revive = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "revive"; - version = "20150417.1755"; + version = "20150417.1855"; src = fetchFromGitHub { owner = "emacsmirror"; repo = "revive"; @@ -50320,7 +50786,7 @@ sha256 = "037sac5fvz6l2zgzlf8ykk4jf9zhj7ybzyz013jqzjj47a6sn1r1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/revive"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/revive"; sha256 = "1l7c6zq3ga2k1488qb0hgxlk08p3vrcf0sx116c1f8z8nf4c8ny5"; name = "revive"; }; @@ -50333,7 +50799,7 @@ reykjavik-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "reykjavik-theme"; - version = "20160109.200"; + version = "20160109.300"; src = fetchFromGitHub { owner = "mswift42"; repo = "reykjavik-theme"; @@ -50341,7 +50807,7 @@ sha256 = "0zmby92mjszh77r5wh8sccqv3a5bb9sfhac8g55nasavw8hfplvj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/reykjavik-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/reykjavik-theme"; sha256 = "1f0q2gfzkmpd374jryrd1lgg8xj6rwdq181jhppj3rfjizgw4l35"; name = "reykjavik-theme"; }; @@ -50353,13 +50819,13 @@ }) {}; rfringe = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "rfringe"; - version = "20110405.1020"; + version = "20110405.1120"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/rfringe.el"; sha256 = "02i5znln0aphvmvaia3sz75bvjhqwyjq1blf5qkcbprnn95lm3yh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rfringe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/rfringe"; sha256 = "171gzfciz78l6b653acgfailxpwmh8m1dm0dzpg0b1k0ny3aiwf6"; name = "rfringe"; }; @@ -50372,7 +50838,7 @@ rhtml-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "rhtml-mode"; - version = "20130422.811"; + version = "20130422.911"; src = fetchFromGitHub { owner = "eschulte"; repo = "rhtml"; @@ -50380,7 +50846,7 @@ sha256 = "1qlpv5lzj4yfyjgdykhm6q9izg6g0z5pf5nmynj42vsx7v8bhy1x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rhtml-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/rhtml-mode"; sha256 = "038j5jkcckmhlq3vz4h07s5y2scljh1fdn9r614hiyxwgk48lc35"; name = "rhtml-mode"; }; @@ -50393,7 +50859,7 @@ rich-minority = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "rich-minority"; - version = "20151201.600"; + version = "20151201.700"; src = fetchFromGitHub { owner = "Malabarba"; repo = "rich-minority"; @@ -50401,7 +50867,7 @@ sha256 = "11hwf9y5ax207w6rwrsmi3pmn7pn7ap6iys0z8hni2f5zzxjrmx3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rich-minority"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/rich-minority"; sha256 = "11xd76w5k3b3q5bxqjb55vi6dsal9drvyc1nh7z83awm59hvgczc"; name = "rich-minority"; }; @@ -50414,7 +50880,7 @@ rigid-tabs = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "rigid-tabs"; - version = "20150807.1056"; + version = "20150807.1156"; src = fetchFromGitHub { owner = "wavexx"; repo = "rigid-tabs.el"; @@ -50422,7 +50888,7 @@ sha256 = "0p044wg9d4i6f5x7bdshmisgwvw424y16lixac93q6v5bh3xmab5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rigid-tabs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/rigid-tabs"; sha256 = "06n0bcvc3nnp84pcq3lywwga7l92jz8hnkilhbq59kydf5zbjldp"; name = "rigid-tabs"; }; @@ -50435,7 +50901,7 @@ rinari = callPackage ({ fetchFromGitHub, fetchurl, inf-ruby, jump, lib, melpaBuild, ruby-compilation, ruby-mode ? null }: melpaBuild { pname = "rinari"; - version = "20150709.140"; + version = "20150709.240"; src = fetchFromGitHub { owner = "eschulte"; repo = "rinari"; @@ -50443,7 +50909,7 @@ sha256 = "1kg83z10jw4ik0aapv9cjqlvqy31rln2am8vh3f77zh61qha37hx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rinari"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/rinari"; sha256 = "0qknicg3vzl7zbkwsdvp10hrvlng6mbi8hgslx4ir522dflrf9p0"; name = "rinari"; }; @@ -50456,7 +50922,7 @@ rings = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "rings"; - version = "20140102.1736"; + version = "20140102.1836"; src = fetchFromGitHub { owner = "konr"; repo = "rings"; @@ -50464,7 +50930,7 @@ sha256 = "0imsc44mcy5abmfin28d13l8mjjvyx6hxcsk81r0i8h12mxlmfkp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rings"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/rings"; sha256 = "1ncsb4jip07hbrf1l4j9yzn3l0kb63ylhzzsb4bb2yx6as4a66k7"; name = "rings"; }; @@ -50477,7 +50943,7 @@ rnc-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "rnc-mode"; - version = "20121227.1702"; + version = "20121227.1802"; src = fetchFromGitHub { owner = "TreeRex"; repo = "rnc-mode"; @@ -50485,7 +50951,7 @@ sha256 = "1drvyf5asjp3lgpss7llff35q8r89vmh73n1axaj2qp9jx5a5jih"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rnc-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/rnc-mode"; sha256 = "09ly7ln6qrcmmim9bl7kd50h4axrhy6ig406r352xm4a9zc8n22q"; name = "rnc-mode"; }; @@ -50498,15 +50964,15 @@ robe = callPackage ({ fetchFromGitHub, fetchurl, inf-ruby, lib, melpaBuild }: melpaBuild { pname = "robe"; - version = "20160303.1027"; + version = "20160427.852"; src = fetchFromGitHub { owner = "dgutov"; repo = "robe"; - rev = "b260da4812d9cba53622a95d5464697f90761006"; - sha256 = "1by1r0fycvbrbvzrc1z2kd644hyndcrzi6gvplqaz8jkyy88nnny"; + rev = "c76eef135388db868d23d3f5f8e7e49ec913518b"; + sha256 = "03hrccdrvj3nln66ajy8rh208bn88rj4pk8g4xfavv2jymayk5qz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/robe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/robe"; sha256 = "19py2lwi7maya90kh1mgwqb16j72f7gm05dwla6xrzq1aks18wrk"; name = "robe"; }; @@ -50519,7 +50985,7 @@ robots-txt-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "robots-txt-mode"; - version = "20160312.951"; + version = "20160312.1051"; src = fetchFromGitHub { owner = "zonuexe"; repo = "robots-txt-mode"; @@ -50527,7 +50993,7 @@ sha256 = "0dimmdz4aqcif4lp23nqxfg7kngzym2yivn6h3p7bn1821vgzq9s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/robots-txt-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/robots-txt-mode"; sha256 = "1q3fqaf9nysy9bhx4h9idgshxr65hfwnx05vlwazx7jd6bq6kxfh"; name = "robots-txt-mode"; }; @@ -50540,7 +51006,7 @@ roguel-ike = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, popup }: melpaBuild { pname = "roguel-ike"; - version = "20160119.2102"; + version = "20160119.2202"; src = fetchFromGitHub { owner = "stevenremot"; repo = "roguel-ike"; @@ -50548,7 +51014,7 @@ sha256 = "0rgv4y9aa5cc2ddz3y5z8d22xmr8kf5c60h0r3g8h91jmcw3rb4z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/roguel-ike"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/roguel-ike"; sha256 = "1a7sa6nhgi0s4gjh55bhk5cg6q6s7564fk008ibmrm05gfq9wlg8"; name = "roguel-ike"; }; @@ -50561,15 +51027,15 @@ rope-read-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "rope-read-mode"; - version = "20160416.421"; + version = "20160504.447"; src = fetchFromGitHub { owner = "marcowahl"; repo = "rope-read-mode"; - rev = "5b9d44b5af74e909092efed6f732dc7d20529eb0"; - sha256 = "0kbi4f6v289v25n9silf7z0sdd8930pcaqdjrrrs7nkkjcl12sd0"; + rev = "e690138ef399a60aa2637fdc8721535178fb7002"; + sha256 = "036wip40y055579kf9isdnp3b4cwc7ylwmqsbj88xdpf1hxnx270"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rope-read-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/rope-read-mode"; sha256 = "0grnn5k6rbck0hz4c6cadgj3a4dv62habyingznisg2kx9i3m0dw"; name = "rope-read-mode"; }; @@ -50582,7 +51048,7 @@ rotate = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "rotate"; - version = "20160215.118"; + version = "20160215.218"; src = fetchFromGitHub { owner = "daic-h"; repo = "emacs-rotate"; @@ -50590,7 +51056,7 @@ sha256 = "13xrjd5p2zq0r8ifbqbrgjfm0jj09nyxcbhk262jr6f171rf0y2m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rotate"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/rotate"; sha256 = "0dygdd24flbgqp049sl4p8rymvv8h881hz9lvz8hnfwq687yyclx"; name = "rotate"; }; @@ -50603,7 +51069,7 @@ roy-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "roy-mode"; - version = "20121208.558"; + version = "20121208.658"; src = fetchFromGitHub { owner = "folone"; repo = "roy-mode"; @@ -50611,7 +51077,7 @@ sha256 = "04jbnm9is2cis75h40znqzjvyjq27ncr2vfank6zglzi4fhxsl0r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/roy-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/roy-mode"; sha256 = "0ch0hamvw4gsqs2pap0h6w4cj6n73jqa75if0ymh73hk5i3acm8g"; name = "roy-mode"; }; @@ -50624,7 +51090,7 @@ rpm-spec-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "rpm-spec-mode"; - version = "20150411.1055"; + version = "20150411.1155"; src = fetchFromGitHub { owner = "bjorlykke"; repo = "rpm-spec-mode"; @@ -50632,7 +51098,7 @@ sha256 = "01rb6qfsk4f33nkfdzvvjkw96ip1dv0py8i30l8ix9cqbk07svsv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rpm-spec-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/rpm-spec-mode"; sha256 = "01vggdv8sac4p0szwk7xgxcglmd5a1hv5q0ylf8zcp1lsyyh8ypd"; name = "rpm-spec-mode"; }; @@ -50645,7 +51111,7 @@ rpn-calc = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, popup }: melpaBuild { pname = "rpn-calc"; - version = "20150302.734"; + version = "20150302.834"; src = fetchFromGitHub { owner = "zk-phi"; repo = "rpn-calc"; @@ -50653,7 +51119,7 @@ sha256 = "0i5qwbhhdnspgs2y67kkgbk9zq6fx2j509q92mgfzbvjnf54h1r8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rpn-calc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/rpn-calc"; sha256 = "04dj2r4035k0c3x6iyjydshzmq381d60pmscp2hg5m7sp7bqn5xs"; name = "rpn-calc"; }; @@ -50666,7 +51132,7 @@ rsense = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "rsense"; - version = "20100510.2305"; + version = "20100511.5"; src = fetchFromGitHub { owner = "m2ym"; repo = "rsense"; @@ -50674,7 +51140,7 @@ sha256 = "0xkr1qn8fm3kv5c11janq5acp1q02abvxc463zijvm2qk735yl4d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rsense"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/rsense"; sha256 = "1901xqlpc8fg4sl9j58jn40i2djs8s0cdcqcrzrq02lvk8ssfdf5"; name = "rsense"; }; @@ -50687,7 +51153,7 @@ rspec-mode = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, ruby-mode ? null }: melpaBuild { pname = "rspec-mode"; - version = "20160425.1657"; + version = "20160425.1757"; src = fetchFromGitHub { owner = "pezra"; repo = "rspec-mode"; @@ -50695,7 +51161,7 @@ sha256 = "1mlcr4br831cbxd90z61kynvir704mafv4avas44bzk8m1m188kw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rspec-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/rspec-mode"; sha256 = "0nyib9rx9w9cbsgkcjx9n8fp77xkzxg923z0rdm3f9kc7njcn0zx"; name = "rspec-mode"; }; @@ -50708,15 +51174,15 @@ rtags = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "rtags"; - version = "20160420.1258"; + version = "20160504.2022"; src = fetchFromGitHub { owner = "Andersbakken"; repo = "rtags"; - rev = "1576dc4931039caa2193bf7d043f90407dd12bc3"; - sha256 = "0c06jaywcnbh2fr3ias9q4cz89fcp9nbf8in83jap8f4l94a4zf6"; + rev = "98fb1b33e120c98f90404fbfef2dea3d7a7a00b2"; + sha256 = "1xcxbp8pnv7v3nfvyzjnj51bqzbzwv5m7x7wl3sfv8b3yy7mkxjd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rtags"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/rtags"; sha256 = "08clwydx2b9cl4wv61b0p564jpvq7gzkrlcdkchpi4yz6djbp0lw"; name = "rtags"; }; @@ -50729,7 +51195,7 @@ rtm = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "rtm"; - version = "20160116.1127"; + version = "20160116.1227"; src = fetchFromGitHub { owner = "pmiddend"; repo = "emacs-rtm"; @@ -50737,7 +51203,7 @@ sha256 = "1gqvp0h5zy2023gdzf7pw28rl27lzml87vpbi1zaw4bmj82zgh3f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rtm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/rtm"; sha256 = "1ni2610svxziq1gq6s6igkhqyafvgn02gnw7jbm3ir7ks4w2imzf"; name = "rtm"; }; @@ -50750,7 +51216,7 @@ rubocop = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "rubocop"; - version = "20151123.2337"; + version = "20151124.37"; src = fetchFromGitHub { owner = "bbatsov"; repo = "rubocop-emacs"; @@ -50758,7 +51224,7 @@ sha256 = "1y5z0kr4qwd4fyvhk0rhpbbp6dw2jpzrawx62jid5539wrdjcabk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rubocop"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/rubocop"; sha256 = "114azl0fasmnq0fxxyiif3363mpg8qz3ynx91in5acqzh902fa3q"; name = "rubocop"; }; @@ -50771,14 +51237,14 @@ ruby-additional = callPackage ({ emacs, fetchsvn, fetchurl, lib, melpaBuild, ruby-mode ? null }: melpaBuild { pname = "ruby-additional"; - version = "20091002.545"; + version = "20091002.645"; src = fetchsvn { url = "http://svn.ruby-lang.org/repos/ruby/trunk/misc/"; - rev = "54789"; + rev = "54941"; sha256 = "07j1lclp6jqhyzfw8h4a21kx39nz946h6lgmn959rvckhkijr514"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ruby-additional"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ruby-additional"; sha256 = "0h0cxik8lp8g81bvp06mddikkk5bjdlch2wffcvsvi01is408w4w"; name = "ruby-additional"; }; @@ -50790,13 +51256,13 @@ }) {}; ruby-block = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "ruby-block"; - version = "20131210.2131"; + version = "20131210.2231"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/ruby-block.el"; sha256 = "0c4vy9xsw44g6q9nc8aaav5avgp34h24mvgcnww468afiimivdcq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ruby-block"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ruby-block"; sha256 = "0jfimjq1xpwxkxya452kp27h0fdiy87aj713w3zsm04k7l6i12hm"; name = "ruby-block"; }; @@ -50809,7 +51275,7 @@ ruby-compilation = callPackage ({ fetchFromGitHub, fetchurl, inf-ruby, lib, melpaBuild }: melpaBuild { pname = "ruby-compilation"; - version = "20150709.140"; + version = "20150709.240"; src = fetchFromGitHub { owner = "eschulte"; repo = "rinari"; @@ -50817,7 +51283,7 @@ sha256 = "1kg83z10jw4ik0aapv9cjqlvqy31rln2am8vh3f77zh61qha37hx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ruby-compilation"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ruby-compilation"; sha256 = "1x1vpkjpx95sfcjhkx4cafypj0nkbd1i0mzxx3lmcrsmg8iv0rjc"; name = "ruby-compilation"; }; @@ -50830,7 +51296,7 @@ ruby-dev = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ruby-dev"; - version = "20130811.351"; + version = "20130811.451"; src = fetchFromGitHub { owner = "Mon-Ouie"; repo = "ruby-dev.el"; @@ -50838,7 +51304,7 @@ sha256 = "1cy5zmdfwsjw8jla8mxjm1cmvrv727fwq1kqhjr5nxj0flwsm4x1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ruby-dev"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ruby-dev"; sha256 = "0mf2ra3p5976qn4ryc2s20vi0nrzwcg3xvsgppsc0bsirjw2l0fh"; name = "ruby-dev"; }; @@ -50851,14 +51317,14 @@ ruby-electric = callPackage ({ fetchsvn, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ruby-electric"; - version = "20150424.952"; + version = "20150424.1052"; src = fetchsvn { url = "http://svn.ruby-lang.org/repos/ruby/trunk/misc/"; - rev = "54789"; + rev = "54941"; sha256 = "07j1lclp6jqhyzfw8h4a21kx39nz946h6lgmn959rvckhkijr514"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ruby-electric"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ruby-electric"; sha256 = "04j04dsknzb7xc8v6alawgcbymdfmh27xnpr98yc8b05nzafw056"; name = "ruby-electric"; }; @@ -50871,7 +51337,7 @@ ruby-end = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ruby-end"; - version = "20141215.623"; + version = "20141215.723"; src = fetchFromGitHub { owner = "rejeep"; repo = "ruby-end.el"; @@ -50879,7 +51345,7 @@ sha256 = "1x4nvrq5nk50c1l3b5wcr4g1n5nmwafcz1zzc12qzsl5sya7si55"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ruby-end"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ruby-end"; sha256 = "1cnmdlkhm8xsifbjs6ymvi92gdnxiaghb04h10qg41phj6v7m9mg"; name = "ruby-end"; }; @@ -50892,7 +51358,7 @@ ruby-factory = callPackage ({ fetchFromGitHub, fetchurl, inflections, lib, melpaBuild }: melpaBuild { pname = "ruby-factory"; - version = "20160102.121"; + version = "20160102.221"; src = fetchFromGitHub { owner = "sshaw"; repo = "ruby-factory-mode"; @@ -50900,7 +51366,7 @@ sha256 = "15b2rs6m4d511qqkc2gc8k15mbqzrgv6s3hpypajl8nvqa79xnyd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ruby-factory"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ruby-factory"; sha256 = "0v8009pad0l41zh9r1wzcx1h6vpzhr5rgpq6rb002prxz2lcbd37"; name = "ruby-factory"; }; @@ -50913,7 +51379,7 @@ ruby-guard = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ruby-guard"; - version = "20160131.1952"; + version = "20160131.2052"; src = fetchFromGitHub { owner = "cheunghy"; repo = "ruby-guard"; @@ -50921,7 +51387,7 @@ sha256 = "080hmrh7pgpaj33w1rkhcqb1yp70w4cap0rq9hsxaaajj0sn47z3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ruby-guard"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ruby-guard"; sha256 = "0hwxhirdvaysw9hxcgfdf0l12wilr6b9f9w91pk1hfwfi1w0lfwr"; name = "ruby-guard"; }; @@ -50934,7 +51400,7 @@ ruby-hash-syntax = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ruby-hash-syntax"; - version = "20141010.1039"; + version = "20141010.1139"; src = fetchFromGitHub { owner = "purcell"; repo = "ruby-hash-syntax"; @@ -50942,7 +51408,7 @@ sha256 = "0knl8zrd4pplnzk5z19cf9rqdfr3ymzfssrwp6jhndjzjdwvc2bv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ruby-hash-syntax"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ruby-hash-syntax"; sha256 = "0bvwyagfh7mn457iibrpv1ay75089gp8pg608gbm24m0ix82xvb5"; name = "ruby-hash-syntax"; }; @@ -50955,7 +51421,7 @@ ruby-interpolation = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ruby-interpolation"; - version = "20131112.1052"; + version = "20131112.1152"; src = fetchFromGitHub { owner = "leoc"; repo = "ruby-interpolation.el"; @@ -50963,7 +51429,7 @@ sha256 = "1r2f5jxi6wnkmr1ssvqgshi97gjvxvf3qqc0njg1s33cy39wpqq5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ruby-interpolation"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ruby-interpolation"; sha256 = "07idndxw8vgfrk5zfmjjhmixza35mqxwjhsrbjrq5yy72i5ivznp"; name = "ruby-interpolation"; }; @@ -50976,7 +51442,7 @@ ruby-refactor = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, ruby-mode ? null }: melpaBuild { pname = "ruby-refactor"; - version = "20160214.1050"; + version = "20160214.1150"; src = fetchFromGitHub { owner = "ajvargo"; repo = "ruby-refactor"; @@ -50984,7 +51450,7 @@ sha256 = "13008ih4hwa80bn2dbgj551knbvgpriz5sb241rkf7mifmlfzgsi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ruby-refactor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ruby-refactor"; sha256 = "0nwinnnhy72h1ihjlnjl8k8z3yf4nl2z7hfv085gwiacr6nn2rby"; name = "ruby-refactor"; }; @@ -50997,7 +51463,7 @@ ruby-test-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, ruby-mode ? null }: melpaBuild { pname = "ruby-test-mode"; - version = "20151127.218"; + version = "20151127.318"; src = fetchFromGitHub { owner = "r0man"; repo = "ruby-test-mode"; @@ -51005,7 +51471,7 @@ sha256 = "06fhrn04whqb3n40wkzrwmzbzv7b1m48rd18rx8zpgxhbw8v7rdc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ruby-test-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ruby-test-mode"; sha256 = "113ysf08bfh2ipk55f8h741j05999yrgx57mzh53rim5n63a312w"; name = "ruby-test-mode"; }; @@ -51018,7 +51484,7 @@ ruby-tools = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ruby-tools"; - version = "20151209.1015"; + version = "20151209.1115"; src = fetchFromGitHub { owner = "rejeep"; repo = "ruby-tools.el"; @@ -51026,7 +51492,7 @@ sha256 = "0jd9acycpbdd90hallrl0k5055rypp502qv4c6i286p7f9is4kvq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ruby-tools"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ruby-tools"; sha256 = "0zpk55rkrqyangyyljxzf0n1icgqnpdzycwack5rji556h5grvjy"; name = "ruby-tools"; }; @@ -51039,7 +51505,7 @@ runner = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "runner"; - version = "20151118.416"; + version = "20151118.516"; src = fetchFromGitHub { owner = "thamer"; repo = "runner"; @@ -51047,7 +51513,7 @@ sha256 = "17dzr5w12ai2q15yv81gchk360yjs71w74vsgs2fyy2yznvclpq9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/runner"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/runner"; sha256 = "09apmk22swj05z77ziij31jj6b3g221qv3mw3mymffzxn5ap2rbx"; name = "runner"; }; @@ -51060,7 +51526,7 @@ runtests = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "runtests"; - version = "20150807.331"; + version = "20150807.431"; src = fetchFromGitHub { owner = "sunesimonsen"; repo = "emacs-runtests"; @@ -51068,7 +51534,7 @@ sha256 = "18w6gkpxp0g7rzvnrk8vvr267y768dfik447ssq8jpz3jlr5jnq6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/runtests"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/runtests"; sha256 = "0m9rqjb5c0yqr2wv5dsdiba21knr63b5pxsqgbkbybi15zgxcicb"; name = "runtests"; }; @@ -51081,15 +51547,15 @@ rust-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "rust-mode"; - version = "20160425.2319"; + version = "20160506.30"; src = fetchFromGitHub { owner = "rust-lang"; repo = "rust-mode"; - rev = "b23efef0b6a6a632b70c1db5579a835059239e4c"; - sha256 = "1qsxxpr80y7fz5zh2i8hyifqmhbkrlnqls6gcck2n3ahv30sa1i3"; + rev = "4fce17848d7df44ea5a722577dbf69cccf39878b"; + sha256 = "03xswbzdn0v1b9ai3121p27wrahazhd555zvnphkxc60lcs70j1s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rust-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/rust-mode"; sha256 = "1i1mw1v99nyikscg2s1m216b0h8svbzmf5kjvjgk9zjiba4cbqzc"; name = "rust-mode"; }; @@ -51102,7 +51568,7 @@ rustfmt = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "rustfmt"; - version = "20160217.742"; + version = "20160217.842"; src = fetchFromGitHub { owner = "fbergroth"; repo = "emacs-rustfmt"; @@ -51110,7 +51576,7 @@ sha256 = "0c22cxa4f6plz67vxmp1zgaylkfrky313cj0zybn9akrbcxpbc34"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rustfmt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/rustfmt"; sha256 = "1znav2pbax0rsvdl85mmbgbmxy7gnrm4nx54ij1ff6yd831r5jyl"; name = "rustfmt"; }; @@ -51123,7 +51589,7 @@ rvm = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "rvm"; - version = "20150402.942"; + version = "20150402.1042"; src = fetchFromGitHub { owner = "senny"; repo = "rvm.el"; @@ -51131,7 +51597,7 @@ sha256 = "0iblk0vagjcg3c8q9hlpwk7426ms7aq0s80izgvascfmyqycv6qm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rvm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/rvm"; sha256 = "08i7cmav2cz73jp88ww0ay2yjhk9dj8146836q4sij1bl1slbaf8"; name = "rvm"; }; @@ -51144,15 +51610,15 @@ s = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "s"; - version = "20160405.1120"; + version = "20160429.1027"; src = fetchFromGitHub { owner = "magnars"; repo = "s.el"; - rev = "b2436c2ee5c1f3284b567c4cd48e5b4ed953d49e"; - sha256 = "1lk8vjrbjpw8z5gdadx86b0554djpg928s7wkq8qkr8qm7dd85aa"; + rev = "981e0c7d19d4575d073b3a6bfb90526eeaf9384a"; + sha256 = "08qy1ynrb6cgmjh74r0mxbpj2z6avzy2sqk36679wlg3fq11ah5y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/s"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/s"; sha256 = "0b2lj6nj08pk5fnxvjkc1d9hvi29rnjjy4n5ns4pq6wxpfnlcw64"; name = "s"; }; @@ -51165,7 +51631,7 @@ s-buffer = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, noflet, s }: melpaBuild { pname = "s-buffer"; - version = "20130605.1624"; + version = "20130605.1724"; src = fetchFromGitHub { owner = "nicferrier"; repo = "emacs-s-buffer"; @@ -51173,7 +51639,7 @@ sha256 = "06ng960fj2ivnwb0hrn0qic5x8hb0sswjzph01zmwhbfnwykhr85"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/s-buffer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/s-buffer"; sha256 = "07kivgzv24psjq1240gwj9wkndq4bhvjh38x552k90m9v6jz8l6m"; name = "s-buffer"; }; @@ -51186,7 +51652,7 @@ sackspace = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "sackspace"; - version = "20130719.456"; + version = "20130719.556"; src = fetchFromGitHub { owner = "cofi"; repo = "sackspace.el"; @@ -51194,7 +51660,7 @@ sha256 = "06gqqbkn85l2p05whmr4wkg9axqyzb7r7sgm3r8wfshm99kgpxvl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sackspace"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/sackspace"; sha256 = "1m10iw83k6m7v7sg2dxzdy83zxq6svk8h9fh4ankyn3baqrdxg5z"; name = "sackspace"; }; @@ -51207,7 +51673,7 @@ sage-shell-mode = callPackage ({ cl-lib ? null, deferred, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "sage-shell-mode"; - version = "20160414.2114"; + version = "20160414.2214"; src = fetchFromGitHub { owner = "stakemori"; repo = "sage-shell-mode"; @@ -51215,7 +51681,7 @@ sha256 = "17pxr7y60im9gpi50v3b1hswahrkdwc2hqycxpb5x9g0xd6w797b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sage-shell-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/sage-shell-mode"; sha256 = "18k7yh8rczng0kn2wsawjml70cb5bnc5jr2gj0hini5f7jq449wx"; name = "sage-shell-mode"; }; @@ -51228,7 +51694,7 @@ salt-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, mmm-jinja2, mmm-mode, yaml-mode }: melpaBuild { pname = "salt-mode"; - version = "20150904.1313"; + version = "20150904.1413"; src = fetchFromGitHub { owner = "beardedprojamz"; repo = "salt-mode"; @@ -51236,7 +51702,7 @@ sha256 = "1hl227bmjch0vq7n47mwydkyxnd6wkbz9klk3c4398qmc2qxm5kn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/salt-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/salt-mode"; sha256 = "1r5k7022vxgj3p5l16y839lff85z0m9hpifq59knij61g9hxadsp"; name = "salt-mode"; }; @@ -51249,7 +51715,7 @@ sane-term = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "sane-term"; - version = "20150917.1802"; + version = "20150917.1902"; src = fetchFromGitHub { owner = "adamrt"; repo = "sane-term"; @@ -51257,7 +51723,7 @@ sha256 = "1r6b6n2bzjznjfimgcm0vnmln4sbyasm4icmdgbpzahdmbkfzq3w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sane-term"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/sane-term"; sha256 = "0iz63b62x5jrz7c23i850634k4bk73kg1h4wj1ravx3wlgvzs8y8"; name = "sane-term"; }; @@ -51270,15 +51736,15 @@ sass-mode = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, haml-mode, lib, melpaBuild }: melpaBuild { pname = "sass-mode"; - version = "20150508.2212"; + version = "20160506.2345"; src = fetchFromGitHub { owner = "nex3"; repo = "sass-mode"; - rev = "3da9040680880743fddb55a965ecd150d1039df6"; - sha256 = "0srz4j7484v5h7hmdlyrcl2k27jhy414689wphbbyj63rvg321cm"; + rev = "7f0df85fd1b90e40e019a0f2e4ea6661169ceb65"; + sha256 = "1zvsv2j3hqrj9vlm4mspfnm9nwah0lhizamyx43xykd7xk0z8hkw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sass-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/sass-mode"; sha256 = "1byjk5zpzjlyiwkp780c4kh7s9l56y686sxji89wc59d19rp8800"; name = "sass-mode"; }; @@ -51291,15 +51757,15 @@ sauron = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "sauron"; - version = "20160101.424"; + version = "20160501.1345"; src = fetchFromGitHub { owner = "djcb"; repo = "sauron"; - rev = "7d8fef2755ed91ceffdf88580bb0a007a34f09cc"; - sha256 = "0y6a0z2ydc5li3990mfhcgz5mrb89sj8s8dvdgmnv8pgdhn1xmb6"; + rev = "3847b4be16ec3ba9675a230dab5adf029174b3cf"; + sha256 = "169mbr83zlawjnn2p9yzx7rrg33bb78gb1i7lklagn73ca2pr0b5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sauron"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/sauron"; sha256 = "01fk1xfh7r16fb1xg5ibbs7gci9dja49msdlf7964hiq7pnnhxgb"; name = "sauron"; }; @@ -51311,13 +51777,13 @@ }) {}; save-load-path = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "save-load-path"; - version = "20131228.1352"; + version = "20131228.1452"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/save-load-path.el"; sha256 = "1p8p5b85sdnq45rdjq5wcr3xz7c22mr5bz41a21mkabc4j4fvd3z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/save-load-path"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/save-load-path"; sha256 = "01hm1rm9x3bqs6vf65l4xv2n4ramh3qwgmrp632fyfz5dlrvbssi"; name = "save-load-path"; }; @@ -51330,7 +51796,7 @@ save-visited-files = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "save-visited-files"; - version = "20151021.1243"; + version = "20151021.1343"; src = fetchFromGitHub { owner = "nflath"; repo = "save-visited-files"; @@ -51338,7 +51804,7 @@ sha256 = "00jvl1npc889f3isi7cbdzwvf9x4rq67zgl7br8npxf8jlc2mwhm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/save-visited-files"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/save-visited-files"; sha256 = "1pmjz27dlp5yrihgsy8q1bwbhkkj3sn7d79ccvljvzxg5jn1grkd"; name = "save-visited-files"; }; @@ -51350,13 +51816,13 @@ }) {}; savekill = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "savekill"; - version = "20140417.2134"; + version = "20140417.2234"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/savekill.el"; sha256 = "1qfq83cb4qixdl15j28rlslkq6g88ig55ydg747jqb3dqyp3qaah"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/savekill"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/savekill"; sha256 = "1l14p6wkzfhlqxnd9fpw123vg9q5k20ld7rciyzbfdb99pk9z02i"; name = "savekill"; }; @@ -51369,15 +51835,15 @@ sbt-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, scala-mode2 }: melpaBuild { pname = "sbt-mode"; - version = "20160316.220"; + version = "20160505.411"; src = fetchFromGitHub { owner = "ensime"; repo = "emacs-sbt-mode"; - rev = "f1514212d86643c4bf1657ff6682b66472a69362"; - sha256 = "0fi07445hyfifcfzxim9947mjcdj5m40minaq89mrxpfndj9jk8l"; + rev = "58d614a7ac3cae6b91b9f80b911daef482b41f6a"; + sha256 = "0czrvhh2yg54pwxkx5f5lwcybb2dkq57aiahjv527q6zmja8fr5m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sbt-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/sbt-mode"; sha256 = "0v0n70czgkdijnw5jd4na41vlrmqcshvr8gdpv0bv55ilqhiihc8"; name = "sbt-mode"; }; @@ -51390,15 +51856,15 @@ scad-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "scad-mode"; - version = "20160205.1243"; + version = "20160205.1343"; src = fetchFromGitHub { owner = "openscad"; repo = "openscad"; - rev = "50441e85a2d0920af6a1a886b97edc001f4dc0ae"; - sha256 = "0051bgs1lfdsy84b4j1746clslc3fmn0nsnig3f8ks9ndfav3rj4"; + rev = "3e614dec95cdff56f9b8a07d8148366006e49037"; + sha256 = "0nyl3j2v3j9wvm3ljm0jic1zy2mhjb9cqzr5f7qflyrnq87mvc5h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/scad-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/scad-mode"; sha256 = "04b4y9jks8sslgmkx54fds8fba9xv54z0cfab52dy99v1301ms3k"; name = "scad-mode"; }; @@ -51411,7 +51877,7 @@ scad-preview = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, scad-mode }: melpaBuild { pname = "scad-preview"; - version = "20160206.736"; + version = "20160206.836"; src = fetchFromGitHub { owner = "zk-phi"; repo = "scad-preview"; @@ -51419,7 +51885,7 @@ sha256 = "13x00dls59zshz69260pnqmx6ydrjg8p2jdjn1rzgf5dsmwfy3sc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/scad-preview"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/scad-preview"; sha256 = "0wcd2r60ibbc2mzpq8fvyfc1fy172rf9kzdj51p4jyl51r76i86z"; name = "scad-preview"; }; @@ -51432,7 +51898,7 @@ scala-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "scala-mode"; - version = "20141205.1451"; + version = "20141205.1551"; src = fetchFromGitHub { owner = "scala"; repo = "scala-tool-support"; @@ -51440,7 +51906,7 @@ sha256 = "0qd3yi2as30kacr74vbzvyq97684s8sz585z30d47shqcvp6l1a6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/scala-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/scala-mode"; sha256 = "1vbgphmvvsj5jl8f78rpsidlmlgyp1kq3nkmziqhwkcq8hfywssm"; name = "scala-mode"; }; @@ -51453,7 +51919,7 @@ scala-mode2 = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "scala-mode2"; - version = "20151226.1248"; + version = "20151226.1348"; src = fetchFromGitHub { owner = "ensime"; repo = "emacs-scala-mode"; @@ -51461,8 +51927,8 @@ sha256 = "07928cll5n3s7xx75nfbil73zilrhdfh19hp4s75c7hh8sdwmig6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/scala-mode2"; - sha256 = "0rnkln6jwwqc968w3qpc6zjjv8ylw0w6c2hsjpq2slja3jn5khch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/scala-mode2"; + sha256 = "169h6x51s4xzxamyhsqnd3h960gjfgdigc2pp1220dlpcp9hlzg1"; name = "scala-mode2"; }; packageRequires = []; @@ -51474,7 +51940,7 @@ scala-outline-popup = callPackage ({ dash, fetchFromGitHub, fetchurl, flx-ido, lib, melpaBuild, popup, scala-mode2 }: melpaBuild { pname = "scala-outline-popup"; - version = "20150702.1137"; + version = "20150702.1237"; src = fetchFromGitHub { owner = "ancane"; repo = "scala-outline-popup"; @@ -51482,7 +51948,7 @@ sha256 = "1wf3d5spvi9kr4q2w7f18g1bm10fh2zbh4sdbqkf78afv6sbqzrz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/scala-outline-popup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/scala-outline-popup"; sha256 = "1fq0k6l57wkya1ycm4cc190kg90j2k9clnl0sc70achp4i47qbk7"; name = "scala-outline-popup"; }; @@ -51495,7 +51961,7 @@ scf-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "scf-mode"; - version = "20151121.2048"; + version = "20151121.2148"; src = fetchFromGitHub { owner = "lewang"; repo = "scf-mode"; @@ -51503,7 +51969,7 @@ sha256 = "0m7hanpc2skmsz783m0212xd10y31gkj5n6w8gx9s989l1y4i1b8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/scf-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/scf-mode"; sha256 = "0acbrw94q6cr9b29mz1wcbwi1g90pbm7ly2xbaqb2g8081r5rgg0"; name = "scf-mode"; }; @@ -51516,15 +51982,15 @@ scheme-complete = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "scheme-complete"; - version = "20160408.849"; + version = "20160502.1939"; src = fetchFromGitHub { owner = "ashinn"; repo = "scheme-complete"; - rev = "3f49e2935d89e387ce6649c9adc764d15eecee3a"; - sha256 = "0555rmhcm9cvm0wljcbz3j04qwgl9cnjmcz324kwlv94ph5gp752"; + rev = "a85aa166633f1d0fac936f727726ee6014d6791b"; + sha256 = "0kd5g76vpxip5ijddaqvp3w3lxr9hy9vaiphrcvvlqjr3xwignnc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/scheme-complete"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/scheme-complete"; sha256 = "1mp9gssd2fx3ra2bjd7w311hwmflhybr5x574qb12603gjkgrp1h"; name = "scheme-complete"; }; @@ -51537,7 +52003,7 @@ scheme-here = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "scheme-here"; - version = "20141028.218"; + version = "20141028.318"; src = fetchFromGitHub { owner = "hiddenlotus"; repo = "scheme-here"; @@ -51545,7 +52011,7 @@ sha256 = "09cvrphrnbj8avnlqqv6scjz17cn6zm6mzghjn3vxfr4hql66rir"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/scheme-here"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/scheme-here"; sha256 = "04lmkf3zc396anlp9s9irdkqavsc0lzlpzprswd4r2kp4xp7kcks"; name = "scheme-here"; }; @@ -51558,7 +52024,7 @@ scion = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "scion"; - version = "20130315.755"; + version = "20130315.855"; src = fetchFromGitHub { owner = "nominolo"; repo = "scion"; @@ -51566,7 +52032,7 @@ sha256 = "0ark720g0nrdqri5bjdpss6kn6k3hz3w3zdvy334wws05mkb17y4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/scion"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/scion"; sha256 = "17qmc7fpvbamqkzyk8jspp2i0nw93iya4iwddvas7vdpjy7mk81d"; name = "scion"; }; @@ -51579,7 +52045,7 @@ sclang-extensions = callPackage ({ auto-complete, dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "sclang-extensions"; - version = "20131117.1639"; + version = "20131117.1739"; src = fetchFromGitHub { owner = "chrisbarrett"; repo = "sclang-extensions"; @@ -51587,7 +52053,7 @@ sha256 = "0v36zd8lnsbc7jvnhv5pidfxabq2qqmwg1nm2jdxfj6vvcg3vx0x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sclang-extensions"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/sclang-extensions"; sha256 = "00nirxawsngvlx7bmf5hqg2wk0l1v5pi09r6phzd0q8gyq3kmbbn"; name = "sclang-extensions"; }; @@ -51600,7 +52066,7 @@ sclang-snippets = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }: melpaBuild { pname = "sclang-snippets"; - version = "20130513.251"; + version = "20130513.351"; src = fetchFromGitHub { owner = "ptrv"; repo = "sclang-snippets"; @@ -51608,7 +52074,7 @@ sha256 = "0vbcghgapwdf3jgjnjdla17dhf5mkmwapz4a8fmlr7sw1wqvj857"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sclang-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/sclang-snippets"; sha256 = "0q1bh316v737a0hm9afijk1spvg144cgrf45jm0bpd60zhiv7bb2"; name = "sclang-snippets"; }; @@ -51621,7 +52087,7 @@ scpaste = callPackage ({ fetchFromGitHub, fetchurl, htmlize, lib, melpaBuild }: melpaBuild { pname = "scpaste"; - version = "20151208.1935"; + version = "20151208.2035"; src = fetchFromGitHub { owner = "technomancy"; repo = "scpaste"; @@ -51629,7 +52095,7 @@ sha256 = "1jgg116rhhgs5qrngrmqi8ir7yj1h470f57dc7fyijw0ly5mp6ii"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/scpaste"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/scpaste"; sha256 = "02dqmx6v3jxdn5yz1z74624sc6sz2bm4qjyi78w9akhp2jplwlk1"; name = "scpaste"; }; @@ -51642,7 +52108,7 @@ scratch = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "scratch"; - version = "20120830.1228"; + version = "20120830.1328"; src = fetchFromGitHub { owner = "ieure"; repo = "scratch-el"; @@ -51650,7 +52116,7 @@ sha256 = "0ykhr24vpx3byn2n346nqqvmwcg34hk22s3lpdx7lpnkrn5z41aq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/scratch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/scratch"; sha256 = "1c6vxpd9c24d2flzwgvzqz0wr70xzqqs3f59pp897h0f7j91im5d"; name = "scratch"; }; @@ -51663,7 +52129,7 @@ scratch-ext = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "scratch-ext"; - version = "20140103.2316"; + version = "20140104.16"; src = fetchFromGitHub { owner = "kyanagi"; repo = "scratch-ext-el"; @@ -51671,7 +52137,7 @@ sha256 = "0ng0by647r49mia7vmjqc97gwlwgs8kmaz0lw2y54jdz8m0bbngp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/scratch-ext"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/scratch-ext"; sha256 = "031wxz10k1q4bi5hywhcw1vzi41d5pv5hc09x8jk9s5nzyssvc0y"; name = "scratch-ext"; }; @@ -51684,7 +52150,7 @@ scratch-log = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "scratch-log"; - version = "20141115.143"; + version = "20141115.243"; src = fetchFromGitHub { owner = "mori-dev"; repo = "scratch-log"; @@ -51692,7 +52158,7 @@ sha256 = "030mcq0cmamizvra8jh2x76f71g5apiavwb10c28j62rl0r5bisk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/scratch-log"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/scratch-log"; sha256 = "1yp3p0dzhmqrd0krqii3x79k4zc3p59148cijhk6my4n1xqnhs69"; name = "scratch-log"; }; @@ -51705,7 +52171,7 @@ scratch-message = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "scratch-message"; - version = "20160323.1546"; + version = "20160323.1646"; src = fetchFromGitHub { owner = "thisirs"; repo = "scratch-message"; @@ -51713,7 +52179,7 @@ sha256 = "1qic0saz5pflgaf48sqsnw18y9amfkkflf8c534hdd053w77h8qh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/scratch-message"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/scratch-message"; sha256 = "1dl9d4gvicwnb662ir9azywjmmm7xv4d0sz42z7mmwy8hl9hi91b"; name = "scratch-message"; }; @@ -51726,7 +52192,7 @@ scratch-palette = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, popwin }: melpaBuild { pname = "scratch-palette"; - version = "20150225.242"; + version = "20150225.342"; src = fetchFromGitHub { owner = "zk-phi"; repo = "scratch-palette"; @@ -51734,7 +52200,7 @@ sha256 = "00b4r8bqlxc29k18vig0164d5c9fp5bp5q26d28lwr4f0s4a71d2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/scratch-palette"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/scratch-palette"; sha256 = "0m6hc2amwnnii4y189kkridhapl9jipkmadvrmwvspgy3lxhlafs"; name = "scratch-palette"; }; @@ -51747,7 +52213,7 @@ scratch-pop = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, popwin }: melpaBuild { pname = "scratch-pop"; - version = "20150820.339"; + version = "20150820.439"; src = fetchFromGitHub { owner = "zk-phi"; repo = "scratch-pop"; @@ -51755,7 +52221,7 @@ sha256 = "1yvmfiv1s83r0jcxzbxyrx3b263d73lbap6agansmrhkxp914xr1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/scratch-pop"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/scratch-pop"; sha256 = "0s7g1fbnc5hgz8gqmp1lynj5g7vvxisj7scxx5wil9qpn2zyggq1"; name = "scratch-pop"; }; @@ -51768,7 +52234,7 @@ scratches = callPackage ({ dash, f, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "scratches"; - version = "20151005.2316"; + version = "20151006.16"; src = fetchFromGitHub { owner = "cheunghy"; repo = "scratches"; @@ -51776,7 +52242,7 @@ sha256 = "10hmy0p4pkrzvvyisk4rjc6hqqyk2sir1rszqgmkhrdywl010vlc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/scratches"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/scratches"; sha256 = "0409v1wi10q48rrh8iib6dw9icmswfrpjx9x7xcma994z080d2fy"; name = "scratches"; }; @@ -51788,13 +52254,13 @@ }) {}; screenshot = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "screenshot"; - version = "20120509.605"; + version = "20120509.705"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/screenshot.el"; sha256 = "0q7yxaaa0fic4d2xwr0qk28clkinwz4xvw3wf8dv1g322s0xx2cw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/screenshot"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/screenshot"; sha256 = "0aw2343as38y26r2g7wpn1rq1n6xpw4y5c7ir8qh1crkc1y513hs"; name = "screenshot"; }; @@ -51807,7 +52273,7 @@ scss-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "scss-mode"; - version = "20150107.1600"; + version = "20150107.1700"; src = fetchFromGitHub { owner = "antonj"; repo = "scss-mode"; @@ -51815,7 +52281,7 @@ sha256 = "113pi7nsaksaacy74ngbvrvr6qcl7199xy662nj58bz5307yi9q0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/scss-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/scss-mode"; sha256 = "1g27xnp6bjaicxjlb9m0njc6fg962j3hlvvzmxvmyk7gsdgcgpkv"; name = "scss-mode"; }; @@ -51828,7 +52294,7 @@ search-web = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "search-web"; - version = "20150312.603"; + version = "20150312.703"; src = fetchFromGitHub { owner = "tomoya"; repo = "search-web.el"; @@ -51836,7 +52302,7 @@ sha256 = "08yc67a4ji7z8s0zh500wiscziqsxi92i1d33fjla2mcr8sxxn0i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/search-web"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/search-web"; sha256 = "0qqx9l8dn1as4gqpq80jfacn6lz0132m91pjzxv0fx6al2iz0m36"; name = "search-web"; }; @@ -51849,7 +52315,7 @@ searchq = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "searchq"; - version = "20150829.711"; + version = "20150829.811"; src = fetchFromGitHub { owner = "boyw165"; repo = "searchq"; @@ -51857,7 +52323,7 @@ sha256 = "0zs08vxmjb3y4dnfq6djnrhmkgyhhwd5zylrjisrd4y7f089fyh4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/searchq"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/searchq"; sha256 = "0flsc07v887pm62mslrv7zqnhl62l6348nkm77mizm1592q3kjgr"; name = "searchq"; }; @@ -51870,7 +52336,7 @@ seclusion-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "seclusion-mode"; - version = "20121118.1753"; + version = "20121118.1853"; src = fetchFromGitHub { owner = "dleslie"; repo = "seclusion-mode"; @@ -51878,7 +52344,7 @@ sha256 = "15cjhwjiwmrfzmr74hbw5s92si2qdb8i97nmkbsgkj3444rxg239"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/seclusion-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/seclusion-mode"; sha256 = "0ff10x6yr37vpp6ffbk1nb027lgmrydwjrb332fskwlf3xmy6v0m"; name = "seclusion-mode"; }; @@ -51890,13 +52356,13 @@ }) {}; second-sel = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "second-sel"; - version = "20151231.1753"; + version = "20151231.1853"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/second-sel.el"; sha256 = "143vg6z3aa0znmsx88r675vv5g2c13giz25dcbzazsp4wcr46wvq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/second-sel"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/second-sel"; sha256 = "1nzy5ms5qf5big507kg3z5m6d6zgnsv2fswn359r2j59cval3fvr"; name = "second-sel"; }; @@ -51909,7 +52375,7 @@ seeing-is-believing = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "seeing-is-believing"; - version = "20151010.1229"; + version = "20151010.1329"; src = fetchFromGitHub { owner = "jcinnamond"; repo = "seeing-is-believing"; @@ -51917,7 +52383,7 @@ sha256 = "19p3zp4cj7ik2gwzc5k6klqc4b8jc2hvm80yhczc5b7k223gp2bv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/seeing-is-believing"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/seeing-is-believing"; sha256 = "05aja5xycb3kpmxyi234l50h98f5m1fil6ll4f2xkpxwv31ba5rb"; name = "seeing-is-believing"; }; @@ -51930,7 +52396,7 @@ seethru = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, shadchen }: melpaBuild { pname = "seethru"; - version = "20150218.1229"; + version = "20150218.1329"; src = fetchFromGitHub { owner = "Benaiah"; repo = "seethru"; @@ -51938,7 +52404,7 @@ sha256 = "0qd462qbqdx53xh3ddf76chiljxf6s43r28v2ix85gsig7nm5pgr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/seethru"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/seethru"; sha256 = "1lcwslkki9s15xr2dmh2iic4ax8ia0j20hjnjmkv612wv04b806v"; name = "seethru"; }; @@ -51951,7 +52417,7 @@ sekka = callPackage ({ cl-lib ? null, concurrent, fetchFromGitHub, fetchurl, lib, melpaBuild, popup }: melpaBuild { pname = "sekka"; - version = "20150708.659"; + version = "20150708.759"; src = fetchFromGitHub { owner = "kiyoka"; repo = "sekka"; @@ -51959,7 +52425,7 @@ sha256 = "1as3llcs7jgcw9pafz4mbfml1cqd1fw8yl64bb4467nmhq2p18p7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sekka"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/sekka"; sha256 = "1jj4ly9p7m3xvb31nfn171lbpm9y70y8cbf8p24w0fhv665dx0cp"; name = "sekka"; }; @@ -51972,7 +52438,7 @@ select-themes = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "select-themes"; - version = "20160220.1906"; + version = "20160220.2006"; src = fetchFromGitHub { owner = "jasonm23"; repo = "emacs-select-themes"; @@ -51980,7 +52446,7 @@ sha256 = "1c9yv1kjcd0jrzgw99q9p4kzj980f261mjcsggbcw806wb0iw1xn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/select-themes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/select-themes"; sha256 = "18ydv7240vcqppg1i7n8sy18hy0lhpxz17947kxs7mvj4rl4wd84"; name = "select-themes"; }; @@ -51990,10 +52456,31 @@ license = lib.licenses.free; }; }) {}; + selected = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "selected"; + version = "20160428.337"; + src = fetchFromGitHub { + owner = "Kungsgeten"; + repo = "selected.el"; + rev = "4e9246772168d53378882d8cce0962d4b9b6a583"; + sha256 = "045vvwz4adrbzxshq8dq61rwws219fpc28xnxdhaj8v622bj87y2"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/selected"; + sha256 = "0nvrfymb7wd5lcyfpxzh0rc0l3qcwrvh0l32ag7mgs7jzgvnphnx"; + name = "selected"; + }; + packageRequires = []; + meta = { + homepage = "https://melpa.org/#/selected"; + license = lib.licenses.free; + }; + }) {}; selectric-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "selectric-mode"; - version = "20151201.918"; + version = "20151201.1018"; src = fetchFromGitHub { owner = "rbanffy"; repo = "selectric-mode"; @@ -52001,7 +52488,7 @@ sha256 = "18xdkisxvdizsk51pnyimp9mwc6k9cpcxqr5hgndkz9q97p5dp79"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/selectric-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/selectric-mode"; sha256 = "1k4l0lr68rqyi37wvqp1cnfci6jfkz0gvrd1hwbgx04cjgmz56n4"; name = "selectric-mode"; }; @@ -52014,7 +52501,7 @@ semi = callPackage ({ fetchFromGitHub, fetchurl, flim, lib, melpaBuild }: melpaBuild { pname = "semi"; - version = "20160301.900"; + version = "20160301.1000"; src = fetchFromGitHub { owner = "wanderlust"; repo = "semi"; @@ -52022,7 +52509,7 @@ sha256 = "0x4n2d7jsadwknscnwj64s5320wbj4pc0zrcm2c8xfwwgr9wl47k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/semi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/semi"; sha256 = "01wk3lgln5lac65hp6v83d292bdk7544z23xa1v6a756nhybwv25"; name = "semi"; }; @@ -52035,7 +52522,7 @@ sendto = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "sendto"; - version = "20160425.750"; + version = "20160425.850"; src = fetchFromGitHub { owner = "lujun9972"; repo = "sendto.el"; @@ -52043,7 +52530,7 @@ sha256 = "13qqprxz87cv3sjlq5hj0jp0qcfm3djfgasga8cc84ykrcc47p9f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sendto"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/sendto"; sha256 = "00ifasqpmggr4bhdyymzr215840y0ayfnfp0mh7wj99mr6f3zfq0"; name = "sendto"; }; @@ -52056,7 +52543,7 @@ sensitive = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, sequences }: melpaBuild { pname = "sensitive"; - version = "20131015.835"; + version = "20131015.935"; src = fetchFromGitHub { owner = "timvisher"; repo = "sensitive.el"; @@ -52064,7 +52551,7 @@ sha256 = "0g4jfcc5k26yh192bmmxnim9mqv993v2jjd9g9ssvnd42ihpx1n3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sensitive"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/sensitive"; sha256 = "0v988k0x3mdp7ank2ihghphh8sanvv96s4sg6pnszg5hczak1vr3"; name = "sensitive"; }; @@ -52077,13 +52564,13 @@ sentence-highlight = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "sentence-highlight"; - version = "20121026.950"; + version = "20121026.1050"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/sentence-highlight.el"; sha256 = "01qj57zpqpr4rxk9bsx828c7baac1xaa58cz22fncirdx00svn2k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sentence-highlight"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/sentence-highlight"; sha256 = "16kh6567hb9lczh8zpqwbzz5bikg2fsabifhhky8qwxp4dy07v9m"; name = "sentence-highlight"; }; @@ -52096,7 +52583,7 @@ sentence-navigation = callPackage ({ ample-regexps, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "sentence-navigation"; - version = "20150914.2346"; + version = "20150915.46"; src = fetchFromGitHub { owner = "noctuid"; repo = "emacs-sentence-navigation"; @@ -52104,7 +52591,7 @@ sha256 = "0ikiv12ahndvk5w9pdayqlmafwj8d1vkcshfnqmgy6ykqbcdpqk6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sentence-navigation"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/sentence-navigation"; sha256 = "1p3ch1ab06v038h130fsxpbq45d1yadl67i2ih4l4fh3xah5997m"; name = "sentence-navigation"; }; @@ -52117,7 +52604,7 @@ seoul256-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "seoul256-theme"; - version = "20150714.1735"; + version = "20150714.1835"; src = fetchFromGitHub { owner = "ChrisDavison"; repo = "seoul256.el"; @@ -52125,7 +52612,7 @@ sha256 = "15vmd1qmj8a6a5mmvdcnbav6mi5rhrp39m85idzv02zm0x9x6lyc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/seoul256-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/seoul256-theme"; sha256 = "0mgyq725x5hmhs3h8v5macv8bfkginjghhwr9kli60vdb4skgjvp"; name = "seoul256-theme"; }; @@ -52138,7 +52625,7 @@ sequences = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "sequences"; - version = "20130908.1322"; + version = "20130908.1422"; src = fetchFromGitHub { owner = "timvisher"; repo = "sequences.el"; @@ -52146,7 +52633,7 @@ sha256 = "1np6ip28ksms6fig67scwvwj43zgblny50ccvz8aclbl0z8nxswl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sequences"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/sequences"; sha256 = "12wnkywkmxfk2sx40h90k53d5qmc8hiky5vhlyf0ws3n39zvhplh"; name = "sequences"; }; @@ -52159,13 +52646,13 @@ sequential-command = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "sequential-command"; - version = "20151207.1603"; + version = "20151207.1703"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/sequential-command.el"; sha256 = "0vg8rqzzi29swznhra2mnf45czr2vb77dpcxn3j0fi7gynx3wcwk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sequential-command"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/sequential-command"; sha256 = "03qybacgy5fs3lam73x0rds4f68s173mhbah6rr97272nikd50v1"; name = "sequential-command"; }; @@ -52178,7 +52665,7 @@ servant = callPackage ({ ansi, commander, dash, epl, f, fetchFromGitHub, fetchurl, lib, melpaBuild, s, shut-up, web-server }: melpaBuild { pname = "servant"; - version = "20140216.619"; + version = "20140216.719"; src = fetchFromGitHub { owner = "cask"; repo = "servant"; @@ -52186,7 +52673,7 @@ sha256 = "15lx6qvmq3vp84ys8dzbx1nzxcnzlq41whawc2yhrnd1dbq4mv2d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/servant"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/servant"; sha256 = "0h8xsg37cvc5r8vkclf7d3gbf6gh4k5pmbiyhwpkbrxwjyl1sl21"; name = "servant"; }; @@ -52199,7 +52686,7 @@ serverspec = callPackage ({ dash, f, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, s }: melpaBuild { pname = "serverspec"; - version = "20150623.655"; + version = "20150623.755"; src = fetchFromGitHub { owner = "k1LoW"; repo = "emacs-serverspec"; @@ -52207,7 +52694,7 @@ sha256 = "1h58q41wixjlapia1ggf83jxcllq7492k55mc0fq7hbx3hw1q1y2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/serverspec"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/serverspec"; sha256 = "001d57yd0wmz4d7qmhnanac8g29wls0sqw194003hrgirakg82id"; name = "serverspec"; }; @@ -52220,7 +52707,7 @@ session = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "session"; - version = "20120510.1900"; + version = "20120510.2000"; src = fetchFromGitHub { owner = "emacsorphanage"; repo = "session"; @@ -52228,7 +52715,7 @@ sha256 = "0sp952abz7dkq8b8kkzzmnwnkq5w15zsx5dr3h8lzxb92lnank9v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/session"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/session"; sha256 = "0fghxbnf1d5iyrx1q8xd0lbw9nvkdgg2v2f89j6apnawisrsbhwx"; name = "session"; }; @@ -52241,7 +52728,7 @@ seti-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "seti-theme"; - version = "20150314.322"; + version = "20150314.422"; src = fetchFromGitHub { owner = "caisah"; repo = "seti-theme"; @@ -52249,7 +52736,7 @@ sha256 = "18igxblmrbxwhd2d68cz1bpj4524djh2dw2rwhxlij76f9v805wn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/seti-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/seti-theme"; sha256 = "1mwkx3hynabwr0a2rm1bh91h7xf38a11h1fb6ys8s3mnr68csd9z"; name = "seti-theme"; }; @@ -52262,7 +52749,7 @@ sexp-move = callPackage ({ fetchFromGitLab, fetchurl, lib, melpaBuild }: melpaBuild { pname = "sexp-move"; - version = "20150915.1230"; + version = "20150915.1330"; src = fetchFromGitLab { owner = "elzair"; repo = "sexp-move"; @@ -52270,7 +52757,7 @@ sha256 = "11h5z2gmwq07c4gqzj2c9apksvqk3k8kpbb9kg78bbif2xfajr3m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sexp-move"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/sexp-move"; sha256 = "0lcxmr2xqh8z7xinxbv1wyrh786zlahhhj5nnbv83i8m23i3ymmd"; name = "sexp-move"; }; @@ -52283,15 +52770,15 @@ shackle = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "shackle"; - version = "20160102.1701"; + version = "20160102.1801"; src = fetchFromGitHub { owner = "wasamasa"; repo = "shackle"; - rev = "d8fdd8549724db7416460af3cb655dceacbe2abd"; - sha256 = "1nfvb2vmbdqfyj25hvwrz7ajb4ilxgrvd3rbf3im3mb3skic1wn9"; + rev = "4e58eb646a1389b8adc94c774b788473416603b6"; + sha256 = "0wc8jsqc76dm4sp275isvlyp0mx5fym03pfl5zzbyakdhg60cv7l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/shackle"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/shackle"; sha256 = "159z0cwg7afrmym0xk902d8z093sqv39jig25ds7z4a224yrv5w6"; name = "shackle"; }; @@ -52304,7 +52791,7 @@ shadchen = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "shadchen"; - version = "20141102.1239"; + version = "20141102.1339"; src = fetchFromGitHub { owner = "VincentToups"; repo = "shadchen-el"; @@ -52312,7 +52799,7 @@ sha256 = "0phivbhjdw76gzrx35rp0zybqfb0fdy2hjllf72qf1r0r5gxahl8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/shadchen"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/shadchen"; sha256 = "1r1mfmv4cdlc8kzjiqz81kpqdrwbnyciwdgg6n5x0yi4apwpvnl4"; name = "shadchen"; }; @@ -52325,7 +52812,7 @@ shader-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "shader-mode"; - version = "20151030.904"; + version = "20151030.1004"; src = fetchFromGitHub { owner = "midnightSuyama"; repo = "shader-mode"; @@ -52333,7 +52820,7 @@ sha256 = "0l094nrrvan8v6j1xdgb51cbjvwicvxih29b7iyga13adb9dy9j4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/shader-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/shader-mode"; sha256 = "12y84fa1wc82js53rpadaysmbshhqf6wb97889qkksx19n3xmb9g"; name = "shader-mode"; }; @@ -52346,7 +52833,7 @@ shakespeare-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "shakespeare-mode"; - version = "20150708.912"; + version = "20150708.1012"; src = fetchFromGitHub { owner = "CodyReichert"; repo = "shakespeare-mode"; @@ -52354,7 +52841,7 @@ sha256 = "1y9bgpz96zgjw5fvq2ma7q6392i9j1rrj5axp085ccgn7w24mii7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/shakespeare-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/shakespeare-mode"; sha256 = "1i9fr9l3x7pwph654hqd8s74swy5gmn3wzs85a2ibmpcjq8mz9rd"; name = "shakespeare-mode"; }; @@ -52367,7 +52854,7 @@ shampoo = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "shampoo"; - version = "20131230.419"; + version = "20131230.519"; src = fetchFromGitHub { owner = "dmatveev"; repo = "shampoo-emacs"; @@ -52375,7 +52862,7 @@ sha256 = "15a8gs4lrqxn0jyfw16rc6vm7z1i10pzzlnp30x6nly9a7xra47x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/shampoo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/shampoo"; sha256 = "01ssgw4cnnx8d86g3r1d5hqcib4qyhmpqvcvx47xs7zh0jscps61"; name = "shampoo"; }; @@ -52387,13 +52874,13 @@ }) {}; shell-command = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "shell-command"; - version = "20090621.832"; + version = "20090621.932"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/shell-command.el"; sha256 = "0jr5sbmg4zrx2dfdrajh2didm6dxx9ri5ib9qnwhc1jlppinyi7l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/shell-command"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/shell-command"; sha256 = "1jxn721i4s1k5x1qldiynnl5khsl22x9k3whm698nzv8m786spxl"; name = "shell-command"; }; @@ -52406,7 +52893,7 @@ shell-current-directory = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "shell-current-directory"; - version = "20140101.1754"; + version = "20140101.1854"; src = fetchFromGitHub { owner = "metaperl"; repo = "shell-current-directory"; @@ -52414,7 +52901,7 @@ sha256 = "1w42j5cdddr0riz1xjq3wiz5i9f71i9jdzd1l92ir0mlj05wjyic"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/shell-current-directory"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/shell-current-directory"; sha256 = "0bj2gs96ivm5x8l7gwvfckyalr1amh4cb1v2dbl323zmrqddhgkd"; name = "shell-current-directory"; }; @@ -52427,7 +52914,7 @@ shell-here = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "shell-here"; - version = "20150728.1204"; + version = "20150728.1304"; src = fetchFromGitHub { owner = "ieure"; repo = "shell-here"; @@ -52435,7 +52922,7 @@ sha256 = "0z04z07r7p5p05zhaka37s48y82hg2dbk0ynap4inph3frn4yyfl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/shell-here"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/shell-here"; sha256 = "0csi70v89bqdpbsizji6c5z0jmkx4x4vk1zfclkpap4dalmxxcsh"; name = "shell-here"; }; @@ -52447,13 +52934,13 @@ }) {}; shell-history = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "shell-history"; - version = "20100504.350"; + version = "20100504.450"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/shell-history.el"; sha256 = "0biqjm0fpd7c7jilgkcwp6c32car05r5akimbcdii3clllavma7r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/shell-history"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/shell-history"; sha256 = "1blad7ggv27qzpai2ib1pmr23ljj8asq880g3d7w8fhqv0p1pjs7"; name = "shell-history"; }; @@ -52466,7 +52953,7 @@ shell-pop = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "shell-pop"; - version = "20160425.954"; + version = "20160425.1054"; src = fetchFromGitHub { owner = "kyagi"; repo = "shell-pop-el"; @@ -52474,7 +52961,7 @@ sha256 = "1ddd32f3k1mqk4h88kn0m9c3xd9y6yszkzm4s23fd6d96daw4smc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/shell-pop"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/shell-pop"; sha256 = "02s17ln0hbi9gy3di8fksp3mqc7d8ahhf5vwyz4vrc1bg77glxw8"; name = "shell-pop"; }; @@ -52487,7 +52974,7 @@ shell-split-string = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "shell-split-string"; - version = "20151224.408"; + version = "20151224.508"; src = fetchFromGitHub { owner = "10sr"; repo = "shell-split-string-el"; @@ -52495,7 +52982,7 @@ sha256 = "16srngml5xmpaxb0wzhx91jil0r0dmn673bwai3lzxrkmjnl748l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/shell-split-string"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/shell-split-string"; sha256 = "1yj1h7za4ylxh2nikj7s1qqlilpsk05x9571a2fymfyznm3iq77m"; name = "shell-split-string"; }; @@ -52508,7 +52995,7 @@ shell-switcher = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "shell-switcher"; - version = "20160112.135"; + version = "20160112.235"; src = fetchFromGitHub { owner = "DamienCassou"; repo = "shell-switcher"; @@ -52516,7 +53003,7 @@ sha256 = "1bcrxq43a45alv6x0wms4d4nykiqz2mzk04kwk5lmf5pw3dqm900"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/shell-switcher"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/shell-switcher"; sha256 = "07g9naiv2jk9jxwjywrbb05dy0pbfdx6g8pkra38rn3vqrjzvhyx"; name = "shell-switcher"; }; @@ -52529,7 +53016,7 @@ shell-toggle = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "shell-toggle"; - version = "20150226.811"; + version = "20150226.911"; src = fetchFromGitHub { owner = "knu"; repo = "shell-toggle.el"; @@ -52537,7 +53024,7 @@ sha256 = "0ssaccdacabpja9nqzhr8x8ggfwmlian7y4p0fa6gvr7qsvjpgr9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/shell-toggle"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/shell-toggle"; sha256 = "1ai0ks7smr8b221j9hmsikswpxqraa9b13fpwv4wwagavnlah446"; name = "shell-toggle"; }; @@ -52550,7 +53037,7 @@ shelldoc = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "shelldoc"; - version = "20151114.2125"; + version = "20151114.2225"; src = fetchFromGitHub { owner = "mhayashi1120"; repo = "Emacs-shelldoc"; @@ -52558,7 +53045,7 @@ sha256 = "1mc7y79h5p9cxqwsl40b1j5la5bm8b70n6fn4rx9wr4bi7rwph5i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/shelldoc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/shelldoc"; sha256 = "1xlp03aaidp7dp8349v8drzhl4lcngvxgdrwwn9cahfqlrvvbbbx"; name = "shelldoc"; }; @@ -52571,7 +53058,7 @@ shelltest-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "shelltest-mode"; - version = "20141227.448"; + version = "20141227.548"; src = fetchFromGitHub { owner = "rtrn"; repo = "shelltest-mode"; @@ -52579,7 +53066,7 @@ sha256 = "0f45q8j9m0ic3l69i7qjhf0l19cprn56fxw61al4xd3wxv4pr9gy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/shelltest-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/shelltest-mode"; sha256 = "1inb0vq34fbwkr0jg4dv2lljag8djggi8kyssrzhfawri50m81nh"; name = "shelltest-mode"; }; @@ -52589,10 +53076,31 @@ license = lib.licenses.free; }; }) {}; + shen-elisp = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "shen-elisp"; + version = "20160501.743"; + src = fetchFromGitHub { + owner = "deech"; + repo = "shen-elisp"; + rev = "c5b27a4cf830234c3e6c5dcd5a2d5876567a95ff"; + sha256 = "1kkf8gv4wa29ns8pp6ijycgnj1099j902dg1ngz5gqvd1y283b61"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/shen-elisp"; + sha256 = "0i6z2icpndv5g5ydmwqskl7vrmdz9qp30l5bw1l7gqr3dippjiyz"; + name = "shen-elisp"; + }; + packageRequires = [ emacs ]; + meta = { + homepage = "https://melpa.org/#/shen-elisp"; + license = lib.licenses.free; + }; + }) {}; shift-number = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "shift-number"; - version = "20160419.1457"; + version = "20160419.1557"; src = fetchFromGitHub { owner = "alezost"; repo = "shift-number.el"; @@ -52600,7 +53108,7 @@ sha256 = "0dlwcifw5mlski0mbvqqgmpb0jgf5i67x04s8yab1sq9rr07is57"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/shift-number"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/shift-number"; sha256 = "1sbzkmd336d0dcdpk29pzk2b5bhlahrn083x62l6m150n2xzxn4p"; name = "shift-number"; }; @@ -52613,7 +53121,7 @@ shift-text = callPackage ({ cl-lib ? null, es-lib, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "shift-text"; - version = "20130831.1155"; + version = "20130831.1255"; src = fetchFromGitHub { owner = "sabof"; repo = "shift-text"; @@ -52621,7 +53129,7 @@ sha256 = "13zsws8gq9a8nfk4yzlvfsvqjh9zbnanmw68rcna93yc5nc634nr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/shift-text"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/shift-text"; sha256 = "1v9zk7ycc8k1qk1cfs2y1knygl686msmlilqy5a7mh0w0z9f3a2i"; name = "shift-text"; }; @@ -52634,7 +53142,7 @@ shimbun = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "shimbun"; - version = "20120718.2238"; + version = "20120718.2338"; src = fetchFromGitHub { owner = "emacsorphanage"; repo = "w3m"; @@ -52642,7 +53150,7 @@ sha256 = "1lgvdaghzj1fzh8p6ans0f62zg1bfp086icbsqmyvbgpgcxia9cs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/shimbun"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/shimbun"; sha256 = "0k54886bh7zxsfnvga3wg3bsij4bixxrah2rrkq1lj0k8ay7nfxh"; name = "shimbun"; }; @@ -52655,15 +53163,15 @@ shm = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "shm"; - version = "20160211.1354"; + version = "20160211.1454"; src = fetchFromGitHub { owner = "chrisdone"; repo = "structured-haskell-mode"; - rev = "84c8464232fa49a36c4fe897afd22ad28ab2e196"; - sha256 = "0xs19xpadxdl1wgapqj6xrscnb4ch6kj1qm3h93kj95x51427afz"; + rev = "587a766bcc66830c7aead59b7463e6ce78ced9ba"; + sha256 = "1gwxrqp95hqbv53hf4ahl2pbgsvhszz73ny4mnp7by24zbp51pzy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/shm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/shm"; sha256 = "1qmp8cc83dcz25xbyqd4987i0d8ywvh16wq2wfs4km3ia8a2vi3c"; name = "shm"; }; @@ -52676,7 +53184,7 @@ shoulda = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "shoulda"; - version = "20140616.1333"; + version = "20140616.1433"; src = fetchFromGitHub { owner = "marcwebbie"; repo = "shoulda.el"; @@ -52684,7 +53192,7 @@ sha256 = "19p47a4hwl6h2w5ay09hjhl4kf7cydwqp8s2iyrx2i0k58az8i8i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/shoulda"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/shoulda"; sha256 = "0lmlhx34nwvn636y2wvw3sprhhh6q3mdg7dzgpjj7ybibvhp1lzk"; name = "shoulda"; }; @@ -52697,7 +53205,7 @@ show-css = callPackage ({ doom, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "show-css"; - version = "20160210.808"; + version = "20160210.908"; src = fetchFromGitHub { owner = "8cylinder"; repo = "showcss-mode"; @@ -52705,7 +53213,7 @@ sha256 = "11kzjm12hbcdzrshq20r20l29k3555np1sva7afqrhgvd239fdq1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/show-css"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/show-css"; sha256 = "0sq15l58macy2affdgbimnchn491fnrqr3bbgn30k3l3xkvkmc7k"; name = "show-css"; }; @@ -52718,7 +53226,7 @@ show-marks = callPackage ({ fetchFromGitHub, fetchurl, fm, lib, melpaBuild }: melpaBuild { pname = "show-marks"; - version = "20130805.949"; + version = "20130805.1049"; src = fetchFromGitHub { owner = "vapniks"; repo = "show-marks"; @@ -52726,7 +53234,7 @@ sha256 = "15vkk7lnnfwgzkiwpqz1l1qpnz2d10l82m10m0prbw03k1zx22c7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/show-marks"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/show-marks"; sha256 = "1jgxdclj88ca106vcvf1k8zbf7iwamy80c2ad8b3myz0f4zscjzb"; name = "show-marks"; }; @@ -52738,13 +53246,13 @@ }) {}; showkey = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "showkey"; - version = "20151231.1759"; + version = "20151231.1859"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/showkey.el"; sha256 = "0pq88kz5h0hzgfk8fyf3lppxalmadg5czbik824bpykp9l9gnf1m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/showkey"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/showkey"; sha256 = "1m280ll07i5c6s4w0s227jygdlpvd87dq45039v0sljyxm4bfrsv"; name = "showkey"; }; @@ -52756,13 +53264,13 @@ }) {}; showtip = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "showtip"; - version = "20080329.2159"; + version = "20080329.2259"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/showtip.el"; sha256 = "01ibg36lvmdk7ac1k0f0r6wyds4rq0wb7gzw26nkiwykn14gxaql"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/showtip"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/showtip"; sha256 = "1fdhdmkvyz1dcy3x0im1iab6yhhh8gqvxmm6ccwr6rl1r1m5zwc8"; name = "showtip"; }; @@ -52775,7 +53283,7 @@ shpec-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "shpec-mode"; - version = "20150530.422"; + version = "20150530.522"; src = fetchFromGitHub { owner = "shpec"; repo = "shpec-mode"; @@ -52783,7 +53291,7 @@ sha256 = "1mizhbwvnsxxjz6m94qziibvhghhp8v8db3wxrq3z9gsaqqkcndn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/shpec-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/shpec-mode"; sha256 = "155hc1nym3fsvflps8d3ixaqw1cafqp97zcaywdppp47n7vj8zjl"; name = "shpec-mode"; }; @@ -52796,7 +53304,7 @@ shrink-whitespace = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "shrink-whitespace"; - version = "20150916.1415"; + version = "20150916.1515"; src = fetchFromGitHub { owner = "jcpetkovich"; repo = "shrink-whitespace.el"; @@ -52804,7 +53312,7 @@ sha256 = "07zzyfibs2c7w4gpvdh9003frznbg7zdnrx0nv8bvn0b68d3yz0m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/shrink-whitespace"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/shrink-whitespace"; sha256 = "12if0000i3rrxcm732layrv2h464wbb4xflbbfc844c83dbx1jmq"; name = "shrink-whitespace"; }; @@ -52817,7 +53325,7 @@ shut-up = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "shut-up"; - version = "20150423.722"; + version = "20150423.822"; src = fetchFromGitHub { owner = "cask"; repo = "shut-up"; @@ -52825,7 +53333,7 @@ sha256 = "00c11s664hwj1l1hw7qshygy3wb6wbd0hn6qqnyq1xr0r87nnhjs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/shut-up"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/shut-up"; sha256 = "1bcqrnnafnimfcg1s7vrgq4cb4rxi5sgpd92jj7xywvkalr3kh26"; name = "shut-up"; }; @@ -52838,7 +53346,7 @@ sibilant-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "sibilant-mode"; - version = "20151119.1545"; + version = "20151119.1645"; src = fetchFromGitHub { owner = "jbr"; repo = "sibilant-mode"; @@ -52846,7 +53354,7 @@ sha256 = "0cjqh6qbbmgxd6zgqnikw6bh8wpjydydkkqs5wcmblpi5awqmnb6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sibilant-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/sibilant-mode"; sha256 = "0jd6dsk93nvwi5yia3623hfc4v6zz4s2n8m1wx9bw8x6kv3h3qbq"; name = "sibilant-mode"; }; @@ -52859,7 +53367,7 @@ sicp = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "sicp"; - version = "20151130.957"; + version = "20151130.1057"; src = fetchFromGitHub { owner = "webframp"; repo = "sicp-info"; @@ -52867,7 +53375,7 @@ sha256 = "102ssiz4sp7y816s1iy8i98c314jbn3sy0v87b0qgpgjiq913ffq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sicp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/sicp"; sha256 = "1q7pbhjk8qgwvj27ianrdbmj98pwf3xv10gmpchh7bypmbyir4wz"; name = "sicp"; }; @@ -52880,7 +53388,7 @@ sift = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "sift"; - version = "20160107.415"; + version = "20160107.515"; src = fetchFromGitHub { owner = "nlamirault"; repo = "sift.el"; @@ -52888,7 +53396,7 @@ sha256 = "1ma6djvhvjai07v1g9a36lfa3nw8zsy6x5vliwcdnkf44gs287ra"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sift"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/sift"; sha256 = "0mv5zk140kjilwvzccj75ym7wlkkqryb532mbsy7i9bs3q7m916d"; name = "sift"; }; @@ -52901,7 +53409,7 @@ signal = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "signal"; - version = "20160424.210"; + version = "20160424.310"; src = fetchFromGitHub { owner = "Mola-T"; repo = "signal"; @@ -52909,7 +53417,7 @@ sha256 = "1n6mjfw655a5q0ifq52yf6nyc0zxcahr47dvxg0p8x8v3f4jskvz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/signal"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/signal"; sha256 = "0pvl5qxi0rjbxkpa8kk1q9vz11i9yjmph42si3n7gmm9kc28pk61"; name = "signal"; }; @@ -52922,7 +53430,7 @@ signature = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "signature"; - version = "20140730.1449"; + version = "20140730.1549"; src = fetchFromGitHub { owner = "pidu"; repo = "signature"; @@ -52930,7 +53438,7 @@ sha256 = "1g4rr7hpy9r3y4vdpv48xpmy8kqvs4j64kvnhnj2rw2wv1grw78j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/signature"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/signature"; sha256 = "11n3id1iiip99lj8c0iffbrf59s2yvmwlhqbf8xzxkhws7vwdl5q"; name = "signature"; }; @@ -52943,7 +53451,7 @@ silkworm-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "silkworm-theme"; - version = "20160217.709"; + version = "20160217.809"; src = fetchFromGitHub { owner = "mswift42"; repo = "silkworm-theme"; @@ -52951,7 +53459,7 @@ sha256 = "0vzkgrc54j4a3g90jxc7vxkqwqi3047gnn7gng65pfar0i76lzlb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/silkworm-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/silkworm-theme"; sha256 = "1zbrjqmhf80qs3i910sixirrv42rxkqdrg2z03gnz1g885gpcn13"; name = "silkworm-theme"; }; @@ -52964,7 +53472,7 @@ simp = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "simp"; - version = "20160315.1124"; + version = "20160315.1224"; src = fetchFromGitHub { owner = "re5et"; repo = "simp"; @@ -52972,7 +53480,7 @@ sha256 = "177bhvynqsdfwwqhhlh1v0pqvscy3xv6hhxi7fb42l5dmsw5b97z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/simp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/simp"; sha256 = "0x4lssjkj3fk9fw603f0sggvcj25iw0zbzsm5c949lhl4a3wvc9c"; name = "simp"; }; @@ -52985,7 +53493,7 @@ simple-call-tree = callPackage ({ anaphora, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "simple-call-tree"; - version = "20160319.1216"; + version = "20160319.1316"; src = fetchFromGitHub { owner = "vapniks"; repo = "simple-call-tree"; @@ -52993,7 +53501,7 @@ sha256 = "0cj4w62b6glz7sfqj08sdlyfnnhy7z1v1gmjkvy1j0fv9i2n2z48"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/simple-call-tree"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/simple-call-tree"; sha256 = "1cbv4frsrwd8d3rg8r4sylwnc1hl3hgh595qwbpx0zd3dp5na2yl"; name = "simple-call-tree"; }; @@ -53006,7 +53514,7 @@ simple-httpd = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "simple-httpd"; - version = "20150430.1955"; + version = "20150430.2055"; src = fetchFromGitHub { owner = "skeeto"; repo = "emacs-web-server"; @@ -53014,7 +53522,7 @@ sha256 = "0jn46fk0ljqs40kz6ngp0sk6hg1334835r2rmagx4qm0mdaqy7p8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/simple-httpd"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/simple-httpd"; sha256 = "1g9m8dx62pql6dqz490pifcli96i5pv6sar18w4lwrfgpfisfz8c"; name = "simple-httpd"; }; @@ -53027,7 +53535,7 @@ simple-mpc = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "simple-mpc"; - version = "20151227.1234"; + version = "20151227.1334"; src = fetchFromGitHub { owner = "jorenvo"; repo = "simple-mpc"; @@ -53035,7 +53543,7 @@ sha256 = "1bnc3ykgf727lc0ajxa8qsx616baljdgav78fkz57irm65dqr18q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/simple-mpc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/simple-mpc"; sha256 = "05x2xyys5mf6k7ndh0l6ykyiygaznb4f8bx3npbhvihrsz9ilf8r"; name = "simple-mpc"; }; @@ -53048,13 +53556,13 @@ simple-plus = callPackage ({ fetchurl, lib, melpaBuild, strings }: melpaBuild { pname = "simple-plus"; - version = "20151231.1800"; + version = "20151231.1900"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/simple+.el"; sha256 = "01fdk790jlpxy95y67yv6944ws4zjh7gs6ymnj1yflf19ccsdsnn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/simple+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/simple+"; sha256 = "12fsgjk53fq2316j8nm6wvdckpyg9hq3v65j5c52i0g0cwmx62ra"; name = "simple-plus"; }; @@ -53067,7 +53575,7 @@ simple-rtm = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, rtm }: melpaBuild { pname = "simple-rtm"; - version = "20160222.934"; + version = "20160222.1034"; src = fetchFromGitHub { owner = "mbunkus"; repo = "simple-rtm"; @@ -53075,7 +53583,7 @@ sha256 = "1kkhnsxr8zrb21k4ckyg69nsndwy4zdkvfw2drk4v1vnbgx8144f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/simple-rtm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/simple-rtm"; sha256 = "1aadzaf73clhyny2qiryg6z84k34yx3ghy6pyl0px9qhqc1ak271"; name = "simple-rtm"; }; @@ -53088,7 +53596,7 @@ simple-screen = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "simple-screen"; - version = "20141023.958"; + version = "20141023.1058"; src = fetchFromGitHub { owner = "wachikun"; repo = "simple-screen"; @@ -53096,7 +53604,7 @@ sha256 = "0zf9wgyp0n00i00zl1lxr0d60569zgcjdnmdvgpcibvny5s1fp2i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/simple-screen"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/simple-screen"; sha256 = "16zvsmqn882w320h26hjjz5lcyl9y0x4amkf2zfps77xxmkmi5n0"; name = "simple-screen"; }; @@ -53109,7 +53617,7 @@ simpleclip = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "simpleclip"; - version = "20150804.1210"; + version = "20150804.1310"; src = fetchFromGitHub { owner = "rolandwalker"; repo = "simpleclip"; @@ -53117,7 +53625,7 @@ sha256 = "09286h2q9dqghgfj9a4cniz6djw7867vcy3ixs7cn4wghvhyxm8s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/simpleclip"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/simpleclip"; sha256 = "07qkfwlg8vw5kb097qbsv082hxir047q2bcvc8scbak2dr6pl12s"; name = "simpleclip"; }; @@ -53130,7 +53638,7 @@ simplenote = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "simplenote"; - version = "20141118.840"; + version = "20141118.940"; src = fetchFromGitHub { owner = "dotemacs"; repo = "simplenote.el"; @@ -53138,7 +53646,7 @@ sha256 = "0xq4vy3ggdjiycd3aa62k94kd43zcpm8bfdgi8grwkb1lpvwq9i9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/simplenote"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/simplenote"; sha256 = "0rnvm3q2spfj15kx2c8ic1p8hxg7rwiqgf3x2zg34j1xxayn3h2j"; name = "simplenote"; }; @@ -53151,7 +53659,7 @@ simplenote2 = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, request-deferred }: melpaBuild { pname = "simplenote2"; - version = "20160318.803"; + version = "20160318.903"; src = fetchFromGitHub { owner = "alpha22jp"; repo = "simplenote2.el"; @@ -53159,7 +53667,7 @@ sha256 = "0k16sjbrhxbv3fj5rzjzvs03230nwlzmvw18dhdhzzblk08f28dp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/simplenote2"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/simplenote2"; sha256 = "1qdzbwhzmsga65wmrd0mb3rbs71nlyqqb6f4v7kvfxzyis50cswm"; name = "simplenote2"; }; @@ -53172,7 +53680,7 @@ simplezen = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "simplezen"; - version = "20130421.500"; + version = "20130421.600"; src = fetchFromGitHub { owner = "magnars"; repo = "simplezen.el"; @@ -53180,7 +53688,7 @@ sha256 = "0108q2b5h73rjxg9k2kmc8z6la9kgqdnz9z1x7rn61v3vbxlzqvn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/simplezen"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/simplezen"; sha256 = "13f2anhfsxmx1vdd209gxkhpywsi3nn6pazhc6bkswmn27yiig7j"; name = "simplezen"; }; @@ -53193,7 +53701,7 @@ skeletor = callPackage ({ cl-lib ? null, dash, emacs, f, fetchFromGitHub, fetchurl, let-alist, lib, melpaBuild, s }: melpaBuild { pname = "skeletor"; - version = "20151220.2254"; + version = "20151220.2354"; src = fetchFromGitHub { owner = "chrisbarrett"; repo = "skeletor.el"; @@ -53201,7 +53709,7 @@ sha256 = "0kbgxjfdf88h7hfds1kbdxx84wvkvy773r98ym1fzfm54m2kddvq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/skeletor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/skeletor"; sha256 = "1vfvg5l12dzksr24dxwc6ngawsqzpxjs97drw48qav9dy1vyl10v"; name = "skeletor"; }; @@ -53214,7 +53722,7 @@ skewer-less = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, skewer-mode }: melpaBuild { pname = "skewer-less"; - version = "20131015.822"; + version = "20131015.922"; src = fetchFromGitHub { owner = "purcell"; repo = "skewer-less"; @@ -53222,7 +53730,7 @@ sha256 = "16757xz5ank3jsh8xglyly7pwdn5xm0yngampy1n1vgcwsp5080a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/skewer-less"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/skewer-less"; sha256 = "0fhv5cnp5bgw3krfmb0jl18kw2hzx2p81falj57lg3p8rn23dryl"; name = "skewer-less"; }; @@ -53235,7 +53743,7 @@ skewer-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, js2-mode, lib, melpaBuild, simple-httpd }: melpaBuild { pname = "skewer-mode"; - version = "20150914.1504"; + version = "20150914.1604"; src = fetchFromGitHub { owner = "skeeto"; repo = "skewer-mode"; @@ -53243,7 +53751,7 @@ sha256 = "0yj7r5f751lra9jj7lg90qp66sgnb7fcjw5v9hfna7r13qdn9f20"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/skewer-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/skewer-mode"; sha256 = "1zp4myi9f7pw6zkgc0xg12585iihn7khcsf20pvqyc0vn4ajdwqm"; name = "skewer-mode"; }; @@ -53256,7 +53764,7 @@ skewer-reload-stylesheets = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, skewer-mode }: melpaBuild { pname = "skewer-reload-stylesheets"; - version = "20150111.623"; + version = "20150111.723"; src = fetchFromGitHub { owner = "NateEag"; repo = "skewer-reload-stylesheets"; @@ -53264,7 +53772,7 @@ sha256 = "1q0qc4jc83k7dfhq2y06zy0fg38kvp219gb3icysdhs88zi2v9s3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/skewer-reload-stylesheets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/skewer-reload-stylesheets"; sha256 = "1rxn0ha2yhvyc195alg31nk1sjghnbha33xrqwc9z3j71w211frm"; name = "skewer-reload-stylesheets"; }; @@ -53277,7 +53785,7 @@ skype = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "skype"; - version = "20131001.2318"; + version = "20131002.18"; src = fetchFromGitHub { owner = "kiwanami"; repo = "emacs-skype"; @@ -53285,7 +53793,7 @@ sha256 = "0gzj7cf42nhp3ac1a2gxcfbmn80z1z46zxsfr2f5xil2gjag39fx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/skype"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/skype"; sha256 = "06p5s5agajbm9vg9xxpzv817xmjw2kmcahiw4iypn5yzwhv1aykl"; name = "skype"; }; @@ -53298,7 +53806,7 @@ slack = callPackage ({ alert, circe, emojify, fetchFromGitHub, fetchurl, lib, melpaBuild, oauth2, request, websocket }: melpaBuild { pname = "slack"; - version = "20160422.1108"; + version = "20160422.1208"; src = fetchFromGitHub { owner = "yuya373"; repo = "emacs-slack"; @@ -53306,7 +53814,7 @@ sha256 = "0av1n6qzlm6vdp9anix8dka64hl5mlq15gw3l2mga1k5jj5nwl7i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/slack"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/slack"; sha256 = "0mybjx08yskk9vi06ayiknl5ddyd8h0mnr8c0a3zr61p1x4s6anp"; name = "slack"; }; @@ -53319,7 +53827,7 @@ slamhound = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "slamhound"; - version = "20140506.1818"; + version = "20140506.1918"; src = fetchFromGitHub { owner = "technomancy"; repo = "slamhound"; @@ -53327,7 +53835,7 @@ sha256 = "108zcb7hdaaq3sxjfr9nrwzqxx71q6aygzik7l3ab854xknkjfad"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/slamhound"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/slamhound"; sha256 = "14zlcw0zw86awd6g98l4h2whav9amz4m8ik877d1wsdjf69g7k9x"; name = "slamhound"; }; @@ -53340,7 +53848,7 @@ slideview = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "slideview"; - version = "20150324.1740"; + version = "20150324.1840"; src = fetchFromGitHub { owner = "mhayashi1120"; repo = "Emacs-slideview"; @@ -53348,7 +53856,7 @@ sha256 = "11p1pghx55a4gcn45cadw7c594134b21cdim723k2h99z14f89az"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/slideview"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/slideview"; sha256 = "0zr08yrnrz49zds1651ysmgjqgbnhfdcqbg90sbsb086iw89rxl1"; name = "slideview"; }; @@ -53361,7 +53869,7 @@ slim-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "slim-mode"; - version = "20140611.1150"; + version = "20140611.1250"; src = fetchFromGitHub { owner = "slim-template"; repo = "emacs-slim"; @@ -53369,7 +53877,7 @@ sha256 = "0vgyc2ny9qmn8f5r149y4g398mh4gnwsp4yim85z4vmdikqg8vi1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/slim-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/slim-mode"; sha256 = "1hip0r22irr9sah3b65ky71ic508bhqvj9hj95a81qvy1zi9rcac"; name = "slim-mode"; }; @@ -53382,7 +53890,7 @@ slime = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, macrostep, melpaBuild }: melpaBuild { pname = "slime"; - version = "20160419.1058"; + version = "20160419.1158"; src = fetchFromGitHub { owner = "slime"; repo = "slime"; @@ -53390,7 +53898,7 @@ sha256 = "0br910d6ph4db9ad2xrb9v1crjys3sbgg71j89kighyg1pq1h2k2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/slime"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/slime"; sha256 = "04zcvjg0bbx5mdbsk9yn7rlprakl89dq6jmnq5v2g0n6q0mh6ign"; name = "slime"; }; @@ -53403,7 +53911,7 @@ slime-annot = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, slime }: melpaBuild { pname = "slime-annot"; - version = "20131230.2108"; + version = "20131230.2208"; src = fetchFromGitHub { owner = "arielnetworks"; repo = "cl-annot"; @@ -53411,7 +53919,7 @@ sha256 = "1wq1gs9jjd5m6iwrv06c2d7i5dvqsfjcljgbspfbc93cg5xahk4n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/slime-annot"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/slime-annot"; sha256 = "14x9lzpkgkc96jsbfpahl027qh6y5azwdk0cmk9pbd1xm95kxj6n"; name = "slime-annot"; }; @@ -53424,7 +53932,7 @@ slime-company = callPackage ({ company, fetchFromGitHub, fetchurl, lib, melpaBuild, slime }: melpaBuild { pname = "slime-company"; - version = "20151210.814"; + version = "20151210.914"; src = fetchFromGitHub { owner = "anwyn"; repo = "slime-company"; @@ -53432,7 +53940,7 @@ sha256 = "0cc8xb2p1j2vs00h4sq6x0mwwrxkidqj4l7kg3n3150bj37v55rs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/slime-company"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/slime-company"; sha256 = "195s5fi2dl3h2jyy4d45q22jac35sciz81n13b4lgw94mkxx4rq2"; name = "slime-company"; }; @@ -53445,16 +53953,16 @@ slime-docker = callPackage ({ cl-lib ? null, docker-tramp, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, slime }: melpaBuild { pname = "slime-docker"; - version = "20160307.1426"; + version = "20160506.1708"; src = fetchFromGitHub { owner = "daewok"; repo = "slime-docker"; - rev = "f806596a0e2901c5196f70bd23cd56a12bafefcd"; - sha256 = "18099jxgprz03akn5sa1x8zsja6d0bxhwhqzj9wqm4rv05y3wdcq"; + rev = "114992086054abb298af7c6e24f2ef19794e2de4"; + sha256 = "0swd9rbsag8k18njp741ljg6lmlz949i4bbz5w7bl0spcpc26fs9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/slime-docker"; - sha256 = "18v62y4f613d7mpqpb8sc8hzvyhcgzrbqrc0k7w9pqf00jnl192h"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/slime-docker"; + sha256 = "13zkkrpww51ndsblpyz2msiwrjnaz6yrk61jbzrwp0r7a2v0djsa"; name = "slime-docker"; }; packageRequires = [ cl-lib docker-tramp emacs slime ]; @@ -53466,7 +53974,7 @@ slime-ritz = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "slime-ritz"; - version = "20130218.1737"; + version = "20130218.1837"; src = fetchFromGitHub { owner = "pallet"; repo = "ritz"; @@ -53474,7 +53982,7 @@ sha256 = "0rsh0bbhyx74yz1gjfqyi0bkqq5n3scpyh5mmc3d6dkpv8wa7bwz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/slime-ritz"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/slime-ritz"; sha256 = "1y1439y07l1a0sp9wn110hw4yyxj8n1cnd6h17rmsr549m2qbg1a"; name = "slime-ritz"; }; @@ -53487,7 +53995,7 @@ slime-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "slime-theme"; - version = "20141116.102"; + version = "20141116.202"; src = fetchFromGitHub { owner = "emacsfodder"; repo = "emacs-slime-theme"; @@ -53495,7 +54003,7 @@ sha256 = "13rm9pmshgssmydhpirri38s38z3kvkhqama40qdzqq96dsxlnjx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/slime-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/slime-theme"; sha256 = "1b709cplxip48a6qjdnzcn5qcgsy0jq1m05d7vc8p5ywgr1f9a00"; name = "slime-theme"; }; @@ -53508,7 +54016,7 @@ slime-volleyball = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "slime-volleyball"; - version = "20140717.2341"; + version = "20140718.41"; src = fetchFromGitHub { owner = "fitzsim"; repo = "slime-volleyball"; @@ -53516,7 +54024,7 @@ sha256 = "00v4mh04affd8kkw4rn51djpyga2rb8f63mgy86napglqnkz40r3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/slime-volleyball"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/slime-volleyball"; sha256 = "1dzvj8z3l5l9ixjl3nc3c7zzi23zc2300r7jzw2l3bvg64cfbdg7"; name = "slime-volleyball"; }; @@ -53529,7 +54037,7 @@ slirm = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "slirm"; - version = "20160201.825"; + version = "20160201.925"; src = fetchFromGitHub { owner = "fbie"; repo = "slirm"; @@ -53537,7 +54045,7 @@ sha256 = "0srj0zcvzr0sjcs37zz11xz8w0yv94m69av9ny7mx8ssf4qp0pxa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/slirm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/slirm"; sha256 = "061xjj3vjdkkvd979fhp7bc12g5zkxqxywvcz3z9dlkgdks41ld7"; name = "slirm"; }; @@ -53550,7 +54058,7 @@ slovak-holidays = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "slovak-holidays"; - version = "20150418.355"; + version = "20150418.455"; src = fetchFromGitHub { owner = "Fuco1"; repo = "slovak-holidays"; @@ -53558,7 +54066,7 @@ sha256 = "1y1gay1h91c0690gly4qibx1my0l1zpb6s3x58lks8m21jdwfw28"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/slovak-holidays"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/slovak-holidays"; sha256 = "1dcw8pa3r9b7n7dc8fgzijz7ywwxb3nlfg7n0by8dnvpjq2c30bg"; name = "slovak-holidays"; }; @@ -53571,15 +54079,15 @@ sly = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "sly"; - version = "20160407.953"; + version = "20160427.1052"; src = fetchFromGitHub { owner = "capitaomorte"; repo = "sly"; - rev = "023db50446ea1a689f07da5ce78399ec8eb6d855"; - sha256 = "0dsyq4h7raf2gfml6pksr2p1vnyilzll77nad0imcv2yyqmdnh8v"; + rev = "4a0a8268948d3a569bcbb774824b7c4c203350f2"; + sha256 = "0i7x07wgrs2dlhk97lphn7lg6d7q8ibs9hl25lmfgifixl1275k4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sly"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/sly"; sha256 = "1pmyqjk8fdlzwvrlx8h6fq0savksfny78fhmr8r7b07pi20y6n9l"; name = "sly"; }; @@ -53592,7 +54100,7 @@ sly-company = callPackage ({ company, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, sly }: melpaBuild { pname = "sly-company"; - version = "20160308.757"; + version = "20160308.857"; src = fetchFromGitHub { owner = "capitaomorte"; repo = "sly-company"; @@ -53600,7 +54108,7 @@ sha256 = "128gb6hsb7zig4czwgwjcm58lgqk6rmj7qi17a9cz5gsnggjcwii"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sly-company"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/sly-company"; sha256 = "1n8bx0qis2bs49c589cbh59xcv06r8sx6y4lxprc9pfpycx7h6v2"; name = "sly-company"; }; @@ -53613,7 +54121,7 @@ sly-hello-world = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, sly }: melpaBuild { pname = "sly-hello-world"; - version = "20160119.836"; + version = "20160119.936"; src = fetchFromGitHub { owner = "capitaomorte"; repo = "sly-hello-world"; @@ -53621,7 +54129,7 @@ sha256 = "1fxsv83fcv5l7cndsysd8salvfwsabvd84sm7zli2ksf678774gp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sly-hello-world"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/sly-hello-world"; sha256 = "03ybjgczp6ssk4hmwd486vshlk7ql27k1lyhmvk26gmrf554z90n"; name = "sly-hello-world"; }; @@ -53634,7 +54142,7 @@ sly-macrostep = callPackage ({ fetchFromGitHub, fetchurl, lib, macrostep, melpaBuild, sly }: melpaBuild { pname = "sly-macrostep"; - version = "20160119.634"; + version = "20160119.734"; src = fetchFromGitHub { owner = "capitaomorte"; repo = "sly-macrostep"; @@ -53642,7 +54150,7 @@ sha256 = "00lw6hkxs71abjyi7nhzi8j6n55jyhzsp81ycn6f2liyp4rmqgi7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sly-macrostep"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/sly-macrostep"; sha256 = "1i004mb0bg13j3zhdsjz1795dh0ry8winzvdghr1wardc9np60h7"; name = "sly-macrostep"; }; @@ -53655,7 +54163,7 @@ sly-named-readtables = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, sly }: melpaBuild { pname = "sly-named-readtables"; - version = "20150817.1016"; + version = "20150817.1116"; src = fetchFromGitHub { owner = "capitaomorte"; repo = "sly-named-readtables"; @@ -53663,7 +54171,7 @@ sha256 = "1xi625pn3mg77mjvr94v6a5pjyvgjavpkdbbh1lqjx1halaa2qb7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sly-named-readtables"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/sly-named-readtables"; sha256 = "11ymzbj1ji7avfjqafj9p5zx0m4y1jfjcmyanpjq1frdcz639ir9"; name = "sly-named-readtables"; }; @@ -53676,7 +54184,7 @@ sly-quicklisp = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, sly }: melpaBuild { pname = "sly-quicklisp"; - version = "20160204.1015"; + version = "20160204.1115"; src = fetchFromGitHub { owner = "capitaomorte"; repo = "sly-quicklisp"; @@ -53684,7 +54192,7 @@ sha256 = "1mb78cdkmik9rwccvzl8slv4dfy8sdq69dkys7q11jyn8lfm476y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sly-quicklisp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/sly-quicklisp"; sha256 = "1hpcz84g9c6g0x8qal02xgjj02gxqz3bysyz0l59jxiga0m634v8"; name = "sly-quicklisp"; }; @@ -53697,7 +54205,7 @@ sly-repl-ansi-color = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, sly }: melpaBuild { pname = "sly-repl-ansi-color"; - version = "20160214.218"; + version = "20160214.318"; src = fetchFromGitHub { owner = "PuercoPop"; repo = "sly-repl-ansi-color"; @@ -53705,7 +54213,7 @@ sha256 = "194bdibpxpqsag86h583b62ybmfqmq4442a0czbijqwngbgjpj3l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sly-repl-ansi-color"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/sly-repl-ansi-color"; sha256 = "0wz24kfjl6rp4qss0iq2ilav0mkg2spy2ziikypy7v0iqbssmssi"; name = "sly-repl-ansi-color"; }; @@ -53718,7 +54226,7 @@ smart-comment = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "smart-comment"; - version = "20160322.1339"; + version = "20160322.1439"; src = fetchFromGitHub { owner = "paldepind"; repo = "smart-comment"; @@ -53726,7 +54234,7 @@ sha256 = "0r181rdnymr96kj74c73212n6157cfiq1d6hk2lfc54yl6h76zf4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/smart-comment"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/smart-comment"; sha256 = "0lbrasdrkyj7zybz0f3xick8p0bvci5bhb2kg6pqzz9pw2iaxw12"; name = "smart-comment"; }; @@ -53738,13 +54246,13 @@ }) {}; smart-compile = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "smart-compile"; - version = "20150519.1147"; + version = "20150519.1247"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/smart-compile.el"; sha256 = "0sm4nxynwhwypzw008fz56axai9lrphjczwzfdy7da3akan18rbd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/smart-compile"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/smart-compile"; sha256 = "0vgxqyzl7jw2j96rmjw75b5lmjwrvzajrdvfyabss4xmv96dy2r3"; name = "smart-compile"; }; @@ -53757,7 +54265,7 @@ smart-cursor-color = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "smart-cursor-color"; - version = "20141124.1119"; + version = "20141124.1219"; src = fetchFromGitHub { owner = "7696122"; repo = "smart-cursor-color"; @@ -53765,7 +54273,7 @@ sha256 = "1xbd42q60pmg0hw4bn2fndjwgrfgj6ggm757fyp8m08jqh0zkarn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/smart-cursor-color"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/smart-cursor-color"; sha256 = "11875pwlx2rm8d86541na9g3yiq0j472vg63mryqv6pzq3n8q6jx"; name = "smart-cursor-color"; }; @@ -53778,7 +54286,7 @@ smart-forward = callPackage ({ expand-region, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "smart-forward"; - version = "20140430.213"; + version = "20140430.313"; src = fetchFromGitHub { owner = "magnars"; repo = "smart-forward.el"; @@ -53786,7 +54294,7 @@ sha256 = "19l47xqzjhhm9j3izik0imssip5ygg3lnflb9ixsz1js571aaxha"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/smart-forward"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/smart-forward"; sha256 = "032yc45c19fl886jmi5q04r6q47xz5rphb040wjvpd4fnb06hr8c"; name = "smart-forward"; }; @@ -53799,7 +54307,7 @@ smart-indent-rigidly = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "smart-indent-rigidly"; - version = "20141205.1815"; + version = "20141205.1915"; src = fetchFromGitHub { owner = "re5et"; repo = "smart-indent-rigidly"; @@ -53807,7 +54315,7 @@ sha256 = "0q5hxg265ad9gpclv2kzikg6jvbf3zzb1mrykxn0n7mnvdfdlhsi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/smart-indent-rigidly"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/smart-indent-rigidly"; sha256 = "12qggg1m28mlvkdn52dig8bwv58pvipkvn1mlc4r7w569arar44x"; name = "smart-indent-rigidly"; }; @@ -53820,7 +54328,7 @@ smart-mark = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "smart-mark"; - version = "20150911.2110"; + version = "20150911.2210"; src = fetchFromGitHub { owner = "cheunghy"; repo = "smart-mark"; @@ -53828,7 +54336,7 @@ sha256 = "0sqvm7iwdjk057fwid4kz6wj71igiqhdarj59s17pzy6xz34afhg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/smart-mark"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/smart-mark"; sha256 = "1vv65sa0pwl407mbxcp653kycgx8jz87n6wshias1dp9lv21pj6v"; name = "smart-mark"; }; @@ -53841,15 +54349,15 @@ smart-mode-line = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, rich-minority }: melpaBuild { pname = "smart-mode-line"; - version = "20160306.1303"; + version = "20160506.1047"; src = fetchFromGitHub { owner = "Malabarba"; repo = "smart-mode-line"; - rev = "9715b5151d9ee669c4fecebd26508cb3fcbde887"; - sha256 = "08g696hpsv4fp3s2isbga4yrh65lxwrn10vv8mnicxhicn178h9a"; + rev = "8fd76a66abe4d37925e3d6152c6bd1e8648a293a"; + sha256 = "1176fxrzzk4fyp4wjyp0xyqrga74j5csr5x37mlgplh9790248dx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/smart-mode-line"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/smart-mode-line"; sha256 = "0qmhzlkc6mfqyaw4jaw6195b8sw0wg9pfjcijb4p0mlywf5mh5q6"; name = "smart-mode-line"; }; @@ -53862,15 +54370,15 @@ smart-mode-line-powerline-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, powerline, smart-mode-line }: melpaBuild { pname = "smart-mode-line-powerline-theme"; - version = "20160111.1132"; + version = "20160111.1232"; src = fetchFromGitHub { owner = "Malabarba"; repo = "smart-mode-line"; - rev = "9715b5151d9ee669c4fecebd26508cb3fcbde887"; - sha256 = "08g696hpsv4fp3s2isbga4yrh65lxwrn10vv8mnicxhicn178h9a"; + rev = "8fd76a66abe4d37925e3d6152c6bd1e8648a293a"; + sha256 = "1176fxrzzk4fyp4wjyp0xyqrga74j5csr5x37mlgplh9790248dx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/smart-mode-line-powerline-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/smart-mode-line-powerline-theme"; sha256 = "0hv3mx39m3l35xhz351zp98321ilr6qq9wzwn1f0ziiv814khcn4"; name = "smart-mode-line-powerline-theme"; }; @@ -53883,7 +54391,7 @@ smart-newline = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "smart-newline"; - version = "20131207.2140"; + version = "20131207.2240"; src = fetchFromGitHub { owner = "ainame"; repo = "smart-newline.el"; @@ -53891,7 +54399,7 @@ sha256 = "1q74b0mbhly84g252a0arbyxc720rgs9a3yqf8b8s2fpfkzb95sg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/smart-newline"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/smart-newline"; sha256 = "1kyk865vkgh05vzlggs3ii81v86fcbcxybfkv5rkyl3fyqpkza1w"; name = "smart-newline"; }; @@ -53904,7 +54412,7 @@ smart-region = callPackage ({ cl-lib ? null, emacs, expand-region, fetchFromGitHub, fetchurl, lib, melpaBuild, multiple-cursors }: melpaBuild { pname = "smart-region"; - version = "20150903.903"; + version = "20150903.1003"; src = fetchFromGitHub { owner = "uk-ar"; repo = "smart-region"; @@ -53912,7 +54420,7 @@ sha256 = "0h559cdyln5f4ignx1r86ryi7wizys0gj03dj7lfzaxr7wkd0jaf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/smart-region"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/smart-region"; sha256 = "1bcvxf62bfi5lmhprma9rh670kka9p9ygbkgmv6dg6ajjfsplgwc"; name = "smart-region"; }; @@ -53925,7 +54433,7 @@ smart-shift = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "smart-shift"; - version = "20150203.125"; + version = "20150203.225"; src = fetchFromGitHub { owner = "hbin"; repo = "smart-shift"; @@ -53933,7 +54441,7 @@ sha256 = "0azhfffm1bkgjx4i3p9f6x2gmw8kc3fafzqj4vxxdibhn0nizqk8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/smart-shift"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/smart-shift"; sha256 = "0azahlflnh6sk081k5dcqal6nmwkjnj4dq8pv8ckwf8684zp23d3"; name = "smart-shift"; }; @@ -53946,7 +54454,7 @@ smart-tab = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "smart-tab"; - version = "20150703.1117"; + version = "20150703.1217"; src = fetchFromGitHub { owner = "genehack"; repo = "smart-tab"; @@ -53954,7 +54462,7 @@ sha256 = "0aighpby8khrljb67m533bwkzlsckyvv7d09cnzr1rfwxiil0ml4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/smart-tab"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/smart-tab"; sha256 = "0qi8jph2c9fdsv2mqgxd7wb3q4dax3g5x2hc53kbgkjxylagjvp5"; name = "smart-tab"; }; @@ -53967,7 +54475,7 @@ smart-tabs-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "smart-tabs-mode"; - version = "20140331.1829"; + version = "20140331.1929"; src = fetchFromGitHub { owner = "jcsalomon"; repo = "smarttabs"; @@ -53975,7 +54483,7 @@ sha256 = "1s65hr7b8aggvdd1i6gkkpz6j1kqilggfnf46xvjnvdw9awmwk6b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/smart-tabs-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/smart-tabs-mode"; sha256 = "1fmbi0ypzhsizzb1vm92hfaq23swiyiqvg0pmibavzqyc9lczhhl"; name = "smart-tabs-mode"; }; @@ -53988,7 +54496,7 @@ smart-window = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "smart-window"; - version = "20130214.1342"; + version = "20130214.1442"; src = fetchFromGitHub { owner = "dryman"; repo = "smart-window.el"; @@ -53996,7 +54504,7 @@ sha256 = "15834lnh7dq9kz31k06ifpnc0vz86rycz0ryildi5qd2nb7s3lw9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/smart-window"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/smart-window"; sha256 = "1x1ncldl9njil9hhvzj5ac1l5aiyfm0f7j0d7lw8ady7xx2cy26m"; name = "smart-window"; }; @@ -54009,7 +54517,7 @@ smartparens = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "smartparens"; - version = "20160411.919"; + version = "20160411.1019"; src = fetchFromGitHub { owner = "Fuco1"; repo = "smartparens"; @@ -54017,7 +54525,7 @@ sha256 = "0shlx8pmcw3jip9y816rg6340df542vzhn65gg8lf7zzpaipxm4i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/smartparens"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/smartparens"; sha256 = "025nfrfw0992024i219jzm4phwf29smc5hib45s6h1s67942mqh6"; name = "smartparens"; }; @@ -54030,7 +54538,7 @@ smartrep = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "smartrep"; - version = "20150508.2130"; + version = "20150508.2230"; src = fetchFromGitHub { owner = "myuhe"; repo = "smartrep.el"; @@ -54038,7 +54546,7 @@ sha256 = "1sjwqi8w83qxihqmcm7z0vwmrz1az0y266qgj2nwfv39bri6y4i6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/smartrep"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/smartrep"; sha256 = "1ypls52d51lcqhz737rqg73c6jwl6q8b3bwb29z51swyamf37rbn"; name = "smartrep"; }; @@ -54051,7 +54559,7 @@ smartscan = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "smartscan"; - version = "20131230.939"; + version = "20131230.1039"; src = fetchFromGitHub { owner = "mickeynp"; repo = "smart-scan"; @@ -54059,7 +54567,7 @@ sha256 = "193cxfnh263yw628ipf9gssvyq3j7mffrdmnjhvzzcsnhd1k145p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/smartscan"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/smartscan"; sha256 = "0vghgmx8vnjbvsw7q5zs0qz2wm6dcng9m69b8dq81g2cq9dflbwb"; name = "smartscan"; }; @@ -54072,15 +54580,15 @@ smartwin = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "smartwin"; - version = "20151230.311"; + version = "20160503.205"; src = fetchFromGitHub { owner = "jerryxgh"; repo = "smartwin"; - rev = "9928e6b57b65b42a285f7ea8234c7825442b9f3b"; - sha256 = "1qfa6i59zhi8d6175py8id8gq7b3hdaqq4naa86r1rb7x8ringff"; + rev = "4053b05471de524631d63abcf2c57abb74533d29"; + sha256 = "086h1xxxf6gsh0vqfw53fqi48876bj9w093d1v1f6hirr4lijybn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/smartwin"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/smartwin"; sha256 = "0rg92j0aa8qxhr91hjj2f4w8vj5w9b4d2nmkggng44nxk8zafdif"; name = "smartwin"; }; @@ -54093,7 +54601,7 @@ smarty-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "smarty-mode"; - version = "20100703.658"; + version = "20100703.758"; src = fetchFromGitHub { owner = "emacsorphanage"; repo = "smarty-mode"; @@ -54101,7 +54609,7 @@ sha256 = "1vl3nx0y2skb8sibqxvmc3wrmmd6z88hknbry348d0ik3cbr0ijx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/smarty-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/smarty-mode"; sha256 = "06cyr2330asy2dlx81g3h9gq0yhd4pbnmzfvmla7amh4pfnjg14v"; name = "smarty-mode"; }; @@ -54114,7 +54622,7 @@ smblog = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "smblog"; - version = "20160317.630"; + version = "20160317.730"; src = fetchFromGitHub { owner = "aaptel"; repo = "smblog-mode"; @@ -54122,7 +54630,7 @@ sha256 = "1ca8i45dj41vif2hm87ircwm9alxdm98irfi586ybrc72s24036r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/smblog"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/smblog"; sha256 = "1byalkpc1bcb6p4j4g1cwc4q2i7irxjcphb0hqh1b2k1zixrw5rr"; name = "smblog"; }; @@ -54135,7 +54643,7 @@ smeargle = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "smeargle"; - version = "20151014.42"; + version = "20151014.142"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-smeargle"; @@ -54143,7 +54651,7 @@ sha256 = "1smv91ggvaw37597ilvhra8cnj4p71n6v5pfazii8k85kvs6x460"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/smeargle"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/smeargle"; sha256 = "1dy87ah1w21csvrkq5icnx7g7g7nxqkcyggxyazqwwxvh2silibd"; name = "smeargle"; }; @@ -54156,7 +54664,7 @@ smex = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "smex"; - version = "20151212.1609"; + version = "20151212.1709"; src = fetchFromGitHub { owner = "nonsequitur"; repo = "smex"; @@ -54164,7 +54672,7 @@ sha256 = "0xrbkpc3w7yadpjih169cpp75gilsnx4y9akgci5vfcggv4ffm26"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/smex"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/smex"; sha256 = "1rwyi7gdzswafkwpfqd6zkxka1mrf4xz17kld95d2ram6cxl6zda"; name = "smex"; }; @@ -54177,14 +54685,14 @@ sml-modeline = callPackage ({ fetchbzr, fetchurl, lib, melpaBuild }: melpaBuild { pname = "sml-modeline"; - version = "20120110.1440"; + version = "20120110.1540"; src = fetchbzr { url = "lp:~nxhtml/nxhtml/main"; rev = "835"; sha256 = "1p10q1b5bvc8fvgfxynrq2kf1ygr6gad92x40zhaa5r1ksf6ryk4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sml-modeline"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/sml-modeline"; sha256 = "086hslzznv6fmlhkf28mcl8nh4xk802mv6w0a4zwd5px2wyyaysd"; name = "sml-modeline"; }; @@ -54197,7 +54705,7 @@ smooth-scroll = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "smooth-scroll"; - version = "20130321.2314"; + version = "20130322.14"; src = fetchFromGitHub { owner = "k-talo"; repo = "smooth-scroll.el"; @@ -54205,7 +54713,7 @@ sha256 = "1kkg7qhb2lmwr4siiazqny9w2z9nk799lzl5i159lfivlxcgixmk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/smooth-scroll"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/smooth-scroll"; sha256 = "1b0mjpd4dqgk7ij37145ry2jqbn1msf8rrvymn7zyckbccg83zsf"; name = "smooth-scroll"; }; @@ -54218,7 +54726,7 @@ smooth-scrolling = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "smooth-scrolling"; - version = "20160227.1915"; + version = "20160227.2015"; src = fetchFromGitHub { owner = "aspiers"; repo = "smooth-scrolling"; @@ -54226,7 +54734,7 @@ sha256 = "1dkqix0iyjyiqf34h3p8faqcpffc0pwkxqqn80ys9jvj4f27kkrg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/smooth-scrolling"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/smooth-scrolling"; sha256 = "0zy2xsmr05l2narslfgril36d7qfb55f52qm2ki6fy1r18lfiyc6"; name = "smooth-scrolling"; }; @@ -54239,7 +54747,7 @@ smotitah = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "smotitah"; - version = "20150218.430"; + version = "20150218.530"; src = fetchFromGitHub { owner = "laynor"; repo = "smotitah"; @@ -54247,7 +54755,7 @@ sha256 = "1a097f1x9l0m4dizvnb742svlqsm6hlif73rk7qjar081sk1gjxx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/smotitah"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/smotitah"; sha256 = "1m5qjl3r96riljp48il8k4rb6rwys1xf1pl93d4qjhprwvz57mv2"; name = "smotitah"; }; @@ -54260,7 +54768,7 @@ smtpmail-multi = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "smtpmail-multi"; - version = "20160218.1749"; + version = "20160218.1849"; src = fetchFromGitHub { owner = "vapniks"; repo = "smtpmail-multi"; @@ -54268,7 +54776,7 @@ sha256 = "0zknryfpg4791l7d7xv9hn2fx00rmbqw3737lfm75484hr10lymz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/smtpmail-multi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/smtpmail-multi"; sha256 = "0nc3k8ly4nx7fm3b2apga3p4svz5c9sldnlk86pz2lzra5h3b4ss"; name = "smtpmail-multi"; }; @@ -54281,7 +54789,7 @@ smyx-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "smyx-theme"; - version = "20141127.228"; + version = "20141127.328"; src = fetchFromGitHub { owner = "tacit7"; repo = "smyx"; @@ -54289,7 +54797,7 @@ sha256 = "1z2sdnf11wh5hz1rkrbg7fs4ha3zrbj9qnvfzq9005y89d7cs95x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/smyx-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/smyx-theme"; sha256 = "1r85yxr864df5akqknl3hsrmzikr4085bqr6ijrbdj27nz00vl61"; name = "smyx-theme"; }; @@ -54302,15 +54810,15 @@ snakemake-mode = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, magit-popup, melpaBuild }: melpaBuild { pname = "snakemake-mode"; - version = "20160422.1336"; + version = "20160504.1128"; src = fetchFromGitHub { owner = "kyleam"; repo = "snakemake-mode"; - rev = "5ed0569defa7ca6ab37d70ee9c92d3dbc0e96a2b"; - sha256 = "1zvmkr3ria7m1h21mam2f0czfmzlz7kx3c4zbs3i0g8gh3ckfmp6"; + rev = "a0f4cc461ef04b5c0853afa3c9e9f1e9bf6019a3"; + sha256 = "0bk56r8y3qhlnvbrwz2qg4zvxw0amcx9c0xlks529ichyncknm11"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/snakemake-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/snakemake-mode"; sha256 = "1xxd3dms5vgvpn18a70wjprka5xvri2pj9cw8qz09s640f5jf3r4"; name = "snakemake-mode"; }; @@ -54323,7 +54831,7 @@ snapshot-timemachine = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "snapshot-timemachine"; - version = "20160222.332"; + version = "20160222.432"; src = fetchFromGitHub { owner = "mrBliss"; repo = "snapshot-timemachine"; @@ -54331,7 +54839,7 @@ sha256 = "0m5j1v9br7vp9m2km8xccy5vv8gis0mcgwjxfc6qhnv7kbx0sx2k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/snapshot-timemachine"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/snapshot-timemachine"; sha256 = "0pvh1ilzv0ambc5cridyhjcxs58wq92bxjkisqv42yar3h3z6f8p"; name = "snapshot-timemachine"; }; @@ -54344,7 +54852,7 @@ snippet = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "snippet"; - version = "20130210.1715"; + version = "20130210.1815"; src = fetchFromGitHub { owner = "pkazmier"; repo = "snippet.el"; @@ -54352,7 +54860,7 @@ sha256 = "1nyrfbjrg74wrqlh8229rf7ym07k2a0wscjm0kbg3sam9ryc546y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/snippet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/snippet"; sha256 = "1lgpw69k5a82y70j7nximdj0bl5nzr4jhjr5fkx1cvz8hhvgdz6j"; name = "snippet"; }; @@ -54365,7 +54873,7 @@ soft-charcoal-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "soft-charcoal-theme"; - version = "20140420.1143"; + version = "20140420.1243"; src = fetchFromGitHub { owner = "mswift42"; repo = "soft-charcoal-theme"; @@ -54373,7 +54881,7 @@ sha256 = "07056pnjgsgw06c67776qp7jci96iqbzlprbavzz2l1j8ywz8cwm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/soft-charcoal-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/soft-charcoal-theme"; sha256 = "0i29ais1m2h9v4ghcg41zfbnaj8klgm4509nkyfkxm7wqnjd166a"; name = "soft-charcoal-theme"; }; @@ -54386,7 +54894,7 @@ soft-morning-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "soft-morning-theme"; - version = "20150918.1541"; + version = "20150918.1641"; src = fetchFromGitHub { owner = "mswift42"; repo = "soft-morning-theme"; @@ -54394,7 +54902,7 @@ sha256 = "06q82v1hndvznsqg0r6jrxvgxhycg9m65kay4db4yy0gmc66v2xf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/soft-morning-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/soft-morning-theme"; sha256 = "0lzg478ax6idzh6m5sf2ds4gbv096y0c0gn15dai19f58bs63xzr"; name = "soft-morning-theme"; }; @@ -54407,7 +54915,7 @@ soft-stone-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "soft-stone-theme"; - version = "20140614.335"; + version = "20140614.435"; src = fetchFromGitHub { owner = "mswift42"; repo = "soft-stone-theme"; @@ -54415,7 +54923,7 @@ sha256 = "030mf8b0sf9mmzwhg85zh0ccvcg768kckwvbm0yzg7vmq1x46hjl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/soft-stone-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/soft-stone-theme"; sha256 = "05jjw9z6hqln9yj8ya2xrmjnylp7psfdj9206n30m3lwnlwx399v"; name = "soft-stone-theme"; }; @@ -54428,15 +54936,15 @@ solarized-theme = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "solarized-theme"; - version = "20160419.1027"; + version = "20160505.433"; src = fetchFromGitHub { owner = "bbatsov"; repo = "solarized-emacs"; - rev = "a8cb8af769db056f80b2020b60f6b22b37f31c4d"; - sha256 = "0km81a058y9biw2ydh98r6k78x0xv4zaagdiwqfx9h9szrz7m21i"; + rev = "17229b709af91b26314db760f063be7d88ad03b3"; + sha256 = "1m3ykmvnxdb02w4jkhxj4rmshrddajrcdplxvhq41sb63w5iyi9v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/solarized-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/solarized-theme"; sha256 = "15d8k32sj8i11806byvf7r57rivz391ljr0zb4dx8n8vjjkyja12"; name = "solarized-theme"; }; @@ -54449,15 +54957,15 @@ solidity-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "solidity-mode"; - version = "20160426.231"; + version = "20160505.503"; src = fetchFromGitHub { owner = "ethereum"; repo = "emacs-solidity"; - rev = "fb611258ac68c57226c7c2595990097cd757963e"; - sha256 = "0wk6q5q2lbczy63jaqlb65lw6z420lvp0nnqkfzqp9wvw19dv8wb"; + rev = "6268b2a7fdd22ba37e3f7be907db9f5e9070f242"; + sha256 = "1mlhidfnvs2sph6qavzqz5qng78q2v4n5qc021958s29kx35i603"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/solidity-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/solidity-mode"; sha256 = "1qdzdivrf5yaa80p61b9r1gryw112v5l2m2jkvkc7glhkhrcvwsx"; name = "solidity-mode"; }; @@ -54470,7 +54978,7 @@ sonic-pi = callPackage ({ cl-lib ? null, dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, osc }: melpaBuild { pname = "sonic-pi"; - version = "20150919.530"; + version = "20150919.630"; src = fetchFromGitHub { owner = "repl-electric"; repo = "sonic-pi.el"; @@ -54478,7 +54986,7 @@ sha256 = "1ga35d3rhdf6ffd36q58ay6380gjvkmaiid4vscga3v7ca0dkhl1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sonic-pi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/sonic-pi"; sha256 = "07qxm1rkw2cbxf4g2vqk3s7xnqldqkdm2zw1qh2kqjscg5gwpkqp"; name = "sonic-pi"; }; @@ -54491,7 +54999,7 @@ soothe-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "soothe-theme"; - version = "20141027.941"; + version = "20141027.1041"; src = fetchFromGitHub { owner = "jasonm23"; repo = "emacs-soothe-theme"; @@ -54499,7 +55007,7 @@ sha256 = "10gh1hvxq9gm29r6qzlnva7vjidd7n4kih4z2ihyvbvy9za20xqw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/soothe-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/soothe-theme"; sha256 = "000hikpsmqpbb6v13az2dv319d0f7jjpkkpgi4vzv59z6cdlrlp3"; name = "soothe-theme"; }; @@ -54512,7 +55020,7 @@ sos = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org }: melpaBuild { pname = "sos"; - version = "20141214.2203"; + version = "20141214.2303"; src = fetchFromGitHub { owner = "omouse"; repo = "emacs-sos"; @@ -54520,7 +55028,7 @@ sha256 = "086a66jlnkiv044i4japs4czw8gfs8p0n80p42ck83zm2jnznc49"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sos"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/sos"; sha256 = "1gkd0plx7152s3dj8a9lwlwh8bgs1m006s80l10agclx6aay8rvb"; name = "sos"; }; @@ -54533,7 +55041,7 @@ sotclojure = callPackage ({ cider, clojure-mode, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, sotlisp }: melpaBuild { pname = "sotclojure"; - version = "20160421.2011"; + version = "20160421.2111"; src = fetchFromGitHub { owner = "Malabarba"; repo = "speed-of-thought-clojure"; @@ -54541,7 +55049,7 @@ sha256 = "13yn2yadkpmykaly3l3xsq1bhm4sxyk8k1px555y11qi0mfdcjhh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sotclojure"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/sotclojure"; sha256 = "12byqjzg0pffqyq958265qq8yxxmf3iyy4m7zib492qcj8ccy090"; name = "sotclojure"; }; @@ -54554,7 +55062,7 @@ sotlisp = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "sotlisp"; - version = "20160225.758"; + version = "20160225.858"; src = fetchFromGitHub { owner = "Malabarba"; repo = "speed-of-thought-lisp"; @@ -54562,7 +55070,7 @@ sha256 = "0xykm4yayb8gw83arv5p205cx18j14q9407rqw3sbcj9cj5nbk34"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sotlisp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/sotlisp"; sha256 = "0zjnn6hhwy6cjvc5rhvhxcq5pmrhcyil14a48fcgwvg4lv7fbljk"; name = "sotlisp"; }; @@ -54575,7 +55083,7 @@ sound-wav = callPackage ({ cl-lib ? null, deferred, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "sound-wav"; - version = "20140303.657"; + version = "20140303.757"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-sound-wav"; @@ -54583,7 +55091,7 @@ sha256 = "1h6h65gwxb07pscyhhhdn11h3lx3jgyfw8v1kw5m2qfrv5kh6ylq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sound-wav"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/sound-wav"; sha256 = "1vrwzk6zqma7r0w5ivbx16shys6hsifj52fwlf5rxs6jg1gqdb4f"; name = "sound-wav"; }; @@ -54596,7 +55104,7 @@ soundcloud = callPackage ({ deferred, emms, fetchFromGitHub, fetchurl, json ? null, lib, melpaBuild, request, request-deferred, string-utils }: melpaBuild { pname = "soundcloud"; - version = "20150501.2226"; + version = "20150501.2326"; src = fetchFromGitHub { owner = "thieman"; repo = "soundcloud.el"; @@ -54604,7 +55112,7 @@ sha256 = "1m8wcm6y80gq5rrm4brd3f20kmk54s6ph26j4lz4cmilxk6gj56v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/soundcloud"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/soundcloud"; sha256 = "06cbr1h03k5ixam6lsr82lx3nh2kkp0416mlig0zfkd4b8a9mf8c"; name = "soundcloud"; }; @@ -54624,7 +55132,7 @@ soundklaus = callPackage ({ cl-lib ? null, dash, emacs, emms, fetchFromGitHub, fetchurl, lib, melpaBuild, pkg-info, request, s }: melpaBuild { pname = "soundklaus"; - version = "20160314.731"; + version = "20160314.831"; src = fetchFromGitHub { owner = "r0man"; repo = "soundklaus.el"; @@ -54632,7 +55140,7 @@ sha256 = "0w5ac515ymj43p5j19nhfqk0c3251c7x3i97r550g780niby1nc5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/soundklaus"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/soundklaus"; sha256 = "0b63sbgwp99ff94dxrqqp2p99j268fjkkzx0g42g726hv80d4fxb"; name = "soundklaus"; }; @@ -54645,15 +55153,15 @@ sourcekit = callPackage ({ dash, dash-functional, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "sourcekit"; - version = "20160323.2009"; + version = "20160507.522"; src = fetchFromGitHub { owner = "nathankot"; repo = "company-sourcekit"; - rev = "c9694cd8e84f4c7deffa6111297cb80eb7cb02a6"; - sha256 = "04nm015408gzybfka0sc3czkf5y61x76h3sx3vlijf67i54bz7pi"; + rev = "8a2ab547879848cb6767a75f9eecb659bf744672"; + sha256 = "0z1mrq9xp1lhsgvywm5s32d3hqsjfij90c4scgxnbq7mbii020k7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sourcekit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/sourcekit"; sha256 = "1lvk3m86awlinivpg89h6zvrwrdqa5ljdp563k3i4h9384w82pks"; name = "sourcekit"; }; @@ -54666,7 +55174,7 @@ sourcemap = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "sourcemap"; - version = "20150418.900"; + version = "20150418.1000"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-sourcemap"; @@ -54674,7 +55182,7 @@ sha256 = "085xd5fqxgv9bam9k4aa3w0sa9q41cg275i60c8njy3bkbqcalh5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sourcemap"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/sourcemap"; sha256 = "0cjg90y6a0l59a9v7d7p12pgmr21gwd7x5msil3h6xkm15f0qcc5"; name = "sourcemap"; }; @@ -54687,7 +55195,7 @@ sourcetalk = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, request }: melpaBuild { pname = "sourcetalk"; - version = "20140823.939"; + version = "20140823.1039"; src = fetchFromGitHub { owner = "malroc"; repo = "sourcetalk_emacs"; @@ -54695,7 +55203,7 @@ sha256 = "0j4qm1y7rhb95k1zbl3c60a46l9rchzslzq36mayyw61s6yysjnv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sourcetalk"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/sourcetalk"; sha256 = "0qaf2q784xgl1s3m88jpwdzghpi4f3nybga3lnr1w7sb7b3yvj3z"; name = "sourcetalk"; }; @@ -54708,7 +55216,7 @@ spacegray-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "spacegray-theme"; - version = "20150719.1431"; + version = "20150719.1531"; src = fetchFromGitHub { owner = "bruce"; repo = "emacs-spacegray-theme"; @@ -54716,7 +55224,7 @@ sha256 = "1a8jp7m9zarvljg5d9c8ydir3qcmwx05c3frs696p9nwvapf6lsb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/spacegray-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/spacegray-theme"; sha256 = "0khiddpsywpv9qvynpfdmybd80lbrhm68j3py6ranxlv7p79j9dx"; name = "spacegray-theme"; }; @@ -54729,15 +55237,15 @@ spaceline = callPackage ({ cl-lib ? null, dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, powerline, s }: melpaBuild { pname = "spaceline"; - version = "20160420.1401"; + version = "20160507.602"; src = fetchFromGitHub { owner = "TheBB"; repo = "spaceline"; - rev = "d8492f0caeaf37f308236e04d097e180fec0e2c1"; - sha256 = "1sw9i8x3cr28nb5mikf8lcxcnvjjz8dwa5ylf94gcw1q62hy5lvz"; + rev = "df49454e34437035980209a586535be8b962cbca"; + sha256 = "1312r8bwaczm24n7zzgm53sjw2dixi4yqg6v7bcy3gdh940ii5w0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/spaceline"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/spaceline"; sha256 = "0jpcj0i8ckdylrisx9b4l9kam6kkjzhhv1s7mwwi4b744rx942iw"; name = "spaceline"; }; @@ -54750,15 +55258,15 @@ spacemacs-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "spacemacs-theme"; - version = "20160411.925"; + version = "20160507.829"; src = fetchFromGitHub { owner = "nashamri"; repo = "spacemacs-theme"; - rev = "0c88ced718942fbfda85ac5992bf8ac424f10121"; - sha256 = "1ny203z4cbra97gas1ymixiwlcd80g4wvaxqi93gq1ljkfd6jb27"; + rev = "de1bb912d700b7bd1f3f03126646e5e434364ff7"; + sha256 = "0lkmy1x7icpvg7djvdjaw9w7895ffpz9ghkx1ylszrq3apvf6w47"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/spacemacs-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/spacemacs-theme"; sha256 = "0riiim6qb6x9g5hz0k3qgdymgikynlb9l07mrbfmybkv4919p992"; name = "spacemacs-theme"; }; @@ -54771,7 +55279,7 @@ spaces = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "spaces"; - version = "20130610.249"; + version = "20130610.349"; src = fetchFromGitHub { owner = "chumpage"; repo = "chumpy-windows"; @@ -54779,7 +55287,7 @@ sha256 = "069aqyqzjp5ljqfzm7lxkh8j8firk7041wc2jwzqha8jn9zpvbxs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/spaces"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/spaces"; sha256 = "152x7fzjnjjdk9d9h0hbixdp3haqn5vdx3bq1nfqfrkvzychyr06"; name = "spaces"; }; @@ -54792,15 +55300,15 @@ spark = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "spark"; - version = "20160414.2101"; + version = "20160414.2201"; src = fetchFromGitHub { owner = "alvinfrancis"; repo = "spark"; - rev = "eec8feae7dbc8547f878fac302f03e0ff7bc9803"; - sha256 = "155ap3vcypcj0pxvjhi2p0a5a9a2rp63hqnsjczsbabmbz1mdsd5"; + rev = "0bf148c3ede3b31d56fd75f347cdd0b0eae60025"; + sha256 = "1ykqr86j17mi95s08d9fp02d7ych1331b04dcqxzxnmpkhwngyj1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/spark"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/spark"; sha256 = "0dv7ixv9gw6xxhw5zm4gmv2ll4lja8hmn2pdizlqxaizpm245rkn"; name = "spark"; }; @@ -54813,7 +55321,7 @@ sparkline = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "sparkline"; - version = "20150101.719"; + version = "20150101.819"; src = fetchFromGitHub { owner = "woudshoo"; repo = "sparkline"; @@ -54821,7 +55329,7 @@ sha256 = "1fqd3ycywxxmln2kzqwflc69xmqlvi9gwvmf7frn0rfv73w09cvp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sparkline"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/sparkline"; sha256 = "081jzaxjb32nydvr1kmyafxqxi610n0yf8lwz9vldm84famf3g7y"; name = "sparkline"; }; @@ -54834,7 +55342,7 @@ sparql-mode = callPackage ({ async, cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "sparql-mode"; - version = "20160316.1004"; + version = "20160316.1104"; src = fetchFromGitHub { owner = "ljos"; repo = "sparql-mode"; @@ -54842,7 +55350,7 @@ sha256 = "1bwa7vi97xlgwzyrc9cdz8i8rajlvkp4ajs8nklsqwrvzngly9lx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sparql-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/sparql-mode"; sha256 = "1xicrfmgxpb31lz30qj450w8v7dl4ipjp7b2wz54s4kn88nsfj7d"; name = "sparql-mode"; }; @@ -54854,13 +55362,13 @@ }) {}; speck = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "speck"; - version = "20140901.1335"; + version = "20140901.1435"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/speck.el"; sha256 = "1i2z57aasljia6xd2xn1mryklc2gc9c2q1fad8wn7982sl277d10"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/speck"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/speck"; sha256 = "19h3syk4kjmcy7jy9nlsbq6gyxwl4xsi84dy66a3cpvmknm25kyg"; name = "speck"; }; @@ -54873,7 +55381,7 @@ speech-tagger = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "speech-tagger"; - version = "20160224.202"; + version = "20160224.302"; src = fetchFromGitHub { owner = "cosmicexplorer"; repo = "speech-tagger"; @@ -54881,7 +55389,7 @@ sha256 = "0v4v2nr680zgljr9k7rgf7mhy49bv5ixc8ksba3g1bbrz0qv5ny6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/speech-tagger"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/speech-tagger"; sha256 = "0sqil949ny9qjxq7kpb4zmjd7770r0qvq4sz80agw6a27mqnaajc"; name = "speech-tagger"; }; @@ -54894,14 +55402,14 @@ speechd-el = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: melpaBuild { pname = "speechd-el"; - version = "20141025.1112"; + version = "20141025.1212"; src = fetchgit { url = "git://git.freebsoft.org/git/speechd-el"; rev = "3d729817296b2ed8ad414a6aa044a8aa762259eb"; sha256 = "0cjw47ziv50b3i95i9y0r8rvgchawzkknv5sqr882aqqb8zgy6rc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/speechd-el"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/speechd-el"; sha256 = "07g6jwymmwkx26p3as3r370viz1cqq360cagw9ji6i0hvgrr66a0"; name = "speechd-el"; }; @@ -54914,7 +55422,7 @@ speed-type = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "speed-type"; - version = "20150120.2234"; + version = "20150120.2334"; src = fetchFromGitHub { owner = "hagleitn"; repo = "speed-type"; @@ -54922,7 +55430,7 @@ sha256 = "102hjyr9ii2rmq8762irbwansbi023s7dg4a8n6lkadcvzfibmag"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/speed-type"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/speed-type"; sha256 = "14q423an7v5hhfx1x039fizxcn5hcscqf2jfn9rqifg4jpq8bq5g"; name = "speed-type"; }; @@ -54935,7 +55443,7 @@ sphinx-doc = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "sphinx-doc"; - version = "20160116.517"; + version = "20160116.617"; src = fetchFromGitHub { owner = "naiquevin"; repo = "sphinx-doc.el"; @@ -54943,7 +55451,7 @@ sha256 = "1wif9wf8hwxk0q09cdnrmyas7zjg8l5b8jd6sjxd40ypn6dmz2ch"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sphinx-doc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/sphinx-doc"; sha256 = "00h3wx2p5hzbw6sggggdrzv4jrn1wc051iqql5y2m1hsh772ic5z"; name = "sphinx-doc"; }; @@ -54956,7 +55464,7 @@ sphinx-frontend = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "sphinx-frontend"; - version = "20151122.412"; + version = "20151122.512"; src = fetchFromGitHub { owner = "kostafey"; repo = "sphinx-frontend"; @@ -54964,7 +55472,7 @@ sha256 = "1mfp4777ppg7zg7zqj755zpfk9lmcq73hxv055ig66pz30m7x5rw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sphinx-frontend"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/sphinx-frontend"; sha256 = "0hdn6zjnhzyka0lzdxqfzbj3lrj767ij406zha9zw8ibbkk7cmag"; name = "sphinx-frontend"; }; @@ -54977,7 +55485,7 @@ splitjoin = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "splitjoin"; - version = "20150505.932"; + version = "20150505.1032"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-splitjoin"; @@ -54985,7 +55493,7 @@ sha256 = "1qdy9nc2h7mwxh7zg2p1x7yg96hxkwxqimjp6zb1119jx0s8grjc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/splitjoin"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/splitjoin"; sha256 = "0l1x98fvvia8qx8g125h4d76slv0xnb3h1zxiq9xb5qh7a1h069l"; name = "splitjoin"; }; @@ -54998,7 +55506,7 @@ splitter = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "splitter"; - version = "20130705.250"; + version = "20130705.350"; src = fetchFromGitHub { owner = "chumpage"; repo = "chumpy-windows"; @@ -55006,7 +55514,7 @@ sha256 = "069aqyqzjp5ljqfzm7lxkh8j8firk7041wc2jwzqha8jn9zpvbxs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/splitter"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/splitter"; sha256 = "02vdhvipzwnh6mlj25lirzxkc0shfzqfs1p4gn3smkxqx6g7mdb2"; name = "splitter"; }; @@ -55019,15 +55527,15 @@ spotify = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "spotify"; - version = "20160128.306"; + version = "20160128.406"; src = fetchFromGitHub { owner = "remvee"; repo = "spotify-el"; - rev = "08d341c981ee218c18f4806d83d803ceb4e46466"; - sha256 = "1f0dl2zzxnqsyic87jl9wbg6lf42d8g61sj4d9fb3yhxy6jf07jv"; + rev = "99c693c3016326465ede26243885ad05f0911f71"; + sha256 = "185zkdghi10yjmzxlfafjk9d9cq760432h2y5z373ksshxc3pdpa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/spotify"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/spotify"; sha256 = "0pmsvxi1dsi580wkhhx8iw329agkh5yzk61bqvxzign3cd6fbq6k"; name = "spotify"; }; @@ -55040,7 +55548,7 @@ spotlight = callPackage ({ counsel, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, swiper }: melpaBuild { pname = "spotlight"; - version = "20150929.255"; + version = "20150929.355"; src = fetchFromGitHub { owner = "benmaughan"; repo = "spotlight.el"; @@ -55048,7 +55556,7 @@ sha256 = "05knlca2dvpyqp9lw8dc47fl5kh2jb04q57cygkzfjjkzvywdwq8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/spotlight"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/spotlight"; sha256 = "0mmr1spr21pi8sfy95dsgqcxn8qfsphdkfjm5w5q97lh7496z65p"; name = "spotlight"; }; @@ -55061,7 +55569,7 @@ spray = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "spray"; - version = "20160304.1620"; + version = "20160304.1720"; src = fetchFromGitHub { owner = "ian-kelling"; repo = "spray"; @@ -55069,7 +55577,7 @@ sha256 = "0anidv7w2vwsjv8rwkvhs3x51av3y8dp435456czy5yfq6i6vfbl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/spray"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/spray"; sha256 = "11b3wn53309ws60w8sfpfxij7vnibj6kxxsx6w1agglqx9zqngz4"; name = "spray"; }; @@ -55082,7 +55590,7 @@ springboard = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "springboard"; - version = "20160329.1309"; + version = "20160329.1409"; src = fetchFromGitHub { owner = "jwiegley"; repo = "springboard"; @@ -55090,7 +55598,7 @@ sha256 = "0p13q8xax2h3m6rddvmh1p9biw3d1shvwwmqfhg0c93xajlwdfqi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/springboard"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/springboard"; sha256 = "17rmsidsbb4p08vr07mfn25m17wnpadcwr4nxvp79glp5a0wyyib"; name = "springboard"; }; @@ -55103,7 +55611,7 @@ sprintly-mode = callPackage ({ fetchFromGitHub, fetchurl, furl, lib, melpaBuild }: melpaBuild { pname = "sprintly-mode"; - version = "20121006.34"; + version = "20121006.134"; src = fetchFromGitHub { owner = "sprintly"; repo = "sprintly-mode"; @@ -55111,7 +55619,7 @@ sha256 = "06rk07h92s5sljprs41y3q31q64cprx9kgs56c2j6v4c8cmsq5h6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sprintly-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/sprintly-mode"; sha256 = "15i3rrv27ccpn12wwj9raaxpj7nlnrrj3lsp8vdfwph6ydvnfza4"; name = "sprintly-mode"; }; @@ -55124,7 +55632,7 @@ sproto-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "sproto-mode"; - version = "20151115.1205"; + version = "20151115.1305"; src = fetchFromGitHub { owner = "m2q1n9"; repo = "sproto-mode"; @@ -55132,7 +55640,7 @@ sha256 = "11igl9n2zwwar1xg651g5v0r0w6xl0grm8xns9wg80351ijrci7x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sproto-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/sproto-mode"; sha256 = "19l6si3sx2i542r5lyr9axby9hblx76m77f17vnsjf32n3r0qgma"; name = "sproto-mode"; }; @@ -55145,7 +55653,7 @@ sprunge = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, request }: melpaBuild { pname = "sprunge"; - version = "20160229.2043"; + version = "20160229.2143"; src = fetchFromGitHub { owner = "tomjakubowski"; repo = "sprunge.el"; @@ -55153,7 +55661,7 @@ sha256 = "03wjzk1ljclfjgqzkg6m7v8saaajgavyd0xskd8fg8rdkx13ki0l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sprunge"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/sprunge"; sha256 = "199vfl6i881aks8fi9d9w4w7mnc7n443h79p3s4srcpmbyfg6g3w"; name = "sprunge"; }; @@ -55163,10 +55671,31 @@ license = lib.licenses.free; }; }) {}; + sql-impala = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "sql-impala"; + version = "20160427.1958"; + src = fetchFromGitHub { + owner = "jterk"; + repo = "sql-impala"; + rev = "90f1061f3604c99b303f5654e7ed0e9a01734c35"; + sha256 = "0kxnwmdwx25inyprldw3sjwjxvrmran6wpm80ghai374j3arkabw"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/sql-impala"; + sha256 = "1jr9k48d0q00d1x5lqv0n971mla2ymnqmjfn8pw0s0vxkldq4ibi"; + name = "sql-impala"; + }; + packageRequires = []; + meta = { + homepage = "https://melpa.org/#/sql-impala"; + license = lib.licenses.free; + }; + }) {}; sql-indent = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "sql-indent"; - version = "20150424.1916"; + version = "20150424.2016"; src = fetchFromGitHub { owner = "bsvingen"; repo = "sql-indent"; @@ -55174,7 +55703,7 @@ sha256 = "17nbcaqx58fq4rz501xcqqcjhmibdlkaavmmzwcfwra7jv8hqljy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sql-indent"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/sql-indent"; sha256 = "13s38zdd9j127p6jxbcj4d4va8mkri5dx5zh39g465mnlzx7fp8g"; name = "sql-indent"; }; @@ -55187,7 +55716,7 @@ sqlite = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "sqlite"; - version = "20150417.15"; + version = "20150417.115"; src = fetchFromGitHub { owner = "cnngimenez"; repo = "sqlite.el"; @@ -55195,7 +55724,7 @@ sha256 = "0zlrx8sk7gwwr6a23mc22d7iinwf8p9ff16r9krqp86fyzbhnq1d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sqlite"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/sqlite"; sha256 = "1j23rqgq00as90nk6csi489ida6b83h1myl3icxivj2iw1iikgj1"; name = "sqlite"; }; @@ -55207,13 +55736,13 @@ }) {}; sqlplus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "sqlplus"; - version = "20141009.939"; + version = "20141009.1039"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/sqlplus.el"; sha256 = "0xixdddcrzx6k0s8w9rp6q7b9qjpdb4l888gmcis42yvawb1i53d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sqlplus"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/sqlplus"; sha256 = "1z9pf36b1581flykis9cjv7pynnp94fm4ijzjy6hvqyj81aikxpz"; name = "sqlplus"; }; @@ -55226,7 +55755,7 @@ sqlup-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "sqlup-mode"; - version = "20151121.830"; + version = "20151121.930"; src = fetchFromGitHub { owner = "Trevoke"; repo = "sqlup-mode.el"; @@ -55234,7 +55763,7 @@ sha256 = "0p2g4ss3bf2asxcibrd8l70ll04nm47znr99l5xyzzwhyfzi61w4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sqlup-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/sqlup-mode"; sha256 = "0ngs58iri3fwv5ny707kvb6xjq98x19pzak8c9nq4qnpw3nkr83b"; name = "sqlup-mode"; }; @@ -55246,13 +55775,13 @@ }) {}; sr-speedbar = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "sr-speedbar"; - version = "20150804.1151"; + version = "20150804.1251"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/sr-speedbar.el"; sha256 = "1ffnm2kfh8cg5rdhrkqmh4krggbxvqg3s6lc1nssv88av1c5cs3i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sr-speedbar"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/sr-speedbar"; sha256 = "1zq3ysz1vpc98sz2kpq307v1fp1l4ivwgrfh2kdqkkdjm4fkya23"; name = "sr-speedbar"; }; @@ -55265,7 +55794,7 @@ srefactor = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "srefactor"; - version = "20160420.233"; + version = "20160420.333"; src = fetchFromGitHub { owner = "tuhdo"; repo = "semantic-refactor"; @@ -55273,7 +55802,7 @@ sha256 = "02jr9cgar2r71rrrx13rj83nd19bxajmzzgj4awzn0d93i4l5qkc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/srefactor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/srefactor"; sha256 = "01cd40jm4h00c5q2ix7cskp7klbkcd3n5763y5lqfv59bjxwdqd2"; name = "srefactor"; }; @@ -55286,7 +55815,7 @@ ssh = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ssh"; - version = "20120904.1542"; + version = "20120904.1642"; src = fetchFromGitHub { owner = "ieure"; repo = "ssh-el"; @@ -55294,7 +55823,7 @@ sha256 = "1rdhdkwdhb727rj53xyxk6i00sjr58a48hfig14m12niy1k739vd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ssh"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ssh"; sha256 = "1jywn8wlqzc2mfylp0kbpzxv3kwzak3vxdbjabiawqv1m4bfpk5g"; name = "ssh"; }; @@ -55307,7 +55836,7 @@ ssh-agency = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ssh-agency"; - version = "20160101.1635"; + version = "20160101.1735"; src = fetchFromGitHub { owner = "magit"; repo = "ssh-agency"; @@ -55315,7 +55844,7 @@ sha256 = "0076g1yb8xvn6s8gz5jxiz8mn448fmab574yizgakbxaxd91s1dj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ssh-agency"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ssh-agency"; sha256 = "0lci3fhl2p9mwilvq1njzy13dkq5cp5ighymf3zs4gzm3w0ih3h8"; name = "ssh-agency"; }; @@ -55328,7 +55857,7 @@ ssh-config-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ssh-config-mode"; - version = "20160326.752"; + version = "20160326.852"; src = fetchFromGitHub { owner = "jhgorrell"; repo = "ssh-config-mode-el"; @@ -55336,7 +55865,7 @@ sha256 = "08nx1iwvxqs1anng32w3c2clhnjf45527j0gxz5fy6h9svmb921q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ssh-config-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ssh-config-mode"; sha256 = "0aihyig6q3pmk9ld519f4n3kychrg3l7r29ijd2dpvs0530md4wb"; name = "ssh-config-mode"; }; @@ -55349,7 +55878,7 @@ ssh-tunnels = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ssh-tunnels"; - version = "20141219.518"; + version = "20141219.618"; src = fetchFromGitHub { owner = "death"; repo = "ssh-tunnels"; @@ -55357,7 +55886,7 @@ sha256 = "10a5havjg4yjshpfzkhgjdwbrvl44narg09ddzynczmyzm4f01wh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ssh-tunnels"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ssh-tunnels"; sha256 = "0zlf22wg9adkhycsasv6bfim2h0cknsvihyi1q2l2l4pjdp9ypqj"; name = "ssh-tunnels"; }; @@ -55370,7 +55899,7 @@ stack-mode = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, flycheck, haskell-mode, lib, melpaBuild }: melpaBuild { pname = "stack-mode"; - version = "20150923.1023"; + version = "20150923.1123"; src = fetchFromGitHub { owner = "commercialhaskell"; repo = "stack-ide"; @@ -55378,7 +55907,7 @@ sha256 = "1f2dxlc3dsf9ay417h1l43fxjkrb0a4gg96zd3asx9v2alpzgcim"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/stack-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/stack-mode"; sha256 = "0s0m2lj40php7bc2i3fy9ikd5rmx4v7zbxfkp9vadmlc5s7w25gf"; name = "stack-mode"; }; @@ -55391,7 +55920,7 @@ stan-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "stan-mode"; - version = "20160117.47"; + version = "20160117.147"; src = fetchFromGitHub { owner = "stan-dev"; repo = "stan-mode"; @@ -55399,7 +55928,7 @@ sha256 = "0nkrpx1rmzg48mi5871mgdizasv80vpald513ycx4nshyln0ymv2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/stan-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/stan-mode"; sha256 = "17ph5khwwrcpyl96xnp3rsbmnk7mpwmgskxka3cfgkm190qihfqy"; name = "stan-mode"; }; @@ -55412,7 +55941,7 @@ stan-snippets = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, stan-mode, yasnippet }: melpaBuild { pname = "stan-snippets"; - version = "20160117.47"; + version = "20160117.147"; src = fetchFromGitHub { owner = "stan-dev"; repo = "stan-mode"; @@ -55420,7 +55949,7 @@ sha256 = "0nkrpx1rmzg48mi5871mgdizasv80vpald513ycx4nshyln0ymv2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/stan-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/stan-snippets"; sha256 = "021skkvak645483s7haz1hsz98q3zd8hqi9k5zdzaqlabwdjwh85"; name = "stan-snippets"; }; @@ -55433,15 +55962,15 @@ standoff-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "standoff-mode"; - version = "20150628.1842"; + version = "20150628.1942"; src = fetchFromGitHub { owner = "lueck"; repo = "standoff-mode"; - rev = "1f401b5faf953e68af92596bc247a432ebd1fe03"; - sha256 = "09gjhg923jck35c1nvcdfk4dc0r559myzmfbcd9jvjamzh50ngcr"; + rev = "02101e3045d1b813618b1899a63666911587076b"; + sha256 = "0jq2hn4gqp71ynk0s2i21wp975in3xv2q18xx1fwd4p0yw8h5dig"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/standoff-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/standoff-mode"; sha256 = "127bzpm1cz103f1pb860yqrh7mr0rdaivrm9p6ssd01kchl9nskp"; name = "standoff-mode"; }; @@ -55454,7 +55983,7 @@ start-menu = callPackage ({ cl-lib ? null, config-parser, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "start-menu"; - version = "20160426.725"; + version = "20160426.825"; src = fetchFromGitHub { owner = "lujun9972"; repo = "el-start-menu"; @@ -55462,7 +55991,7 @@ sha256 = "1w3l8ahal9hjisny382bcw9w1nh2swpb1jzf2djww5h0i4r2h36c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/start-menu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/start-menu"; sha256 = "1k1lc9i9vcl2am9afq0ksrxwsy6kppl4i0v10h0w2fq5z374rdkv"; name = "start-menu"; }; @@ -55475,7 +56004,7 @@ stash = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "stash"; - version = "20151117.827"; + version = "20151117.927"; src = fetchFromGitHub { owner = "vermiculus"; repo = "stash.el"; @@ -55483,7 +56012,7 @@ sha256 = "0cl2y72iagmv87kg72a46a3kap2xigwnrbk2hjgvsbxv2ng5f9cr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/stash"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/stash"; sha256 = "116k40ispv7sq3jskwc1lvmhmk3jjz4j967r732s07f5h11vk1z9"; name = "stash"; }; @@ -55496,7 +56025,7 @@ state = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "state"; - version = "20160422.750"; + version = "20160422.850"; src = fetchFromGitHub { owner = "thisirs"; repo = "state"; @@ -55504,7 +56033,7 @@ sha256 = "1rjp1zsbh476njjznbsxr47x4lqs4i887yi9xvwvpcb2wcwfly81"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/state"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/state"; sha256 = "19y3n8wnbpgbpz4jxy2p7hjqxykg09arjp7s5v22yz7il3gn48l2"; name = "state"; }; @@ -55517,7 +56046,7 @@ status = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "status"; - version = "20151230.808"; + version = "20151230.908"; src = fetchFromGitHub { owner = "tromey"; repo = "emacs-status"; @@ -55525,7 +56054,7 @@ sha256 = "0jpxmzfvg4k5q3h3gn6lrg891wjzlcps2kkij1jbdjk4jkgq386i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/status"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/status"; sha256 = "0a9lqa7a5nki5711bjrmx214kah5ndqpwh3i240gdd08mcm07ps3"; name = "status"; }; @@ -55535,10 +56064,31 @@ license = lib.licenses.free; }; }) {}; + steam = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "steam"; + version = "20160427.531"; + src = fetchFromGitHub { + owner = "Kungsgeten"; + repo = "steam.el"; + rev = "a0547487ccf40aa582af3dd0d433a1b153d25246"; + sha256 = "142jamr8mi1nkjvivvkh2qgh5fch89xpg5wwi8q0b6hcqcsy8nqn"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/steam"; + sha256 = "10k408spgbxi266jk8x57zwav989is16nvwg41dknz91l76v63gw"; + name = "steam"; + }; + packageRequires = [ cl-lib ]; + meta = { + homepage = "https://melpa.org/#/steam"; + license = lib.licenses.free; + }; + }) {}; stekene-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "stekene-theme"; - version = "20141108.1411"; + version = "20141108.1511"; src = fetchFromGitHub { owner = "Fanael"; repo = "stekene-theme"; @@ -55546,7 +56096,7 @@ sha256 = "0w1qb8r6nrxi5hbf8l4247yqq754zfbxz64pqqcnw43cxk0qd4j3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/stekene-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/stekene-theme"; sha256 = "0v1kwlnrqaygzaz376a5njg9kv4yf5l35k87xga4wdd2mxfwrmf1"; name = "stekene-theme"; }; @@ -55559,7 +56109,7 @@ stem = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "stem"; - version = "20131102.609"; + version = "20131102.709"; src = fetchFromGitHub { owner = "yuutayamada"; repo = "stem"; @@ -55567,7 +56117,7 @@ sha256 = "1xc4v8a35c2vpfhza15j4f89x7vyg9bbgm7xnprij7814k8iy7p0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/stem"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/stem"; sha256 = "1625nbi2bmb7vzjz0s7y1cy7dp8lp83dayiib3nr2bfkv76fwkcq"; name = "stem"; }; @@ -55579,14 +56129,14 @@ }) {}; stgit = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: melpaBuild { pname = "stgit"; - version = "20140213.548"; + version = "20140213.648"; src = fetchgit { url = "git://repo.or.cz/stgit.git"; rev = "e4e04764009f749665636c4d11e0cafd9c4971e1"; sha256 = "02sh1cwh9rnrpnsg56qrwl1q4ffh9719v2l8wccjqgd39krj9m65"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/stgit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/stgit"; sha256 = "102s9lllrcxsqs0lgbrcljwq1l3s8ri4276wck6rcypck5zgzj89"; name = "stgit"; }; @@ -55598,13 +56148,13 @@ }) {}; sticky = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "sticky"; - version = "20101129.2052"; + version = "20101129.2152"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/sticky.el"; sha256 = "18izyia1j3w2c07qhkp9h6rnvw35m5k1brrrjhm51fpdv2xj65fy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sticky"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/sticky"; sha256 = "1xjkdwphq3m4jrazsfnzrrcrqikfdxzph3jdzkpbzk3grd4af96w"; name = "sticky"; }; @@ -55617,7 +56167,7 @@ stickyfunc-enhance = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "stickyfunc-enhance"; - version = "20150429.1314"; + version = "20150429.1414"; src = fetchFromGitHub { owner = "tuhdo"; repo = "semantic-stickyfunc-enhance"; @@ -55625,7 +56175,7 @@ sha256 = "16dxjsr5nj20blww4xpd4jzgjprzzh1nwvb810ggdmp9paf4iy0g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/stickyfunc-enhance"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/stickyfunc-enhance"; sha256 = "13dh19c3bljs83l847syqlg07g33hz6sapg6j4s4xv4skix8zfks"; name = "stickyfunc-enhance"; }; @@ -55638,7 +56188,7 @@ stock-ticker = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, request, s }: melpaBuild { pname = "stock-ticker"; - version = "20150204.452"; + version = "20150204.552"; src = fetchFromGitHub { owner = "hagleitn"; repo = "stock-ticker"; @@ -55646,7 +56196,7 @@ sha256 = "191sg32z1iagyxmbn49i1lpfihld9g9741cw2kj830s4vag4kinx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/stock-ticker"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/stock-ticker"; sha256 = "1slcjk2avybr4v9s7gglizmaxbb3yqg6s6gdbg12m3vvj3b72lfi"; name = "stock-ticker"; }; @@ -55659,7 +56209,7 @@ strie = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "strie"; - version = "20160211.1622"; + version = "20160211.1722"; src = fetchFromGitHub { owner = "jcatw"; repo = "strie.el"; @@ -55667,7 +56217,7 @@ sha256 = "1kcbkf0wbmqy9slxfqg7wsyw5n2rsaz832ibrxszb642j0l8s7pr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/strie"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/strie"; sha256 = "1ngvpbws7laqxk6mm023r5295msap12h8bh9zrsbr05yxfzhlx83"; name = "strie"; }; @@ -55680,7 +56230,7 @@ string-edit = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "string-edit"; - version = "20160411.156"; + version = "20160411.256"; src = fetchFromGitHub { owner = "magnars"; repo = "string-edit.el"; @@ -55688,7 +56238,7 @@ sha256 = "1xm7bb3cp99ahr5jrwi0p0258qcvlbddy98wmbq00kk5pihqbzsg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/string-edit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/string-edit"; sha256 = "1l1hqsfyi6pp4x4g1rk4s7x9zjc03wfmhy16izia8nkjhzz88fi8"; name = "string-edit"; }; @@ -55701,7 +56251,7 @@ string-inflection = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "string-inflection"; - version = "20150805.456"; + version = "20150805.556"; src = fetchFromGitHub { owner = "akicho8"; repo = "string-inflection"; @@ -55709,7 +56259,7 @@ sha256 = "06qs8v2pai3pyg0spmarssmrq06xg9q60wjj46s5xxichlw9pgcf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/string-inflection"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/string-inflection"; sha256 = "1vrjcg1fa5adw16s4v9dq0fid0gfazxk15z9cawz0kmnpyzz3fg2"; name = "string-inflection"; }; @@ -55722,7 +56272,7 @@ string-utils = callPackage ({ fetchFromGitHub, fetchurl, lib, list-utils, melpaBuild }: melpaBuild { pname = "string-utils"; - version = "20140508.1541"; + version = "20140508.1641"; src = fetchFromGitHub { owner = "rolandwalker"; repo = "string-utils"; @@ -55730,7 +56280,7 @@ sha256 = "1frdspm1qgksa8cpx5gkj50xk9mgz8202pgp11lqir6l3yjcj3wq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/string-utils"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/string-utils"; sha256 = "1vsvxc06fd3wardldb83i5hjfibvmiqnxvcgdns7i5i8qlsrsx4v"; name = "string-utils"; }; @@ -55742,13 +56292,13 @@ }) {}; strings = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "strings"; - version = "20151231.1807"; + version = "20151231.1907"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/strings.el"; sha256 = "1sa6wd2z2qkcnjprkkm9b945qz8d0l702sv9w15wl0lngbhw84na"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/strings"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/strings"; sha256 = "0n3239y7biq3rlg74m7nqimhf654w4snnw2zm7z84isgwzz2dphk"; name = "strings"; }; @@ -55761,7 +56311,7 @@ stripe-buffer = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "stripe-buffer"; - version = "20141208.908"; + version = "20141208.1008"; src = fetchFromGitHub { owner = "sabof"; repo = "stripe-buffer"; @@ -55769,7 +56319,7 @@ sha256 = "0dxajh72wdcwdb9ydbcm19fmp0p1drmh1niq4r69jnbn8sah0zax"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/stripe-buffer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/stripe-buffer"; sha256 = "02wkb9y6vykrn6a5nfnimaplj7ig8i8h6m2rvwv08f5ilbccj16a"; name = "stripe-buffer"; }; @@ -55782,14 +56332,14 @@ stumpwm-mode = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: melpaBuild { pname = "stumpwm-mode"; - version = "20140130.2016"; + version = "20140130.2116"; src = fetchgit { url = "git://git.savannah.nongnu.org/stumpwm.git"; rev = "61a7cf27e49e0779a53c018b2342f5f1c5cc70b4"; sha256 = "0wc2zfn0lrric9xbzdi8hj1fl3gfb2ag5fsb044zv52nkrmn2irm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/stumpwm-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/stumpwm-mode"; sha256 = "0a77mh7h7033adfbwg2fbx84789962par43q31s9msjlqw15gs86"; name = "stumpwm-mode"; }; @@ -55802,14 +56352,14 @@ stupid-indent-mode = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: melpaBuild { pname = "stupid-indent-mode"; - version = "20130816.1554"; + version = "20130816.1654"; src = fetchgit { url = "https://gist.github.com/5487564.git"; rev = "e26ff5a2c4a582c6c1940bbcd204cfeed8e65222"; sha256 = "0sw7r4sbg0vmm7gqisjdp1wansn9k64djz3p83fwmyq3qkj90ar4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/stupid-indent-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/stupid-indent-mode"; sha256 = "12y8qxxs04qzy09m734qg0857g4612qdswx2bh9jk7dp886fpd7p"; name = "stupid-indent-mode"; }; @@ -55822,7 +56372,7 @@ stylus-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, sws-mode }: melpaBuild { pname = "stylus-mode"; - version = "20150313.1012"; + version = "20150313.1112"; src = fetchFromGitHub { owner = "brianc"; repo = "jade-mode"; @@ -55830,7 +56380,7 @@ sha256 = "1q6wpjb7vhsy92li6fag34pwyil4zvcchbvfjml612aaykiys506"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/stylus-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/stylus-mode"; sha256 = "152k74q6qn2xa38v2zyd5y7ya5n26nvai5v7z5fmq7jrcndp27r5"; name = "stylus-mode"; }; @@ -55843,7 +56393,7 @@ subatomic-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "subatomic-theme"; - version = "20160126.938"; + version = "20160126.1038"; src = fetchFromGitHub { owner = "cryon"; repo = "subatomic"; @@ -55851,7 +56401,7 @@ sha256 = "1j63rzxnrzzqizh7fpd99dcgsy5hd7w4d2lpwl5armmixlycl5m8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/subatomic-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/subatomic-theme"; sha256 = "0mqas67qms492n3hn74c5nrkjpsgf9b42lp02s2dh366c075dpqc"; name = "subatomic-theme"; }; @@ -55864,7 +56414,7 @@ subatomic256-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "subatomic256-theme"; - version = "20130620.2110"; + version = "20130620.2210"; src = fetchFromGitHub { owner = "d11wtq"; repo = "subatomic256"; @@ -55872,7 +56422,7 @@ sha256 = "1w7mimyqc25phlww20l49wlafnxp6c7dwibvphg3vwl61g0llpq8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/subatomic256-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/subatomic256-theme"; sha256 = "1whjlkpkkirpnvvjryhlpzwphr1syz5zfyg4pb66i0db03hxwwcy"; name = "subatomic256-theme"; }; @@ -55885,7 +56435,7 @@ subemacs = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "subemacs"; - version = "20160105.559"; + version = "20160105.659"; src = fetchFromGitHub { owner = "kbauer"; repo = "subemacs"; @@ -55893,7 +56443,7 @@ sha256 = "10pirwc7g9vii5cyk4vg6m5g5hlap0yg9w4qy257744c67jmaxvg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/subemacs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/subemacs"; sha256 = "0sqh80jhh3v37l5af7w6k9lqvj39bd91pn6a9rwdlfk389hp90zm"; name = "subemacs"; }; @@ -55906,7 +56456,7 @@ sublime-themes = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "sublime-themes"; - version = "20160111.322"; + version = "20160111.422"; src = fetchFromGitHub { owner = "owainlewis"; repo = "emacs-color-themes"; @@ -55914,7 +56464,7 @@ sha256 = "0q9p974xvswr2sijz1rs858x9sdx0rb00lkhj5cd90abn33lb260"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sublime-themes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/sublime-themes"; sha256 = "1nahcfcy831c7w3c69i2na0r8jsdgprffgfdvh4c41cnk4rkgdqj"; name = "sublime-themes"; }; @@ -55927,7 +56477,7 @@ sublimity = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "sublimity"; - version = "20151230.927"; + version = "20151230.1027"; src = fetchFromGitHub { owner = "zk-phi"; repo = "sublimity"; @@ -55935,7 +56485,7 @@ sha256 = "1kpq7kpmhgq3vjd62rr4qsc824qcyjxm50m49r7invgnmgd78h4x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sublimity"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/sublimity"; sha256 = "1xwggaalad65cxcfvmy30f141bxhpzc3fgvwziwbzi8fygbdv4nw"; name = "sublimity"; }; @@ -55947,13 +56497,13 @@ }) {}; subr-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "subr-plus"; - version = "20151231.1807"; + version = "20151231.1907"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/subr+.el"; sha256 = "1xxf8kgxzcwwjm96isj4zg31vw63ahivr6xch5dw8wsvk0mjks9y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/subr+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/subr+"; sha256 = "1vrv64768f7rk58mqr4pq1fjyi5n5kfqk90hzrwbvblkkrmilmfs"; name = "subr-plus"; }; @@ -55966,7 +56516,7 @@ subshell-proc = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "subshell-proc"; - version = "20130122.1522"; + version = "20130122.1622"; src = fetchFromGitHub { owner = "andrewmains12"; repo = "subshell-proc"; @@ -55974,7 +56524,7 @@ sha256 = "09izm28jrzfaj469v6yd1xgjgvy6pmxarcy0rzn2ihn3c0z7mdg4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/subshell-proc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/subshell-proc"; sha256 = "1fnp49yhnhsj7paj0b25vr6r03hr5kpgcrci439ffpbd2c85fkw2"; name = "subshell-proc"; }; @@ -55987,7 +56537,7 @@ sudden-death = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "sudden-death"; - version = "20140829.738"; + version = "20140829.838"; src = fetchFromGitHub { owner = "yewton"; repo = "sudden-death.el"; @@ -55995,7 +56545,7 @@ sha256 = "1007xz4x1wgvxilv1qwf0a4y7hd7sqnnzwk2bdr12kfk7vq9cw2b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sudden-death"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/sudden-death"; sha256 = "1wrhb3d27j07i64hvjggyajm752w4mhrhq09lfvyhz6ykp1ly3fh"; name = "sudden-death"; }; @@ -56008,7 +56558,7 @@ sudo-edit = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "sudo-edit"; - version = "20160304.26"; + version = "20160304.126"; src = fetchFromGitHub { owner = "nflath"; repo = "sudo-edit"; @@ -56016,7 +56566,7 @@ sha256 = "0bscj6nziansx846rmmrpbc4wbsngq1jg70g5ncf0f14b3achaq3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sudo-edit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/sudo-edit"; sha256 = "10vz7q8m0l2dyhiy9r9nj17qlwyv032glshzljzhm1n20w8y1fq4"; name = "sudo-edit"; }; @@ -56028,13 +56578,13 @@ }) {}; sudo-ext = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "sudo-ext"; - version = "20130130.1551"; + version = "20130130.1651"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/sudo-ext.el"; sha256 = "0fpz73r52j7sk1w7my0002wg7isrp54w28nnrwk9xb9il4qpxag2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sudo-ext"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/sudo-ext"; sha256 = "1iirrpa4rnz7rm85yjg60vdfca1ipxbk3qkld8lgwwm242pvvkw3"; name = "sudo-ext"; }; @@ -56046,13 +56596,13 @@ }) {}; summarye = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "summarye"; - version = "20130328.527"; + version = "20130328.627"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/summarye.el"; sha256 = "0q5m8d6p9aqbfx17zgznkqw2jgh027xix4894wrdz91670zxd3py"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/summarye"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/summarye"; sha256 = "1znd96ixg1n90yjiny84igb7m8qsbiibn7s6bky8g6n2k7zzmq65"; name = "summarye"; }; @@ -56065,7 +56615,7 @@ sunny-day-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "sunny-day-theme"; - version = "20140413.1625"; + version = "20140413.1725"; src = fetchFromGitHub { owner = "mswift42"; repo = "sunny-day-theme"; @@ -56073,7 +56623,7 @@ sha256 = "0mhyhkjjwszwl5wzkys9pgvgx9sps9r46k1s1hpzzf4s3vi015mc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sunny-day-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/sunny-day-theme"; sha256 = "1wsfnmmbzzyggzip66vr38yyzy27blxp91wx97bafj7jpg5cyhzw"; name = "sunny-day-theme"; }; @@ -56086,7 +56636,7 @@ sunshine = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "sunshine"; - version = "20160410.1517"; + version = "20160410.1617"; src = fetchFromGitHub { owner = "aaronbieber"; repo = "sunshine.el"; @@ -56094,7 +56644,7 @@ sha256 = "0jv1shacpxqbw6pv9rlkk8z84si85alhillhb9a2s6s36kjmybk0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sunshine"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/sunshine"; sha256 = "1lxiqw7k8cpq0v6p5whgxgzqrbx3sd9174r0d4qlkrpn6rcp44vv"; name = "sunshine"; }; @@ -56107,7 +56657,7 @@ suomalainen-kalenteri = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "suomalainen-kalenteri"; - version = "20151129.504"; + version = "20151129.604"; src = fetchFromGitHub { owner = "tlikonen"; repo = "suomalainen-kalenteri"; @@ -56115,7 +56665,7 @@ sha256 = "1b637p2cyc8a83qv9vba4yamzhk08f62zykqh5p35jwvym8wkann"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/suomalainen-kalenteri"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/suomalainen-kalenteri"; sha256 = "1wzijbgcr3jc47ccr7nrdkqha16s6gw0xiccnmdczi48cvnvvlkh"; name = "suomalainen-kalenteri"; }; @@ -56128,7 +56678,7 @@ super-save = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "super-save"; - version = "20160426.929"; + version = "20160426.1029"; src = fetchFromGitHub { owner = "bbatsov"; repo = "super-save"; @@ -56136,7 +56686,7 @@ sha256 = "1frm90kssrp4s6x0g4vq4jkssh8rnrfjbgwa05igsjnsbnnfxxd1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/super-save"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/super-save"; sha256 = "0ikfw7n2rvm3xcgnj1si92ly8w75x26071ki551ims7a8sawh52p"; name = "super-save"; }; @@ -56149,7 +56699,7 @@ supergenpass = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "supergenpass"; - version = "20130329.48"; + version = "20130329.148"; src = fetchFromGitHub { owner = "ober"; repo = "sgpass"; @@ -56157,7 +56707,7 @@ sha256 = "0m02snzka243adhwwgriml133n4312lhdia3wdqjcq8y2mlp3331"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/supergenpass"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/supergenpass"; sha256 = "0ldy6j6l6rf72w0hl195rdnrabml2a5k91200s186k0r5aja4b95"; name = "supergenpass"; }; @@ -56170,7 +56720,7 @@ suscolors-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "suscolors-theme"; - version = "20160319.1943"; + version = "20160319.2043"; src = fetchFromGitHub { owner = "TheSuspiciousWombat"; repo = "suscolors-emacs"; @@ -56178,7 +56728,7 @@ sha256 = "09m2ayx8wf7impns1mkc0phkl1ql91ljgzv3ivk94vrgni7n5f93"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/suscolors-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/suscolors-theme"; sha256 = "08sh20lmhqzpxb55nmqwsfv4xd6sjirh592in7s6vl52r3hl0jkh"; name = "suscolors-theme"; }; @@ -56191,7 +56741,7 @@ svg-mode-line-themes = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, xmlgen }: melpaBuild { pname = "svg-mode-line-themes"; - version = "20150425.1506"; + version = "20150425.1606"; src = fetchFromGitHub { owner = "sabof"; repo = "svg-mode-line-themes"; @@ -56199,7 +56749,7 @@ sha256 = "14h40s0arc2i898r9yysn256z6l8jkrnmqvrdg7p7658c0klz5ic"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/svg-mode-line-themes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/svg-mode-line-themes"; sha256 = "12lnszcb9bl32n9wir7vf8xiyyv7njw4xg21aj9x4dasmidyx506"; name = "svg-mode-line-themes"; }; @@ -56212,7 +56762,7 @@ swap-buffers = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "swap-buffers"; - version = "20150506.1639"; + version = "20150506.1739"; src = fetchFromGitHub { owner = "ekazakov"; repo = "swap-buffers"; @@ -56220,7 +56770,7 @@ sha256 = "1kn70570r6x0h1xfs1vr8as27pjfanyhml140yms60gdjb4ssf9r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/swap-buffers"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/swap-buffers"; sha256 = "0ih5dhnqy3c9nlfz9m2zwy4q4jaam09ykbdqhsxx2hnwjk7p35bw"; name = "swap-buffers"; }; @@ -56233,7 +56783,7 @@ swap-regions = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "swap-regions"; - version = "20160413.1223"; + version = "20160413.1323"; src = fetchFromGitHub { owner = "xuchunyang"; repo = "swap-regions.el"; @@ -56241,7 +56791,7 @@ sha256 = "1m0apxjcj6xhbic36il1mbbril6pw2h6d9kmsb0jhibyy6mc8r78"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/swap-regions"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/swap-regions"; sha256 = "0gl4vr7wjh5gjskrwbqypaqyfigpgh379bm4l2gvbsbhahsmbj67"; name = "swap-regions"; }; @@ -56253,13 +56803,13 @@ }) {}; swbuff-x = callPackage ({ fetchurl, lib, melpaBuild, swbuff }: melpaBuild { pname = "swbuff-x"; - version = "20130607.514"; + version = "20130607.614"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/swbuff-x.el"; sha256 = "1fkicyjvanh8yk2y27sq075sarcyqhsdz0r4xhillpnv34ji98r5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/swbuff-x"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/swbuff-x"; sha256 = "1wglcxgfr839lynwsl8i7fm70sxxjidy3ib6ibz0kgiwr41rh49y"; name = "swbuff-x"; }; @@ -56272,7 +56822,7 @@ sweetgreen = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, request }: melpaBuild { pname = "sweetgreen"; - version = "20151207.1116"; + version = "20151207.1216"; src = fetchFromGitHub { owner = "CestDiego"; repo = "sweetgreen.el"; @@ -56280,7 +56830,7 @@ sha256 = "10blwlwg1ry9jznf1a6iss5s0z8sj9gc02ayf5qv92mgxvjhrhdn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sweetgreen"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/sweetgreen"; sha256 = "1v75wk0gq5fkz8i1r8pl4gqnxbv1d80isyn48w2hxj2fmdn2xhpy"; name = "sweetgreen"; }; @@ -56293,7 +56843,7 @@ swift-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "swift-mode"; - version = "20160124.436"; + version = "20160124.536"; src = fetchFromGitHub { owner = "chrisbarrett"; repo = "swift-mode"; @@ -56301,7 +56851,7 @@ sha256 = "08397a8y8hgyzwny4z9f6kgwy8d37h0iypcjps3l6lhnk35mshv0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/swift-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/swift-mode"; sha256 = "1imr53f8agfza9zxs1h1mwyhg7yaywqqffd1lsvm1m84nvxvri2d"; name = "swift-mode"; }; @@ -56314,15 +56864,15 @@ swiper = callPackage ({ emacs, fetchFromGitHub, fetchurl, ivy, lib, melpaBuild }: melpaBuild { pname = "swiper"; - version = "20160425.507"; + version = "20160428.1148"; src = fetchFromGitHub { owner = "abo-abo"; repo = "swiper"; - rev = "c24a3728538dd7d11de9f141b3ad1d8e0996c330"; - sha256 = "19vfj01x7b8f7wyx7m51z00la2r7jcwzv0n06srkvcls0wm5s1h3"; + rev = "f3690b610ae43ec21e45885166a146ce59a54baa"; + sha256 = "0bgfkp30xfl473lzrd7jrpps87v2w2bdi82mjw3lbxadfml6cspx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/swiper"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/swiper"; sha256 = "0qaia5pgsjsmrfmcdj72jmj39zq82wg4i5l2mb2z6jlf1jpbk6y9"; name = "swiper"; }; @@ -56335,7 +56885,7 @@ swiper-helm = callPackage ({ emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, swiper }: melpaBuild { pname = "swiper-helm"; - version = "20151116.530"; + version = "20151116.630"; src = fetchFromGitHub { owner = "abo-abo"; repo = "swiper-helm"; @@ -56343,7 +56893,7 @@ sha256 = "1fr9vs0574g93mq88d25nmj93hrx4d4s2d0im6wk156k2yb8ha2b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/swiper-helm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/swiper-helm"; sha256 = "011ln6vny7z5vw67cpzldxf5n6sk2hjdkllyf7v6sf4m62ws93ph"; name = "swiper-helm"; }; @@ -56356,7 +56906,7 @@ switch-window = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "switch-window"; - version = "20160229.534"; + version = "20160229.634"; src = fetchFromGitHub { owner = "dimitri"; repo = "switch-window"; @@ -56364,7 +56914,7 @@ sha256 = "09ba45zbya2a72prq13pjg9pgbs86c6kayf8q2papvr9f5yv57xa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/switch-window"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/switch-window"; sha256 = "02f0zjvlzms66w1ryhk1cbr4rqwklzvgcjfiicj0lcnqqx61m2k2"; name = "switch-window"; }; @@ -56377,7 +56927,7 @@ swoop = callPackage ({ async, emacs, fetchFromGitHub, fetchurl, ht, lib, melpaBuild, pcre2el }: melpaBuild { pname = "swoop"; - version = "20160120.1115"; + version = "20160120.1215"; src = fetchFromGitHub { owner = "ShingoFukuyama"; repo = "emacs-swoop"; @@ -56385,7 +56935,7 @@ sha256 = "10ka6f86n07xlf0z7w35db0mzp2zk4xhr6jd19kjdrn2j0ynlcw5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/swoop"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/swoop"; sha256 = "0r265rwfbl1iyclnspxpbzf2w1q0w8dnc0wv5mz5g6hhcrr0iv6g"; name = "swoop"; }; @@ -56398,7 +56948,7 @@ sws-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "sws-mode"; - version = "20150317.1445"; + version = "20150317.1545"; src = fetchFromGitHub { owner = "brianc"; repo = "jade-mode"; @@ -56406,7 +56956,7 @@ sha256 = "1q6wpjb7vhsy92li6fag34pwyil4zvcchbvfjml612aaykiys506"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sws-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/sws-mode"; sha256 = "0b12dsad0piih1qygjj0n7rni0pl8cizbzwqm9h1dr8imy53ak4i"; name = "sws-mode"; }; @@ -56419,7 +56969,7 @@ sx = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, json ? null, let-alist, lib, markdown-mode, melpaBuild }: melpaBuild { pname = "sx"; - version = "20160125.1801"; + version = "20160125.1901"; src = fetchFromGitHub { owner = "vermiculus"; repo = "sx.el"; @@ -56427,7 +56977,7 @@ sha256 = "0d0c2i8hh0wrz8vnhxpxzwj7vlrjx6lrb3cx56pn4ny9qyqfzmw3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sx"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/sx"; sha256 = "1ml1rkhhk3hkd16ij2zwng591rxs2yppsfq9gwd4ppk02if4v517"; name = "sx"; }; @@ -56440,7 +56990,7 @@ symon = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "symon"; - version = "20151118.300"; + version = "20151118.400"; src = fetchFromGitHub { owner = "zk-phi"; repo = "symon"; @@ -56448,7 +56998,7 @@ sha256 = "1mb068vgf0bbj0bdxjhd6c794bwc3wp7r6q1s49w8b24g1pfrjkq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/symon"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/symon"; sha256 = "11llnvngyc3xz8nd6nj86ism0hhs8p54wkscvs4yycbakbyn61lz"; name = "symon"; }; @@ -56461,7 +57011,7 @@ symon-lingr = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, symon }: melpaBuild { pname = "symon-lingr"; - version = "20150719.842"; + version = "20150719.942"; src = fetchFromGitHub { owner = "zk-phi"; repo = "symon-lingr"; @@ -56469,7 +57019,7 @@ sha256 = "030bglxnvrkf1f9grbhd8n11j4c6sxpabpjdr1ryx522v01fvx8j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/symon-lingr"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/symon-lingr"; sha256 = "0kyhmw25cn10b4jv2yx7bvp8zkwcswiidpk4amyaisw25820gkv1"; name = "symon-lingr"; }; @@ -56482,7 +57032,7 @@ sync-recentf = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "sync-recentf"; - version = "20160326.1501"; + version = "20160326.1601"; src = fetchFromGitHub { owner = "ffevotte"; repo = "sync-recentf"; @@ -56490,7 +57040,7 @@ sha256 = "006siydqxqds0qqds0zxn821dk4pw14wyymyp03n594wgqzw7m8q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sync-recentf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/sync-recentf"; sha256 = "17aji2vcw6zfd823anzwj8pcgyxamxr87bnni085jvlz0vx6gh9c"; name = "sync-recentf"; }; @@ -56503,15 +57053,15 @@ syndicate = callPackage ({ evil, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "syndicate"; - version = "20160409.1119"; + version = "20160409.1219"; src = fetchFromGitHub { owner = "KNX32542"; repo = "syndicate"; - rev = "36d2edb542c7ae10847cfd828a828db5e02f967f"; - sha256 = "0593fx8mfl0vaaxcj65mi8hg79xhhwa4scan2nmic9grh25hs77m"; + rev = "b839aaba0c8583a3254476b53976e3caac4f89a9"; + sha256 = "01bymbsvbisnpb2wpqxhrvqx6cj57nh4xvpsbsr5rr1h4pm5jkzl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/syndicate"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/syndicate"; sha256 = "06nmldcw5dy2shhpk6nyix7gs57gsr5s9ksj57xgg8y2j3j0da95"; name = "syndicate"; }; @@ -56524,7 +57074,7 @@ synonymous = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, request }: melpaBuild { pname = "synonymous"; - version = "20150909.1034"; + version = "20150909.1134"; src = fetchFromGitHub { owner = "toroidal-code"; repo = "synonymous.el"; @@ -56532,7 +57082,7 @@ sha256 = "02xnfkmpvjicckmp9is42fnavy9pd95s99zmf1wylxdji2hhpjxw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/synonymous"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/synonymous"; sha256 = "0vawa9qwvv6z1i7vzhkjdl1l9r1yham48yn5y8w8g1xyhxxp6rs5"; name = "synonymous"; }; @@ -56544,13 +57094,13 @@ }) {}; synonyms = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "synonyms"; - version = "20160328.854"; + version = "20160328.954"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/synonyms.el"; sha256 = "1zkrh1krhjmhb924dlihfnmjf4gigk9lqkai8aal67h90g2q2dsz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/synonyms"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/synonyms"; sha256 = "0rnq97jpr047gpkxhw22jj3gw09r45vn6fwkzxnxjzcmsyk492d0"; name = "synonyms"; }; @@ -56563,7 +57113,7 @@ synosaurus = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "synosaurus"; - version = "20151119.1249"; + version = "20151119.1349"; src = fetchFromGitHub { owner = "hpdeifel"; repo = "synosaurus"; @@ -56571,7 +57121,7 @@ sha256 = "1zz9rnwaclr95fpjyabv5rlhk36n2k8f1lzz6yqh964hv8i9562s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/synosaurus"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/synosaurus"; sha256 = "06a48ajpickf4qr1bc14skfr8khnjjph7c35b7ajfy8jw2zwavpn"; name = "synosaurus"; }; @@ -56584,7 +57134,7 @@ syntactic-sugar = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "syntactic-sugar"; - version = "20140508.1541"; + version = "20140508.1641"; src = fetchFromGitHub { owner = "rolandwalker"; repo = "syntactic-sugar"; @@ -56592,7 +57142,7 @@ sha256 = "0zi11540wwcl93xcgd2yf6b72zv01zkaqbf1jfbksg82k9038m2d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/syntactic-sugar"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/syntactic-sugar"; sha256 = "12b2vpvz5h4wzxrk8jrbgc8v0w6bzzvxcyfs083fi1791qq1rw7r"; name = "syntactic-sugar"; }; @@ -56605,14 +57155,14 @@ syntax-subword = callPackage ({ fetchhg, fetchurl, lib, melpaBuild }: melpaBuild { pname = "syntax-subword"; - version = "20160205.1554"; + version = "20160205.1654"; src = fetchhg { url = "https://bitbucket.com/jpkotta/syntax-subword"; rev = "88e9bf1d4874"; sha256 = "15zvh6dk02rm16zs6c9zvw1w76ycn61g3cpx6jb3456ff9zn6m9m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/syntax-subword"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/syntax-subword"; sha256 = "1as89ffqz2h69fdwybgs5wibnrvskm7hd58vagfjkla9pjlpffpm"; name = "syntax-subword"; }; @@ -56625,7 +57175,7 @@ syslog-mode = callPackage ({ fetchFromGitHub, fetchurl, hide-lines, lib, melpaBuild }: melpaBuild { pname = "syslog-mode"; - version = "20140217.1818"; + version = "20140217.1918"; src = fetchFromGitHub { owner = "vapniks"; repo = "syslog-mode"; @@ -56633,7 +57183,7 @@ sha256 = "1sxpda380c9wnnf5d72lrcqm6dkihf48cgsjcckzf706cc00ksf4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/syslog-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/syslog-mode"; sha256 = "15kh2v8jsw04vyh2lmh1ndpxli3cwp6yq66hl8mwb1i3g429az19"; name = "syslog-mode"; }; @@ -56646,7 +57196,7 @@ system-specific-settings = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "system-specific-settings"; - version = "20140818.957"; + version = "20140818.1057"; src = fetchFromGitHub { owner = "DarwinAwardWinner"; repo = "emacs-system-specific-settings"; @@ -56654,7 +57204,7 @@ sha256 = "1hixilnnybv2v3p1wpn7a0ybwah17grawszs3jycsjgzahpgckv7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/system-specific-settings"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/system-specific-settings"; sha256 = "1ydmxi8aw2lf78wv4m39yswbqkmcadqg0wmzg9s8b5h9bxxwvppp"; name = "system-specific-settings"; }; @@ -56667,16 +57217,16 @@ systemd = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "systemd"; - version = "20160101.134"; + version = "20160502.1336"; src = fetchFromGitHub { owner = "holomorph"; repo = "systemd-mode"; - rev = "dbf78305d435888ef251795c65e702b424e9956b"; - sha256 = "1z7zi0wcms55x0ar9jv02g7gbzsn4k887aigpgv4xghbdiyp7lp0"; + rev = "f74f3c8520f7fc41654bcc61f02e17d374d081e6"; + sha256 = "04s7r1fphskv643jd32jdkzimlwphgx67xnbl5361fcinq04j9s7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/systemd"; - sha256 = "1biais0cmidy3d0hf2ifdlr6qv1z8k8c8bczi07bsfk4md3idbir"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/systemd"; + sha256 = "1ykvm8mfi3fjvrkfcy9qn0sr9mhwm9x1svrmrd0gyqk418clk5i3"; name = "systemd"; }; packageRequires = [ emacs ]; @@ -56688,7 +57238,7 @@ systemtap-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "systemtap-mode"; - version = "20151122.1340"; + version = "20151122.1440"; src = fetchFromGitHub { owner = "ruediger"; repo = "systemtap-mode"; @@ -56696,7 +57246,7 @@ sha256 = "0343ss3y9i40y3i9rr7p7bb4k9dj950zyvdv44q1abw2xrfd2xwd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/systemtap-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/systemtap-mode"; sha256 = "1l2jx6mvph0q2pdlhq7p4vwfw72rfl8k1rwi504bbkr5n5xwhhhz"; name = "systemtap-mode"; }; @@ -56709,7 +57259,7 @@ ta = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ta"; - version = "20150604.1224"; + version = "20150604.1324"; src = fetchFromGitHub { owner = "kuanyui"; repo = "ta.el"; @@ -56717,7 +57267,7 @@ sha256 = "054l3imxk9ivq361cr15q1wym07mw3s8xzjkzqlihrfvadsq37ym"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ta"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ta"; sha256 = "0kn2k4n0xfwsrniaqb36v3rxj2pf2sai3bmjksbn1g2kf5g156ll"; name = "ta"; }; @@ -56730,7 +57280,7 @@ tab-group = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "tab-group"; - version = "20140306.850"; + version = "20140306.950"; src = fetchFromGitHub { owner = "tarao"; repo = "tab-group-el"; @@ -56738,7 +57288,7 @@ sha256 = "0lfvgbgvsm61kv5mcjnhnfjcnr7fy1015y0hndkf9xvdlw4hahr4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tab-group"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/tab-group"; sha256 = "1i5lxpf3wmqnqj9mzgcn4gp1gjxp737awrzl1dml5wnarbbj4fs9"; name = "tab-group"; }; @@ -56751,7 +57301,7 @@ tab-jump-out = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "tab-jump-out"; - version = "20151005.2030"; + version = "20151005.2130"; src = fetchFromGitHub { owner = "cheunghy"; repo = "tab-jump-out"; @@ -56759,7 +57309,7 @@ sha256 = "0h7sfbca1nzcjylwl7zp25yj6wxnlx8g8a50zc6sg6jg4rggi2fm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tab-jump-out"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/tab-jump-out"; sha256 = "0nlbyzym8l8g9w2xvykpcl5r449v30gal2k1dnz74rq4y8w4rh7n"; name = "tab-jump-out"; }; @@ -56772,7 +57322,7 @@ tabbar = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "tabbar"; - version = "20141109.343"; + version = "20141109.443"; src = fetchFromGitHub { owner = "dholm"; repo = "tabbar"; @@ -56780,7 +57330,7 @@ sha256 = "0n23nnig1lgjamrzsa91p2aplh7gpj2vkp951i9fpf49c6xpyj3x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tabbar"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/tabbar"; sha256 = "1y376nz1xmchwns4fz8dixbb7hbqh4mln78zvsh7y32il98wzvx9"; name = "tabbar"; }; @@ -56793,7 +57343,7 @@ tabbar-ruler = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, mode-icons, powerline, tabbar }: melpaBuild { pname = "tabbar-ruler"; - version = "20160426.612"; + version = "20160426.712"; src = fetchFromGitHub { owner = "mattfidler"; repo = "tabbar-ruler.el"; @@ -56801,7 +57351,7 @@ sha256 = "0nsd2dngxs9fr211isfhvifzn0lzalgl6bx9j8p24gxyprkjpg3d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tabbar-ruler"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/tabbar-ruler"; sha256 = "10dwjj6r74g9rzdd650wa1wxhqc0q6dmff4j0qbbhmjsxvsr3y0d"; name = "tabbar-ruler"; }; @@ -56814,15 +57364,15 @@ tablist = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "tablist"; - version = "20150619.18"; + version = "20160424.535"; src = fetchFromGitHub { owner = "politza"; repo = "tablist"; - rev = "ef38312867bc0268b1584dd890b1c420bb77ec11"; - sha256 = "0gy9hxm7bca0l1hfy2pzn86avpifrz3bs8xzpicj4kxw5wi4ygns"; + rev = "f13b8f048d0bde14bcf4ee4c9006fcd875b28783"; + sha256 = "013gkl672vmrji03wd74azcq390lgcr71i5c5qbs0p1v4rcbvqd2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tablist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/tablist"; sha256 = "0c10g86xjhzpmc2sqjmzcmi393qskyw6d9bydqzjk3ffjzklm45p"; name = "tablist"; }; @@ -56835,7 +57385,7 @@ tabula-rasa = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "tabula-rasa"; - version = "20141215.2347"; + version = "20141216.47"; src = fetchFromGitHub { owner = "idomagal"; repo = "Tabula-Rasa"; @@ -56843,7 +57393,7 @@ sha256 = "1dbjfq9a7a5s9c18nrp4kcda64jkg5cp8na31kxw0hjcn98dgqa8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tabula-rasa"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/tabula-rasa"; sha256 = "14j92inssmm61bn475gyn0dn0rv8kvfnqyl1zq3xliy7a0jn58zz"; name = "tabula-rasa"; }; @@ -56856,7 +57406,7 @@ tagedit = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "tagedit"; - version = "20160418.231"; + version = "20160418.331"; src = fetchFromGitHub { owner = "magnars"; repo = "tagedit"; @@ -56864,7 +57414,7 @@ sha256 = "0h6gfy39dd0fcz625d255nykybkjvd16qmd3icpg5qzn41cgc96x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tagedit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/tagedit"; sha256 = "0vfkbrxmrw4fwdz324s734zxdxm2nj3df6i8m6lgb9pizqyp2g6z"; name = "tagedit"; }; @@ -56877,7 +57427,7 @@ take-off = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, web-server }: melpaBuild { pname = "take-off"; - version = "20140531.417"; + version = "20140531.517"; src = fetchFromGitHub { owner = "tburette"; repo = "take-off"; @@ -56885,7 +57435,7 @@ sha256 = "13zwlb5805cpv0pbr7fj5b4crlg7lb0ibslvcpszm0cz6rlifcvf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/take-off"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/take-off"; sha256 = "05vlajmirbp62rpbdwa2bimpzyl9xc331gg0lhn2rkivc0hma2ar"; name = "take-off"; }; @@ -56898,14 +57448,14 @@ tango-2-theme = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: melpaBuild { pname = "tango-2-theme"; - version = "20120312.1525"; + version = "20120312.1625"; src = fetchgit { url = "https://gist.github.com/2024464.git"; rev = "64e44c98e41ebbe3b827d54280e3b9615787daaa"; sha256 = "1lqkazis9pfcfdsb2lar4l1n4pd085v60xmnlkdrdllwamqachkk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tango-2-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/tango-2-theme"; sha256 = "1a9qmz99h99gpd0sxqb71c08wr8pm3bzsg3p4cvf3vcirvav9lq6"; name = "tango-2-theme"; }; @@ -56918,7 +57468,7 @@ tango-plus-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "tango-plus-theme"; - version = "20140425.1711"; + version = "20140425.1811"; src = fetchFromGitHub { owner = "tmalsburg"; repo = "tango-plus-theme"; @@ -56926,7 +57476,7 @@ sha256 = "1gfn1yyyb9p2fi17wra1yf2j96cfjw0sifgk3c0vl63h3vmiyvjf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tango-plus-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/tango-plus-theme"; sha256 = "1bx9qcwvybgd0rg8a9rag8xvb5ljrwfnm5nvq793ncvbdvq6vrh5"; name = "tango-plus-theme"; }; @@ -56939,7 +57489,7 @@ tangotango-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "tangotango-theme"; - version = "20150702.304"; + version = "20150702.404"; src = fetchFromGitHub { owner = "juba"; repo = "color-theme-tangotango"; @@ -56947,7 +57497,7 @@ sha256 = "11xb7xpmxvgv7mrjd2vlbjz3h5fa541aydv6bdxngjq6y3qn6wsp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tangotango-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/tangotango-theme"; sha256 = "05cnvyqmh5h5mqys7qs7d9knzxzmi2x0j1avp77x5l5njzzv59s2"; name = "tangotango-theme"; }; @@ -56960,7 +57510,7 @@ tao-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "tao-theme"; - version = "20160330.850"; + version = "20160330.950"; src = fetchFromGitHub { owner = "11111000000"; repo = "tao-theme-emacs"; @@ -56968,7 +57518,7 @@ sha256 = "0y9dd39wajiafh7kql870wg2da60nvls35pymhmzrvnwnbsw8pys"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tao-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/tao-theme"; sha256 = "0gl6zzk5ha6vl2xxf5fcnv1k42cw4axdjdcirr1c4r8jwdq3nl3a"; name = "tao-theme"; }; @@ -56978,10 +57528,31 @@ license = lib.licenses.free; }; }) {}; + tawny-mode = callPackage ({ cider, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "tawny-mode"; + version = "20160504.1346"; + src = fetchFromGitHub { + owner = "phillord"; + repo = "tawny-owl"; + rev = "171768c8aacd855ae3c56caa6cdc8545fcb0cd34"; + sha256 = "0bwp4wiwsp73j8wynvglx7hscz4sa5yxy8q8g4vbkbqdipaavw71"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/tawny-mode"; + sha256 = "1xaw1six1n6rw1283fdyl15xcf6m7ngvq6gqlz0xzpf232c4b0kr"; + name = "tawny-mode"; + }; + packageRequires = [ cider emacs ]; + meta = { + homepage = "https://melpa.org/#/tawny-mode"; + license = lib.licenses.free; + }; + }) {}; tbx2org = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "tbx2org"; - version = "20140224.959"; + version = "20140224.1059"; src = fetchFromGitHub { owner = "istib"; repo = "tbx2org"; @@ -56989,7 +57560,7 @@ sha256 = "1jp80qywcphql1ngd4fr24lqdfwrw0bw6q9hgq5vmzgjwfxwxwd4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tbx2org"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/tbx2org"; sha256 = "1yvkw65la4w12c4w6l9ai73lzng170wv4b8gry99m2bakw3wr8m8"; name = "tbx2org"; }; @@ -57002,7 +57573,7 @@ tc = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "tc"; - version = "20150113.2126"; + version = "20150113.2226"; src = fetchFromGitHub { owner = "kozo2"; repo = "tc"; @@ -57010,7 +57581,7 @@ sha256 = "1xpkrlfqb0np9zyxk41f3pxfkw98ii4q0xh8whq4llv5bmfxynzk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/tc"; sha256 = "13qdnfslnik4f97lz9bxayyhgcp1knh5gaqy00ps863j3vpzjb9s"; name = "tc"; }; @@ -57023,7 +57594,7 @@ tco = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "tco"; - version = "20140412.812"; + version = "20140412.912"; src = fetchFromGitHub { owner = "Wilfred"; repo = "tco.el"; @@ -57031,7 +57602,7 @@ sha256 = "1krway6iw62dlr4ak3kj9llqh48xjf3d84nlincap7gkrw886l4q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tco"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/tco"; sha256 = "0hfrzwjlgynk3mydrpmic9mckak37r22fdglrfas6zdihgrg152f"; name = "tco"; }; @@ -57044,7 +57615,7 @@ tdd-status-mode-line = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "tdd-status-mode-line"; - version = "20131123.1116"; + version = "20131123.1216"; src = fetchFromGitHub { owner = "algernon"; repo = "tdd-status-mode-line"; @@ -57052,7 +57623,7 @@ sha256 = "1jyz6z5bk1gvmknphcnvjvbl329zm8m40yl0a1hfaj8fvhwyzdw5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tdd-status-mode-line"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/tdd-status-mode-line"; sha256 = "0z1q1aw14xq72nfx7mmvz7pr2x4960l45z02jva35zxzvb1mvsgq"; name = "tdd-status-mode-line"; }; @@ -57065,7 +57636,7 @@ tea-time = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "tea-time"; - version = "20120331.320"; + version = "20120331.420"; src = fetchFromGitHub { owner = "konzeptual"; repo = "tea-time"; @@ -57073,7 +57644,7 @@ sha256 = "0b4cwkwkc4i8lc4j30xc9d6xskm3gqrc2dij60ya75h92aj0lj40"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tea-time"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/tea-time"; sha256 = "0qypwf0pgsixq6c5avbwp81i3ayy9dd2fngzdvq14pax913q8pg1"; name = "tea-time"; }; @@ -57086,7 +57657,7 @@ telepathy = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "telepathy"; - version = "20131209.658"; + version = "20131209.758"; src = fetchFromGitHub { owner = "NicolasPetton"; repo = "telepathy.el"; @@ -57094,7 +57665,7 @@ sha256 = "16kr1p4lzi1ysd5r2dh0mxk60zsm5fvwa9345nfyrgdic340yscc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/telepathy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/telepathy"; sha256 = "0c3d6vk7d6vqzjndlym2kk7d2zm0b15ac4142ir03p6f19rqq9pr"; name = "telepathy"; }; @@ -57107,7 +57678,7 @@ telephone-line = callPackage ({ cl-generic, cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, seq }: melpaBuild { pname = "telephone-line"; - version = "20160302.1715"; + version = "20160302.1815"; src = fetchFromGitHub { owner = "dbordak"; repo = "telephone-line"; @@ -57115,7 +57686,7 @@ sha256 = "1m5224k1chb788mgj7j6cbma2xh5p7avvb1ax0jdafv5lfgikka4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/telephone-line"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/telephone-line"; sha256 = "0dyh9h1yk9y0217b6rxsm7m372n910vpfgw5w23lkkrwa8x8qpx3"; name = "telephone-line"; }; @@ -57128,7 +57699,7 @@ ten-hundred-mode = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ten-hundred-mode"; - version = "20160409.751"; + version = "20160409.851"; src = fetchFromGitHub { owner = "aaron-em"; repo = "ten-hundred-mode.el"; @@ -57136,7 +57707,7 @@ sha256 = "17633jachcgnibmvx433ygcfmz3j6hzli5mqbqg83r27chiq5mjx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ten-hundred-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ten-hundred-mode"; sha256 = "17v38h33ka70ynq72mvma2chvlnm1k2amyvk62c65iv67rwilky3"; name = "ten-hundred-mode"; }; @@ -57146,43 +57717,43 @@ license = lib.licenses.free; }; }) {}; - term-alert = callPackage ({ alert, fetchFromGitHub, fetchurl, lib, melpaBuild, term-cmd }: + term-alert = callPackage ({ alert, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, term-cmd }: melpaBuild { pname = "term-alert"; - version = "20141121.1405"; + version = "20160507.256"; src = fetchFromGitHub { owner = "CallumCameron"; repo = "term-alert"; - rev = "46cc46dba6957a7081a360692e58b9bffb2cfa86"; - sha256 = "0sa3chk16s830lqhcd8d3bwdfmjg239ywb7jm6lhwshydssh34nk"; + rev = "38f1efca3cc323f9481192abdabbadcc1aede4d1"; + sha256 = "1xy4qw31wl1510d3d0z5gc0bn95lx2zqm13b38srs61gip5wp7bc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/term-alert"; - sha256 = "0x4rc1y311ivaj6mlks1j8sgzrrwqn8vx171vw7s1kgf1qzk826n"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/term-alert"; + sha256 = "02qvfhklysfk1fd4ibdngf4crp9k5ab11zgg90hi1sp429a53f3m"; name = "term-alert"; }; - packageRequires = [ alert term-cmd ]; + packageRequires = [ alert emacs f term-cmd ]; meta = { homepage = "https://melpa.org/#/term-alert"; license = lib.licenses.free; }; }) {}; - term-cmd = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + term-cmd = callPackage ({ dash, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "term-cmd"; - version = "20160221.627"; + version = "20160506.1212"; src = fetchFromGitHub { owner = "CallumCameron"; repo = "term-cmd"; - rev = "f478328fd225d146ca8979245724302e976f4e53"; - sha256 = "15fcl5amivjdcwprj3dwrkn17z8a0q0zl8smyryjcqpkw66xrb7i"; + rev = "b6bb69ccdfcae8b40324a0420ff57aa21065df9a"; + sha256 = "1hmxh1cbr5xknvh0xgcx6yx6rskzccmhay99653ai0slzvg8gmhh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/term-cmd"; - sha256 = "0fn4f32zpl0p2lid159q59lzjv4xqmc23a64kcclqp9db8b1m5fy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/term-cmd"; + sha256 = "0pbz9fy9rjfpzspwq78ggf1wcvjslwvj8fvc05w4g56ydza0gqi4"; name = "term-cmd"; }; - packageRequires = []; + packageRequires = [ dash emacs f ]; meta = { homepage = "https://melpa.org/#/term-cmd"; license = lib.licenses.free; @@ -57191,7 +57762,7 @@ term-plus = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "term-plus"; - version = "20160404.555"; + version = "20160404.655"; src = fetchFromGitHub { owner = "tarao"; repo = "term-plus-el"; @@ -57199,7 +57770,7 @@ sha256 = "0ca82vj61inn41xzk36a91g73gpg38nya4r9ajc2ldjqa5z1zdj8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/term+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/term+"; sha256 = "12lvfspqmyrapmbz3x997vf160927d325y50kxdx3s6p81r7n2n8"; name = "term-plus"; }; @@ -57212,7 +57783,7 @@ term-plus-key-intercept = callPackage ({ fetchFromGitHub, fetchurl, key-intercept, lib, melpaBuild, term-plus }: melpaBuild { pname = "term-plus-key-intercept"; - version = "20140211.150"; + version = "20140211.250"; src = fetchFromGitHub { owner = "tarao"; repo = "term-plus-ki-el"; @@ -57220,7 +57791,7 @@ sha256 = "1dql2w8xkdw52zlrc2p9x391zn8wv4dj8a6293p4s08if7gg260w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/term+key-intercept"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/term+key-intercept"; sha256 = "1564a86950xdwsrwinrs118bjsfmbv8gicq0c2dfr827v5b6zrlb"; name = "term-plus-key-intercept"; }; @@ -57233,7 +57804,7 @@ term-plus-mux = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, tab-group, term-plus }: melpaBuild { pname = "term-plus-mux"; - version = "20140211.149"; + version = "20140211.249"; src = fetchFromGitHub { owner = "tarao"; repo = "term-plus-mux-el"; @@ -57241,7 +57812,7 @@ sha256 = "12gfvcf7hl29xhg231cx76q04ll7cvfpvhkb0qs3qn1sqb50fs2q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/term+mux"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/term+mux"; sha256 = "129kzjpi5nzagqkjfikx9i7k6489dy7d3pd7ggn59p4cnh3r2rhh"; name = "term-plus-mux"; }; @@ -57254,7 +57825,7 @@ term-run = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "term-run"; - version = "20151228.305"; + version = "20151228.405"; src = fetchFromGitHub { owner = "10sr"; repo = "term-run-el"; @@ -57262,7 +57833,7 @@ sha256 = "149pl3zxg5kriydk5h6j95jyly6i23w4w4g4a99s4zi6ljiny6c6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/term-run"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/term-run"; sha256 = "1bx3s68rgr9slsw9k01gfg7sxd4z7sarg4pi2ivril7108mhg2cs"; name = "term-run"; }; @@ -57275,7 +57846,7 @@ termbright-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "termbright-theme"; - version = "20151030.2135"; + version = "20151030.2235"; src = fetchFromGitHub { owner = "bmastenbrook"; repo = "termbright-theme-el"; @@ -57283,7 +57854,7 @@ sha256 = "0gfsqpza8phvma5y3ck0n6p197x1i33w39m3c7jmja4ml121n73d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/termbright-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/termbright-theme"; sha256 = "14q88qdbnyzxr8sr8i5glj674sb4150b9y6nag0dqrxs629is6xj"; name = "termbright-theme"; }; @@ -57296,15 +57867,15 @@ tern = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, json ? null, lib, melpaBuild }: melpaBuild { pname = "tern"; - version = "20160425.859"; + version = "20160425.959"; src = fetchFromGitHub { owner = "ternjs"; repo = "tern"; - rev = "2dcbf9bb143fe47631b3c20862643ec5b555c496"; - sha256 = "1ylwz7pxd63qafbvjwafxqgl9m4ri37q4yw4r9lsffhc1vrc8sy3"; + rev = "32499af2fab5199fde221137a0a4df19af2cb8d3"; + sha256 = "070lbg26yvp60bfl2k2q3j4zkbshj3z74mf636h0ril0zzpz48na"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tern"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/tern"; sha256 = "1am97ssslkyijpvgk4nldi67ws48g1kpj6gisqzajrrlw5q93wvd"; name = "tern"; }; @@ -57317,15 +57888,15 @@ tern-auto-complete = callPackage ({ auto-complete, cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, tern }: melpaBuild { pname = "tern-auto-complete"; - version = "20151123.853"; + version = "20151123.953"; src = fetchFromGitHub { owner = "ternjs"; repo = "tern"; - rev = "2dcbf9bb143fe47631b3c20862643ec5b555c496"; - sha256 = "1ylwz7pxd63qafbvjwafxqgl9m4ri37q4yw4r9lsffhc1vrc8sy3"; + rev = "32499af2fab5199fde221137a0a4df19af2cb8d3"; + sha256 = "070lbg26yvp60bfl2k2q3j4zkbshj3z74mf636h0ril0zzpz48na"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tern-auto-complete"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/tern-auto-complete"; sha256 = "1i99b4awph50ygcqsnppm1h48hbf8cpq1ppd4swakrwgmcy2mn26"; name = "tern-auto-complete"; }; @@ -57338,7 +57909,7 @@ tern-django = callPackage ({ emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, tern }: melpaBuild { pname = "tern-django"; - version = "20160221.1323"; + version = "20160221.1423"; src = fetchFromGitHub { owner = "proofit404"; repo = "tern-django"; @@ -57346,7 +57917,7 @@ sha256 = "00nv6j18s6983raajfcrxfg5rfz68cgf88zrdp7fhf9l0iicim1q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tern-django"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/tern-django"; sha256 = "1pjaaffadaw8h2n7yv01ks19gw59dmh8bp8vw51hx1082r3yfvv0"; name = "tern-django"; }; @@ -57359,15 +57930,15 @@ terraform-mode = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, hcl-mode, lib, melpaBuild }: melpaBuild { pname = "terraform-mode"; - version = "20151226.657"; + version = "20160502.2017"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-terraform-mode"; - rev = "6157690efce03ff20b16b85e2be6b0964efec2fb"; - sha256 = "0mz2yl9jaw7chzv9d9hhv7gcvdwwvi676y9wpn7vp85hxpda7xg7"; + rev = "3458515359c1f3c82b40e72317b7dd49c05ea873"; + sha256 = "1k0v56v7mwpb5p228c0g252szpxvpqswrmjfpk75kh32v56wp5xi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/terraform-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/terraform-mode"; sha256 = "1m3s390mn4pba7zk17xfk045dqr4rrpv5gw63jm18fyqipsi6scn"; name = "terraform-mode"; }; @@ -57380,7 +57951,7 @@ test-case-mode = callPackage ({ fetchFromGitHub, fetchurl, fringe-helper, lib, melpaBuild }: melpaBuild { pname = "test-case-mode"; - version = "20130525.934"; + version = "20130525.1034"; src = fetchFromGitHub { owner = "ieure"; repo = "test-case-mode"; @@ -57388,7 +57959,7 @@ sha256 = "1r3fmb8cshgh9pppdvydfcrzlmb9cgz4m04rgv69c5xv8clwcmbr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/test-case-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/test-case-mode"; sha256 = "1iba97yvbi5vr7gvc58gq2ah6jg2s7apc9ssq7mdzki823n8z2qi"; name = "test-case-mode"; }; @@ -57401,7 +57972,7 @@ test-kitchen = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "test-kitchen"; - version = "20151027.627"; + version = "20151027.727"; src = fetchFromGitHub { owner = "jjasghar"; repo = "test-kitchen-el"; @@ -57409,7 +57980,7 @@ sha256 = "125k13sqgxk963c04zn49jidvzx0hl0s4vvc9jpffgq8aq0mnnmr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/test-kitchen"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/test-kitchen"; sha256 = "1bl3yvj56dq147yplrcwphcxiwvmx5n97y4qpkm9imiv8cnjm1g0"; name = "test-kitchen"; }; @@ -57422,7 +57993,7 @@ test-simple = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "test-simple"; - version = "20160303.236"; + version = "20160303.336"; src = fetchFromGitHub { owner = "rocky"; repo = "emacs-test-simple"; @@ -57430,7 +58001,7 @@ sha256 = "0i38pzqi2ih3ckfjz323d3bc3p8y9syfjr96im16wxrs1c77h814"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/test-simple"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/test-simple"; sha256 = "1l6y77fqd0l0mh2my23psi66v5ya6pbr2hgvcbsaqjnpmfm90w3g"; name = "test-simple"; }; @@ -57443,7 +58014,7 @@ textile-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "textile-mode"; - version = "20151203.253"; + version = "20151203.353"; src = fetchFromGitHub { owner = "juba"; repo = "textile-mode"; @@ -57451,7 +58022,7 @@ sha256 = "1qcd7vdg63q80zwz8ziaznllq1x7micmljm72s6sh3720rb5aiz2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/textile-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/textile-mode"; sha256 = "0c1l7ml9b1zipk5fhmhirrh070h0qwwiagdk84i04yvdmmcjw2nf"; name = "textile-mode"; }; @@ -57464,7 +58035,7 @@ textmate = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "textmate"; - version = "20110816.1646"; + version = "20110816.1746"; src = fetchFromGitHub { owner = "defunkt"; repo = "textmate.el"; @@ -57472,7 +58043,7 @@ sha256 = "1b7xxz1i84azmbz8rqpxdn18avmnqlj87hfrpbngbf6pj5h9jqjh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/textmate"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/textmate"; sha256 = "119w944pwarpqzcr9vys17svy1rkfs9hiln8903q9ff4lnjkpf1v"; name = "textmate"; }; @@ -57485,7 +58056,7 @@ textmate-to-yas = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "textmate-to-yas"; - version = "20160409.1208"; + version = "20160409.1308"; src = fetchFromGitHub { owner = "mattfidler"; repo = "textmate-to-yas.el"; @@ -57493,7 +58064,7 @@ sha256 = "1bz5ys36wd00clq9w3ahqpras368aj2b9d4bl32qc6dyp8jfknmz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/textmate-to-yas"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/textmate-to-yas"; sha256 = "04agz4a41h0givfdw88qjd3c7pd418qyigsij4la5f37j5rh338l"; name = "textmate-to-yas"; }; @@ -57505,13 +58076,13 @@ }) {}; tfs = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "tfs"; - version = "20120508.1320"; + version = "20120508.1420"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/tfs.el"; sha256 = "16byw8ix7bjh5ldr8rymisq2bhc5sh7db6rhpf0x28yd6mmzn73v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tfs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/tfs"; sha256 = "10szb9mni37s2blvhl1spj96narmkrv8zhrryw9q1251z8laq5v0"; name = "tfs"; }; @@ -57524,7 +58095,7 @@ theme-changer = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "theme-changer"; - version = "20130725.2119"; + version = "20130725.2219"; src = fetchFromGitHub { owner = "hadronzoo"; repo = "theme-changer"; @@ -57532,7 +58103,7 @@ sha256 = "0njmn5dy773v9kmwclw1m79rh52xnxl8mswcaagni2z3dvlvw4m8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/theme-changer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/theme-changer"; sha256 = "1qbmsghkl5gs728q0gaalc7p8q7nzv3l045jc0jdxxnb7na3gc5w"; name = "theme-changer"; }; @@ -57545,7 +58116,7 @@ theme-looper = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "theme-looper"; - version = "20150723.1304"; + version = "20150723.1404"; src = fetchFromGitHub { owner = "myTerminal"; repo = "theme-looper"; @@ -57553,7 +58124,7 @@ sha256 = "1kd4mazrcy5xamkvvrwsmcx63g0gp5w4264kxbk3d25bjqcf8rmj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/theme-looper"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/theme-looper"; sha256 = "02hz9k4ybpp4i8ik2av9rg240sjgicbf6w24zn67dmw4nc4lp9c5"; name = "theme-looper"; }; @@ -57566,7 +58137,7 @@ therapy = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "therapy"; - version = "20151113.1353"; + version = "20151113.1453"; src = fetchFromGitHub { owner = "abingham"; repo = "therapy"; @@ -57574,7 +58145,7 @@ sha256 = "12kz4alyf3y2i7lkvi26hcxy55v0blsrxv5srx9fv5jhxkdz1vq1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/therapy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/therapy"; sha256 = "0y040ghb0y6aq0nchqr09vapz6h6112rkwxkqsx0v7xmqrqfjvhh"; name = "therapy"; }; @@ -57586,13 +58157,13 @@ }) {}; thesaurus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "thesaurus"; - version = "20121125.1337"; + version = "20121125.1437"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/thesaurus.el"; sha256 = "0zcyasdzb7dvmld8418cy2mg8mpdx01bv44cm0sp5950scrypsaq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/thesaurus"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/thesaurus"; sha256 = "1nyjk9jr1xvdkil13ylfsgg7q2sx71za05gi8m2v5f45pbmbi50h"; name = "thesaurus"; }; @@ -57605,13 +58176,13 @@ thing-cmds = callPackage ({ fetchurl, hide-comnt, lib, melpaBuild }: melpaBuild { pname = "thing-cmds"; - version = "20151231.1809"; + version = "20151231.1909"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/thing-cmds.el"; sha256 = "1nclwxb63ffbc4wsga9ngkfcxsw88za0c4663fh9x64rl4db4hn8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/thing-cmds"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/thing-cmds"; sha256 = "133bm2cw9ar6m2amj0rrq4wbj9c3zl61gaprx0vlasxj2cyxs7yw"; name = "thing-cmds"; }; @@ -57623,13 +58194,13 @@ }) {}; thingatpt-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "thingatpt-plus"; - version = "20151231.1810"; + version = "20151231.1910"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/thingatpt+.el"; sha256 = "0ijz0mj095wycpc3as5fiikrwazljk0c04rh089ch0mzc95g3vqq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/thingatpt+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/thingatpt+"; sha256 = "0w031lzjl5phvzsmbbxn2fpziwkmdyxsn08h6b9lxbss1prhx7aa"; name = "thingatpt-plus"; }; @@ -57642,7 +58213,7 @@ thingopt = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "thingopt"; - version = "20150315.723"; + version = "20150315.823"; src = fetchFromGitHub { owner = "m2ym"; repo = "thingopt-el"; @@ -57650,7 +58221,7 @@ sha256 = "0imzrb3vqnm36illqnpfc6x7rbq9rrrlpcw9n2yzl4n309mqdwr6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/thingopt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/thingopt"; sha256 = "0yvzq1z2nrldr8vhcvxqgzvh4gbrjjwfmprg59p4v5hlxvhxsb1y"; name = "thingopt"; }; @@ -57663,7 +58234,7 @@ thread-dump = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "thread-dump"; - version = "20130323.1225"; + version = "20130323.1325"; src = fetchFromGitHub { owner = "nd"; repo = "thread-dump.el"; @@ -57671,7 +58242,7 @@ sha256 = "0rjcrvw9v2y10ahycra53bwbccpwqxxwn2c21wjj1kfs0kdwhs9p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/thread-dump"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/thread-dump"; sha256 = "0dzr86jyf2j49gq40q6qd6lppa57n65n94xzpdjjbs182hxzavp2"; name = "thread-dump"; }; @@ -57684,15 +58255,15 @@ thrift = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "thrift"; - version = "20140312.1548"; + version = "20140312.1648"; src = fetchFromGitHub { owner = "apache"; repo = "thrift"; - rev = "e363a34e63e851f17061a912a77e75a8ed8474bc"; - sha256 = "0zg907qfj26qiv5l9ab24vssr1449s9l5y6ib0dzx1rhnjx1sdpf"; + rev = "9b954e6a469fef18682314458e6fc4af2dd84add"; + sha256 = "1jy6lr8khknirsrcbw74vx1vnacadp7zc4ifm7dayrsscfplshhz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/thrift"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/thrift"; sha256 = "0p1hxmm7gvhyigz8aylncgqbhk6cyf75rbcqis7x552g605mhiy9"; name = "thrift"; }; @@ -57705,13 +58276,13 @@ thumb-frm = callPackage ({ fetchurl, frame-cmds, frame-fns, lib, melpaBuild }: melpaBuild { pname = "thumb-frm"; - version = "20151231.1812"; + version = "20151231.1912"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/thumb-frm.el"; sha256 = "0nyp1sp55l3mlhlxw8kyp6hxan3rbgwc4fmfs174n6hlj3zr5vg8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/thumb-frm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/thumb-frm"; sha256 = "1fjjd80drm8banni909lww9zqazr1kk9m40xwwa1ln2zicaf091c"; name = "thumb-frm"; }; @@ -57724,7 +58295,7 @@ thumb-through = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "thumb-through"; - version = "20120118.2334"; + version = "20120119.34"; src = fetchFromGitHub { owner = "apg"; repo = "thumb-through"; @@ -57732,7 +58303,7 @@ sha256 = "0nypcryqwwsdawqxi7hgsv6fp28zqslj9phw7zscqqxzc3svaywn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/thumb-through"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/thumb-through"; sha256 = "1544xw9lar199idk135z4d6i3n9w0v7g2bq7fnz0rjjw10kxvpcx"; name = "thumb-through"; }; @@ -57745,15 +58316,15 @@ tide = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild, typescript-mode }: melpaBuild { pname = "tide"; - version = "20160425.803"; + version = "20160429.433"; src = fetchFromGitHub { owner = "ananthakumaran"; repo = "tide"; - rev = "31d6b1ac1b6139461623aab7834935d984c13d77"; - sha256 = "0rc922v96gv62zg3ryf6ihca84b6bkrdc4fks32vdrxfnaz8npx2"; + rev = "aacf3e94966db5afb6551a73c305a3a4e6edb706"; + sha256 = "178cjlrjl978xkgaafbd3c5jgkd13ay796gq8v1whwir7hd3s611"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tide"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/tide"; sha256 = "1z2xr25s23sz6nrzzw2xg1l2j8jvjhxi53qh7nvxmmq6n6jjpwg1"; name = "tide"; }; @@ -57765,13 +58336,13 @@ }) {}; tidy = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "tidy"; - version = "20111222.1156"; + version = "20111222.1256"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/tidy.el"; sha256 = "0psci55a3angwv45z9i8wz8jw634rxg1xawkrb57m878zcxxddwa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tidy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/tidy"; sha256 = "09xb2k3k99hp3m725f31s6hlaxgl4fsaa1dylahxvdfddhbh290m"; name = "tidy"; }; @@ -57783,13 +58354,13 @@ }) {}; time-ext = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "time-ext"; - version = "20130130.1551"; + version = "20130130.1651"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/time-ext.el"; sha256 = "0kxgzjwgd979aypjak07k8ss6hnm3x9f96z1rz2zsz2i3vvh6sqv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/time-ext"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/time-ext"; sha256 = "15b3m1jvr7kg5sc4c8cp0aaiiyivfx8ip1zf7w5m702krv4lfvpk"; name = "time-ext"; }; @@ -57802,7 +58373,7 @@ timer-revert = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "timer-revert"; - version = "20150122.1432"; + version = "20150122.1532"; src = fetchFromGitHub { owner = "yyr"; repo = "timer-revert"; @@ -57810,7 +58381,7 @@ sha256 = "1hidvbd1xzz9m0fc55wac1mpv4dpcf8qnw1myh3646bfvivj9c2q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/timer-revert"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/timer-revert"; sha256 = "0lvm2irfx9rb5psm1lf53fv2jjx745n1c172xmyqip5xwgmf6msy"; name = "timer-revert"; }; @@ -57823,7 +58394,7 @@ timesheet = callPackage ({ auctex, fetchFromGitHub, fetchurl, lib, melpaBuild, org, s }: melpaBuild { pname = "timesheet"; - version = "20151107.804"; + version = "20151107.904"; src = fetchFromGitHub { owner = "tmarble"; repo = "timesheet.el"; @@ -57831,7 +58402,7 @@ sha256 = "1ghvnmswq6rg17pjnys58mak6crfcvv1vb6q7spagq143y2ar24z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/timesheet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/timesheet"; sha256 = "1gy6bf4wqvp8cw2wjnrr9ijnzwav3p7j46m7qrn6l0517shwl506"; name = "timesheet"; }; @@ -57841,10 +58412,31 @@ license = lib.licenses.free; }; }) {}; + timp = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, fifo-class, lib, melpaBuild, signal }: + melpaBuild { + pname = "timp"; + version = "20160506.1201"; + src = fetchFromGitHub { + owner = "Mola-T"; + repo = "timp"; + rev = "4094472d0edb7c7d207628f06bf99309bc2987e8"; + sha256 = "0l4x56hkkkmj76gdh1gi1fr9rny0gyqbabx33dpbfkgdc1nvwqir"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/timp"; + sha256 = "11xy49ssq71ja1w6v56yr1nsif0lbcfadmapv8msxc6vxfjx8hg0"; + name = "timp"; + }; + packageRequires = [ cl-lib emacs fifo-class signal ]; + meta = { + homepage = "https://melpa.org/#/timp"; + license = lib.licenses.free; + }; + }) {}; tinkerer = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "tinkerer"; - version = "20150220.49"; + version = "20150220.149"; src = fetchFromGitHub { owner = "yyr"; repo = "tinkerer.el"; @@ -57852,7 +58444,7 @@ sha256 = "0rf177kr0qfhg8g5xrpi405dhp2va1yk170zm3f8hghi2575ciy2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tinkerer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/tinkerer"; sha256 = "0qh6pzjn98jlpxcm9zf25ga0y3d3v53275a9zgswyhz33mafd7pd"; name = "tinkerer"; }; @@ -57865,7 +58457,7 @@ tiny = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "tiny"; - version = "20151208.405"; + version = "20151208.505"; src = fetchFromGitHub { owner = "abo-abo"; repo = "tiny"; @@ -57873,7 +58465,7 @@ sha256 = "0mmz8b0fzffybc2jws9fif982zfx0l6kn1l4qxc67mf9nafbdca3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tiny"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/tiny"; sha256 = "183qczyb6c8zmdgmsjsj4hddmvnzzq4c7syslm861xcyxia94icy"; name = "tiny"; }; @@ -57886,7 +58478,7 @@ tinysegmenter = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "tinysegmenter"; - version = "20141124.413"; + version = "20141124.513"; src = fetchFromGitHub { owner = "myuhe"; repo = "tinysegmenter.el"; @@ -57894,7 +58486,7 @@ sha256 = "1n8cn6mr26hgmsm2mkbj5gs6dv61d0pap8ija4g0n1vsibfhzd8j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tinysegmenter"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/tinysegmenter"; sha256 = "005yy2f8vghvwdcwakz5sr9n1gzk6cfyglm6d8b74y90d8fng0r6"; name = "tinysegmenter"; }; @@ -57907,7 +58499,7 @@ tj-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, js2-mode, lib, melpaBuild, tern }: melpaBuild { pname = "tj-mode"; - version = "20150826.1051"; + version = "20150826.1151"; src = fetchFromGitHub { owner = "katspaugh"; repo = "tj-mode"; @@ -57915,7 +58507,7 @@ sha256 = "1zvykanmn065rlk9hlv85vary1l6y52bsnaa51fkpckpr6dicmcl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tj-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/tj-mode"; sha256 = "1i7dvxgj00p4n2fh8irgdfsjl2dpvfjjnkkv0cw71441f79p79mf"; name = "tj-mode"; }; @@ -57928,7 +58520,7 @@ tldr = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "tldr"; - version = "20160312.808"; + version = "20160312.908"; src = fetchFromGitHub { owner = "kuanyui"; repo = "tldr.el"; @@ -57936,7 +58528,7 @@ sha256 = "0z94m84q7j35dffpnbz1yh6axd6c787hj358bkq2qk0irsvh5n79"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tldr"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/tldr"; sha256 = "1f1xsmkbf4j1c876qqr9h8fgx3zxjgdfzvzf6capxlx2svhxzvc9"; name = "tldr"; }; @@ -57949,7 +58541,7 @@ tmmofl = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "tmmofl"; - version = "20121025.601"; + version = "20121025.701"; src = fetchFromGitHub { owner = "phillord"; repo = "tmmofl"; @@ -57957,7 +58549,7 @@ sha256 = "1ypbv9jbdnwv3xjsfzq8i3nmqdvziynv2rqsd6fm2r1xw0q06xd6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tmmofl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/tmmofl"; sha256 = "1idflc5ky8hwdkps1rihdqy3i6cmhrh83sxz3kgf2kqjh365yr8b"; name = "tmmofl"; }; @@ -57970,7 +58562,7 @@ toc-org = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "toc-org"; - version = "20160422.805"; + version = "20160422.905"; src = fetchFromGitHub { owner = "snosov1"; repo = "toc-org"; @@ -57978,7 +58570,7 @@ sha256 = "084nqdrpzgg1qpbqgvi893iglmz9dk3r0vwqxjkyxa3z3a0f5v17"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/toc-org"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/toc-org"; sha256 = "06mx2b0zjck82vp3i4bwbqlrzn05i2rkf8080cn34nkizi59wlbs"; name = "toc-org"; }; @@ -57990,13 +58582,13 @@ }) {}; todochiku = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "todochiku"; - version = "20150112.1454"; + version = "20150112.1554"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/todochiku.el"; sha256 = "0fhlyjl0a3fd25as185j6dmch0wsrf1zc59q29lhjximg9lk3hr5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/todochiku"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/todochiku"; sha256 = "1iq08s5ji6hd8as80qxqkbavnjbx0kcmmjjvhjchmvv93vsn1f96"; name = "todochiku"; }; @@ -58009,7 +58601,7 @@ todotxt = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "todotxt"; - version = "20150513.2129"; + version = "20150513.2229"; src = fetchFromGitHub { owner = "rpdillon"; repo = "todotxt.el"; @@ -58017,7 +58609,7 @@ sha256 = "0ms4mapjg9mbpmcmpn68r0mhwaibwfr4v25sin74b2281h4q7gal"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/todotxt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/todotxt"; sha256 = "13jcbkasvcczf7qnrh89ncqp6az6hm1s0ycrv7msva145n5bk1kr"; name = "todotxt"; }; @@ -58030,7 +58622,7 @@ todotxt-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "todotxt-mode"; - version = "20150424.904"; + version = "20150424.1004"; src = fetchFromGitHub { owner = "avillafiorita"; repo = "todotxt-mode"; @@ -58038,7 +58630,7 @@ sha256 = "1k9ywi7cdgb6i600wr04r2l00423l6vr7k93qa7i7svv856nbbc7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/todotxt-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/todotxt-mode"; sha256 = "1bs4air13ifx3xkhcfi80z29alsd63r436gnyvjyxlph2ip37v7k"; name = "todotxt-mode"; }; @@ -58051,7 +58643,7 @@ togetherly = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "togetherly"; - version = "20150820.338"; + version = "20150820.438"; src = fetchFromGitHub { owner = "zk-phi"; repo = "togetherly"; @@ -58059,7 +58651,7 @@ sha256 = "1falf86mm2206szkkwiwa5yk65y12asv84j1pdbcy6n8y6hha796"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/togetherly"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/togetherly"; sha256 = "01ks160dfmgh05lx0lmyg020hba8nw49mj51dp1afcsmx4dkis2f"; name = "togetherly"; }; @@ -58072,7 +58664,7 @@ toggle = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "toggle"; - version = "20160331.300"; + version = "20160331.400"; src = fetchFromGitHub { owner = "zenspider"; repo = "elisp"; @@ -58080,7 +58672,7 @@ sha256 = "184ghdi2m4hagddi71c1pmc408fad1cmw0q2n4k737w6j8537hph"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/toggle"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/toggle"; sha256 = "08lk8h2dk5s8k93j5vmxdlgg453pif8wbcx2w3xkjlh43dw1vdfq"; name = "toggle"; }; @@ -58093,7 +58685,7 @@ toggle-quotes = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "toggle-quotes"; - version = "20140710.426"; + version = "20140710.526"; src = fetchFromGitHub { owner = "toctan"; repo = "toggle-quotes.el"; @@ -58101,7 +58693,7 @@ sha256 = "1w1lmqgzn9bp59h9y9plv80y53k6qhjgfmnnlqyyqfl45z3si7kg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/toggle-quotes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/toggle-quotes"; sha256 = "16w453v4g7ww93bydim62p785x7w4vssp9l5liy0h3ppfmgvmxhp"; name = "toggle-quotes"; }; @@ -58114,7 +58706,7 @@ toggle-test = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "toggle-test"; - version = "20140723.37"; + version = "20140723.137"; src = fetchFromGitHub { owner = "rags"; repo = "toggle-test"; @@ -58122,7 +58714,7 @@ sha256 = "0sgaslqxj806byidh06h5pqmqz8jzjfz9ky8jvkif3cq3a479jby"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/toggle-test"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/toggle-test"; sha256 = "0n8m325jcjhz8g75ysb9whsd12gpxw8598y5065j7c7gxjzv45l1"; name = "toggle-test"; }; @@ -58135,7 +58727,7 @@ toggle-window = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "toggle-window"; - version = "20141207.948"; + version = "20141207.1048"; src = fetchFromGitHub { owner = "deadghost"; repo = "toggle-window"; @@ -58143,7 +58735,7 @@ sha256 = "0f86aij1glmvgpbhmfpi441zy0r37zblb0q3ycgq0dp92x8yny5r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/toggle-window"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/toggle-window"; sha256 = "1z080jywqj99xiwbvfclr6gjkc6spr3dqjb9kq1g4971vx4w8n9g"; name = "toggle-window"; }; @@ -58156,7 +58748,7 @@ tomatinho = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "tomatinho"; - version = "20140120.1740"; + version = "20140120.1840"; src = fetchFromGitHub { owner = "konr"; repo = "tomatinho"; @@ -58164,7 +58756,7 @@ sha256 = "0a3zvhy3jxs88zk4nhdc7lzybz4qji9baw5gm88sxlgcjgn7ip6n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tomatinho"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/tomatinho"; sha256 = "1ad3kr73v75vjrc09mdvb7a3ws834k5y5xha3v0ldah38cl1pmjz"; name = "tomatinho"; }; @@ -58177,7 +58769,7 @@ toml = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "toml"; - version = "20130903.755"; + version = "20130903.855"; src = fetchFromGitHub { owner = "gongo"; repo = "emacs-toml"; @@ -58185,7 +58777,7 @@ sha256 = "1b3bkla6i5nvanifxchph6ab6ldrskdf240hy4d27dkmmnr3pban"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/toml"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/toml"; sha256 = "0kqv6zkywa7kqh8kg1dzcgkbi91lwx335przdakndm1lfai38i9b"; name = "toml"; }; @@ -58198,7 +58790,7 @@ toml-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "toml-mode"; - version = "20150818.320"; + version = "20150818.420"; src = fetchFromGitHub { owner = "dryman"; repo = "toml-mode.el"; @@ -58206,7 +58798,7 @@ sha256 = "1w9vkh6c4g80zykcy77k3r0bdc99mq8yh58bqkyd6gsr7pnp16gj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/toml-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/toml-mode"; sha256 = "0yghf2ixl3dkcaxnkr4qzxfa9k1rrac7w5qpw1jx2bvic0cfs40l"; name = "toml-mode"; }; @@ -58219,7 +58811,7 @@ tommyh-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "tommyh-theme"; - version = "20131004.1830"; + version = "20131004.1930"; src = fetchFromGitHub { owner = "wglass"; repo = "tommyh-theme"; @@ -58227,7 +58819,7 @@ sha256 = "0pwbd5gzmpr6js20438870w605671930291070nhmhswvxfcdvay"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tommyh-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/tommyh-theme"; sha256 = "0nb9r407h08yxxdihxqx0c645bcz6qywbh2l654s3zfzdsqi1aj4"; name = "tommyh-theme"; }; @@ -58239,13 +58831,13 @@ }) {}; tool-bar-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "tool-bar-plus"; - version = "20151231.1815"; + version = "20151231.1915"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/tool-bar+.el"; sha256 = "1sqflxj3hzxdlwn5qmpqm4dwik5vsyp7lypkvshcghdplxymb38a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tool-bar+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/tool-bar+"; sha256 = "07nsas600w5kxx7yzg52ax9avry8kq429mqlrs38jg5ycf3b1l6d"; name = "tool-bar-plus"; }; @@ -58257,13 +58849,13 @@ }) {}; top-mode = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "top-mode"; - version = "20130605.1239"; + version = "20130605.1339"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/top-mode.el"; sha256 = "0a5rl1cgznycqwx4r48mh69lgm8ixbnlfzbqdyvclgm8fldbannn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/top-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/top-mode"; sha256 = "0hrjlbiz827v9yf4086wlghw64rhvvlsbzv8lzs6pprdwbpr9pdx"; name = "top-mode"; }; @@ -58276,7 +58868,7 @@ tornado-template-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "tornado-template-mode"; - version = "20141128.408"; + version = "20141128.508"; src = fetchFromGitHub { owner = "paradoxxxzero"; repo = "tornado-template-mode"; @@ -58284,7 +58876,7 @@ sha256 = "0wv49gn1daylnjmnallpqsqy7630ynrp45agpiwi6kwyyqk1kdvv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tornado-template-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/tornado-template-mode"; sha256 = "1sdv9rlhnabydws2sppsjcgqr0lg6bjapv753ksq5aaq21qsps0h"; name = "tornado-template-mode"; }; @@ -58297,7 +58889,7 @@ totd = callPackage ({ cl-lib ? null, fetchFromGitLab, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "totd"; - version = "20150519.940"; + version = "20150519.1040"; src = fetchFromGitLab { owner = "egh"; repo = "emacs-totd"; @@ -58305,7 +58897,7 @@ sha256 = "188cdgic25wrb4jdgdcj070a0pxsh3m0rd9d2r6i1s1n1nalrs6g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/totd"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/totd"; sha256 = "1bp07xl9yh9x6bi6cn8wz11x90jhv1rhxaig540iydjn5b0ny9m0"; name = "totd"; }; @@ -58318,7 +58910,7 @@ tox = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "tox"; - version = "20141004.1603"; + version = "20141004.1703"; src = fetchFromGitHub { owner = "chmouel"; repo = "tox.el"; @@ -58326,7 +58918,7 @@ sha256 = "16217i8rjhgaa5kv8iq0s14b42v5rs8m2qlr60a0x6qzy65chq39"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tox"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/tox"; sha256 = "1z81x8fs5q6r19hpqphsilk8wdwwnfr8w78x5x298x74s9mcsywl"; name = "tox"; }; @@ -58339,14 +58931,14 @@ toxi-theme = callPackage ({ emacs, fetchhg, fetchurl, lib, melpaBuild }: melpaBuild { pname = "toxi-theme"; - version = "20160424.1626"; + version = "20160424.1726"; src = fetchhg { url = "https://bitbucket.com/postspectacular/toxi-theme"; rev = "b322fc7497a5"; sha256 = "1pnsky541m8kzcv81w98jkv0hgajh04hxqlmgddc1y0wbvi849j0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/toxi-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/toxi-theme"; sha256 = "032m3qbxfd0qp81qwayd5g9k7vz55g4yhw0d35qkxzf4qf58x9sd"; name = "toxi-theme"; }; @@ -58359,7 +58951,7 @@ traad = callPackage ({ deferred, fetchFromGitHub, fetchurl, lib, melpaBuild, popup, python-environment, request, request-deferred }: melpaBuild { pname = "traad"; - version = "20151226.134"; + version = "20151226.234"; src = fetchFromGitHub { owner = "abingham"; repo = "emacs-traad"; @@ -58367,7 +58959,7 @@ sha256 = "1yh9dxf986dl74sgn71qxwxsg67lr0yg1z7b9h2254lmxq0mgni6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/traad"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/traad"; sha256 = "08gxh5c01xfbbj9g4992jah494rw3d3bbs8j79r3mpqxllkp2znf"; name = "traad"; }; @@ -58386,15 +58978,15 @@ tracking = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "tracking"; - version = "20151129.519"; + version = "20151129.619"; src = fetchFromGitHub { owner = "jorgenschaefer"; repo = "circe"; - rev = "fed52c2b4b49f75aec3e3238ceacf44ef0c75b5c"; - sha256 = "1wh3kwya2hpmaaj0c18g2las7jq0vkkik4n0q6whpch3r7ak6k8m"; + rev = "3a267626415bbde1d6f6e2c5c0f261a2147a28fc"; + sha256 = "0j7rfr86zlbf2grmigglrlx1wpxxwyrcf3cr1475crigbqy2f8f1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tracking"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/tracking"; sha256 = "096h5bl7jcwz5hpbm2139bf8a784hijfy40vzf42y1c9794al46z"; name = "tracking"; }; @@ -58407,7 +58999,7 @@ tracwiki-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, xml-rpc }: melpaBuild { pname = "tracwiki-mode"; - version = "20150119.1021"; + version = "20150119.1121"; src = fetchFromGitHub { owner = "merickson"; repo = "tracwiki-mode"; @@ -58415,7 +59007,7 @@ sha256 = "1m25l1lyff4h0h4vjrcsziwbf8svqg2llvvgl8i2b4jbh7k7pk5f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tracwiki-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/tracwiki-mode"; sha256 = "1k983f0lj42rxr5szpq9l9harykfn8jr13y3y6fav86zzd1fb8j0"; name = "tracwiki-mode"; }; @@ -58428,7 +59020,7 @@ tramp-hdfs = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "tramp-hdfs"; - version = "20151028.2236"; + version = "20151028.2336"; src = fetchFromGitHub { owner = "raghavgautam"; repo = "tramp-hdfs"; @@ -58436,7 +59028,7 @@ sha256 = "0llzfn9y3yyz2wwdbv8whx8vy2lazbnww6hjj0r621gkfxjml7wd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tramp-hdfs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/tramp-hdfs"; sha256 = "1l7s2z8yk3cbnffig9fds75jkjlkng76qglx5ankzva61dz1kf2b"; name = "tramp-hdfs"; }; @@ -58449,7 +59041,7 @@ tramp-term = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "tramp-term"; - version = "20141104.1545"; + version = "20141104.1645"; src = fetchFromGitHub { owner = "randymorris"; repo = "tramp-term.el"; @@ -58457,7 +59049,7 @@ sha256 = "0cgx6h9a49qj7x6bgsnsa20hi1yj5k080x4x0jpn6l9bj5nqiaip"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tramp-term"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/tramp-term"; sha256 = "1vbdwj8q66j6h5ijqzxhyaqf8wf9rbs03x8ppfijxl5qd2bhc1dy"; name = "tramp-term"; }; @@ -58470,15 +59062,15 @@ transmission = callPackage ({ emacs, fetchFromGitHub, fetchurl, let-alist, lib, melpaBuild }: melpaBuild { pname = "transmission"; - version = "20160419.2151"; + version = "20160427.1024"; src = fetchFromGitHub { owner = "holomorph"; repo = "transmission"; - rev = "a236ac0fba69e53f8b38608a0e5659e6190a08b0"; - sha256 = "109s5rk1793vqyj2qz84cqw1k23avkl0gjbzy72ygdiim9xwvm6z"; + rev = "26a42a942c028abcde14b532aefe883cc0f2f768"; + sha256 = "0gazz783kc7a7knxrxramlmd49bcr7ybpl9iw5hl01pp5kl2gm7y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/transmission"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/transmission"; sha256 = "0w0hlr4y4xpcrpvclqqqasggkgrwnzrdib51mhkh3f3mqyiw8gs9"; name = "transmission"; }; @@ -58491,7 +59083,7 @@ transpose-frame = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "transpose-frame"; - version = "20140827.1406"; + version = "20140827.1506"; src = fetchFromGitHub { owner = "pyluyten"; repo = "emacs-nu"; @@ -58499,7 +59091,7 @@ sha256 = "0nbmpnljl0wdkwmxzg6lqd3mand9w043qmwp727hb84gxy0j4dib"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/transpose-frame"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/transpose-frame"; sha256 = "14zb9xvv4jcawihs6qh36n3xdh45il5ry8pq6hcrk9qsa0icvh28"; name = "transpose-frame"; }; @@ -58512,7 +59104,7 @@ transpose-mark = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "transpose-mark"; - version = "20150405.216"; + version = "20150405.316"; src = fetchFromGitHub { owner = "kwrooijen"; repo = "transpose-mark"; @@ -58520,7 +59112,7 @@ sha256 = "03wc50vn1kmrgnzzhs06pwpap2p2rx84wwzxw0hawsg1f1l35m2x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/transpose-mark"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/transpose-mark"; sha256 = "1q1icp1szm1bxz9ywwyrfbsm1wmx0h4cvzywrh9q0fj1fq387qvv"; name = "transpose-mark"; }; @@ -58533,7 +59125,7 @@ travis = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, pkg-info, request, s }: melpaBuild { pname = "travis"; - version = "20150825.638"; + version = "20150825.738"; src = fetchFromGitHub { owner = "nlamirault"; repo = "emacs-travis"; @@ -58541,7 +59133,7 @@ sha256 = "1jd7xsvs4m55fscp62a9lk59ip4sgifv4kazl55b7543nz1i31bz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/travis"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/travis"; sha256 = "1km496cq1vni9gy2d3z4c9524q62750ywz745rjz4r7178ip9mix"; name = "travis"; }; @@ -58553,13 +59145,13 @@ }) {}; tree-mode = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "tree-mode"; - version = "20151104.731"; + version = "20151104.831"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/tree-mode.el"; sha256 = "0hffnzvzbvmzf23z9z7n7y53l5i7kza9hgfl39qqcnw4njg48llx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tree-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/tree-mode"; sha256 = "0xwyhlc5lagj46nd70l81rvb43hs08pic96grk62zknig8354c24"; name = "tree-mode"; }; @@ -58572,7 +59164,7 @@ trident-mode = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, skewer-mode, slime }: melpaBuild { pname = "trident-mode"; - version = "20130726.1407"; + version = "20130726.1507"; src = fetchFromGitHub { owner = "johnmastro"; repo = "trident-mode.el"; @@ -58580,7 +59172,7 @@ sha256 = "08484fhc69rk16g52f9bzc1kzpif61ddfchxjbj1qqqammbx11ym"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/trident-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/trident-mode"; sha256 = "0l81hs7bp46jlk41b9fk1lkvlp17fqc5hcz8k8kkal7rh7ari1fd"; name = "trident-mode"; }; @@ -58593,7 +59185,7 @@ tronesque-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "tronesque-theme"; - version = "20150125.441"; + version = "20150125.541"; src = fetchFromGitHub { owner = "aurelienbottazini"; repo = "tronesque"; @@ -58601,7 +59193,7 @@ sha256 = "06wm3qwxjhzwjn9nnrqm5wwj1z5gfghg9d2qbg8w3zyqzva5dmvm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tronesque-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/tronesque-theme"; sha256 = "1bk73zawl1922aq739r3rz30flxd6nq87k8ahzbix139g7gxf19j"; name = "tronesque-theme"; }; @@ -58614,7 +59206,7 @@ truthy = callPackage ({ fetchFromGitHub, fetchurl, lib, list-utils, melpaBuild }: melpaBuild { pname = "truthy"; - version = "20140508.1541"; + version = "20140508.1641"; src = fetchFromGitHub { owner = "rolandwalker"; repo = "truthy"; @@ -58622,7 +59214,7 @@ sha256 = "1mm6rrprsmx4hc622qmllm7c81yhwbqmdr0n6020krq92zmilmlm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/truthy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/truthy"; sha256 = "1a56zmqars9fd03bkqzwpvgblq5fvq19n4jw04c4hpga92sq8wqg"; name = "truthy"; }; @@ -58635,7 +59227,7 @@ try = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "try"; - version = "20160226.930"; + version = "20160226.1030"; src = fetchFromGitHub { owner = "larstvei"; repo = "Try"; @@ -58643,7 +59235,7 @@ sha256 = "0gvwavsq9s4a75qz7xq9wl219fnzz085zjqpnrxxgmaqbi9m8l7a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/try"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/try"; sha256 = "0dv0i77agva215bf1gj1x1k7f7g3pvccyyd7vslapf9z8brccn7n"; name = "try"; }; @@ -58656,7 +59248,7 @@ tss = callPackage ({ auto-complete, fetchFromGitHub, fetchurl, json-mode, lib, log4e, melpaBuild, yaxception }: melpaBuild { pname = "tss"; - version = "20150913.908"; + version = "20150913.1008"; src = fetchFromGitHub { owner = "aki2o"; repo = "emacs-tss"; @@ -58664,7 +59256,7 @@ sha256 = "1bk5v9dffs65qsay0dp336s2ly065nd0cg572zz058ikwxd44zd3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tss"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/tss"; sha256 = "0d16x5r2xfy6mrwy0mqzpr9b3inqmyyxgawrxlfh83j1xb903dhm"; name = "tss"; }; @@ -58677,7 +59269,7 @@ tt-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "tt-mode"; - version = "20130804.610"; + version = "20130804.710"; src = fetchFromGitHub { owner = "davorg"; repo = "tt-mode"; @@ -58685,7 +59277,7 @@ sha256 = "1gvqxk67cf779szyg907815i4m9jzrpmn5cnsmnwd62k3r3z4nxm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tt-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/tt-mode"; sha256 = "02dzyycn5znbibbz50b243bh1kcccp8xwknjqwljk00gpf196vzf"; name = "tt-mode"; }; @@ -58695,10 +59287,29 @@ license = lib.licenses.free; }; }) {}; + ttl-mode = callPackage ({ fetchhg, fetchurl, lib, melpaBuild }: melpaBuild { + pname = "ttl-mode"; + version = "20160505.432"; + src = fetchhg { + url = "https://bitbucket.com/nxg/ttl-mode"; + rev = "d790eb85ef4d"; + sha256 = "14kfnpp7fcd84ly9ng7hm5hzx2sdpn2x6d8frwbkdxfb0x81kmmf"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ttl-mode"; + sha256 = "1nnn2y0n9rj3a8r85y2vp6qja5rm4drcbnj9q793zzqfjl9akqd4"; + name = "ttl-mode"; + }; + packageRequires = []; + meta = { + homepage = "https://melpa.org/#/ttl-mode"; + license = lib.licenses.free; + }; + }) {}; ttrss = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ttrss"; - version = "20130409.1249"; + version = "20130409.1349"; src = fetchFromGitHub { owner = "pedros"; repo = "ttrss.el"; @@ -58706,7 +59317,7 @@ sha256 = "0a8f9p1im6k7mnp2bq733rfx2x246gfwpvi5ccym1y5lakx37fil"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ttrss"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ttrss"; sha256 = "08921cssvwpq33w87v08dafi2rz2rl1b3bhbhijn4bwjqgxi9w7z"; name = "ttrss"; }; @@ -58719,7 +59330,7 @@ tuareg = callPackage ({ caml, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "tuareg"; - version = "20160408.1331"; + version = "20160408.1431"; src = fetchFromGitHub { owner = "ocaml"; repo = "tuareg"; @@ -58727,7 +59338,7 @@ sha256 = "0hscvsdp25aw7h4x8kq1ws72zx08bs2kw1s6axsi5576cl4d5yvg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tuareg"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/tuareg"; sha256 = "0wx723dmjlpm86xdabl9n8p22zbbxpapyfn6ifz0b0pvhh49ip7q"; name = "tuareg"; }; @@ -58740,7 +59351,7 @@ tumble = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, http-post-simple, lib, melpaBuild }: melpaBuild { pname = "tumble"; - version = "20160112.129"; + version = "20160112.229"; src = fetchFromGitHub { owner = "febuiles"; repo = "tumble"; @@ -58748,7 +59359,7 @@ sha256 = "1xdkgvr1pnlg3nrjmma4ra80ysr8xbslvczg7cq1x1mqw6gn9xq5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tumble"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/tumble"; sha256 = "1c9ybq0mb2a0pw15fmm13vfwcnr2h9fb1xsm5nrff1cg7913pgv9"; name = "tumble"; }; @@ -58761,7 +59372,7 @@ tumblesocks = callPackage ({ fetchFromGitHub, fetchurl, htmlize, lib, markdown-mode, melpaBuild, oauth }: melpaBuild { pname = "tumblesocks"; - version = "20140215.1447"; + version = "20140215.1547"; src = fetchFromGitHub { owner = "gcr"; repo = "tumblesocks"; @@ -58769,7 +59380,7 @@ sha256 = "1g7y7czan7mcs5lwc5r6cllgksrj3b9lpn1bj7khwkd1ll391jc2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tumblesocks"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/tumblesocks"; sha256 = "11ky69icsnxwsinv2j3f4c0764wm6i9g9mlvwsdrd6w1lchq1dg9"; name = "tumblesocks"; }; @@ -58782,7 +59393,7 @@ tup-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "tup-mode"; - version = "20140410.1114"; + version = "20140410.1214"; src = fetchFromGitHub { owner = "ejmr"; repo = "tup-mode"; @@ -58790,7 +59401,7 @@ sha256 = "0y1b9zvwbw3vp41siyzj04bis939fgz3j27hc5ljjzy92kd39nzm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tup-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/tup-mode"; sha256 = "0pzpn1ljfcc2dl9fg7jc8lmjwz2baays4axjqk1qsbj0kqbc8j0l"; name = "tup-mode"; }; @@ -58803,7 +59414,7 @@ turkish = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "turkish"; - version = "20160324.523"; + version = "20160324.623"; src = fetchFromGitHub { owner = "emres"; repo = "turkish-mode"; @@ -58811,7 +59422,7 @@ sha256 = "1jb6par116mm5l4z27wk6m2sfh6j9nmgrya352sdagcvjbcpnzcl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/turkish"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/turkish"; sha256 = "0pdapxjbpj3lg3hxvwjn9v51jqaiz7a8053z2bmk4485vzs34532"; name = "turkish"; }; @@ -58824,7 +59435,7 @@ turnip = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "turnip"; - version = "20150309.129"; + version = "20150309.229"; src = fetchFromGitHub { owner = "kljohann"; repo = "turnip.el"; @@ -58832,7 +59443,7 @@ sha256 = "0khl4q22x6vdn87xdqqg5f535d4dqpnfbhk6qhlh187p1w7qaiq4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/turnip"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/turnip"; sha256 = "1vfqv71j47fn53klz3jl8r8hscywd01kkl4w96a308sac3lhbrps"; name = "turnip"; }; @@ -58845,7 +59456,7 @@ twig-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "twig-mode"; - version = "20130220.1250"; + version = "20130220.1350"; src = fetchFromGitHub { owner = "moljac024"; repo = "twig-mode"; @@ -58853,7 +59464,7 @@ sha256 = "0wvmih2y3hy7casxx2y1w8csmzfnfgbb5ivpggr94sc86p6bg8sa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/twig-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/twig-mode"; sha256 = "1m3xjgmkqg8aj536wcg2f2hf4y6whscbsh7z7448hl4b5qjwii4n"; name = "twig-mode"; }; @@ -58866,7 +59477,7 @@ twilight-anti-bright-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "twilight-anti-bright-theme"; - version = "20140810.234"; + version = "20140810.334"; src = fetchFromGitHub { owner = "jimeh"; repo = "twilight-anti-bright-theme"; @@ -58874,7 +59485,7 @@ sha256 = "1bj2mpiklqcangjzbnz5wz7klsfvp0x397lidvf42awn7s2aax0n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/twilight-anti-bright-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/twilight-anti-bright-theme"; sha256 = "1qfybk5akaxdahmjffqaw712v8d7kk4jqkj3hzp96kys2zv1r6f9"; name = "twilight-anti-bright-theme"; }; @@ -58887,7 +59498,7 @@ twilight-bright-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "twilight-bright-theme"; - version = "20130605.343"; + version = "20130605.443"; src = fetchFromGitHub { owner = "jimeh"; repo = "twilight-bright-theme.el"; @@ -58895,7 +59506,7 @@ sha256 = "1awqc4rvg8693myynb1d4y4dfdaxkd5blnixxs3mdv81l07zyn8c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/twilight-bright-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/twilight-bright-theme"; sha256 = "074cqs55gwy5jlaay3m9bpdpdfb45nmlijvapz96nibl64pyk83d"; name = "twilight-bright-theme"; }; @@ -58908,7 +59519,7 @@ twilight-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "twilight-theme"; - version = "20120412.803"; + version = "20120412.903"; src = fetchFromGitHub { owner = "developernotes"; repo = "twilight-theme"; @@ -58916,7 +59527,7 @@ sha256 = "0d7vd1h0rwwgrh7f9kmdgy2ni0p20da9c8ylwlg33nsb26345wfs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/twilight-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/twilight-theme"; sha256 = "1wkca66q4k94h9njsy15n83wjzn90rcbmv44x0hdwqj92yxjf3y7"; name = "twilight-theme"; }; @@ -58929,7 +59540,7 @@ twittering-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "twittering-mode"; - version = "20160313.1136"; + version = "20160313.1236"; src = fetchFromGitHub { owner = "hayamiz"; repo = "twittering-mode"; @@ -58937,7 +59548,7 @@ sha256 = "1dk2s16p33fjx29la1zg35ax1mmwmrl33ww9qmg88ssxfcdj2jr0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/twittering-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/twittering-mode"; sha256 = "0v9ijxw5jazh2hc0qab48y71za2l9ryff0mpkxhr3f79irlqy0a1"; name = "twittering-mode"; }; @@ -58950,7 +59561,7 @@ typed-clojure-mode = callPackage ({ cider, clojure-mode, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "typed-clojure-mode"; - version = "20151003.1322"; + version = "20151003.1422"; src = fetchFromGitHub { owner = "typedclojure"; repo = "typed-clojure-mode"; @@ -58958,7 +59569,7 @@ sha256 = "1i826xq77nh4s7qlj63r2iznbn319l1l3fzpbjb2nj0m00bwvxl6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/typed-clojure-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/typed-clojure-mode"; sha256 = "1579zkhk2lwl5ij7dm9n2drggs5fmhpljrshc4ghhvig7nlyqjy3"; name = "typed-clojure-mode"; }; @@ -58971,7 +59582,7 @@ typescript-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "typescript-mode"; - version = "20160126.608"; + version = "20160126.708"; src = fetchFromGitHub { owner = "ananthakumaran"; repo = "typescript.el"; @@ -58979,7 +59590,7 @@ sha256 = "17q7f433x8i484scwdbfsd0vh8lshzkwjlarhqw6ic53mzakgjiq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/typescript-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/typescript-mode"; sha256 = "01jyqy44ir59n9c2f6gh4xzwfmzdpnys1lw4lnsy6kirqgbsq9ha"; name = "typescript-mode"; }; @@ -58991,13 +59602,13 @@ }) {}; typing = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "typing"; - version = "20121026.1618"; + version = "20121026.1718"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/typing.el"; sha256 = "0mgvpdp3vlvjy32d163h2mzsf9j2ij2f542sdr3rsy8l80n6nx31"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/typing"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/typing"; sha256 = "0b72lbzji105wzvsi58l6pjc08qcwrm5ddf42irdxi956081pzp3"; name = "typing"; }; @@ -59010,7 +59621,7 @@ typing-game = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "typing-game"; - version = "20160426.720"; + version = "20160426.820"; src = fetchFromGitHub { owner = "lujun9972"; repo = "el-typing-game"; @@ -59018,7 +59629,7 @@ sha256 = "0dkrnn9fzqv793wvd3nc7dbslayj37q5na1w1g63g32z2s8aq09j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/typing-game"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/typing-game"; sha256 = "0k85j9bcqp0gbzdh44q5a9wlkv5mc0g0m42ziq1bzmp6993wkmy2"; name = "typing-game"; }; @@ -59031,7 +59642,7 @@ typit = callPackage ({ emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, mmt }: melpaBuild { pname = "typit"; - version = "20160407.749"; + version = "20160407.849"; src = fetchFromGitHub { owner = "mrkkrp"; repo = "typit"; @@ -59039,7 +59650,7 @@ sha256 = "0jfyfwg9548ba5lvy9dvs459b9fm90w9k8s6pbqnnnks964jrhg9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/typit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/typit"; sha256 = "05m7ymcq6fgbhh93ninrf3qi7csdnf2ahhf01mkm8gxxyaqq6m4n"; name = "typit"; }; @@ -59052,7 +59663,7 @@ typo = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "typo"; - version = "20160121.530"; + version = "20160121.630"; src = fetchFromGitHub { owner = "jorgenschaefer"; repo = "typoel"; @@ -59060,7 +59671,7 @@ sha256 = "0bn1bvs334wb64bli9h613zf1vzjyi0pz8bgyq1wy12qmbwwmfwk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/typo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/typo"; sha256 = "07hmqrnbxbrhcbxdls8i4786lkqmfr3hv6va41xih1lxj0mk60bx"; name = "typo"; }; @@ -59073,7 +59684,7 @@ ubuntu-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ubuntu-theme"; - version = "20150805.1006"; + version = "20150805.1106"; src = fetchFromGitHub { owner = "rocher"; repo = "ubuntu-theme"; @@ -59081,7 +59692,7 @@ sha256 = "1v8d1pc0vjc7wz0prr5w5vp2qb19f3gcyl6jx5130plajbvv23rc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ubuntu-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ubuntu-theme"; sha256 = "160z59aaxb2v6c24nki6bn7pjm9r4jl1mgxs4h4sivzxkaw811s2"; name = "ubuntu-theme"; }; @@ -59093,13 +59704,13 @@ }) {}; ucs-cmds = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "ucs-cmds"; - version = "20151231.1816"; + version = "20151231.1916"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/ucs-cmds.el"; sha256 = "0qy211rxrmzhwl9qfrcmfnwayysvb5rghjginbvx3wf2s6hrbpya"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ucs-cmds"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ucs-cmds"; sha256 = "1n0f0qf8w8ark78fs67aaxnqpk0km97hy59pnxwfyahgjl2qz6d1"; name = "ucs-cmds"; }; @@ -59112,7 +59723,7 @@ ucs-utils = callPackage ({ fetchFromGitHub, fetchurl, lib, list-utils, melpaBuild, pcache, persistent-soft }: melpaBuild { pname = "ucs-utils"; - version = "20150826.914"; + version = "20150826.1014"; src = fetchFromGitHub { owner = "rolandwalker"; repo = "ucs-utils"; @@ -59120,7 +59731,7 @@ sha256 = "0qw9vwl1p0pjw1xmshxar1a8kn6gmin5rdvvnnly8b5z9hpkjf3m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ucs-utils"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ucs-utils"; sha256 = "111fwg2cqqzpa79rcqxidppb12c8g12zszppph2ydfvkgkryb6z2"; name = "ucs-utils"; }; @@ -59133,7 +59744,7 @@ uimage = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "uimage"; - version = "20160426.726"; + version = "20160426.826"; src = fetchFromGitHub { owner = "lujun9972"; repo = "uimage"; @@ -59141,7 +59752,7 @@ sha256 = "13zznakgqyy3hw385f6w40rz4agxz6fmgaxzgmrz3kjpn19bc2fa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/uimage"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/uimage"; sha256 = "0i6qpk6v4pmpk3zswygdy0dd7rxy8kl7qn8a1xanpi4aqg7wlbmd"; name = "uimage"; }; @@ -59154,15 +59765,15 @@ ujelly-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ujelly-theme"; - version = "20160409.453"; + version = "20160501.1359"; src = fetchFromGitHub { owner = "marktran"; repo = "color-theme-ujelly"; - rev = "12eb073ef0a9f32d8234805ee5e6c8e5762a201d"; - sha256 = "1j2zrvgjvhwqjam49bbppazvzfc97w1a8jil28lrxdrg4f41rvv3"; + rev = "e640bfa845cdbf1cc72a20ba4ce3ffbd529dcb71"; + sha256 = "1d842mpg1rnxg88gzpjkf4vakn9drjk4l094dq375hrminvnlygz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ujelly-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ujelly-theme"; sha256 = "0b7zgmpsdn5p3jx4kif7phxz8pb85snmmfr3yz98xf6p7h6w60gw"; name = "ujelly-theme"; }; @@ -59175,7 +59786,7 @@ ukrainian-holidays = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ukrainian-holidays"; - version = "20130720.849"; + version = "20130720.949"; src = fetchFromGitHub { owner = "abo-abo"; repo = "ukrainian-holidays"; @@ -59183,7 +59794,7 @@ sha256 = "033v4ck979lhkpwblci5clacfc1xnkq03p5d1m566wff8dp5flwz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ukrainian-holidays"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ukrainian-holidays"; sha256 = "0kbfj2l1rcv74c88nabkwkcl7k9pkim835l24q61zv3i6wf9sykf"; name = "ukrainian-holidays"; }; @@ -59195,13 +59806,13 @@ }) {}; unbound = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "unbound"; - version = "20140307.328"; + version = "20160506.255"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/unbound.el"; - sha256 = "0i5km1naxprd4lj20097ph50mjs2364xwxcdw0j3g5569mk5nc06"; + sha256 = "0awmzz9cfr17ggpzsgxqqhz5946l7705vvkfaiz7qx9wg0pbch18"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/unbound"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/unbound"; sha256 = "1ys6pgb3lhx4ihhv8i28vrchp1ad37md7lnana40macf5n72d77x"; name = "unbound"; }; @@ -59214,7 +59825,7 @@ uncrustify-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "uncrustify-mode"; - version = "20130707.859"; + version = "20130707.959"; src = fetchFromGitHub { owner = "koko1000ban"; repo = "emacs-uncrustify-mode"; @@ -59222,7 +59833,7 @@ sha256 = "0366h4jfi0c7yda9wcrz4zxgf2qqdd08b8z2dr8c1rkvkdd67iam"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/uncrustify-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/uncrustify-mode"; sha256 = "0amdxdfc8i99zjrw4iqmxzb47h0airs60fwmc32bc8b0ds66c3kd"; name = "uncrustify-mode"; }; @@ -59235,7 +59846,7 @@ undercover = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, shut-up }: melpaBuild { pname = "undercover"; - version = "20160329.937"; + version = "20160329.1037"; src = fetchFromGitHub { owner = "sviridov"; repo = "undercover.el"; @@ -59243,7 +59854,7 @@ sha256 = "1860hnsbvndaahqs233adk8piz7nyj8v3b0gziv1lrnq864hrq5i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/undercover"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/undercover"; sha256 = "1s30c3i6y4r3mgrrs3lda3rrwmy9ff11ihdmshyziv9v5879sdjf"; name = "undercover"; }; @@ -59256,7 +59867,7 @@ underwater-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "underwater-theme"; - version = "20131117.1802"; + version = "20131117.1902"; src = fetchFromGitHub { owner = "jmdeldin"; repo = "underwater-theme.el"; @@ -59264,7 +59875,7 @@ sha256 = "1ypxpv5vw2ls757iwrq3zld6k0s29q3kg3spcsl5ks4aqpnkxpva"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/underwater-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/underwater-theme"; sha256 = "0ab2bcqfdi9ml3z9d511pbfwcbp8hkkd36xxp61k36gkyi3acvlr"; name = "underwater-theme"; }; @@ -59277,14 +59888,14 @@ undo-tree = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: melpaBuild { pname = "undo-tree"; - version = "20140509.722"; + version = "20140509.822"; src = fetchgit { url = "http://www.dr-qubit.org/git/undo-tree.git"; rev = "a3e81b682053a81e082139300ef0a913a7a610a2"; sha256 = "1qla7njkb7gx5aj87i8x6ni8jfk1k78ivwfiiws3gpbnyiydpx8y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/undo-tree"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/undo-tree"; sha256 = "0vrjxprpk854989wcp4wjb07jhhxqi25p6c758gz264z3xa8g9cr"; name = "undo-tree"; }; @@ -59297,7 +59908,7 @@ undohist = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "undohist"; - version = "20150315.742"; + version = "20150315.842"; src = fetchFromGitHub { owner = "m2ym"; repo = "undohist-el"; @@ -59305,7 +59916,7 @@ sha256 = "1c0daw246ky7b1x5b8h55x79pl1pjqk1k348l487bdd8zdj4w9wx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/undohist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/undohist"; sha256 = "0zzfzh8sf2dkz8h3kidv7zmwz2c2qq9n9qz2mab2lk0y44njzwhn"; name = "undohist"; }; @@ -59318,7 +59929,7 @@ unfill = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "unfill"; - version = "20131103.413"; + version = "20131103.513"; src = fetchFromGitHub { owner = "purcell"; repo = "unfill"; @@ -59326,7 +59937,7 @@ sha256 = "0fd9k5m1yw2274m2w9rkrg7vqagzf0rjbybglqi7d200b3hmjin3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/unfill"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/unfill"; sha256 = "0b21dk45vbz4vqdbdx0n6wx30rm38w1jjqbsxfj7b96p3i5shwqv"; name = "unfill"; }; @@ -59339,7 +59950,7 @@ unicode-emoticons = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "unicode-emoticons"; - version = "20150204.508"; + version = "20150204.608"; src = fetchFromGitHub { owner = "hagleitn"; repo = "unicode-emoticons"; @@ -59347,7 +59958,7 @@ sha256 = "015gjf8chd6h9azhyarmskk41cm0cmg981jif7q81hakl9av6rhh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/unicode-emoticons"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/unicode-emoticons"; sha256 = "15s6qjhrrqrhm87vmvd6akdclzba19613im85kfkhc24p6nxyhbn"; name = "unicode-emoticons"; }; @@ -59360,7 +59971,7 @@ unicode-enbox = callPackage ({ fetchFromGitHub, fetchurl, lib, list-utils, melpaBuild, pcache, persistent-soft, string-utils, ucs-utils }: melpaBuild { pname = "unicode-enbox"; - version = "20140508.1541"; + version = "20140508.1641"; src = fetchFromGitHub { owner = "rolandwalker"; repo = "unicode-enbox"; @@ -59368,7 +59979,7 @@ sha256 = "0936dqxyp72if9wvn2dcci670yp1gqrmpnll9xq00skp85yq9zs5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/unicode-enbox"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/unicode-enbox"; sha256 = "1phb2qq3pg6z6bl96kl9yfq4jxhgardjpaa4lhgqbxymmqdm7gzv"; name = "unicode-enbox"; }; @@ -59387,7 +59998,7 @@ unicode-fonts = callPackage ({ fetchFromGitHub, fetchurl, font-utils, lib, list-utils, melpaBuild, pcache, persistent-soft, ucs-utils }: melpaBuild { pname = "unicode-fonts"; - version = "20150826.1732"; + version = "20150826.1832"; src = fetchFromGitHub { owner = "rolandwalker"; repo = "unicode-fonts"; @@ -59395,7 +60006,7 @@ sha256 = "0fbwncna6gxlynq9196djpkjhayzk8kxlsxg0gasdgqx1nyxl0mk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/unicode-fonts"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/unicode-fonts"; sha256 = "0plipwb30qqay8691qzqdyg6smpbs9dsxxi49psb8sq0xnxl84q3"; name = "unicode-fonts"; }; @@ -59414,14 +60025,14 @@ unicode-input = callPackage ({ fetchhg, fetchurl, lib, melpaBuild }: melpaBuild { pname = "unicode-input"; - version = "20141219.120"; + version = "20141219.220"; src = fetchhg { url = "https://bitbucket.com/m00nlight/unicode-input"; rev = "e76ccb549e6a"; sha256 = "0kzcg1wxi1z424jdn7pibk9zyfyi85kligav08sl1c2hdldzya4l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/unicode-input"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/unicode-input"; sha256 = "17sf3xnl8yyx4ln4mrjlrvfinb8dvabh81l3qyr9pkn5skpgqgj8"; name = "unicode-input"; }; @@ -59434,7 +60045,7 @@ unicode-progress-reporter = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, list-utils, melpaBuild, pcache, persistent-soft, ucs-utils }: melpaBuild { pname = "unicode-progress-reporter"; - version = "20140508.1541"; + version = "20140508.1641"; src = fetchFromGitHub { owner = "rolandwalker"; repo = "unicode-progress-reporter"; @@ -59442,7 +60053,7 @@ sha256 = "16jgm70ldsngxldiagjkw3ragypalpiidnf82g5hss9ciybkd3j4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/unicode-progress-reporter"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/unicode-progress-reporter"; sha256 = "03z7p27470fqy3gd356l9cpp44a35sfrxz94dxmx388rzlygk7y7"; name = "unicode-progress-reporter"; }; @@ -59455,7 +60066,7 @@ unicode-troll-stopper = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "unicode-troll-stopper"; - version = "20151023.2031"; + version = "20151023.2131"; src = fetchFromGitHub { owner = "camsaul"; repo = "emacs-unicode-troll-stopper"; @@ -59463,7 +60074,7 @@ sha256 = "0ny260mr1h810fvqsfj2hpd3zql4g309m60qj4vk6kmd83p5b60f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/unicode-troll-stopper"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/unicode-troll-stopper"; sha256 = "0a10lq0xsfyp052iw4xjbhsdkbyg25x2gk68gys4k7p6l92la0k5"; name = "unicode-troll-stopper"; }; @@ -59476,7 +60087,7 @@ unicode-whitespace = callPackage ({ fetchFromGitHub, fetchurl, lib, list-utils, melpaBuild, pcache, persistent-soft, ucs-utils }: melpaBuild { pname = "unicode-whitespace"; - version = "20140508.1541"; + version = "20140508.1641"; src = fetchFromGitHub { owner = "rolandwalker"; repo = "unicode-whitespace"; @@ -59484,7 +60095,7 @@ sha256 = "1ayb15nd5vqr0xaghrnp55kqw7bblrjipmfrag6bqpn7jk9bvbdz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/unicode-whitespace"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/unicode-whitespace"; sha256 = "1b3jgha8va42b89pdp41sab2w9wllp7dicqg4lxl67bg6wn147wy"; name = "unicode-whitespace"; }; @@ -59497,7 +60108,7 @@ unidecode = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "unidecode"; - version = "20140317.2318"; + version = "20140318.18"; src = fetchFromGitHub { owner = "sindikat"; repo = "unidecode"; @@ -59505,7 +60116,7 @@ sha256 = "1jvr1k8zd40m1rvwmxzidz1dvr4j8cbh78nqgc3vfb410fj619gw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/unidecode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/unidecode"; sha256 = "0h058mvb6x53zywpwg85dzhaynlgq577yyqhrn5qqyqjg1n8lhc1"; name = "unidecode"; }; @@ -59518,7 +60129,7 @@ unify-opening = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "unify-opening"; - version = "20151116.1848"; + version = "20151116.1948"; src = fetchFromGitHub { owner = "DamienCassou"; repo = "unify-opening"; @@ -59526,7 +60137,7 @@ sha256 = "1vbx10s2zmhpxjg26ik947bcg9f7w3g2w45wmm0shjp743fsdq8p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/unify-opening"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/unify-opening"; sha256 = "1gpmklbdbmv8va8d3yr94r1ydkcyvdzcgxv56rp0bxwbcgmk0as8"; name = "unify-opening"; }; @@ -59539,7 +60150,7 @@ unipoint = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "unipoint"; - version = "20140113.1624"; + version = "20140113.1724"; src = fetchFromGitHub { owner = "apg"; repo = "unipoint"; @@ -59547,7 +60158,7 @@ sha256 = "1wl9rzys1zr2c41h5i57y6hxsavix1b26f453l2izmb6r0b1dvh0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/unipoint"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/unipoint"; sha256 = "0fm7anwcmga9adyfwlri7x014rpvfl1r6nccyi6lrpx126wy008s"; name = "unipoint"; }; @@ -59560,7 +60171,7 @@ unison-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "unison-mode"; - version = "20160319.511"; + version = "20160319.611"; src = fetchFromGitHub { owner = "impaktor"; repo = "unison-mode"; @@ -59568,7 +60179,7 @@ sha256 = "1qpj8a4r1x781wqiqm11273sra0n9d9d6l397dkkx02wmv1l8kcy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/unison-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/unison-mode"; sha256 = "03kyr1h5pm51vn4bykj13rm4ybln266rpnxh65y2ygw8f8md88gl"; name = "unison-mode"; }; @@ -59581,15 +60192,15 @@ unkillable-scratch = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "unkillable-scratch"; - version = "20150328.118"; + version = "20160504.2203"; src = fetchFromGitHub { owner = "EricCrosson"; repo = "unkillable-scratch"; - rev = "55a196d0c7001bfc8cf9c6cc532a5dc94e95baf8"; - sha256 = "0xpaifmrvq5bbzpjhbzbxaac8kymmvqgg7lb2q1s7b5qf47fhqac"; + rev = "0e1d9e1574e497171a7ccfbcb8c994cb9c5880da"; + sha256 = "0bhdqpxq6cly4b6v4ya1ksw0yfdb9g2f2ifbjn4gfcq6j4zszbdm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/unkillable-scratch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/unkillable-scratch"; sha256 = "0ghbpa9pf7k6vd2mjxkpqg2qfl4sd40ir6mrk1rxr1rv8s0afkf7"; name = "unkillable-scratch"; }; @@ -59602,7 +60213,7 @@ url-shortener = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "url-shortener"; - version = "20160404.2159"; + version = "20160404.2259"; src = fetchFromGitHub { owner = "yuyang0"; repo = "url-shortener"; @@ -59610,7 +60221,7 @@ sha256 = "179hi6hsp2naczlcym3qxx9wbqx96bkkzvqygf3iffa0rmik4j7h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/url-shortener"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/url-shortener"; sha256 = "12r01dyk55bs01jk0ab9f24lfvm63h8kvix223pii5y9890dr6ys"; name = "url-shortener"; }; @@ -59623,7 +60234,7 @@ urlenc = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "urlenc"; - version = "20140116.856"; + version = "20140116.956"; src = fetchFromGitHub { owner = "buzztaiki"; repo = "urlenc-el"; @@ -59631,7 +60242,7 @@ sha256 = "0xwr0v4f64d7hi5ldig4r5yjn8h3f8by49g5820187lsp7ng2nw4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/urlenc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/urlenc"; sha256 = "0n6shh95m11162zsnf62zy1ljswdjznjilxx2dbqyqdrn7qr2dgh"; name = "urlenc"; }; @@ -59643,13 +60254,13 @@ }) {}; usage-memo = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "usage-memo"; - version = "20110722.1051"; + version = "20110722.1151"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/usage-memo.el"; sha256 = "00g1zj5fjykdi6gh2wkswpwx132xa6jmwfnrgfg5r96zwb8pib4i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/usage-memo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/usage-memo"; sha256 = "05n50adjnavl7ag24wfjwlnbv5x55qlhmplgsm8j57gjig01nd95"; name = "usage-memo"; }; @@ -59662,7 +60273,7 @@ use-package = callPackage ({ bind-key, diminish, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "use-package"; - version = "20160403.1329"; + version = "20160403.1429"; src = fetchFromGitHub { owner = "jwiegley"; repo = "use-package"; @@ -59670,7 +60281,7 @@ sha256 = "19vc1hblbqlns2c28aqwjpmj8k35ih7akqi04wrqv1b6pljfy3jg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/use-package"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/use-package"; sha256 = "0z7k77yfvsndql719qy4vypnwvi9izal8k8vhdx0pw8msaz4xqd8"; name = "use-package"; }; @@ -59683,7 +60294,7 @@ use-package-chords = callPackage ({ bind-chord, bind-key, fetchFromGitHub, fetchurl, lib, melpaBuild, use-package }: melpaBuild { pname = "use-package-chords"; - version = "20160407.1107"; + version = "20160407.1207"; src = fetchFromGitHub { owner = "waymondo"; repo = "use-package-chords"; @@ -59691,7 +60302,7 @@ sha256 = "06jsa0scvf12kznm0ngv76y726rzh93prc7ymw3fvknvg0xivb8v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/use-package-chords"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/use-package-chords"; sha256 = "18av8gkz3nzyqigyd88ajvylsz2nswsfywxrk2w8d0ykc3p37ass"; name = "use-package-chords"; }; @@ -59704,7 +60315,7 @@ utop = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "utop"; - version = "20151105.447"; + version = "20151105.547"; src = fetchFromGitHub { owner = "diml"; repo = "utop"; @@ -59712,7 +60323,7 @@ sha256 = "1vacc4l5jsyxdfcinxja3r1qyc4cskmd9xvxp6zxkjfw4x6nr71c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/utop"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/utop"; sha256 = "0lv16kl29gc9hdcpn04l85pf7x93vkl41s4mgqp678cllzyr0cq7"; name = "utop"; }; @@ -59725,7 +60336,7 @@ uuid = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "uuid"; - version = "20120910.351"; + version = "20120910.451"; src = fetchFromGitHub { owner = "nicferrier"; repo = "emacs-uuid"; @@ -59733,7 +60344,7 @@ sha256 = "0r74gw8gcbrr62rvj4anz0c3n6kwi1xpb42d3pkzlh4igblhi5zj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/uuid"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/uuid"; sha256 = "13xjnawir9i83j2abxxkl12gz3wapgbk56cps3qyfgql02bfk2rw"; name = "uuid"; }; @@ -59746,7 +60357,7 @@ uuidgen = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "uuidgen"; - version = "20140918.1801"; + version = "20140918.1901"; src = fetchFromGitHub { owner = "kanru"; repo = "uuidgen-el"; @@ -59754,7 +60365,7 @@ sha256 = "19bf6vpc2b9hfjkjanji96fflvk1lbillasnpwcb6zzyq0cs47bw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/uuidgen"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/uuidgen"; sha256 = "1qaz7hg0wsdkl0jb7v7vrkjs554i2zgpxl8xq2f8q7m4bs2m5k48"; name = "uuidgen"; }; @@ -59767,7 +60378,7 @@ uzumaki = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "uzumaki"; - version = "20150119.1906"; + version = "20150119.2006"; src = fetchFromGitHub { owner = "geyslan"; repo = "uzumaki"; @@ -59775,7 +60386,7 @@ sha256 = "0fx18m688wfflbzwv8h3051439fwql69v1ip5q6xn958rdq4pi3x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/uzumaki"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/uzumaki"; sha256 = "1fvhzz2qpyc819rjvzyf42jmb70hlg7a9ybqwi81w7rydpabg61q"; name = "uzumaki"; }; @@ -59788,15 +60399,15 @@ vagrant = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "vagrant"; - version = "20160411.218"; + version = "20160505.430"; src = fetchFromGitHub { owner = "ottbot"; repo = "vagrant.el"; - rev = "6d043d8f2c9e0c7039639504a88b2f8cbf519f67"; - sha256 = "0w4a4mxy81vbr5r4kaaddi5zbisvr9ry5x4skmmlib2k0j84niiv"; + rev = "ef3022d290ee26597e21b17ab87acbd8d4f1071f"; + sha256 = "1661fwfx2gpxjriy3ngi9raz8c2kkk3rgg51irdi591jr2zqmw6s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/vagrant"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/vagrant"; sha256 = "0g6sqzsx3lixcn09fkxhhcfp45qnqgf1ms0l7nkzyljavb7151cf"; name = "vagrant"; }; @@ -59809,15 +60420,15 @@ vagrant-tramp = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "vagrant-tramp"; - version = "20160120.1832"; + version = "20160427.1932"; src = fetchFromGitHub { owner = "dougm"; repo = "vagrant-tramp"; - rev = "660b84f3dd3ac44b5e4d6e72446d557afac11dd9"; - sha256 = "1xslw0whxmqsd79jwxgz1k7h55shffq3985im96pdzf4iivkr3ln"; + rev = "453ba605b28d2964bb4e10074f1e6891ebb4d2d6"; + sha256 = "138gw90wa2qyzyicig3cwhpb1xc5bh9g0vb87y91afjlykhzr6a5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/vagrant-tramp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/vagrant-tramp"; sha256 = "0ij7k27zj22sl7inx141l4dg0ymywnvyabjvaqzc0xjdj0cky5c5"; name = "vagrant-tramp"; }; @@ -59830,7 +60441,7 @@ vala-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "vala-mode"; - version = "20150324.1725"; + version = "20150324.1825"; src = fetchFromGitHub { owner = "emacsorphanage"; repo = "vala-mode"; @@ -59838,7 +60449,7 @@ sha256 = "10vs4d8csww781j1ps3f6dczy5zzza36z7a8zqk40fg4x57ikw44"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/vala-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/vala-mode"; sha256 = "164dhlsiflhpdymk3q5x0bv8gpbwfp34lnkhm2x90kdakfzqf91p"; name = "vala-mode"; }; @@ -59851,7 +60462,7 @@ vala-snippets = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }: melpaBuild { pname = "vala-snippets"; - version = "20150428.2252"; + version = "20150428.2352"; src = fetchFromGitHub { owner = "gopar"; repo = "vala-snippets"; @@ -59859,7 +60470,7 @@ sha256 = "0iscaz8lm4fk6w13f68ysqk8ppng2wj9fkkkq1rfqz77ws66f8nq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/vala-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/vala-snippets"; sha256 = "14hmmic0px3z38dm2dg0kis6cz1p3p1hj7xaqnqjmv02dkx2mmcy"; name = "vala-snippets"; }; @@ -59872,7 +60483,7 @@ vbasense = callPackage ({ auto-complete, fetchFromGitHub, fetchurl, lib, log4e, melpaBuild, yaxception }: melpaBuild { pname = "vbasense"; - version = "20140221.1753"; + version = "20140221.1853"; src = fetchFromGitHub { owner = "aki2o"; repo = "emacs-vbasense"; @@ -59880,7 +60491,7 @@ sha256 = "19j5q2f6pybvjq3ryjcyihzlw348hqyjhfcy3qflry6w786dqcgn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/vbasense"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/vbasense"; sha256 = "1440q2bi4arpl5lbqh7zscg7v3884clqx54p2fdfcfkz47ky4z9n"; name = "vbasense"; }; @@ -59893,7 +60504,7 @@ vc-auto-commit = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "vc-auto-commit"; - version = "20160108.415"; + version = "20160108.515"; src = fetchFromGitHub { owner = "thisirs"; repo = "vc-auto-commit"; @@ -59901,7 +60512,7 @@ sha256 = "09h7yg44hbxv3pyazfypkvk8j3drlwz0zn8x1wj0kbsviksl1wxk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/vc-auto-commit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/vc-auto-commit"; sha256 = "1xpp7vbld3jgcr249m5h7il919kfg7d5ap3zs64i27axzdhv26zk"; name = "vc-auto-commit"; }; @@ -59914,7 +60525,7 @@ vc-check-status = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "vc-check-status"; - version = "20160108.416"; + version = "20160108.516"; src = fetchFromGitHub { owner = "thisirs"; repo = "vc-check-status"; @@ -59922,7 +60533,7 @@ sha256 = "0icc4kqfpimxlja4jgcy9gjj4myc8y84vbvacyf79lxixygpaxi1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/vc-check-status"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/vc-check-status"; sha256 = "1kwnxa0ndfj8b211xy5d47sxkwmsay0kk8q7azfm5ag5dkg56zgi"; name = "vc-check-status"; }; @@ -59935,7 +60546,7 @@ vc-darcs = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "vc-darcs"; - version = "20151225.1428"; + version = "20151225.1528"; src = fetchFromGitHub { owner = "velkyel"; repo = "vc-darcs"; @@ -59943,7 +60554,7 @@ sha256 = "1zpvinbc3nrnjm931fgzrlkl31xcsg9ikh041s1fkfjkhfq0h82h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/vc-darcs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/vc-darcs"; sha256 = "1xskl9wjxkbdpi0fm769ymbvya70vssi944x5252w2d3layibm6m"; name = "vc-darcs"; }; @@ -59956,7 +60567,7 @@ vc-osc = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "vc-osc"; - version = "20120910.411"; + version = "20120910.511"; src = fetchFromGitHub { owner = "aspiers"; repo = "vc-osc"; @@ -59964,7 +60575,7 @@ sha256 = "0whzfzg0m03wbmqsxml8hislnbfvawcniq83hj66lbrnbivxsqj4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/vc-osc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/vc-osc"; sha256 = "0rp33945xk5d986brganqnn55psmlkj6glbimxakhgv9a1r85sxz"; name = "vc-osc"; }; @@ -59977,7 +60588,7 @@ vcl-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "vcl-mode"; - version = "20151213.1323"; + version = "20151213.1423"; src = fetchFromGitHub { owner = "ssm"; repo = "vcl-mode"; @@ -59985,7 +60596,7 @@ sha256 = "1jfis26lmghl30ydzq1xdkrrj3d85q7g44ns6kmfg119ccapllbj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/vcl-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/vcl-mode"; sha256 = "1h0a1briinp9ka7ga3ipdhyf7yfinwvf7babv36myi720900wcq5"; name = "vcl-mode"; }; @@ -59998,7 +60609,7 @@ vcomp = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "vcomp"; - version = "20140906.1708"; + version = "20140906.1808"; src = fetchFromGitHub { owner = "tarsius"; repo = "vcomp"; @@ -60006,7 +60617,7 @@ sha256 = "0fzz26c1pdaz3i58ndhzd2520mhny487daqs21yajxi9x2m00zrl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/vcomp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/vcomp"; sha256 = "02cj2nlyxvgvl2rjfgacljvcsnfm9crmmkhcm2pznj9xw10y8pq0"; name = "vcomp"; }; @@ -60019,7 +60630,7 @@ vdirel = callPackage ({ emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, org-vcard, seq }: melpaBuild { pname = "vdirel"; - version = "20151216.55"; + version = "20151216.155"; src = fetchFromGitHub { owner = "DamienCassou"; repo = "vdirel"; @@ -60027,7 +60638,7 @@ sha256 = "1lh8nv0ayl9ipl2aqc8npzz84g5q7w6v60l14v61mmk34fc23lnc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/vdirel"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/vdirel"; sha256 = "11cc7bw7x5h3bwnlsjyhw6k5fh2fk7wffarrcny562v4cmr013cj"; name = "vdirel"; }; @@ -60040,7 +60651,7 @@ vector-utils = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "vector-utils"; - version = "20140508.1541"; + version = "20140508.1641"; src = fetchFromGitHub { owner = "rolandwalker"; repo = "vector-utils"; @@ -60048,7 +60659,7 @@ sha256 = "1wa03gb98x650q798aqshm43kh6gfxaz1rlyrmvka5dxgf48whmf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/vector-utils"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/vector-utils"; sha256 = "07armr23pq5pd47lqhir6a59r86c84zikbc51d8vfcaw8y71yr5n"; name = "vector-utils"; }; @@ -60061,7 +60672,7 @@ verify-url = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "verify-url"; - version = "20160426.728"; + version = "20160426.828"; src = fetchFromGitHub { owner = "lujun9972"; repo = "verify-url"; @@ -60069,7 +60680,7 @@ sha256 = "1y6vjw5qzaxr37spg5d4nxffmhiipzsrd7mvh8bs3jcfrsg3080n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/verify-url"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/verify-url"; sha256 = "1gd83rb1q0kywchd0345p5axqj1sv4f5kadympx5pbp4n5p1dqb2"; name = "verify-url"; }; @@ -60082,7 +60693,7 @@ vertica = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, sql ? null }: melpaBuild { pname = "vertica"; - version = "20131217.911"; + version = "20131217.1011"; src = fetchFromGitHub { owner = "r0man"; repo = "vertica-el"; @@ -60090,7 +60701,7 @@ sha256 = "1mp71axs3vdrdwlhgywfldvnr6a1g2qbxiywmpfmcv59n5n58p1j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/vertica"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/vertica"; sha256 = "1ljjk6zrbr2k0s0iaqd9iq3j45cavijcx0rqdidliswnfllav4ng"; name = "vertica"; }; @@ -60103,15 +60714,15 @@ vertigo = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "vertigo"; - version = "20160322.2006"; + version = "20160430.5"; src = fetchFromGitHub { owner = "noctuid"; repo = "vertigo.el"; - rev = "ebfa068d9e2fc39ba6d1744618c4e31dad6f629b"; - sha256 = "1yk7qqg8i3970kpfk34wvi0gh16qf0b0sfnf18g3s21dd4gk5a6g"; + rev = "70b56a57c3a37735cc9e92ffaa6dc27c64437738"; + sha256 = "044vy6yi9yfk3h2gd3a718w50py02h1b5fr0i7a08rjlq4l3srka"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/vertigo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/vertigo"; sha256 = "0x0wy1z601sk1x96bl2xx18qm4avd77iybq1a3ss8x8ykwqlgf83"; name = "vertigo"; }; @@ -60124,7 +60735,7 @@ vhdl-capf = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "vhdl-capf"; - version = "20160221.1134"; + version = "20160221.1234"; src = fetchFromGitHub { owner = "sh-ow"; repo = "vhdl-capf"; @@ -60132,7 +60743,7 @@ sha256 = "185a7962h94122q783ih7s8r28xifm0bcrqvkd0g4p64mijlbh3d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/vhdl-capf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/vhdl-capf"; sha256 = "06dkw5ra9wnscpgrnx851vyfgr5797xd60qdimsr2v1bqd8si9km"; name = "vhdl-capf"; }; @@ -60145,15 +60756,15 @@ vhdl-tools = callPackage ({ emacs, fetchFromGitHub, fetchurl, ggtags, helm, lib, melpaBuild, outshine, projectile }: melpaBuild { pname = "vhdl-tools"; - version = "20160308.509"; + version = "20160501.1311"; src = fetchFromGitHub { owner = "csantosb"; repo = "vhdl-tools"; - rev = "17b49fad72269fb987f88fe783248a9252f21faf"; - sha256 = "0ggblkaz214vl1j4i5gv5qj2q6ahnr0k3c3l9sd0w5vdkbw8n5jb"; + rev = "f456ad2b1ce5efa04d22b22d60c0321dfd1e56a4"; + sha256 = "1syfmx7gzphy08h2py3789xwkqwgirfg189h8s6400q9sznzm6fc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/vhdl-tools"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/vhdl-tools"; sha256 = "006d9xv60a90xalagczkziiimwsr1np9nn25zvnc4nlbf8j3fbbw"; name = "vhdl-tools"; }; @@ -60166,7 +60777,7 @@ vi-tilde-fringe = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "vi-tilde-fringe"; - version = "20141027.2142"; + version = "20141027.2242"; src = fetchFromGitHub { owner = "syl20bnr"; repo = "vi-tilde-fringe"; @@ -60174,7 +60785,7 @@ sha256 = "0wdm8k49zl6i6wnh7vjkswdh5m9lix56jv37xvc90inipwgs402z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/vi-tilde-fringe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/vi-tilde-fringe"; sha256 = "0jhwv46gjwjbs1ai65nm6k15y0q4yl9m5mawgp3n4f45dh02cawp"; name = "vi-tilde-fringe"; }; @@ -60186,13 +60797,13 @@ }) {}; viewer = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "viewer"; - version = "20141021.1338"; + version = "20141021.1438"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/viewer.el"; sha256 = "0lns0ic3zjz1km02674d9hxgnp6wlhk168wyr6h4vhpr8a71x9mb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/viewer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/viewer"; sha256 = "0aqwkymq5f0qfgs1hmcg1jb1rd0vcnlqwiyjrjjkfff2xlbpagqf"; name = "viewer"; }; @@ -60205,7 +60816,7 @@ vim-empty-lines-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "vim-empty-lines-mode"; - version = "20150110.2226"; + version = "20150110.2326"; src = fetchFromGitHub { owner = "jmickelin"; repo = "vim-empty-lines-mode"; @@ -60213,7 +60824,7 @@ sha256 = "11qh6fpf6269j9syf06v5wnkgi65wnn7dbyjwb6yz72rvq7ihhcz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/vim-empty-lines-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/vim-empty-lines-mode"; sha256 = "17bl1g4ais73ws596mha0l8dgckfqhx9k2v9m9k0gw7kg7dcjhnb"; name = "vim-empty-lines-mode"; }; @@ -60226,7 +60837,7 @@ vim-region = callPackage ({ expand-region, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "vim-region"; - version = "20140329.1124"; + version = "20140329.1224"; src = fetchFromGitHub { owner = "ongaeshi"; repo = "emacs-vim-region"; @@ -60234,7 +60845,7 @@ sha256 = "13g2hin100c8h5bd7hzhyqzj02ab9c35giyv963l7y044v7sbwig"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/vim-region"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/vim-region"; sha256 = "1dcnx799lpjsdnnjxqzgskkfj2nx7f4kwf0xjhbg35ny4nyn81dx"; name = "vim-region"; }; @@ -60247,7 +60858,7 @@ vimgolf = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "vimgolf"; - version = "20140814.1648"; + version = "20140814.1748"; src = fetchFromGitHub { owner = "timvisher"; repo = "vimgolf"; @@ -60255,7 +60866,7 @@ sha256 = "1i407ilhmk2qrk66ygbvizq964bdk502x7lvrzs4wxwfr5y8ciyj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/vimgolf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/vimgolf"; sha256 = "1hvw2pfa5a984hm6wd33bf6zz6hmlprc6qs3g789dfx91qm890vn"; name = "vimgolf"; }; @@ -60268,15 +60879,15 @@ vimish-fold = callPackage ({ cl-lib ? null, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "vimish-fold"; - version = "20160111.302"; + version = "20160430.157"; src = fetchFromGitHub { owner = "mrkkrp"; repo = "vimish-fold"; - rev = "1b0e8dc12665b40780ef069fb6e43b6e207b7bbd"; - sha256 = "0rl9pcw1dcqpivmcrwpbsd11ym643zccp4sh5k11rmal77gb36sl"; + rev = "2e58cf8352c29814da778e9984598792996d60b7"; + sha256 = "1v1y0lhcfnwx36l92rvjrbwjhjvjizsnl8wmpjyh4ahlh2gw6cla"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/vimish-fold"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/vimish-fold"; sha256 = "017by9w53d8pqlsazfycmhdv16yylks308p5vxp1rcw2qacpc5m3"; name = "vimish-fold"; }; @@ -60289,7 +60900,7 @@ vimrc-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "vimrc-mode"; - version = "20150607.1113"; + version = "20150607.1213"; src = fetchFromGitHub { owner = "mcandre"; repo = "vimrc-mode"; @@ -60297,7 +60908,7 @@ sha256 = "000fs2h5zcv8aq8an16r6zwwf9x1qnfs7xxn39iahiwfzvnljqp0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/vimrc-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/vimrc-mode"; sha256 = "06hisgsn0czvzbq8m4dz86h4q75j54a0gxkg5shnr8s654d450bp"; name = "vimrc-mode"; }; @@ -60310,7 +60921,7 @@ virtualenv = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "virtualenv"; - version = "20140220.1701"; + version = "20140220.1801"; src = fetchFromGitHub { owner = "aculich"; repo = "virtualenv.el"; @@ -60318,7 +60929,7 @@ sha256 = "0rd7hyv66278dj32yva5q9z1749y84c6fwl2iqrns512j1l4kl8q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/virtualenv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/virtualenv"; sha256 = "1djqzzlbwsp9xyjqjbjwdck73wzikbpq19irzamybk90nc98wirl"; name = "virtualenv"; }; @@ -60331,7 +60942,7 @@ virtualenvwrapper = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "virtualenvwrapper"; - version = "20151127.821"; + version = "20151127.921"; src = fetchFromGitHub { owner = "porterjamesj"; repo = "virtualenvwrapper.el"; @@ -60339,7 +60950,7 @@ sha256 = "05rzjlb04h7xyq7l7z87hqqcsf907p2nsxqnh7r6wm24kddfb0ab"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/virtualenvwrapper"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/virtualenvwrapper"; sha256 = "0rn5vwncx8z69xp8hspr06nzkf28l9flchpb2936c2nalmhx6m8i"; name = "virtualenvwrapper"; }; @@ -60352,7 +60963,7 @@ visible-mark = callPackage ({ fetchFromGitLab, fetchurl, lib, melpaBuild }: melpaBuild { pname = "visible-mark"; - version = "20150623.2350"; + version = "20150624.50"; src = fetchFromGitLab { owner = "iankelling"; repo = "visible-mark"; @@ -60360,7 +60971,7 @@ sha256 = "15zdbvv6c114mv6hdq375l7ax70sss06p9d7m86hgssc3kiv9vsv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/visible-mark"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/visible-mark"; sha256 = "1rp0gnz28m1drwb1hhsf0mwxzdppdi88hscf788qw8cw65gckv80"; name = "visible-mark"; }; @@ -60373,7 +60984,7 @@ visual-ascii-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "visual-ascii-mode"; - version = "20150129.446"; + version = "20150129.546"; src = fetchFromGitHub { owner = "Dewdrops"; repo = "visual-ascii-mode"; @@ -60381,7 +60992,7 @@ sha256 = "1cv8mf3l92a9p8qmkfiphk3r81f2ihg2gyw2r4jbbd5ppwbxkl0n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/visual-ascii-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/visual-ascii-mode"; sha256 = "1h0143h39dq61afswlzlgpknk0gv574x91ar6klqmnaf1snab59g"; name = "visual-ascii-mode"; }; @@ -60394,7 +61005,7 @@ visual-fill-column = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "visual-fill-column"; - version = "20160411.720"; + version = "20160411.820"; src = fetchFromGitHub { owner = "joostkremers"; repo = "visual-fill-column"; @@ -60402,7 +61013,7 @@ sha256 = "0r1iylk7r25wmlba4vlrc6k1apbkrbplb9id1h9q91wqhwdnxqal"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/visual-fill-column"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/visual-fill-column"; sha256 = "19y0pwaybjal2rc7migdbnafpi4dfbxvrzgfqr8dlvd9q68v08y5"; name = "visual-fill-column"; }; @@ -60415,7 +61026,7 @@ visual-regexp = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "visual-regexp"; - version = "20160409.441"; + version = "20160409.541"; src = fetchFromGitHub { owner = "benma"; repo = "visual-regexp.el"; @@ -60423,7 +61034,7 @@ sha256 = "00sf1qzd6g8p2zlq4baslzccxq47fi3yi9dbwx4ich6f0b9021dg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/visual-regexp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/visual-regexp"; sha256 = "16bdqq2j7pnjq3j6qa4rhxzidqdhyg80c7nazd93smis8rcv5d0z"; name = "visual-regexp"; }; @@ -60436,7 +61047,7 @@ visual-regexp-steroids = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, visual-regexp }: melpaBuild { pname = "visual-regexp-steroids"; - version = "20160409.441"; + version = "20160409.541"; src = fetchFromGitHub { owner = "benma"; repo = "visual-regexp-steroids.el"; @@ -60444,7 +61055,7 @@ sha256 = "10czcdkhbjjkadrbas4wl2x65r6jxpbwj7hwvvngm9166vg44kh0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/visual-regexp-steroids"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/visual-regexp-steroids"; sha256 = "1xkrzyyll8wmb67m75lfm9k8qcm068km8r1k8hcsadpkd01bx1lr"; name = "visual-regexp-steroids"; }; @@ -60457,7 +61068,7 @@ vkill = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "vkill"; - version = "20091203.1222"; + version = "20091203.1322"; src = fetchFromGitHub { owner = "emacsmirror"; repo = "vkill"; @@ -60465,7 +61076,7 @@ sha256 = "0hb845pnh2yska6alca8hbbxh65x7g81pr7852h8fddm0qd1agkd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/vkill"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/vkill"; sha256 = "09siqsip6d2h3jrxbdbhylkqm42dx3d2dqlkkdw3a81c7ga9lpwm"; name = "vkill"; }; @@ -60478,7 +61089,7 @@ vlf = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "vlf"; - version = "20150101.918"; + version = "20150101.1018"; src = fetchFromGitHub { owner = "m00natic"; repo = "vlfi"; @@ -60486,7 +61097,7 @@ sha256 = "0vl0hwxzzvgna8sysf517qq08fi1zsff3dmcgwvsgzhc47sq8mng"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/vlf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/vlf"; sha256 = "1ipkv5kmda0l39xwbf7ns9p0mx3kb781mxsm9vmbkhr5x577s2j8"; name = "vlf"; }; @@ -60498,13 +61109,13 @@ }) {}; vline = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "vline"; - version = "20120108.645"; + version = "20120108.745"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/vline.el"; sha256 = "1ys6928fgk8mswa4gv10cxggir8acck27g78cw1z3pdz5gakbgnj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/vline"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/vline"; sha256 = "0p59xhyrv7fmcn3qi51sp8v9v2y71ray2s756zbhzgzg63h3nbjp"; name = "vline"; }; @@ -60517,7 +61128,7 @@ voca-builder = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "voca-builder"; - version = "20150625.1333"; + version = "20150625.1433"; src = fetchFromGitHub { owner = "yitang"; repo = "voca-builder"; @@ -60525,7 +61136,7 @@ sha256 = "183pvfp5nnqpgdmfxm84qrnid0lijgk79l5lhwzmnznzkrb7bgxw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/voca-builder"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/voca-builder"; sha256 = "0mbw87mpbb8rw7xzhmg6yjla2c80x9820kw4q00x00ny5rbhm76y"; name = "voca-builder"; }; @@ -60538,7 +61149,7 @@ volatile-highlights = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "volatile-highlights"; - version = "20160221.412"; + version = "20160221.512"; src = fetchFromGitHub { owner = "k-talo"; repo = "volatile-highlights.el"; @@ -60546,7 +61157,7 @@ sha256 = "1yrpqlpxnw7jckhhc18i058vcpi12y687181h0azcwb0wq9p2c26"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/volatile-highlights"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/volatile-highlights"; sha256 = "1r6in919aqdziv6bgzp4k7jqa87bd287pacq615sd5m1nzva1a4d"; name = "volatile-highlights"; }; @@ -60559,7 +61170,7 @@ volume = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "volume"; - version = "20150718.1509"; + version = "20150718.1609"; src = fetchFromGitHub { owner = "dbrock"; repo = "volume-el"; @@ -60567,7 +61178,7 @@ sha256 = "0ymibjq6iwab5ia1fglhz4gm5cnbi792018fmrabcqkisj2zsjb7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/volume"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/volume"; sha256 = "1r01v453bpyh561j8ja36609hy60gc30arvmz4z3c1cybhv8sk1i"; name = "volume"; }; @@ -60580,7 +61191,7 @@ vue-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, mmm-mode }: melpaBuild { pname = "vue-mode"; - version = "20160411.2254"; + version = "20160411.2354"; src = fetchFromGitHub { owner = "CodeFalling"; repo = "vue-mode"; @@ -60588,7 +61199,7 @@ sha256 = "1d9rwgyvizn1zas8v98v86g5kck0m567cprpcakdawwamn155k49"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/vue-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/vue-mode"; sha256 = "0gy7a5sliaijq0666l55vbkg15anrw7k1828szdn1ppkraw14bn0"; name = "vue-mode"; }; @@ -60600,13 +61211,13 @@ }) {}; w32-browser = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "w32-browser"; - version = "20151231.1820"; + version = "20151231.1920"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/w32-browser.el"; sha256 = "0vb5ss30mz0kqq8cscjckw647vqn6xprp2sfjcbpg2fx59z4agma"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/w32-browser"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/w32-browser"; sha256 = "14vc2cipwlwwc0b5ld4x0zvydkg8nbjmp0z2x6ca0nmxw8sfsnc6"; name = "w32-browser"; }; @@ -60619,13 +61230,13 @@ w32browser-dlgopen = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "w32browser-dlgopen"; - version = "20151231.1821"; + version = "20151231.1921"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/w32browser-dlgopen.el"; sha256 = "0nyara81bnd0rvgyljqrrbvjvndkngdc7qzf6scl5iz3vlglfgy7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/w32browser-dlgopen"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/w32browser-dlgopen"; sha256 = "0dnvsnahnbnvjlhfmb0q6agzikv9d42fbnfrwsz6hni92937gz39"; name = "w32browser-dlgopen"; }; @@ -60638,7 +61249,7 @@ w3m = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "w3m"; - version = "20121224.1947"; + version = "20121224.2047"; src = fetchFromGitHub { owner = "emacsorphanage"; repo = "w3m"; @@ -60646,7 +61257,7 @@ sha256 = "1lgvdaghzj1fzh8p6ans0f62zg1bfp086icbsqmyvbgpgcxia9cs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/w3m"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/w3m"; sha256 = "0vh882b44vxnij3l01sig87c1jmbymgirf6s98mvag1p9rm8agxw"; name = "w3m"; }; @@ -60659,7 +61270,7 @@ wacspace = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "wacspace"; - version = "20140827.32"; + version = "20140827.132"; src = fetchFromGitHub { owner = "shosti"; repo = "wacspace.el"; @@ -60667,7 +61278,7 @@ sha256 = "0nvlni3iy2sq76z8d4kj5492m0w7qv96shjqkynvlj0avf528hv4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/wacspace"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/wacspace"; sha256 = "1xy0mprvyi37zmgj1yrlh5ni08j47lpag1jm3a76cgghgmlfjxrl"; name = "wacspace"; }; @@ -60680,7 +61291,7 @@ waher-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "waher-theme"; - version = "20141115.630"; + version = "20141115.730"; src = fetchFromGitHub { owner = "emacsfodder"; repo = "emacs-waher-theme"; @@ -60688,7 +61299,7 @@ sha256 = "0w59ix8cbbcyhh882c8vkrbh84i8d03h9w7dchr3qy233b8wcxlc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/waher-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/waher-theme"; sha256 = "091kipkb6z6x9ic4chprim9rvnmx4yj4419ijmvpn70w69aspnb5"; name = "waher-theme"; }; @@ -60701,7 +61312,7 @@ wakatime-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "wakatime-mode"; - version = "20160417.309"; + version = "20160417.409"; src = fetchFromGitHub { owner = "wakatime"; repo = "wakatime-mode"; @@ -60709,7 +61320,7 @@ sha256 = "06d6ywc0hq6jn5ahq96qa8v8fnps464f2gjmdhsgvj8b0d0c5jl1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/wakatime-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/wakatime-mode"; sha256 = "1rhy2bwkqlha4bj3zmb0iassiglch7yb2kbas0bbpl3d0hdki2i8"; name = "wakatime-mode"; }; @@ -60722,7 +61333,7 @@ wand = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "wand"; - version = "20141104.1845"; + version = "20141104.1945"; src = fetchFromGitHub { owner = "cmpitg"; repo = "wand"; @@ -60730,7 +61341,7 @@ sha256 = "09gqsssc2sk0vwfg0h4zxq9a779sdjdgvxsw7p6n2k0g4wk0phri"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/wand"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/wand"; sha256 = "052zq5dp800hynd9fb6c645kjb9rp3bpkz41ifazjnx4h4864r0l"; name = "wand"; }; @@ -60743,7 +61354,7 @@ wandbox = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, request, s }: melpaBuild { pname = "wandbox"; - version = "20160418.1314"; + version = "20160418.1414"; src = fetchFromGitHub { owner = "kosh04"; repo = "emacs-wandbox"; @@ -60751,7 +61362,7 @@ sha256 = "06jqlvy2078fd8py59z5rraf2ymlkv6wizmw91vq63f87vpw71zg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/wandbox"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/wandbox"; sha256 = "0myyln82nx462bj79acvqxwvmblxild4vbygcrzw5chcwy6crvlz"; name = "wandbox"; }; @@ -60764,7 +61375,7 @@ wanderlust = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, semi }: melpaBuild { pname = "wanderlust"; - version = "20160409.520"; + version = "20160409.620"; src = fetchFromGitHub { owner = "wanderlust"; repo = "wanderlust"; @@ -60772,7 +61383,7 @@ sha256 = "0nqlp7wp6c857zrm74fxdh7i1v7xakm7zgva5kcc4c8bgb8fagqc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/wanderlust"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/wanderlust"; sha256 = "0lq7fvqc0isv49lcm7ql6prc3hpcj5cx4kf8f4gcnfv5k8159cq9"; name = "wanderlust"; }; @@ -60785,7 +61396,7 @@ warm-night-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "warm-night-theme"; - version = "20150607.941"; + version = "20150607.1041"; src = fetchFromGitHub { owner = "mswift42"; repo = "warm-night-theme"; @@ -60793,7 +61404,7 @@ sha256 = "1x472s5qr6wvla7nj5i9mas8z9qhkj4zj5qghfwn5chb9igvfkif"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/warm-night-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/warm-night-theme"; sha256 = "1nrjkrr64rry6fjya22b0lcs0f8a2ijvr87192z311y9mw5rvb29"; name = "warm-night-theme"; }; @@ -60806,7 +61417,7 @@ watch-buffer = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "watch-buffer"; - version = "20120331.1544"; + version = "20120331.1644"; src = fetchFromGitHub { owner = "mjsteger"; repo = "watch-buffer"; @@ -60814,7 +61425,7 @@ sha256 = "0i84ndnxma8s07kf5ixqyhv5f89mzc4iymgazj5inmxhvbc7s7r2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/watch-buffer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/watch-buffer"; sha256 = "18sxgihmqmkrbgs66qgnrsjqbp90l93531hns31fbnif10bkx2j5"; name = "watch-buffer"; }; @@ -60827,7 +61438,7 @@ wavefront-obj-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "wavefront-obj-mode"; - version = "20150501.1316"; + version = "20150501.1416"; src = fetchFromGitHub { owner = "abend"; repo = "wavefront-obj-mode"; @@ -60835,7 +61446,7 @@ sha256 = "0zw8z2r82986likz0b0zy37bywicrvz9dizzw9p52gs1lx0is1fy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/wavefront-obj-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/wavefront-obj-mode"; sha256 = "0qqismh6g2fvi45q2q52lq0n9nrh95wgamlsy5j4rx4syfgzxbrk"; name = "wavefront-obj-mode"; }; @@ -60848,7 +61459,7 @@ wc-goal-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "wc-goal-mode"; - version = "20140829.859"; + version = "20140829.959"; src = fetchFromGitHub { owner = "bnbeckwith"; repo = "wc-goal-mode"; @@ -60856,7 +61467,7 @@ sha256 = "0p7j4hvcxfyjf0na9s3xv29dvmwq82s56lincfasd0ydcpz4fbwc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/wc-goal-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/wc-goal-mode"; sha256 = "0l3gh96njjldp7n13jn1zjrp17h7ivjak102j6wwspgg6v2h5419"; name = "wc-goal-mode"; }; @@ -60869,7 +61480,7 @@ wc-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "wc-mode"; - version = "20131121.1026"; + version = "20131121.1126"; src = fetchFromGitHub { owner = "bnbeckwith"; repo = "wc-mode"; @@ -60877,7 +61488,7 @@ sha256 = "1j1k3ab0ymr66w23z3r4yd1g6410n5y80jfyg2f9i9rdk7vq18gd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/wc-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/wc-mode"; sha256 = "191dmxfpqnj7d43cr0fhdmj5ldfs7w9zg5pb2lv9wvlfl7asdid6"; name = "wc-mode"; }; @@ -60890,7 +61501,7 @@ wcheck-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "wcheck-mode"; - version = "20160208.1336"; + version = "20160208.1436"; src = fetchFromGitHub { owner = "tlikonen"; repo = "wcheck-mode"; @@ -60898,7 +61509,7 @@ sha256 = "0irw76inj3gdmi88hiayplv6fzjjjsvvvmr121ahh3p73mb14cjd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/wcheck-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/wcheck-mode"; sha256 = "0cmdvhgax6r5svn3wkwll4j271qj70g8182c58riwnkhiajxmn3k"; name = "wcheck-mode"; }; @@ -60911,7 +61522,7 @@ weather-metno = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "weather-metno"; - version = "20150831.2007"; + version = "20150831.2107"; src = fetchFromGitHub { owner = "ruediger"; repo = "weather-metno-el"; @@ -60919,7 +61530,7 @@ sha256 = "05gfc67724b0mwg8kvk3dsazx3dld50b9xjq8h1nc6jvdz3zxb9z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/weather-metno"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/weather-metno"; sha256 = "0h7p4l8y75h27pgk45f0mk3gjd43jk8q97gjf85a9b0afd63d3f6"; name = "weather-metno"; }; @@ -60932,7 +61543,7 @@ web = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "web"; - version = "20141231.1401"; + version = "20141231.1501"; src = fetchFromGitHub { owner = "nicferrier"; repo = "emacs-web"; @@ -60940,7 +61551,7 @@ sha256 = "03xcadplw1hg5hxw6bfrhw5xkkxk3i4105f114c6m3d2525jq4y5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/web"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/web"; sha256 = "0ynnmqw0vsf7wyhp9m5a05dfb19vkj8dnj5glhjdzjvg30dhjp3a"; name = "web"; }; @@ -60953,7 +61564,7 @@ web-beautify = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "web-beautify"; - version = "20160410.1205"; + version = "20160410.1305"; src = fetchFromGitHub { owner = "yasuyk"; repo = "web-beautify"; @@ -60961,7 +61572,7 @@ sha256 = "0j8v8p4w586wz80q9scdby6b80sbxz4lqg9zb5pbr2w8bsps8n4m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/web-beautify"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/web-beautify"; sha256 = "06ky2svhca8hjgmvxrg3h6ya7prl72q1r88x967yc6b0qq3r7g0f"; name = "web-beautify"; }; @@ -60974,7 +61585,7 @@ web-completion-data = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "web-completion-data"; - version = "20160318.348"; + version = "20160318.448"; src = fetchFromGitHub { owner = "osv"; repo = "web-completion-data"; @@ -60982,7 +61593,7 @@ sha256 = "19nzjgvd2i5745283ck3k2vylrr6lnk9h3ggzwrwdhyd3m9433vm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/web-completion-data"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/web-completion-data"; sha256 = "1zzdmhyn6bjaidk808s4pdk25a5rn4287949ps5vbpyniaf6gny9"; name = "web-completion-data"; }; @@ -60995,15 +61606,15 @@ web-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "web-mode"; - version = "20160424.1556"; + version = "20160505.1210"; src = fetchFromGitHub { owner = "fxbois"; repo = "web-mode"; - rev = "7477e48dd68ccc77c325637b8ea1bd00b1f93aba"; - sha256 = "12bz4n7kjad3c3bc8s7hb4n46qybahjzxmc0a6vnfs6b5zggw9yn"; + rev = "9bd7a7ebcbe67ae8f14d585d04b93569fa496ec7"; + sha256 = "1cs9ldj2qckyynwxzvbd5fmniis6mhprdz1wvvvpjs900bbc843s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/web-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/web-mode"; sha256 = "1vyhyc5nf4yj2m63inpwmcqvlsihaqw8nn8xvfdg44nhl6vjz97i"; name = "web-mode"; }; @@ -61016,7 +61627,7 @@ web-server = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "web-server"; - version = "20140905.1906"; + version = "20140905.2006"; src = fetchFromGitHub { owner = "eschulte"; repo = "emacs-web-server"; @@ -61024,7 +61635,7 @@ sha256 = "0mbhyk7sgisx0l0xiz2xgy4jfbgwazlnxjvajsh4nysyig5rys05"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/web-server"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/web-server"; sha256 = "1f0iyvwq1kq3zfxx2v596cmah7jfk2a04g2rjllbgxxnzwms29z3"; name = "web-server"; }; @@ -61037,14 +61648,14 @@ weblogger = callPackage ({ fetchbzr, fetchurl, lib, melpaBuild, xml-rpc }: melpaBuild { pname = "weblogger"; - version = "20110926.1118"; + version = "20110926.1218"; src = fetchbzr { url = "lp:weblogger-el"; rev = "38"; sha256 = "1z7ld9d0crwdh778fyaapx75vpnlnslsh9nf07ywkylhz4w68yyv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/weblogger"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/weblogger"; sha256 = "189zs1321rybgi4zihps7d2jll5z13726jsg5mi7iycg85nkv2fk"; name = "weblogger"; }; @@ -61057,15 +61668,15 @@ websocket = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "websocket"; - version = "20160227.2322"; + version = "20160504.108"; src = fetchFromGitHub { owner = "ahyatt"; repo = "emacs-websocket"; - rev = "bcbd5258b2fd14e12e9a8c9d89cc2d727b5a8da0"; - sha256 = "104c8dvyxrgyy3dwh3bmqc96c0xrvagbghwflfbhxplib22v7mly"; + rev = "d407c0ad0fcf42c097d36de7a1421d2990288d21"; + sha256 = "01s9cmf8xija63zjri363ym1bwgsl4q5wb49qy328j773iajzmim"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/websocket"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/websocket"; sha256 = "1v8jlpahp30lihz7mdznwl6pyrbsdbqznli2wb5gfblnlxil04lg"; name = "websocket"; }; @@ -61078,7 +61689,7 @@ wedge-ws = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "wedge-ws"; - version = "20140714.1649"; + version = "20140714.1749"; src = fetchFromGitHub { owner = "aes"; repo = "wedge-ws"; @@ -61086,7 +61697,7 @@ sha256 = "19hgb5knqqc4rb8yl8s604xql8ar6m9r4d379cfakn15jvwqnl98"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/wedge-ws"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/wedge-ws"; sha256 = "07i2dr807np4fwq3ryxlw11vbc1sik1iv7x5740q258jyc9zfgll"; name = "wedge-ws"; }; @@ -61099,7 +61710,7 @@ weechat = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, s, tracking }: melpaBuild { pname = "weechat"; - version = "20160229.1448"; + version = "20160229.1548"; src = fetchFromGitHub { owner = "the-kenny"; repo = "weechat.el"; @@ -61107,7 +61718,7 @@ sha256 = "0vg3w18xj6i320jsivsml3mi1fdxr8dgxmn7qy2780ajy5ndxnw1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/weechat"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/weechat"; sha256 = "0sxrms5024bi4irv8x8s8j1zcyd62cpqm0zv4dgpm65wnpc7xc46"; name = "weechat"; }; @@ -61120,7 +61731,7 @@ weechat-alert = callPackage ({ alert, cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, weechat }: melpaBuild { pname = "weechat-alert"; - version = "20160416.748"; + version = "20160416.848"; src = fetchFromGitHub { owner = "Kungi"; repo = "weechat-alert"; @@ -61128,7 +61739,7 @@ sha256 = "1hkhim2jfdywx6ks4qfcizycp5qsx4ms6929kbgmzzb8i7j380x6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/weechat-alert"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/weechat-alert"; sha256 = "026hkddvd4a6wy7s8s0lklw8b99fpjawdgi7amvpcrn79ylwbf22"; name = "weechat-alert"; }; @@ -61141,7 +61752,7 @@ weibo = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "weibo"; - version = "20150307.1642"; + version = "20150307.1742"; src = fetchFromGitHub { owner = "austin-----"; repo = "weibo.emacs"; @@ -61149,7 +61760,7 @@ sha256 = "0hc5iyjpcik996ns84akrl28scndmn0gd1zfdf1nnqq6n2m5zvgh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/weibo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/weibo"; sha256 = "1ndgfqqb0gvy8p2fisi57s9bsa2nrnv80smg78m89i4cwagbz6yd"; name = "weibo"; }; @@ -61162,7 +61773,7 @@ wgrep = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "wgrep"; - version = "20141016.1856"; + version = "20141016.1956"; src = fetchFromGitHub { owner = "mhayashi1120"; repo = "Emacs-wgrep"; @@ -61170,7 +61781,7 @@ sha256 = "075z0glain0dp56d0cp468y5y88wn82ab26aapsrdzq8hmlshwn4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/wgrep"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/wgrep"; sha256 = "09xs420lvbsmz5z28rf6f1iwa0ixkk0w24qbj6zhl9hidh4mv9y4"; name = "wgrep"; }; @@ -61183,7 +61794,7 @@ wgrep-ack = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, wgrep }: melpaBuild { pname = "wgrep-ack"; - version = "20141012.511"; + version = "20141012.611"; src = fetchFromGitHub { owner = "mhayashi1120"; repo = "Emacs-wgrep"; @@ -61191,7 +61802,7 @@ sha256 = "075z0glain0dp56d0cp468y5y88wn82ab26aapsrdzq8hmlshwn4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/wgrep-ack"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/wgrep-ack"; sha256 = "03l1a681cwnn06m77xg0a547892gy8mh415v9rg3h6lkxwcld8wh"; name = "wgrep-ack"; }; @@ -61204,7 +61815,7 @@ wgrep-ag = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, wgrep }: melpaBuild { pname = "wgrep-ag"; - version = "20141012.511"; + version = "20141012.611"; src = fetchFromGitHub { owner = "mhayashi1120"; repo = "Emacs-wgrep"; @@ -61212,7 +61823,7 @@ sha256 = "075z0glain0dp56d0cp468y5y88wn82ab26aapsrdzq8hmlshwn4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/wgrep-ag"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/wgrep-ag"; sha256 = "1b2mj06kws29ha7g16l5d1s3p3nwyw8rprbpaiijdk9nxqcm0a8a"; name = "wgrep-ag"; }; @@ -61225,7 +61836,7 @@ wgrep-helm = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, wgrep }: melpaBuild { pname = "wgrep-helm"; - version = "20140528.1627"; + version = "20140528.1727"; src = fetchFromGitHub { owner = "mhayashi1120"; repo = "Emacs-wgrep"; @@ -61233,7 +61844,7 @@ sha256 = "075z0glain0dp56d0cp468y5y88wn82ab26aapsrdzq8hmlshwn4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/wgrep-helm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/wgrep-helm"; sha256 = "1hh7isc9xifkrdfw88jw0z0xmfazrbcis6d355bcaxlnjy6fzm8b"; name = "wgrep-helm"; }; @@ -61246,7 +61857,7 @@ wgrep-pt = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, wgrep }: melpaBuild { pname = "wgrep-pt"; - version = "20140510.1731"; + version = "20140510.1831"; src = fetchFromGitHub { owner = "mhayashi1120"; repo = "Emacs-wgrep"; @@ -61254,7 +61865,7 @@ sha256 = "075z0glain0dp56d0cp468y5y88wn82ab26aapsrdzq8hmlshwn4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/wgrep-pt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/wgrep-pt"; sha256 = "1gphdf85spsywj3s3ypb7dwrqh0zd70n2vrbgjqkbnfbwqjp9qbg"; name = "wgrep-pt"; }; @@ -61267,7 +61878,7 @@ what-the-commit = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "what-the-commit"; - version = "20150901.816"; + version = "20150901.916"; src = fetchFromGitHub { owner = "danielbarbarito"; repo = "what-the-commit.el"; @@ -61275,7 +61886,7 @@ sha256 = "04w62davpqqqvympkr52bg54c2i45p09q9bs70p9ff5jvc6i3g76"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/what-the-commit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/what-the-commit"; sha256 = "0nnyb6hq6r21wf1x3q41ab48b3dmcz5lyli771a59dk1gs8qpgak"; name = "what-the-commit"; }; @@ -61288,15 +61899,15 @@ which-key = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "which-key"; - version = "20160426.1008"; + version = "20160507.807"; src = fetchFromGitHub { owner = "justbur"; repo = "emacs-which-key"; - rev = "88fd7608c5201b1a36b8eed2e9cc688677e96a77"; - sha256 = "1jh6c4mb35f2xmv70phmris9a52jvh2a1dfansksv9dw46cfkd5g"; + rev = "e151eebebf74b81321d49ea9c120bee149820fa8"; + sha256 = "06m2f6jbhl75g29xr6xxlv06m0l6517zdjg9xcfyakbbdk523w5i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/which-key"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/which-key"; sha256 = "0vqbhfzcv9m58w41zdhpiymhgl38n15c6d7ffd99narxlkckcj59"; name = "which-key"; }; @@ -61309,7 +61920,7 @@ whitaker = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "whitaker"; - version = "20150814.622"; + version = "20150814.722"; src = fetchFromGitHub { owner = "Fuco1"; repo = "whitaker"; @@ -61317,7 +61928,7 @@ sha256 = "1y75cylvqgn54h8yqahz4wi1qj5yhbs66i7x23jmbmah3q0rycab"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/whitaker"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/whitaker"; sha256 = "17fnvb3jh6fi4wddn5qnp6i6ndidg8jf9ac69q9j032c2msr07nj"; name = "whitaker"; }; @@ -61330,7 +61941,7 @@ white-sand-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "white-sand-theme"; - version = "20151117.1048"; + version = "20151117.1148"; src = fetchFromGitHub { owner = "mswift42"; repo = "white-sand-theme"; @@ -61338,7 +61949,7 @@ sha256 = "0sh92g5vd518f80klvljqkjpw4ji909439dpc3sfaccf5jiwn9xn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/white-sand-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/white-sand-theme"; sha256 = "19qsiic6yf7g60ygjmw7kg1i28nqpm3zja8cmdh33ny2bbkwxsz5"; name = "white-sand-theme"; }; @@ -61351,7 +61962,7 @@ whitespace-cleanup-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "whitespace-cleanup-mode"; - version = "20150603.647"; + version = "20150603.747"; src = fetchFromGitHub { owner = "purcell"; repo = "whitespace-cleanup-mode"; @@ -61359,7 +61970,7 @@ sha256 = "15yhbyyr0ksd9ziinlylyddny2szlj35x2548awj9ijnqqgjd23r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/whitespace-cleanup-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/whitespace-cleanup-mode"; sha256 = "1fhdjrxxyfx4xsgfjqq9p7vhj98wmqf2r00mv8k27vdaxwsnm5p3"; name = "whitespace-cleanup-mode"; }; @@ -61372,7 +61983,7 @@ whole-line-or-region = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "whole-line-or-region"; - version = "20110901.330"; + version = "20110901.430"; src = fetchFromGitHub { owner = "purcell"; repo = "whole-line-or-region"; @@ -61380,7 +61991,7 @@ sha256 = "0ip0vkqb4dm88xqzgwc9yaxzf4sc4x006m6z73a3lbfmrncy2c1d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/whole-line-or-region"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/whole-line-or-region"; sha256 = "1vs2i4cy1zc6nj660i9h36jbfgc3kvqivjnzlq5zwlxk5hcibqa1"; name = "whole-line-or-region"; }; @@ -61392,13 +62003,13 @@ }) {}; wid-edit-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "wid-edit-plus"; - version = "20151231.1822"; + version = "20151231.1922"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/wid-edit+.el"; sha256 = "18bnwwjk8jj4ns08sxhnznj0d8n1bxm2kj43r06nwyibh6ajpl7f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/wid-edit+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/wid-edit+"; sha256 = "1wwrsk14hc0wrvy7hm94aw6zg50n2smlqwr6frwpi7yp8y394wiv"; name = "wid-edit-plus"; }; @@ -61411,7 +62022,7 @@ wide-column = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "wide-column"; - version = "20120814.312"; + version = "20120814.412"; src = fetchFromGitHub { owner = "phillord"; repo = "wide-column"; @@ -61419,7 +62030,7 @@ sha256 = "0bq39sfipad16skh5q26gp7z24kk93hgnaxb378dzfq1306kmn8q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/wide-column"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/wide-column"; sha256 = "1kyyvq9fgaypvhiy9vbvr99xsac5vhylkbjsxn5fhylyc5n867sb"; name = "wide-column"; }; @@ -61432,7 +62043,7 @@ widget-mvc = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "widget-mvc"; - version = "20150101.2206"; + version = "20150101.2306"; src = fetchFromGitHub { owner = "kiwanami"; repo = "emacs-widget-mvc"; @@ -61440,7 +62051,7 @@ sha256 = "0036alzp66k7w3z45lj8qzh3plxv9vwcw17wibkz90mlb27vy6yz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/widget-mvc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/widget-mvc"; sha256 = "0njzvdlxb7z480r6dvmksgivhz7rvnil517aj86qx0jbc5mr3l2f"; name = "widget-mvc"; }; @@ -61453,7 +62064,7 @@ wiki-nav = callPackage ({ button-lock, fetchFromGitHub, fetchurl, lib, melpaBuild, nav-flash }: melpaBuild { pname = "wiki-nav"; - version = "20150223.754"; + version = "20150223.854"; src = fetchFromGitHub { owner = "rolandwalker"; repo = "button-lock"; @@ -61461,7 +62072,7 @@ sha256 = "06qjvybf65ffrcnhhbqs333lg51fawaxnva3jvdg7zbrsv4m9acl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/wiki-nav"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/wiki-nav"; sha256 = "19mabz0y3fcqsm68ijwwbbqylxgp71anc0a31zgc1blha9jivvwy"; name = "wiki-nav"; }; @@ -61474,7 +62085,7 @@ wiki-summary = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "wiki-summary"; - version = "20150408.1622"; + version = "20150408.1722"; src = fetchFromGitHub { owner = "jozefg"; repo = "wiki-summary.el"; @@ -61482,7 +62093,7 @@ sha256 = "02bczc1mb1cs1aryz5pw6cmpydjmxja2zj91893cz8rnfn1r031i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/wiki-summary"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/wiki-summary"; sha256 = "1hiyi3w6rvins8hfxd96bgpihxarmv192q96sadqcwshcqi14zmw"; name = "wiki-summary"; }; @@ -61495,7 +62106,7 @@ wilt = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "wilt"; - version = "20151105.718"; + version = "20151105.818"; src = fetchFromGitHub { owner = "sixty-north"; repo = "emacs-wilt"; @@ -61503,7 +62114,7 @@ sha256 = "1n45m8xn65a2lg8ff7m6hbqnp2j49n9sfyr924laljvhjbi37knd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/wilt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/wilt"; sha256 = "0nw6zr06zq60j72qfjmbqrxyz022fnisb0bsh6xmlnd1k1kqlrz6"; name = "wilt"; }; @@ -61515,13 +62126,13 @@ }) {}; wimpy-del = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "wimpy-del"; - version = "20151231.1823"; + version = "20151231.1923"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/wimpy-del.el"; sha256 = "142ql6886h418f73h3wjblhnd16qvbap7mfr4g2yv4xybh88d4x2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/wimpy-del"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/wimpy-del"; sha256 = "10qw5lfq2392fr5sdz5a9bc6rvsg0j4dkrwvdhip1kqvajznw49x"; name = "wimpy-del"; }; @@ -61534,7 +62145,7 @@ win-switch = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "win-switch"; - version = "20150208.2111"; + version = "20150208.2211"; src = fetchFromGitHub { owner = "genovese"; repo = "win-switch"; @@ -61542,7 +62153,7 @@ sha256 = "0ib20zl8l1fs69ca9rry27qz69sgf6ws1ca5nhm5llvpkjcgv53i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/win-switch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/win-switch"; sha256 = "1s6inp5kf763rngn58r02fd7n7z3dd55j6hb7s9dgvc856d5z3my"; name = "win-switch"; }; @@ -61554,13 +62165,13 @@ }) {}; windata = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "windata"; - version = "20080412.955"; + version = "20080412.1055"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/windata.el"; sha256 = "0dcbnqcqw7jzwwdn0rxxlixga1zw1x3a2zbpxvd90xp7zig4f0yz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/windata"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/windata"; sha256 = "0xq51rdanq5as6kfyi97hsqmig5g35w7xv8c96bhzyflranw7jw5"; name = "windata"; }; @@ -61573,7 +62184,7 @@ window-end-visible = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "window-end-visible"; - version = "20140508.1541"; + version = "20140508.1641"; src = fetchFromGitHub { owner = "rolandwalker"; repo = "window-end-visible"; @@ -61581,7 +62192,7 @@ sha256 = "0g69r64gyz4p3k6n8l0i1837mszycbrp23acnp0iy0y3mg67x3pn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/window-end-visible"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/window-end-visible"; sha256 = "1p78n7yysj18404cdc6vahfrzwn5pixyfnja8ch48rj4fm4jbxwq"; name = "window-end-visible"; }; @@ -61594,7 +62205,7 @@ window-jump = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "window-jump"; - version = "20150213.1436"; + version = "20150213.1536"; src = fetchFromGitHub { owner = "chumpage"; repo = "chumpy-windows"; @@ -61602,7 +62213,7 @@ sha256 = "069aqyqzjp5ljqfzm7lxkh8j8firk7041wc2jwzqha8jn9zpvbxs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/window-jump"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/window-jump"; sha256 = "1gmqb7j5fb3q3krgx7arrln5nvyg9vcpph6wlxj6py679wfa3lwr"; name = "window-jump"; }; @@ -61615,7 +62226,7 @@ window-layout = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "window-layout"; - version = "20150717.7"; + version = "20150717.107"; src = fetchFromGitHub { owner = "kiwanami"; repo = "emacs-window-layout"; @@ -61623,7 +62234,7 @@ sha256 = "08chi9b4bap78n069aavvx3850kabk2jflrgymy4jxv08ybqikdg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/window-layout"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/window-layout"; sha256 = "1n4a6z00lxsffirjrmbaaw432w798b9vv34qawgn1k17y9l7gb85"; name = "window-layout"; }; @@ -61635,13 +62246,13 @@ }) {}; window-number = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "window-number"; - version = "20140123.2102"; + version = "20140123.2202"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/window-number.el"; sha256 = "1as3qbvj6d171qp2s8ycqqi16bgqm47vfk3fbxrl9szjzaxh9nw6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/window-number"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/window-number"; sha256 = "1qhlsdhs40cyly87pj3f1n6ckr7z5pmhqndgay5jyxwxxdpknpap"; name = "window-number"; }; @@ -61654,7 +62265,7 @@ window-numbering = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "window-numbering"; - version = "20150228.1447"; + version = "20150228.1547"; src = fetchFromGitHub { owner = "nschum"; repo = "window-numbering.el"; @@ -61662,7 +62273,7 @@ sha256 = "1f4c6q4larifm745fr8f3w8sxs1sbs77vna29rw120jz8rnlz0jy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/window-numbering"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/window-numbering"; sha256 = "0x3n0ni16q69lfpyjz61spqghmhvc3cwa4aj80ihii3pk80f769x"; name = "window-numbering"; }; @@ -61674,13 +62285,13 @@ }) {}; window-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "window-plus"; - version = "20151231.1824"; + version = "20151231.1924"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/window+.el"; sha256 = "0mqdcgk6mdxgl9if7jzgg16zqdwnsp8icrdhnygphw5m9h2dqcnm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/window+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/window+"; sha256 = "0fhzb0ay9g9qgcaxpb2qaw15dh0lfmv3x4akyipi3zx11446d06j"; name = "window-plus"; }; @@ -61693,7 +62304,7 @@ window-purpose = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, imenu-list, let-alist, lib, melpaBuild }: melpaBuild { pname = "window-purpose"; - version = "20160310.628"; + version = "20160310.728"; src = fetchFromGitHub { owner = "bmag"; repo = "emacs-purpose"; @@ -61701,7 +62312,7 @@ sha256 = "16471dng4iknh5wa3931iz9mm8bgd6lsrnhrjkd5ava2bv484gz6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/window-purpose"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/window-purpose"; sha256 = "1ib5ia7armghvmcw8qywcil4nxzwwakmfsp7ybawb0xr53h1w96d"; name = "window-purpose"; }; @@ -61714,7 +62325,7 @@ windsize = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "windsize"; - version = "20151121.740"; + version = "20151121.840"; src = fetchFromGitHub { owner = "grammati"; repo = "windsize"; @@ -61722,7 +62333,7 @@ sha256 = "0hijf56ahbc5inn7n39nj96d948c4d05n9d5ci3g3vbl5hsyb121"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/windsize"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/windsize"; sha256 = "1xhfw77168942rcn246qndii0hv0q6vkgzj67jg4mxh8n46m50m9"; name = "windsize"; }; @@ -61735,7 +62346,7 @@ winpoint = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "winpoint"; - version = "20131023.1213"; + version = "20131023.1313"; src = fetchFromGitHub { owner = "jorgenschaefer"; repo = "winpoint"; @@ -61743,7 +62354,7 @@ sha256 = "1qrbvidnmgg7jyasb28bc0z1x4a4ayzq5jmv38dsx0qs080s85wy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/winpoint"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/winpoint"; sha256 = "10ji7xd9ipmy6c2qxljqdxgqf5sb8h7lwz43mr6ixbn7v1b7pp6w"; name = "winpoint"; }; @@ -61756,7 +62367,7 @@ winring = callPackage ({ fetchFromGitLab, fetchurl, lib, melpaBuild }: melpaBuild { pname = "winring"; - version = "20150804.1308"; + version = "20150804.1408"; src = fetchFromGitLab { owner = "warsaw"; repo = "winring"; @@ -61764,7 +62375,7 @@ sha256 = "1igld3zkvm3qbg1k77cn7rlxi8jqy8cvvp7z5mqwx9ifyihiwd0b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/winring"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/winring"; sha256 = "1mgr5z4h7mf677xx8md3pqd31k17qs62z9iamfih206fcwgh24k4"; name = "winring"; }; @@ -61777,14 +62388,14 @@ wisp-mode = callPackage ({ fetchhg, fetchurl, lib, melpaBuild }: melpaBuild { pname = "wisp-mode"; - version = "20160419.1432"; + version = "20160419.1532"; src = fetchhg { url = "https://bitbucket.com/ArneBab/wisp"; - rev = "4d512e8e0e0f"; - sha256 = "059m9w0m0rqjwdzdn4l1ib25ys0vym54lvb9bkd40rd0yqd36xfw"; + rev = "2c73bee5d79f"; + sha256 = "0f9cjvj6d7q873bjiyr3f7ghj421gvpzzxhfyjpl4bqpsv9qqyr7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/wisp-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/wisp-mode"; sha256 = "10zkp1qbvl8dmxij7zz4p1fixs3891xr1nr57vyb3llar9fgzglc"; name = "wisp-mode"; }; @@ -61797,7 +62408,7 @@ wispjs-mode = callPackage ({ clojure-mode, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "wispjs-mode"; - version = "20140103.1632"; + version = "20140103.1732"; src = fetchFromGitHub { owner = "krisajenkins"; repo = "wispjs-mode"; @@ -61805,7 +62416,7 @@ sha256 = "188h1sy4mxzrkwi3zgiw108c5f71rkj5agdkf9yy9v8c1bkawm4x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/wispjs-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/wispjs-mode"; sha256 = "0qzm0dcvjndasnbqpkdc56f1qv66gxv8dfgfcwq5l1bp5wyx813p"; name = "wispjs-mode"; }; @@ -61818,7 +62429,7 @@ with-editor = callPackage ({ async, dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "with-editor"; - version = "20160408.401"; + version = "20160408.501"; src = fetchFromGitHub { owner = "magit"; repo = "with-editor"; @@ -61826,7 +62437,7 @@ sha256 = "0rzq2fbz523fyy2p6ddx9iws89sfgw3pwillw8yz965f3hxx3dj3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/with-editor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/with-editor"; sha256 = "1wsl1vwvywlc32r5pcc9jqd0pbzq1sn4fppxk3vwl0s5h40v8rnb"; name = "with-editor"; }; @@ -61839,7 +62450,7 @@ with-namespace = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, loop, melpaBuild }: melpaBuild { pname = "with-namespace"; - version = "20130407.1322"; + version = "20130407.1422"; src = fetchFromGitHub { owner = "Wilfred"; repo = "with-namespace.el"; @@ -61847,7 +62458,7 @@ sha256 = "1c7g8f3jr7bb0xxprammfg433gd63in5iiiaq8rjmc94h6hdcys3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/with-namespace"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/with-namespace"; sha256 = "1199k1xvvv7ald6ywrh2sfpw2v42ckpcsw6mcj617bg3b5m7770i"; name = "with-namespace"; }; @@ -61860,7 +62471,7 @@ wn-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "wn-mode"; - version = "20151109.2352"; + version = "20151110.52"; src = fetchFromGitHub { owner = "luismbo"; repo = "wn-mode"; @@ -61868,7 +62479,7 @@ sha256 = "12rfpkyjkhikjh0mihhp5h5pzbm4br68nwf8k1ja9djl77vfzv36"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/wn-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/wn-mode"; sha256 = "1qy1pkfdnm4pska4cnff9cx2c812ilymajhpmsfc9jdbvhzwrwg3"; name = "wn-mode"; }; @@ -61881,7 +62492,7 @@ wolfram-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "wolfram-mode"; - version = "20140118.957"; + version = "20140118.1057"; src = fetchFromGitHub { owner = "kawabata"; repo = "wolfram-mode"; @@ -61889,7 +62500,7 @@ sha256 = "1xna0cjgi9m87pws2h0cza67qbpdhjmdi5h4wv6v4g14nr26hi3w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/wolfram-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/wolfram-mode"; sha256 = "1bq95lamzz45macpklnq1kxw9ak4x4f41kx16f472dn650ff0zlf"; name = "wolfram-mode"; }; @@ -61902,7 +62513,7 @@ wonderland = callPackage ({ dash, dash-functional, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, multi }: melpaBuild { pname = "wonderland"; - version = "20130912.2019"; + version = "20130912.2119"; src = fetchFromGitHub { owner = "kurisuwhyte"; repo = "emacs-wonderland"; @@ -61910,7 +62521,7 @@ sha256 = "0hacc8ha5w44cgwkipa3nwh1q5gdrcxhjkmw2gnvb1l01crgnack"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/wonderland"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/wonderland"; sha256 = "1b4p49mbzqffm2b2y8sbbi56vnkxap2jscsmla9l6l8brybqjppi"; name = "wonderland"; }; @@ -61923,7 +62534,7 @@ wordnut = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "wordnut"; - version = "20151002.1657"; + version = "20151002.1757"; src = fetchFromGitHub { owner = "gromnitsky"; repo = "wordnut"; @@ -61931,7 +62542,7 @@ sha256 = "1b9pya342ikyxnlyxp86wx8xk6zcdws7jsqs7a9xk027prwkfngj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/wordnut"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/wordnut"; sha256 = "1gqmjb2f9izra0x9ds1jyk7h204qsll6viwkvdnmxczyyc0wx44n"; name = "wordnut"; }; @@ -61944,7 +62555,7 @@ wordsmith-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "wordsmith-mode"; - version = "20151117.436"; + version = "20151117.536"; src = fetchFromGitHub { owner = "istib"; repo = "wordsmith-mode"; @@ -61952,7 +62563,7 @@ sha256 = "0d2byl3si2r0zh5ih6xpsgcd9r114ry0lzg5vcf31rr2gqf0j06h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/wordsmith-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/wordsmith-mode"; sha256 = "1570h1sjjaks6bnhd4xrbx6nna4v7hz6dmrzwjq37rwvallasg1n"; name = "wordsmith-mode"; }; @@ -61965,7 +62576,7 @@ worf = callPackage ({ ace-link, fetchFromGitHub, fetchurl, hydra, lib, melpaBuild, swiper }: melpaBuild { pname = "worf"; - version = "20160422.916"; + version = "20160422.1016"; src = fetchFromGitHub { owner = "abo-abo"; repo = "worf"; @@ -61973,7 +62584,7 @@ sha256 = "1ndvwribh0i49rc6v89sfmxv5alr43995ccslviid563xn3yskii"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/worf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/worf"; sha256 = "1fkb2ddl684dijsb0cqgmfbg1nz4xv43rb7g5rah05rchy5sgkpi"; name = "worf"; }; @@ -61986,7 +62597,7 @@ workgroups = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "workgroups"; - version = "20110726.1141"; + version = "20110726.1241"; src = fetchFromGitHub { owner = "tlh"; repo = "workgroups.el"; @@ -61994,7 +62605,7 @@ sha256 = "0q32z54qafj8ap3ybx82i3fm1msmzwvpxgmkaglzhi8nccgzbn2n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/workgroups"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/workgroups"; sha256 = "1v01yr3lk6l0qn80i3r8fq3di0a8bmqjyhwx19hcgiap57xl80h8"; name = "workgroups"; }; @@ -62007,7 +62618,7 @@ workgroups2 = callPackage ({ anaphora, cl-lib ? null, dash, f, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "workgroups2"; - version = "20141102.1322"; + version = "20141102.1422"; src = fetchFromGitHub { owner = "pashinin"; repo = "workgroups2"; @@ -62015,7 +62626,7 @@ sha256 = "0prj2b33h6rya7y9ff91r72bva1y6hg0sv9l11bn1gikmc6lc18n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/workgroups2"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/workgroups2"; sha256 = "0vhj6mb3iflli0l3rjlvlbxz5yk6z3ii5r71gx0m4vp4lhxncy3v"; name = "workgroups2"; }; @@ -62028,7 +62639,7 @@ world-time-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "world-time-mode"; - version = "20140627.307"; + version = "20140627.407"; src = fetchFromGitHub { owner = "nicferrier"; repo = "emacs-world-time-mode"; @@ -62036,7 +62647,7 @@ sha256 = "0i00xm4rynbp2v3gm6h46ajgj8h8nxnsjh6db1659b0hbpnah0ji"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/world-time-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/world-time-mode"; sha256 = "10gdlz4l9iqw1zdlk5i3knysn36iqxdh3xabjq8kq04jkl7i36dl"; name = "world-time-mode"; }; @@ -62049,7 +62660,7 @@ wrap-region = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "wrap-region"; - version = "20140117.120"; + version = "20140117.220"; src = fetchFromGitHub { owner = "rejeep"; repo = "wrap-region.el"; @@ -62057,7 +62668,7 @@ sha256 = "09fzbbrdgq19c3gylj4i0c5g070k65w943wz28mzis8b403vzh3n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/wrap-region"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/wrap-region"; sha256 = "058518smxj3j3mr6ljzh7c9x5g23d24104p58sl9nhpw0cq9k28i"; name = "wrap-region"; }; @@ -62070,7 +62681,7 @@ writegood-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "writegood-mode"; - version = "20150325.1315"; + version = "20150325.1415"; src = fetchFromGitHub { owner = "bnbeckwith"; repo = "writegood-mode"; @@ -62078,7 +62689,7 @@ sha256 = "1nnjn1r669hvvzfycllwap4w04m8rfsk4nzcg8057m1f263kj31b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/writegood-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/writegood-mode"; sha256 = "1lxammisaj04g5vr5lwms64ywf39w8knrq72x4i94wwzwx5ywi1d"; name = "writegood-mode"; }; @@ -62091,7 +62702,7 @@ writeroom-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, visual-fill-column }: melpaBuild { pname = "writeroom-mode"; - version = "20160413.1433"; + version = "20160413.1533"; src = fetchFromGitHub { owner = "joostkremers"; repo = "writeroom-mode"; @@ -62099,7 +62710,7 @@ sha256 = "11a3h5v7knj8y360cxin59c1ipd9y4qsqlanrw69yb5k4816ayyr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/writeroom-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/writeroom-mode"; sha256 = "1kpsrp3agw8bg3qbf5rf5k1a7ww30q5xsa8z5ywxajsaywjzx1bk"; name = "writeroom-mode"; }; @@ -62112,7 +62723,7 @@ ws-butler = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ws-butler"; - version = "20150126.959"; + version = "20150126.1059"; src = fetchFromGitHub { owner = "lewang"; repo = "ws-butler"; @@ -62120,7 +62731,7 @@ sha256 = "1x2ybnv0h52i24vd1n95s4vglc6p79cyxh91a20cwza34svhz152"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ws-butler"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ws-butler"; sha256 = "072k67z2lx0ampwzdiszi64xs0w6frp4nbmrd2r0wpx0pd211vbn"; name = "ws-butler"; }; @@ -62133,7 +62744,7 @@ wsd-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "wsd-mode"; - version = "20160317.330"; + version = "20160317.430"; src = fetchFromGitHub { owner = "josteink"; repo = "wsd-mode"; @@ -62141,7 +62752,7 @@ sha256 = "1qzz5z1n0a47k6lw31x7yc4vqq90f70jdb4z1vic7yx5ypfar697"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/wsd-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/wsd-mode"; sha256 = "07vclmnj18wx9wlrcnsl99f9jlk3sb9g6pcdv8x1smk84gccpakc"; name = "wsd-mode"; }; @@ -62154,7 +62765,7 @@ wttrin = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, xterm-color }: melpaBuild { pname = "wttrin"; - version = "20160414.1037"; + version = "20160414.1137"; src = fetchFromGitHub { owner = "bcbcarl"; repo = "emacs-wttrin"; @@ -62162,7 +62773,7 @@ sha256 = "1bq552mxlhq9sd2c9p2yir52p0jnfdav6vcdgs3xklcf89b1403m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/wttrin"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/wttrin"; sha256 = "0msp8lja9nz6khz3dkasv8hnhkaayqxd7m58kma03hpkcjxnaxil"; name = "wttrin"; }; @@ -62175,7 +62786,7 @@ wwtime = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "wwtime"; - version = "20151122.1010"; + version = "20151122.1110"; src = fetchFromGitHub { owner = "ndw"; repo = "wwtime"; @@ -62183,7 +62794,7 @@ sha256 = "0ba193ilqmp7l35hhzfym4kvbnj9h57m8mwsxdj6rdj2cwrifx8r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/wwtime"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/wwtime"; sha256 = "0n37k23lkjgaj9wxnr41yk3mwvy62mc9im5l86czqmw5gy4l63ic"; name = "wwtime"; }; @@ -62196,7 +62807,7 @@ x-dict = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "x-dict"; - version = "20091203.1223"; + version = "20091203.1323"; src = fetchFromGitHub { owner = "emacsmirror"; repo = "x-dict"; @@ -62204,7 +62815,7 @@ sha256 = "0i7bgbhk4lvdkdjh6z4xs69mbdi49985j82cjikzyyskjcqd2klq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/x-dict"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/x-dict"; sha256 = "1w51xhiaxk50wlch262dxs2ybjvjj8qzx01xlgiimvggb8h5arlc"; name = "x-dict"; }; @@ -62217,15 +62828,15 @@ x86-lookup = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "x86-lookup"; - version = "20160113.1603"; + version = "20160427.1524"; src = fetchFromGitHub { owner = "skeeto"; repo = "x86-lookup"; - rev = "6145e13baf1ea227fbe63215c70cf73da1574160"; - sha256 = "0lssri13f3c7drkirh3cyxzxm3lix5myfrqb9iy178nybrifgf8l"; + rev = "3a779ff5aa3439e487065d1c2fabc3dcec4c8b70"; + sha256 = "18740pcyl1mj9i8i579aaj4f8l8gspkgfwxpzj0r5jv6rvrsw229"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/x86-lookup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/x86-lookup"; sha256 = "1clv1npvdkzsy0a08xrb880yflwzl4d5cc2c5xrs7b837mqpj8hd"; name = "x86-lookup"; }; @@ -62238,7 +62849,7 @@ xah-elisp-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "xah-elisp-mode"; - version = "20160409.527"; + version = "20160409.627"; src = fetchFromGitHub { owner = "xahlee"; repo = "xah-elisp-mode"; @@ -62246,7 +62857,7 @@ sha256 = "1x3h69c2n82db8jkmd66c5i3x4rhmas5difm73msbx198w5i6lm7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/xah-elisp-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/xah-elisp-mode"; sha256 = "0cl07hw1hd3hj7wrzkh20m8vcs7mqsajxjmnlbnk2yg927yyijij"; name = "xah-elisp-mode"; }; @@ -62259,7 +62870,7 @@ xah-find = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "xah-find"; - version = "20160210.2102"; + version = "20160210.2202"; src = fetchFromGitHub { owner = "xahlee"; repo = "xah-find"; @@ -62267,7 +62878,7 @@ sha256 = "00ydkpkdgnj9v6dkf4pw9wj5skbq2v5y71xsr37d1fqmdzsb03g7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/xah-find"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/xah-find"; sha256 = "1d3x9yhm7my3yhvgqnjxr2v28g5w1h4ri40sy6dqcx09bjf3jhyq"; name = "xah-find"; }; @@ -62280,7 +62891,7 @@ xah-fly-keys = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "xah-fly-keys"; - version = "20160425.813"; + version = "20160425.913"; src = fetchFromGitHub { owner = "xahlee"; repo = "xah-fly-keys"; @@ -62288,7 +62899,7 @@ sha256 = "11cc208b29hcknnza0yvkfp7889ni5vbihk0ac922j17xf413lah"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/xah-fly-keys"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/xah-fly-keys"; sha256 = "0bzfz8q7yd1jai0pgngxwjp82nsfx5ivn24cb20vc5r8hhzj17cs"; name = "xah-fly-keys"; }; @@ -62301,7 +62912,7 @@ xah-get-thing = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "xah-get-thing"; - version = "20150712.1630"; + version = "20150712.1730"; src = fetchFromGitHub { owner = "xahlee"; repo = "xah-get-thing-or-selection"; @@ -62309,7 +62920,7 @@ sha256 = "0abknznp2si80zq5pc0hqr3w3pca2vrv3msm6jz1s8l8zi2hwx72"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/xah-get-thing"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/xah-get-thing"; sha256 = "0m61bmfgqy19h4ivw655mqj547ga8hrpaswcp48hx00hx8mqzcvg"; name = "xah-get-thing"; }; @@ -62322,7 +62933,7 @@ xah-lookup = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "xah-lookup"; - version = "20150602.1346"; + version = "20150602.1446"; src = fetchFromGitHub { owner = "xahlee"; repo = "lookup-word-on-internet"; @@ -62330,7 +62941,7 @@ sha256 = "1adyww9jbjvcn9p3z9ggs3gijdmnab275a81ch8sir1xp59pfm3s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/xah-lookup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/xah-lookup"; sha256 = "0z0h1myw6wmybyd0z2lw4l59vgm6q6kh492q77kf3s0fssc0facc"; name = "xah-lookup"; }; @@ -62343,7 +62954,7 @@ xah-math-input = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "xah-math-input"; - version = "20160127.1608"; + version = "20160127.1708"; src = fetchFromGitHub { owner = "xahlee"; repo = "xah-math-input"; @@ -62351,7 +62962,7 @@ sha256 = "1wsdnqpfgk7f1dbz90k6sf13hjh0x3xjjgappfkmhcy36g7sshl7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/xah-math-input"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/xah-math-input"; sha256 = "1afikjk46sjf97fb5fc8h63h7b9af010wxhsbpnmabsb4j72rx5a"; name = "xah-math-input"; }; @@ -62364,7 +62975,7 @@ xah-replace-pairs = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "xah-replace-pairs"; - version = "20150522.533"; + version = "20150522.633"; src = fetchFromGitHub { owner = "xahlee"; repo = "xah-replace-pairs"; @@ -62372,7 +62983,7 @@ sha256 = "18msj947w6msma6zm23slk2v0h92n5ych5j12zbzkzzir49sffql"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/xah-replace-pairs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/xah-replace-pairs"; sha256 = "0r4aq9davh3ypzcjixr3aw9g659dhiblwbmcyhm8iqhkavcpqr1x"; name = "xah-replace-pairs"; }; @@ -62385,7 +62996,7 @@ xahk-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "xahk-mode"; - version = "20150504.1811"; + version = "20150504.1911"; src = fetchFromGitHub { owner = "xahlee"; repo = "xahk-mode.el"; @@ -62393,7 +63004,7 @@ sha256 = "0dc74kqwi0hpihdbb9a9lrqb7823w6j96mah47zyd9d4rd3vx850"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/xahk-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/xahk-mode"; sha256 = "1bs12z7lnqlhm44hq0l98d0ka1bjgvm2yv97yivaj9akd53znca9"; name = "xahk-mode"; }; @@ -62406,7 +63017,7 @@ xbm-life = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "xbm-life"; - version = "20160103.417"; + version = "20160103.517"; src = fetchFromGitHub { owner = "wasamasa"; repo = "xbm-life"; @@ -62414,7 +63025,7 @@ sha256 = "08hzsqf4gawcr9q2h3rxrf1igvdja84aaa821657k04kdq4dpcbj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/xbm-life"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/xbm-life"; sha256 = "1pglxjd4cs630sayx17ai1xflpbyj3hry3156682bgwhqs1vw68q"; name = "xbm-life"; }; @@ -62427,7 +63038,7 @@ xcscope = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "xcscope"; - version = "20160201.2126"; + version = "20160201.2226"; src = fetchFromGitHub { owner = "dkogan"; repo = "xcscope.el"; @@ -62435,7 +63046,7 @@ sha256 = "0p8cs5mh6ab6m0ff6ljs2vd1g8xx0jgc9ybh0j4aj2zcp22avz2n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/xcscope"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/xcscope"; sha256 = "06xh29cm5v3b5xwj32y0i0h0kvvy995840db4hvab2wn9jw68m8w"; name = "xcscope"; }; @@ -62448,7 +63059,7 @@ xkcd = callPackage ({ fetchFromGitHub, fetchurl, json ? null, lib, melpaBuild }: melpaBuild { pname = "xkcd"; - version = "20160419.630"; + version = "20160419.730"; src = fetchFromGitHub { owner = "vibhavp"; repo = "emacs-xkcd"; @@ -62456,7 +63067,7 @@ sha256 = "0p9p3w8i5w1pzh3y3yxz0rg5gywfq4m5anbiyrdn84vdd42jij4x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/xkcd"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/xkcd"; sha256 = "1r88yhs8vnkak8xl16vw3xdpm7ncz4ydkml8932bqk8xix8l8f0w"; name = "xkcd"; }; @@ -62469,7 +63080,7 @@ xml-plus = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "xml-plus"; - version = "20160210.2142"; + version = "20160210.2242"; src = fetchFromGitHub { owner = "bddean"; repo = "xml-plus"; @@ -62477,7 +63088,7 @@ sha256 = "0c30xh7qxg3y2p5jqkbssz5z53rx0yp64qqyy9f87qzgkcd2jd8k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/xml+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/xml+"; sha256 = "0xgqyfdn6kkp89zj4h54r009a44sbff0nrhh582zw5rlklypwdz1"; name = "xml-plus"; }; @@ -62490,7 +63101,7 @@ xml-quotes = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "xml-quotes"; - version = "20151230.1649"; + version = "20151230.1749"; src = fetchFromGitHub { owner = "ndw"; repo = "xml-quotes"; @@ -62498,7 +63109,7 @@ sha256 = "0z3yd3dzcsd7584jchv9q55fx04ig4yjzp8ay2pa112lykv4jxxd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/xml-quotes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/xml-quotes"; sha256 = "1lmafa695xkhd90k6yiv8a57ch1jx33l1zpm39z0kj546mn6y8aq"; name = "xml-quotes"; }; @@ -62511,15 +63122,15 @@ xml-rpc = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "xml-rpc"; - version = "20150902.2027"; + version = "20160430.1758"; src = fetchFromGitHub { owner = "hexmode"; repo = "xml-rpc-el"; - rev = "a190759da8765d3b22ceb6774cefc610fda404d8"; - sha256 = "0kkjfg1l2wg3d5wrgkwnww4d3fca0xpd3k5z9j9gwmjnkxqd95ca"; + rev = "0ab093d60140d19e31d217c8abdc7dbdac944486"; + sha256 = "0g52bmamcd54acyk6i47ar5jawad6ycvm9g656inb994wprnjin9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/xml-rpc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/xml-rpc"; sha256 = "14r6xgnpqsb2jlv52vgrhqf3qw8a6gmdyap3ylhilyxw71lxf1js"; name = "xml-rpc"; }; @@ -62532,7 +63143,7 @@ xmlgen = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "xmlgen"; - version = "20130219.419"; + version = "20130219.519"; src = fetchFromGitHub { owner = "philjackson"; repo = "xmlgen"; @@ -62540,7 +63151,7 @@ sha256 = "1nk50iwb6az01r1s2l9wwdqrz3k4ywr00q0zmd9vvi3y9v4cjah0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/xmlgen"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/xmlgen"; sha256 = "1mvnjqb9zxf9ml605w10v4cbbajwv9if93apr4xrh79l00scj383"; name = "xmlgen"; }; @@ -62553,7 +63164,7 @@ xmlunicode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "xmlunicode"; - version = "20160319.1112"; + version = "20160319.1212"; src = fetchFromGitHub { owner = "ndw"; repo = "xmlunicode"; @@ -62561,7 +63172,7 @@ sha256 = "178bdfwiinhf98qm88ivmgy6rd0qjx5gnckkclanybva0r8l6832"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/xmlunicode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/xmlunicode"; sha256 = "1ylpvx2p5l863r9qv9jdsm9rbv989c8xn0zpjl8zkcfxqxix4h4p"; name = "xmlunicode"; }; @@ -62574,7 +63185,7 @@ xo = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "xo"; - version = "20160403.146"; + version = "20160403.246"; src = fetchFromGitHub { owner = "j-em"; repo = "xo-emacs"; @@ -62582,7 +63193,7 @@ sha256 = "0761amc73mbgaydp3iyfzgyjxp77yk440s24h69hvk87c5vn1cz3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/xo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/xo"; sha256 = "0kpbnxh8sa2dk8anrvgc7d39qap13pyjxh154gpm8xdb9zhfwl25"; name = "xo"; }; @@ -62595,7 +63206,7 @@ xquery-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "xquery-mode"; - version = "20140121.1143"; + version = "20140121.1243"; src = fetchFromGitHub { owner = "mblakele"; repo = "xquery-mode"; @@ -62603,7 +63214,7 @@ sha256 = "09fpxr55b2adqmca8xhpy8z5cify5091fjdjyxjd1jh5wdp1658v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/xquery-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/xquery-mode"; sha256 = "0b5k2ihbjm5drv4lf64ap31yj873x1fcq85y6yq1ayahn6s52rql"; name = "xquery-mode"; }; @@ -62616,7 +63227,7 @@ xquery-tool = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "xquery-tool"; - version = "20160203.1153"; + version = "20160203.1253"; src = fetchFromGitHub { owner = "paddymcall"; repo = "xquery-tool.el"; @@ -62624,7 +63235,7 @@ sha256 = "1yy759qc4njc8bqh8hmgc0mq5vk5spz5syxgflqhjijk8nrvyfgl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/xquery-tool"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/xquery-tool"; sha256 = "069injmvv9zzcbqbms94qx5wjj740jnik6sf3b4xjhln7z1yskp0"; name = "xquery-tool"; }; @@ -62637,7 +63248,7 @@ xref-js2 = callPackage ({ emacs, fetchFromGitHub, fetchurl, js2-mode, lib, melpaBuild }: melpaBuild { pname = "xref-js2"; - version = "20160421.403"; + version = "20160421.503"; src = fetchFromGitHub { owner = "NicolasPetton"; repo = "xref-js2"; @@ -62645,7 +63256,7 @@ sha256 = "1mppy0fk4qrhvjzapz95jiiki2bpijvxalrw0h81wqzf62d259va"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/xref-js2"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/xref-js2"; sha256 = "1mfyszdi1wx2lqd9fyqm0ra227dcsjs8asc1dw2li0alwh7n4xs3"; name = "xref-js2"; }; @@ -62658,7 +63269,7 @@ xresources-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "xresources-theme"; - version = "20160331.902"; + version = "20160331.1002"; src = fetchFromGitHub { owner = "CQQL"; repo = "xresources-theme"; @@ -62666,7 +63277,7 @@ sha256 = "171vffga2yzxqmgh77vila6x96bz1i6818f1pfaxblw1hz2ga341"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/xresources-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/xresources-theme"; sha256 = "0spqa3xn3p2lmvlc5hdn7prq4vb70nkyrryx1kavha9igzhlyaga"; name = "xresources-theme"; }; @@ -62679,7 +63290,7 @@ xterm-color = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "xterm-color"; - version = "20160401.2225"; + version = "20160401.2325"; src = fetchFromGitHub { owner = "atomontage"; repo = "xterm-color"; @@ -62687,7 +63298,7 @@ sha256 = "19l9w373ysh1avakz4pmisn0d2mpym8pdxgz7k0m1bbqqzf2war7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/xterm-color"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/xterm-color"; sha256 = "0bvzi1mkxgm4vbq2va1sr0k9h3fdmppq79hkvbizc2xgk72sazpj"; name = "xterm-color"; }; @@ -62700,7 +63311,7 @@ xterm-frobs = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "xterm-frobs"; - version = "20091211.1755"; + version = "20091211.1855"; src = fetchFromGitHub { owner = "emacsmirror"; repo = "xterm-frobs"; @@ -62708,7 +63319,7 @@ sha256 = "10dsf2lgjjqvjzzyc5kwggfk511v8ypmx173bixry3djcc15dsf3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/xterm-frobs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/xterm-frobs"; sha256 = "02v8kh2g6a2fpxy911630zsg985hyakvqbd6v2xyfbz0vnd6i1lf"; name = "xterm-frobs"; }; @@ -62721,7 +63332,7 @@ xterm-keybinder = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, let-alist, lib, melpaBuild }: melpaBuild { pname = "xterm-keybinder"; - version = "20151211.101"; + version = "20151211.201"; src = fetchFromGitHub { owner = "yuutayamada"; repo = "xterm-keybinder-el"; @@ -62729,7 +63340,7 @@ sha256 = "1jwimgglhqgp259wjqmpp1wi9j51qxcl1l356jlhjnfp1zh1ihmg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/xterm-keybinder"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/xterm-keybinder"; sha256 = "1n0zp1mc7x7z0671lf7p9r4qxic90bkf5q3zwz4vinpiw2qh88lz"; name = "xterm-keybinder"; }; @@ -62742,7 +63353,7 @@ xterm-title = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "xterm-title"; - version = "20091203.1223"; + version = "20091203.1323"; src = fetchFromGitHub { owner = "emacsmirror"; repo = "xterm-title"; @@ -62750,7 +63361,7 @@ sha256 = "06cbr7y3wp7j8lnbys57g6md4fdx9xhlnxl73pj7xpfa5i2x9ifl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/xterm-title"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/xterm-title"; sha256 = "08z8qg9x6vjpybbhxa8x46qnp3951miz1264fivg776y76cg3ck6"; name = "xterm-title"; }; @@ -62763,7 +63374,7 @@ xtest = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "xtest"; - version = "20141214.1106"; + version = "20141214.1206"; src = fetchFromGitHub { owner = "promethial"; repo = "xtest"; @@ -62771,7 +63382,7 @@ sha256 = "09mn8s7gzzxgs7kskld8l68zjrcgnvml3fqj69wrfq7b1g62hhxy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/xtest"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/xtest"; sha256 = "1vbs4sb4frzg8d3l96ip9cc6lc86nbj50vpdfqazvxmdfd1sg4i7"; name = "xtest"; }; @@ -62784,7 +63395,7 @@ yabin = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "yabin"; - version = "20140205.2151"; + version = "20140205.2251"; src = fetchFromGitHub { owner = "d5884"; repo = "yabin"; @@ -62792,7 +63403,7 @@ sha256 = "0f6pvwzhncycw8gnjy24h6q1qglfgvdjfs5dzqx9s43j3yg63lzm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/yabin"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/yabin"; sha256 = "1kmpm2rbb43c9cgp44qwd24d90mj48k3gyiir3vb6zf6k3syrc17"; name = "yabin"; }; @@ -62805,7 +63416,7 @@ yafolding = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "yafolding"; - version = "20141202.2256"; + version = "20141202.2356"; src = fetchFromGitHub { owner = "zenozeng"; repo = "yafolding.el"; @@ -62813,7 +63424,7 @@ sha256 = "0b252m7vb5kg5bjhpgag6nhm32cac8dhlmy4pr0kpa860lh2xlz7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/yafolding"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/yafolding"; sha256 = "1z70ismfwmh9a83a7h5lbhw7iywfib5fis7y8gx8020wfjq9g2yq"; name = "yafolding"; }; @@ -62826,7 +63437,7 @@ yagist = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "yagist"; - version = "20160418.8"; + version = "20160418.108"; src = fetchFromGitHub { owner = "mhayashi1120"; repo = "yagist.el"; @@ -62834,7 +63445,7 @@ sha256 = "0lgy9b893mq4harxh80n0n2zia00s2c6ga8p654q563idrskgz17"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/yagist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/yagist"; sha256 = "1mz86fq0pb4w54c66vd19m2492mkrzq2qi6ssnn2xwmn8vv02wdd"; name = "yagist"; }; @@ -62847,7 +63458,7 @@ yahoo-weather = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "yahoo-weather"; - version = "20160426.729"; + version = "20160426.829"; src = fetchFromGitHub { owner = "lujun9972"; repo = "yahoo-weather-mode"; @@ -62855,7 +63466,7 @@ sha256 = "1r29x9gkj5cfcg2ac4j5vw55n1niainhl2316mfq0zpxjjp2bhwq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/yahoo-weather"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/yahoo-weather"; sha256 = "1kzi6yp186wfcqh5q1v9vw6b1h8x89sba6wlnacfpjbarwapfif0"; name = "yahoo-weather"; }; @@ -62868,7 +63479,7 @@ yalinum = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "yalinum"; - version = "20130217.443"; + version = "20130217.543"; src = fetchFromGitHub { owner = "tm8st"; repo = "emacs-yalinum"; @@ -62876,7 +63487,7 @@ sha256 = "12dd4ahg9f1493982d49g7sxx0n6ss4xcfhxwzyaqxckwzfranp0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/yalinum"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/yalinum"; sha256 = "0jzsvkcvy2mkfmri4bzgrlgw2y0z3hxz44md83s5zmw09mshkahf"; name = "yalinum"; }; @@ -62889,7 +63500,7 @@ yaml-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "yaml-mode"; - version = "20160426.338"; + version = "20160426.438"; src = fetchFromGitHub { owner = "yoshiki"; repo = "yaml-mode"; @@ -62897,7 +63508,7 @@ sha256 = "03hcm3rv0na79dbivycg78bp08zfxfrgz8rf0i1wdk5sc9hzg105"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/yaml-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/yaml-mode"; sha256 = "0afp83xcr8h153cayyaszwkgpap0iyk351dlykmv6bv9d2m774mc"; name = "yaml-mode"; }; @@ -62910,7 +63521,7 @@ yaml-tomato = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "yaml-tomato"; - version = "20151123.153"; + version = "20151123.253"; src = fetchFromGitHub { owner = "RadekMolenda"; repo = "yaml-tomato"; @@ -62918,7 +63529,7 @@ sha256 = "1xgqqgg4q3hrhiap8gmr8iifdr1mg4dl0j236b6alhrgmykbhimy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/yaml-tomato"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/yaml-tomato"; sha256 = "0bja213l6mvh8ap5d04x8dik1z9px5jr52zpw1py7shw5asvp5s2"; name = "yaml-tomato"; }; @@ -62931,7 +63542,7 @@ yandex-weather = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "yandex-weather"; - version = "20160311.1437"; + version = "20160311.1537"; src = fetchFromGitHub { owner = "abstractionlayer"; repo = "yandex-weather.el"; @@ -62939,7 +63550,7 @@ sha256 = "0pw44klm8ldsdjphybzkknv8yh23xhzwg76w3d9cqs79jkd0rw8w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/yandex-weather"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/yandex-weather"; sha256 = "11hspadm520cjlv1wk2bdpzg7hg2g0chbh26qijj9jgvca26x0md"; name = "yandex-weather"; }; @@ -62951,13 +63562,13 @@ }) {}; yaoddmuse = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "yaoddmuse"; - version = "20150712.621"; + version = "20150712.721"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/yaoddmuse.el"; sha256 = "0svy6zp5f22z7mblap4psh7h4i52d1qasi9yk22l39przhsrjar4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/yaoddmuse"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/yaoddmuse"; sha256 = "07sqcsad3k23agwwws7hxnc46cp9mkc9qinzva7qvjgs8pa9dh54"; name = "yaoddmuse"; }; @@ -62970,7 +63581,7 @@ yard-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "yard-mode"; - version = "20160310.1050"; + version = "20160310.1150"; src = fetchFromGitHub { owner = "pd"; repo = "yard-mode.el"; @@ -62978,7 +63589,7 @@ sha256 = "096ay60hrd14b459cyxxcf9g7i1ivsxg6yhc0q162px6kl1x0m2y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/yard-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/yard-mode"; sha256 = "0jmlcba8qapjwaaliz9gzs99if3wglkhmlpjzcdy3icx18sw8kzx"; name = "yard-mode"; }; @@ -62991,7 +63602,7 @@ yari = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "yari"; - version = "20151128.139"; + version = "20151128.239"; src = fetchFromGitHub { owner = "hron"; repo = "yari.el"; @@ -62999,7 +63610,7 @@ sha256 = "0w9a6j0ndpfwaz1g974vv5jqgbzxw26l19kq51j3ah73063cavpf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/yari"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/yari"; sha256 = "0sch9x899mzwdacg55w5j583k2r4vn71ish7gqpghd7cj13ii66h"; name = "yari"; }; @@ -63012,7 +63623,7 @@ yascroll = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "yascroll"; - version = "20150315.805"; + version = "20150315.905"; src = fetchFromGitHub { owner = "m2ym"; repo = "yascroll-el"; @@ -63020,7 +63631,7 @@ sha256 = "08wa97hsfy1rc8ify3rz2ncfij4z6l16p4s20naygqccjv3ir6z5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/yascroll"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/yascroll"; sha256 = "11g7wn4hgdwnx3n7ra0sh8gk6rykwvrg9g2cihvcv7mjbqgcv53f"; name = "yascroll"; }; @@ -63033,15 +63644,15 @@ yasnippet = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "yasnippet"; - version = "20160423.1536"; + version = "20160504.1235"; src = fetchFromGitHub { owner = "capitaomorte"; repo = "yasnippet"; - rev = "7f03a2319eba95a5117f0424df6990e4d02741a8"; - sha256 = "1iy2rmsfyaln7c4vn63wr9k6w4v5r4mwvanx15a4k7bha9w97w2v"; + rev = "146b161112b68c99ecd607ec5360accc1f4db3cd"; + sha256 = "02bz7sl1b13s0ji8p9frb6p385zcjnzjmz4x40hqgkkkc44kc7bq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/yasnippet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/yasnippet"; sha256 = "1j6hcpzxljz1axh0xfbwr4ysbixkwgxawsvsgicls8r8kl2xvjvf"; name = "yasnippet"; }; @@ -63054,7 +63665,7 @@ yatemplate = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }: melpaBuild { pname = "yatemplate"; - version = "20151125.107"; + version = "20151125.207"; src = fetchFromGitHub { owner = "mineo"; repo = "yatemplate"; @@ -63062,7 +63673,7 @@ sha256 = "1gxn302kwjfq6s6rxxvy0jpp37r2vh4ry899giqbdfr0cc1qnw0c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/yatemplate"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/yatemplate"; sha256 = "05gd9sxdiqpw2p1kdagwgxd94wiw1fmmcsp9v4p74i9sqmf6qn6q"; name = "yatemplate"; }; @@ -63074,14 +63685,14 @@ }) {}; yatex = callPackage ({ fetchhg, fetchurl, lib, melpaBuild }: melpaBuild { pname = "yatex"; - version = "20160107.1719"; + version = "20160107.1819"; src = fetchhg { url = "https://www.yatex.org/hgrepos/yatex/"; rev = "e78a87bc2c9e"; sha256 = "08iwfpsjs36pqr2l85avxhsjx8z0sdfw8cqwwf3brn7i4x67f7z5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/yatex"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/yatex"; sha256 = "17np4am7yan1bh4706azf8in60c41158h3z591478j5b1w13y5a6"; name = "yatex"; }; @@ -63094,7 +63705,7 @@ yaxception = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "yaxception"; - version = "20150105.852"; + version = "20150105.952"; src = fetchFromGitHub { owner = "aki2o"; repo = "yaxception"; @@ -63102,7 +63713,7 @@ sha256 = "0nqyn1b01v1qxv7rcf46qypca61lmpm8d7kqv63jazw3n05qdnj8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/yaxception"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/yaxception"; sha256 = "18n2kjbgfhkhcwigxmv8dk72jp57vsqqd20lc26v5amx6mrhgh58"; name = "yaxception"; }; @@ -63115,7 +63726,7 @@ ycm = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ycm"; - version = "20150822.1336"; + version = "20150822.1436"; src = fetchFromGitHub { owner = "neuromage"; repo = "ycm.el"; @@ -63123,7 +63734,7 @@ sha256 = "0znchya89zzk30mwl4qfm0q9sfa5m3jspapb892ydj0mck5n4nyj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ycm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ycm"; sha256 = "16ahgvi85ddjlrjxld14zm2vvam0m89mwskizjd5clcz0snk51sc"; name = "ycm"; }; @@ -63133,19 +63744,19 @@ license = lib.licenses.free; }; }) {}; - ycmd = callPackage ({ cl-lib ? null, dash, deferred, emacs, fetchFromGitHub, fetchurl, let-alist, lib, melpaBuild, popup, request, request-deferred }: + ycmd = callPackage ({ cl-lib ? null, dash, deferred, emacs, fetchFromGitHub, fetchurl, let-alist, lib, melpaBuild, popup, request, request-deferred, s }: melpaBuild { pname = "ycmd"; - version = "20160426.634"; + version = "20160506.321"; src = fetchFromGitHub { owner = "abingham"; repo = "emacs-ycmd"; - rev = "1984e49b7894b77438f2257d8058900ab82109e3"; - sha256 = "0dwii83m6cngsnyhzhnmv53p588d4pkkybmcmsj6gsar157l4azi"; + rev = "6080cb164fc3a96f2248760fda2b6d46a55d63c0"; + sha256 = "1x138lbjy87sk68sjx07l3in2d9qzcc3pa9vgzvg95aiaacnk8qi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ycmd"; - sha256 = "1mg2b0wgfimrc0hp84q7lc654z2hysrhbzswpq1x812hgq895v8p"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ycmd"; + sha256 = "10jqr6xz2fnrd1ihips9jmbcd28zha432h4pxjpswz3ivwjqhxna"; name = "ycmd"; }; packageRequires = [ @@ -63157,6 +63768,7 @@ popup request request-deferred + s ]; meta = { homepage = "https://melpa.org/#/ycmd"; @@ -63166,7 +63778,7 @@ yesql-ghosts = callPackage ({ cider, dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "yesql-ghosts"; - version = "20150220.637"; + version = "20150220.737"; src = fetchFromGitHub { owner = "magnars"; repo = "yesql-ghosts"; @@ -63174,7 +63786,7 @@ sha256 = "1fyvvkx6pa41bcr9cyh4yclwdzc5bs742s9fxr6wb4a5scq3hg9m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/yesql-ghosts"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/yesql-ghosts"; sha256 = "1hxzbnfd15f0ifdqjbw9nhxd0z46x705v2bc0xl71nav78fgpswf"; name = "yesql-ghosts"; }; @@ -63187,7 +63799,7 @@ yoshi-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "yoshi-theme"; - version = "20160304.1718"; + version = "20160304.1818"; src = fetchFromGitHub { owner = "ryuslash"; repo = "yoshi-theme"; @@ -63195,7 +63807,7 @@ sha256 = "1a40kpl5b4sar15s7l8vkfm2iyr5ma3c1n6w5r4z37w5kn59bkk5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/yoshi-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/yoshi-theme"; sha256 = "1kzdjs3rzg9rxrjgsk0wk75rwvbip6ixg1apcxv2c1a6biqqf2hv"; name = "yoshi-theme"; }; @@ -63208,7 +63820,7 @@ youdao-dictionary = callPackage ({ chinese-word-at-point, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, names, popup }: melpaBuild { pname = "youdao-dictionary"; - version = "20150914.144"; + version = "20150914.244"; src = fetchFromGitHub { owner = "xuchunyang"; repo = "youdao-dictionary.el"; @@ -63216,7 +63828,7 @@ sha256 = "0016qff7hdnd0xkyhxakfzzscwlwkpzppvc4wxfw0iacpjkz1fnr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/youdao-dictionary"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/youdao-dictionary"; sha256 = "1qfk7s18br9jask1bpida0cjxks098qpz0ssmw8misi3bjax0fym"; name = "youdao-dictionary"; }; @@ -63229,7 +63841,7 @@ z3-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }: melpaBuild { pname = "z3-mode"; - version = "20151120.1655"; + version = "20151120.1755"; src = fetchFromGitHub { owner = "zv"; repo = "z3-mode"; @@ -63237,7 +63849,7 @@ sha256 = "1k7m3xk5ksbr2s3ypz5yqafz9sfav1m0qk2jz1xyi3fdaw2j0w2z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/z3-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/z3-mode"; sha256 = "183lzhgjj480ca2939za3rlnsbfn24mgi501n66h5wim950v7vgd"; name = "z3-mode"; }; @@ -63250,7 +63862,7 @@ zeal-at-point = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "zeal-at-point"; - version = "20151231.248"; + version = "20151231.348"; src = fetchFromGitHub { owner = "jinzhu"; repo = "zeal-at-point"; @@ -63258,7 +63870,7 @@ sha256 = "16k8hha798hrs0qfdwqdr6n7y13ffgm6jj3msrk0zl8117jhaany"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/zeal-at-point"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/zeal-at-point"; sha256 = "1cz53plk5bax5azm13y7xz530qcfh0scm0cgrkrgwja2wwlxirnw"; name = "zeal-at-point"; }; @@ -63271,14 +63883,14 @@ zeitgeist = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: melpaBuild { pname = "zeitgeist"; - version = "20131228.1209"; + version = "20131228.1309"; src = fetchgit { url = "git://anongit.freedesktop.org/zeitgeist/zeitgeist-datasources"; rev = "cdd1c219ed3afa9500403c3c499f49583d599034"; sha256 = "0xg67asvgav5js03i3bqmh7apndrn0jy5vai0bsh22pq8wgvq083"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/zeitgeist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/zeitgeist"; sha256 = "0m6drp3c6hp70ypbva3ji2dndl9an1jm2zlhnpwmjxsmw47cd732"; name = "zeitgeist"; }; @@ -63291,7 +63903,7 @@ zen-and-art-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "zen-and-art-theme"; - version = "20120622.937"; + version = "20120622.1037"; src = fetchFromGitHub { owner = "developernotes"; repo = "zen-and-art-theme"; @@ -63299,7 +63911,7 @@ sha256 = "0dnaxhsw549k54j0mgydm7qbl4pizgipfyzc15f9afsxa107rpnl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/zen-and-art-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/zen-and-art-theme"; sha256 = "0b2lflji955z90xl9iz2y1vm04yljghbw4948gh5vv5p7mwibgf2"; name = "zen-and-art-theme"; }; @@ -63312,15 +63924,15 @@ zenburn-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "zenburn-theme"; - version = "20160416.1211"; + version = "20160501.1049"; src = fetchFromGitHub { owner = "bbatsov"; repo = "zenburn-emacs"; - rev = "e5dc3962fd30005914b79b14e9821d298f2c305a"; - sha256 = "1n7ka608lk0xp7vg4zcw282zna0cwvcwvmhic6ym1ag7lq5cjrhc"; + rev = "4a4700bd9128c7104cdf3bcd3cb64fc5e2a89afb"; + sha256 = "1bjjmmplzjl17aqyz89s3z44vxpvik5ibv7004kp5678gf1vv5rs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/zenburn-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/zenburn-theme"; sha256 = "1kb371j9aissj0vy07jw4ydfn554blc8b2rbi0x1dvfksr2rhsn9"; name = "zenburn-theme"; }; @@ -63333,7 +63945,7 @@ zencoding-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "zencoding-mode"; - version = "20140213.222"; + version = "20140213.322"; src = fetchFromGitHub { owner = "rooney"; repo = "zencoding"; @@ -63341,7 +63953,7 @@ sha256 = "1y3wj15kfbgskl29glmba6lzq43rcm141p4i5s180aqcw7ydp5vr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/zencoding-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/zencoding-mode"; sha256 = "1fclad1dyngyg9ncfkcqfxybvy8482i2bd409cgxi9y4h1wc7ws7"; name = "zencoding-mode"; }; @@ -63354,14 +63966,14 @@ zenity-color-picker = callPackage ({ emacs, fetchgit, fetchurl, lib, melpaBuild }: melpaBuild { pname = "zenity-color-picker"; - version = "20160302.554"; + version = "20160302.654"; src = fetchgit { url = "https://bitbucket.org/Soft/zenity-color-picker.el.git"; rev = "4f4f46676a461ebc881487fb70c8c181e323db5e"; sha256 = "1abm0wmfkhbwdnqnvjd9r0pm7ahkcj7ip7jcz6rm49qam815g7rk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/zenity-color-picker"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/zenity-color-picker"; sha256 = "1v6ks922paacdgpv5v8cpic1g66670x73ixsy2nixs5qdw241wzl"; name = "zenity-color-picker"; }; @@ -63374,15 +63986,15 @@ zerodark-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "zerodark-theme"; - version = "20160406.1028"; + version = "20160427.1009"; src = fetchFromGitHub { owner = "NicolasPetton"; repo = "zerodark-theme"; - rev = "ebf2a20ee5cb043d2f84e12ab68f1a8330da07d9"; - sha256 = "0wc5m1xszccfby762k0w2j0vw39vsam730j6p04kbwmhawvjgdh4"; + rev = "6e7760bff61db146dc55ba161ff8b0db7baa884a"; + sha256 = "03qywaxahlzp1sg5gvgb7i77pnp2q1dkzcsa2k2m8vs8vk0zlayh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/zerodark-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/zerodark-theme"; sha256 = "1nqzswmnq6h0av4rivqm237h7ghp7asa2nvls7nz4ma467p9qhp9"; name = "zerodark-theme"; }; @@ -63395,7 +64007,7 @@ zlc = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "zlc"; - version = "20151010.2057"; + version = "20151010.2157"; src = fetchFromGitHub { owner = "mooz"; repo = "emacs-zlc"; @@ -63403,7 +64015,7 @@ sha256 = "1gb51bqdf87yibs1zngk6q090p05293cpwlwbwzhnih9sl6wkq8x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/zlc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/zlc"; sha256 = "0qw0qf14l09mcnw7h0ccbw17psfpra76qfawkc10zpdb5a2167d0"; name = "zlc"; }; @@ -63416,7 +64028,7 @@ znc = callPackage ({ cl-lib ? null, erc ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "znc"; - version = "20140722.1621"; + version = "20140722.1721"; src = fetchFromGitHub { owner = "sshirokov"; repo = "ZNC.el"; @@ -63424,7 +64036,7 @@ sha256 = "1xsxmvbh3xm3zh9yc6q28h48nar6pwyd51xw04b1x7amwkp8qdnp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/znc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/znc"; sha256 = "1z2kzbapgh55wwr5jp7v1wz5kpz4l7n3k94mkh3s068xag9xs6zz"; name = "znc"; }; @@ -63437,7 +64049,7 @@ zombie = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "zombie"; - version = "20141222.1016"; + version = "20141222.1116"; src = fetchFromGitHub { owner = "zk-phi"; repo = "zombie"; @@ -63445,7 +64057,7 @@ sha256 = "1gm3ly6czbw4vrxcslm50jy6nxf2qsl656cjwbyhw251wppn75cg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/zombie"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/zombie"; sha256 = "0ji3nsxwbxmmygd6plpbc1lkw6i5zw4y6x3r5n2ah3ds4vjr7cnv"; name = "zombie"; }; @@ -63458,7 +64070,7 @@ zombie-trellys-mode = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, haskell-mode, lib, melpaBuild }: melpaBuild { pname = "zombie-trellys-mode"; - version = "20150304.848"; + version = "20150304.948"; src = fetchFromGitHub { owner = "david-christiansen"; repo = "zombie-trellys-mode"; @@ -63466,7 +64078,7 @@ sha256 = "04m53hzk5n9vxh0gxi8jzpdhsdjlxnvz7hmsisr3bs99v603ha01"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/zombie-trellys-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/zombie-trellys-mode"; sha256 = "19xzvppw7f35s82hm0y7sga8dyjjyy0dxy6vji4hxdpjziz7lggv"; name = "zombie-trellys-mode"; }; @@ -63479,7 +64091,7 @@ zone-nyan = callPackage ({ esxml, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "zone-nyan"; - version = "20160102.1656"; + version = "20160102.1756"; src = fetchFromGitHub { owner = "wasamasa"; repo = "zone-nyan"; @@ -63487,7 +64099,7 @@ sha256 = "0b8m0mdxbskkqsx86i6942235i8x0pk67a7s8lhsp2anahksazla"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/zone-nyan"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/zone-nyan"; sha256 = "165sgjaahz038isii971m02hr2g5iqhbhiwf5kdn8c739cjaa17b"; name = "zone-nyan"; }; @@ -63500,7 +64112,7 @@ zone-rainbow = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "zone-rainbow"; - version = "20160120.734"; + version = "20160120.834"; src = fetchFromGitHub { owner = "kawabata"; repo = "zone-rainbow"; @@ -63508,7 +64120,7 @@ sha256 = "0w550l9im3mhxhja1b7cr9phdcbvx5lprw551lj0d1lv7qvjasz0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/zone-rainbow"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/zone-rainbow"; sha256 = "0l51fmhvx9vsxbs62cbjgqphb691397f651nqin7cj3dfvchzh4j"; name = "zone-rainbow"; }; @@ -63521,7 +64133,7 @@ zone-select = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "zone-select"; - version = "20160118.819"; + version = "20160118.919"; src = fetchFromGitHub { owner = "kawabata"; repo = "zone-select"; @@ -63529,7 +64141,7 @@ sha256 = "17mrzf85ym0x5ih4l6sjdjlcmviabf8c8rpvpkd90gp9qxd8pyx1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/zone-select"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/zone-select"; sha256 = "05kc211invmy4ajwf71vgr2b7bdgn99c4a26m95gcjqgy3sh5xzz"; name = "zone-select"; }; @@ -63542,7 +64154,7 @@ zone-sl = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "zone-sl"; - version = "20160201.610"; + version = "20160201.710"; src = fetchFromGitHub { owner = "kawabata"; repo = "zone-sl"; @@ -63550,7 +64162,7 @@ sha256 = "0m1q45pza61j0fp8cxkgmds5fyjrk0nqpwhg8m91610m3pvyc3ap"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/zone-sl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/zone-sl"; sha256 = "04rwd6vj3abk3bzhq3swxwcq5da2n9cldrcmvnqgjr975np4cgs3"; name = "zone-sl"; }; @@ -63562,13 +64174,13 @@ }) {}; zones = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "zones"; - version = "20160209.1120"; + version = "20160209.1220"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/zones.el"; sha256 = "1g6dpyihwaz28ppndhkw3jzmph6pmcnfhaff926j0zr1j701sqdd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/zones"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/zones"; sha256 = "08sl7i7cy22nd1jijc5l7lp75k9z83gfr8q41n72l0vxrpdasc9w"; name = "zones"; }; @@ -63581,7 +64193,7 @@ zonokai-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "zonokai-theme"; - version = "20160321.2125"; + version = "20160321.2225"; src = fetchFromGitHub { owner = "ZehCnaS34"; repo = "zonokai-emacs"; @@ -63589,7 +64201,7 @@ sha256 = "16ni0va1adpqdnrkiwmpxwrhyanxp5jwbknii2wnbhgq62s7gv43"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/zonokai-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/zonokai-theme"; sha256 = "1hrpgh03mp7yynqamgzkw7fa70c5pmyjfmfblkfhspnsif8j4v29"; name = "zonokai-theme"; }; @@ -63602,13 +64214,13 @@ zoom-frm = callPackage ({ fetchurl, frame-cmds, frame-fns, lib, melpaBuild }: melpaBuild { pname = "zoom-frm"; - version = "20151231.1825"; + version = "20151231.1925"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/zoom-frm.el"; sha256 = "1whpd97yjby5zbcr4fcn0nxhqvn6k3jn8k2d15i6ss579kziwdqn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/zoom-frm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/zoom-frm"; sha256 = "111lr29zhj8w8j7dbzl58iisqxjhccxpw4spfxx08zxh4623g5mk"; name = "zoom-frm"; }; @@ -63621,7 +64233,7 @@ zoom-window = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "zoom-window"; - version = "20151206.2305"; + version = "20151207.5"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-zoom-window"; @@ -63629,7 +64241,7 @@ sha256 = "1kl01dlggsrffvakmwixw9j8cncdmlsw805wvzls6l1711r1zjwj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/zoom-window"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/zoom-window"; sha256 = "0l9683nk2bdm49likk9c55c23qfy6f1pn04drqwd1vhpanz4l4b3"; name = "zoom-window"; }; @@ -63642,7 +64254,7 @@ zop-to-char = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "zop-to-char"; - version = "20160212.308"; + version = "20160212.408"; src = fetchFromGitHub { owner = "thierryvolpiatto"; repo = "zop-to-char"; @@ -63650,7 +64262,7 @@ sha256 = "1hq5ycnj0kwqs25z5rm095d55r768458vc5h5dpjhka5n6c099p1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/zop-to-char"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/zop-to-char"; sha256 = "0jnspvqqvnaplld083j7cqqxw122qazh88ab7hymci36m3ka9hga"; name = "zop-to-char"; }; @@ -63663,7 +64275,7 @@ zossima = callPackage ({ fetchFromGitHub, fetchurl, inf-ruby, lib, melpaBuild }: melpaBuild { pname = "zossima"; - version = "20121123.1835"; + version = "20121123.1935"; src = fetchFromGitHub { owner = "technomancy"; repo = "zossima"; @@ -63671,7 +64283,7 @@ sha256 = "0fgwxw7r3zfv0b7xi8bx7kxff2r5hdw9gxf16kwq04fnh18nhi39"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/zossima"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/zossima"; sha256 = "11kmnbqv4s8arindg7cxcdhbvfxsckks332wn7aiyb3bjhcgzwjb"; name = "zossima"; }; @@ -63684,7 +64296,7 @@ zotelo = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "zotelo"; - version = "20160118.2245"; + version = "20160118.2345"; src = fetchFromGitHub { owner = "vspinu"; repo = "zotelo"; @@ -63692,7 +64304,7 @@ sha256 = "1335z1v4889njnm98pz2sjk6n7r3vncsz83bk3z6gj5i0ig7wjap"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/zotelo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/zotelo"; sha256 = "0y6s5ma7633h5pf9zj7vkazidlf211va7nk47ppb1q0iyfkyln36"; name = "zotelo"; }; @@ -63705,15 +64317,15 @@ zotxt = callPackage ({ fetchFromGitLab, fetchurl, lib, melpaBuild, request-deferred }: melpaBuild { pname = "zotxt"; - version = "20160315.132"; + version = "20160427.2222"; src = fetchFromGitLab { owner = "egh"; repo = "zotxt-emacs"; - rev = "3470dd0cb6686f91d4c8b7fb9879f0d13e317d63"; - sha256 = "1azgcmpayxci2xa1rpghrwr1mgnn4a56khc81mlil27nmaj4ay46"; + rev = "43c0c6d23b31126bac6b14bb85608180fd9c866f"; + sha256 = "0qksa67aazs9vx7v14nlakr34z6l0h6mhfzi2c0vhrr0c210r6hp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/zotxt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/zotxt"; sha256 = "18jla05g2k8zfrmp7q9kpr1mpw6smxzdyn8nfghm306wvv9ff8y5"; name = "zotxt"; }; @@ -63726,7 +64338,7 @@ ztree = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ztree"; - version = "20160127.1742"; + version = "20160127.1842"; src = fetchFromGitHub { owner = "fourier"; repo = "ztree"; @@ -63734,7 +64346,7 @@ sha256 = "1sxjpbgi7ydmrlv34l16n40qpg969wfcb6kknndrh3fgjjc3p41b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ztree"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ztree"; sha256 = "1fk5xz8qq3azc66f954x5qvym94xnv4fg6wy83ihdfwycsas7j20"; name = "ztree"; }; @@ -63747,7 +64359,7 @@ zygospore = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "zygospore"; - version = "20140703.352"; + version = "20140703.452"; src = fetchFromGitHub { owner = "LouisKottmann"; repo = "zygospore.el"; @@ -63755,7 +64367,7 @@ sha256 = "0v73fgb0gf81vlihiicy32v6x86rr2hv0bxlpw7d3pk4ng1a0l3z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/zygospore"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/zygospore"; sha256 = "0n9qs6fymdjly0i4rmx87y8gapfn5sqivsivcffi42vcb5f17kxj"; name = "zygospore"; }; @@ -63768,7 +64380,7 @@ zzz-to-char = callPackage ({ avy, cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "zzz-to-char"; - version = "20160122.640"; + version = "20160122.740"; src = fetchFromGitHub { owner = "mrkkrp"; repo = "zzz-to-char"; @@ -63776,7 +64388,7 @@ sha256 = "0y0hhar3krkvbpb5y9k197mb0wfpz8cl6fmxazq8msjml7hkk339"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/zzz-to-char"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/zzz-to-char"; sha256 = "16vwp0krshmn5x3ry1j512g4kydx39znjqzri4j7wgg49bz1n7vh"; name = "zzz-to-char"; }; diff --git a/pkgs/applications/editors/emacs-modes/melpa-stable-generated.nix b/pkgs/applications/editors/emacs-modes/melpa-stable-generated.nix index 001f4f7adc5..1afcc906abe 100644 --- a/pkgs/applications/editors/emacs-modes/melpa-stable-generated.nix +++ b/pkgs/applications/editors/emacs-modes/melpa-stable-generated.nix @@ -10,7 +10,7 @@ sha256 = "1xigpz2aswlmpcsc1f7gfakyw7041pbyl9zfd8nz38iq036n5b96"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/0blayout"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/0blayout"; sha256 = "027k85h34998i8vmbg2hi4q1m4f7jfva5jm38k0g9m1db700gk92"; name = "_0blayout"; }; @@ -31,7 +31,7 @@ sha256 = "13f4l9xzx4xm5m80kkb49zh31w0bn0kw9m5ca28rrx4aysqmwryv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/abc-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/abc-mode"; sha256 = "0qf5lbszyscmagiqhc0d05vzkhdky7ini4w33z1h3j5417sscrcx"; name = "abc-mode"; }; @@ -52,7 +52,7 @@ sha256 = "1yr6cqycd7ljkqzfp4prz9ilcpjq8wxg5yf645m24gy9v4w365ia"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/abyss-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/abyss-theme"; sha256 = "0ckrgfd7fjls6g510v8fqpkd0fd18lr0spg3lf5s88gky8ihdg6c"; name = "abyss-theme"; }; @@ -73,7 +73,7 @@ sha256 = "0a8widshsm39cbala17pmnk1sazazhhyqppwalysli170whk49c5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-alchemist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ac-alchemist"; sha256 = "02ll3hcixgdb8zyszn78714gy1h2q0vkhpbnwap9302mr2racwl0"; name = "ac-alchemist"; }; @@ -94,7 +94,7 @@ sha256 = "0vrd6g9cl02jjxrjxpshq4pd748b5xszhpmakywrw8s08nh8jf44"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-anaconda"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ac-anaconda"; sha256 = "124nvigk6y3iw0lj2r7div88rrx8vz59xwqph1063jsrc29x8rjf"; name = "ac-anaconda"; }; @@ -115,7 +115,7 @@ sha256 = "12z8nq797hjy0bq5vzpcm7z7bdn0ixc3ma4cj3v51xnwmgknzk6c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-cake"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ac-cake"; sha256 = "0s2pgf0m98ixgadsnn201vm5gnawanpvxv56sf599f33krqnxzkl"; name = "ac-cake"; }; @@ -136,7 +136,7 @@ sha256 = "0mlmhdl9s28z981y8bnpj8jpfzm6bgfiyl0zmpgvhyqw1wzqywwv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-cake2"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ac-cake2"; sha256 = "0qxilldx23wqf8ilif2nin119bvd0l7b6f6wifixx28a6kl1vsgy"; name = "ac-cake2"; }; @@ -157,7 +157,7 @@ sha256 = "0nyq34yq4jcp3p30ygma3iz1h0q551p33792byj76pa5ps09g1da"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-capf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ac-capf"; sha256 = "1drgk5iz2wp3rxzd39pj0n4cfmm5z8zqlp50jw5z7ffbbg35qxbm"; name = "ac-capf"; }; @@ -178,7 +178,7 @@ sha256 = "1vpj0lxbvlxffj2z29l109w70hcphiavyvglsw524agxql3c8yf9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-cider"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ac-cider"; sha256 = "1dszpb706h34miq2bxqyq1ycbran5ax36vcniwp8vvhgcjsw5sz6"; name = "ac-cider"; }; @@ -199,7 +199,7 @@ sha256 = "1sdgpyq5p824dnxv6r7djwvhyhdmnis8k6992klr8iz7anhxzdam"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-clang"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ac-clang"; sha256 = "070s06xhkzaqfc3j8c4i44rks6gn8z66lwd54j17p8d91x3qjpr4"; name = "ac-clang"; }; @@ -220,7 +220,7 @@ sha256 = "0a3s880nswc2s6yh2v5zsmws550q917i7av8nrxc5sp1d03xqwmn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-dcd"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ac-dcd"; sha256 = "086jp9c6bilc361n1hscza3pbhgvqlq944z7cil2jm1kicsf8s7r"; name = "ac-dcd"; }; @@ -241,7 +241,7 @@ sha256 = "0cc3jpc4pihbyznyzvf6i3xwc2x78gb5m36ba9gkvxhabsljnlfg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-emoji"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ac-emoji"; sha256 = "0msh3dh89jzk6hxva34gp9d5pazchgdknxjbi72z26rss9bkp1mw"; name = "ac-emoji"; }; @@ -262,7 +262,7 @@ sha256 = "0ijni3qgd68jhznhirhgcl59cr7hwfvbwgf6z120x56jmp8h01d2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-etags"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ac-etags"; sha256 = "0ag49k9izrs4ikzac9lifvvwhcn5n89lr2vb20pngsvg1czdyhzb"; name = "ac-etags"; }; @@ -283,7 +283,7 @@ sha256 = "02ifz25rq64z0ifxs52aqdz0iz4mi6xvj88hcn3aakkmsj749vvn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-geiser"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ac-geiser"; sha256 = "0v558qz1mp8b1bgk8kgdk5sx5mpd353mw77n5b0pw4b2ikzpz2mx"; name = "ac-geiser"; }; @@ -304,7 +304,7 @@ sha256 = "0m33v9iy3y37sicfmpx7kvmn8v1a8k6cs7d0v9v5k93p4d5ila41"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-haskell-process"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ac-haskell-process"; sha256 = "0kv4z850kv03wiax1flnrp6sgqja25j23l719w7rkr7ck110q8rw"; name = "ac-haskell-process"; }; @@ -325,7 +325,7 @@ sha256 = "1gw38phyaslpql7szvlpwgyfngdgd21f6lq406vq0gjwwmxgig34"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-helm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ac-helm"; sha256 = "16ajxlhcah5zbvywpc6l4l1arr308gjpgvdx6l1nrv2zvpckhlwq"; name = "ac-helm"; }; @@ -346,7 +346,7 @@ sha256 = "19v9515ixg22m7h7riix8w3vyhzax1m2pbwdirp59v532xn9b0cz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-html"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ac-html"; sha256 = "0qf8f75b6dvy844dq8vh8d9c6k599rh1ynjcif9bwvdpf6pxwvqa"; name = "ac-html"; }; @@ -367,7 +367,7 @@ sha256 = "1zmjqnlbfchnb7n2v7ms7q06xma1lmf9ry3v6f4pfnwlmz5lsf3a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-html-bootstrap"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ac-html-bootstrap"; sha256 = "0z71m6xws0k9smhsswaivpikr64mv0wh6klnmi5cwhwcqas6kdi1"; name = "ac-html-bootstrap"; }; @@ -388,7 +388,7 @@ sha256 = "0p18wxyyc1jmcwx9y5i77s25v4jszv7cmm4bkwm4dzhkxd33kh1f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-html-csswatcher"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ac-html-csswatcher"; sha256 = "0jb9dnm2lxadrxssf0rjqw8yvvskcq4hys8c21shjyj3gkvwbfqn"; name = "ac-html-csswatcher"; }; @@ -409,7 +409,7 @@ sha256 = "1acm13n59sdgvvzicscxzrr5j1x5sa5x4rc4cnkbwb28nw5a5ysm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-inf-ruby"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ac-inf-ruby"; sha256 = "04jclf0yxz78x1fsaf5sh1p466947nqrcx337kyhqn0nkj3hplqr"; name = "ac-inf-ruby"; }; @@ -430,7 +430,7 @@ sha256 = "16qsj3wni4xhcrjx2rnxdzq6jb7jrl4bngi4an37vgdlrx3w8m6l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-ispell"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ac-ispell"; sha256 = "1vsy2qjh60n5lavivpqhhcpg5pk8zz2r0wy1sb65capn841zdi67"; name = "ac-ispell"; }; @@ -451,7 +451,7 @@ sha256 = "19cb8kq8gmrplkxil22ahvbyq5cng1l2vh2lrfiyqpjsap7zfjz5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-mozc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ac-mozc"; sha256 = "1v3iiid8cq50i076q98ycks9m827xzncgxqwqs2rqhab0ncy3h0f"; name = "ac-mozc"; }; @@ -472,7 +472,7 @@ sha256 = "16f8hvdz6y8nsfj7094yrvw194ag3w1jvz81h287vcgcvmyb7wdf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-octave"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ac-octave"; sha256 = "1g5s4dk1rcgkjn17jfw6g201pw0vfhqcx1nhigmnizpnzy0man9z"; name = "ac-octave"; }; @@ -493,7 +493,7 @@ sha256 = "0ca4viakvc09mvhk7d01pxnc3v3ydra6413asvdjx555njm9ic0f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-php"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ac-php"; sha256 = "0p9qq8nszp5jb71s35cxnmcxp50b62y2jv1ha7vvqfz5p8miallk"; name = "ac-php"; }; @@ -525,7 +525,7 @@ sha256 = "0g7xbfsfqpmcay56y8xbmif52ccz430s3rjxf5bgl9ahkk7zgkzl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-racer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ac-racer"; sha256 = "1vkvh8y3ckvzvqxj4i2k6jqri94121wbfjziybli74qba8dca4yp"; name = "ac-racer"; }; @@ -546,7 +546,7 @@ sha256 = "13yghv7p6c91fn8mrxbwrb6ldk5n3b6nj6a7pwsvks1q73i1pl88"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ac-slime"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ac-slime"; sha256 = "0mk3k1lcbqa16xvsbgk28x09vzqyaidqaqpq934xdbrwhdgwgckg"; name = "ac-slime"; }; @@ -567,7 +567,7 @@ sha256 = "1pzh5l8dybrrmglj55nbff6065pxlbx14501p3a1qx1wvf24g1sv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ace-flyspell"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ace-flyspell"; sha256 = "0f24qrpcvyg7h6ylyggn4zrbydci537iigshac1d8yywsr0j47gd"; name = "ace-flyspell"; }; @@ -588,7 +588,7 @@ sha256 = "0233ai62zhsy5yhv72016clygwp2pcg80y6kr4cjm2k1k2wwy7m9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ace-isearch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ace-isearch"; sha256 = "0n8qf08z9n8c2sp5ks29nxcfks5mil1jj6wq348apda8safk36hm"; name = "ace-isearch"; }; @@ -609,7 +609,7 @@ sha256 = "1z82a0lrb61msamqpsy7rxcgs2nfhhckkk4zw0aw49l248p2nrgs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ace-jump-buffer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ace-jump-buffer"; sha256 = "0hkxa0ps0v1hwmjafqbnyr6rc4s0w95igk8y3w53asl7f5sj5mpi"; name = "ace-jump-buffer"; }; @@ -630,7 +630,7 @@ sha256 = "1hsnsncarhvkhl2r6cg1x23vgfqzrwcbmdfkwasfgs7pgnd722m7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ace-jump-helm-line"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ace-jump-helm-line"; sha256 = "04q8wh6jskvbiq6y2xsp2ir23vgz5zw09rm127sgiqrmn0jc61b9"; name = "ace-jump-helm-line"; }; @@ -651,7 +651,7 @@ sha256 = "1bwvzh056ls2v7y26a0s4j5mj582dmds04lx4x6iqihs04ss74bb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ace-jump-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ace-jump-mode"; sha256 = "0yk0kppjyblr5wamncrjm3ym3n8jcl0r0g0cbnwni89smvpngij6"; name = "ace-jump-mode"; }; @@ -672,7 +672,7 @@ sha256 = "0yng6qayzqadk4cdviri84ghld4can35q134hm3n3j3vprhpbmca"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ace-jump-zap"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ace-jump-zap"; sha256 = "07bkmly3lvlbby2m13nj3m1q0gcnwy5sas7d6ws6vr9jh0d36byb"; name = "ace-jump-zap"; }; @@ -693,7 +693,7 @@ sha256 = "1v127ld04gn16bgismbcz91kfjk71f3g8yf10r4scfp603y41zgz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ace-link"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ace-link"; sha256 = "1jl805r2s3wa0xyhss1q28rcy6y2fngf0yfcrcd9wf8kamhpajk5"; name = "ace-link"; }; @@ -703,22 +703,22 @@ license = lib.licenses.free; }; }) {}; - ace-pinyin = callPackage ({ ace-jump-mode, avy, fetchFromGitHub, fetchurl, lib, melpaBuild }: + ace-pinyin = callPackage ({ ace-jump-mode, avy, fetchFromGitHub, fetchurl, lib, melpaBuild, pinyinlib }: melpaBuild { pname = "ace-pinyin"; - version = "0.2.4"; + version = "0.2.5"; src = fetchFromGitHub { owner = "cute-jumper"; repo = "ace-pinyin"; - rev = "2f6791b5f0ac1753ae0d0d7a486a385c17151b42"; - sha256 = "1614xypwiv8xri7w921w7gj26zx7pvwk3212k71qn0capq7hs32g"; + rev = "c444d8d6861dafd06dd41e694dc9db32652e3b7c"; + sha256 = "1d2g873zwq78ggs47954lccmaky20746wg0gafyj93d1qyc3m8rn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ace-pinyin"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ace-pinyin"; sha256 = "18gmj71zd0i6yx8ifjxsqz2v81jx0j37f5kxllf31w7fj32ymbkc"; name = "ace-pinyin"; }; - packageRequires = [ ace-jump-mode avy ]; + packageRequires = [ ace-jump-mode avy pinyinlib ]; meta = { homepage = "https://melpa.org/#/ace-pinyin"; license = lib.licenses.free; @@ -735,7 +735,7 @@ sha256 = "1qiiivkwa95bhyym8ly7fnwwglc9dcifkyr314bsq8m4rp1mgry4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ace-popup-menu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ace-popup-menu"; sha256 = "1cq1mpv7v98bqrpsm598krq1741b6rwih71cx3yjifpbagrv4m5s"; name = "ace-popup-menu"; }; @@ -756,7 +756,7 @@ sha256 = "07mcdzjmgrqdvjs94f2n5bkrf5vrq2fwzz256wbm3wzqxqkfy1q6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ace-window"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ace-window"; sha256 = "1k0x8m1phmvgdxb5aj841iai9q96a5lfq8i4b5vnlbc3w888n3xa"; name = "ace-window"; }; @@ -777,7 +777,7 @@ sha256 = "0hib4a8385q2czi1yqs0hwnva2xi7kw0bdfnrgha1hrl30rilp2f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ack-menu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ack-menu"; sha256 = "1d2kw04ndxji2qjcm1b65qnxpp08zx8gbia8bl6x6mnjb2isc2d9"; name = "ack-menu"; }; @@ -798,7 +798,7 @@ sha256 = "0zybch8hz3mj63i0pxynb4d76ywqcy7b4fsa4hh71c2kb0bnczb3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/actionscript-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/actionscript-mode"; sha256 = "1dkiay9jmizvslji5kzab4dxm1dq0jm8ps7sjq6710g7a5aqdvwq"; name = "actionscript-mode"; }; @@ -819,7 +819,7 @@ sha256 = "0kp2aafjhqxz3mjr9hkkss85r4n51chws5a2qj1xzb63dh36liwm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/adoc-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/adoc-mode"; sha256 = "0wgagcsh0fkb51fy17ilrs20z2vzdpmz97vpwijcfy2b9rypxq15"; name = "adoc-mode"; }; @@ -840,7 +840,7 @@ sha256 = "1y9bw2vkl952pha2dsi18swyr94mihgwlcg5m8hg4d5bfg2fzcb2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/aes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/aes"; sha256 = "11vl9x3ldrv7q7rd29xk4xmlvfxs0m6iys84f6mlgf00190l5r5v"; name = "aes"; }; @@ -861,7 +861,7 @@ sha256 = "15kp99vwyi7hb1jkq3lwvqzw3v62ycixsq6y4pd1x0nn2v5p5m5r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ag"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ag"; sha256 = "1r4ai09vdckkg4h4i7dp781qqmm4kky53p4q8azp3n2c78i1vz6g"; name = "ag"; }; @@ -874,15 +874,15 @@ aggressive-indent = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "aggressive-indent"; - version = "1.6"; + version = "1.7"; src = fetchFromGitHub { owner = "Malabarba"; repo = "aggressive-indent-mode"; - rev = "97eaa5778ce0cd596a0807ef2e676d2681aabf84"; - sha256 = "0lr6n680ys7c6g6ah9xrid31640yjjkrqavb4164lwydfj5yy1xa"; + rev = "c0a1e24ef39e2b0f388135c2ed8f8b419346337c"; + sha256 = "0wm8qp8d961ic1jr7g29m3vk807rq2xgi7zbk31b82ghakdvdy3j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/aggressive-indent"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/aggressive-indent"; sha256 = "1qi8jbr28gax35siim3hnnkiy8pa2vcrzqzc6axr98wzny46x0i2"; name = "aggressive-indent"; }; @@ -903,7 +903,7 @@ sha256 = "02nkcin0piv7s93c9plhy361dbqr78m0gd19myc7qb7gnm36kzpn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ahk-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ahk-mode"; sha256 = "066l4hsb49wbyv381qgn9k4hn8gxlzi20h3qaim9grngjj5ljbni"; name = "ahk-mode"; }; @@ -924,7 +924,7 @@ sha256 = "0blrpqn8wy9pwzikgzb0v6x4hk7axv93j4byfci62fh1905zfkkb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/airline-themes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/airline-themes"; sha256 = "0jkhb6nigyjmwqny7g59h4ssfy64vl3qnwcw46wnx5k9i73cjyih"; name = "airline-themes"; }; @@ -945,7 +945,7 @@ sha256 = "1y5nmcrlsmniv37x7w6yhihmb335n82d96yz7xclhwg59n652pjx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/alchemist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/alchemist"; sha256 = "18jxw0zb7y34qbm4bcpfpb2656f0h9grmrbfskgp4ra4q5q3n369"; name = "alchemist"; }; @@ -966,7 +966,7 @@ sha256 = "1pk5dgjqrynap85700wdivq41bdqvwd5hkfimgmcd48l5lhj9pbj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/alect-themes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/alect-themes"; sha256 = "04fq65qnxlvl5nc2q037c6yb4nf422dfw2913gv6zfh9rdmxsks8"; name = "alect-themes"; }; @@ -987,7 +987,7 @@ sha256 = "1vpc3q40m6dcrslki4bg725j4kv6c6xfxwjjl1ilg7la49fwwf26"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/alert"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/alert"; sha256 = "0x3cvczq09jvshz435jw2fjm69457x2wxdvvbbjq46nfnybhi118"; name = "alert"; }; @@ -1008,7 +1008,7 @@ sha256 = "00kfnkr0rclzbir2xxzr9wf2g0hf1alc004v8i9mqf3ab6dgdqiy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/amd-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/amd-mode"; sha256 = "17ry6vm5xlmdfs0mykdyn05cik38yswq5axdgn8hxrvvb6f58d06"; name = "amd-mode"; }; @@ -1029,7 +1029,7 @@ sha256 = "0sj6cr2bghy80dnwgl7rg61abdlvgfzi0jjc7jrxz7fdzwkcq714"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/anaconda-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/anaconda-mode"; sha256 = "0gz16aam4zrm3s9ms13h4qcdflf55506kgkpyncq3bi54cvv8n1r"; name = "anaconda-mode"; }; @@ -1050,7 +1050,7 @@ sha256 = "0fnxxvw81c34zhmiyr5awl92wr5941n4gklvzjc4jphaf2nhkg4w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/anaphora"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/anaphora"; sha256 = "1wb7fb3pc4gxvpjlm6gjbyx0rbhjiwd93qwc4vfw6p865ikl19y2"; name = "anaphora"; }; @@ -1071,7 +1071,7 @@ sha256 = "0gjynmzqlqz0d57fb4np6xrklqdn11y4vjbm18rlpvmk92bgw740"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/android-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/android-mode"; sha256 = "1nqrvq411yg4b9xb5cvc7ai7lfalwc2rfhclzprvymc4vxh6k4cc"; name = "android-mode"; }; @@ -1092,7 +1092,7 @@ sha256 = "1798nv4djhxzbin68zf6w7dbfm9sc39d0kygky52ii36arg5r1zp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/angular-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/angular-mode"; sha256 = "1bwfmjldnxki0lqi3ys6r2a3nlhbwm1dibsg2dvzirq8qql02w1i"; name = "angular-mode"; }; @@ -1113,7 +1113,7 @@ sha256 = "0h9i0iimanbvhbqy0cj9na335rs961pvhxjj4k8y53qc73xm102a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/angular-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/angular-snippets"; sha256 = "057phgizn1c6njvdfigb23ljs31knq247gr0rcpqfrdaxsnnzm5c"; name = "angular-snippets"; }; @@ -1134,7 +1134,7 @@ sha256 = "18ninv1z8zdqpqnablbds4zgxgk4c1nmznlfdicj6qs738c5c30s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/annotate"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/annotate"; sha256 = "1ajykgara2m713blj2kfmdz12fzm8jw7klyakkyi6i3c3a9m44jy"; name = "annotate"; }; @@ -1155,7 +1155,7 @@ sha256 = "1ppq3kszzj2fgr7mwj565bjs8bs285ymy384cnnw7paddgcr9z02"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/annoying-arrows-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/annoying-arrows-mode"; sha256 = "13bwqv3mv7kgi1gms58f5g03q5g7q98n4vv6n28zqmppxm5z33s7"; name = "annoying-arrows-mode"; }; @@ -1176,7 +1176,7 @@ sha256 = "1hbddxarr40ygvaw4pwaivq2l4f0brszw73w1r50lkjlggb7bl3g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ansi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ansi"; sha256 = "0b5xnv6z471jm53g37njxin6l8yflsgm80y4wxahfgy8apipcq89"; name = "ansi"; }; @@ -1197,7 +1197,7 @@ sha256 = "03d240jngxw51ybrsjw8kdxygrr0ymdckzwga2jr1bqf26v559j2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ansible"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ansible"; sha256 = "1xdc05fdglqfbizra6s1zl6knnvaq526dkxqnw9g7w269j8f4z8g"; name = "ansible"; }; @@ -1218,7 +1218,7 @@ sha256 = "05z379k6a7xq9d2zapf687x3f37jpmh6kfghpgxdd18v0hzca8ds"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ansible-doc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ansible-doc"; sha256 = "03idvnn79fr9id81aivkm7g7cmlsg0c520wcq4da8g013xvi342w"; name = "ansible-doc"; }; @@ -1239,7 +1239,7 @@ sha256 = "06cn81sksvl88l1g3cfgp1kf8xzfv00b31j2rf58f45zlbl5ckv9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/anti-zenburn-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/anti-zenburn-theme"; sha256 = "1sp9p6m2jy4m9fdn1hz25cmasy0mwwgn46qmvm92i56f5x6jlzzk"; name = "anti-zenburn-theme"; }; @@ -1260,7 +1260,7 @@ sha256 = "1z6l72dn98icqsmxb3rrj6l63ijc3xgfa3vdl19yqa2rfy6ya721"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/anyins"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/anyins"; sha256 = "0ncf3kn8rackcidkgda2zs60km3hx87rwr9daj7ksmbb6am09s7c"; name = "anyins"; }; @@ -1280,7 +1280,7 @@ sha256 = "08f7qxwnvykmxwrii3nv1fnai4mqs2ir5419k0llj6mkrik0gfc6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/anything"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/anything"; sha256 = "13pmks0bsby57v3vp6jcvvzwb771d4qq62djgvrw4ykxqzkcb8fj"; name = "anything"; }; @@ -1301,7 +1301,7 @@ sha256 = "01lw9159axg5w9bpdy55m4zc902zmsqvk213ky1nmgnln0fvq3rd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/anything-exuberant-ctags"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/anything-exuberant-ctags"; sha256 = "0p0jq2ggdgaxv2gd9m5iza0y3mjjc82xmgp899yr15pfffa4wihk"; name = "anything-exuberant-ctags"; }; @@ -1322,7 +1322,7 @@ sha256 = "1834yj2vgs4dasdfnppc8iw8ll3yif948biq9hj0sbpsa2d8y44k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/anything-replace-string"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/anything-replace-string"; sha256 = "1fagi6cn88p6sf1yhx1qsi7nw9zpyx9hdfl66iyskqwddfvywp71"; name = "anything-replace-string"; }; @@ -1343,7 +1343,7 @@ sha256 = "1bcvin2694ypqgiw0mqk82riq7gw6ra10vbkzng1yp9jp2qr6wmm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/anything-sage"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/anything-sage"; sha256 = "1878vj8hzrwfyd2yvxcm0f1vm9m0ndwnj0pcq7j8zm9lxj0w48p3"; name = "anything-sage"; }; @@ -1364,7 +1364,7 @@ sha256 = "1dxaf68przg0hh0p1zhxsq2dysp3ln178yxhbqalxw67bjy8ikny"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/anzu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/anzu"; sha256 = "0i2ia0jisj31vc2pjx9bhv8jccbp24q7c406x3nhh9hxjzs1f41i"; name = "anzu"; }; @@ -1385,7 +1385,7 @@ sha256 = "13j2r4nx2x6j3qx50d5rdnqd8nl5idxdkhizsk7ccz3v2607fbyy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/apples-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/apples-mode"; sha256 = "05ssnxs9ybc26jhr69xl9jpb41bz1688minmlc9msq2nvyfnj97s"; name = "apples-mode"; }; @@ -1406,7 +1406,7 @@ sha256 = "1wyz8jvdy4m0cn75mm3zvxagm2gl10q51479f91gnqv14b4rndfc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/aproject"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/aproject"; sha256 = "0v3gx2mff2s7knm69y253pm1yr4svy8w00pqbn1chrvymb62jhp2"; name = "aproject"; }; @@ -1427,7 +1427,7 @@ sha256 = "133c1n4ra7z3vb6y47400y71a6ac19pyji0bgd4kr9fcbx0flx91"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/artbollocks-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/artbollocks-mode"; sha256 = "0dlnxicn6nzyiz44y92pbl4nzr9jxfb9a99wacjrwq2ahdrwhhjp"; name = "artbollocks-mode"; }; @@ -1448,7 +1448,7 @@ sha256 = "1yvirfmvf6v5khl7zhx2ddv9bbxnx1qhwfzi0gy2nmbxlykb6s2j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/arview"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/arview"; sha256 = "0d935lj0x3rbar94l7288xrgbcp1wmz6r2l0b7i89r5piczyiy1y"; name = "arview"; }; @@ -1469,7 +1469,7 @@ sha256 = "1s973vzivibaqjb8acn4ylrdasxh17jcfmmvqp4wm05nwhg75597"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/asilea"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/asilea"; sha256 = "1lb8nr6r6yy06m4pxg8w9ja4zv8k5xwhl95v2wv95y1qwhgnwg3j"; name = "asilea"; }; @@ -1490,7 +1490,7 @@ sha256 = "0jy08kj7cy744lbdyil0j50b08vm76bzxwmzd99v4sz12s3qcd2s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/assess"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/assess"; sha256 = "0xj3f48plwxmibax00qn15ya7s0h560xzwr8nkwl5r151v1mc9rr"; name = "assess"; }; @@ -1503,15 +1503,15 @@ async = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "async"; - version = "1.7"; + version = "1.8"; src = fetchFromGitHub { owner = "jwiegley"; repo = "emacs-async"; - rev = "22de0f5792c9140f1da7c7459f30da0863b07e78"; - sha256 = "074wdciq62jfc41f829590p4y52dnkn3nxicj9lcabgxwz7cahjp"; + rev = "e35506faac6315da3c25b72682c99210b2d0bb28"; + sha256 = "1p3wwbc1bvx01h8c0ahb03w4srf6swxd83n5w9cpqlhjdmbkbp3m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/async"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/async"; sha256 = "063ci4f35x1zm9ixy110i5ds0vsrcafpixrz3xkvpnfqdn29si3f"; name = "async"; }; @@ -1532,7 +1532,7 @@ sha256 = "0dqr1yrzf7a8655dsbcch4622rc75j9yjbn9zhkyikqjicddnlda"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/aurel"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/aurel"; sha256 = "13zyi55ksv426pcksbm3l9s6bmp102w7j1xbry46bc48al6i2nnl"; name = "aurel"; }; @@ -1553,7 +1553,7 @@ sha256 = "0ns1xhpk1awbj3kv946dv11a99p84dhm54vjk72kslxwx42nia28"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/aurora-config-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/aurora-config-mode"; sha256 = "1hpjwidqmjxanijsc1imc7ww9abbylmkin1p0846fbz1hz3a603c"; name = "aurora-config-mode"; }; @@ -1574,7 +1574,7 @@ sha256 = "1b6g7qvrxv6gkl4izq1y7k0x0l7izyfnpki10di5vdv3jp6xg9b2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/auth-password-store"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/auth-password-store"; sha256 = "118ll12dhhxmlsp2mxmy5cd91166a1qsk406yhap5zw1qvyg58w5"; name = "auth-password-store"; }; @@ -1595,7 +1595,7 @@ sha256 = "05crb8cm7s1nggrqq0xcs2xiabjw3vh44fnkdiilq1c5cnajdcrj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/auto-compile"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/auto-compile"; sha256 = "1cdv41hg71mi5ixxi4kiizyg03xai2gyhk0vz7gw59d9a7482yks"; name = "auto-compile"; }; @@ -1616,7 +1616,7 @@ sha256 = "04i9b11iksg6acn885wl3qgi5xpsm3yszlqmd2x21yhprndlz7gb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/auto-complete"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/auto-complete"; sha256 = "1c4ij5bnclg94jdzhkqvq2vxwv6wvs051mbki1ibjm5f2hlacvh3"; name = "auto-complete"; }; @@ -1637,7 +1637,7 @@ sha256 = "1kp2l1cgzlg2g3wllz4gl1ssn4lnx2sn26xqigfrpr8y5rj2bsfj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/auto-complete-clang-async"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/auto-complete-clang-async"; sha256 = "1jj0jn1v3070g7g0j5gvpybv145kki8nsjxqb8fjf9qag8ilfkjh"; name = "auto-complete-clang-async"; }; @@ -1658,7 +1658,7 @@ sha256 = "1fqgyg986fg1dzac5wa97bx82mfddqb6qrfnpr3zksmw3vgykxr0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/auto-complete-exuberant-ctags"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/auto-complete-exuberant-ctags"; sha256 = "1i2s3ycc8jafkzdsz3kbvx1hh95ydi5s6rq6n0wzw1kyy3km35gd"; name = "auto-complete-exuberant-ctags"; }; @@ -1679,7 +1679,7 @@ sha256 = "18bf1kw85mab0zp7rn85cm1nxjxg5c1dmiv0j0mjwzsv8an4px5y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/auto-complete-nxml"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/auto-complete-nxml"; sha256 = "0viscr5k1carn9vhflry16kgihr6fvh6h36b049pgnk6ww085k6a"; name = "auto-complete-nxml"; }; @@ -1700,7 +1700,7 @@ sha256 = "1hf2f903hy9afahrgy2fx9smgn631drs6733188zgqi3nkyizj26"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/auto-complete-pcmp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/auto-complete-pcmp"; sha256 = "1mpgkwj8jwpvxphlm6iaprwjrldmihbgg97jav0fbm1kjnm4azna"; name = "auto-complete-pcmp"; }; @@ -1721,7 +1721,7 @@ sha256 = "0l49ciic7g30vklxq6l1ny3mz87l5p8qc30rmkjvkzvg8r52ksn3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/auto-complete-sage"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/auto-complete-sage"; sha256 = "02sxbir3arvmnkvxgndlkln9y05jnlv6i8czd6a0wcxk4nj43lq1"; name = "auto-complete-sage"; }; @@ -1742,7 +1742,7 @@ sha256 = "191294k92qp8gmfypf0q8j8qrym96aqikzvyb9p03wqvbr3r1dsk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/auto-dictionary"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/auto-dictionary"; sha256 = "1va485a8lxvb3507kr83cr6wpssxnf8y4l42mamn9daa8sjx3q16"; name = "auto-dictionary"; }; @@ -1763,7 +1763,7 @@ sha256 = "1hlsgsdxpx42kmqkjgy9b9ldz5i4dbi879v87pjd2qbkj8iywb6y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/auto-indent-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/auto-indent-mode"; sha256 = "1nk78p8lqs8cx90asfs8iaqnwwyy8fi5bafaprm9c0nrxz299ibz"; name = "auto-indent-mode"; }; @@ -1784,7 +1784,7 @@ sha256 = "05llpa6g4nb4qswmcn7j3bs7hnmkrkax7hsk7wvklr0wrljyg9a2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/auto-package-update"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/auto-package-update"; sha256 = "0fdcniq5mrwbc7yvma4088r0frdfvc2ydfil0s003faz0nrjcp8k"; name = "auto-package-update"; }; @@ -1805,7 +1805,7 @@ sha256 = "1h8zsgw30axprs7a5kkygbhvilillzazxgqz01ng36il65fi28s6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/auto-shell-command"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/auto-shell-command"; sha256 = "1i78fh72i8yv91rnabf0vs78r43qrjkr36hndmn5ya2xs3b1g41j"; name = "auto-shell-command"; }; @@ -1826,7 +1826,7 @@ sha256 = "0n3r7j83csby2s7284hy5pycynazyrkljxkn6xqn08gvxbbbdpdq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/auto-yasnippet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/auto-yasnippet"; sha256 = "02281gyy07cy72a29fjsixg9byqq3izb9m1jxv98ni8pcy3bpsqa"; name = "auto-yasnippet"; }; @@ -1847,7 +1847,7 @@ sha256 = "1pf2mwnicj5x2kksxwmrzz2vfxj9y9r6rzgc1fl8028mfrmrmg8s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/autodisass-java-bytecode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/autodisass-java-bytecode"; sha256 = "1k19nkbxnysm3qkpdhz4gv2x9nnrp94xl40x84q8n84s6xaan4dc"; name = "autodisass-java-bytecode"; }; @@ -1868,7 +1868,7 @@ sha256 = "1hyp49bidwc53cr25wwwyzcd0cbbqzxkfcpnccimphv24qfsai85"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/autodisass-llvm-bitcode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/autodisass-llvm-bitcode"; sha256 = "0bh73nzll9jp7kiqfnb5dwkipw85p3c3cyq58s0nghig02z63j01"; name = "autodisass-llvm-bitcode"; }; @@ -1889,7 +1889,7 @@ sha256 = "0g6kd1r0wizamw26bhp5jkvpsd98rcybkfchc622b9v5b89a07nq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/autopair"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/autopair"; sha256 = "161qhk8rc1ldj9hpg0k9phka0gflz9vny7gc8rnylk90p6asmr28"; name = "autopair"; }; @@ -1910,7 +1910,7 @@ sha256 = "0rq9ab264565z83cly743nbhrd9m967apmnlhqr1gy8dm4hcy7nm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/avy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/avy"; sha256 = "0gjq79f8jagbngp0shkcqmwhisc3hpgwfk34kq30nb929nbnlmag"; name = "avy"; }; @@ -1931,7 +1931,7 @@ sha256 = "1564yv9330vjymw3xnikc2lz20f65n40fbl8m1zs1gp4nlgzkk38"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/avy-menu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/avy-menu"; sha256 = "1g2bsm0jpig51jwn9f9mx6z5glb0bn4s21194xam768qin0rf4iw"; name = "avy-menu"; }; @@ -1952,7 +1952,7 @@ sha256 = "0s6m44b49jm5cnrx1pvk7rfw3zhwiw5xasdlgmlvv7wws7m5snd9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/avy-migemo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/avy-migemo"; sha256 = "1zvgkhma445gj1zjl8j25prw95bdpjbvfy8yr0r5liay6g2hf296"; name = "avy-migemo"; }; @@ -1973,7 +1973,7 @@ sha256 = "0lmv34pi9qdh76fi3w4lrfyfhzr824nsiif4nyjvpnmrabxgk309"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/avy-zap"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/avy-zap"; sha256 = "1zbkf21ggrmg1w0xaw40i3swgc1g4fz0j8p0r9djm9j120d94zkx"; name = "avy-zap"; }; @@ -1994,7 +1994,7 @@ sha256 = "0px1xggk6qyrwkma1p3d7b4z2id2gbrsxkliw3nwc1q4zndg1zr7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/babel"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/babel"; sha256 = "0sdpp4iym61ni32zv75n48ylj4jib8ca6n9hyqwj1b7nqg76mm1c"; name = "babel"; }; @@ -2015,7 +2015,7 @@ sha256 = "0hmn3jlsqgpc602lbcs9wzw0hgr5qpjdcxi2hjlc1cp27ilyscnf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/back-button"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/back-button"; sha256 = "0vyhvm445d0rs14j5xi419akk5nd88d4hvm4251z62fmnvs50j85"; name = "back-button"; }; @@ -2042,7 +2042,7 @@ sha256 = "1plh7i4zhs5p7qkv7p7lnfrmkszn8b3znwvbxgp7wpxay5safc5j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/badwolf-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/badwolf-theme"; sha256 = "03plkzpmlh0pgfp1c9padsh4w2g23clsznym8x4jabxnk0ynhq41"; name = "badwolf-theme"; }; @@ -2063,7 +2063,7 @@ sha256 = "11rlmrjdpa3vnf0h9vcd75946q9jyf1mpbm7h12hmpj6g2pavgdd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bash-completion"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/bash-completion"; sha256 = "0l41yj0sb87i27hw6dh35l32hg4qkka6r3bpkckjnfm0xifrd9hj"; name = "bash-completion"; }; @@ -2084,7 +2084,7 @@ sha256 = "1xvxz9sk9l57a4kiiavxxdp0v241mfgiy2lg5ilacq1cd6xrrhky"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bbcode-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/bbcode-mode"; sha256 = "0ixxavmilr6na56yc148prbh3nlhcwir6rxqvh332cr8vr9gmp89"; name = "bbcode-mode"; }; @@ -2105,7 +2105,7 @@ sha256 = "17nbnkg0zn6p89r27mk9hl6qhv6xscwdsq8iyikdw03svpr16lnp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bbdb-"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/bbdb-"; sha256 = "1vzbalcchay4pxl9f1sxg0zclgc095f59dlj15pj0bqq61sbl9jf"; name = "bbdb-"; }; @@ -2126,7 +2126,7 @@ sha256 = "0fg72qnb40djyciy4gzj359lqlcbbrq0indbkzd0dj09zipkx0df"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bbdb-vcard"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/bbdb-vcard"; sha256 = "1kn98b7mh9a28933r4yl8qfl9p92rpix4vkp71sar9cka0m71ilj"; name = "bbdb-vcard"; }; @@ -2147,7 +2147,7 @@ sha256 = "1zkh7dcas80wwjvigl27wj8sp4b5z6lh3qj7zkziinwamwnxbdbs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bbdb2erc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/bbdb2erc"; sha256 = "0k1f6mq9xd3568vg01dqqvcdbdshbdsi4ivkjyxis6dqfnqhlfdd"; name = "bbdb2erc"; }; @@ -2168,7 +2168,7 @@ sha256 = "01d10algmi9a4xd7mzf7n3zxfs2qf5as66wx17mff5cd8dahxj1q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/beeminder"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/beeminder"; sha256 = "1cb8xmgsv23b464hpchm9f9i64p3fyf7aillrwk1aa2l1008kyww"; name = "beeminder"; }; @@ -2189,7 +2189,7 @@ sha256 = "1agrci37bni1vfkxg171l53fvsnjdryhf05v54wj07jngnwf3cw9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/beginend"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/beginend"; sha256 = "1y81kr9q0zrsr3c3s14rm6l86y5wf1a0kia6d98112fy4fwdm7kq"; name = "beginend"; }; @@ -2210,7 +2210,7 @@ sha256 = "1rxznx2l0cdpiz8mad8s6q17m1fngpgb1cki7ch6yh18r3qz8ysr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/better-defaults"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/better-defaults"; sha256 = "13bqcmx2gagm2ykg921ik3awp8zvw5d4lb69rr6gkpjlqp7nq2cm"; name = "better-defaults"; }; @@ -2231,7 +2231,7 @@ sha256 = "0skg8wcgdfzd59ay4fbbbdd258cm8q7v321iml46bdipzk0r5lnw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/biblio"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/biblio"; sha256 = "0ym7xvcfd7hh3qdpfb8zpa7w8s4lpg0vngh9d0ns3s3lnhz4mi0g"; name = "biblio"; }; @@ -2252,7 +2252,7 @@ sha256 = "0skg8wcgdfzd59ay4fbbbdd258cm8q7v321iml46bdipzk0r5lnw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/biblio-core"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/biblio-core"; sha256 = "0zpfamrb2gka41h834a05hxdbw4h55777kh6rhjikjfmy765nl97"; name = "biblio-core"; }; @@ -2273,7 +2273,7 @@ sha256 = "07vwg0bg719gb8ln1n5a33103903vvrphnkbvvfn43904pkrf14w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bind-key"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/bind-key"; sha256 = "1qw2c27016d3yfg0w10is1v72y2jvzhq07ca4h6v17yi94ahj5xm"; name = "bind-key"; }; @@ -2294,7 +2294,7 @@ sha256 = "047qzylycx3r06dd0q9q9f37pvfigmlv59gi3wqvlg6k3gcmdvy0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bind-map"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/bind-map"; sha256 = "1jzkp010b4vs1bdhccf5igmymfxab4vxs1pccpk9n5n5a4xaa358"; name = "bind-map"; }; @@ -2315,7 +2315,7 @@ sha256 = "0pmpg54faq0l886f2cmnmwm28d2yfg8adk7gp7623gx0ifggn332"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bing-dict"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/bing-dict"; sha256 = "0s5pd08rcnvmgi1hw17xbzvswlv0yni6h2h2gccrjmf6izi8whh1"; name = "bing-dict"; }; @@ -2336,7 +2336,7 @@ sha256 = "1r3f5d67x257g8kvdbdsl4w3y1dvc1d6s9x8bygbkvyahfi5m5hn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/birds-of-paradise-plus-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/birds-of-paradise-plus-theme"; sha256 = "0vdv2siy30kf1qhzrc39sygjk17lwm3ix58pcs3shwkg1y5amj3m"; name = "birds-of-paradise-plus-theme"; }; @@ -2357,7 +2357,7 @@ sha256 = "1j2ar9sinbrraqvymqmjray48xbr1arhpigzgkgnhkc2zzqv8dwb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bog"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/bog"; sha256 = "1ci8xxca7dclmi5v37y5k45qlmzs6a9hi6m7czgiwxii902w5pkl"; name = "bog"; }; @@ -2378,7 +2378,7 @@ sha256 = "1q3ws2vn062dh7ci6jn2k2bcn7szh3ap64sgwkzdd6f1pas37fnr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bongo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/bongo"; sha256 = "07i9gw067r2igp6s2g2iakm1ybvw04q6zznna2cfdf08nax64ghv"; name = "bongo"; }; @@ -2399,7 +2399,7 @@ sha256 = "1apxgj14hgfpz6hjp3384yjf2zrkv4pcncf2zklijs668igvaskq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/boon"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/boon"; sha256 = "0gryw7x97jd46jgrm93cjagj4p7w93cjc36i2ps9ajf0d8m4gajb"; name = "boon"; }; @@ -2420,7 +2420,7 @@ sha256 = "0235l4f1cxj7nysfnay4fz52mg0c13pzqxbhw65vdpfzz1gl1p73"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/boxquote"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/boxquote"; sha256 = "0s6cxb8y1y8w9vxxhj1izs8d0gzk4z2zm0cm9gkw1h7k2kyggx6s"; name = "boxquote"; }; @@ -2441,7 +2441,7 @@ sha256 = "0y9m6cv70pzcm0v2v8nwmyh1xx40831chx72m85h5ic5db03gy7b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/browse-kill-ring"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/browse-kill-ring"; sha256 = "1d97ap0vrg5ymp96z7y6si98fspxzy02jh1i4clvw5lggjfibhq4"; name = "browse-kill-ring"; }; @@ -2462,7 +2462,7 @@ sha256 = "08qz9l0gb7fvknzkp67srhldzkk8cylnbn0qwkflxgcs6ndfk95y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/browse-url-dwim"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/browse-url-dwim"; sha256 = "13bv2ka5pp9k4kwrxfqfawwxzsqlakvpi9a32gxgx7qfi0dcb1rf"; name = "browse-url-dwim"; }; @@ -2483,7 +2483,7 @@ sha256 = "0s43cvkr1za5sd2cvl55ig34wbp8xyjf85snmf67ps04swyyk92q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/buffer-flip"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/buffer-flip"; sha256 = "0ka9ynj528yp1p31hbhm89627v6dpwspybly806n92vxavxrn098"; name = "buffer-flip"; }; @@ -2504,7 +2504,7 @@ sha256 = "0xdks4jfqyhkh34y48iq3gz8swp0f526kwnaai5mhgvazvs4za8c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/buffer-move"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/buffer-move"; sha256 = "0wysywff2bggrha7lpl83c8x6ln7zgdj9gsqmjva6gramqb260fg"; name = "buffer-move"; }; @@ -2525,7 +2525,7 @@ sha256 = "0rp9hiysy13c4in7b420r7yjza2knlmvphj7l01xbxphbilplqk5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/buffer-utils"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/buffer-utils"; sha256 = "0cfipdn4fc4fvz513mwiaihvbdi05mza3z5z1379wlljw6r539z2"; name = "buffer-utils"; }; @@ -2546,7 +2546,7 @@ sha256 = "0x9q4amsmawi8jqj9xxg81khvb3gyyf9hjvb0w6vhrgjwpxiq8sy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bufshow"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/bufshow"; sha256 = "027cd0jzb8yxm66q1bhyi75f2m9f2pq3aswgav1d18na3ybwg65h"; name = "bufshow"; }; @@ -2567,7 +2567,7 @@ sha256 = "07jzg58a3jxs4mmsgb35f5f8awazlvzak9wrhif6xb60jq1wrp0v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bug-reference-github"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/bug-reference-github"; sha256 = "18yzxwanbrxsab6ba75z1196x0m6dapdhbvy6df5b5x5viz99cf6"; name = "bug-reference-github"; }; @@ -2588,7 +2588,7 @@ sha256 = "18d74nwcpk1i8adxzfwz1lgqqcxsc4wkrb490v64pph79dxsi80h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bundler"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/bundler"; sha256 = "0i5ybc6i8ackxpaa75kwrg44zdq3jkvy48c42vaaafpddjwjnsy4"; name = "bundler"; }; @@ -2609,7 +2609,7 @@ sha256 = "03hab3iw2jjckal20zwsw7cm38nf7pan0m96d8ab4i75phy6liyw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/bury-successful-compilation"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/bury-successful-compilation"; sha256 = "1gkq4r1573m6m57fp7x69k7kcpqchpcqfcz3792v0wxr22zhkwr3"; name = "bury-successful-compilation"; }; @@ -2630,7 +2630,7 @@ sha256 = "1pii9dw4skq7nr4na6qxqasl36av8cwjp71bf1fgppqpcd9z8skj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/butler"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/butler"; sha256 = "1jv74l9jy55qpwf5np9nlj6a1wqsm3xirm7wm89d1h2mbsfcr0mq"; name = "butler"; }; @@ -2651,7 +2651,7 @@ sha256 = "0wkivh8x75gfsks6hy1ps9mlk101hrwsk8hqxx7qhs7f5iv0a082"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/buttercup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/buttercup"; sha256 = "1grrrdk5pl9l1jvnwzl8g0102gipvxb5qn6k2nmv28jpl57v8dkb"; name = "buttercup"; }; @@ -2672,7 +2672,7 @@ sha256 = "1kqcc1d56jz107bswlzvdng6ny6qwp93yck2i2j921msn62qvbb2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/button-lock"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/button-lock"; sha256 = "1arrdmb3nm570hgs18y9sz3z9v0wlkr3vwa2zgfnc15lmf0y34mp"; name = "button-lock"; }; @@ -2693,7 +2693,7 @@ sha256 = "1k2hmc87ifww95k3m8ksiswkk2z0y8grssba7381g8dnlp6jgprx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cacoo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cacoo"; sha256 = "0kri4vi6dpsf0zk24psm16f3aa27cq5b54ga7zygmr02csq24a6z"; name = "cacoo"; }; @@ -2714,7 +2714,7 @@ sha256 = "0bvrwzjx93qyx97qqw0imvnkkx4w91yk99rnhcmk029zj1fy0kzg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cake"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cake"; sha256 = "06qlqrazz2jr08g44q73hx9vpp6xnjvkpd6ky108g0xc5p9q2hcr"; name = "cake"; }; @@ -2735,7 +2735,7 @@ sha256 = "1w7yq35gzzwyf480d8gc5r6jbnawg09l6663q068ir6zr9pp4far"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cake-inflector"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cake-inflector"; sha256 = "04mrqcm1igb638skaq2b3nr5yzxnck2vwhln61rnh7lkfxq7wbwf"; name = "cake-inflector"; }; @@ -2756,7 +2756,7 @@ sha256 = "15w21r0gqblbn9wlvb4wlm3706wf01r38mp465snjzi839f6sazb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cake2"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cake2"; sha256 = "03q8vqqjlhahgnyy976c46x52splwdjpmb9ngrj5c2z7d8n9145x"; name = "cake2"; }; @@ -2777,7 +2777,7 @@ sha256 = "1rv6slk3a7ca2q16isjlkmgxbxmbqx4lx2ip7z33fvnq10r5h60n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/calfw"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/calfw"; sha256 = "1lyb0jzpx19mx50d8xjv9sx201518vkvskxbglykaqpjm9ik2ai8"; name = "calfw"; }; @@ -2798,7 +2798,7 @@ sha256 = "0v927m3l5cf0j0rs0nfk5whwqmmxs941d8qalxi19j1ihspjz8d6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/camcorder"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/camcorder"; sha256 = "1kbnpz3kn8ycpy8nlp8bsnnd1k1h7m02h7w5f7raw97sk4cnpvbi"; name = "camcorder"; }; @@ -2819,7 +2819,7 @@ sha256 = "0xgnq21fb37y05535ipy0z584pnaglxy5bfqzdppyzsy7lpbb4k3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cargo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cargo"; sha256 = "06zq657cxfk5l4867qqsvhskcqc9wswyl030wj27a43idj8n41jx"; name = "cargo"; }; @@ -2840,7 +2840,7 @@ sha256 = "0mg49rpz362ipn5qzqhyfs3d6fpb51rfa73kna3gxdw0wxq2sa7g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/caseformat"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/caseformat"; sha256 = "1qwyr74jbx4jpfcw8sccg47q1vdg094rr06m111gsz2yaj9m0gfk"; name = "caseformat"; }; @@ -2861,7 +2861,7 @@ sha256 = "1hvm6r6a8rgjwnn2mcamwqrmhz424vlr4mbvbri3wmn0ikbk510l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cask"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cask"; sha256 = "11nr6my3vlb1xiyai7qwii3nszda2mnkhkjlbh3d0699h0yw7dk5"; name = "cask"; }; @@ -2882,7 +2882,7 @@ sha256 = "09y4cr32i2cw06lnq698lajxmqyzq2ah426f4dm176xfbrim89d5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cask-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cask-mode"; sha256 = "0fs9zyihipr3klnh3w22h43qz0wnxplm62x4kx7pm1chq9bc9kz6"; name = "cask-mode"; }; @@ -2903,7 +2903,7 @@ sha256 = "0padb1zfjkmx9kbqnqh744qvpd3ln0khwxifxld9cpcpdp5k04vc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cask-package-toolset"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cask-package-toolset"; sha256 = "13ix093c0a58rjqj7zfp3914xj3hvj276gb2d8zhvrx9vvs1345g"; name = "cask-package-toolset"; }; @@ -2924,7 +2924,7 @@ sha256 = "1j1lw5zifp7q1ykm6si0nzxfp7n3z2lzla2njkkxmc2s6m7w4x1a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/caskxy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/caskxy"; sha256 = "0x4s3c8m75zxsvqpgfc5xwll0489zzdnngmnq048z9gkgcd7pd2s"; name = "caskxy"; }; @@ -2945,7 +2945,7 @@ sha256 = "125d5i7ycdn2hgffc1l3jqcfzvk70m1ciywj4h53qakkl15r9m38"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cbm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cbm"; sha256 = "02ch0gdw610c8dfxxjxs7ijsc9lzbhklj7hqgwfwksnyc36zcjmn"; name = "cbm"; }; @@ -2966,7 +2966,7 @@ sha256 = "1jj9vmhc4s3ych08bjm1c2xwi81z1p20rj7bvxrgvb5aga2ghi9d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cdlatex"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cdlatex"; sha256 = "1jsfmzl13fykbg7l4wv9si7z11ai5lzvkndzbxh9cyqlvznq0m64"; name = "cdlatex"; }; @@ -2987,7 +2987,7 @@ sha256 = "07h5g905i1jglsryl0dnqxz8yya5kkyjjggzbk4nl3rcj41lyas7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/celery"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/celery"; sha256 = "0m3hmvp6xz2m7z1kbb0ii0j3c95zi19652gfixq5a5x23kz8y59h"; name = "celery"; }; @@ -3008,7 +3008,7 @@ sha256 = "08hqgsjvs62l1cfzshbpj80xd8365qmx2b5r5jq20d5cj68s36wl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cerbere"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cerbere"; sha256 = "1g3svmh5dlh5mvyag3hmiy90dfkk6f7ppd9qpwckxqyll9vl7r06"; name = "cerbere"; }; @@ -3029,7 +3029,7 @@ sha256 = "1i10gbczyp067x1lw9vnn25bzgs1ckkrj9imnyz2a344g2124a3f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cfengine-code-style"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cfengine-code-style"; sha256 = "1ny8xvdnz740qmw9m81xnwd0gh0a516arpvl3nfimglaai5bfc9a"; name = "cfengine-code-style"; }; @@ -3039,6 +3039,27 @@ license = lib.licenses.free; }; }) {}; + chapel-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "chapel-mode"; + version = "1.0.0"; + src = fetchFromGitHub { + owner = "russel"; + repo = "Emacs-Chapel-Mode"; + rev = "936a76a26bdc4f9570c4d54369f74bcd1cb0a698"; + sha256 = "0n93qz5hzsnrs6c3y5yighfpdpkkmabxyi5i755hfcs5007v199v"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/chapel-mode"; + sha256 = "0hmnsv8xf85fc4jqkaqz5j3sf56hgib4jp530vvyc2dl2sps6vzz"; + name = "chapel-mode"; + }; + packageRequires = []; + meta = { + homepage = "https://melpa.org/#/chapel-mode"; + license = lib.licenses.free; + }; + }) {}; char-menu = callPackage ({ avy-menu, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "char-menu"; @@ -3050,7 +3071,7 @@ sha256 = "0vb03k10i8vwy5wv65xl15kcsh9zz4y2xhpgndih87ssckdnhhlw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/char-menu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/char-menu"; sha256 = "11jkwghrmmvpv7piznkpa0wilwjdsps9rix3950pfabhlllw268l"; name = "char-menu"; }; @@ -3071,7 +3092,7 @@ sha256 = "0crnd64cnsnaj5mcy55q0sc1rnamxa1xbpwpmirhyhxz780klww6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/charmap"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/charmap"; sha256 = "1j7762d2i17ysn9ys8j7wfv989avmax8iylml2hc26mwbpyfpm84"; name = "charmap"; }; @@ -3092,7 +3113,7 @@ sha256 = "09ypxhfad3v1pz0xhw4xgxvfj7ad2kb3ff9zy1mnw7fzsa7gw6nj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/checkbox"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/checkbox"; sha256 = "17gw6w1m6bs3sfx8nqa8nzdq26m8w85a0fca5qw3bmd18bcmknqa"; name = "checkbox"; }; @@ -3113,7 +3134,7 @@ sha256 = "1jsy43avingxxccs0zw2qm5ysx8g76xhhh1mnyypxskl9m60qb4j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/chinese-word-at-point"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/chinese-word-at-point"; sha256 = "0pjs4ckncv84qrdj0pyibrbiy86f1gmjla9n2cgh10xbc7j9y0c4"; name = "chinese-word-at-point"; }; @@ -3134,7 +3155,7 @@ sha256 = "0pbgfm9hkryanb4fly74w417h6bw9mnad5k5raj9ypiwgcz2r0n8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cider"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cider"; sha256 = "1a6hb728a3ir18c2dn9zfd3jn79fi5xjn5gqr7ljy6qb063xd4qx"; name = "cider"; }; @@ -3155,7 +3176,7 @@ sha256 = "1rkd76561h93si4lpisz3qnaj48dx8x01nd59a3lgpqsbbibnccf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cider-eval-sexp-fu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cider-eval-sexp-fu"; sha256 = "1n4sgv042qd9560pllabysx0c5snly6i22bk126y8f8rn0zj58iq"; name = "cider-eval-sexp-fu"; }; @@ -3176,7 +3197,7 @@ sha256 = "1w0ya0446rqsg1j59fd1mp4wavv2f3h1k3mw9svm5glymdirw4d1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cil-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cil-mode"; sha256 = "1h18r086bqspyn5n252yzw8x2zgyaqzdd8pbcf5gqlh1w8kapq4y"; name = "cil-mode"; }; @@ -3197,7 +3218,7 @@ sha256 = "0lg7f71kdq3zzc85xp9p81vdarz6d6l5zy9175c67ps9smdx528i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/circe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/circe"; sha256 = "1f54d8490gfx0r0cdvgmcjdxqpni43msy0k2mgqd1qz88a4b5l07"; name = "circe"; }; @@ -3218,7 +3239,7 @@ sha256 = "108s96viral3s62a77jfgvjam08hdk97frfmxjg3xpp2ifccjs7h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cl-format"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cl-format"; sha256 = "1259ykj6z6m6gaqhkmj5f3q9vyk7idpvlvlma5likpknxj5f444v"; name = "cl-format"; }; @@ -3239,7 +3260,7 @@ sha256 = "12vgi5dicx3lxzngjcg9g3nflrhfy9wdw6ldm72zarp1h96jy5cw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cl-lib-highlight"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cl-lib-highlight"; sha256 = "13qdrvpxq928p27b1xdcbsscyhqk042rwfa17037gp9h02fd42j8"; name = "cl-lib-highlight"; }; @@ -3260,7 +3281,7 @@ sha256 = "0w34ixzk8vs2nv5xr7l1b3k0crl1lqvbq6gs5r4b8rhsx9b6c1mb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/click-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/click-mode"; sha256 = "1p5dz4a74w5zxdlw17h5z9dglapia4p29880liw3bif2c7dzkg0r"; name = "click-mode"; }; @@ -3273,15 +3294,15 @@ cliphist = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, popup }: melpaBuild { pname = "cliphist"; - version = "0.2.0"; + version = "0.3.1"; src = fetchFromGitHub { owner = "redguardtoo"; repo = "cliphist"; - rev = "413af96bbd0dfc8b264f5b8e3920c319af065c50"; - sha256 = "07q8naxhag2q0m5cb9c2n5js6j5qdrjyyiqbcpxmq598b8mw8kzd"; + rev = "7a1a8a6dcc046c7ede4480315c539c06e1bbadc9"; + sha256 = "0h856l6rslawf3vg37xhsaw5w56r9qlwzbqapg751qg0v7wf0860"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cliphist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cliphist"; sha256 = "0mg6pznijba3kvp3r57pi54v6mgih2vfwj2kg6qmcy1abrc0xq29"; name = "cliphist"; }; @@ -3302,7 +3323,7 @@ sha256 = "0i6sj5rs4b9v8aqq9l6wr15080qb101hdxspx6innhijhajgmssd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/clips-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/clips-mode"; sha256 = "083wrhjn04rg8vr6j0ziffdbdhbfn63wzl4q7yzpkf8qckh6mxhf"; name = "clips-mode"; }; @@ -3323,7 +3344,7 @@ sha256 = "0qjj40h8ryrs02rj73hkyhcjxdz926qxgvnjidav3sw2ggn8vdl3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/clj-refactor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/clj-refactor"; sha256 = "1qvds6dylazvrzz1ji2z2ldw72pa2nxqacb9d04gasmkqc32ipvz"; name = "clj-refactor"; }; @@ -3355,7 +3376,7 @@ sha256 = "18gv8vmmpiyq16cq4nr9nk2bmc5y2rsv21wjl4ji29rc7566shha"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cljr-helm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cljr-helm"; sha256 = "108a1xgnc6qy088vs41j3npwk25a5vny0xx4r3yh76jsmpdpcgnc"; name = "cljr-helm"; }; @@ -3376,7 +3397,7 @@ sha256 = "0hz6a7gj0zfsdaifkhwf965c96rkjc3kivvqlf50zllsw0ysbnn0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/clocker"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/clocker"; sha256 = "0cckrk40k1labiqjh7ghzpx5zi136xz70j3ipp117x52qf24k10k"; name = "clocker"; }; @@ -3397,7 +3418,7 @@ sha256 = "1x1kfycf3023z0r3v7xqci59k8jv5wn2vqc9y0nx7k5qgifmswrx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/clojure-cheatsheet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/clojure-cheatsheet"; sha256 = "05sw3bkdcadslpsk64ds0ciavmdgqk7fr5q3z505vvafmszfnaqv"; name = "clojure-cheatsheet"; }; @@ -3418,7 +3439,7 @@ sha256 = "1x7nl5wzcah9hnlj5jfd3y5604w60zcqcw1nn6vw335c2vzzissj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/clojure-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/clojure-mode"; sha256 = "11n0rjhs1mmlzdqy711g432an5ybdka5xj0ipsk8dx6xcyab70np"; name = "clojure-mode"; }; @@ -3439,7 +3460,7 @@ sha256 = "1x7nl5wzcah9hnlj5jfd3y5604w60zcqcw1nn6vw335c2vzzissj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/clojure-mode-extra-font-locking"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/clojure-mode-extra-font-locking"; sha256 = "00nff9mkj61i76dj21x87vhz0bbkzgvkx1ypkxcv6yf3pfhq7r8n"; name = "clojure-mode-extra-font-locking"; }; @@ -3460,7 +3481,7 @@ sha256 = "0sw34yjp8934xd2n76lbwyvxkbyz5pxszj6gkflas8lfjvms9z7d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/clojure-quick-repls"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/clojure-quick-repls"; sha256 = "10glzyd4y3918pwp048pc1y7y7fa34fkqckn1nbys841dbssmay0"; name = "clojure-quick-repls"; }; @@ -3481,7 +3502,7 @@ sha256 = "1p0w83m9j4a6va4g68a4gcfbdkp8nic0q8cm28l8nr7czd5s0yl6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/clojure-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/clojure-snippets"; sha256 = "15622mdd6b3fpwp22d32p78yap08pyscs2vc83sv1xz4338i0lij"; name = "clojure-snippets"; }; @@ -3502,7 +3523,7 @@ sha256 = "1p251vyh8fc6xzaf0v7yvf4wkrvcfjdb3qr88ll4xcb61gj3vi3a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/closql"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/closql"; sha256 = "0a8fqw8n03x9mygvzb95m8mmfqp3j8hynwafvryjsl0np0695b6l"; name = "closql"; }; @@ -3523,7 +3544,7 @@ sha256 = "1rwln3ms71fys3rdv3sx8w706aqn874im3kqcfrkxz86wiazm2d5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cm-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cm-mode"; sha256 = "1rgfpxbnp8wiq9j8aywm2n07rxzkhqljigwynrkyvrnsgxlq2a9x"; name = "cm-mode"; }; @@ -3544,7 +3565,7 @@ sha256 = "14z5izpgby7lak6hzjwsph31awg5126hcjzld21ihknhlg09sw7q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cmake-ide"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cmake-ide"; sha256 = "0xvy7l80zw67jgvk1rkhwzjvsqjqckmd8zj6s67rgbm56z6ypmcg"; name = "cmake-ide"; }; @@ -3565,7 +3586,7 @@ sha256 = "10adf81lig0mbm6hdi031p2d7x3yj4fq8vb4pavy6v2xgpj1j5jx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cmake-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cmake-mode"; sha256 = "0zbn8syb5lw5xp1qcy3qcl75zfiyik30xvqyl38gdqddm9h7qmz7"; name = "cmake-mode"; }; @@ -3586,7 +3607,7 @@ sha256 = "10xlny2agxjknvnjdnw41cyb3d361yy0wvpc8l1d0xwnmmfh3bxk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cmake-project"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cmake-project"; sha256 = "13n6j9ljvzjzkknbm9zkhxljcn12avl39gxqq95hah44dr11rns3"; name = "cmake-project"; }; @@ -3607,7 +3628,7 @@ sha256 = "14jcxrs3b02pbppvdsabr7c74i3c6d1lmd6l1p9dj8gv413pghsz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/codic"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/codic"; sha256 = "0fq2qfqhkd6injgl66vcpd61j67shl9xj260aj6cgb2nriq0jxgn"; name = "codic"; }; @@ -3628,7 +3649,7 @@ sha256 = "0yhmg5j051mviqp5laz7y1zjs1w9ykbbxqm7vrgf2py0hpd1kcrg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/coffee-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/coffee-mode"; sha256 = "1px50hs0x30psa5ljndpcc22c0qwcaxslpjf28cfgxinawnp74g1"; name = "coffee-mode"; }; @@ -3649,7 +3670,7 @@ sha256 = "0apvqrva3f7valjrxpslln8460kpr82z4zazj3lg3j82k102zla9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/color-theme-modern"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/color-theme-modern"; sha256 = "0f662ham430fgxpqw96zcl1whcm28cv710g6wvg4fma60sblaxcm"; name = "color-theme-modern"; }; @@ -3670,7 +3691,7 @@ sha256 = "13jmg05skv409z8pg5m9rzkajj9knyln0ff8a3i1pbpyrnpngmmc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/color-theme-sanityinc-solarized"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/color-theme-sanityinc-solarized"; sha256 = "0xg79hgb893f1nqx6q4q6hp4w6rvgp1aah1v2r3scg2jk057qxkf"; name = "color-theme-sanityinc-solarized"; }; @@ -3691,7 +3712,7 @@ sha256 = "0w99ypq048xldl1mrgc7qr4n2770dm48aknhp7q0176l43nvxnqf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/color-theme-sanityinc-tomorrow"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/color-theme-sanityinc-tomorrow"; sha256 = "1k8iwjc7iidq5sxybs47rnswa6c5dwqfdzfw7w0by2h1id2z6nqd"; name = "color-theme-sanityinc-tomorrow"; }; @@ -3712,7 +3733,7 @@ sha256 = "18hzm7yzwlfjlbkx46rgdl31p9xyfqnxlvg8337h2bicpks7kjia"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/colorsarenice-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/colorsarenice-theme"; sha256 = "09zlglldjbjr97clwyzyz7c0k8hswclnk2zbkm03nnn9n9yyg2qi"; name = "colorsarenice-theme"; }; @@ -3733,7 +3754,7 @@ sha256 = "1j6hhyzww7wfwk6bllbb5mk4hw4qs8hsgfbfdifsam9c6i4spm45"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/commander"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/commander"; sha256 = "17y0hg6a90hflgwn24ww23qmvc1alzivpipca8zvpf0nih4fl393"; name = "commander"; }; @@ -3754,7 +3775,7 @@ sha256 = "0kzlv2my0cc7d3nki2rlm32nmb2nyjb38inmvlf13z0m2kybg2ps"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/comment-dwim-2"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/comment-dwim-2"; sha256 = "1w9w2a72ygsj5w47vjqcljajmmbz0mi8dhz5gjnpwxjwsr6fn6lj"; name = "comment-dwim-2"; }; @@ -3775,7 +3796,7 @@ sha256 = "1jwd3whag39qhzhbsfivzdlcr6vj37dv5ychkhmilw8v6dfdnpdb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/commenter"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/commenter"; sha256 = "01bm8jbj6xw23nls4fps6zwjkgvcsjhmn3l3ncqd764kwhxdx8q3"; name = "commenter"; }; @@ -3796,7 +3817,7 @@ sha256 = "1cc9ak9193m92g6l4mrfxbkkmvljl3c51d0xzdidwww978q3x6ad"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/common-lisp-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/common-lisp-snippets"; sha256 = "0ig8cz00cbfx0jckqk1xhsvm18ivl2mjvcn65s941nblsywfvxjl"; name = "common-lisp-snippets"; }; @@ -3817,7 +3838,7 @@ sha256 = "08rrjfp2amgya1hswjz3vd5ja6lg2nfmm7454p0h1naz00hlmmw0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/company"; sha256 = "0v4x038ly970lkzb0n8fbqssfqwx1p46xldr7nss32jiqvavr4m4"; name = "company"; }; @@ -3838,7 +3859,7 @@ sha256 = "1i6788qfinh47c5crgr57ykgbp6bvk1afcl00c8gywxsf8srvnvy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-anaconda"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/company-anaconda"; sha256 = "1s7y47ghy7q35qpfqavh4p9wr91i6r579mdbpvv6h5by856yn4gl"; name = "company-anaconda"; }; @@ -3859,7 +3880,7 @@ sha256 = "1dds3fynbd6yb0874aw6g4qk5zmq3pgl3jmcp38md027qalgqmym"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-ansible"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/company-ansible"; sha256 = "084l9dr2hvm00952y4m3jhchzxjhcd61sfn5ywj9b9a1d4sr110d"; name = "company-ansible"; }; @@ -3880,7 +3901,7 @@ sha256 = "1pja44g15d11kl47abzykrp28j782nkbmb0db0ilpc96xf1fjlsw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-cabal"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/company-cabal"; sha256 = "0pbjidj88c9qri6xw8023yqwnczad5ig224cbsz6vsmdla2nlxra"; name = "company-cabal"; }; @@ -3901,7 +3922,7 @@ sha256 = "0s6gzdmxlsl1l0vh52xspxys1wmsq063p6nva6qisg1r622gjzjl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-coq"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/company-coq"; sha256 = "1iagm07ckf60kg4i8m4n0gfmv0brqc4dcn7lkcz229r3f4kyqksa"; name = "company-coq"; }; @@ -3922,7 +3943,7 @@ sha256 = "1f8sjjms9kxni153pia6b45p2ih2mhm2r07d0j3fmxmz3q2jdldd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-emoji"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/company-emoji"; sha256 = "1mflqqw9gnfcqjb6g8ivdfl7s4mdyjg7j0457hamgyvgvpxsh8x3"; name = "company-emoji"; }; @@ -3943,7 +3964,7 @@ sha256 = "0y9i0q37xjbnlnlxq7xjvnpn6ykzbd55g6nbw10z1wg0m2v7f96r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-ghc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/company-ghc"; sha256 = "07adykza4dqs64bk8vjmgryr54khxmcy28hms5z8i1qpsk9vmvnn"; name = "company-ghc"; }; @@ -3964,7 +3985,7 @@ sha256 = "03snnra31b5j6iy94gql240vhkynbjql9b4b5j8bsqp9inmbsia3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-go"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/company-go"; sha256 = "1ncy5wlg3ywr17zrxb1d1bap4gdvwr35w9a8b0crz5h3l3y4cp29"; name = "company-go"; }; @@ -3985,7 +4006,7 @@ sha256 = "17zi0xx8p2diwy1wgrhl6j8p57alwz24rjpz4apyyrqjk09ippq4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-irony"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/company-irony"; sha256 = "15adamk1b9y1i6k06i5ahf1wn70cgwlhgk0x6fk8pl5izg05z1km"; name = "company-irony"; }; @@ -4006,7 +4027,7 @@ sha256 = "1ihqapp4dv92794rsgyq0rmhwika60cmradqd4bn9b72ss6plxs1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-jedi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/company-jedi"; sha256 = "1krrgrjq967c3j02y0i345yx6w4crisnj1k3bhih6j849fvy3fvj"; name = "company-jedi"; }; @@ -4027,7 +4048,7 @@ sha256 = "0k6bx4i3d2x6kmkzififc8r7vid74bxsvgxp19z7bv1fh6m1f3aa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-math"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/company-math"; sha256 = "0chig8k8l65bnd0a6734fiy0ikl20k9v2wlndh3ckz5a8h963g87"; name = "company-math"; }; @@ -4048,7 +4069,7 @@ sha256 = "0yxnylpbjrwmqx6px0q3pff4dh00fmfzb09gp4xvn9w9hrxdsx7g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-ngram"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/company-ngram"; sha256 = "1y9k9s8c248m91xld4f5l75j4swml333rpwq590bsx7mrsq131xx"; name = "company-ngram"; }; @@ -4069,7 +4090,7 @@ sha256 = "1lm7rkgf7q5g4ji6v1masfbhxdpwni8d77dapsy5k9p73cr2aqld"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-nixos-options"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/company-nixos-options"; sha256 = "1yrqqdadmf7qfxpqp8wwb325zjnwwjmn2hhnl7i3j0ckg6hqyqf0"; name = "company-nixos-options"; }; @@ -4090,7 +4111,7 @@ sha256 = "1b2v84ss5k43nnbsnvabgvb19ardsacbs1prn2h9i1k2d5mb8icw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-quickhelp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/company-quickhelp"; sha256 = "042bwv0wd4hksbm528zb7pbllzk83p8qjq5f8z46p84c8mmxfp9g"; name = "company-quickhelp"; }; @@ -4111,7 +4132,7 @@ sha256 = "0i1fh5lvqwlgn3g3fzh0xacxyljx6gkryipn133vfkv4jbns51n4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-restclient"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/company-restclient"; sha256 = "1md0n4k4wmbh9rmbwqh3kg2fj0c34rzqfd56jsq8lcdg14k0kdcb"; name = "company-restclient"; }; @@ -4130,15 +4151,15 @@ company-sourcekit = callPackage ({ company, dash, dash-functional, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, sourcekit }: melpaBuild { pname = "company-sourcekit"; - version = "0.1.5"; + version = "0.1.6"; src = fetchFromGitHub { owner = "nathankot"; repo = "company-sourcekit"; - rev = "c9694cd8e84f4c7deffa6111297cb80eb7cb02a6"; - sha256 = "04nm015408gzybfka0sc3czkf5y61x76h3sx3vlijf67i54bz7pi"; + rev = "16af24f22fbee170e444547e92e0023cf4311a7b"; + sha256 = "1adcgccibk6lvl4l64cvk3i4h2n23xx51gkv5ypf6rh5f6v8b6ai"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-sourcekit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/company-sourcekit"; sha256 = "0hr5j1ginf43h4qf3fvsh3z53z0c7w5a9lhrvdwmlzj396qhqmzs"; name = "company-sourcekit"; }; @@ -4159,7 +4180,7 @@ sha256 = "11cinjsyf24d4a682ikniprxd1vkwn6mynsp5dzab6yzq09np78i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-tern"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/company-tern"; sha256 = "17pw4jx3f1hymj6sc0ri18jz9ngggj4a41kxx14fnmmm8adqn6wh"; name = "company-tern"; }; @@ -4180,7 +4201,7 @@ sha256 = "0b0k75rg43h48dbcqiid947nspqiqxkiqcmvph9aqpxlfr67bz5r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-web"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/company-web"; sha256 = "0dj0m6wcc8cyvblp9b5b3am95gc18j9y4va44hvljxv1h7l5hhvy"; name = "company-web"; }; @@ -4201,7 +4222,7 @@ sha256 = "094alkjrh285qy3sds8dkvxsbnaxnppz1ab0i5r575lyhli9lxia"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/company-ycmd"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/company-ycmd"; sha256 = "0fqmkb0q8ai605jzn2kwd585b2alwxbmnb3yqnn9fgkcvyc9f0pk"; name = "company-ycmd"; }; @@ -4222,7 +4243,7 @@ sha256 = "1mii790r6gaz0nidlaib50wj4vryfvw7ls6b4mg1nw5km7hplpgq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/composable"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/composable"; sha256 = "1fs4pczjn9sv12sladf6zbkz0cmzxr0jaqkiwryydal1l5nqqxcy"; name = "composable"; }; @@ -4243,7 +4264,7 @@ sha256 = "1br4yys803x3ng4vzhhvblhkqabs46lx8a3ajycqy555q20zqzrf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/concurrent"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/concurrent"; sha256 = "09wjw69bqrr3424h0mpb2kr5ixh96syjjsqrcyd7z2lsas5ldpnf"; name = "concurrent"; }; @@ -4264,7 +4285,7 @@ sha256 = "0sz3qx1bn0lwjhka2l6wfl4b5486ji9dklgjs7fdlkg3dgpp1ahx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/conkeror-minor-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/conkeror-minor-mode"; sha256 = "1ch108f20k7xbf79azsp31hh4wmw7iycsxddcszgxkbm7pj11933"; name = "conkeror-minor-mode"; }; @@ -4285,7 +4306,7 @@ sha256 = "05xfgn9sabi1ykk8zbk2vza1g8pdrg08j5cb58f50nda3q8ndf4s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/connection"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/connection"; sha256 = "1y68d2kay8p5vapailxhrc5dl7b8k8nkvp7pa54md3fsivwp1d0q"; name = "connection"; }; @@ -4306,7 +4327,7 @@ sha256 = "0s4b7dkndhnh8q3plvg2whjx8zd7ffz4hnbn3xh86xd3k7sch7av"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/contextual"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/contextual"; sha256 = "0vribs0fa1xf5kwkmvzjwhiawni0p3v56c5l4dkz8d7wn2g6wfdx"; name = "contextual"; }; @@ -4319,15 +4340,15 @@ corral = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "corral"; - version = "0.2"; + version = "0.3"; src = fetchFromGitHub { owner = "nivekuil"; repo = "corral"; - rev = "bcd1d90b2280f93ed139e4aa82838a8e62a4bac9"; - sha256 = "0gpckp12b0hllgn821q3rqfxh5h7ny5gfhhvfdbvszb7kwl1f6cx"; + rev = "e7ab6aa118e46b93d4933d1364bc273f57cd6911"; + sha256 = "00055gzv032xxzqm1hffipljy8fzgsm58cbv8dzajh035jvdgpv7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/corral"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/corral"; sha256 = "1drccqk4qzkgvkgkzlrrfd1dcgj8ziqriijrjihrzjgjsbpzv6da"; name = "corral"; }; @@ -4348,7 +4369,7 @@ sha256 = "19vfj01x7b8f7wyx7m51z00la2r7jcwzv0n06srkvcls0wm5s1h3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/counsel"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/counsel"; sha256 = "0y8cb2q4mqvzan5n8ws5pjpm7bkjcghg5q19mzc3gqrq9vrvyzi6"; name = "counsel"; }; @@ -4369,7 +4390,7 @@ sha256 = "01545iy2gaxyd4i8gawgxqi9gbkrjk20djhvc59finnjrblzccn3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/coverage"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/coverage"; sha256 = "0ja7wsx2sj0h01sk1l3c0aidbs1ld4gj3kiwq6brs7r018sz45pm"; name = "coverage"; }; @@ -4390,7 +4411,7 @@ sha256 = "0ky59gz5pvi4m5b9rh13ywfmclrmiwalynpqw652rmc6yfzv0fnz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cpputils-cmake"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cpputils-cmake"; sha256 = "0fswmmmrjv897n51nidmn8gs8yp00595g35vwjafsq6rzfg58j60"; name = "cpputils-cmake"; }; @@ -4411,7 +4432,7 @@ sha256 = "169ai0xkh3988racnhaapxw0v1pbxvcaq470x1qacdzdpka4a7bs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/creds"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/creds"; sha256 = "0n11xxaf93bbc9ih25wj09zzw4sj32wb99qig4zcy8bpkl5y3llk"; name = "creds"; }; @@ -4432,7 +4453,7 @@ sha256 = "1kl6blr4dlz40gfc845071nhfms4fm59284ja2177bhghy3wmw6r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/crm-custom"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/crm-custom"; sha256 = "14w15skxr44p9ilhpswlgdbqfw8jghxi69l37yk4m449m7g9694c"; name = "crm-custom"; }; @@ -4453,7 +4474,7 @@ sha256 = "13kkpilijr0q455srgn8yhzqikxask11z8d3rji7cc1yw7kf6y0i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/crux"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/crux"; sha256 = "10lim1sngqbdqqwyq6ksqjjqpkm97aj1jk550sgwj28338lnw73c"; name = "crux"; }; @@ -4474,7 +4495,7 @@ sha256 = "00wgbcw09xn9xi52swi4wyi9dj9p9hyin7i431xi6zkhxysw4q7w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cryptol-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cryptol-mode"; sha256 = "08iq69gqmps8cckybhj9065b8a2a49p0rpzgx883qxnypsmjfmf2"; name = "cryptol-mode"; }; @@ -4495,7 +4516,7 @@ sha256 = "0dqih7cy57sciqn5vz5fiwynpld96qldyl7jcgn9qpwnzb401ayx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/csharp-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/csharp-mode"; sha256 = "17j84qrprq492dsn103dji8mvh29mbdlqlpsszbgfdgnpvfr1rv0"; name = "csharp-mode"; }; @@ -4516,7 +4537,7 @@ sha256 = "13zq8kym1y6bzrpxbcdz32323a6azy5px4ridff6xh8bfprwlay3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ctable"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ctable"; sha256 = "040qmlgfvjc1f908n52m5ll2fizbrhjzbd0kgrsw37bvm3029rx1"; name = "ctable"; }; @@ -4535,7 +4556,7 @@ sha256 = "1xgrb4ivgz7gmingfafmclqqflxdvkarmfkqqv1zjk6yrjhlcvwf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ctags"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ctags"; sha256 = "11fp8l99rj4fmi0vd3hkffgpfhk1l82ggglzb74jr3qfzv3dcn6y"; name = "ctags"; }; @@ -4556,7 +4577,7 @@ sha256 = "05vhryqcydvcfm18fwby344931kzzh47x4l5ixy95xkcjkzrj8c7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ctags-update"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ctags-update"; sha256 = "1k43l667mvr2y33nblachdlvdqvn256gysc1iwv5zgv7gj9i65qf"; name = "ctags-update"; }; @@ -4577,7 +4598,7 @@ sha256 = "1jlr2miwqsg06hk2clvsrw9fa98m2n76qfq8qv5svrb8dpil04wb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ctxmenu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ctxmenu"; sha256 = "03g9px858mg19wapqszwav3599slljdyam8bvn1ri85fpa5ydvdp"; name = "ctxmenu"; }; @@ -4598,7 +4619,7 @@ sha256 = "1y685qfdkjyl7dwyvivlgc2lwp102vy6hvcb9zynw84c49f726sn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cuda-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cuda-mode"; sha256 = "0ip4vax93x72bjrh6prik6ddmrvszpsmgm0fxfz772rp24smc300"; name = "cuda-mode"; }; @@ -4619,7 +4640,7 @@ sha256 = "1yhizh8j745hv5ancpvijds9dasvsr2scwjscksp2x3krnd26ssp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cyberpunk-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cyberpunk-theme"; sha256 = "0l2bwb5afkkhrbh99v2gns1vil9s5911hbnlq5w35nmg1wvbmbc9"; name = "cyberpunk-theme"; }; @@ -4640,7 +4661,7 @@ sha256 = "1vkwm1n0amf0y0jdyvqskp00b6aijqhd7wclzkzrq7glrvj2z1xw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cyphejor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cyphejor"; sha256 = "18l5km4xm5j3vv19k3fxs8i3rg4qnhrvx7b62vmyfcqmpiasrh6g"; name = "cyphejor"; }; @@ -4661,7 +4682,7 @@ sha256 = "11ddx5c535a76pnxqdfahchi839v59iwvpiyswigskyfhzxn5ic1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/cython-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/cython-mode"; sha256 = "0asai1f1pncrfxx296fn6ky09hj1qam5j0dpxxkzhy0a34xz0k2i"; name = "cython-mode"; }; @@ -4674,15 +4695,15 @@ d-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "d-mode"; - version = "2.0.6"; + version = "2.0.8"; src = fetchFromGitHub { owner = "Emacs-D-Mode-Maintainers"; repo = "Emacs-D-Mode"; - rev = "9b22a9373fc38cf3bc1ea9a814bcd8191d4c6626"; - sha256 = "0apg6cpwjhp8spqq8yyfp56y3pn991sfc85kfnifyhz6v3y6vwv6"; + rev = "71ab5eb661851dd4bfa8a589b1001991ee6c3f31"; + sha256 = "0kbncsaxj93jd79sd6dkap29fz8z100wi1nk0njd568glm8q4k5g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/d-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/d-mode"; sha256 = "060k9ndjx0n5vlpzfxlv5zxnizx72d7y9vk7gz7gdvpm6w2ha0a2"; name = "d-mode"; }; @@ -4703,7 +4724,7 @@ sha256 = "1gdh4izwhyly6dyrmh7lfpd12gnb8hpnafj8br51ksijsssrf21f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/darcula-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/darcula-theme"; sha256 = "13d21gwzv66ibn0gs56ff3sn76sa2mkjvjmpd2ncxq3mcgxajnjg"; name = "darcula-theme"; }; @@ -4724,7 +4745,7 @@ sha256 = "1p7ih9fmcxnnxkj2mz56xa403m828wyyqvliabf5amklzjlhb3z9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/darktooth-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/darktooth-theme"; sha256 = "1vss0mg1vz4wvsal1r0ya8lid2c18ig11ip5v9nc80b5slbixzvs"; name = "darktooth-theme"; }; @@ -4745,7 +4766,7 @@ sha256 = "1vkn95dyc0pppnflyqlrlx32g9zc7wdcgc9fgf1hgvqp313ydfcs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dart-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dart-mode"; sha256 = "0wxfh8v716dhrmx1klhpnsrlsj66llk8brmwryjg2h7c391sb5ff"; name = "dart-mode"; }; @@ -4766,7 +4787,7 @@ sha256 = "1njv5adcm96kdch0jb941l8pm51yfdx7mlz83y0pq6jlzjs9mwaa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dash"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dash"; sha256 = "0azm47900bk2frpjsgy108fr3p1jk4h9kmp4b5j5pibgsm26azgz"; name = "dash"; }; @@ -4787,7 +4808,7 @@ sha256 = "1njv5adcm96kdch0jb941l8pm51yfdx7mlz83y0pq6jlzjs9mwaa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dash-functional"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dash-functional"; sha256 = "0hx36hs12mf4nmskaaqrqpcgwrfjdqj6qcxn6bwb0s5m2jf9hs8p"; name = "dash-functional"; }; @@ -4808,7 +4829,7 @@ sha256 = "06aprbhhxb6bbzmf0r5yq2ry6x7708vp4d94ja3ir6zcwc96wn0k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/date-at-point"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/date-at-point"; sha256 = "0r26df6px6q5jlxj29nhl3qbp6kzy9hs5vd72kpiirgn4wlmagp0"; name = "date-at-point"; }; @@ -4829,7 +4850,7 @@ sha256 = "1lmwnj2fnvijj9qp4rjggl7c4x91vnpb47rqaam6m2wmr5wbrx3w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/date-field"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/date-field"; sha256 = "0fmw13sa4ajs1xkrkdpcjpbp0jl9d81cgvwh93myg8yjjn7wbmvk"; name = "date-field"; }; @@ -4850,7 +4871,7 @@ sha256 = "0wm24ndiyhrayg1gz456s0s1ddlpcvg4vp555g4zzl3zcpsy94bg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/decide"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/decide"; sha256 = "1gjkays48lhrifi9jwja5n2dpxjbl7f9rmka1nsqg9vf7s59vhhc"; name = "decide"; }; @@ -4871,7 +4892,7 @@ sha256 = "0pba9s0h37sxyqh733vi6k5raa4cs7aradipf3826inw36jcw414"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dedicated"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dedicated"; sha256 = "1ka8n02r3nd2ksbid23g2qd6707c7xsjx7lbbdi6pcmwam5mglw9"; name = "dedicated"; }; @@ -4892,7 +4913,7 @@ sha256 = "031f8ls1q80j717cg6b4pjd37wk7vrl5hcycsn8ca7yssmqa8q81"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/default-text-scale"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/default-text-scale"; sha256 = "18r90ic38fnlsbg4gi3r962vban398x2bf3rqhrc6z4jk4aiv3mi"; name = "default-text-scale"; }; @@ -4913,7 +4934,7 @@ sha256 = "1br4yys803x3ng4vzhhvblhkqabs46lx8a3ajycqy555q20zqzrf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/deferred"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/deferred"; sha256 = "0axbvxrdjgxk4d1bd9ar4r5nnacsi8r0d6649x7mnhqk12940mnr"; name = "deferred"; }; @@ -4934,7 +4955,7 @@ sha256 = "1lyqd9cgj7cb2lasf6ycw5j8wnsx2nrfm8ra4sg3dgcspm01a89g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/define-word"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/define-word"; sha256 = "035fdfwnxw0mir1dyvrimygx2gafcgnvlcsmwmry1rsfh39n5b9a"; name = "define-word"; }; @@ -4953,7 +4974,7 @@ sha256 = "1s71xk5c1hck7lh780lpa1q1c8qdpf2wdahl2406mgf06y1ifp7b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/deft"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/deft"; sha256 = "1c9kps0lw97nl567ynlzk4w719a86a18q697rcmrbrg5imdx4y5p"; name = "deft"; }; @@ -4974,7 +4995,7 @@ sha256 = "13jfhc9gavvb9dxmgi3k7ivp5iwh4yw4m11r2s8wpwn6p056bmfl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/demangle-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/demangle-mode"; sha256 = "0ky0bb6rc99vrdli4lhs656qjndnla9b7inc2ji9l4n1zki5qxzk"; name = "demangle-mode"; }; @@ -4995,7 +5016,7 @@ sha256 = "13fasbhdjwc4jh3cy25gm5sbbg56hq8la271098qpx6dhqm2wycq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/describe-number"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/describe-number"; sha256 = "0gvriailni2ppz69g0bwnb1ik1ghjkj341k45vllz30j0frp9iji"; name = "describe-number"; }; @@ -5016,7 +5037,7 @@ sha256 = "184zi5fv7ranghfx1hpx7j2wnk6kim8ysliyw2c5c1294sxxq3f3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/desktop+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/desktop+"; sha256 = "0w7i6k4814hwb19l7ly9yq59674xiw57ylrwxq7yprwx52sgs2r8"; name = "desktop-plus"; }; @@ -5037,7 +5058,7 @@ sha256 = "11qvhbz7149vqh61fgqqn4inw0ic6ib9lz2xgr9m54pdw9a901mp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/desktop-registry"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/desktop-registry"; sha256 = "1sfj0w6hlrx37js63fn1v5xc9ngmahv07g42z68717md6w3c8g0v"; name = "desktop-registry"; }; @@ -5058,7 +5079,7 @@ sha256 = "05xfgn9sabi1ykk8zbk2vza1g8pdrg08j5cb58f50nda3q8ndf4s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dictionary"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dictionary"; sha256 = "0zr9sm5rmr0frxdr0za72wiffip9391fn9dm5y5x0aj1z4c1n28w"; name = "dictionary"; }; @@ -5079,7 +5100,7 @@ sha256 = "0sjwpvzd4x9c1b9iv66b33llvp96ryyzyp8pn1rnhvxfvjv43cnz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/diff-hl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/diff-hl"; sha256 = "0kw0v9xcqidhf26qzrqwdlav2zhq32xx91k7akd2536jpji5pbn6"; name = "diff-hl"; }; @@ -5100,7 +5121,7 @@ sha256 = "1ci2gmyl0i736b2sxh77fyg4hs2pkn6rn9z7v2hzv6xlgqd6j3z6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/diffview"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/diffview"; sha256 = "0vlzmykvxjwjww313brl1nr13kz41jypsk0s3l8q3rbsnkpfic5k"; name = "diffview"; }; @@ -5121,7 +5142,7 @@ sha256 = "0jzwaivsqh66py9hd3dg1ys5rc3p6pn8ndpwpvgyivk4pg6zhhj6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/digistar-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/digistar-mode"; sha256 = "0khzxlrm09h31i1nqz6rnzhrdssb3kppc4klpxza612l306fih0s"; name = "digistar-mode"; }; @@ -5142,7 +5163,7 @@ sha256 = "1vrd74vmm60gb69a4in412mjncnhkjbfpakpaa6w9rj7w4kyfiz1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dim"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dim"; sha256 = "0gsyily47g3g55qmhp1wzfz319l1pkgjz4lbigafjzlzqxyclz52"; name = "dim"; }; @@ -5163,7 +5184,7 @@ sha256 = "0bw1gkaycbbv2glnaa36gwzkl1l6lsq7i2i7jinka92b27zvrans"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dim-autoload"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dim-autoload"; sha256 = "0lhzzjrgfvbqnzwhjywrk3skdb7x10xdq7d21q6kdk3h5r0np9f9"; name = "dim-autoload"; }; @@ -5184,7 +5205,7 @@ sha256 = "0qpgfgp8hrzz4vdifxq8h25n0a0jlzgf7aa1fpy6r0080v5rqbb6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/diminish"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/diminish"; sha256 = "1h6a31jllypk47akjflz89xk6h47na96pim17d6g4rpqcafc2k43"; name = "diminish"; }; @@ -5205,7 +5226,7 @@ sha256 = "1xg9cschjd2m0zal296q54ifk5i4s1s3azwfdkbgshxxgvxaky0w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dionysos"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dionysos"; sha256 = "1wjgj74dnlwd79gc3l7ymbx75jka8rw9smzbb10dsfppw3rrzfmz"; name = "dionysos"; }; @@ -5226,7 +5247,7 @@ sha256 = "1d813b4wiamif48v0za5invnss52mn7yw3hzrlxd4918gy5y2r74"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dired-atool"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dired-atool"; sha256 = "0qljx6fmz1hal9r2smjyc957wcvcpg16vp5mv65ip6d26k5qsj0w"; name = "dired-atool"; }; @@ -5247,7 +5268,7 @@ sha256 = "1m0nx8wd6q56qbp5mbp9n466kyglrz34nflwvgd1qnmi08jwswgv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dired-efap"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dired-efap"; sha256 = "01j5v6584qi8ia7zmk03kx3i3kmm6hn6ycfgqlh5va6lp2h9sr00"; name = "dired-efap"; }; @@ -5268,7 +5289,7 @@ sha256 = "0lrc4082ghg77x5jl26hj8c7cp48yjvqhv4g3j0pznpzb4qyfnq0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dired-fdclone"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dired-fdclone"; sha256 = "11aikq2q3m9h4zpgl24f8npvpwd98jgh8ygjwy2x5q8as8i89vf9"; name = "dired-fdclone"; }; @@ -5289,7 +5310,7 @@ sha256 = "088h9yn6wndq4pq6f7q4iz17f9f4ci29z9nh595idljp3vwr7qid"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dired-imenu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dired-imenu"; sha256 = "09yix4fkr03jq6j2rmvyg6gkmcnraw49a8m9649r3m525qdnhxs1"; name = "dired-imenu"; }; @@ -5310,7 +5331,7 @@ sha256 = "0rpln6m3j4xbhrmmz18hby6xpzpzbf1c5hr7bxvna265cb0i5rn7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dired-k"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dired-k"; sha256 = "0lghdmy9qcjykscfxvfrz8cpp87qc0vfd03vw8nfpvwcs2sd28i8"; name = "dired-k"; }; @@ -5331,7 +5352,7 @@ sha256 = "0mfvyjbx7l7a1sfq47m6rb507xxw92nykkkpzmi2mpwv30f1c22j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dired-single"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dired-single"; sha256 = "13h8dsn7bkz8ji2rrb7vyrqb2znxarpiynqi65mfli7dn5k086vf"; name = "dired-single"; }; @@ -5352,7 +5373,7 @@ sha256 = "0p8c2hjgr81idm1psv3i3v5hr5rv0875ig8app2yqjwzvl0nn73f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/direx"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/direx"; sha256 = "1x3rnrhhyrrvgry9n7kc0734la1zp4gc4bpy50f2qpfd452jwqdm"; name = "direx"; }; @@ -5373,7 +5394,7 @@ sha256 = "0swdh0qynpijsv6a2d308i42hfa0jwqsnmf4sm8vrhaf3vv25f5h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/direx-grep"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/direx-grep"; sha256 = "0y2wrzq06prm55akwgaqjg56znknyvbayav13asirqzg258skvm2"; name = "direx-grep"; }; @@ -5394,7 +5415,7 @@ sha256 = "0qxw30zrlcxhxb0alrgyiclrk44dysal8xsbz2mvgrb6jli8wg18"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/discover"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/discover"; sha256 = "1hf57p90jn1zzhjl63zv9ascbgkcbr0p0zmd3fvzpjsw84235dga"; name = "discover"; }; @@ -5415,7 +5436,7 @@ sha256 = "1wlqyl03hhnflbyay3qlvdzqzvv5rbybcjpfddggda7ias9h0pr4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/discover-my-major"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/discover-my-major"; sha256 = "0ch2y4grdjp7pvw2kxqnqdl7jd3q609n3pm3r0gn6k0xmcw85fgg"; name = "discover-my-major"; }; @@ -5436,7 +5457,7 @@ sha256 = "1b1a1bwc6nv6wkd8jg1cqmjb9m9pxi5i2wbrz97fgii23dwfmlnl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dispass"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dispass"; sha256 = "08c1s4zgl4rha10mva48cfkxzrqnpdhy03pxq51ihw94v6vxzg3z"; name = "dispass"; }; @@ -5457,7 +5478,7 @@ sha256 = "069ymd1hinc6g1h0iy8pf6sckvasssi2p6lgaway6yj1gvks22vz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dix"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dix"; sha256 = "0c5fmknpy6kwlz7nx0csbbia1maz0szj7yha1p7wq28s3a5426xq"; name = "dix"; }; @@ -5467,22 +5488,22 @@ license = lib.licenses.free; }; }) {}; - docker = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, magit-popup, melpaBuild, s, tle }: + docker = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, magit-popup, melpaBuild, s, tablist }: melpaBuild { pname = "docker"; - version = "0.3.1"; + version = "0.4.0"; src = fetchFromGitHub { owner = "Silex"; repo = "docker.el"; - rev = "8c06af5b3fc24e7466910d1ea13c387ca8b98c95"; - sha256 = "0kd35y5d36n3dxz55srrzvgka9877n5dlbhwilq0h5g7p7llnq3h"; + rev = "57c5f4edb7139cbf78055a1ceb7a9f8b4b299a8a"; + sha256 = "1wkgb6wq3crnpnd747ilwl2kbz5fjk5q5z1xza8j4bf1ic2aybb8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/docker"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/docker"; sha256 = "10x05vli7lg1w3fdbkrl34y4mwbhp2c7nqdwnbdy53i81jisw2lk"; name = "docker"; }; - packageRequires = [ dash emacs magit-popup s tle ]; + packageRequires = [ dash emacs magit-popup s tablist ]; meta = { homepage = "https://melpa.org/#/docker"; license = lib.licenses.free; @@ -5499,7 +5520,7 @@ sha256 = "1cmh8pwwa6dhl4w66wy8s5yqxs326mnaalg1ig2yhl4bjk8gi4m2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dockerfile-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dockerfile-mode"; sha256 = "1dxvzn35a9qd3x8pjvrvb2g71yf84404g6vz81y0p353rf2zknpa"; name = "dockerfile-mode"; }; @@ -5520,7 +5541,7 @@ sha256 = "04h1hlsc83w4dppw9m44jq7mkcpy0bblvnzrhvsh06pibjywdd73"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/doom"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/doom"; sha256 = "098q77lix7kwpmarv26yndyk1yy1h4k3l9kaf3g7sg6ji6k7d3wl"; name = "doom"; }; @@ -5541,7 +5562,7 @@ sha256 = "13czcxmmvy4g9ysfjr6lb91c0fqv1xv8ppd27wbfsrgxm3aaqimb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/downplay-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/downplay-mode"; sha256 = "1v6nga101ljzza8qj3lkmkzzl0vvzj4lsh1m69698s8prnczxr9b"; name = "downplay-mode"; }; @@ -5554,15 +5575,15 @@ dracula-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dracula-theme"; - version = "1.2.1"; + version = "1.2.5"; src = fetchFromGitHub { owner = "zenorocha"; repo = "dracula-theme"; - rev = "adc51d039aacd8c4c54c19eeb75f663a093dc3d7"; - sha256 = "0d8axj2dvzavxcrn3i5pmswhxk57kg6fcs244sr8zviwr15lipdz"; + rev = "ad3191b11603898d275450e5f7fca711617c82c8"; + sha256 = "10a8z7bqn6dmj9pgkrx5pq7kbh4i1n2vvv6600a8wp8n8wqbc2i5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dracula-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dracula-theme"; sha256 = "0ayv00wvajia8kbfrqkrkpb3qp3k70qcnqkav7am16p5kbvzp10r"; name = "dracula-theme"; }; @@ -5583,7 +5604,7 @@ sha256 = "0z3w58zplm5ks195zfsaq8kwbc944p3kbzs702jgz02wcrm4c28y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/draft-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/draft-mode"; sha256 = "1wg9cx39f4dhrykb4zx4fh0x5cfrh5aicwwfh1h3yzpc4zlr7xfh"; name = "draft-mode"; }; @@ -5596,15 +5617,15 @@ drag-stuff = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "drag-stuff"; - version = "0.1.0"; + version = "0.2.0"; src = fetchFromGitHub { owner = "rejeep"; repo = "drag-stuff.el"; - rev = "3265e4fe93323bc9089d12db3d466d49bc44a99d"; - sha256 = "0wncdlc45flggn6sq5a95y7k6q11hy7zxp0ddhsjqccl30mdwax5"; + rev = "07332b9f4725ad11d123e0fc5593c0c1c37db381"; + sha256 = "131ww26pb97q2gyjhfrsf7nw2pi5b1kba0cgl97qc017sfhg92v6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/drag-stuff"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/drag-stuff"; sha256 = "1q67q20gfhixzkmddhzp6fd8z2qfpsmyyvymmaffjcscnjaz21w4"; name = "drag-stuff"; }; @@ -5625,7 +5646,7 @@ sha256 = "1hbm3zdmd28fjl8fky0kq4gs2bxsrn2zxk9rd1wa2wky43ycnd35"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/drupal-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/drupal-mode"; sha256 = "14jvk4phq3wcff3yvhygix0c9cpbphh0dvm961i93jpsx7g9awgn"; name = "drupal-mode"; }; @@ -5646,7 +5667,7 @@ sha256 = "156cscpavrp695lp8pgjg5jnq3b8n9c2h8qg8w89dd4vfkc3iikd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/drupal-spell"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/drupal-spell"; sha256 = "117rr2bfnc99g3qsr127grxwaqp54cxjaj3nl2nr6z78nja0fij3"; name = "drupal-spell"; }; @@ -5667,7 +5688,7 @@ sha256 = "17yldk76mxakhb90bma7r4z9jgx02wankgk17r2di196mc04bj7b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ducpel"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ducpel"; sha256 = "1cqrkgg7n9bhjswnpl7yc6w6yjs4gfbliaqsimmf9z43wk2ml4pc"; name = "ducpel"; }; @@ -5688,7 +5709,7 @@ sha256 = "1czw5z6w8pcc7ra5d82v06padyiy7c3ds00chw5xgyvq6s73gzn4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dumb-jump"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dumb-jump"; sha256 = "1pgbs2k1g8w7gr65w50fazrmcky6w37c9rvyxqfmh06yx90nj4kc"; name = "dumb-jump"; }; @@ -5709,7 +5730,7 @@ sha256 = "033yqc19xxirbva65lz8hnwxj7pn7fx7dlnf70kq71iqclqa4v25"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dummy-h-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dummy-h-mode"; sha256 = "10lzfzq7md6s28w2zzlhswn3d6765g4vqzyjn2q5ms8pd2i4b4in"; name = "dummy-h-mode"; }; @@ -5729,7 +5750,7 @@ sha256 = "19aid1rqpqj0fvln98db5imfk1griqld55xsr9plm6kwrr174syq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dyalog-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dyalog-mode"; sha256 = "1y17nd2xd8b3mhaybws8dr7yanzwqij9gzfywisy65ckflm9kfyq"; name = "dyalog-mode"; }; @@ -5750,7 +5771,7 @@ sha256 = "1ppwlill1z4vqd566h9zi6zx5jb7hggmnmqrga84j5n7fwqvgz7f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dynamic-fonts"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dynamic-fonts"; sha256 = "0a210ca41maa755lv1n7hhpxp0f7lfxrxbi0x34icbkfkmijhl6q"; name = "dynamic-fonts"; }; @@ -5771,7 +5792,7 @@ sha256 = "05z7gshrn7wp0qkb9ns6rgmcp375yllmkwhdsm4amg0dk3j2slbr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/dynamic-ruler"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/dynamic-ruler"; sha256 = "13jc3xbsyc3apkdfy0iafmsfvgqs0zfa5w8jxp7zj4dhb7pxpnmc"; name = "dynamic-ruler"; }; @@ -5792,7 +5813,7 @@ sha256 = "0g0cz5a0vf31w27ljq5sn52mq15ynadl6cfbb97ja5zj1zxsxgjl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/e2wm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/e2wm"; sha256 = "0dp360jr3fgxqywkp7g88cp02g37kw2hdsc0f70hjak9n3sy03la"; name = "e2wm"; }; @@ -5813,7 +5834,7 @@ sha256 = "1yf081rac0chvkjha9z9xi1p983gmhjph0hai6ppsz5hzf2vikpp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/e2wm-R"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/e2wm-R"; sha256 = "09v4fz178lch4d6m801ipclfxm2qrap5601aysnzyvc2apvyr3sh"; name = "e2wm-R"; }; @@ -5834,7 +5855,7 @@ sha256 = "09i7d2rc9zd4s3nqrhd3ggs1ykdpxf0pyhxixxw2xy0q6nbswjia"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/e2wm-direx"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/e2wm-direx"; sha256 = "0nv8aciq0swxi9ahwc2pvk9c7i3rmlp7vrzqcan58ml0i3nm17wg"; name = "e2wm-direx"; }; @@ -5855,7 +5876,7 @@ sha256 = "1vrlfzy1wynm7x4m7pl8vim7ykqd6qkcilwz7sjc1lbckz11ig0d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/e2wm-pkgex4pl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/e2wm-pkgex4pl"; sha256 = "0hgdbqfw3015fr929m36kfiqqzsid6afs3222iqq0apg7gfj7jil"; name = "e2wm-pkgex4pl"; }; @@ -5876,7 +5897,7 @@ sha256 = "0mz43mwcgyc1c9p9b7nflnjxdxjm2nxbhl0scj6llzphikicr35g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/e2wm-sww"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/e2wm-sww"; sha256 = "0x45j62cjivf9v7jp1b41yya3f9akp92md6cbv0v7bwz98g2vsk8"; name = "e2wm-sww"; }; @@ -5897,7 +5918,7 @@ sha256 = "0qv3kh6q3q7vgfsd8x25x8agi3fp96dkpjnxdidkwk6k8h9n0jzw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/e2wm-term"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/e2wm-term"; sha256 = "0wrq06yap80a96l9l0hs7x7rng7sx6vi1hz778kknb6il4f2f45g"; name = "e2wm-term"; }; @@ -5918,7 +5939,7 @@ sha256 = "0r56nqrj6iaz57ys6hqdq5qkyliv7dj6dv274l228r7x0axrwd9m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/easy-kill"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/easy-kill"; sha256 = "10jcv7a4vcnaj3wkabip2xwzcwlmvdlqkl409a9lnzfasxcpf32i"; name = "easy-kill"; }; @@ -5939,7 +5960,7 @@ sha256 = "18fdlxz9k961k8wafdw0gq0y514bvrfvx6qc1lmm4pk3gdcfbbi0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/easy-kill-extras"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/easy-kill-extras"; sha256 = "0xzlzv57nvrc142saydwfib51fyqcdzjccc1hj6xvgcdbwadlnjy"; name = "easy-kill-extras"; }; @@ -5960,7 +5981,7 @@ sha256 = "18bm5ns1qrxq0rrz9sylshr62wkymh1m6b7ch2y74f8rcwdwjgnq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/easy-repeat"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/easy-repeat"; sha256 = "1vx57gpw0nbxh976s18va4ali1nqxqffhaxv1c5rhf4pwlk2fa06"; name = "easy-repeat"; }; @@ -5981,7 +6002,7 @@ sha256 = "0ysym38xaqyx1wc7xd3fvjm62dmiq4727dnjvyxv7hs4czff1gcb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ebal"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ebal"; sha256 = "1kqnlp5n1aig1qbqdq9q50wgqkzd1l6h9wi1gv43cif8qa1kxhwg"; name = "ebal"; }; @@ -6002,7 +6023,7 @@ sha256 = "16hiwz8a1hyyiflzn53v97704v783pg18yxapn7pqk90fbcf7czw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ebf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ebf"; sha256 = "072w1hczzb4z0dadvqy8px9zfnfd2z0w8nwa7q2qm5njg30rrqpb"; name = "ebf"; }; @@ -6023,7 +6044,7 @@ sha256 = "1kcmbr4a2jxd62s4nc8xshrksb36xwb17j6c0hjzvb75r544xy6s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ebib"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ebib"; sha256 = "1kdqf5nk9l6mr3698nqngrkw5dicgf7d24krir5wrcfbrsqrfmid"; name = "ebib"; }; @@ -6044,7 +6065,7 @@ sha256 = "1s9r1qj7cjsjvvphdpyjff6y598xpbrm9qjv5ncq15w6ac7yxzvc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ecb"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ecb"; sha256 = "097hdskhfh255znrqamcssx4ns1sgkxchlbc7pjqwzpflsi0fx89"; name = "ecb"; }; @@ -6065,7 +6086,7 @@ sha256 = "1r5hlcspznvfm111l1z0r4isd582qj64sa8cqk6hyi3y1hyp1xxs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ecukes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ecukes"; sha256 = "0ava8hrc7r1mzv6xgbrb84qak5xrf6fj8g9qr4i4g0cr7843nrw0"; name = "ecukes"; }; @@ -6086,7 +6107,7 @@ sha256 = "0xy3q68i47a3s81jwr0rdvc1722bp78ng56xm53pri05g1z0db9s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/edbi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/edbi"; sha256 = "0qq0j16n8lyvkqqlcsrq1m7r7f0in6b92d74mpx5c6siv6z2vxlr"; name = "edbi"; }; @@ -6107,7 +6128,7 @@ sha256 = "10c84aad1lnr7z9f75k5ylgchykr3srcdmn88hlcx2n2c4jfbkds"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/edit-indirect"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/edit-indirect"; sha256 = "0q5jjmrvx5kaajllmhaxihsab2kr1vmcsfqrhxdhw3x3nf41s439"; name = "edit-indirect"; }; @@ -6128,7 +6149,7 @@ sha256 = "0981hy1n50yizc3k06vbxqrpfml817a67kab1hkgkw5v6ymm1hc9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/edit-list"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/edit-list"; sha256 = "0mi12jfgx06i0yr8k5nk80xryqszjv0xykdnri505862rb90xakv"; name = "edit-list"; }; @@ -6149,7 +6170,7 @@ sha256 = "12dp1xj09jrp0kxp9xb6cak9dn6zkyis1wfn4fnhzmxxnrd8c5rn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/edit-server"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/edit-server"; sha256 = "0ffxcgmnz0f2c1i3vfwm8vlm6jyd7ibf4kq5z8c6n50zkwfdmns0"; name = "edit-server"; }; @@ -6162,15 +6183,15 @@ editorconfig = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "editorconfig"; - version = "0.7.5"; + version = "0.7.6"; src = fetchFromGitHub { owner = "editorconfig"; repo = "editorconfig-emacs"; - rev = "268478773c11bf5fb47b47b8c322bcd589e4c990"; - sha256 = "1119yk2ilhd5apmsmg56w6bhi3qrlb8sgykpv15hr2hj0x3p2k61"; + rev = "86ba3a4cf675783739f607220811c388f51eea11"; + sha256 = "1zb8f6gfflwzh1zkhcd1nhan9wxmdm0gpp96fm5gjn639zs88539"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/editorconfig"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/editorconfig"; sha256 = "0zv96m07ml8i3k7zm7sdci4hn611n3ypna7zppfkwbdyr7d5k2gc"; name = "editorconfig"; }; @@ -6191,7 +6212,7 @@ sha256 = "06v34l9dkykrrdfpnm3zi5wjm0fdvy76pbkfnk92wqkjp8fqimhd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/edn"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/edn"; sha256 = "00cy8axhy2p3zalzl8k2083l5a7s3aswb9qfk9wsmf678m8pqwqg"; name = "edn"; }; @@ -6212,7 +6233,7 @@ sha256 = "1a1apa48n24yisd2zw5k4lfkngx3016x6y11qi80hg75vrnmg7f1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/edts"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/edts"; sha256 = "0f0rbd0mqqwn743qmr1g5mmi1sbmlcglclww8jxvbvb61jq8vspr"; name = "edts"; }; @@ -6233,7 +6254,7 @@ sha256 = "1ryb7smvf66hk307yazkjn9bqzbwzbyyb5db200fq6j2zdjwsmaj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/egg"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/egg"; sha256 = "144g1fvs2cmn3px0a98nvxl5cz70kx30v936k5ppyi8gvbj0md5i"; name = "egg"; }; @@ -6254,7 +6275,7 @@ sha256 = "07vdvjy4x21gyw2r4rxrj929hj1jp4a8igwgb2m5a5x50capwzhy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/egison-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/egison-mode"; sha256 = "0x11fhv8kkx34h831k2q70y5qfz7wnfia4ka5mbmps7mpr68zcwi"; name = "egison-mode"; }; @@ -6273,7 +6294,7 @@ sha256 = "0w9j5q5pzw55nwsw5wic7dl7psvg75vk1cxhrz2isgra6gissh9z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/eide"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/eide"; sha256 = "16cf32n2l4wy1px7fm6x4vxx7pbqdp7zh2jn3bymg0b40i2321sz"; name = "eide"; }; @@ -6294,7 +6315,7 @@ sha256 = "0w2j0bbqnba1wr12f0zk87zwnxf6xhchx224fwgwqd3kg0x5z0r3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ein"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ein"; sha256 = "1nksj1cpf4d9brr3rb80bgp2x05qdq9xmlp8mwbic1s27mw80bpp"; name = "ein"; }; @@ -6315,7 +6336,7 @@ sha256 = "0m7qsk378c30fva2n2ag99rsdklx5nsqc395msg1ab11sbpxvis0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/eink-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/eink-theme"; sha256 = "0z437cpf1b8bqyi7bv0w0dnc52q4f5g17530lwdcxjkr38s9b1zn"; name = "eink-theme"; }; @@ -6336,7 +6357,7 @@ sha256 = "0dbp2zz993cm7mrd58c4iflbzqwg50wzgn2cpwfivk14w1mznh4n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/el-autoyas"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/el-autoyas"; sha256 = "0hh5j79f3z82nmb3kqry8k8lgc1qswk6ni3g9jg60pasc3wkbh6c"; name = "el-autoyas"; }; @@ -6357,7 +6378,7 @@ sha256 = "1awyh9ffd6a4cia239s89asb88ddqlnrv757d76vcb701pq412bz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/el-get"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/el-get"; sha256 = "1438v2sw5n67q404c93y2py226v469nagqwp4w9l6yyy40h4myhz"; name = "el-get"; }; @@ -6378,7 +6399,7 @@ sha256 = "1mzla7ijmq1mgzr6bf16mjdycbf8ylsf4zdk4j6fh5kw5n4k6c5n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/el-init"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/el-init"; sha256 = "121n6z8p9kzi7axp4i2kyi621gw20635w4j81i1bryblaqrv5kl5"; name = "el-init"; }; @@ -6399,7 +6420,7 @@ sha256 = "1488wv0f9ihzzf9fl8cki044k61b0kva604hdwpb2qk9gnjr4g1l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/el-init-viewer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/el-init-viewer"; sha256 = "0kkmsml9xf2n8nlrcicfg2l78s3dlhd6ssx0s62v77v4wdpl297m"; name = "el-init-viewer"; }; @@ -6420,7 +6441,7 @@ sha256 = "13mv1rhgkwiww2wh5w926jz7idppp492wir1vdl245c5x50dh4f7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/el-mock"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/el-mock"; sha256 = "07m7w7n202nijnxidy0j0r4nbcvlnbkm9b0n8qb2bwi3d4cfp77l"; name = "el-mock"; }; @@ -6441,7 +6462,7 @@ sha256 = "0390pfgfgj7hwfmkwikwhip0hmwkgx784l529cqvalc31jchi94i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/el-spice"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/el-spice"; sha256 = "0i0l3y9w1q9pf5zhvmsq4h427imix67jgcfwq21b6j82dzg5l4hg"; name = "el-spice"; }; @@ -6462,7 +6483,7 @@ sha256 = "1i6j44ssxm1xdg0mf91nh1lnprwsaxsx8vsrf720nan7mfr283h5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/el-x"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/el-x"; sha256 = "1721d9mljlcbdwb5b9934q7a48y30x6706pp4bjvgys0r64dml5g"; name = "el-x"; }; @@ -6483,7 +6504,7 @@ sha256 = "0hlj6jn9gmi00sqghxswkxpgk65c4gy2k7010vpkr2257rd4f3gq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elang"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/elang"; sha256 = "0frhn3hm8351qzljicpzars28af1fghgv45717ml79rwb4vi6yiy"; name = "elang"; }; @@ -6504,7 +6525,7 @@ sha256 = "1fh9dx669czkwy4msylcg64azz3az27akx55ipnazb5ghmsi7ivk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/eldoc-eval"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/eldoc-eval"; sha256 = "0z4scgi2xgrgd47aqqmyv1ww8alh43s0qny5qmh3f1nnppz3nd7c"; name = "eldoc-eval"; }; @@ -6525,7 +6546,7 @@ sha256 = "1ji6rdbqwk8j0nl6yk3rdqrpgxir99lj9pf6i9rx55l63qyrdfc4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/electric-operator"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/electric-operator"; sha256 = "043bkpvvk42lmkll5jnz4q8i0m44y4wdxvkz6hiqhqcp1rv03nw2"; name = "electric-operator"; }; @@ -6546,7 +6567,7 @@ sha256 = "1ln0wprk8m2d33z804ld73jwv9x51xkwl9xfsywbh09w3x2zb51j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elfeed"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/elfeed"; sha256 = "1psga7fcjk2b8xjg10fndp9l0ib72l5ggf43gxp62i4lxixzv8f9"; name = "elfeed"; }; @@ -6567,7 +6588,7 @@ sha256 = "1ln0wprk8m2d33z804ld73jwv9x51xkwl9xfsywbh09w3x2zb51j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elfeed-web"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/elfeed-web"; sha256 = "14ydwvjjc6wbhkj4g4xdh0c3nh4asqsz8ln7my5vjib881vmaq1n"; name = "elfeed-web"; }; @@ -6577,6 +6598,27 @@ license = lib.licenses.free; }; }) {}; + elisp-format = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "elisp-format"; + version = "0.5.7"; + src = fetchFromGitHub { + owner = "emacsmirror"; + repo = "elisp-format"; + rev = "640316f4930978a632b16d24c1a2fa75798e0ff0"; + sha256 = "0pyf1zja696bgl46bqrksdzw94za08icd3qfzal58hf3zgil99ay"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/elisp-format"; + sha256 = "1x6dmjhds8smqkmg11ndiiir78714w4z2vrz04cnzq2v3wx1yiv4"; + name = "elisp-format"; + }; + packageRequires = []; + meta = { + homepage = "https://melpa.org/#/elisp-format"; + license = lib.licenses.free; + }; + }) {}; elisp-slime-nav = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "elisp-slime-nav"; @@ -6588,7 +6630,7 @@ sha256 = "1k7kprdknqm18dc0nwl7gachm0rivcpa8ng7p7ximalja3nsg2j1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elisp-slime-nav"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/elisp-slime-nav"; sha256 = "009zgp68i4naprpjr8lcp06lh3i5ickn0nh0lgvrqs0niprnzh8c"; name = "elisp-slime-nav"; }; @@ -6609,7 +6651,7 @@ sha256 = "06bi68x49v6f7flpz279mm4jpg31ll3s274givm3pvr8slcxs6xg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elixir-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/elixir-mode"; sha256 = "1dba3jfg210i2rw8qy866396xn2xjgmbcyl006d6fibpr3j4lxaf"; name = "elixir-mode"; }; @@ -6630,7 +6672,7 @@ sha256 = "0dx5h3sfccc2bp1jxnqqki95x5hp1skw8n5n4lnh703yjga5gkrz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elixir-yasnippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/elixir-yasnippets"; sha256 = "0vmkcd88wfafv31lyw0983p4qjj387qf258q7py1ij47fcmfp579"; name = "elixir-yasnippets"; }; @@ -6643,15 +6685,15 @@ elm-mode = callPackage ({ emacs, f, fetchFromGitHub, fetchurl, let-alist, lib, melpaBuild, s }: melpaBuild { pname = "elm-mode"; - version = "0.11.1"; + version = "0.13.0"; src = fetchFromGitHub { owner = "jcollard"; repo = "elm-mode"; - rev = "4fb26ae8e10d7b88e05a9e3a5c1b2cf3c8c2d6c3"; - sha256 = "0ly8i5x9ii781681xf9iisj5g83sfj2wf786072clll36ym4a7c1"; + rev = "b99ba394756e0214ce312b494b7299f0cdc1d43d"; + sha256 = "1ijpdwyx1xjkrqv9s52bml2hwp754h7dp7c3dypw4i62pbkdsy0n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elm-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/elm-mode"; sha256 = "1gw9szkyr1spcx7qijddhxlm36h0hmfd53b4yzp1336yx44mlnd1"; name = "elm-mode"; }; @@ -6672,7 +6714,7 @@ sha256 = "0l2iincskpks9yvj3y9zh1b48xli1q39wybr5n96rys5gv0drc9h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elmacro"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/elmacro"; sha256 = "0644rgwawivrq1shsjx1x2p53z7jgr6bxqgn2smzql8pp6azy7xz"; name = "elmacro"; }; @@ -6693,7 +6735,7 @@ sha256 = "080nnw6ddsczbm7gk50x4dkahi77fsybfiki5iyp39fjpa7lfzq3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elmine"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/elmine"; sha256 = "1gi94dyz9x50swkvryd4vj36rqgz4s58nrb4h4vwwviiiqmc8fvz"; name = "elmine"; }; @@ -6714,7 +6756,7 @@ sha256 = "1q4krfrc2dy0vr7q148msfpkcwj55mlsrn4n5xjnya4xj0134ib7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elpa-audit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/elpa-audit"; sha256 = "0l8har14zrlh9kdkh9vlmkmzg49vb0r8j1wnznryaidalvk84a52"; name = "elpa-audit"; }; @@ -6727,15 +6769,15 @@ elpa-mirror = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "elpa-mirror"; - version = "1.2.1"; + version = "1.2.2"; src = fetchFromGitHub { owner = "redguardtoo"; repo = "elpa-mirror"; - rev = "6c32875c2317736e590e067820996010b21acb1d"; - sha256 = "1hjmvn3kls63alh0ihb5c8gf90lrfvq1hxrlf4162qiaa0s15f8a"; + rev = "940c17f757ddaf9c076503af2bb15d04f299692c"; + sha256 = "0h2xhys3cc9z61ax0ymg5fbsjg6192hwdvfhgmyq7vwibi402r1f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elpa-mirror"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/elpa-mirror"; sha256 = "1jnviav2ybr13cgllg26kfjrwrl25adggnqiiwyjwgbbzxfycah8"; name = "elpa-mirror"; }; @@ -6748,16 +6790,16 @@ elpy = callPackage ({ company, fetchFromGitHub, fetchurl, find-file-in-project, highlight-indentation, lib, melpaBuild, pyvenv, yasnippet }: melpaBuild { pname = "elpy"; - version = "1.11.0"; + version = "1.12.0"; src = fetchFromGitHub { owner = "jorgenschaefer"; repo = "elpy"; - rev = "d4cd394236d1d148dcabd5048bd30961687627da"; - sha256 = "1xjm9b32a9nfzvphj6vm0dqcr4i072zcx29kcgiyyni8zbgbwmwv"; + rev = "c9487a14e9cb21b531660de7e648086e270ab08f"; + sha256 = "1x4asq5zqv8wbp034gzcrza9y2nbbwx1nrwi4jnwak0x0yn3c2dj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elpy"; - sha256 = "051irp7k0cp1hqp3hzrmapllf2iim7cq0iz38489g4fkh2ybk709"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/elpy"; + sha256 = "0n802bh7jj9zgz84xjrxvy33jl6s3hj5dqxafyfr87fank97hb6d"; name = "elpy"; }; packageRequires = [ @@ -6775,15 +6817,15 @@ elscreen-mew = callPackage ({ elscreen, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "elscreen-mew"; - version = "1.0.1"; + version = "1.0.2"; src = fetchFromGitHub { owner = "masutaka"; repo = "elscreen-mew"; - rev = "f66a2a5a8dd904791ede5133fdd183522b061bba"; - sha256 = "091dxsb73bhqmrddwnmvblmfpwa7v7fa0ha18daxc8j0lrhzdhlh"; + rev = "89871fad690ae161dc076e16ef481b1965612077"; + sha256 = "14hwl5jzmm43qa4jbpsyswbz4hk1l2iwqh3ank6502bz58877k6c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elscreen-mew"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/elscreen-mew"; sha256 = "06g4wcfjs036nn64ac0zsvr08cfmak2hyj83y7a0r35yxr1853w4"; name = "elscreen-mew"; }; @@ -6804,7 +6846,7 @@ sha256 = "06g7fl2c7cvwsrgi462wf6j13ny56y6zvgkizz9f256xjjq77ymf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elscreen-persist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/elscreen-persist"; sha256 = "1rjfvpsx0y5l9b76wa1ilj5lx39jd0m78nb1a4bqn81z0rkfpl4k"; name = "elscreen-persist"; }; @@ -6825,7 +6867,7 @@ sha256 = "1k7npf93xbmrsq607x8zlgrpzqvplgia3ixz5w1lr1jlv1m2m8x2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elwm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/elwm"; sha256 = "0rf663ih3lfg4n4pj4dpp133967zha5m1wr46riaxpha7xr59al9"; name = "elwm"; }; @@ -6846,7 +6888,7 @@ sha256 = "0n5y3xq5dmqpsd9hhg9ac1jkj5qi9y7lgvg5nir3ghd8ldmrg09s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/elx"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/elx"; sha256 = "02nq66c0sds61k2p8cn2l0p2l8ysb38ibr038qn41l9hg1dq065x"; name = "elx"; }; @@ -6867,7 +6909,7 @@ sha256 = "0b9hr3xg53nap6sik9d2cwqi8vfwzv8yqjcin4hab6rg2fkr5mra"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/emacs-eclim"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/emacs-eclim"; sha256 = "1l55jhz5mb3bqw90cbf4jhcqgwj962br706qhm2wn5i2a1mg8xlv"; name = "emacs-eclim"; }; @@ -6888,7 +6930,7 @@ sha256 = "15l3ab11vcmzqibkd6h5zqw5a83k8dmgcp4n26px29c0gv6bkpy8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/emacs-setup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/emacs-setup"; sha256 = "1x4rh8vx6fsb2d6dz2g9j6jamin1vmpppwy3yzbl1dnf7w4hx4kh"; name = "emacs-setup"; }; @@ -6909,7 +6951,7 @@ sha256 = "0ciqxyahlzaxq854jm25zbrbmrhcaj5csdhxa0az9crwha8wkmw2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/emacsagist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/emacsagist"; sha256 = "1cyz7nf0zxa21979jf5kdmkgwiyd17vsmpcmrw1af37ly27l8l64"; name = "emacsagist"; }; @@ -6930,7 +6972,7 @@ sha256 = "1r6cpb7fck5znb7q7zrxcsjn7d3xiqhq8dp1ar1rsd6k4h05by4j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/emacsc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/emacsc"; sha256 = "1fbf9al3yds0il18jz6hbpj1fsjlpb1kgp450gb6r09lc46x77mk"; name = "emacsc"; }; @@ -6951,7 +6993,7 @@ sha256 = "1wc5hkirza6b4c0v557ihzbffvxy97pfcn5samcggbmrir5kpshw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/emacsql"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/emacsql"; sha256 = "1x4rn8dmgz871dhz878i2mqci576zccf9i2xmq2ishxgqm0hp8ax"; name = "emacsql"; }; @@ -6972,7 +7014,7 @@ sha256 = "1wc5hkirza6b4c0v557ihzbffvxy97pfcn5samcggbmrir5kpshw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/emacsql-mysql"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/emacsql-mysql"; sha256 = "1c20zhpdzfqjds6kcjhiq1m5ch53fsx6n1xk30i35kkg1wxaaqzy"; name = "emacsql-mysql"; }; @@ -6993,7 +7035,7 @@ sha256 = "1wc5hkirza6b4c0v557ihzbffvxy97pfcn5samcggbmrir5kpshw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/emacsql-psql"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/emacsql-psql"; sha256 = "1aa1g9jyjmz6w0lmi2cf67926ad3xvs0qsg7lrccnllr9k0flly3"; name = "emacsql-psql"; }; @@ -7014,7 +7056,7 @@ sha256 = "1wc5hkirza6b4c0v557ihzbffvxy97pfcn5samcggbmrir5kpshw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/emacsql-sqlite"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/emacsql-sqlite"; sha256 = "1vywq3ypcs61s60y7x0ac8rdm9yj43iwzxh8gk9zdyrcn9qpis0i"; name = "emacsql-sqlite"; }; @@ -7024,6 +7066,27 @@ license = lib.licenses.free; }; }) {}; + emacsshot = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "emacsshot"; + version = "0.4"; + src = fetchFromGitHub { + owner = "marcowahl"; + repo = "emacsshot"; + rev = "f2f8996d877ece5469c459c9bb7f33fe43c95822"; + sha256 = "00q344vgihl2s0snibfwsjvxqkbvy2jlqnnid7qw5gcni673b2hl"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/emacsshot"; + sha256 = "08xqx017yfizdj8wz7nbh9i7qpar6398sri78abzf78inv828s9j"; + name = "emacsshot"; + }; + packageRequires = []; + meta = { + homepage = "https://melpa.org/#/emacsshot"; + license = lib.licenses.free; + }; + }) {}; emamux = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "emamux"; @@ -7035,7 +7098,7 @@ sha256 = "1a9925n0jcgxcgiz2kmh9zbb1rg9039rlrbr9fr80by9znfwmy67"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/emamux"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/emamux"; sha256 = "1pg0gzi8rn0yafssrsiqdyj5dbfy984srq1r4dpp8p3bi3n0fkfz"; name = "emamux"; }; @@ -7045,6 +7108,27 @@ license = lib.licenses.free; }; }) {}; + embrace = callPackage ({ emacs, expand-region, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "embrace"; + version = "0.1.0"; + src = fetchFromGitHub { + owner = "cute-jumper"; + repo = "embrace.el"; + rev = "279e3290b7cb2b8a0e9bfcc03833f70d7262db4f"; + sha256 = "1cprgyyjdsdzmlayh1cbhz752zyfx2g1yn80gfr6mpxgnf5v5kj4"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/embrace"; + sha256 = "1w9zp9n91703d6jd4adl2xk574wsr7fm2a9v32b1i9bi3hr0hdjc"; + name = "embrace"; + }; + packageRequires = [ emacs expand-region ]; + meta = { + homepage = "https://melpa.org/#/embrace"; + license = lib.licenses.free; + }; + }) {}; emmet-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "emmet-mode"; @@ -7056,7 +7140,7 @@ sha256 = "1dsa85bk33j90h1ypaz1ylqh9yp2xvlga237h3kwa5y3sb0d5ydi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/emmet-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/emmet-mode"; sha256 = "0wjv4hqddjvbdrmsxzav5rpwnm2n6lr86jzkrnav8f2kyzypdsnr"; name = "emmet-mode"; }; @@ -7077,7 +7161,7 @@ sha256 = "0q80f0plch6k4lhs8c9qm3mfycfbp3kn5sjrk9zxgxwnn901y9mp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/emms-mode-line-cycle"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/emms-mode-line-cycle"; sha256 = "1jdmfh1i9v84iy7bj2dbc3s2wfzkrby3pabd99gnqzd9gn1cn8ca"; name = "emms-mode-line-cycle"; }; @@ -7098,7 +7182,7 @@ sha256 = "104iw4bl6y33diqs5ayrvdljkhb6f9g2m5p5kh8klgy7z1yjhp4p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/emms-player-mpv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/emms-player-mpv"; sha256 = "175rmqx3bgys4chw8ylyf9rk07sg0llwbs9ivrv2d3ayhcz1lg9y"; name = "emms-player-mpv"; }; @@ -7119,7 +7203,7 @@ sha256 = "15bb8fp2lwr5brfrsjwa47yvja5g2wyaac5a4sh5rn734s64x2sq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/emms-player-simple-mpv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/emms-player-simple-mpv"; sha256 = "15aljprjd74ha7wpzsmv3d873i6fy3x1jwhzm03hvw0sw18m25i1"; name = "emms-player-simple-mpv"; }; @@ -7129,24 +7213,24 @@ license = lib.licenses.free; }; }) {}; - emms-status = callPackage ({ emms, fetchFromGitHub, fetchurl, lib, melpaBuild }: + emms-state = callPackage ({ emms, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { - pname = "emms-status"; - version = "0.1"; + pname = "emms-state"; + version = "0.2"; src = fetchFromGitHub { owner = "alezost"; - repo = "emms-status.el"; - rev = "4ec65baf5786442246f0e47ab910c949a41c6495"; - sha256 = "0dfgb0jdadz8vgiald67cy3p256mwa66z1cdv1i8lhli3710j74d"; + repo = "emms-state.el"; + rev = "77930300222333b71eafd495cc1fee3a3585eb23"; + sha256 = "1kipxa9ax8zi9qqk19mknpg7nnlzgr734kh9bnklydipwnsy00pi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/emms-status"; - sha256 = "1nfyhp8l22ylh60hpk8fvr4hgmww8k2xi3q7dzpn5m2ph06fkdqa"; - name = "emms-status"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/emms-state"; + sha256 = "080y02hxxqfn0a0dhq5vm0r020v2q3h1612a2zkq5fxi8ssvhp9i"; + name = "emms-state"; }; packageRequires = [ emms ]; meta = { - homepage = "https://melpa.org/#/emms-status"; + homepage = "https://melpa.org/#/emms-state"; license = lib.licenses.free; }; }) {}; @@ -7161,7 +7245,7 @@ sha256 = "1rk7am0xvpnv98yi7a62wlyh576md4n2ddj7nm201bjd4wdl2yxk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/emoji-cheat-sheet-plus"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/emoji-cheat-sheet-plus"; sha256 = "1ciwlbw0ihm0p5gnnl3safcj7dxwiy53bkj8cmw3i334al0gjnnv"; name = "emoji-cheat-sheet-plus"; }; @@ -7182,7 +7266,7 @@ sha256 = "0qi7p1grann3mhaq8kc0yc27cp9fm983g2gaqddljchn7lmgagrr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/emoji-fontset"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/emoji-fontset"; sha256 = "19affsvlm1rzrzdh1k6xsv79icdkzx4izxivrd2ia6y2wcg9wc5d"; name = "emoji-fontset"; }; @@ -7203,7 +7287,7 @@ sha256 = "0nrf6p4h66i17nz850kpdrnk5h5ra4l3icjjrq34sxvmsssp6zhp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/emojify"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/emojify"; sha256 = "1sgd32qm43hwby75a9q2pz1yfzj988i35d8p9f18zvbxypy7b2yp"; name = "emojify"; }; @@ -7224,7 +7308,7 @@ sha256 = "0pl7i2a0mf2s33qpsc14dcvqbl6jm5xrvcnrhfr7visvnih29cy4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/emr"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/emr"; sha256 = "05vpfxg6lviclnms2zyrza8dc87m60mimlwd11ihvsbngi9gcw8x"; name = "emr"; }; @@ -7255,7 +7339,7 @@ sha256 = "1dsa3r39ip20ddbw0m9vq8z3r4ahrxvb37adyqi4mbdgyr6fq6sw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/engine-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/engine-mode"; sha256 = "1gg7i93163m7k7lr3pnal1svymnhzwrfpfcdc0798d7ybv26gg8c"; name = "engine-mode"; }; @@ -7276,7 +7360,7 @@ sha256 = "08j6b79vy8ry4ad1abk3hvxjbb4ylrhkvrbrnq1gcikl4h1p2v63"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/enlive"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/enlive"; sha256 = "1dyayk37zik12qfh8zbjmhsch64yqsx3acrlm7hcnavx465hmhnz"; name = "enlive"; }; @@ -7297,7 +7381,7 @@ sha256 = "1in4wbwkxn8qfcsfjbczzk73z74w4ixlml61wk666dw0kpscgbs5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/enotify"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/enotify"; sha256 = "0mii6m6zw9y8njgzi79rcf1n251iw7qz3yqjjij3c19rk3zpm5qi"; name = "enotify"; }; @@ -7318,7 +7402,7 @@ sha256 = "1yn9jn6jl6rmknj50g18z5yvpa1d8mzzx3j1pfdwfn36ak4nc9ba"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/eopengrok"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/eopengrok"; sha256 = "0756x78113286hwk1i1m5s8xq04gh7zxb4fkmw58lg2ssff8q6av"; name = "eopengrok"; }; @@ -7339,7 +7423,7 @@ sha256 = "05r2m7zghbdrgscg0x78jnhk1g6fq8iylar4cx699zm6pzvlq98z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/epc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/epc"; sha256 = "1l9rcx07pa4b9z5654gyw6b64c95lcigzg15amphwr56v2g3rbzx"; name = "epc"; }; @@ -7360,7 +7444,7 @@ sha256 = "0z60g9ln651cjfrjhwdm28x53kcpmap8zw26v0vjng288hlj8f9c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/epkg"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/epkg"; sha256 = "0vc1g29rfmgd2ks4lbz4599rbgcax7rgdva53ahhvp6say8fy22q"; name = "epkg"; }; @@ -7381,7 +7465,7 @@ sha256 = "0sjxd5y5hxhrbgfkpwx6m724r3841b53hgc61a0g5zwispw5pmrr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/epl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/epl"; sha256 = "0zr3r2hn9jaxscrl83hyixznb8l5dzfr6fsac76aa8x12xgsc5hn"; name = "epl"; }; @@ -7402,7 +7486,7 @@ sha256 = "1xw56sir6gkr0p9g4s6p4qc0rajnl6ifbzrky07j28y9vsa59nsz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/erc-crypt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/erc-crypt"; sha256 = "1mzzqcxjnll4d9r9n5z80zfb3ywkd8jx6b49g02vwf1iak9h7hv3"; name = "erc-crypt"; }; @@ -7418,11 +7502,11 @@ version = "0.1"; src = fetchhg { url = "https://bitbucket.com/seanfarley/erc-hipchatify"; - rev = "a1a163004d98"; - sha256 = "0bk4vr26abhbiwkmpns4hdlg23pxa25lca78fhz1900jkv4imk0f"; + rev = "b237cf8118fd"; + sha256 = "11a64rvhd88val6vg9l1d5j3zdjd0bbbwcqilj0wp6rbn57xy0w8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/erc-hipchatify"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/erc-hipchatify"; sha256 = "1a4gl05i757vvap0rzrfwms7mhw80sa84gvbwafrvj3x11rja24x"; name = "erc-hipchatify"; }; @@ -7443,7 +7527,7 @@ sha256 = "1k0g3bwp3w0dd6zwdv6k2wpqs2krjayilrzsr1hli649ljcx55d7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/erc-hl-nicks"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/erc-hl-nicks"; sha256 = "1lhw77n2nrjnb5yhnpm6yhbcp022xxjcmdgqf21z9rd0igss9mja"; name = "erc-hl-nicks"; }; @@ -7464,7 +7548,7 @@ sha256 = "1xsxykmhz34gmyj4jb26qfai7j95kzlc7vfydrajc6is7xlrwhfk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/erc-twitch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/erc-twitch"; sha256 = "08vlwcxrzc2ndm52112z1r0qnz6jlmjhiwq2j3j59fbw82ys61ia"; name = "erc-twitch"; }; @@ -7485,7 +7569,7 @@ sha256 = "0p1j08rrdsqmkb8zz8h8ba24hr59nx3xh2m044ry468hfd2bp6vd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/erc-youtube"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/erc-youtube"; sha256 = "12ylxkskkgfv5x7vlkib963ichb3rlmdzkf4zh8a39cgl8wsmacx"; name = "erc-youtube"; }; @@ -7506,7 +7590,7 @@ sha256 = "19jninbf0dhdw3kn4d38bxmklg0v7sh3m9dwj6z69w99r5pcw480"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ercn"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ercn"; sha256 = "0yvis02bypw6v1zv7i326y8s6j0id558n0bdri52hr5pw85imnlp"; name = "ercn"; }; @@ -7527,7 +7611,7 @@ sha256 = "17i567nfm0rykimh6bpcc5f2l7wsf8zcdy2jzd7sgrl54dvb0g9i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/erefactor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/erefactor"; sha256 = "0ma9sbrq4n8y5w7vvbhhgmw25aiykbq5yhxzm0knj32bgpviprw7"; name = "erefactor"; }; @@ -7548,7 +7632,7 @@ sha256 = "19m6chwc2awbsk5z03q1yhq84m481pff2609a8bxymcvm6yaamvf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ergoemacs-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ergoemacs-mode"; sha256 = "0h99m0n3q41lw5fm33pc1405lrxyc8rzghnc6c7j4a6gr1d82s62"; name = "ergoemacs-mode"; }; @@ -7561,15 +7645,15 @@ erlang = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "erlang"; - version = "18.3.1"; + version = "18.3.3"; src = fetchFromGitHub { owner = "erlang"; repo = "otp"; - rev = "afe72bfc1448ff426c38eceb7412f69e973aef62"; - sha256 = "0p16jjrqkacjwi3ih4hamp1rcak7mmj76m2kzswm3x54fmicw1kx"; + rev = "1ab69efa960703b86a13ea6ba96f4fd56f1565f9"; + sha256 = "1y8iarld0jjkhcy9dl6yv9gxh4kryyr52kxw3zi3w2sd6g8cbhsw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/erlang"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/erlang"; sha256 = "1gmrdkfanivb9l5lmkl0853snlhl62w34537r82w11z2fbk9lxhc"; name = "erlang"; }; @@ -7590,7 +7674,7 @@ sha256 = "0hn9i405nfhjd1h9vnwj43nxbbz00khrwkjq0acfyxjaz1shfac9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ert-async"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ert-async"; sha256 = "004798ckri5j72j0xvzkyciss1iz4lw9gya2749hkjxlamg14cn5"; name = "ert-async"; }; @@ -7610,7 +7694,7 @@ sha256 = "1hsp0jp9gyfr6rhfsjgi55x4lqjlh1w13y90rrlnbxb0499zpa33"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ert-junit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ert-junit"; sha256 = "0bv22mhh1ahbjwi6s1csxkh11dmy0srabkddjd33l4havykxlg6g"; name = "ert-junit"; }; @@ -7631,7 +7715,7 @@ sha256 = "0rdgdslspzb4s0n4a68hnwfm8vm8baasa8nzrdinf0nryn7rrhbf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ert-runner"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ert-runner"; sha256 = "0fnb8rmjr5lvc3dq0fnyxhws8ync1lj5xp8ycs63z4ax6gmdqr48"; name = "ert-runner"; }; @@ -7652,7 +7736,7 @@ sha256 = "0jq4yp80wiphlpsc0429rg8n50g8l4lf78q0l3nywz2p93smjy9b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/es-lib"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/es-lib"; sha256 = "0mwvgf5385qsp91zsdw75ipif1h90xy277xdmrpwixsxd7abbn0n"; name = "es-lib"; }; @@ -7673,7 +7757,7 @@ sha256 = "0avvkfmqsa1ld5f6cx98sliidzi42iax1c78059r4k5z5kz24x37"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/es-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/es-mode"; sha256 = "1541c7d8gbi4mgxwk886hgsxhq7bfx8is7hjjg80sfn40z6kdwcp"; name = "es-mode"; }; @@ -7694,7 +7778,7 @@ sha256 = "0cjchwrhk7bw87bg10zgcwkga50rvs0jn5v2jf6bbsxbcqx2nfc9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/es-windows"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/es-windows"; sha256 = "112ngkan0hv3y7m71479f46x5gwdmf0vhbqrzs5kcjwlacqlrahx"; name = "es-windows"; }; @@ -7715,7 +7799,7 @@ sha256 = "0cairmqsaghl2ddb2v8zhcwy5ik756m7gkair8xrbigz4jklpcv9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/esa"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/esa"; sha256 = "1kbsv4xsp7p9v0g22had0dr7w5zsr24bgi2xzryy76699pxq4h6c"; name = "esa"; }; @@ -7736,7 +7820,7 @@ sha256 = "0nkmwwx224r50y2xnrz3v26l3ngqshvy5hs861gy4zagwllqfmvc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/eshell-autojump"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/eshell-autojump"; sha256 = "09l2680hknmdbwr4cncv1v4b0adik0c3sm5i9m3qbwyyxm8m41i5"; name = "eshell-autojump"; }; @@ -7757,7 +7841,7 @@ sha256 = "179xqh0rs8w3d03gygg9sy4qp5xqgfgl4c0ycrknip9zrnbmph4i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/eshell-z"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/eshell-z"; sha256 = "14ixazj0nscyqsdv7brqnfr0q8llir1pwb91yhl9jdqypmadpm6d"; name = "eshell-z"; }; @@ -7778,7 +7862,7 @@ sha256 = "16r4j27j9yfdiy841w9q5ykkc6n3wrm7hvfacagb32mydk821ijg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/espuds"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/espuds"; sha256 = "16yzw9l64ahf5v92jzb7vyb4zqxxplq6qh0y9rkfmvm59s4nhk6c"; name = "espuds"; }; @@ -7799,7 +7883,7 @@ sha256 = "0lvr14xlxsdad4ihywkpbwwj9lyal0w4p616ska5rk7gg5i8v74p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ess"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ess"; sha256 = "02kz4fjxr0vrj5mg13cq758nzykizq4dmsijraxv46snvh337v5i"; name = "ess"; }; @@ -7820,7 +7904,7 @@ sha256 = "1ya2ay52gkrd31pmw45ban8kkxgnzhhwkzkypwdhjfccq3ys835x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ess-R-data-view"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ess-R-data-view"; sha256 = "0r2fzwayf3yb7fqk6f31x4xfqiiczwik8qw4rrvkqx2h3s1kz7i0"; name = "ess-R-data-view"; }; @@ -7841,7 +7925,7 @@ sha256 = "0q8pbaa6wahli6fh0kng5zmnypsxi1fr2bzs2mfk3h8vf4nikpv0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ess-R-object-popup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ess-R-object-popup"; sha256 = "1dxwgahfki6d6ywh85ifk3kq6f2a1114kkd8xcv4lcpzqykp93zj"; name = "ess-R-object-popup"; }; @@ -7862,7 +7946,7 @@ sha256 = "1avb6dng4xgw3bp7bw0j60wl6s4y26alfys9vwwj29rlzvjrlh74"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ess-smart-underscore"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ess-smart-underscore"; sha256 = "01pki1xa8zpgvldcbjwg6vmslj7ddf44hsx976xipc95vrdk15r2"; name = "ess-smart-underscore"; }; @@ -7883,7 +7967,7 @@ sha256 = "1pzbd2ka6h5ipiivfwfgq1hq80ww59xvyldmx406mdd5vn7yqk5z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/esup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/esup"; sha256 = "0cv3zc2zzm38ki3kxq58g9sp4gsk3dffa398wky6z83a3zc02zs0"; name = "esup"; }; @@ -7904,7 +7988,7 @@ sha256 = "0k4vqlbk3h2snfiriraxhnjpdxgs49vcaazl191p9s2f799msd8p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/esxml"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/esxml"; sha256 = "0nn074abkxz7p4w59l1za586p5ya392xhl3sx92yys8a3194n6hz"; name = "esxml"; }; @@ -7925,7 +8009,7 @@ sha256 = "077rj7yj6laxyhcsmrmlpg438962jv0fm2yiqx6i365fbgyx0hck"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/eval-in-repl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/eval-in-repl"; sha256 = "10h5vy9wdiqf9dgk1d1bsvp93y8sfcxghzg8zbhhn7m5cqg2wh63"; name = "eval-in-repl"; }; @@ -7946,7 +8030,7 @@ sha256 = "0lwpl9akdxml9f51pgsv0g7k7mr8dvqm94l01i7vq8jl6vd6v6i5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/eval-sexp-fu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/eval-sexp-fu"; sha256 = "17cazf81z4cszflnfp66zyq2cclw5sp9539pxskdf267cf7r0ycs"; name = "eval-sexp-fu"; }; @@ -7967,7 +8051,7 @@ sha256 = "1a3y69s7lb24zdivxcpsjh9l6adxyjqxbpgradnj0q1n6kdyq679"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evalator"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/evalator"; sha256 = "0k6alxwg89gc4v5m2bxmzmj7l6kywhbh4036xgz19q28xnlbr9xk"; name = "evalator"; }; @@ -7983,11 +8067,11 @@ version = "1.2.12"; src = fetchhg { url = "https://bitbucket.com/lyro/evil"; - rev = "5bbbfd0c8832"; - sha256 = "037d5skihr3z1v3pvd1qg10pgygb4adznf6z0bysdvisjny298nv"; + rev = "7ceb2f84a8dc"; + sha256 = "0gqgfqzasz0pi17in9fpsibg52cs3b61s5bs15wkrbx57qx9hbzh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/evil"; sha256 = "09qrhy7l229w0qk3ba1i2xg4vqz8525v8scrbm031lqp30jp54hc"; name = "evil"; }; @@ -8008,7 +8092,7 @@ sha256 = "0lw7fg4gqwj30r0l6k2ni36sxqkf65zf0d0z3rxnpwbxlf8dlkrr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-anzu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/evil-anzu"; sha256 = "19cmc61l370mm4h2m6jw5pdcsvj4wcv9zpa8z7k1fjg57mwmmn70"; name = "evil-anzu"; }; @@ -8029,7 +8113,7 @@ sha256 = "1nh7wa4ynr7ln42x32znzqsmh7ijzy5ymd7rszf49l8677alvazq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-args"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/evil-args"; sha256 = "1bwdvf1i3jc77bw2as1wr1djm8z3a7wms60694xkyqh0m909hs2w"; name = "evil-args"; }; @@ -8050,7 +8134,7 @@ sha256 = "183fdg7rmnnbps0knnj2kmhf1hxk0q91wbqx1flhciq6wq4rilni"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-commentary"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/evil-commentary"; sha256 = "151iiimmkpn58pl9zn40qssfahbrqy83axyl9dcd6kx2ywv5gcxz"; name = "evil-commentary"; }; @@ -8071,7 +8155,7 @@ sha256 = "0cj17gk7cxia2p9xzqnlnmqqbw2afd3x61gfw9fpf65j9wik5hbz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-escape"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/evil-escape"; sha256 = "0rlwnnshcvsb5kn7db5qy39s89qmqlllvg2z8cnxyri8bsssks4k"; name = "evil-escape"; }; @@ -8092,7 +8176,7 @@ sha256 = "0r9gif2sgf84z8qniz6chr32av9g2i38rlyms81m8ssghf0j86ss"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-iedit-state"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/evil-iedit-state"; sha256 = "1dihyh7vqcp7kvfic613k7v33czr93hz04d635awrsyzgy8savhl"; name = "evil-iedit-state"; }; @@ -8113,7 +8197,7 @@ sha256 = "1k2zinchs0jjllp8zkpggckyy63dkyi5yig3p46vh4w45jdzysk5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-leader"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/evil-leader"; sha256 = "154s2nb170hzksmc87wnzlwg3ic3w3ravgsfvwkyfi2q285vmra6"; name = "evil-leader"; }; @@ -8134,7 +8218,7 @@ sha256 = "1n6r8xs670r5qp4b5f72nr9g8nlqcrx1v7yqqlbkgv8gns8n5xgh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-lisp-state"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/evil-lisp-state"; sha256 = "117irac05fs73n7sgja3zd7yh4nz9h0gw5b1b57lfkav6y3ndgcy"; name = "evil-lisp-state"; }; @@ -8155,7 +8239,7 @@ sha256 = "040iam8ayb4q5f2w2cn40y9rgljv2gsa5yf0vky1ayjf1zl57g3n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-magit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/evil-magit"; sha256 = "10mhq6mzpklk5sj28lvd478dv9k84s81ax5jkwwxj26mqdw1ybg6"; name = "evil-magit"; }; @@ -8176,7 +8260,7 @@ sha256 = "01hccc49xxb6lnzr0lwkkwndbk4sv0jyyz3khbcxsgkpzjiydihv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-mark-replace"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/evil-mark-replace"; sha256 = "03cq43vlv1b53w4kw7mjvk026i8rzhhryfb27ddn6ipgc6xh68a0"; name = "evil-mark-replace"; }; @@ -8197,7 +8281,7 @@ sha256 = "0x6rc98g7hvvmlgq31n7qanylrld6dzvg6n8qgzp4s544l0dwfw6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-matchit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/evil-matchit"; sha256 = "01z69n20qs4gngd28ry4kn825cax5km9hn96i87yrvq7nfa64swq"; name = "evil-matchit"; }; @@ -8218,7 +8302,7 @@ sha256 = "0xizqg6azhd9iwkp91sgqkxgg1qhs05cafncbjxw7qvnv68y6qy6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-multiedit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/evil-multiedit"; sha256 = "0p02q9skqw2zhx7sfadqgs7vn518s72856962dam0xw4sqasplfp"; name = "evil-multiedit"; }; @@ -8239,7 +8323,7 @@ sha256 = "16wn74690572n3xpxvnvka524fzswxxni3dy98bwpvsqj6yx2ds5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-nerd-commenter"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/evil-nerd-commenter"; sha256 = "1pa5gh065hqn5mhs47qvjllwdwwafl0clk555mb6w7svq58r6i8d"; name = "evil-nerd-commenter"; }; @@ -8260,7 +8344,7 @@ sha256 = "13jg2xbh4p02x1nj77b6csb93hh56c1nv8kslcq2hjj3caipk4m8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-numbers"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/evil-numbers"; sha256 = "1lpmkklwjdf7ayhv99g9zh3l9hzrwm0hr0ijvbc7yz3n398zn1b2"; name = "evil-numbers"; }; @@ -8281,7 +8365,7 @@ sha256 = "09l0ph9rc941kr718zq0dw27fq6l7rb0h2003ihw7q0a5yr8fpk7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-org"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/evil-org"; sha256 = "18w07fbafry3wb87f55kd8y0yra3s18a52f3m5kkdlcz5zwagi1c"; name = "evil-org"; }; @@ -8302,7 +8386,7 @@ sha256 = "1ja9ggj70wf0nmma4xnc1zdzg2crq9h1cv3cj7cgwjmllflgkfq7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-quickscope"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/evil-quickscope"; sha256 = "0xym1mh4p68i00l1lshywf5fdg1vw3szxp3fk9fwfcg04z6vd489"; name = "evil-quickscope"; }; @@ -8323,7 +8407,7 @@ sha256 = "1xz629qv1ss1fap397k48piawcwl8lrybraq5449bw1vvn1a4d9f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-rsi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/evil-rsi"; sha256 = "0mc39n72420n36kwyf9zpw1pgyih0aigfnmkbywb0yxgj7myc345"; name = "evil-rsi"; }; @@ -8344,7 +8428,7 @@ sha256 = "1jfi2k9dm0cc9bx8klppm965ydhdw17a2n664199vhxrap6g27yk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-search-highlight-persist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/evil-search-highlight-persist"; sha256 = "0iia136js364iygi1mydyzwvizhic6w5z9pbwmhva4654pq8dzqy"; name = "evil-search-highlight-persist"; }; @@ -8365,7 +8449,7 @@ sha256 = "0j2m3rsszivyjhv8bjid5fdqaf1vwp8rf55b27y4vc2489wrw415"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-smartparens"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/evil-smartparens"; sha256 = "1viwrd6gfqmwhlil80pk68dikn3cjf9ddsy0z781z3qfx0j35qza"; name = "evil-smartparens"; }; @@ -8386,7 +8470,7 @@ sha256 = "1ip2ibgsir6rhj7ci2f128z18n1yrwd6pg0i42j1flc3m4shs6ap"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-snipe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/evil-snipe"; sha256 = "0gcmpjw3iw7rjk86b2k6clfigp48vakfjd1a9n8qramhnc85rgkn"; name = "evil-snipe"; }; @@ -8407,7 +8491,7 @@ sha256 = "1rchanv0vq9rx6x69608dlpdybvkn8a9ymx8wzm7gqpz9qh6xqrk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-space"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/evil-space"; sha256 = "1asvh873r1xgffvz3nr653yn8h5ifaphnafp6wf1b1mja6as7f23"; name = "evil-space"; }; @@ -8428,7 +8512,7 @@ sha256 = "0vsf7yzlb2j7c5c7cnk81y1979psy6a9v7klg6c2j9lkcn3cqpvj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-textobj-anyblock"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/evil-textobj-anyblock"; sha256 = "03vk30s2wkcszcjxmh5ww39rihnag9cp678wdzq4bnqy0c6rnjwa"; name = "evil-textobj-anyblock"; }; @@ -8449,7 +8533,7 @@ sha256 = "1rskvkmz30xyy8xfjf2i35f3dxh663gb3plfy3f0j6z17i086jl2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-tutor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/evil-tutor"; sha256 = "1hvc2w5ykrgh62n4sxqqqcdk5sd7nmh6xzv4mir5vf9y2dgqcvsn"; name = "evil-tutor"; }; @@ -8470,7 +8554,7 @@ sha256 = "07cmql8zsqz1qchq2mp3qybbay499dk1yglisig6jfddcmrbbggz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-visual-mark-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/evil-visual-mark-mode"; sha256 = "1qgr2dfhfz6imnlznicl7lplajd1s8wny7mlxs1bkms3xjcjfi48"; name = "evil-visual-mark-mode"; }; @@ -8491,7 +8575,7 @@ sha256 = "11y2jrwbsw4fcx77zkhj1cn2hl1zcdqy00bv3mpbcrs03jywssrk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evil-visualstar"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/evil-visualstar"; sha256 = "135l9hjfbpn0a6p53picnpydi9qs5vrk2rfn64gxa5ag2apcyycy"; name = "evil-visualstar"; }; @@ -8512,7 +8596,7 @@ sha256 = "0739v0m9vj70a55z0canslyqgafzys815i7a0r6bxj2f9iwq6rhb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/evm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/evm"; sha256 = "19l6cs5schbnph0pwhhj66gkxsswd4bmjpy79l9kxzpjf107wc03"; name = "evm"; }; @@ -8533,7 +8617,7 @@ sha256 = "0gs6bi3s2sszc6v2b26929azmn5513kvyin99n4d0ark1jdbjmv2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/eww-lnum"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/eww-lnum"; sha256 = "1y745z4wa90snizq2g0amdwwgjafd6hkrayn93ca50f1wghdbk79"; name = "eww-lnum"; }; @@ -8554,7 +8638,7 @@ sha256 = "0nhc3m88i6rl2y426ksmjbbaqwfrjnwbzqq1bvd6r0bkcwgfwfml"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/exec-path-from-shell"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/exec-path-from-shell"; sha256 = "1j6f52qs1m43878ikl6nplgb72pdbxfznkfn66wyzcfiz2hrvvm9"; name = "exec-path-from-shell"; }; @@ -8575,7 +8659,7 @@ sha256 = "0rvkhjfkhamr3ys9iarblfwvwq7n4wishdjgnwj1lx7m80h1hzbg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/expand-region"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/expand-region"; sha256 = "1c7f1nqsqdc75h22fxxnyg0m4yxj6l23sirk3c71fqj14paxqnwg"; name = "expand-region"; }; @@ -8596,7 +8680,7 @@ sha256 = "106yh793scbyharsk1dvrirkj3c6666w8jqilpkaz78vwyw3zs5y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/express"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/express"; sha256 = "0lhisy4ds96bwpc7k8w9ws1zi1qh0d36nhxsp36bqzfi09ig0nb9"; name = "express"; }; @@ -8617,7 +8701,7 @@ sha256 = "1k2j8szavyq2wy5c0skvs03a88cr9njy7y63b7knh2m92nw4830d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/extend-dnd"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/extend-dnd"; sha256 = "0rknpvp8yw051pg3blvmjpp3c9a82jw7f10mq67ggbz98w227417"; name = "extend-dnd"; }; @@ -8638,7 +8722,7 @@ sha256 = "0jc5wv2hkc89yh5ypa324xlfqdna20msr63g30njxq4g2vd0iqa7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/eyebrowse"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/eyebrowse"; sha256 = "09fkzm8z8nkr4s9fbmfcjc80h50051f48v6n14l76xicglr5p861"; name = "eyebrowse"; }; @@ -8659,7 +8743,7 @@ sha256 = "095ka87144jms5gi9spjcmkq346a56kzzy3in6naaha0djd4d607"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/f"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/f"; sha256 = "0s7fqav0dc9g4y5kqjjyqjs90gi34cahaxyx2s0kf9fwcgn23ja2"; name = "f"; }; @@ -8680,7 +8764,7 @@ sha256 = "0crhkdbxz1ldbrvppi95g005ni5zg99z1271rkrnk5i6cvc4hlq5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fabric"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/fabric"; sha256 = "1mkblsakdhvi10b67bv3j0jsf7hr8lf9sibmprvx8smqsih7l88m"; name = "fabric"; }; @@ -8701,7 +8785,7 @@ sha256 = "01l8dlfpyy97b17djbza46rq11xlbkhd5kn2r26r2xac8klj4pka"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/factlog"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/factlog"; sha256 = "163482vfpa52b5ya5xps4qnclbaql1x0q54gqdwwmm04as8qbfz7"; name = "factlog"; }; @@ -8722,7 +8806,7 @@ sha256 = "05lwcwf412m717yhwpjrswqkm8c3i7391rmiwv2k8xc1vk6dpp4g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fancy-battery"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/fancy-battery"; sha256 = "03rkfdkrzyal9abdiv8c73w10sm974hxf3xg5015hibfi6kzg8ii"; name = "fancy-battery"; }; @@ -8743,7 +8827,7 @@ sha256 = "10ds6nlzm1s5xsp53a52qlzrnph7in6gib67qhgnwpj33wp8gs91"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fancy-narrow"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/fancy-narrow"; sha256 = "15i86jz6rdpva1az7gqp1wbm8kispcfc8h6v9fqsbag9sbzvgcyv"; name = "fancy-narrow"; }; @@ -8764,7 +8848,7 @@ sha256 = "0h32w63vv451797zi6206j529fd4j8l3fp7rqip3s8xn8d4728x1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fastnav"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/fastnav"; sha256 = "08hg256w8k9f5nzgpyl1jykbf28vmvv09kkhzs0s2zhwbl2158a5"; name = "fastnav"; }; @@ -8785,7 +8869,7 @@ sha256 = "03w68zbgprly45i6ps7iviwvjf3acbc7f7acvjpzj2plf0g5i19z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fcitx"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/fcitx"; sha256 = "0a8wd588c26p3czfp5hn2n46f2vwyg5v301sv0y07b55b1i3ynmx"; name = "fcitx"; }; @@ -8806,7 +8890,7 @@ sha256 = "1cxjygg05v8s96c8z6plk3hl34jaiwg7s7dl7dsk20rj5f54kgw7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/feature-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/feature-mode"; sha256 = "0ryinmpqb3c91qcna6gbijcmqv3skxdc947dlr5s1w623z9nxgqg"; name = "feature-mode"; }; @@ -8827,7 +8911,7 @@ sha256 = "0fghhy5xqsdwal4fwlr6hxr5kpnfw71q79mxpp9db59ldnj9f5y9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fill-column-indicator"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/fill-column-indicator"; sha256 = "0w8cmijv7ihij9yyncz6lixb6awzzl7n9qpjj2bks1d5rx46blma"; name = "fill-column-indicator"; }; @@ -8848,7 +8932,7 @@ sha256 = "1r9y9zschavi28c5ysrlh56vxszjfyhh5r36fhn74i0b5iiy15rx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/finalize"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/finalize"; sha256 = "1n0w4kdzc4hv4pprv13lr88gh46slpxdvsc162nqm5mrqp9giqqq"; name = "finalize"; }; @@ -8869,7 +8953,7 @@ sha256 = "1xjb66pydm3yf0jxnm2mri98pxq3b26xvwjkaj1488qgj27i05jr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/find-by-pinyin-dired"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/find-by-pinyin-dired"; sha256 = "150hvih3mdd1dqffgdcv3nn4qhy86s4lhjkfq0cfzgngfwif8qqq"; name = "find-by-pinyin-dired"; }; @@ -8890,7 +8974,7 @@ sha256 = "1mi25nb3h6a7i2lg3dbqkqr8lhh8zsq1bibbib0mhfd0qs07ya5d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/find-file-in-project"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/find-file-in-project"; sha256 = "0aznnv82xhnilc9j4cdmcgh6ksv7bhjjm3pa76hynnyrfn7kq7wy"; name = "find-file-in-project"; }; @@ -8911,7 +8995,7 @@ sha256 = "0wbmmrd7brf4498pdyilz17rzv7221cj8sd4h11gac2r72f1q2md"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/find-file-in-repository"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/find-file-in-repository"; sha256 = "0q1ym06w2yn3nzpj018dj6h68f7rmkxczyl061mirjp8z9c6a9q6"; name = "find-file-in-repository"; }; @@ -8932,7 +9016,7 @@ sha256 = "0lwgbd9zwdv7qs39c3fp4hrc17d9wrwwjgba7a14zwrhb27m7j07"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fiplr"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/fiplr"; sha256 = "1a4w0yqdkz477lfyin4lb9k9qkfpx4350kfxmrqx6dj3aadkikca"; name = "fiplr"; }; @@ -8953,7 +9037,7 @@ sha256 = "1rz56n2gmw11w2yxlhn0i8xmig9m8lxihgaikg65xmy9nqa5j7bj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/firefox-controller"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/firefox-controller"; sha256 = "03y96b3l75w9al8ylijnlb8pcfkwddyfnh8xwig1b6k08zxfgal6"; name = "firefox-controller"; }; @@ -8974,7 +9058,7 @@ sha256 = "174x0qyrwswppc9p1q1nn4424r3zg7g49zk329k5aq18vyjz52d7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fireplace"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/fireplace"; sha256 = "1apcypznq23fc7xgy4xy1c5hvfvjx1xhyq3aaq1lf59v99zchciw"; name = "fireplace"; }; @@ -8995,7 +9079,7 @@ sha256 = "0s8rml5xbskvnjpi8qp7vqflxhh5yis6zr6ay2bxmd2chjlhli55"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/firestarter"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/firestarter"; sha256 = "1cpx664hyrdnpb1jps1x6lm7idwlfjblkfygj48cjz9pzd6ld5mp"; name = "firestarter"; }; @@ -9016,7 +9100,7 @@ sha256 = "17djaz79spms9il71m4xdfjhm58dzswb6fpncngkgx8kxvcy9y24"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fish-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/fish-mode"; sha256 = "0l6k06bs0qdhj3h8vf5fv8c3rbhiqfwszrpb0v2cgnb6xhwzmq14"; name = "fish-mode"; }; @@ -9037,7 +9121,7 @@ sha256 = "16rd23ygh76fs4i7rni94k8gwa9n360h40qmhm65snp31kqnpr1p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fix-input"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/fix-input"; sha256 = "03xpr7rlv0xq1d9126j1fk0c2j7ssf366n0yc8yzm9vq32n9pp4p"; name = "fix-input"; }; @@ -9058,7 +9142,7 @@ sha256 = "1hj5jp4vbkcmnc8l2hqsvjc76f7c9zcsq8znwcwv2nv9xj9hlbkr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fix-word"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/fix-word"; sha256 = "0a8w09cx8p5pkkd4533nd199axkhdhs2a7blp7syfn40bkscx6xc"; name = "fix-word"; }; @@ -9079,7 +9163,7 @@ sha256 = "1hnxdmzqmnp3dr7mpr58pjmigykb3cxwphxzia013kfi37ipf5a0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fixmee"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/fixmee"; sha256 = "0wnp6h8f547fsi1lkk4ajny7g21dnr76qfhxl82n0l5h1ps4w8mp"; name = "fixmee"; }; @@ -9107,7 +9191,7 @@ sha256 = "10irvd9bi25fbx66dlc3v6zcqznng0aqcdb8656cz0qx7hrz56pw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/floobits"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/floobits"; sha256 = "1jpk0q4mkf9ag1rqyai993nz5ngzfvxq9n9avmaaq59gkk9cjraf"; name = "floobits"; }; @@ -9128,7 +9212,7 @@ sha256 = "0sjybrcnb2sl33swy3q664vqrparajcl0m455gciiih2j87hwadc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flx"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flx"; sha256 = "04plfhrnw7jx2jaxhbhw4ypydfcb8v0x2m5hyacvrli1mca2iyf9"; name = "flx"; }; @@ -9149,7 +9233,7 @@ sha256 = "0sjybrcnb2sl33swy3q664vqrparajcl0m455gciiih2j87hwadc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flx-ido"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flx-ido"; sha256 = "00wcwbvfjbcx8kyap7rl1b6nsgqdwjzlpv6al2cdpdd19rm1vgdc"; name = "flx-ido"; }; @@ -9159,22 +9243,22 @@ license = lib.licenses.free; }; }) {}; - flycheck = callPackage ({ cl-lib ? null, dash, emacs, fetchFromGitHub, fetchurl, let-alist, lib, melpaBuild, pkg-info, seq }: + flycheck = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, let-alist, lib, melpaBuild, pkg-info, seq }: melpaBuild { pname = "flycheck"; - version = "0.25.1"; + version = "26"; src = fetchFromGitHub { owner = "flycheck"; repo = "flycheck"; - rev = "efaf2e3894428fec065ac6ab0b204db66dbdaa85"; - sha256 = "19mnx2zm71qrf7qf3mk5kriv5vgq0nl67lj029n63wqd8jcjb5fi"; + rev = "869711bca61eb4765a6eda13986c39e96edfd419"; + sha256 = "1sknl33awkabphs4j4yrbgdkh7rscn957wd4wcmv7nbsp6jc37xm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flycheck"; sha256 = "045k214dq8bmrai13da6gwdz97a2i998gggxqswqs4g52l1h6hvr"; name = "flycheck"; }; - packageRequires = [ cl-lib dash emacs let-alist pkg-info seq ]; + packageRequires = [ dash emacs let-alist pkg-info seq ]; meta = { homepage = "https://melpa.org/#/flycheck"; license = lib.licenses.free; @@ -9191,7 +9275,7 @@ sha256 = "14idjjz6fhmq806mmncmqnr9bvcjks6spin8z6jb0gqcg1dbhm06"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-apertium"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flycheck-apertium"; sha256 = "1cc15sljqs6gvb3wiw7n1wkd714qkvfpw6l1kg4lfx9r4jalcvw7"; name = "flycheck-apertium"; }; @@ -9212,7 +9296,7 @@ sha256 = "1c3igqfd42dm42kfjm2q2xgr673vws10n9jn2jjlsk4g33brc7h4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-cask"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flycheck-cask"; sha256 = "1lq559nyhkpnagncj68h84i3cq85vhdikr534kj018n2zcilsyw7"; name = "flycheck-cask"; }; @@ -9233,7 +9317,7 @@ sha256 = "1s2zq97d7ryif6rlbvriz36dh23wmwi67v4q6krl77dfzcs705b3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-checkbashisms"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flycheck-checkbashisms"; sha256 = "1rq0ymlr1dl39v0sfyjmdv4pq3q9116cz9wvgpvfgalq8759q5sz"; name = "flycheck-checkbashisms"; }; @@ -9254,7 +9338,7 @@ sha256 = "1i824iyjsg4d786kx5chsb64wlqd8vn2vsrhq6rmdx2x3gzdfcsx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-clojure"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flycheck-clojure"; sha256 = "1b20gcs6fvq9pm4nl2qwsf34sg6wxngdql921q2pyh5n1xsxhm28"; name = "flycheck-clojure"; }; @@ -9275,7 +9359,7 @@ sha256 = "11xc08xld758xx9myqjsiqz8vk3gh4d9c4yswswvky6mrx34c0y5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-color-mode-line"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flycheck-color-mode-line"; sha256 = "0hw19nsh5h2l8qbp7brqmml2fhs8a0x850vlvq3qfd7z248gvhrq"; name = "flycheck-color-mode-line"; }; @@ -9296,7 +9380,7 @@ sha256 = "1ap5hgvaccmf2xkfvyp7rqcfjwmiy6mhr6ccgahxm2z0vm51kpyh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-dmd-dub"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flycheck-dmd-dub"; sha256 = "0pg3sf7h6xqv65yqclhlb7fx1mp2w0m3qk4vji6m438kxy6fhzqm"; name = "flycheck-dmd-dub"; }; @@ -9317,7 +9401,7 @@ sha256 = "0frgyj57mrggq5ib6xi71696m97ch0bw6cc208d2qbnb55sf4fgb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-gometalinter"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flycheck-gometalinter"; sha256 = "1bnvj5kwgbh0dv989rsjcvmcij1ahwcz0vpr6a8f2p6wwvksw1h2"; name = "flycheck-gometalinter"; }; @@ -9338,7 +9422,7 @@ sha256 = "0143lcn6g46g7skm4r6lqq09s8mr3268rikbzlh65qg80rpg9frj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-haskell"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flycheck-haskell"; sha256 = "12lgirz3j6n5ns2ikq4n41z0d33qp1lb5lfz1q11qvpbpn9d0jn7"; name = "flycheck-haskell"; }; @@ -9359,7 +9443,7 @@ sha256 = "136mdg21a8sqxhijsjsvpli7r7sb40nmf80p6gmgb1ghwmhlm8k3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-hdevtools"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flycheck-hdevtools"; sha256 = "0ahvai1q4x59ryiyccvqvjisgqbaiahx4gk8ssaxhblhj0sqga93"; name = "flycheck-hdevtools"; }; @@ -9380,7 +9464,7 @@ sha256 = "0qa5a8wzvzxwqql92ibc9s43k8sj3vwn7skz9hfr8av0skkhx996"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-irony"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flycheck-irony"; sha256 = "0qk814m5s7mjba659llml0gy1g3045w8l1g73w2pnm1pbpqdfn3z"; name = "flycheck-irony"; }; @@ -9401,7 +9485,7 @@ sha256 = "1pdssw5k88ym5fczllfjv26sp4brlyrywnlzq5baha5pq91h9cb6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-ledger"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flycheck-ledger"; sha256 = "0807pd2km4r60wgd6jakscbx63ab22d9kvf1cml0ad8wynsap7jl"; name = "flycheck-ledger"; }; @@ -9422,7 +9506,7 @@ sha256 = "1phfarws2aajkgcl96hqa4ydmb1yncg10q2ldzf8ff6yd6mvk51l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-ocaml"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flycheck-ocaml"; sha256 = "1cv2bb66aql2kj1y1gsl4xji8yrzrq6rd8hxxs5vpfsk47052lf7"; name = "flycheck-ocaml"; }; @@ -9443,7 +9527,7 @@ sha256 = "0aa8cnh9f0f2zr2kkba2kf9djzjnsd51fzj8l578pbj016zdarwd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-package"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flycheck-package"; sha256 = "0068kpia17rsgjdmzsjnw0n6x5z9jvfxggxlzkszvwsx73mvcs2d"; name = "flycheck-package"; }; @@ -9453,6 +9537,27 @@ license = lib.licenses.free; }; }) {}; + flycheck-pony = callPackage ({ fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }: + melpaBuild { + pname = "flycheck-pony"; + version = "0.2.1"; + src = fetchFromGitHub { + owner = "SeanTAllen"; + repo = "flycheck-pony"; + rev = "3d3387133a44f5b3f0fb178ef4addf6e1ce1df2f"; + sha256 = "1da10q378k5kbcj0rrpzhm7r3ym4rfwc7v1ialcndbmflsn09m5s"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flycheck-pony"; + sha256 = "18w1d7y3jsmsc4wg0909p72cnvbxzsmnirmrahhwgsb963fij5qk"; + name = "flycheck-pony"; + }; + packageRequires = [ flycheck ]; + meta = { + homepage = "https://melpa.org/#/flycheck-pony"; + license = lib.licenses.free; + }; + }) {}; flycheck-pos-tip = callPackage ({ dash, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild, pos-tip }: melpaBuild { pname = "flycheck-pos-tip"; @@ -9464,7 +9569,7 @@ sha256 = "0v23yc8znzjp44lrpfzqb4hc3psad14hsnvqcp8f1yyhgvdx35n8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-pos-tip"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flycheck-pos-tip"; sha256 = "09i2jmwj8b915fhyczwdb1j7c551ggbva33avis77ga1s9v3nsf9"; name = "flycheck-pos-tip"; }; @@ -9485,7 +9590,7 @@ sha256 = "1xxvri9ax5cjrkxhjqhs7zqbch9cx8kvrn7sg611frl68qawkjsm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-status-emoji"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flycheck-status-emoji"; sha256 = "0p42424b1fsmfcjyl252vhblppmpjwd6br2yqh10fi60wmprvn2p"; name = "flycheck-status-emoji"; }; @@ -9506,7 +9611,7 @@ sha256 = "0azjr5mfb3hnb66m1b2319i035mn5i9qz24y7fj5crhnc9vp8w3s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-tip"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flycheck-tip"; sha256 = "0zab1zknrnsw5xh5pwzzcpz7p40bbywkf9zx99sgsd6b5j1jz656"; name = "flycheck-tip"; }; @@ -9527,7 +9632,7 @@ sha256 = "094alkjrh285qy3sds8dkvxsbnaxnppz1ab0i5r575lyhli9lxia"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flycheck-ycmd"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flycheck-ycmd"; sha256 = "0m99ssynrqxgzf32d35n17iqyh1lyc6948inxpnwgcb98rfamchv"; name = "flycheck-ycmd"; }; @@ -9548,7 +9653,7 @@ sha256 = "1svj5n7mmzhq03azlv4n33rz0nyqb00qr8ihdbc8hh2xnp63j5rc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flymake-coffee"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flymake-coffee"; sha256 = "1aig1d4fgjdg31vrg8k43z5hbqiydgfvxi45p1695s3kbdm8pr2d"; name = "flymake-coffee"; }; @@ -9569,7 +9674,7 @@ sha256 = "054ws88fcfz3hf3cha7dvndm52v5n4jc4vzif1lif44xq0iggwqa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flymake-css"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flymake-css"; sha256 = "0kqm3wn9symqc9ivnh11gqgq8ql2bhpqvxfm86d8vwm082hd92c5"; name = "flymake-css"; }; @@ -9590,7 +9695,7 @@ sha256 = "1j35k52na02b59yglfb48w6m5qzydvzqfsylb8ax5ks0f287yf0c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flymake-easy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flymake-easy"; sha256 = "19p6s9fllgvs35v167xf624k5dn16l9fnvaqcj9ks162gl9vymn7"; name = "flymake-easy"; }; @@ -9611,7 +9716,7 @@ sha256 = "002s01cymgx4z4l3j2pqirg7899pljdx2hmbz8k6cksdxlymzmkd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flymake-gjshint"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flymake-gjshint"; sha256 = "19jcd5z4883z3fzlrdn4fzmsvn16f4hfnhgw4vbs5b0ma6a8ka44"; name = "flymake-gjshint"; }; @@ -9632,7 +9737,7 @@ sha256 = "1b3lf5jwan03k7rb97g4bb982dacdwsfdddnwc0inx9gs3qq1zni"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flymake-haml"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flymake-haml"; sha256 = "0dmdhh12h4xrx6mc0qrwavngk2sx0l4pfqkjjyavabsgcs9wlgp1"; name = "flymake-haml"; }; @@ -9653,7 +9758,7 @@ sha256 = "0k1qc0r0gr7f9l5if2a67cv4k73z5yxd6vxd6l1bqw500y0aajxz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flymake-haskell-multi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flymake-haskell-multi"; sha256 = "0cyzmmghwkkv6020s6n436lwymi6dr49i7gkci5n0hw5pdywcaij"; name = "flymake-haskell-multi"; }; @@ -9674,7 +9779,7 @@ sha256 = "1ygg51r4ym4x7h4svizwllsvr72x9np6jvjqpk8ayv3w2fpb9l31"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flymake-hlint"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flymake-hlint"; sha256 = "0wq1ijhn3ypy31yk8jywl5hnz0r0vlhcxjyznzccwqbdc5vf7b2x"; name = "flymake-hlint"; }; @@ -9695,7 +9800,7 @@ sha256 = "00zkm3wqlss386qd6jiq0siga7c48n5ykh0vf9q5v83rmpd79yri"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flymake-jslint"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flymake-jslint"; sha256 = "1cq8fni4p0qhigx0qh34ypmcsbnilra1ixgnrn9mgg8x3cvcm4cm"; name = "flymake-jslint"; }; @@ -9716,7 +9821,7 @@ sha256 = "0rzlw80mi39147yqnpzcvw9wvr5svksd3kn6s3w8191f2kc6xzzv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flymake-json"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flymake-json"; sha256 = "1p5kajiycpqy2id664bs0fb1mbf73a43qqfdi4c57n6j9x7fxp4d"; name = "flymake-json"; }; @@ -9737,7 +9842,7 @@ sha256 = "0ggvmsjj6p6a7cwr2bzhlcf8ab4v6a2bz5djsscd2ryy570p367z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flymake-less"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flymake-less"; sha256 = "05k5daphxy94164c73ia7f4l1gv2cmlw8xzs8xnddg7ly22gjhi0"; name = "flymake-less"; }; @@ -9758,7 +9863,7 @@ sha256 = "11r982h5fhjkmm9ld8wfdip0ghinw523nm1w4fmy830g0bbkgkrq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flymake-perlcritic"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flymake-perlcritic"; sha256 = "0hibnh463wzhvpix7gygpgs04gi6salwjrsjc6d43lxlsn3y1im8"; name = "flymake-perlcritic"; }; @@ -9779,7 +9884,7 @@ sha256 = "0dzyid0av9icp77wv0zcsygpw46z24qibq1ra0iwnkzl3kqvkyzh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flymake-php"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flymake-php"; sha256 = "12ds2l5kvs7fz38syp4amasbjkpqd36rlpajnb3xxll0hbk6vffk"; name = "flymake-php"; }; @@ -9800,7 +9905,7 @@ sha256 = "0l8qpcbzfi32h3vy7iwydx3hg2w60x9l3v3rabzjx412m5d00gsh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flymake-python-pyflakes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flymake-python-pyflakes"; sha256 = "0asbjxv03zkbcjayanv13qzbv4z7b6fi0z1j6yv7fl6q9mgvm497"; name = "flymake-python-pyflakes"; }; @@ -9821,7 +9926,7 @@ sha256 = "0d2vmpgr5c2cbpxcqm5x1ckfysbpwcbaa9frcnp2yfp8scvkvqj0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flymake-ruby"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flymake-ruby"; sha256 = "1shr6d03vx85nmyxnysglzlc1pz0zy3n28nrcmxqgdm02g197bzr"; name = "flymake-ruby"; }; @@ -9842,7 +9947,7 @@ sha256 = "0c74qdgy9c4hv3nyjnbqdzypbg9399vq3p5ngp5lasc7iz6vi0h8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flymake-sass"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flymake-sass"; sha256 = "0sz6n5r9pdphgvvaljg9zdwj3dqayaxzxmb4s8x4b05c8yx3ba0d"; name = "flymake-sass"; }; @@ -9863,7 +9968,7 @@ sha256 = "0c2lz1p91yhprmlbmp0756d96yiy0w92zf0c9vlp0i9abvd0cvkc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flymake-shell"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flymake-shell"; sha256 = "13ff4r0k29yqgx8ybxz7hh50cjsadcjb7pd0075s9xcrzia5x63i"; name = "flymake-shell"; }; @@ -9884,7 +9989,7 @@ sha256 = "1g09s57b773nm9xqslzbin5i2h18k55nx00s5nnkvx1qg0n0mzkm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flyspell-lazy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flyspell-lazy"; sha256 = "0lzazrhsfh5m7n57dzx0v46d5mg87wpwwkjzf5j9gpv1mc1xfg1y"; name = "flyspell-lazy"; }; @@ -9905,7 +10010,7 @@ sha256 = "1rk7fsill0salrhb4anbf698nd21nxj8pni35brbmv64nj9fhfic"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/flyspell-popup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/flyspell-popup"; sha256 = "0wp15ra1ry6xpwal6mb53ixh3f0s4nps0rdyfli7hhaiwbr9bhql"; name = "flyspell-popup"; }; @@ -9926,7 +10031,7 @@ sha256 = "0r2j238iyxnww60xpbxggjmz6y2waayw4m51f0l39hszbhags2cv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/fm"; sha256 = "118d8fbhlv6i2rsyfqdhi841p96j7q4fab5qdg95ip40wq02dg4f"; name = "fm"; }; @@ -9947,7 +10052,7 @@ sha256 = "0aj5qxzlfxxp7z27fiw9bvir5yi2zj0xzj5kbh17ix4wnhi03bhc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/focus"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/focus"; sha256 = "0jw26j8npyl3dgsrs7ap2djxmkafn2hl6gfqvi7v76bccs4jkyv8"; name = "focus"; }; @@ -9968,7 +10073,7 @@ sha256 = "1k8z30imlxvqm7lv12kgqdfgc5znxyvl9jxi8j2ymmwlgy11f726"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fold-dwim"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/fold-dwim"; sha256 = "0c9yxx45zlhb1h4ldgkjv7bndwlagpyingaaqn9dcsxidrvp3p5x"; name = "fold-dwim"; }; @@ -9989,7 +10094,7 @@ sha256 = "14jvbkahwvv4wb0s9vp8gqmlpv1d4269j5rsjxn79q5pawjzslxw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fold-dwim-org"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/fold-dwim-org"; sha256 = "0812p351rzvqcfn00k92nfhlg3y772y4z4b9f0xqnpa935y6harn"; name = "fold-dwim-org"; }; @@ -10010,7 +10115,7 @@ sha256 = "1cbabpyp66nl5j8yhyj2jih4mhaljxvjh9ij05clai71z4598ahn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fold-this"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/fold-this"; sha256 = "1iri4a6ixw3q7qr803cj2ik7rvmww1b6ybj5q2pvkf1v25r8655d"; name = "fold-this"; }; @@ -10031,7 +10136,7 @@ sha256 = "1k90w8v5rpswqb8fn1cc8sq5w12gf4sn6say5dhvqd63512b0055"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/font-utils"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/font-utils"; sha256 = "0k33jdchjkj7j211a23kfp5axg74cfsrrq4axsb1pfp124swh2n5"; name = "font-utils"; }; @@ -10052,7 +10157,7 @@ sha256 = "0qq13jhn9i2ls6n3fbay4i2r0hfs426pkmmif43b87gjxb510irc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fontawesome"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/fontawesome"; sha256 = "07hn4s929xklc74j8s6pd61rxmxw3911dq47wql77vb5pijv6dr3"; name = "fontawesome"; }; @@ -10073,7 +10178,7 @@ sha256 = "05m1ryn9fi4m49d7p68q25svrzfxpl1h9sisa8jlvbiapwmghvgj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/forecast"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/forecast"; sha256 = "0whag2n1120384w304g0w4bqr7svdxxncdhnz4rznfpxlgiw2rsc"; name = "forecast"; }; @@ -10094,7 +10199,7 @@ sha256 = "199kybf2bvywqfnwr5w893km82829k1j7sp079y6s2601hq8ylw9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/foreman-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/foreman-mode"; sha256 = "0p3kwbld05wf3dwcv0k6ynz727fiy0ik2srx4js9wvagy57x98kv"; name = "foreman-mode"; }; @@ -10115,7 +10220,7 @@ sha256 = "171jna631b2iqcimfsik9c66gii8nc0zdb58m077w00rn7rcxbh2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/form-feed"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/form-feed"; sha256 = "1abwjkzi3irw0jwpv3f584zc72my9n8iq8zp5s0354xk6iwrl1rh"; name = "form-feed"; }; @@ -10136,7 +10241,7 @@ sha256 = "0mikksamljps1czacgqavlnzzhgs8s3f8q4jza6v3csf8kgp5zd0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/format-sql"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/format-sql"; sha256 = "0684xqzs933vj9d3n3lv7afk4gii41kaqykbb05cribaswapsanj"; name = "format-sql"; }; @@ -10157,7 +10262,7 @@ sha256 = "1zy45s1m1injwr4d1qvpnvfvv4nkkv9mricshxjannsjfbz09ra7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fountain-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/fountain-mode"; sha256 = "1i55gcjy8ycr1ww2fh1a2j0bchx1bsfs0zd6v4cv5zdgy7vw6840"; name = "fountain-mode"; }; @@ -10178,7 +10283,7 @@ sha256 = "1vznkbly0lyh5kri9lcgy309ws96q3d5m1lghck9l8ain8hphhqz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/frame-restore"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/frame-restore"; sha256 = "0b321iyf57nkrm6xv8d1aydivrdapdgng35zcnrg298ws2naysvm"; name = "frame-restore"; }; @@ -10199,7 +10304,7 @@ sha256 = "1c3yx9j3q8fkfiay4nzcabsq9i4ydqf6vxk8vv80h78gg9afrzrj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fringe-helper"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/fringe-helper"; sha256 = "1vki5jd8jfrlrjcfd12gisgk12y20q3943i2qjgg4qvcj9k28cbv"; name = "fringe-helper"; }; @@ -10220,7 +10325,7 @@ sha256 = "00api7q86mrfv8z2g7skh34mhlkxwymf4gfpxa6zcvirhlpglyxr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fsharp-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/fsharp-mode"; sha256 = "07pkj30cawh0diqhrp3jkshgsd0i3y34rdnjb4af8mr7dsbsxb6z"; name = "fsharp-mode"; }; @@ -10239,7 +10344,7 @@ sha256 = "146iqy3rjr5yv19wbaq5dqm3kjxyjly7i27qjvk0yj1yja2y4j5k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fuel"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/fuel"; sha256 = "0m24p2788r4xzm56hm9kmpzcskwh82vgbs3hqfb9xygpl4isp756"; name = "fuel"; }; @@ -10260,7 +10365,7 @@ sha256 = "0c3w3xs2jbdqgsqw0qmdbwii6p395qfznird4gg0hfr7lby2kmjq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/full-ack"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/full-ack"; sha256 = "09ikhyhpvkcl6yl6pa4abnw6i7yfsx5jkmzypib94w7khikvb309"; name = "full-ack"; }; @@ -10281,7 +10386,7 @@ sha256 = "1narmlcd8ycwkmsrgk64l7q0ljsbq2fsikl8hjbrsc20nma032m4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fullframe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/fullframe"; sha256 = "08sh8lmb6g8asv28fcb36ilcn0ka4fc6ka0pnslid0h4c32fxp2a"; name = "fullframe"; }; @@ -10302,7 +10407,7 @@ sha256 = "0m7fcw0cswypiwi5abg6vhw7a3agx9vhp10flbbbji6lblb0fya8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/function-args"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/function-args"; sha256 = "13yfscr993pll5yg019v9dwy71g123a166w114n2m78h0rbnzdak"; name = "function-args"; }; @@ -10323,7 +10428,7 @@ sha256 = "1g7my9ha5cnwg3pjwa86wncg5gphv18xpnpmj3xc3vg7z5m45rss"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fuzzy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/fuzzy"; sha256 = "1hwdh9bx4g4vzzyc20vdwxsii611za37kc9ik40kwjjk62qmll8h"; name = "fuzzy"; }; @@ -10344,7 +10449,7 @@ sha256 = "0c3g0yfclczdh6nxmg9lljjf288zibqy51bhh1b1cgdmxcbpg8bv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fvwm-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/fvwm-mode"; sha256 = "07y32cnp4qfhncp7s24gmlxljdrj5miicinfaf4gc7hihb4bkrkb"; name = "fvwm-mode"; }; @@ -10365,7 +10470,7 @@ sha256 = "08qnyr945938hwjg1ypkf2x4mfxbh3bbf1xrgz1rk2ddrfv7hmkm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fwb-cmds"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/fwb-cmds"; sha256 = "0wnjvi0v0l2h1mhwlsk2d8ggwh3nk7pks48l55gp18nmj00jxycx"; name = "fwb-cmds"; }; @@ -10378,15 +10483,15 @@ fxrd-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "fxrd-mode"; - version = "0.4"; + version = "0.6"; src = fetchFromGitHub { owner = "msherry"; repo = "fxrd-mode"; - rev = "7b49c7bec2ed4a579fa0234555667377e8ba0f53"; - sha256 = "1sk2z71xfi4wqb7ap8jvad8cbzdbilwzqx9vy45zmgx1jh7g4ba9"; + rev = "eac0b26a2c16197f6b03f7301e6e7858aca9f91e"; + sha256 = "0vfh4azibv71mj86bgl4rfbm96pw9l95r87mwhzx42j36rxffl73"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fxrd-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/fxrd-mode"; sha256 = "17zimg64lqc1yh9gnp5izshkvviz996aym7q6n9p61a4kqq37z4r"; name = "fxrd-mode"; }; @@ -10407,7 +10512,7 @@ sha256 = "0rjn4z7ssl1jy0brvsci44mhpig3zkdbcj8gcylzznhz0qfk1ljj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/fzf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/fzf"; sha256 = "0jjzm1gq85fx1gmj6nqaijnjws9bm8hmk40ws3x7fmsp41qq5py0"; name = "fzf"; }; @@ -10428,7 +10533,7 @@ sha256 = "16x3fz2ljrmqhjy7w96fhp3j9ja2gib042c363yfrzwa7q5rxzd2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gams-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/gams-mode"; sha256 = "0hx9mv4sqskz4nn7aks64hqd4vn3m7b34abzhy9bnmyw6d5zzfci"; name = "gams-mode"; }; @@ -10449,7 +10554,7 @@ sha256 = "1q9bz294bc6bplwfrfzsczh444v9152wv7zm2l1pcpwv8n8581p6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gather"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/gather"; sha256 = "1f0cqqp1a7w8g1pfvzxxb0hjrxq4m79a4n85dncqj2xhjxrkm0xk"; name = "gather"; }; @@ -10470,7 +10575,7 @@ sha256 = "1667zln7bav0bdhrc4b5z36n8rn36xvwh4y9ffgns67zfgwi64kk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/geiser"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/geiser"; sha256 = "067rrjvyn5sz60w9h7qn542d9iycm2q4ryvx3n6xlard0dky5596"; name = "geiser"; }; @@ -10491,7 +10596,7 @@ sha256 = "08cw1fa25kbhbq2sp1cpn90bz38i9hjfdj93xf6wvki55b52s0nn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/genrnc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/genrnc"; sha256 = "1nwbdscl0yh9j1n421can93m6s8j9dkyb3xmpampr6x528g6z0lm"; name = "genrnc"; }; @@ -10512,7 +10617,7 @@ sha256 = "0344w4sbd6wlgl13j163v0hzjw9nwhvpr5s7658xsdd90wp4i701"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/german-holidays"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/german-holidays"; sha256 = "0fgrxdgyl6va6axjc5l4sp90pyqaz5zha1g73xyhbxblshm5dwxn"; name = "german-holidays"; }; @@ -10533,7 +10638,7 @@ sha256 = "1m9ra9qp7bgf6anfqyn56n3xa9a25ran10k9wd355qknd5skq1zz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ggo-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ggo-mode"; sha256 = "1403x530n90jlfz3lq2vfiqx84cxsrhgs6hhmniq960cjj31q35p"; name = "ggo-mode"; }; @@ -10554,7 +10659,7 @@ sha256 = "1qjh7av046ax4240iw40hv5fc0k23c36my9hili7fp4y2ak99l8n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ggtags"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ggtags"; sha256 = "1cmry4knxbx9257ivhfxsd09z07z3g3wjihi99nrwmhb9h4mpqyw"; name = "ggtags"; }; @@ -10575,7 +10680,7 @@ sha256 = "0a5v91k9gm9vv15d3m8czicv8n39f0hvqhcr6lfw0w82n26xwsms"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gh"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/gh"; sha256 = "1141l8pas3m755yzby4zsan7p81nbnlch3kj1zh69qzjpgqp30c0"; name = "gh"; }; @@ -10596,7 +10701,7 @@ sha256 = "1m5q2s9nxm0m18njaxzryjly8rl3m598r94nn53xpazd4i5ln8cg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ghc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ghc"; sha256 = "02nc7a9khqpd4ca2snam8dq72m53q8x7v5awx56bjq31z6vcmav5"; name = "ghc"; }; @@ -10617,7 +10722,7 @@ sha256 = "1ywwyc2kz1c1s26c412nmzh55cinh84cfiazyyi3jsy5zzwhrbhi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ghc-imported-from"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ghc-imported-from"; sha256 = "10cxz4c341lknyz4ns63bri00mya39278xav12c73if03llsyzy5"; name = "ghc-imported-from"; }; @@ -10638,7 +10743,7 @@ sha256 = "0q3ps5f6mr9hyf6nq1wshcm1z6a5yhskqd7dbbwq5dm78552z6z8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/gist"; sha256 = "053fl8aw0ram9wsabzvmlm5w2klwd2pgcn2w9r1yqfs4xqja5sd3"; name = "gist"; }; @@ -10659,7 +10764,7 @@ sha256 = "06ws3x5qa92drmn6rcp502jk2yil6q9gkzdmb2gww9gb2g695wl5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/git"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/git"; sha256 = "1nd2yvfgin13m368gjn7xah99glspnam4g4fh348x4makxcaw8w5"; name = "git"; }; @@ -10680,7 +10785,7 @@ sha256 = "0psmr7749nzxln4b500sl3vrf24x3qijp12ir0i5z4x25k72hrlh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/git-auto-commit-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/git-auto-commit-mode"; sha256 = "0nf4n63xnzcsizjk1yl8qvqj9wjdqy57kvn6r736xvsxwzd44xgl"; name = "git-auto-commit-mode"; }; @@ -10701,7 +10806,7 @@ sha256 = "0a3ws852ypi34ash39srkwzkfish4n3c5lma10d9xzddjrwapgj9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/git-command"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/git-command"; sha256 = "1hsxak63y6648n0jkzl5ajxg45w84qq8vljvjh0bmwfrbb67kwbg"; name = "git-command"; }; @@ -10722,7 +10827,7 @@ sha256 = "0qdahg3vqha391nnspbqa5bjvi2g3jb277c5wzbfs132m4n076j2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/git-commit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/git-commit"; sha256 = "1i7122fydqga68cilgzir80xfq77hnrw75zrvn52mjymfli6aza2"; name = "git-commit"; }; @@ -10743,7 +10848,7 @@ sha256 = "0n02nss7gp0m898g7zw4rkj2kzrdiwp6mli0753p1fqph28j0gvm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/git-gutter"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/git-gutter"; sha256 = "19s344i95piixlzq4mjgmgjw7cy8af02z6hg89jjjdbxrfl4i2fg"; name = "git-gutter"; }; @@ -10764,7 +10869,7 @@ sha256 = "1cw5x1w14lxy8mqpxdrd9brgps0nig2prjjjda4a19wfsvy3clmv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/git-gutter-fringe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/git-gutter-fringe"; sha256 = "10k07dzmkxsxzwc70vpv05rxjyps9494y6k7yhlv8d46x7xjyp0z"; name = "git-gutter-fringe"; }; @@ -10785,7 +10890,7 @@ sha256 = "1c7ijbpa7xw831k55cdm2gl8r597rxnp22jcmqnfpwqkqmk48ln9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/git-gutter-fringe+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/git-gutter-fringe+"; sha256 = "1zkjb8p08cq2nqskn79rjszlhp9mrblplgamgi66yskz8qb1bgcc"; name = "git-gutter-fringe-plus"; }; @@ -10806,7 +10911,7 @@ sha256 = "101hracd77mici778x3ixwrcicd6fqkcr9z76kapkr0dq5z42yjb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/git-gutter+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/git-gutter+"; sha256 = "1w78p5cz6kyl9kmndgvwnfrs80ha707s8952hycrihgfb6lixmp0"; name = "git-gutter-plus"; }; @@ -10827,7 +10932,7 @@ sha256 = "02p73q0kl9z44b9a2bhqg03mkqx6gf61n88qlwwg4420dxrf7sbc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/git-lens"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/git-lens"; sha256 = "1vv3s89vk5ncinqh2f724z0qbbzp8g4y5y670ryy56w1l6v2acfb"; name = "git-lens"; }; @@ -10848,7 +10953,7 @@ sha256 = "0a1kxdz05ly9wbzyxcb79xlmy11q38xplf5s8w8klmyajdn43g1j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/git-link"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/git-link"; sha256 = "1vqabnmdw8pxd84c15ghh1rnglwb5i4zxicvpkg1ci8xalayn1c7"; name = "git-link"; }; @@ -10869,7 +10974,7 @@ sha256 = "139yivbxdpmv8j6qz406769b040nbmj3j8r28n9gqy54zlwblgv8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/git-messenger"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/git-messenger"; sha256 = "1rnqsv389why13cy6462vyq12qc2zk58p01m3hsazp1gpfw2hfzn"; name = "git-messenger"; }; @@ -10890,7 +10995,7 @@ sha256 = "1hyq3il03cm6apfawps60r4km8r6pw0vphzba30smsqfk50z3ya3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/git-ps1-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/git-ps1-mode"; sha256 = "15gswi9s0m3hrsl1qqyjnjgbglsai95klbdp51h3pcq7zj22wkn6"; name = "git-ps1-mode"; }; @@ -10911,7 +11016,7 @@ sha256 = "1brz9dc7ngywndlxbqbi3pbjbjydgqc9bjzf05lgx0pzr1ppc3w3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/git-timemachine"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/git-timemachine"; sha256 = "0nhl3g31r4a8j7rp5kbh17ixi16w32h80bc92vvjj3dlmk996nzq"; name = "git-timemachine"; }; @@ -10932,7 +11037,7 @@ sha256 = "0igawn43i81icshimj5agv33ab120hd6182knlrn3i46p7lcs3lx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/git-wip-timemachine"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/git-wip-timemachine"; sha256 = "02fi51k6l23cgnwjp507ylkiwb8azmnhc0fips68nwn9dghzp6dw"; name = "git-wip-timemachine"; }; @@ -10953,7 +11058,7 @@ sha256 = "0ksqfr0l415ynhxpqpcb84bk2bapvczwnpikp45kmfqq91p61xfc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gitattributes-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/gitattributes-mode"; sha256 = "1gjs0pjh6ap0h54savamzx94lq6vqrg58jxqaq5n5qplrbg15a6x"; name = "gitattributes-mode"; }; @@ -10974,7 +11079,7 @@ sha256 = "0j0w6ywhiapmx7dk20yw3zgf8803kmccnjsr664am3g85kbb644v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gitconfig"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/gitconfig"; sha256 = "126znl1c4vwgskj7ka9id8v2bdrdn5nkyx3mmc6cz9ylc27ainm7"; name = "gitconfig"; }; @@ -10995,7 +11100,7 @@ sha256 = "0ksqfr0l415ynhxpqpcb84bk2bapvczwnpikp45kmfqq91p61xfc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gitconfig-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/gitconfig-mode"; sha256 = "0hqky40kcgxdnghnf56gpi0xp7ik45ssia1x84v0mvfwqc50dgn1"; name = "gitconfig-mode"; }; @@ -11016,7 +11121,7 @@ sha256 = "07vgnmfn0kbg3h3vhf3xk443yi1b55761x881xlmw9sr9nraa578"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/github-browse-file"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/github-browse-file"; sha256 = "03xvgxlw7wmfby898din7dfcg87ihahkhlav1n7qklw6qi7skjcr"; name = "github-browse-file"; }; @@ -11037,7 +11142,7 @@ sha256 = "18c169nxvdl7iv18pyqx690ldg6pkc8njaxdg1cww6ykqzqnfxh7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/github-clone"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/github-clone"; sha256 = "0ffrm4lmcj3d9kx3g2d5xbiih7hn4frs0prjrvcjq8acvsbc50q9"; name = "github-clone"; }; @@ -11058,7 +11163,7 @@ sha256 = "0ksqfr0l415ynhxpqpcb84bk2bapvczwnpikp45kmfqq91p61xfc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gitignore-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/gitignore-mode"; sha256 = "1i98ribmnxr4hwphd95f9hcfm5wfwgdbcxw3g0w17ws7z0ir61mn"; name = "gitignore-mode"; }; @@ -11079,7 +11184,7 @@ sha256 = "1hc7j3gwljb1wk2727f66m3f7ga4icbklp54vlm0vf2bmii1ynil"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gitlab"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/gitlab"; sha256 = "0vxsqfnipgapnd2ijvdnkspk68dlnki3pkpkzg2h6hyazmzrsqnq"; name = "gitlab"; }; @@ -11100,7 +11205,7 @@ sha256 = "0j3pay3gd1wdnpc853gy5j68hbavrwy6cc2bgmd12ag29xki3hcg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gmail-message-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/gmail-message-mode"; sha256 = "0py0i7b893ihb8l1hmk3jfl0xil450znadcd18q7svr3zl2m0gkk"; name = "gmail-message-mode"; }; @@ -11121,7 +11226,7 @@ sha256 = "0p6n52m3y56nx7chwvmnslrnwc0xmh4fmmlkbkfz9n58hlmw8x1x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gmail2bbdb"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/gmail2bbdb"; sha256 = "03jhrk4vpjim3ybzjxy7s9r1cgjysj9vlc4criz5k0w7vqz3r28j"; name = "gmail2bbdb"; }; @@ -11142,7 +11247,7 @@ sha256 = "0x0a94bfkk72kqyr5m6arx450qsg1axmp5r0c4r9m84z8j08r4v1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gmpl-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/gmpl-mode"; sha256 = "1f60xim8h85jmqpvgfg402ff8mjd66gla8fa0cwi7l18ijnjblpz"; name = "gmpl-mode"; }; @@ -11163,7 +11268,7 @@ sha256 = "160qm8xf0yghygb52p8cykhb5vpg9ww3gjprcdkcxplr4b230nnc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gnome-calendar"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/gnome-calendar"; sha256 = "00clamlm5b42zqggxywdqrf6s2dnsxir5rpd8mjpyc502kqmsfn6"; name = "gnome-calendar"; }; @@ -11184,7 +11289,7 @@ sha256 = "1nvyjjjydrimpxy4cpg90si7sr8lmldbhlcm2mx8npklp9pn5y3a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gntp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/gntp"; sha256 = "1ywj3p082g54dcpy8q4jnkqfr12npikx8yz14r0njxdlr0janh4f"; name = "gntp"; }; @@ -11205,7 +11310,7 @@ sha256 = "0bwri3cvm2vr27kyqkrddm28fs08axnd4nm9amfgp54xp20bn4yn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gnuplot"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/gnuplot"; sha256 = "06c5gqf02fkra8c52xck1lqvf4yg45zfibyf9zqmnbwk7p2jxrds"; name = "gnuplot"; }; @@ -11226,7 +11331,7 @@ sha256 = "08j8x0iaz5s9q0b68d8h3153w0z6vak5l8qgw3dd1drz5p9xnvyw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gnus-desktop-notify"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/gnus-desktop-notify"; sha256 = "08k32vhdp6i8c03rp1k6b5jmvj5ijplj26mdblrgasklcqbdnlfs"; name = "gnus-desktop-notify"; }; @@ -11247,7 +11352,7 @@ sha256 = "1i3f67x2l9l5c5agspbkxr2mmh3rpq3009d8yzh6r1lih0b4hril"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gnus-x-gm-raw"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/gnus-x-gm-raw"; sha256 = "1a5iccghzqmcndql2bppvr48535sf6jbvc83iypr1031z1b5k4wg"; name = "gnus-x-gm-raw"; }; @@ -11268,7 +11373,7 @@ sha256 = "03snnra31b5j6iy94gql240vhkynbjql9b4b5j8bsqp9inmbsia3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/go-autocomplete"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/go-autocomplete"; sha256 = "1ldsq81a167dk2r2mvzyp3v3j2mxc4l9p6b12i7pv8zrjlkhma5a"; name = "go-autocomplete"; }; @@ -11289,7 +11394,7 @@ sha256 = "05yc0nylg3457an5j7yp3x23157j0hbi21qhcpgsa01144mwnwln"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/go-direx"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/go-direx"; sha256 = "0dq5d7fsld4hww8fl68c18qp6fl3781dqqwd98cg68bihw2wwni7"; name = "go-direx"; }; @@ -11310,7 +11415,7 @@ sha256 = "1n5fnlfq9cy9rbn2hizqqsy0iryw5g2blaa7nd75ya03gxm10p8j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/go-eldoc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/go-eldoc"; sha256 = "1k115dirfqxdnb6hdzlw41xdy2dxp38g3vq5wlvslqggha7gzhkk"; name = "go-eldoc"; }; @@ -11331,7 +11436,7 @@ sha256 = "1fm6xd3vsi8mqh0idddjpfxlsmz1ljmjppw3qkxl1vr0qz3598k3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/go-errcheck"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/go-errcheck"; sha256 = "11a75h32cd5h5xjv30x83k60s49k9fhgis31358q46y2gbvqp5bs"; name = "go-errcheck"; }; @@ -11352,7 +11457,7 @@ sha256 = "199aa2crddx2a5lvl0wrzylzdc23rcm3wcbbwas17ary3gl4z8jg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/go-impl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/go-impl"; sha256 = "0yhcl6y26s4wxaa3jj8d13i4zr879kp1lwnhlnqskpq8l8n3nmpz"; name = "go-impl"; }; @@ -11373,7 +11478,7 @@ sha256 = "1qqsck11v3ki18qld7hrb7dis60c2ylmq15s7srsppzwil8wm3fx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/go-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/go-mode"; sha256 = "1852zjxandmq0cpbf7m56ar3rbdi7bx613gdgsf1bg8hsdvkgzfx"; name = "go-mode"; }; @@ -11394,7 +11499,7 @@ sha256 = "1a6vg2vwgnafb61pwrd837fwlq5gs80wawbzjsnykawnmcaag8pm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/go-scratch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/go-scratch"; sha256 = "11ahvmxbh67wa39cymymxmcpkq0kcn5jz0rrvazjy2p1hx3x1ma5"; name = "go-scratch"; }; @@ -11415,7 +11520,7 @@ sha256 = "00igv83hiyx7x3pf2grmjpd379brn33fm85f05k104mkkrhg99nm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/golden-ratio"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/golden-ratio"; sha256 = "15fkrv0sgpzmnw2h4fp2gb83d8s42khkfq1h76l241njjayk1f81"; name = "golden-ratio"; }; @@ -11436,7 +11541,7 @@ sha256 = "0j31062zfqmcd0zsbp19f3h7gq7dn78sg4xf2x838sr9421x6w8x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/google-this"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/google-this"; sha256 = "0hg9y1b03aiamyn3mam3hyxmxy21wygxrnrww91zcbwlzgp4dd2c"; name = "google-this"; }; @@ -11449,15 +11554,15 @@ google-translate = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "google-translate"; - version = "0.11.5"; + version = "0.11.7"; src = fetchFromGitHub { owner = "atykhonov"; repo = "google-translate"; - rev = "109024fe437c3484160e82eb775343bc149a4446"; - sha256 = "0hvxyqkxv5hfsa9sv71m7d98g25a1xc962r961nw6vmbvsf64z6b"; + rev = "e48e70c18674502eeeb3d2f5bd03529f9ad255f5"; + sha256 = "0k2sn5ry2ssqxkybc53415zp330li6p4fwq3vvhgxilz1jlk0d02"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/google-translate"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/google-translate"; sha256 = "1crgzdd32mk6hrawdypg496dwh51wzwfb5wqw4a2j5l8y958xf47"; name = "google-translate"; }; @@ -11478,7 +11583,7 @@ sha256 = "1d1x5ffpn9gq9byd0qavxr081sl3qf0lihdxfdqvhwd815kravxk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/goose-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/goose-theme"; sha256 = "18kfz61mhf8pvp3z5cdvjklla9p840p1dazylrgjb1g5hdwqw0n9"; name = "goose-theme"; }; @@ -11499,7 +11604,7 @@ sha256 = "1idhnsl8vkq3v3nbvhkmxmvgqp97aycxvmkj7894mj9hvhib68l9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gotest"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/gotest"; sha256 = "1kan3gykhci33jgg67jjiiz7rqlz5mpxp8sh6mb0n6kpfmgb4ly9"; name = "gotest"; }; @@ -11520,7 +11625,7 @@ sha256 = "1lgljlfxs3gwxr072bvpl55r0b4z78wiww2g093sy7dgxgzgzmq6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gotham-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/gotham-theme"; sha256 = "0jars6rvf7hkyf71vq06mqki1r840i1dvv43dissqjg5i4lr79cl"; name = "gotham-theme"; }; @@ -11541,7 +11646,7 @@ sha256 = "188q7jr1y872as3w32m8lf6vwl2by1ibgdk6zk7dhpcjwd0ik7x7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/goto-gem"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/goto-gem"; sha256 = "06vy9m01qccvahxr5xn0plzw9knl5ig7gi5q5r1smfx92bmzkg3a"; name = "goto-gem"; }; @@ -11562,7 +11667,7 @@ sha256 = "1f0zlvva7d7iza1v79yjp0bm7vd011q4cy14g1saryll32z115z5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/goto-last-change"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/goto-last-change"; sha256 = "1yl9p95ls04bkmf4d6az72pycp27bv7q7wxxzvj8sj97bgwvwajx"; name = "goto-last-change"; }; @@ -11575,15 +11680,15 @@ govc = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, json-mode, lib, magit-popup, melpaBuild, s }: melpaBuild { pname = "govc"; - version = "0.5.0"; + version = "0.6.1"; src = fetchFromGitHub { owner = "vmware"; repo = "govmomi"; - rev = "c1b29993f383c32fc3fadb90892909668699810a"; - sha256 = "1wxk6r4729g6qirrc45kkjhb8lq24wb1a5k35c0fg8ddj15kvnah"; + rev = "18154e511bc8f6bc1fffe2e47d11ef4f1931a044"; + sha256 = "1vlgbq8k7xnh25jmkr59qn3pg3d0ysda3iac2wvzgq6hq0h66x12"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/govc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/govc"; sha256 = "1ivgaziv25wlzg6y4zh8x7mv97pnyhi7p8jpvgh5fg5lnqpzhl4v"; name = "govc"; }; @@ -11604,7 +11709,7 @@ sha256 = "0k86lrb55d701nj6pvlw3kjp1dcd3lzfya0hv6q56c529y69d782"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gradle-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/gradle-mode"; sha256 = "0lx9qi93wmiy9pxjxqp68scbcb4bx88b6jiqk3y8jg5cajizh24g"; name = "gradle-mode"; }; @@ -11625,7 +11730,7 @@ sha256 = "1npsjniazaq20vz3kvwr8p30ivc6x24r9a16rfcwhr5wjx3nn91b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/grails"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/grails"; sha256 = "177y6xv35d2dhc3pdx5qhpywlmlqgfnjpzfm9yxc8l6q2rgs8irw"; name = "grails"; }; @@ -11635,6 +11740,27 @@ license = lib.licenses.free; }; }) {}; + grails-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "grails-mode"; + version = "1.0.1"; + src = fetchFromGitHub { + owner = "Groovy-Emacs-Modes"; + repo = "groovy-emacs-modes"; + rev = "50801257d376fd7383ddf9c19ff567183c24ad0b"; + sha256 = "0wy8iw12b9bs7xza8jjnjvggr59rgbsgn1kk2g0pj0nppvfdrvjm"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/grails-mode"; + sha256 = "1zdlmdkwyaj2zns3xwmqpil83j7857aj2070kvx8xza66dxcnlm4"; + name = "grails-mode"; + }; + packageRequires = []; + meta = { + homepage = "https://melpa.org/#/grails-mode"; + license = lib.licenses.free; + }; + }) {}; grails-projectile-mode = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, projectile }: melpaBuild { pname = "grails-projectile-mode"; @@ -11646,7 +11772,7 @@ sha256 = "0xnj0wp0na53l0y8fiaah50ij4r80j8a29hbjbcicska21p5w1s1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/grails-projectile-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/grails-projectile-mode"; sha256 = "0dy8v2mila7ccvb7j5jlfkhfjsjfk3bm3rcy84m0rgbqjai67amn"; name = "grails-projectile-mode"; }; @@ -11667,7 +11793,7 @@ sha256 = "1202fwwwdr74q6s5jv1n0mvmq4n9mra85l14hdhwh2kks513s6vs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/grandshell-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/grandshell-theme"; sha256 = "1mnnjsw1kx40b6ws8wmk25fz9rq8rd70xia9cjpwdfkg7kh8xvsa"; name = "grandshell-theme"; }; @@ -11688,7 +11814,7 @@ sha256 = "1f34bhjxmbf2jjrkpdvqg2gwp83ka6d5vrxmsxdl3r57yc6rbrwa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/graphene"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/graphene"; sha256 = "1wz3rvd8b7gx5d0k7yi4dd69ax5bybcm10vdc7xp4yn296lmyl9k"; name = "graphene"; }; @@ -11721,7 +11847,7 @@ sha256 = "1bidfn4x5lb6dylhadyf05g4l2k7jg83mi058cmv76av1glawk17"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/graphene-meta-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/graphene-meta-theme"; sha256 = "1cqdr93lccdpxkzgap3r3qc92dh8vqgdlnxvqkw7lrcbs31fvf3q"; name = "graphene-meta-theme"; }; @@ -11742,7 +11868,7 @@ sha256 = "1zk664ilyz14p11csmqgzs73gx08hy32h3pnyymzqkavmgb6h3s0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/graphviz-dot-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/graphviz-dot-mode"; sha256 = "04rkynsrsk6w4sxn1pc0b9b6pij1p7yraywbrk7qvv05fv69kri2"; name = "graphviz-dot-mode"; }; @@ -11763,7 +11889,7 @@ sha256 = "0xcj1kqzgxifhrhpl9j2nfpnkd6213ix5z7f97269v3inpzaiyf5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/grapnel"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/grapnel"; sha256 = "019cdx1wdx8sc2ibqwgp1akgckzxxvrayyp2sv806gha0kn6yf6r"; name = "grapnel"; }; @@ -11783,7 +11909,7 @@ sha256 = "0mnwmsn078hz317xfz6c05r7narx3k8956v1ajz5myxx8xrcr24z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/grass-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/grass-mode"; sha256 = "1lq6bk4bwgcy4ra3d9rlca3fk87ydg7xnnqcqjg0pw4m9xnr3f7v"; name = "grass-mode"; }; @@ -11802,7 +11928,7 @@ sha256 = "0rqpgc50z86j4waijfm6kw4zjmzqfii6nnvyix4rkd4y3ryny1x2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/grin"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/grin"; sha256 = "0mvzwmws5pi6hpzgkc43fjxs98ngkr0jvqbclza2jbbqawifzzbk"; name = "grin"; }; @@ -11823,7 +11949,7 @@ sha256 = "1bq73kcx744xnlm2yvccrzlbyx91c492sg7blx2a9z643v3gg1zs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/grizzl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/grizzl"; sha256 = "0354xskqzxc38l14zxqs31hadwh27v9lyx67y3hnd94d8abr0qcb"; name = "grizzl"; }; @@ -11833,6 +11959,27 @@ license = lib.licenses.free; }; }) {}; + groovy-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "groovy-mode"; + version = "1.0.1"; + src = fetchFromGitHub { + owner = "Groovy-Emacs-Modes"; + repo = "groovy-emacs-modes"; + rev = "50801257d376fd7383ddf9c19ff567183c24ad0b"; + sha256 = "0wy8iw12b9bs7xza8jjnjvggr59rgbsgn1kk2g0pj0nppvfdrvjm"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/groovy-mode"; + sha256 = "1pxw7rdn56klmr6kw21lhzh7zhp338gyf54ypsml64ibzr1x9kal"; + name = "groovy-mode"; + }; + packageRequires = []; + meta = { + homepage = "https://melpa.org/#/groovy-mode"; + license = lib.licenses.free; + }; + }) {}; gruber-darker-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "gruber-darker-theme"; @@ -11844,7 +11991,7 @@ sha256 = "14h0rcd3nkw3pmx8jwip20p6rzl9qdkip5g52gfjjbqfvaffsrkd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gruber-darker-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/gruber-darker-theme"; sha256 = "0vn4msixb77xj6p5mlfchjyyjhzah0lcmp0z82s8849zd194fxqi"; name = "gruber-darker-theme"; }; @@ -11865,7 +12012,7 @@ sha256 = "0zpmhjwj64s72iv3dgsy07pfh20f25ngsy3pszmlrfkxk0926d8k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/grunt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/grunt"; sha256 = "1qdzqcrff9x97kyy0d4j636d5i751qja10liw8i0lf4lk6n0lywz"; name = "grunt"; }; @@ -11886,7 +12033,7 @@ sha256 = "1dfd22629gz0c8r4wplvbn0n7bm20549mg5chq289s826ca0kxqk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/gscholar-bibtex"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/gscholar-bibtex"; sha256 = "0d41gr9amf9vdn9pl9lamhp2swqllxslv9r3wsgzqvjl7zayd1az"; name = "gscholar-bibtex"; }; @@ -11907,7 +12054,7 @@ sha256 = "1bmcvn8a7g9ahpv2fww673hx9pa7nnrj9kpljq65azf61vq2an2g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/guide-key"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/guide-key"; sha256 = "0zjrdvppcg8b2k6hfdj45rswc1ks9xgimcr2yvgpc8prrwk1yjsf"; name = "guide-key"; }; @@ -11928,7 +12075,7 @@ sha256 = "040mcfhj2gggp8w1pgip7rxb1bnb23rxlm02wl6x1qv5i0q7g5x3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/guide-key-tip"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/guide-key-tip"; sha256 = "0h2vkkbxq361dkn6irm1v19qj7bkhxcjljiksd5wwlq5zsq6bd06"; name = "guide-key-tip"; }; @@ -11949,7 +12096,7 @@ sha256 = "1y46qd9cgkfb0wp2cvksjncyp77hd2jnr4bm4zafqirc3qhbysx0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/guru-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/guru-mode"; sha256 = "0j25nxs3ndybq1ik36qyqdprmhav4ba8ny7v2z61s23id8hz3xjs"; name = "guru-mode"; }; @@ -11970,7 +12117,7 @@ sha256 = "1c49lfm5saafxks591qyy2nilymxz3aqlxpsmnad5d0kfhvjr47z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hackernews"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/hackernews"; sha256 = "1x1jf5gkhmpiby5rmy0sziywh6c1f1n0p4f6dlz6ifbwns7har6a"; name = "hackernews"; }; @@ -11991,7 +12138,7 @@ sha256 = "0d3xmagl18pas19zbpg27j0lmdiry23df48z4vkjsrcllqg25v5g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ham-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ham-mode"; sha256 = "000qrdby7d6zmp5066vs4gjlc9ik0ybrgcwzcbfgxb16w1g9xpmz"; name = "ham-mode"; }; @@ -12012,7 +12159,7 @@ sha256 = "0fmr7ji8x5ki9fzybpbg3xbhzws6n7ffk7d0zf9jl1x3jd8d6988"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/haml-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/haml-mode"; sha256 = "0ih0m7zr6kgn6zd45zbp1jgs1ydc5i5gmq6l080wma83v5w1436f"; name = "haml-mode"; }; @@ -12033,7 +12180,7 @@ sha256 = "08l6p9n2ggg4filad1k663qc2gjgfbia4knnnif4sw7h92yb31jl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hardcore-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/hardcore-mode"; sha256 = "1bgi1acpw4z7i03d0i8mrd2hpjn6hyvkdsk0ks9q380yp9mqmiwd"; name = "hardcore-mode"; }; @@ -12054,7 +12201,7 @@ sha256 = "0j9z46j777y3ljpai5czdlwl07f0irp4fsk4677n11ndyqm1amb5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hardhat"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/hardhat"; sha256 = "16pdbpm647ag9cadmdm75nwwyzrqsd9y1b4zgkl3pg669mi5vl5z"; name = "hardhat"; }; @@ -12075,7 +12222,7 @@ sha256 = "0rqxi668wra1mfzq4fqscjghis5gqnwpazgidgix13brybaxydx4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/harvest"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/harvest"; sha256 = "1qfhfzjwlnqpbq4kfxvs97fa3xks8zi02fnwv0ik8wb1ppbb77qd"; name = "harvest"; }; @@ -12096,7 +12243,7 @@ sha256 = "1qgqsy7wnqyzkc3b0wixxb8mapmgpi36dignvf8w2raw9ma3q2n0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/haskell-emacs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/haskell-emacs"; sha256 = "1wkh7qws35c32hha0p9rpjz5pls2844920nh919lvp2wmq9l6jd6"; name = "haskell-emacs"; }; @@ -12117,7 +12264,7 @@ sha256 = "1qgqsy7wnqyzkc3b0wixxb8mapmgpi36dignvf8w2raw9ma3q2n0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/haskell-emacs-base"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/haskell-emacs-base"; sha256 = "1fwkds6qyhbxxdgxfzmgd7dlcxr08ynrrg5jdp9r7f924pd536vb"; name = "haskell-emacs-base"; }; @@ -12138,7 +12285,7 @@ sha256 = "1qgqsy7wnqyzkc3b0wixxb8mapmgpi36dignvf8w2raw9ma3q2n0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/haskell-emacs-text"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/haskell-emacs-text"; sha256 = "1j18fhhra6lv32xrq8jc6l8i56fgn68da81wymcimpmpbp0hl5fy"; name = "haskell-emacs-text"; }; @@ -12159,7 +12306,7 @@ sha256 = "1hxjqr448z7sfk3wb48s1y4q51870gb2zv5bfam30lvwxbl3znkm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/haskell-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/haskell-mode"; sha256 = "0wijvcpfdbl17iwzy47vf8brkj2djarfr8y28rw0wqvbs381zzwp"; name = "haskell-mode"; }; @@ -12180,7 +12327,7 @@ sha256 = "0b3d7rvqvvcsp51aqfhl0zg9zg8j0p6vlfvga6jp9xc7626vh6f6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/haskell-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/haskell-snippets"; sha256 = "10bvv7q694fahcpm83v8lpqihg1gvfzrp1hdzwiffxydfvdbalh2"; name = "haskell-snippets"; }; @@ -12200,7 +12347,7 @@ sha256 = "00bjmww8pc9jr4ssqcv7k0migbxl1c8qs2l1khf25fxvgd1nyy02"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/haskell-tab-indent"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/haskell-tab-indent"; sha256 = "0vdfmy56w5yi202nbd28v1bzj97v1wxnfnb5z3dh9687p2abgnr7"; name = "haskell-tab-indent"; }; @@ -12221,7 +12368,7 @@ sha256 = "14m8z13nvfqqgx40vzzbn0z9crwi3hhacmk1zfbv9cmhs95dwy6l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/haxor-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/haxor-mode"; sha256 = "1y4m058whdqnkkf9s6hzi0h6w0fc8ajfawhpjj0wqjam4adnfkq5"; name = "haxor-mode"; }; @@ -12231,22 +12378,22 @@ license = lib.licenses.free; }; }) {}; - hcl-mode = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: + hcl-mode = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "hcl-mode"; - version = "0.1"; + version = "0.2"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-hcl-mode"; - rev = "f9757d4122d75ffdff92c97ec9e75694506caba5"; - sha256 = "15h1wkl1d9f2xfhm0nffqicg31rw7z2q0sizjphys9ljgxm43is4"; + rev = "cc13180e3af748d53c4a1d433ce2edf99bf68a7d"; + sha256 = "0hiw226gv73jh7s3jg4p1c15p4km4rs7i9ab4wgpkl5lg4vrz5i6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hcl-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/hcl-mode"; sha256 = "1wrs9kj6ahsdnbn3fdaqhclq1ia6w4x726hjvl6pyk01sb0spnin"; name = "hcl-mode"; }; - packageRequires = [ cl-lib ]; + packageRequires = [ cl-lib emacs ]; meta = { homepage = "https://melpa.org/#/hcl-mode"; license = lib.licenses.free; @@ -12255,15 +12402,15 @@ helm = callPackage ({ async, emacs, fetchFromGitHub, fetchurl, helm-core, lib, melpaBuild, popup }: melpaBuild { pname = "helm"; - version = "1.9.4"; + version = "1.9.5"; src = fetchFromGitHub { owner = "emacs-helm"; repo = "helm"; - rev = "92786bba2e533eca50b6504413bc22edd957e5ee"; - sha256 = "19ahlm144yfs5jjc513m4f3n4p0zpk1v2xaw3rkrvnb8xay6f1gn"; + rev = "40c0032f0d2bc91970830414efb64e5783d391df"; + sha256 = "1acmf3xv8afayxvdyqv5vpvv0v9msak5kqk03xxjznbl395x0asy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm"; sha256 = "0xsf4rg7kn0m5wjlbwhd1mc38lg2822037dyd0h66h6x2gbs3fd9"; name = "helm"; }; @@ -12284,7 +12431,7 @@ sha256 = "0ps86zpyywibjwcm9drmamla979ad61fyqr8d6bv71fr56k9ak21"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-ack"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-ack"; sha256 = "1a8sc5gd2g57dl9g18wyydfmihy74yniwhjr27h7vxylnf2g3pni"; name = "helm-ack"; }; @@ -12297,15 +12444,15 @@ helm-ag = callPackage ({ emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-ag"; - version = "0.53"; + version = "0.54"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-helm-ag"; - rev = "8028bd28cdfc92b08dff082e97f7df525e545f58"; - sha256 = "1aay6fs6gz08rw7j3996dv75mpw1inaa33kfih5384q660rbf0zp"; + rev = "fa8d2aec9d6398dff197febb280867e7caa0bbd8"; + sha256 = "1lik1wkqx042j1bm7302w945j8x749mzws5287rl1rhcpbl39xqw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-ag"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-ag"; sha256 = "050qh5xqh8lwkgmz3jxm8gql5nd7bq8sp9q6mzm2z7367qy4qqyf"; name = "helm-ag"; }; @@ -12326,7 +12473,7 @@ sha256 = "015p5sszd54x81qm96gx6xwjkvbi4f3j9i2nhcvlkk75s95w1ijv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-aws"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-aws"; sha256 = "0sjgdjpznjxsf6nlv2ah45fw17j8j5apdphd1fp43rjv1lskkgc5"; name = "helm-aws"; }; @@ -12347,7 +12494,7 @@ sha256 = "0d6h4gbb69abxxgm85pdi5rsaf9h72yryg72ykd5633i1g4s8a76"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-backup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-backup"; sha256 = "182jbm36yzayxi9y3vhpyn25ivrgay37sncqvah35vbw52lnjcn3"; name = "helm-backup"; }; @@ -12368,7 +12515,7 @@ sha256 = "011k37p4vnzm1x8vyairllanvjfknskl20bdfv0glf64xgbdpfil"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-bm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-bm"; sha256 = "1dnlcvn0zv4qv4ii4j0h9r8w6vhi3l0c5aa768kblh5r2rf4bjjh"; name = "helm-bm"; }; @@ -12389,7 +12536,7 @@ sha256 = "1j9xmlidipsfbz0kfxwz0c6hi9xsbk36h6i30wqdd0ls0zw5xm30"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-bundle-show"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-bundle-show"; sha256 = "1af5g233kjf04m2fryizk51a1s2mcmj36zip5nyb8skcsfl4riq7"; name = "helm-bundle-show"; }; @@ -12410,7 +12557,7 @@ sha256 = "108584bmadgidqkdfvf333zkyb5v9f84pasz5h01fkh57ks8by9f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-c-yasnippet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-c-yasnippet"; sha256 = "0jwj4giv6lxb3h7vqqb2alkwq5kp0shy2nraik33956p4l8dfs90"; name = "helm-c-yasnippet"; }; @@ -12431,7 +12578,7 @@ sha256 = "1gwg299s8ps0q97iw6p515gwn73rjk1icgl3j7cj1s143njjg122"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-circe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-circe"; sha256 = "12jfzg03573lih2aapvv5h2mi3pwqc9nrmv538ivjywix5117k3v"; name = "helm-circe"; }; @@ -12452,7 +12599,7 @@ sha256 = "1l61csd1gqz7kg5zjx60cfy824g42p682z7pk0rqzlrz8498wvkh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-commandlinefu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-commandlinefu"; sha256 = "150nqib0sr4n35vdj1xrxcja8gkv3chzhdbgkjxqgkz2yq10xxnd"; name = "helm-commandlinefu"; }; @@ -12465,15 +12612,15 @@ helm-core = callPackage ({ async, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "helm-core"; - version = "1.9.4"; + version = "1.9.5"; src = fetchFromGitHub { owner = "emacs-helm"; repo = "helm"; - rev = "92786bba2e533eca50b6504413bc22edd957e5ee"; - sha256 = "19ahlm144yfs5jjc513m4f3n4p0zpk1v2xaw3rkrvnb8xay6f1gn"; + rev = "40c0032f0d2bc91970830414efb64e5783d391df"; + sha256 = "1acmf3xv8afayxvdyqv5vpvv0v9msak5kqk03xxjznbl395x0asy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-core"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-core"; sha256 = "1dyv8rv1728vwsp6vfdq954sp878jbp3srbfxl9gsgjnv1l6vjda"; name = "helm-core"; }; @@ -12494,7 +12641,7 @@ sha256 = "0xnqkc4z22m41v5lgf87dd8xc4gmf932zbnbdhf9xic1gal1779c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-cscope"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-cscope"; sha256 = "13a76wc1ia4c0v701dxqc9ycbb43d5k09m5pfsvs8mccisfzk9y4"; name = "helm-cscope"; }; @@ -12515,7 +12662,7 @@ sha256 = "0s503q56acv70i5qahrdgk3nhvdpb3wa22a8jh1kvb7lykaw74ai"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-dash"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-dash"; sha256 = "1cnxssj2ilszq94v5cc4ixblar1nlilv9askqjp9gfnkj2z1n9cy"; name = "helm-dash"; }; @@ -12536,7 +12683,7 @@ sha256 = "1cm2vaw0j1x2w2m45k6iqbzm7nydfdx1x89673vsvb90whdgvjbp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-descbinds"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-descbinds"; sha256 = "1890ss4pimjxskzzllf57fg07xbs8zqcrp6r8r6x989llrfvd1h7"; name = "helm-descbinds"; }; @@ -12557,7 +12704,7 @@ sha256 = "0vmlpj6zfif5f3wzgq8lkfqprl3z5gjsqj86347krblgfzhqlz30"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-firefox"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-firefox"; sha256 = "0677nj0zsk11vvp3q3xl9nk8dhz3ki9yl3kfb57wgnmprp109wgs"; name = "helm-firefox"; }; @@ -12578,7 +12725,7 @@ sha256 = "1fg786m4m6x7brbbchpdf4pwvwma7sn4597p5lzmhvh187z6g525"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-flycheck"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-flycheck"; sha256 = "038f9294qc0jnkzrrjxm97hyhwa4sca3wdsjbaya50cf0g4cmk7b"; name = "helm-flycheck"; }; @@ -12599,7 +12746,7 @@ sha256 = "00ls9v3jdpz3wka90crd193z3ipwnf1b0slmldn4vb9ivrndh6wn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-ghc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-ghc"; sha256 = "1q5ia8sgpflv2hhvw7hjpkfb25vmrjwlrqz1f9qj2qgmki5mix2d"; name = "helm-ghc"; }; @@ -12620,7 +12767,7 @@ sha256 = "0y379qap3mssz9nslb08vfzq5ihqcm156fbx0dszgz9d6xgkpdhw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-ghq"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-ghq"; sha256 = "14f3cbsj7jhlhrp561d8pasllnx1cmi7jk6v2fja7ghzj76dnvq6"; name = "helm-ghq"; }; @@ -12641,7 +12788,7 @@ sha256 = "1hx9m18dfpl97xaskadhqdrd8syk271shxjasn3jnqa8a07m2983"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-git-grep"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-git-grep"; sha256 = "1ww6a4q78w5hnwikq7y93ic2b7x070c27r946lh6p8cz1k4b8vqi"; name = "helm-git-grep"; }; @@ -12662,7 +12809,7 @@ sha256 = "1sbhh3dmb47sy3r2iw6vmvbq5bpjac4xdg8i5a0m0c392a38nfqn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-github-stars"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-github-stars"; sha256 = "1r4mc4v71171sq9rbbhm346s92fb7jnvvl91y2q52jqmrnzzl9zy"; name = "helm-github-stars"; }; @@ -12683,7 +12830,7 @@ sha256 = "1hc7j3gwljb1wk2727f66m3f7ga4icbklp54vlm0vf2bmii1ynil"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-gitlab"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-gitlab"; sha256 = "010ihx3yddhb8j3jqcssc49qnf3i7xlz0s380mpgrdxgz6yahsmd"; name = "helm-gitlab"; }; @@ -12704,7 +12851,7 @@ sha256 = "0h3iql8dxq80vpr1cv7fdaw0aniykp2rfzh07j5941jkiy4q63h0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-go-package"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-go-package"; sha256 = "102yhn1xg83l67yaq3brn35a03fkvqqhad10rq0h39n4i1slq3z6"; name = "helm-go-package"; }; @@ -12725,7 +12872,7 @@ sha256 = "0zyspn9rqfs3hkq8qx0q1w5qiv30ignbmycyv0vn3a6q7a5fsnhx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-gtags"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-gtags"; sha256 = "1kbpfqhhbxmp3f70h91x2fws9mhx87zx4nzjjl29lpl93vf8xckl"; name = "helm-gtags"; }; @@ -12746,7 +12893,7 @@ sha256 = "189dv3qqqmfyhsqa1n52cgcn1xv7k49f92ndn43y2v20234nhl9f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-hatena-bookmark"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-hatena-bookmark"; sha256 = "14091zrp4vj7752rb5s3pkyvrrsdl7iaj3q9ys8rjmbsjwcv30id"; name = "helm-hatena-bookmark"; }; @@ -12767,7 +12914,7 @@ sha256 = "1imfzz6cfdq7fgrcgrafy2nln929mgh31vybk9frm7a9jpamqdxp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-hayoo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-hayoo"; sha256 = "0xdvl6q2rpfsma4hx8m4snbd05s4z0bi8psdalixywlp5s4vzr32"; name = "helm-hayoo"; }; @@ -12788,7 +12935,7 @@ sha256 = "0bz2ngw816jvpw1a10j31y5hf1knz0mzz60l073h33qci11jbwid"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-ispell"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-ispell"; sha256 = "0qyj6whgb2p0v231wn6pvx4awvl1wxppppqqbx5255j8r1f3l1b0"; name = "helm-ispell"; }; @@ -12809,7 +12956,7 @@ sha256 = "1nd562lffc41r3y5x7y46f37ra97avllk2m95w23f9g42h47f1ar"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-lobsters"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-lobsters"; sha256 = "0dkb78n373kywxj8zba2s5a2g85vx19rdswv9i78xjwv1lqh8cpp"; name = "helm-lobsters"; }; @@ -12830,7 +12977,7 @@ sha256 = "0azs971d7pqd4ddxzy7bfs52cmrjbafwrcnf57afw39d772rzpdf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-ls-git"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-ls-git"; sha256 = "08rsy9479nk03kinjfkxddrq6wi4sx2a0wrz37cl2q517qi7sibj"; name = "helm-ls-git"; }; @@ -12851,7 +12998,7 @@ sha256 = "1hma79i69l8ilkr3l4b8zqk3ny62vqr1ym2blymia4ibwk4zqbda"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-ls-hg"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-ls-hg"; sha256 = "0ca0xn7n8bagxb504xgkcv04rpm1vxhx2m77biqrx5886pwl25bh"; name = "helm-ls-hg"; }; @@ -12872,7 +13019,7 @@ sha256 = "17ls0bplnja2qvg3129x2irgsgs7l4bjj0qi7b9z16i6knjkwfya"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-make"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-make"; sha256 = "1r6jjy1rlsii6p6pinbz7h6gcw4vmcycd3vj338bfbnqp5rrf2mc"; name = "helm-make"; }; @@ -12893,7 +13040,7 @@ sha256 = "03588hanfa20pjp9w1bqy8wsf5x6az0vfq0bmcnr4xvlf6fhkyxs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-migemo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-migemo"; sha256 = "1cjvb1lm1fsg5ky63fvrphwl5a7r7xf6qzb4mvl06ikj8hv2h33x"; name = "helm-migemo"; }; @@ -12914,7 +13061,7 @@ sha256 = "1srx5f0s9x7zan7ayqd6scxfhcvr3nkd4yzs96hphd87rb18apzk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-mode-manager"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-mode-manager"; sha256 = "1w9svq1kyyj8mmljardhbdvykb334nq1y18s956g4rvqyas2ciyd"; name = "helm-mode-manager"; }; @@ -12935,7 +13082,7 @@ sha256 = "0gknncyhr2392xkvghgy5mh6gdv6qzvswidx2wy04ypb4s0vxgq2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-mt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-mt"; sha256 = "04hx8cg8wmm2w8g942nc9mvm12ammmjnx4k61ljrq76smd8s3x2a"; name = "helm-mt"; }; @@ -12956,7 +13103,7 @@ sha256 = "1lm7rkgf7q5g4ji6v1masfbhxdpwni8d77dapsy5k9p73cr2aqld"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-nixos-options"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-nixos-options"; sha256 = "1nsi4hfw53iwn29fp33dkri1c6w8kdyn4sa0yn2fi6144ilmq933"; name = "helm-nixos-options"; }; @@ -12977,7 +13124,7 @@ sha256 = "1hq1nnmgkx0a8sv6g8k4v9f0102qg7jga0hcjnr8lcji51nqrcya"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-open-github"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-open-github"; sha256 = "1wqlwg21s9pjgcrwr8kdrppinmjn235nadkp4003g0md1d64zxpx"; name = "helm-open-github"; }; @@ -12998,7 +13145,7 @@ sha256 = "02yjnag9wr9dk93z41f0i5mqij9bz57fxkv4nddabyc18k7zfrhj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-org-rifle"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-org-rifle"; sha256 = "0hx764vql2qgw9i8qrr3kkn23lw6jx3x604dm1y33ig6a15gy3a3"; name = "helm-org-rifle"; }; @@ -13019,7 +13166,7 @@ sha256 = "1zyjxrrda7nxxjqczv2p3sfimxy2pq734kf51j6v2y0biclc4bk3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-orgcard"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-orgcard"; sha256 = "1a56y8fny7qxxidc357n7l3yi7h66hidhvwhkam8y5wk6k61460p"; name = "helm-orgcard"; }; @@ -13040,7 +13187,7 @@ sha256 = "14ad0b9d07chabjclffjyvnmrasar1di9wmpzf78bw5yg99cbisw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-package"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-package"; sha256 = "1qab2abx52xcqrnxzl0m3533ngp8m1cqmm3hgpzgx7yfrkanyi4y"; name = "helm-package"; }; @@ -13061,7 +13208,7 @@ sha256 = "1r2ndmrw5ivawb940j8jnmqzxv46qrzd3cqh9fvxx5yicf020fjf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-pages"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-pages"; sha256 = "1v3w8100invb5wsmm3dyl41pjs7s889s3b1rlr6vlcspa1ncv3wj"; name = "helm-pages"; }; @@ -13082,7 +13229,7 @@ sha256 = "01cj2897hqz02mfz32nxlyyp59iwm0gz1zj11s8ll7pwy9q3r90g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-perldoc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-perldoc"; sha256 = "1qx0g81qcqanjiz5fxysagjhsxaj31g6nsi2hhdgq4x4nqrlmrhb"; name = "helm-perldoc"; }; @@ -13103,7 +13250,7 @@ sha256 = "0y0a18bj2k459fk51z7svnnasqkl78bx61y5ha1yv3sqnppgdw2h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-proc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-proc"; sha256 = "1bq60giy2bs9m3hlbc5nwvy51702a98s0vqass3b290hdgki4bnx"; name = "helm-proc"; }; @@ -13124,7 +13271,7 @@ sha256 = "1q7hfj8ldwivhjp9ns5pvsn0ds6pyvl2zhl366c22s6q8jmbr8ik"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-project-persist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-project-persist"; sha256 = "1n87kn1n3453mpdj6amyrgivslskmnzdafpspvkz7b0smf9mv2ld"; name = "helm-project-persist"; }; @@ -13145,7 +13292,7 @@ sha256 = "0jm6nnnjyd4kmm1knh0mq3xhnw2hvs3linwlynj8yaliqvlv6brv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-pt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-pt"; sha256 = "1imhy0bsm9aldv0pvf88280qdya01lznxpx5gi5wffhrz17yh4pi"; name = "helm-pt"; }; @@ -13166,7 +13313,7 @@ sha256 = "1jy9l4an2aqynj86pw2qxpzw446xm376n2ykiz17qlimqbxhwkgz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-purpose"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-purpose"; sha256 = "0am8fy7ihk4hv07a6bnk9mwy986h6i6qxwpdmfhajzga71ixchg6"; name = "helm-purpose"; }; @@ -13187,7 +13334,7 @@ sha256 = "1ik0vllakh73kc2zbgii4sm33n9pj388gaz69j4drz2mik307zvs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-pydoc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-pydoc"; sha256 = "1sh7gqqiwk85kx89l1sihlkb8ff1g9n460nwj1y1bsrpfl6if4j7"; name = "helm-pydoc"; }; @@ -13197,18 +13344,39 @@ license = lib.licenses.free; }; }) {}; + helm-qiita = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: + melpaBuild { + pname = "helm-qiita"; + version = "0.1.1"; + src = fetchFromGitHub { + owner = "masutaka"; + repo = "emacs-helm-qiita"; + rev = "c49156fdb73cc3dc555d86aad4ed41638372faf8"; + sha256 = "1dadwl9hfi2a91d6wxp84chgd1mjr03ibwdhw3llml77shbizmqp"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-qiita"; + sha256 = "1iz2w1901zz3zk9zazikmnkzng5klnvqn4ph1id7liksrcdpdmpm"; + name = "helm-qiita"; + }; + packageRequires = [ cl-lib helm ]; + meta = { + homepage = "https://melpa.org/#/helm-qiita"; + license = lib.licenses.free; + }; + }) {}; helm-recoll = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-recoll"; - version = "0.3"; + version = "0.4"; src = fetchFromGitHub { owner = "emacs-helm"; repo = "helm-recoll"; - rev = "d5e453933e6b97bc2bc504aa80fb989de9894849"; - sha256 = "1f1ijna97dn190if3nwk5s5rldlpryfb7wvgg0imwqyp25h4all7"; + rev = "9dcd056214cb2665113743bb3b1a97973c002316"; + sha256 = "1hfn7zk3pgz3w8mn44hh6dcv377j5272azx4r12p95kkp770xls2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-recoll"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-recoll"; sha256 = "0pr2pllplml55k1xx9inr3dm90ichg2wb62dvgvmbq2sqdf4606b"; name = "helm-recoll"; }; @@ -13229,7 +13397,7 @@ sha256 = "163ljqar3vvbavzc8sk6rnf8awyc2rhh2g117fglswich3c8lnqg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-robe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-robe"; sha256 = "1gi4nkm9xvnxv0frmhiiw8dkmnmhfpr9n0b6jpidlvr8xr4s5kyw"; name = "helm-robe"; }; @@ -13250,7 +13418,7 @@ sha256 = "1sff8kagyhmwcxf9062il1077d4slvr2kq76abj496610gpb75i0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-rubygems-org"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-rubygems-org"; sha256 = "04ni03ak53z3rggdgf68qh7ksgcf3s0f2cv6skwjqw7v8qhph6qs"; name = "helm-rubygems-org"; }; @@ -13271,7 +13439,7 @@ sha256 = "1s6aw1viyzhhrfiazzi82n7bkvshp7clwi6539660m72lfwc5zdl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-sage"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-sage"; sha256 = "1vnq15fjaap0ai7dadi64sm4415xssmahk2j7kx45sasy4qaxlbj"; name = "helm-sage"; }; @@ -13292,7 +13460,7 @@ sha256 = "13j3rgg5zfpxds6vsyq0aqws1f3p5y5dsq8558nqsymqvycpn047"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-spaces"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-spaces"; sha256 = "0hdvkk173k98iycvii5xpbiblx044125pl7jyz4kb8r1vvwcv791"; name = "helm-spaces"; }; @@ -13313,7 +13481,7 @@ sha256 = "1lkjrz9ma2bxr8vskdm3sgrmsyiic798q3271dw38d453bhv4bl1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-swoop"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-swoop"; sha256 = "1fqbhj75hcmy7c2vdd0m7fk3m34njmv5s6k1i9y94djpbd13i3d8"; name = "helm-swoop"; }; @@ -13334,7 +13502,7 @@ sha256 = "0rzbdrs5d5a0icpxrqik2iaz8i5bacw6nm2caf75s9w9j0j6s9li"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-themes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-themes"; sha256 = "0r7kyd0i0spwi7xkjrpm2kyphrsl3hqm5pw96nd3ia0jiwp8550j"; name = "helm-themes"; }; @@ -13355,7 +13523,7 @@ sha256 = "14lbdvs9xdnipsn3lywbvgsqwqnbm8fxm6d1ilq0cj5z6zkxkya0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-unicode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-unicode"; sha256 = "052xqzvcfzpsbl75ylqb1khqndvc2dqdymqlwivs0darlds0w8y4"; name = "helm-unicode"; }; @@ -13376,7 +13544,7 @@ sha256 = "0s8zp3kx2kxlfyd26yr3lphwcybhbm8qa9vzmxr3kaylwy6jpz5q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-w32-launcher"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-w32-launcher"; sha256 = "0bzn2vhspn6lla815qxwsl9gwfyiwgwmnysr6rjpyacmi17d73ri"; name = "helm-w32-launcher"; }; @@ -13397,7 +13565,7 @@ sha256 = "1j6ssbjbm5ym3pg0icpfp735y4dfhlky9qhl9hwp2n3wmba5g9h1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/helm-zhihu-daily"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/helm-zhihu-daily"; sha256 = "0hkgail60s9qhxl0pskqxjvfz93iq1qh1kcmcq0x5kq7d08b911r"; name = "helm-zhihu-daily"; }; @@ -13418,7 +13586,7 @@ sha256 = "1zr59kcnkd9bm5676shmz63n0wpnfr7yl9g4l01ng0xcili1n13i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hfst-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/hfst-mode"; sha256 = "1w342n5k9ak1m5znysvrplpr9dhmi7hxbkr4d1dx51dn0azbpjh7"; name = "hfst-mode"; }; @@ -13439,7 +13607,7 @@ sha256 = "1s08sgbh5v59lqskd0s1dscs6dy7z5mkqqkabs3gd35agbfvbmlf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hi2"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/hi2"; sha256 = "1wxkjg1jnw05lqzggi20jy2jl20d8brvv76vmrf6lnz62g6jv9h2"; name = "hi2"; }; @@ -13460,7 +13628,7 @@ sha256 = "0c65jk00j88qxfki2g88hy9g6n92rzskwcn1fbmwcw3qgaz4b6w5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/highlight-blocks"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/highlight-blocks"; sha256 = "1a32iv5kgf6g6ygbs559w156dh578k45m860czazfx0d6ap3k5m1"; name = "highlight-blocks"; }; @@ -13481,7 +13649,7 @@ sha256 = "08czwa165rnd5z0dwwdddn7zi5w63sdk31l47bj0598kbly01n7r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/highlight-defined"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/highlight-defined"; sha256 = "1vjxm35wf4c2qphpkjh57hf03a5qdssdlmfj0n0gwxsdw1q5rpms"; name = "highlight-defined"; }; @@ -13502,7 +13670,7 @@ sha256 = "00l54k75qk24a0znzl4ij3s3nrnr2wy9ha3za8apphzlm98m907k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/highlight-indentation"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/highlight-indentation"; sha256 = "0iblrrbssjwfn71n8xxjcl98pjv1qw1igf3hlz6mh8740fsca3d6"; name = "highlight-indentation"; }; @@ -13523,7 +13691,7 @@ sha256 = "0ffhc5s0h34064bix4qyiiyx30m4hpv0phmxwcrwiyvanj9ggfai"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/highlight-numbers"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/highlight-numbers"; sha256 = "1bywrjv9ybr65mwkrxggb52jdqn16z8acgs5vqm0faq43an8i5yv"; name = "highlight-numbers"; }; @@ -13544,7 +13712,7 @@ sha256 = "08ld4wjrkd77cghmrf1n2hn2yzid7bdqwz6b1rzzqaiwxl138iy9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/highlight-parentheses"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/highlight-parentheses"; sha256 = "1d38wxk5bwblddr74crzwjwpgyr8zgcl5h5ilywg35jpv7n66lp5"; name = "highlight-parentheses"; }; @@ -13565,7 +13733,7 @@ sha256 = "1ahg9qzss67jpw0wp2izys6lyss4nqjy9320fpa4vdx39msdmjjb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/highlight-quoted"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/highlight-quoted"; sha256 = "0x6gxi0jfxvpx7r1fm43ikxlxilnbk2xbhdy9xivhgmmdyqiqqkl"; name = "highlight-quoted"; }; @@ -13586,7 +13754,7 @@ sha256 = "09z13kv2g21kjjkkm3iyaz93sdjmdy2d563r8n7r7ng94acrn7f6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/highlight-symbol"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/highlight-symbol"; sha256 = "0gw8ffr64s58qdbvm034s1b9xz1hynzvbk8ld67j06fxpc98qaj4"; name = "highlight-symbol"; }; @@ -13607,7 +13775,7 @@ sha256 = "0hb74j5137yj3rm2si16xzwmcvkiwx8ywh1qrlnrzv5gl4viyjzb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hindent"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/hindent"; sha256 = "1f3vzgnqigwbwvglxv0ziz3kyp5dxjraw3vlghkpw39f57mky4xz"; name = "hindent"; }; @@ -13628,7 +13796,7 @@ sha256 = "0mzk4agkcaaw7gryi0wrxv0blqndqsjf1ivdvr2nrnqi798sdhbr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hippie-expand-slime"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/hippie-expand-slime"; sha256 = "0kxyv1lpkg33qgfv1jfqx03640py7525bcnc9dk98w6y6y92zf4m"; name = "hippie-expand-slime"; }; @@ -13649,7 +13817,7 @@ sha256 = "0nfr8ad0klqwi97fjchvwx9mfc672lhv3ll166sr8vn6jlh7rkv0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hippie-namespace"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/hippie-namespace"; sha256 = "1bzjhq116ci9c9f0aw121fn3drmg2pw5ny1w6wcasa4p30syxxf0"; name = "hippie-namespace"; }; @@ -13670,7 +13838,7 @@ sha256 = "0dy98sg92xvnr4algm2v2bnjcdwzv0b0vqk0312b0ziinkzisas1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/history"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/history"; sha256 = "0s8pcz53bk1w4h5847204vb6j838vr8za66ni1b2y4pas76zjr5g"; name = "history"; }; @@ -13691,7 +13859,7 @@ sha256 = "1mxicha6m61qxz1mv9z76x4g9fpqk4ch9i6jf7nnpxd6x4xz3f7z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/historyf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/historyf"; sha256 = "15pcaqfjpkfwcy46yqqw10q8kpw7aamcg0gr4frbdgzbv0yld08s"; name = "historyf"; }; @@ -13712,7 +13880,7 @@ sha256 = "0889dzrwizpkyh3wms13k8zx27ipsrsxfa4j4yzk4cwk3aicckcr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hl-anything"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/hl-anything"; sha256 = "0czpc82j5hbzprc66aall72lqnk38dxgpzx4rs8sbx95cag12dxa"; name = "hl-anything"; }; @@ -13733,7 +13901,7 @@ sha256 = "1hgigbgppdhmr7rc901r95kyydjk05dck8mwbryh7kpglns365fa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hl-sentence"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/hl-sentence"; sha256 = "16sjfs0nnpwzj1cqfna9vhmxgznwwhb2qdmjci25hlgrdxwwyahs"; name = "hl-sentence"; }; @@ -13754,7 +13922,7 @@ sha256 = "1fsyj9cmqcz5nfxsfcyvpq2vqrhgl99xvq7ligviawl3x77376kw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hl-sexp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/hl-sexp"; sha256 = "0kg0m20i9ylphf4w0qcvii8yp65abdl2q5flyphilk0jahwbj9jy"; name = "hl-sexp"; }; @@ -13775,7 +13943,7 @@ sha256 = "1ljakm15bsl9hv1rbg6lj0mnbc4qna5fr9rwkalnlwknjpka1bx3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hl-todo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/hl-todo"; sha256 = "1iyh68xwldj1r02blar5zi01wnb90dkbmi67vd6h78ksghl3z9j4"; name = "hl-todo"; }; @@ -13796,7 +13964,7 @@ sha256 = "1wg6vc9swwspi6s6jpig3my83i2pq8vkq2cy1q3an87rczacmfzp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hoa-pp-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/hoa-pp-mode"; sha256 = "01ijfn0hd645j6j88rids5dsanmzwmky37slf50yqffnv69jwvla"; name = "hoa-pp-mode"; }; @@ -13817,7 +13985,7 @@ sha256 = "0yh9v5zng1j2kfjjadfkdds67jws79q52kvl2mx9s8mq28263idm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/homebrew-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/homebrew-mode"; sha256 = "088wc5fq4r5yj1nbh7mriyqf0xwqmbxvblj9d2wwrkkdm5flc8mj"; name = "homebrew-mode"; }; @@ -13838,7 +14006,7 @@ sha256 = "1yvz9d5h7npxhsdf6s9fgxpmqk5ixx91iwivbhzcz935gs2886hc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hookify"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/hookify"; sha256 = "0prls539ifk2fsqklcxmbrwmgbm9hya50z486d7sw426lh648qmy"; name = "hookify"; }; @@ -13859,7 +14027,7 @@ sha256 = "0k09n66jar0prq9aal2h3izp1y67jibdx0gjr0g4jx1p1yxig1dg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ht"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ht"; sha256 = "16vmxksannn2wyn8r44jbkdp19jvz1bg57ggbs1vn0yi7nkanwbd"; name = "ht"; }; @@ -13880,7 +14048,7 @@ sha256 = "0c648dl5zwjrqx9n6zr6nyzx2zcnv05d5i4hvhjpl9q3y011ncns"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/html-to-markdown"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/html-to-markdown"; sha256 = "1gjh9ndqsb3nfb7w5h7carjckkgy6qh63b4mg141j19dsyx9rrjv"; name = "html-to-markdown"; }; @@ -13901,7 +14069,7 @@ sha256 = "1h9n388fi17nbyfciqywgrq3n165kpiildbimx59qyk2ac3v7rqk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/httpcode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/httpcode"; sha256 = "05k1al1j119x6zf03p7jn2r9qql33859583nbf85k41bhicknpgh"; name = "httpcode"; }; @@ -13922,7 +14090,7 @@ sha256 = "0dd257988bdar9hl2711ch5qshx9jc11fqxcvbrd7rc1va5cshs9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/httprepl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/httprepl"; sha256 = "0899qb1yfnsyf04hhvnk47qnq4d1f4vd5ghj43x4743wd2b9qawh"; name = "httprepl"; }; @@ -13943,7 +14111,7 @@ sha256 = "1b8992vzq5bh01pjlj181nzqjrqs4fbjpwvv8h7gjq42sf8w59sm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hyai"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/hyai"; sha256 = "00ns7q5b11c5amwkq11fs4p5vrmdfmjljfrcxbwb39gc12yrhn7s"; name = "hyai"; }; @@ -13964,7 +14132,7 @@ sha256 = "0nwsmc4c3v0wbfy917ik9k7yz8yclfac695p7p9sh9y354k3maw4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hyde"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/hyde"; sha256 = "18kjcxm7qmv9bfh4crw37zgax8khjqs9zkp4lrb490zlad2asbs3"; name = "hyde"; }; @@ -13985,7 +14153,7 @@ sha256 = "08iw95lyizcyf6cjl37fm8wvay0vsk9758pk9gq9f2xiafcchl7f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/hydra"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/hydra"; sha256 = "1c59l43p39ins3dn9690gm6llwm4b9p0pk78lip0dwlx736drdbw"; name = "hydra"; }; @@ -14006,7 +14174,7 @@ sha256 = "1zcnp61c9cp2kvns3v499hifk072rxm4rhw4pvdv2mm966vcxzvc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ibuffer-projectile"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ibuffer-projectile"; sha256 = "1qh4krggmsc6lx5mg60n8aakmi3f6ppl1gw094vfcsni96jl34fk"; name = "ibuffer-projectile"; }; @@ -14027,7 +14195,7 @@ sha256 = "0bqdi5w120256g74k0j4jj81x804x1gcg4dxa74w3mb6fl5xlvs8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ibuffer-vc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ibuffer-vc"; sha256 = "0bn5qyiq07cgzci10xl57ss5wsk7bfhi3hjq2v6yvpy9v704dvla"; name = "ibuffer-vc"; }; @@ -14048,7 +14216,7 @@ sha256 = "047gzycr49cs8wlmm9j4ry7b7jxmfhmbayx6rbbxs49lba8dgwlk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/identica-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/identica-mode"; sha256 = "1r69ylykjap305g23cry4wajiqhpgw08nw3b5d9i1y3mwx0j253q"; name = "identica-mode"; }; @@ -14069,7 +14237,7 @@ sha256 = "0x4w1ksrw7dicl84zpf4d4scg672dyan9g95jkn6zvri0lr8xciv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/idle-highlight-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/idle-highlight-mode"; sha256 = "1i5ky61bq0dpk71yasfpjhsrv29mmp9nly9f5xxin7gz3x0f36fc"; name = "idle-highlight-mode"; }; @@ -14079,6 +14247,27 @@ license = lib.licenses.free; }; }) {}; + ido-at-point = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "ido-at-point"; + version = "1.0.0"; + src = fetchFromGitHub { + owner = "katspaugh"; + repo = "ido-at-point"; + rev = "e5907bbe8a3d148d07698b76bd994dc3076e16ee"; + sha256 = "1bii7vj8pmmijcpvq3a1scky4ais7k6d7zympb3m9dmz355m9rpp"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ido-at-point"; + sha256 = "0jpgq2iiwgqifwdhwhqv0cd3lp846pdqar6rxqgw9fvvb8bijqm0"; + name = "ido-at-point"; + }; + packageRequires = [ emacs ]; + meta = { + homepage = "https://melpa.org/#/ido-at-point"; + license = lib.licenses.free; + }; + }) {}; ido-complete-space-or-hyphen = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ido-complete-space-or-hyphen"; @@ -14090,7 +14279,7 @@ sha256 = "1ffmsmi31jc0gqnbdxrd8ipsy790bn6hgq3rmayylavmdpg3qfd5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ido-complete-space-or-hyphen"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ido-complete-space-or-hyphen"; sha256 = "1wk0cq5gjnprmpyvhh80ksz3fash42hckvmx8m95crbzjg9j0gbc"; name = "ido-complete-space-or-hyphen"; }; @@ -14111,7 +14300,7 @@ sha256 = "1ddy590xgv982zsgs1civqy0ch0a88z98qhq0bqqjivf9gq3v0pf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ido-completing-read+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ido-completing-read+"; sha256 = "034j1q47d57ia5bwbf1w66gw6c7aqbhscpy3dg2a71lwjzfmshwh"; name = "ido-completing-read-plus"; }; @@ -14132,7 +14321,7 @@ sha256 = "0055dda1la7yah33xsi19j4hcdmqp17ily2dvkipm4y6d3ww8yqa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ido-describe-bindings"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ido-describe-bindings"; sha256 = "1lsa09h025vd908r9q571iq2ia0zdpnq04mlihb3crpp5v9n9ws2"; name = "ido-describe-bindings"; }; @@ -14153,7 +14342,7 @@ sha256 = "0f1p6cnl0arcc2y1h99nqcflp7byvyf6hj6fmv5xqggs66qc72lb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ido-grid-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ido-grid-mode"; sha256 = "1wl1yclcxmkbfnvp0il23csdf6gprzf7fkcknpivk784fhl19acr"; name = "ido-grid-mode"; }; @@ -14174,7 +14363,7 @@ sha256 = "1z7az7h90v72llxvdclcywvf1qd0nhkfa45bp99xi7cy7sqsqssf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ido-load-library"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ido-load-library"; sha256 = "13f83gqh39p3yjy7r7qc7kzgdcmqh4b5c07zl7rwzb8y9rz59lhj"; name = "ido-load-library"; }; @@ -14195,7 +14384,7 @@ sha256 = "0j12li001yq08vzwh1b25qyq09llizrkgaay9k07g9pvfxlx6zb3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ido-occur"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ido-occur"; sha256 = "058l2pklg12wkvyyshk8va6shphpbc508fv9a8x25pw857a28pji"; name = "ido-occur"; }; @@ -14216,7 +14405,7 @@ sha256 = "1ddy590xgv982zsgs1civqy0ch0a88z98qhq0bqqjivf9gq3v0pf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ido-ubiquitous"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ido-ubiquitous"; sha256 = "143pzpix9aqpzjy8akrxfsxmwlzc9bmaqzp9fyhjgzrhq7zchjsp"; name = "ido-ubiquitous"; }; @@ -14237,7 +14426,7 @@ sha256 = "1lv82q639xjnmvby56nwqn23ijh6f163bk675s33dkingm8csj8k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ido-vertical-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ido-vertical-mode"; sha256 = "1vg5s6nd6v2g8ychz1q9cdqvsdw6vag7d9w68sn7blpmlr0nqhfm"; name = "ido-vertical-mode"; }; @@ -14258,7 +14447,7 @@ sha256 = "046ns1nqisz830f6xwlly1qgmi4v2ikw6vmj0f93jprv4vkjylpq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ido-yes-or-no"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ido-yes-or-no"; sha256 = "0glag4yb9xyf1lxxbdhph2nq6s1vg44i6f2z1ii8bkxpambz2ana"; name = "ido-yes-or-no"; }; @@ -14279,7 +14468,7 @@ sha256 = "0bq0kx0889rdy8aasxbpmb0a4awpk2b24zv6x1dmhacmc5rj11i0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/idomenu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/idomenu"; sha256 = "0mg601ak9mhp2fg5n13npcfzphgyms4vkqd18ldmv098z2z1412h"; name = "idomenu"; }; @@ -14300,7 +14489,7 @@ sha256 = "0iwgbaq2797k1f7ql86i2pjfa67cha4s2v0mgmrd0qcgqkxsdq92"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/idris-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/idris-mode"; sha256 = "0hiiizz976hz3z3ciwg1gs9y10qhxbs8givhz89kvyn4s4861a1s"; name = "idris-mode"; }; @@ -14321,7 +14510,7 @@ sha256 = "06qv95bgcb6n3zcjs2i1q80v9040z7m9pb9xbhxmqzcx68vpbpdm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/iedit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/iedit"; sha256 = "02gjshvkcvyr58yf6vlg3s2pzls5sd54xpxggdmqajfg8xmpkq04"; name = "iedit"; }; @@ -14342,7 +14531,7 @@ sha256 = "18rlyjsn9w0zbs0c002s84qzark3rrcmjn9vq4nap7i6zpaq8hki"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/iflipb"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/iflipb"; sha256 = "1nfrrxgi9nlhn477z8ay7jxycpcghhhmmg9dagdhrlrr20fx697d"; name = "iflipb"; }; @@ -14363,7 +14552,7 @@ sha256 = "1ca2n6vv2z7c3550w0jzwmp6xp0rmrrbljr1ik2ijign62r35a3q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ignoramus"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ignoramus"; sha256 = "1czqdmlrds1l5afi8ldg7nrxcwav86538z2w1npad3dz8xk67da9"; name = "ignoramus"; }; @@ -14384,7 +14573,7 @@ sha256 = "0imvxzcja91cd19zm2frqfpxm8j0bc89w9s7q0pkpvyjz44kjbq8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/image-archive"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/image-archive"; sha256 = "0x0lv5dr1gc9bnr3dn26bc9s1ccq2rp8c4a1licbi929f0jyxxfp"; name = "image-archive"; }; @@ -14405,7 +14594,7 @@ sha256 = "1n2ya9s0ld257a8iryjd0dz0z2zs1xhzfiwsdkq4l4azwxl54m29"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/image-dired+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/image-dired+"; sha256 = "0hhwqfn490n7p12n7ij4xbjh15gfvicmn21fvwbnrmfqc343pcdy"; name = "image-dired-plus"; }; @@ -14426,7 +14615,7 @@ sha256 = "0k69xbih0273xvmj035vcmm67l6hgjb99pb1jbva5x0pnszb1vdv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/image+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/image+"; sha256 = "1a9dxswnqn6cvx28180kclpjc0vc6fimzp7n91gpdwnmy123x6hg"; name = "image-plus"; }; @@ -14447,7 +14636,7 @@ sha256 = "15lflvpapm5749qq7jzdwbd0isb89i6df3np4wn9y9gjl7y92wk7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/imapfilter"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/imapfilter"; sha256 = "0i893kqj6yzadhza800r6ri7fihl01r57z8yrzzh3d09qaias5vz"; name = "imapfilter"; }; @@ -14468,7 +14657,7 @@ sha256 = "0qc96p5f7paxaxzv73w072cba8jb6ibdbhml7n7cm85b0rz1wf16"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/imenu-anywhere"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/imenu-anywhere"; sha256 = "1ylqzdnd3nzcpyyd6rh6i5q9mvf8c99rvpk51fzfm3yq2kyw4dbq"; name = "imenu-anywhere"; }; @@ -14489,7 +14678,7 @@ sha256 = "1j0p0zkk89lg5xk5qzdnj9nxxiaxhff2y9iv9lw456kvb3lsyvjk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/imenu-list"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/imenu-list"; sha256 = "092fsn7hnbfabcyakbqyk20pk62sr8xrs45aimkv1l91681np98s"; name = "imenu-list"; }; @@ -14510,7 +14699,7 @@ sha256 = "1y57xp0w0c6hg3gn4f1l3612a18li4gwhfa4dy18fy94gr54ycpx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/imenus"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/imenus"; sha256 = "1q0j6r2n5vjlbgchkz9zdglmmbpd8agawzcg61knqrgzpc4lk82r"; name = "imenus"; }; @@ -14531,7 +14720,7 @@ sha256 = "19jqcbiwqknlpij9q63m1p69k4zb3v1qdx0858drprc2rl1p55cd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/imgix"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/imgix"; sha256 = "0dh7qsz5c9mflldcw60vc8mrxrw76n2ydd7blv6jfmsnr19ila4q"; name = "imgix"; }; @@ -14552,7 +14741,7 @@ sha256 = "1pf7pqh8yzyvh4gzvp5npfq8kcfjcbzra0kkw7zmz769xxc8v84x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/immutant-server"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/immutant-server"; sha256 = "15vcxag1ni41ja4b3q0444sq5ysrisis59la7li6h3617wy8r02i"; name = "immutant-server"; }; @@ -14594,7 +14783,7 @@ sha256 = "0ycsdwwfb27g85aby4jix1aj41a4vq6bf541iwla0xh3wsyxb01w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/import-popwin"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/import-popwin"; sha256 = "0vkw6y09m68bvvn1wzah4gzm69z099xnqhn359xfns2ljm74bvgy"; name = "import-popwin"; }; @@ -14615,7 +14804,7 @@ sha256 = "1dmr1arqy2vs9jdjha513mvw3yfwgkn4zs728q83asjy91sfcz7k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/inf-clojure"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/inf-clojure"; sha256 = "0n8w0vx1dnbfz88j45a57z9bsmkxr2zyh6ld72ady8asanf17zhl"; name = "inf-clojure"; }; @@ -14636,7 +14825,7 @@ sha256 = "11zsprv5ycnfqi358dd4cx70dbn6a8hccd4prf28lln7vhldbmjz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/inf-ruby"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/inf-ruby"; sha256 = "02f01vwzr6j9iqcdns4l579bhia99sw8hwdqfwqjs9gk3xampfpp"; name = "inf-ruby"; }; @@ -14657,7 +14846,7 @@ sha256 = "1fm69g4mrmdchvxr062bk7n1jvs2rrscddb02cldb5bgdrcw8g6j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/inflections"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/inflections"; sha256 = "0f02bhm2a5xiaxnf2c2hlpa4p121xfyyj3c59fy0yldipdxhvw70"; name = "inflections"; }; @@ -14678,7 +14867,7 @@ sha256 = "031vb7ndz68x0119v4pyizz0ykd341ywcp5s7i4z35zx1vcqj8az"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/init-loader"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/init-loader"; sha256 = "0rq7759abp0ml0l8dycvdl0j5wsxw9z5y9pyx68973a4ssbx2i0r"; name = "init-loader"; }; @@ -14699,7 +14888,7 @@ sha256 = "06w1vnfhjy8g62z6xajin5akgh30pa0kk56am61kv6mi5ia8fc96"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/init-open-recentf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/init-open-recentf"; sha256 = "0xlmfxhxb2car8vfx7krxmxb3d56x0r3zzkj8ds7yqvr65z85x2r"; name = "init-open-recentf"; }; @@ -14720,7 +14909,7 @@ sha256 = "1rfw38a63bvzglqx7mb8wlnzjvlmkhkn35hn66snqqgvnmnvi54g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/initsplit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/initsplit"; sha256 = "0n9dk3x62vgxfn39jkmdg8wxsik0xqkprifgvqzyvn8xcx1blyyq"; name = "initsplit"; }; @@ -14741,7 +14930,7 @@ sha256 = "0jipds844432a8m4d5gxbbkk2h1rsq9fg748g6bxy2q066kyzfz6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/inline-crypt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/inline-crypt"; sha256 = "04mcyyqa9h6g6wrzphzqalpqxsndmzxpavlpdc24z4a2c5s3yz8n"; name = "inline-crypt"; }; @@ -14762,7 +14951,7 @@ sha256 = "15nasjknmzy57ilj1gaz3w5sj8b3ijcpgwcd6w2r9xhgcl86m40q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/inlineR"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/inlineR"; sha256 = "1fflq2gkpfn3jkv4a6yywzmxsq6qszfid1ri85ass1ppw6scdvzw"; name = "inlineR"; }; @@ -14783,7 +14972,7 @@ sha256 = "1mqnz40zirnyn3wa71wzzjph3a0sbgvzcywcr7xnzqpl6sp7g93f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/insert-shebang"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/insert-shebang"; sha256 = "0z88l1q925v9lwzr6nas9qjy0f57qxilg6smgpx9wj6lll3f7p5v"; name = "insert-shebang"; }; @@ -14803,7 +14992,7 @@ sha256 = "0krscid3yz2b7kv75gd9fs92zgfl7pnl77dbp5gycv5rmw5mivp8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/instapaper"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/instapaper"; sha256 = "1yibdpj3lx6vr33s75s1y415lxqljrk7pqc901f8nfa01kca7axn"; name = "instapaper"; }; @@ -14824,7 +15013,7 @@ sha256 = "1qs6j9cz152wfy54c5d1a558l0df6wxv3djlvfl2mx58wf0sk73h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/interleave"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/interleave"; sha256 = "18b3fpxn07y5abkcnaw9is9ihdhik7xjdj6kzl1pz958lk9f4hfy"; name = "interleave"; }; @@ -14845,7 +15034,7 @@ sha256 = "043dnij48zdyg081sa7y64lm35z7zvrv8gcymv3l3a98r1yhy3v6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/iplayer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/iplayer"; sha256 = "0wnxvdlnvlmspqsaqx0ldw8j03qjckkqzvx3cbpc2yfs55pm3p7r"; name = "iplayer"; }; @@ -14866,7 +15055,7 @@ sha256 = "036q933yw7pimnnq43ydaqqfccgf4iwvjhjmsavp7l6y1w16rvmy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ir-black-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ir-black-theme"; sha256 = "1qpq9zbv63ywzk5mlr8x53g3rn37k0mdv6x1l1hcd90gka7vga9v"; name = "ir-black-theme"; }; @@ -14887,7 +15076,7 @@ sha256 = "1y72xhs978ah53fmp10pa8riscx94y9bjvr26wk2f3zc94c6cq3d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/irony"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/irony"; sha256 = "1xcxrdrs7imi31nxpszgpaywq4ivni75hrdl4zzrf103xslqpl8a"; name = "irony"; }; @@ -14908,7 +15097,7 @@ sha256 = "09hx28lmldm7z3x22a0qx34id09fdp3z61pdr61flgny213q1ach"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/isgd"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/isgd"; sha256 = "0yc9mkjzj3w64f48flnjvd193mk9gndrrqbxz3cvmvq3vgahhzyi"; name = "isgd"; }; @@ -14929,8 +15118,8 @@ sha256 = "19vfj01x7b8f7wyx7m51z00la2r7jcwzv0n06srkvcls0wm5s1h3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ivy"; - sha256 = "1w6dh05k1m1b1m3qy1mhfrl9rck0h1x6kh2b2llidwbv346wp17g"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ivy"; + sha256 = "1y1izabz2gx2f26ayrfg0094ygb1n5val0ng226p3pfxgj07wfss"; name = "ivy"; }; packageRequires = [ emacs ]; @@ -14950,7 +15139,7 @@ sha256 = "0rpxh1jv98dl9b5ldjkljk70z4hkl61kcmvy1lhpj3lxn8ysv87a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ix"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ix"; sha256 = "1fl76dk8vgw3mrh5iz99lrsllwya6ij9d1lj3szcrs4qnj0b5ql3"; name = "ix"; }; @@ -14971,7 +15160,7 @@ sha256 = "1mb0k4lmbkbpn6qzzg8n14pybhd5zla77ppqac6a9kw89fj2qj4i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/iy-go-to-char"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/iy-go-to-char"; sha256 = "10szn9y7gl8947p3f9w6p6vzjf1a9cjif9mbj3qdqx4vbsl9mqpz"; name = "iy-go-to-char"; }; @@ -14992,7 +15181,7 @@ sha256 = "07kbicf760nw4qlb2lkf1ns8yzqy0r5jqqwqjbsnqxx4sm52hml9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/j-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/j-mode"; sha256 = "0f9lsr9hjhdvmzx565ivlncfzb4iq4rjjn6a41053cjy50bl066i"; name = "j-mode"; }; @@ -15011,7 +15200,7 @@ sha256 = "0d6dwj45rrvh3dlrhdmqkxjmd439a1x3h88czdg7np2m5q2xg2dg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jabber"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/jabber"; sha256 = "1g5pc80n3cd5pzs3hmpbnmxbldwakd72pdn3vvb0h26j9v073pa8"; name = "jabber"; }; @@ -15032,7 +15221,7 @@ sha256 = "0krbd1qa2408a97pqhl7fv0x8x1n2l3qq33zzj4w4vv0c55jk43n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jade-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/jade-mode"; sha256 = "156j0d9wx6hrhph0nsjsi1jha4h65rcbrbff1j2yr8vdsszjrs94"; name = "jade-mode"; }; @@ -15053,7 +15242,7 @@ sha256 = "0x0vz7m9kn7b2aiqvrdqx8qh84ynbpzy2asz2b18l47bcwa7r5bh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jammer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/jammer"; sha256 = "01c4bii7gswhp6z9dgx4bhvsywiwbbdv7mg1zj6vp1530l74zx6z"; name = "jammer"; }; @@ -15074,7 +15263,7 @@ sha256 = "08gkxxaw789g1r0dql11skz6i8bdrrz4wp87fzs9f5rgx99xxr6h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/japanlaw"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/japanlaw"; sha256 = "1pxss1mjk5660k80r1xqgslnbrsr6r4apgp9abjwjfxpg4f6d0sa"; name = "japanlaw"; }; @@ -15095,7 +15284,7 @@ sha256 = "1bngn6v6w60qb3zz7s3px7v3wk99a3hfvzrg9l06dz1q7xgyvsi1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/java-imports"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/java-imports"; sha256 = "1waz6skyrm1n8wpc0pwa652l11wz8qz1m89mqxk27k3lwyd84n98"; name = "java-imports"; }; @@ -15116,7 +15305,7 @@ sha256 = "16gywcma1s8kslwznlxwlx0xj0gs5g31637kb74vfdplk48f04zj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/javadoc-lookup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/javadoc-lookup"; sha256 = "1fffs0iqkk9rg5vbxifvn09j4i2751p81bzcvy5fslr3r1r2nv79"; name = "javadoc-lookup"; }; @@ -15137,7 +15326,7 @@ sha256 = "0xbp9fcxgbf298w05hvf52z41kk7r52975ailgdn8sg60xc98fa7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jedi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/jedi"; sha256 = "1777060q25k9n2g6h1lm5lkki900pmjqkxq72mrk3j19jr4pk9m4"; name = "jedi"; }; @@ -15158,7 +15347,7 @@ sha256 = "0xbp9fcxgbf298w05hvf52z41kk7r52975ailgdn8sg60xc98fa7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jedi-core"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/jedi-core"; sha256 = "0pzi32zdb4g9n4kvpmkdflmqypa7nckmnjq60a3ngym4wlzbb32f"; name = "jedi-core"; }; @@ -15179,7 +15368,7 @@ sha256 = "0ws0297v6sairvsk665wrfzymfi599g5ljshfnpmi81qnnnbwjgf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jq-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/jq-mode"; sha256 = "1xvh641pdkvbppb2nzwn1ljdk7sv6laq29kdv09kxaqd89vm0vin"; name = "jq-mode"; }; @@ -15200,7 +15389,7 @@ sha256 = "1f1zad423q5adycbbh62094m622gl8ncwbr8vxad1a6zcga70cgi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/js-comint"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/js-comint"; sha256 = "0jvkjb0rmh87mf20v6rjapi2j6qv8klixy0y0kmh3shylkni3an1"; name = "js-comint"; }; @@ -15221,7 +15410,7 @@ sha256 = "0d2hqlgm09rw0azha5dxmq63b56sa8b9qj7gd7invibl6nnyjh4a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/js2-closure"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/js2-closure"; sha256 = "19732bf98lk2ah2ssgkr1ngxx7rz3nhsiw84lsfmydb0vvm4fpk7"; name = "js2-closure"; }; @@ -15242,7 +15431,7 @@ sha256 = "0r2szaxr3q0gvxqd9asn03q8jf3nclxv4mqdsjn96s98n45x388l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/js2-highlight-vars"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/js2-highlight-vars"; sha256 = "07bq393g2jy8ydvaqyqn6vdyfvyminvgi239yvwzg5g9a1xjc475"; name = "js2-highlight-vars"; }; @@ -15263,7 +15452,7 @@ sha256 = "0xj87grvg7pbhh4d239gaqai5gl72klhpp9yksaqn77qnm98q4fn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/js2-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/js2-mode"; sha256 = "0f9cj3n55qnlifxwk1yp8n1kfd319jf7qysnkk28xpvglzw24yjv"; name = "js2-mode"; }; @@ -15284,7 +15473,7 @@ sha256 = "08wxsz90x5zhma3q8kqfd01avhzxjmcrjc95s757l5xaynsc2bly"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/js2-refactor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/js2-refactor"; sha256 = "09dcfwpxxyw0ffgjjjaaxbsj0x2nwfrmxy1a05h8ba3r3jl4kl1r"; name = "js2-refactor"; }; @@ -15305,7 +15494,7 @@ sha256 = "17d0nf1kz7mgv5qz57q6khy4w5vrmsliqirggahk9s6nnsx1j56n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/js3-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/js3-mode"; sha256 = "12s5qf6zfcv4m5kqxvh9b4zgwf433x39a210d957gjjp5mywbb1r"; name = "js3-mode"; }; @@ -15326,7 +15515,7 @@ sha256 = "0pjmslxwmlb9cb3j5qfsyxq1lg1ywzw1p9dvj330c2m7nla1j70x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jsfmt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/jsfmt"; sha256 = "1syy32sv2d57b3gja0ly65h36mfnyq6hzf5lnnl3r58yvbdzngqd"; name = "jsfmt"; }; @@ -15347,7 +15536,7 @@ sha256 = "0sxkp9m68rvff8dbr8jlsx85w5ngifn19lwhcydysm7grbwzrdi3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/json-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/json-mode"; sha256 = "014j10wgxsqy6d6aksnkz2dr5cmpsi8c7v4a825si1vgb4622a70"; name = "json-mode"; }; @@ -15368,7 +15557,7 @@ sha256 = "0qp4n2k6s69jj4gwwimkpadjv245y54wk3bxb1x96f034gkp81vs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/json-reformat"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/json-reformat"; sha256 = "1m5p895w9qdgb8f67xykhzriribgmp20a1lvj64iap4aam6wp8na"; name = "json-reformat"; }; @@ -15389,7 +15578,7 @@ sha256 = "05zsgnk7grgw9jzwl80h5sxfpifxlr37b4mkbvx7mjq4z14xc2jw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/json-snatcher"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/json-snatcher"; sha256 = "0f6j9g3c5fz3wlqa88706cbzinrs3dnfpgsr2d3h3117gic4iwp4"; name = "json-snatcher"; }; @@ -15410,7 +15599,7 @@ sha256 = "1wx28rr5dk238yz07xn95v88qmv10c1gz9pcxard2kszpnmrn6dx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jsx-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/jsx-mode"; sha256 = "1lnjnyn8qf3biqr92z443z6b58dly7glksp1g986vgqzdprq3n1b"; name = "jsx-mode"; }; @@ -15431,7 +15620,7 @@ sha256 = "1fm69g4mrmdchvxr062bk7n1jvs2rrscddb02cldb5bgdrcw8g6j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jump"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/jump"; sha256 = "18g0fa9g8m9jscsm6pn7jwdq94l4aj0dfhrv2hqapq1q1x537364"; name = "jump"; }; @@ -15452,7 +15641,7 @@ sha256 = "1s9plmg323m1p625xqnks0yqz0zlsjacdj7pv8f783r0d9jmfq3s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jump-to-line"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/jump-to-line"; sha256 = "09ifhsggl5mrb6l8nqnl38yph0v26v30y98ic8hl23i455hqkkdr"; name = "jump-to-line"; }; @@ -15473,7 +15662,7 @@ sha256 = "1785nsv61m51lpykai2wxrv6zmwbm5654v937fgw177p37054s83"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/jvm-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/jvm-mode"; sha256 = "1r283b4s0pzq4hgwcz5cnhlvdvq4gy0x51g3vp0762s8qx969a5w"; name = "jvm-mode"; }; @@ -15494,7 +15683,7 @@ sha256 = "03l9w238a5kyfin3v1fy1q2pl0gvmb87j0v89g6nk114s7m4y3r8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/kaesar"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/kaesar"; sha256 = "0zhi1dv1ay1azh7afq4x6bdg91clwpsr13nrzy7539yrn9sglj5l"; name = "kaesar"; }; @@ -15515,7 +15704,7 @@ sha256 = "03l9w238a5kyfin3v1fy1q2pl0gvmb87j0v89g6nk114s7m4y3r8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/kaesar-file"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/kaesar-file"; sha256 = "0dcizg82maad98mbqqw5lamwz7n2lpai09jsrc66x3wy8k784alc"; name = "kaesar-file"; }; @@ -15536,7 +15725,7 @@ sha256 = "03l9w238a5kyfin3v1fy1q2pl0gvmb87j0v89g6nk114s7m4y3r8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/kaesar-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/kaesar-mode"; sha256 = "0yqnlchbpmhsqc8j531n08vybwa32cy0v9sy4f9fgxa90rfqczry"; name = "kaesar-mode"; }; @@ -15557,7 +15746,7 @@ sha256 = "0b6af8hnrn0v4z1xpahjfpw5iga2bmgd3qwfn3is2rygsn5rkm40"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/kakapo-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/kakapo-mode"; sha256 = "0a99cqflpzasl4wcmmf99aj8xgywkym37j7mvnsajrsk5wawdlss"; name = "kakapo-mode"; }; @@ -15578,7 +15767,7 @@ sha256 = "0avcg307r4navvgj3hjkggk4gr7mzs4mljhxh223r8g69l9bm6m8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/karma"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/karma"; sha256 = "19wl7js7wmw7jv2q3l4r5zl718lhy2a0jhl79k57ihwhxdc58fwc"; name = "karma"; }; @@ -15599,7 +15788,7 @@ sha256 = "14ijniyvcfmj4y77yhiplsclincng2r3jbdnmmdnwzliv65f7l6q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/key-combo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/key-combo"; sha256 = "1v8saw92jphvjkyy7j9jx7cxzgisl4zpf4wjzdjfw3la5lz11waf"; name = "key-combo"; }; @@ -15620,7 +15809,7 @@ sha256 = "05vpydcgiaya35b62cdjxna9y02vnwzzg6p8jh0dkr9k44h4iy3f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/key-seq"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/key-seq"; sha256 = "166k6hl9vvsnnksvhrv5cbhv9bdiclnbfv7qf67q4c1an9xzqi74"; name = "key-seq"; }; @@ -15641,7 +15830,7 @@ sha256 = "0xgm80dbg45bs3k8psd3pv49z1xbvzm156xs55gmxdzbgxbzpazr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/keychain-environment"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/keychain-environment"; sha256 = "1w77cg00bwx68h0d6k6r1fzwdwz97q12ch2hmpzjnblqs0i4sv8v"; name = "keychain-environment"; }; @@ -15662,7 +15851,7 @@ sha256 = "0dkc51bmix4b8czs2wg6vz8vk32qlll1b9fjmx6xshrxm85cyhvv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/keydef"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/keydef"; sha256 = "0yb2vgj7abyg8j7qmv74nsanv50lf350q1m58rjv8wm31yykg992"; name = "keydef"; }; @@ -15675,15 +15864,15 @@ keyfreq = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "keyfreq"; - version = "1.7"; + version = "1.8"; src = fetchFromGitHub { owner = "dacap"; repo = "keyfreq"; - rev = "0c0a36a895a34d802614d34d7a3cc986e502ea35"; - sha256 = "0ways4ksb9pk2kkpgclsxgc0ycfwcr8vghlbv5ic4y0c4ycmlb2d"; + rev = "f3a96693e2e4c6893198a0223e3f3c648ae09cec"; + sha256 = "1x87mbnzkggx5llh0i0s3sj1nfw7liwnlqc9csya517w4x5mhl8i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/keyfreq"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/keyfreq"; sha256 = "1rw6hzmw7h5ngvndy7aa41pq911y2hr9kqc9w4gdd5v2p4ln1qh7"; name = "keyfreq"; }; @@ -15704,7 +15893,7 @@ sha256 = "1c4qqfq7c1d31v9ap7fgq019l5vds7jzqq9c2dp4gj7j00d9vvlx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/keymap-utils"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/keymap-utils"; sha256 = "0nbcwz4nls0pva79lbx91bpzkl38g98yavwkvg2rxbhn9vjbhzs9"; name = "keymap-utils"; }; @@ -15725,7 +15914,7 @@ sha256 = "0z6sgz8nywsd00zaayafwy5hfi7kzxfifjkfr5cn1l7wlypyksfv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/keyset"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/keyset"; sha256 = "1kfw0pfb6qm2ji1v0kb8xgz8q2yd2k9kxmaz5vxcdixdlax3xiqg"; name = "keyset"; }; @@ -15746,7 +15935,7 @@ sha256 = "0ky167xh1hrmqsldybzjhyqjizgjzs1grn5mf8sm2j9qwcvjw2zv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/kibit-helper"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/kibit-helper"; sha256 = "15viybjqksylvm5ash2kzsil0cpdka56wj1rryixa8y1bwlj8y4s"; name = "kibit-helper"; }; @@ -15767,7 +15956,7 @@ sha256 = "1c5al7cyfnb0p5ya2aa5afadzbrrc079jx3r6zpkr64psskrhdv5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/kill-or-bury-alive"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/kill-or-bury-alive"; sha256 = "0mm0m8hpy5v98cap4f0s38dcviirm7s6ra4l94mknyvnx0f73lz8"; name = "kill-or-bury-alive"; }; @@ -15788,7 +15977,7 @@ sha256 = "0axvhikhg4fikiz4ifg0p4a5ygphbpjs0wd0gcbx29n0y54d1i93"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/kill-ring-search"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/kill-ring-search"; sha256 = "1pg4j1rrji64rrdv2xpwz33vlyk8r0hz4j4fikzwpbcbmni3skan"; name = "kill-ring-search"; }; @@ -15809,7 +15998,7 @@ sha256 = "0imylcaiwpzvvb3g8kpsna1vk7v7bwdjfcsa98i41m1rv9yla86l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/killer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/killer"; sha256 = "10z4vqwrpss7mk0gq8xdsbsl0qibpp7s1g0l8wlmrsgn6kjkr2ma"; name = "killer"; }; @@ -15830,7 +16019,7 @@ sha256 = "0rzzjzkzgpiadm9awkj7wrh2hg97lhgwxg74gvdis3fc1xg2hyri"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/kivy-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/kivy-mode"; sha256 = "02l230rwivr7rbiqm4vg70458z35f9v9w3mdapcrqd5d07y5mvi1"; name = "kivy-mode"; }; @@ -15851,7 +16040,7 @@ sha256 = "1lppggnii2r9fvlhh33gbdrwb50za8lnalavlq9s86ngndn4n94k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/know-your-http-well"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/know-your-http-well"; sha256 = "0k2x0ajxkivim8nfpli716y7f4ssrmvwi56r94y34x4j3ib3px3q"; name = "know-your-http-well"; }; @@ -15861,6 +16050,27 @@ license = lib.licenses.free; }; }) {}; + ksp-cfg-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "ksp-cfg-mode"; + version = "0.2"; + src = fetchFromGitHub { + owner = "lashtear"; + repo = "ksp-cfg-mode"; + rev = "6bb36fd1d0df7637a366f9aada3b22bc15782e71"; + sha256 = "1i4c6b44fxj6s3i86vzdz54igi1y99n0km736b8bmqkzwvldfv38"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ksp-cfg-mode"; + sha256 = "0azcn4qvziacbw1qy33fwdaldw7xpzr672vzjsqhr0b2vg9m2ipi"; + name = "ksp-cfg-mode"; + }; + packageRequires = [ emacs ]; + meta = { + homepage = "https://melpa.org/#/ksp-cfg-mode"; + license = lib.licenses.free; + }; + }) {}; kurecolor = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "kurecolor"; @@ -15872,7 +16082,7 @@ sha256 = "0da4y9pf6vq0i6w7bmvrszg9bji3ylhr44hmyrmxvah28pigb2fz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/kurecolor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/kurecolor"; sha256 = "0q0q0dfv376h7j3sgwxqwfpxy1qjbvb6i5clsxz9xp4ly89w4d4f"; name = "kurecolor"; }; @@ -15893,7 +16103,7 @@ sha256 = "1i8wbhc6i88plpq48ccka0avdj2x5rcxm81j93dmwp70ld0zws8p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/langtool"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/langtool"; sha256 = "1xq70jyhzg0qmvialy015crbdk9rdibhwpl36khab9hi2999wxyw"; name = "langtool"; }; @@ -15914,7 +16124,7 @@ sha256 = "07aavdr1dlw8hca27l8a0i8cs5ga1wqqdf1v1iyvjz61vygld77a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/latex-extra"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/latex-extra"; sha256 = "1w98ngxymafigjpfalybhs12jcf4916wk4nlxflfjcx8ryd9wjcj"; name = "latex-extra"; }; @@ -15935,7 +16145,7 @@ sha256 = "118xrgrnwsmsysmframf6bmb0gkrdrm3jbkgivzxs41cw92fhbzw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/latex-math-preview"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/latex-math-preview"; sha256 = "14bn0q5czrrkb1vjdkwx6f2x4zwjkxgrc0bcncv23l13qls1gkmr"; name = "latex-math-preview"; }; @@ -15956,7 +16166,7 @@ sha256 = "10i4r81pm95990d4yrabzdm49gp47mqpv15h4r4sih10p1kbn83h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/latex-unicode-math-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/latex-unicode-math-mode"; sha256 = "1p9gpp28vylibv1s95bzfgscznw146ybgk6f3qdbbnafrcrmifcr"; name = "latex-unicode-math-mode"; }; @@ -15973,11 +16183,11 @@ src = fetchFromGitHub { owner = "ledger"; repo = "ledger"; - rev = "b08c03f05e2cfe7c4071a51075e83221edb24c33"; - sha256 = "0g0lz66lclr8fjlv6rr86l3sx3ib6s78ryvzffc3yy7pwz4xl0gx"; + rev = "fcf16d035e9d61ed903499d0e72985970aec9170"; + sha256 = "1hp65aai2bp5l7b3dhr6bz042xcikkk8vssirzibdw5qq6zqzgxm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ledger-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ledger-mode"; sha256 = "0hi9waxmw1bbg88brlr3816vhdi0jj05wcwvrvfc1agvrvzyqq8s"; name = "ledger-mode"; }; @@ -15998,7 +16208,7 @@ sha256 = "04h6vk7w25yp4kzkwqnsmc59bm0182qqkyk5nxm3a1lv1v1590lf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/lentic"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/lentic"; sha256 = "0y94y1qwj23kqp491b1fzqsrjak96k1dmmzmakbl7q8vc9bncl5m"; name = "lentic"; }; @@ -16019,7 +16229,7 @@ sha256 = "1w6mbk4gc63sh2p9rsy851x2kid0dp2ja4ai5badkr5prxkcpfdn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/less-css-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/less-css-mode"; sha256 = "188iplnwwhawq3dby3388kimy0jh1k9r8v9nxz52hy9rhh9hykf8"; name = "less-css-mode"; }; @@ -16040,7 +16250,7 @@ sha256 = "1l9qjmyb4a3f6i2iimpmjczbx890cd1p24n941s13sg67xfbm7hn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/letcheck"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/letcheck"; sha256 = "1sjwi1ldg6b1qvj9cvfwxq3qlkfas6pm8zasf43baljmnz38mxh2"; name = "letcheck"; }; @@ -16061,7 +16271,7 @@ sha256 = "1n84vqxv4jqy5mnb1hbrqrhavq0y8c4mjsp0smg48bzi18350irl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/lfe-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/lfe-mode"; sha256 = "0smncyby53ipm8yqslz88sqjafk0x6r8d0qwk4wzk0pbgfyklhgs"; name = "lfe-mode"; }; @@ -16082,7 +16292,7 @@ sha256 = "0hi8s20vw4a5i5n5jlm5dzgsl1qpfyqbpskqszjls1xrrf3dd4zl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/lice"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/lice"; sha256 = "1hv2hz3153x0gk7f2js18dbx5pyprfdf2pfxb658fj16vxpp7y6x"; name = "lice"; }; @@ -16103,7 +16313,7 @@ sha256 = "11sw43z5b0vypmhi0yysf2bxjy8fqpzl61y503jb7nhcfywmfkys"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/lingr"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/lingr"; sha256 = "1445bxiirsxl9kgm0j86xc9d0pbaa5f07c1i66pw2vl40bvhrjff"; name = "lingr"; }; @@ -16124,7 +16334,7 @@ sha256 = "05xfgn9sabi1ykk8zbk2vza1g8pdrg08j5cb58f50nda3q8ndf4s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/link"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/link"; sha256 = "17jpsg3f2954b740vyj37ikygrg5gmp0bjhbid8bh8vbz7xx9zy8"; name = "link"; }; @@ -16145,7 +16355,7 @@ sha256 = "1v4fadxv7ym6lc09nd2xpz2k5vrikjv7annw99ii5cqrwhqa5838"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/link-hint"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/link-hint"; sha256 = "12fb2zm9jnh92fc2nzmzmwjlhi64rhakwbh9lsydx9svsvkgcs89"; name = "link-hint"; }; @@ -16166,7 +16376,7 @@ sha256 = "1m4g4b96cxs05pfln7kdi6gvrdbv76f8dk806py5lq0gq7da2csc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/linum-relative"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/linum-relative"; sha256 = "0s1lc3lppazv0481dxknm6qrxhvkv0r9hw8xmdrpjc282l91whkj"; name = "linum-relative"; }; @@ -16187,7 +16397,7 @@ sha256 = "05iqhnhj61f30yk4ih63rimmyp134gyq18frc8qgrnwym64dsm6l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/lispy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/lispy"; sha256 = "12qk2gpwzz7chfz7x3wds39r4iiipvcw2rjqncir46b6zzlb1q0g"; name = "lispy"; }; @@ -16215,7 +16425,7 @@ sha256 = "0qyj04p63fdh3iasp5cna1z5fhibmfyl9lvwyh22ajzsfbr3nhnk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/lispyscript-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/lispyscript-mode"; sha256 = "02biai45l5xl2m9l1drphrlj6r01msmadhyg774ijdk1x4gm5nhr"; name = "lispyscript-mode"; }; @@ -16236,7 +16446,7 @@ sha256 = "197cqkiwxgamhfwbc8h492cmjll3fypkwzcphj26dfnr22v63kwq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/list-packages-ext"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/list-packages-ext"; sha256 = "15m4888fm5xv697y7jspghg1ra49fyrny4y2x7h8ivcbslvpglvk"; name = "list-packages-ext"; }; @@ -16257,7 +16467,7 @@ sha256 = "05nn4db8s8h4mn3fxhwsa111ayvlq1raf6bifh7jciyw7a2c3aww"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/list-unicode-display"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/list-unicode-display"; sha256 = "01x9i5k5vhjscmkx0l6r27w1cdp9n6xk1pdjf98z3y88dnsmyfha"; name = "list-unicode-display"; }; @@ -16278,7 +16488,7 @@ sha256 = "0ql159v7sxs33yh2l080kchrj52vk34knz50cvqi3ykpb7djg3sz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/list-utils"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/list-utils"; sha256 = "0bknprr4jb1d20i9lj2aa17vpg1kqwdyzzwmy1kfydnkpf5scnr3"; name = "list-utils"; }; @@ -16299,7 +16509,7 @@ sha256 = "0mr0king5dj20vdycpszxnfs9ch808fhcz3q7svxfngj3d3671wd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/lit-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/lit-mode"; sha256 = "05rf7ki060nqnvircn0dkpdrg7xbh7phb8bqgsab89ycc7l9vv59"; name = "lit-mode"; }; @@ -16320,7 +16530,7 @@ sha256 = "1fh9wrw5irn0g3dy8gkk63csdcxgi3w2038mxx3sk6ki3r2bmhw8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/literate-coffee-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/literate-coffee-mode"; sha256 = "1bll1y9q3kcg3v250asjvx2k9kb314qadaq1iwanwgdlp3qvvs40"; name = "literate-coffee-mode"; }; @@ -16341,7 +16551,7 @@ sha256 = "1cwydbhhbs5v9y2s872zxc5lflqmfrdvnc8xz0qars52d7lg4br5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/live-code-talks"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/live-code-talks"; sha256 = "173mjmxanva13vk2f3a06s4dy62x271kynsa7pbhdg4fd72hdjma"; name = "live-code-talks"; }; @@ -16354,15 +16564,15 @@ live-py-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "live-py-mode"; - version = "2.10.1"; + version = "2.11.0"; src = fetchFromGitHub { owner = "donkirkby"; repo = "live-py-plugin"; - rev = "f040dab8f3f09c3cc68f5ffaa06df92b50422c8f"; - sha256 = "03ickn42s7a4rxx6p596l13nsh1vgq2s3194bgd6gbm3i0f3mlhy"; + rev = "1d32394f1ac4f9acda836e6fbec1a8a5b6fe7303"; + sha256 = "10sf2z8idafw11z7g5brg7wwx0y0k724lh68qkrfi9r1x19c772x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/live-py-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/live-py-mode"; sha256 = "0yn1a0gf9yn068xifpv8p77d917mnalc56pll800zlpsdk8ljicq"; name = "live-py-mode"; }; @@ -16383,7 +16593,7 @@ sha256 = "1fq4bnngbh9a18hq8mvnqkzs74k3g4c0lmwsncbhy6n21njv3kdy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/load-relative"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/load-relative"; sha256 = "0j8ybbjzhzgjx47pqqdbsqi8n6pzqcf6zqc38x7cf1kkklgc87ay"; name = "load-relative"; }; @@ -16404,7 +16614,7 @@ sha256 = "1089sbx20r30sis39vwy29fxhb2n3hh35rdv09lpzdxdq01s8wwp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/loc-changes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/loc-changes"; sha256 = "1akgij61b2ixpkchrriabwvx68cg4v5r5w9ncjrjh91hskjprfxh"; name = "loc-changes"; }; @@ -16425,7 +16635,7 @@ sha256 = "1l28n7a0v2zkknc70i1wn6qb5i21dkhfizzk8wcj28v44cgzk022"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/log4e"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/log4e"; sha256 = "1klj59dv8k4r0hily489dp12ra5hq1jnsdc0wcakh6zirmakhs34"; name = "log4e"; }; @@ -16446,7 +16656,7 @@ sha256 = "0g5vq9xy9lwczs77lr91c1srhhfmasnnnmjvgc55hbl6iwmbizbm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/logalimacs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/logalimacs"; sha256 = "0ai7a01bdi3a0amgi63pwgdp8wgcgx10an4nhc627wgb1cqxb7p6"; name = "logalimacs"; }; @@ -16467,7 +16677,7 @@ sha256 = "0jpyd2f33pk984kg0q9hxdl4615jb7sxsggnb30mpz7a2ws479xr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/logito"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/logito"; sha256 = "0bk4qnz66kvhzsk88lw45209778y53kg17iih70ix4ma1x6a3v5l"; name = "logito"; }; @@ -16488,7 +16698,7 @@ sha256 = "1yacic778ranlqblrcdhyf5igbrcin8aj30vjdm4klpmqb73hf1s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/logview"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/logview"; sha256 = "0gks3j5avx8k3427a36lv7gr95id3cylaamgn5qwbg14s54y0vsh"; name = "logview"; }; @@ -16509,7 +16719,7 @@ sha256 = "1rpvw0dvym559vb4nrfy74jq06nbsz2b0n60lcykagcir8mpcidk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/loop"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/loop"; sha256 = "0pav16kinzljmzx84vfz63fvi39af4628vk1jw79jk0pyg9rjbar"; name = "loop"; }; @@ -16530,7 +16740,7 @@ sha256 = "11y5jyq4xg9zlm1qi2y97nh05vhva9pai9yyr4x2pr41xz3s8fpk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/love-minor-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/love-minor-mode"; sha256 = "1skg039h2hn8dh47ww6n9l776s2yda8ariab4v9f56kb21bncr4m"; name = "love-minor-mode"; }; @@ -16548,10 +16758,10 @@ owner = "immerrr"; repo = "lua-mode"; rev = "bdf121b2c05bc74d3d7961a91d7afeb6176e0f45"; - sha256 = "1psk4202rmkkfy1ir1ax4x4djfngd5pfry7x30ybq2ifqzymb9qb"; + sha256 = "1qawjd0nbj1c142van7r01pmq74vkzcvnn27jgn79wwhplp9gm99"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/lua-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/lua-mode"; sha256 = "0gyi7w2h192h3pmrhq39lxwlwd9qyqs303lnp2655pikdzk9js94"; name = "lua-mode"; }; @@ -16572,7 +16782,7 @@ sha256 = "01847f8xmjfxvvi7hf73l7ypkdazwg8ciinm117zp4jkgnv0apz0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/m-buffer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/m-buffer"; sha256 = "0l2rayglv48pcwnr1ggmn8c0az0mffgv02ivnzr9jcfs55ki07fc"; name = "m-buffer"; }; @@ -16593,7 +16803,7 @@ sha256 = "0dgsl1x6r8m9vvff1ia0kmz21h0dji2jl5cqlpx1m947zh45dahj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/macro-math"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/macro-math"; sha256 = "1r7splwq5kdrdhbmw5zn81vxymsrllgil48g8dl0r60293384h00"; name = "macro-math"; }; @@ -16614,7 +16824,7 @@ sha256 = "0g9bnq4p3ffvva30hpll80dn3i41m51mcvw3qf787zg1nmc5a0j6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/macrostep"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/macrostep"; sha256 = "1wjibxbdsp5qfhq8xy0mcf3ms0q74qhdrhqndprn6jh3kcn5q63c"; name = "macrostep"; }; @@ -16627,15 +16837,15 @@ magic-filetype = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "magic-filetype"; - version = "0.1.2"; + version = "0.1.3"; src = fetchFromGitHub { owner = "zonuexe"; repo = "magic-filetype.el"; - rev = "db734bdd7aa429e188a628e772c40542b0216d5c"; - sha256 = "0i38942lr4b7d624313hgydyy0ynmd6psjkz8xcvbb7gw0kcc436"; + rev = "bccd17a8d152e4a2692c2bd71999f1d53c00262a"; + sha256 = "1rw5lvcj2v4b21akmsinkz24fbmp19s3jdqsd8jgmk3qqv0z81fc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/magic-filetype"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/magic-filetype"; sha256 = "0gcys45cqn5ghppkn0rmyvfybprlfz1x6hqr21yv93mf79h75zhg"; name = "magic-filetype"; }; @@ -16656,7 +16866,7 @@ sha256 = "0qdahg3vqha391nnspbqa5bjvi2g3jb277c5wzbfs132m4n076j2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/magit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/magit"; sha256 = "0518ax2y7y2ji4jp7yghy84yxm0zgb059aqfa4v17grm4kr8p16q"; name = "magit"; }; @@ -16684,7 +16894,7 @@ sha256 = "0d7dick96g1vj6c9wh10rgwhwv5j3ixgw1m3z45szszswlrp1bih"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/magit-annex"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/magit-annex"; sha256 = "1ri58s1ly416ksmb7mql6vnmx7hq59lmhi7qijknjarw7qs3bqys"; name = "magit-annex"; }; @@ -16705,7 +16915,7 @@ sha256 = "1vn6x53kpwv3zf2b5xjswyz6v853r8b9dg88qhwd2h480hrx6kal"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/magit-filenotify"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/magit-filenotify"; sha256 = "00a77czdi24n3zkx6jwaj2asablzpxq16iqd8s84kkqxcfiiahn7"; name = "magit-filenotify"; }; @@ -16726,7 +16936,7 @@ sha256 = "1jlww053s580d7rlvmr1dl79wxasa0hhh2jnwb1ra353d6h3a73w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/magit-find-file"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/magit-find-file"; sha256 = "1y66nsq1hbv1sb4n71gdxv7p1rz37vd9lkf7zl7avy0dchs499ik"; name = "magit-find-file"; }; @@ -16747,7 +16957,7 @@ sha256 = "0ym24gjd6c04zry08abcb09zvjbgj8nc1j12q0r51fhzzadxcxbb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/magit-gerrit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/magit-gerrit"; sha256 = "1iwvg10ly6dlf8llz9f8d4qfdbvd3s28wf48qgn1wjlxpka6zrd4"; name = "magit-gerrit"; }; @@ -16768,7 +16978,7 @@ sha256 = "19iqa2kzarpa75xy34hqvpy1y7dzx84pj540wwkj04dnpb4fwj2z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/magit-gh-pulls"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/magit-gh-pulls"; sha256 = "0qn9vjxi33pya9s8v3g95scmhwrn2yf5pjm7d24frq766wigjv8d"; name = "magit-gh-pulls"; }; @@ -16789,7 +16999,7 @@ sha256 = "0g9wqd4dbd0spal7ss9k679nak02hr1z0mgq6k4g5nkgngwn6l2q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/magit-gitflow"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/magit-gitflow"; sha256 = "0wsqq3xpqqfak4aqwsh5sxjb1m62z3z0ysgdmnrch3qsh480r8vf"; name = "magit-gitflow"; }; @@ -16810,7 +17020,7 @@ sha256 = "0qdahg3vqha391nnspbqa5bjvi2g3jb277c5wzbfs132m4n076j2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/magit-popup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/magit-popup"; sha256 = "0w6m384bbmp3bd4qbss5h1jvcfp4qnpqvzlfykhdgjwpv2b2a2fj"; name = "magit-popup"; }; @@ -16823,15 +17033,15 @@ magit-rockstar = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, magit, melpaBuild }: melpaBuild { pname = "magit-rockstar"; - version = "1.0.2"; + version = "1.0.3"; src = fetchFromGitHub { owner = "tarsius"; repo = "magit-rockstar"; - rev = "16b576c45d5ce1ffda80f0db5d779b9c548a5adb"; - sha256 = "1wxk7h1v123h4m20fk5h70an17zzkfr437xyqjpcy085qqz679jr"; + rev = "76f85a97d152777df6d27fecce4cf43d3dd5b3d9"; + sha256 = "14g9idwdvvx5b1cw9ba99pzbylaikl7w8xqgs87f3smzaqr6151w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/magit-rockstar"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/magit-rockstar"; sha256 = "1i4fmraiypyd3q6vvibkg9xqfxiq83kcz64b1dr3wmwn30j7986n"; name = "magit-rockstar"; }; @@ -16852,7 +17062,7 @@ sha256 = "1mk8g8rr9vf8jm0mmsj33p8gc71nhlv3847hvqywy6z40nhcjnyb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/magit-stgit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/magit-stgit"; sha256 = "12wg1ig2jzy2np76brpwxdix9pwv75chviq3c24qyv4y80pd11sv"; name = "magit-stgit"; }; @@ -16873,7 +17083,7 @@ sha256 = "1g8zq0s38di96wlhljp370kyj4a0ir1z3vb94k66v2m5nj83ap68"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/magit-svn"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/magit-svn"; sha256 = "02n732z06f0bhxqkxzlvm36bpqr40pas09zbzpfdk4pb6f9f80s0"; name = "magit-svn"; }; @@ -16894,7 +17104,7 @@ sha256 = "0dj183vphnvz9k2amga0ydcb4gkjxr28qz67055mxrf89q1qjq33"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/magit-topgit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/magit-topgit"; sha256 = "1ngrgf40n1g6ncd5nqgr0zgxwlkmv9k4fik96dgzysgwincx683i"; name = "magit-topgit"; }; @@ -16915,7 +17125,7 @@ sha256 = "0fp5gbin1sgsdz39spk74vadkzig3ydwhpzx9vg7f231kk5f6wzx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/make-color"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/make-color"; sha256 = "0mrv8b67lpid5m8rfbhcik76bvnjlw4xmcrd2c2iinyl02y07r5k"; name = "make-color"; }; @@ -16936,7 +17146,7 @@ sha256 = "1rr7vpm3xxzcaam3m8xni3ajy8ycyljix07n2jzczayri9sd8csy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/makey"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/makey"; sha256 = "06xgrlkqvg288yd4lyhx4vi80jlfarhblxk5m5zzs5as7n08cvk4"; name = "makey"; }; @@ -16957,7 +17167,7 @@ sha256 = "0z0ml7l1a45ych61qfc5fvkybl9hh37pgl6lzkaz6mcif1sl8gn1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/malabar-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/malabar-mode"; sha256 = "026ing7v22rz1pfzs2j9z09pm6dajpys992n45gzhwirz5f0q1rk"; name = "malabar-mode"; }; @@ -16978,7 +17188,7 @@ sha256 = "0hwxwwjzjxv2mmkxmalr2hp3x8apwcyvn2bz4d4yd4wrzcscay97"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/malinka"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/malinka"; sha256 = "1245mpxsxwnnpdsf0pd28mddgdfhh7x32a2l3sxfq0dyg2xlgvrp"; name = "malinka"; }; @@ -16999,7 +17209,7 @@ sha256 = "1272fsjzsza9dxm8s64b7x2jzr3ks8wjpwvgcxha2dnsjzklcdcj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mallard-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/mallard-mode"; sha256 = "0y2ikjgy107kb85pz50vv7ywslqgbrrkcfsrd8gsk1jky4qn8izd"; name = "mallard-mode"; }; @@ -17020,7 +17230,7 @@ sha256 = "1fkijm0gikbwmxa9hf7s1rcwb0ipzjygd1mlicsm78rxvdd8k877"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/map-progress"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/map-progress"; sha256 = "0zc5vii72gbfwbb35w8m30c8r9zck971hwgcn1a4wjczgn4vkln7"; name = "map-progress"; }; @@ -17041,7 +17251,7 @@ sha256 = "0kk1sk3cr4dbmgq4wzml8kdf14dn9jbyq4bwmvk0i7dic9vwn21c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/map-regexp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/map-regexp"; sha256 = "0yiif0033lhaqggywzfizfia3siggwcz7yv4z7przhnr04akdmbj"; name = "map-regexp"; }; @@ -17062,7 +17272,7 @@ sha256 = "0y4b69r2l6kvh7g8f1y9v1pdall3n668ci24lp04lcms6rxcrsnh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/marcopolo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/marcopolo"; sha256 = "1nbck1m7lhync7n474578d2g1zc72c841hi236xjbdd2lnxz3zz0"; name = "marcopolo"; }; @@ -17083,7 +17293,7 @@ sha256 = "0fcyspz7n97n84d9203mxgn8ar4rn52qa49s3vayfrbkn038j5qw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mark-tools"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/mark-tools"; sha256 = "1688y7lnzhwdva2ildjabzi10i87klfsgvs947i7gfgxl7jwhisq"; name = "mark-tools"; }; @@ -17104,7 +17314,7 @@ sha256 = "098lf4n4rpx00sm07sy8dwp683a4sb7x0p15mrfp268apir3kkxb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/markdown-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/markdown-mode"; sha256 = "0gfb3hp87kpcrvxax3m5hsaclwwk1qmxc73cg26smzd1kjfwgz14"; name = "markdown-mode"; }; @@ -17125,7 +17335,7 @@ sha256 = "1adl36fj506kgfw40gpagzsd7aypfdvy60141raggd5844i6y96r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/markdown-mode+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/markdown-mode+"; sha256 = "1535kcj9nmcgmk2448jxc0jmnqy7f50cw2ngffjq5w8bfhgf7q00"; name = "markdown-mode-plus"; }; @@ -17146,7 +17356,7 @@ sha256 = "1yi5hsgf8hr7v1wyn3bw650g3ysbglwn5qfrmb6yl3s08lvi1vlf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/markdown-preview-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/markdown-preview-mode"; sha256 = "0i0mld45d8y96nkqn2r77nvbyw6wgsf8r54d3c2jrv04mnaxs7pg"; name = "markdown-preview-mode"; }; @@ -17167,7 +17377,7 @@ sha256 = "0l687bna8rrc49y1fyn1ldjcwh290qgvi3p86c63yj4xy24fmdm6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/markdown-toc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/markdown-toc"; sha256 = "0slky735yzmbfi4ld264vw64b4a4nllhywp19ya0sljbsfycbihv"; name = "markdown-toc"; }; @@ -17188,7 +17398,7 @@ sha256 = "0nk2rm14ccwrh1aaxzm80rllsz8g38h9w52m0pf3nnwh6sa757nk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/markup-faces"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/markup-faces"; sha256 = "12z92j9f0mpn7w2qkiwg54wh743q3inx56q3f8qcpfzyks546grq"; name = "markup-faces"; }; @@ -17209,7 +17419,7 @@ sha256 = "0pbli67wia8pximvgd68x6i9acdgsk51g9hjpqfm49rqg5nqalh9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/marmalade"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/marmalade"; sha256 = "0ppa2s1fma1lc01byanfxpxfrjqk2snxbsmdbkcipjdi5dpb0a9s"; name = "marmalade"; }; @@ -17230,7 +17440,7 @@ sha256 = "0sriyjjhgis7fgq276j5mw6n84jdwxf8lq0iqqiaqwmc66l985mv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/marshal"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/marshal"; sha256 = "17ikd8f1k42f28d4v5dn83zb44bsx7g336db60q068w6z8d4jbgl"; name = "marshal"; }; @@ -17251,7 +17461,7 @@ sha256 = "127q9xp015j28gjcna988dnrkadznn0xw8sdfvi943nhhqy4yvri"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/math-symbol-lists"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/math-symbol-lists"; sha256 = "01j11k29acj0b1pcapmgi2d2s3p50bkms21i2qcj0cbqgz8h6s27"; name = "math-symbol-lists"; }; @@ -17271,7 +17481,7 @@ sha256 = "0z79l8md683vvc51fz0nmbazb6i7hklkm0asglflr96pldil50l8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/matrix-client"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/matrix-client"; sha256 = "09mgxk0xngw8j46vz6f5nwkb01iq96bf9m51w2q61wxivypnsyr6"; name = "matrix-client"; }; @@ -17292,7 +17502,7 @@ sha256 = "0x92b1qrhyrdh0z0xriyjc12h0wpk16x4yawj5i828ca6mz0qh5g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/maven-test-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/maven-test-mode"; sha256 = "1k9w51rh003p67yalzq1w8am40nnr2khyyb5y4bwxgpms8z391fm"; name = "maven-test-mode"; }; @@ -17313,7 +17523,7 @@ sha256 = "08gbkd8wln89j9yxp0zzd539hbwy1db31gca3vxxrpszixx8280y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/maxframe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/maxframe"; sha256 = "10cwy3gi3xb3pfdh6xiafxp3vvssawci3y26jda6550d0w5vardj"; name = "maxframe"; }; @@ -17334,7 +17544,7 @@ sha256 = "1g90f8ysj35bw9686gb3sczxqg3ilj3a7xnfskrkbp2llpvd5y43"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mb-url"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/mb-url"; sha256 = "1nf8ssan00qsn3d4dc6h6qzdwqzh977qb5d2m33kiwi6qb98988h"; name = "mb-url"; }; @@ -17355,7 +17565,7 @@ sha256 = "00gwd2jf5ncgyay5w2jc2mhv18jf4ydnzpfkxaxw9zjbdxg4ym2i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mbe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/mbe"; sha256 = "0h18mbcjy8nh4gl12kg2v8x6ps320yk7sbgq5alqnx2shp80kri3"; name = "mbe"; }; @@ -17376,7 +17586,7 @@ sha256 = "0252wdq4sd6jhzfy0pn3gdm6aq2h13nnp8hvrn1mpml9x473a5n1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mc-extras"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/mc-extras"; sha256 = "0b110x6ygc95v5pb9lk1i731x5s6dagl5afzv37l1qchys36xrym"; name = "mc-extras"; }; @@ -17397,7 +17607,7 @@ sha256 = "1vsla0a5x4kfyj3ca4r1v8cspp12dadi0frpailclaxfmpmpl5d3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mediawiki"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/mediawiki"; sha256 = "17cbrzfdp6jbbf74mn2fi1cwv7d1hvdbw9j84p43jzscnaa5ikx6"; name = "mediawiki"; }; @@ -17418,7 +17628,7 @@ sha256 = "12cp56ppmwpdgf5afx7hd2qb8d1qq8z27191fbbf5zqw8cq5zkpd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/melpa-upstream-visit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/melpa-upstream-visit"; sha256 = "0j4afy9ipzr7pwkij8ab207mabd7srganlyyif9h1hvclj9svdmf"; name = "melpa-upstream-visit"; }; @@ -17439,7 +17649,7 @@ sha256 = "1y4ra5z3ayw3w7dszzlkk3qz3nv2jg1vvx8cf0y5j1pqpx8vy3jf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mentor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/mentor"; sha256 = "0nkf7f90m2qf11l97zwvb114yrpbqk1xxr2bh2nvbx8m1c8nad9s"; name = "mentor"; }; @@ -17456,11 +17666,11 @@ src = fetchFromGitHub { owner = "the-lambda-church"; repo = "merlin"; - rev = "708b083ac8081c5b07e8bfb6e179a0c6e7d171ac"; - sha256 = "09yjgf3li4hgljcrwlg195wa6a8l7zm8ia1slbpsrjgwnc15wqrs"; + rev = "3a99e7528853715d3008a21287cd97cafd28cc7c"; + sha256 = "0702h9s2kv2ry7666y060zbr0k0pw2qga6zm9sh9c6wrhz45b3km"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/merlin"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/merlin"; sha256 = "177cy9xcrjckxv8gvi1zhg2ndfr8cmsr37inyvpi5dxqy6d6alhp"; name = "merlin"; }; @@ -17481,7 +17691,7 @@ sha256 = "0n4nv1s25z70xfy3bl1wy467abz3agj4qmpx4rwdwzbarnqp9ps3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/metafmt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/metafmt"; sha256 = "1ca102al7r3k2g92b4jkqv53crnmxy3z7cz31w1rprf41s69mn75"; name = "metafmt"; }; @@ -17502,7 +17712,7 @@ sha256 = "06mbdb4zb07skq1jpv05hr45k5x96d9hgkb358jiq0kfsqlrbbb4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/metaweblog"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/metaweblog"; sha256 = "10kwqnfafby4ap0572mfkkdssr13y9p2gl9z3nmxqjjy04fkfi8b"; name = "metaweblog"; }; @@ -17523,7 +17733,7 @@ sha256 = "1dhws4a298zrm88cdn66sikdk06n0p60d32cxsgybakkhg5c5wgr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mew"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/mew"; sha256 = "0423xxn3cw6jmsd7vrw30hx9phga5chxzi6x7cvpswg1mhcyn9fk"; name = "mew"; }; @@ -17544,7 +17754,7 @@ sha256 = "1bp4xqklf422n0zwwyj0ag3a4nndg8klazrga6rlvpy01hgg3drl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mhc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/mhc"; sha256 = "02ikn9hx0kcfc2xrx4f38zpkfi6vgz7chcxk6q5d0vcsp93b4lql"; name = "mhc"; }; @@ -17565,7 +17775,7 @@ sha256 = "1cdjpqrsv2vhpdmv67krsds7wz19z9ajkabawr3yhxqii4myl4ik"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mic-paren"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/mic-paren"; sha256 = "042dzp0nal18nxq94qlwwksh0nnypsyc0yykmc6l3kayp9pv4hw7"; name = "mic-paren"; }; @@ -17586,7 +17796,7 @@ sha256 = "1ckb5hymwj4wmsxakalsky4mkzn9vxhxr6416b2cr6r5jxj4xgsl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/migemo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/migemo"; sha256 = "0y49imdwygv5zd7cyh9ngda4gyb2mld2a4s7zh4yzlh7z5ha9qkr"; name = "migemo"; }; @@ -17607,7 +17817,7 @@ sha256 = "1qg64mxsm2cswk52mlj7sx7k6gfnrsdwnf68i7cachri0i8aq4ap"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/milkode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/milkode"; sha256 = "07v6xgalx7vcw5sghckwvz584746cba05ql8flv8n556glm7hibh"; name = "milkode"; }; @@ -17628,7 +17838,7 @@ sha256 = "1zyb6c3xwdzk7dpn7xi0mvbcjdfxvzz1a0zlbs053pfar8iim5fk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/minibuffer-complete-cycle"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/minibuffer-complete-cycle"; sha256 = "0y1mxs6q9a8lzprrlb22qff6x5mvkw4gp2l6p2js2r0j9jzyffq2"; name = "minibuffer-complete-cycle"; }; @@ -17649,7 +17859,7 @@ sha256 = "07nbn2pwlp33kr136xsm6lzddhjs538xkz0fbays89psblmy4kwj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/minibuffer-cua"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/minibuffer-cua"; sha256 = "1ragvr73ykbvpgynnq3z0z4yzrlfhfqlwc1vbxclb8x2xmxq7pzw"; name = "minibuffer-cua"; }; @@ -17670,7 +17880,7 @@ sha256 = "1850z96gly0jnr50472idqz1drzqarr0n23bbasslrc501xkg0bq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/miniedit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/miniedit"; sha256 = "10s407q7igdi2hsaaahbw8vckalrl7z3s6l9cflf51q16xh2ih87"; name = "miniedit"; }; @@ -17691,7 +17901,7 @@ sha256 = "0kjhn48sf2ps3k5pv06gqmqc4hlk6di9ld3ssw6vwfh8313x1fc5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/minimal-session-saver"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/minimal-session-saver"; sha256 = "1ay7wvriga28bdmarpfwagqzmmk93ri9f3idhr6z6iivwggwyy2i"; name = "minimal-session-saver"; }; @@ -17712,7 +17922,7 @@ sha256 = "0nd0jl5r5drnh98wdpqj2i7pgs7zvcizsh4qbvh8n0iw0c3f0pwh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/minitest"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/minitest"; sha256 = "0x6nd4kkhiw8hh79r69861pf41j8p1y39kzf2rl61zlmyjz9zpmw"; name = "minitest"; }; @@ -17732,7 +17942,7 @@ sha256 = "0rpp748ym79sxccp9pyrwri14m7624zzb80srfgjfdpysrrs0jrr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mmm-mako"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/mmm-mako"; sha256 = "0a4af5q9wxafrid8visp30cz6073ig0c961b78vmmgqrwvvxd3kn"; name = "mmm-mako"; }; @@ -17753,7 +17963,7 @@ sha256 = "097s4xnwfy8d1wzmz65g2f8bnjjjlj67w1yzwn4d3yasb171nbv8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mmm-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/mmm-mode"; sha256 = "10vkqaf4684cm5yds1xfinvgc3v7871fb203sfl9dbkcgnd5dcjw"; name = "mmm-mode"; }; @@ -17774,7 +17984,7 @@ sha256 = "05nmcx3f63ds31cj3qwwp03ksflkfwlcn3z2xyxbny83r0dxbgvc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mmt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/mmt"; sha256 = "0hal3qcw6x9658xpdaw6q9l2rr2z107pvg5bdzshf67p1b3lf9dq"; name = "mmt"; }; @@ -17795,7 +18005,7 @@ sha256 = "0yj9kc59c227727kh1zjxwrhijzd7rdhix7qqm4na1z6s4ycpxbm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mocha"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/mocha"; sha256 = "0kjgrl5iy7cd3b9csgpjg3y0wp0q6c7c8cvf0mx8gdbsj7296kyx"; name = "mocha"; }; @@ -17816,7 +18026,7 @@ sha256 = "1lav7am41v63xgavq8pr88y828jmd1cxd4prjq7jlbxm6nvrwxh2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mocker"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/mocker"; sha256 = "1g90jp1czrrzrmn7n4linby3q4fb4gcflzv2amjv0sdimw1ln1w3"; name = "mocker"; }; @@ -17837,7 +18047,7 @@ sha256 = "0r24186d1q9436h3qhqz1z8q978d01an0dvpvzirf4x9ickrib3k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/modalka"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/modalka"; sha256 = "0bkjykvl6sw797h7j76dzn1viy598asly98gcl5wrq13n4w1md4c"; name = "modalka"; }; @@ -17858,7 +18068,7 @@ sha256 = "1ykj68d4h92i4qv90zgwrf9jhy1n22l2h9k5f1zsn8hvz9mhj1av"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mode-icons"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/mode-icons"; sha256 = "1dqcry27rz7afyvjg7345wysp6wmh8fpj32ysk5iw5i7v5scf6kf"; name = "mode-icons"; }; @@ -17879,7 +18089,7 @@ sha256 = "1lkw9nnlns6v7r6nx915f85whq1ri4w8lccwyxrvam40hfvq60s1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mode-line-debug"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/mode-line-debug"; sha256 = "0ppj14bm3rx3xgg4mfxa5zcm2r129jgmsx817wq3h7akjngcbfkd"; name = "mode-line-debug"; }; @@ -17900,7 +18110,7 @@ sha256 = "02w7k4s4698p4adjy4a36na28sb1s2zw4xsjs7p2hv9iiw9kmyvz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/monokai-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/monokai-theme"; sha256 = "13mv4vgsmdbf3v748lqi7b42hvr3yp86n97rb6792bcgd3kbdx7a"; name = "monokai-theme"; }; @@ -17921,7 +18131,7 @@ sha256 = "1a0pv8fkv1cjdb0k5bmjd67a273bzcmxjwzgy4jpb3ng1qbb2xnm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/monroe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/monroe"; sha256 = "04rhninxppvilk7s90g0wwa0g9vfcg7mk8mrb2m2c7cb9vj6wyig"; name = "monroe"; }; @@ -17942,7 +18152,7 @@ sha256 = "1ndgw4799d816pkn2bwja5kmigydpmj9znn8cax4dxsd9fg2hzjy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/morlock"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/morlock"; sha256 = "0693jr1k8mzd7hwp52azkl62c1g1p5yinarjcmdksfyqblqq5jna"; name = "morlock"; }; @@ -17963,7 +18173,7 @@ sha256 = "01mdy7sps0xryz5gfpl083rv7ixkxs2rkz5yaqjlam2rypdcsyy2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/move-dup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/move-dup"; sha256 = "0b0lmiisl9yckblwf7619if88qsmbka3bl4qiaqam7fka7psxs7f"; name = "move-dup"; }; @@ -17984,7 +18194,7 @@ sha256 = "1mg7arw4wbbm84frq3sws5937fh901qn0xnjk9jcp3pvc4d0sxwd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mowedline"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/mowedline"; sha256 = "0c2hvvwa7s5iyz517jaskshdcq9zs15zr6xsvrcb3biahrh4bmfb"; name = "mowedline"; }; @@ -18005,7 +18215,7 @@ sha256 = "13bf5jn1kgqg59j5czlzvajq2fw1rz4h5jqfc7x8w1a067nymf2c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/moz"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/moz"; sha256 = "0ar2xgsi7csjj6fgiamrjwjc58j942dm32j3f3lz21yn2c4pnyxi"; name = "moz"; }; @@ -18026,7 +18236,7 @@ sha256 = "1w1i1clkjg9mj1g4i2y3xw3hyj8s7h9gr04qgyb9c1q8vh11z8d0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/moz-controller"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/moz-controller"; sha256 = "18gca1csl9dfi9995mky8cbgi3xzf1if8pzdjiz5404gzcqk0rfd"; name = "moz-controller"; }; @@ -18047,7 +18257,7 @@ sha256 = "1gdi2pz8450h11aknz3hbgjlx09w6c4l8d8sz0zv3pb1z8cqkgqv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mozc-temp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/mozc-temp"; sha256 = "0x1bsa1py0kn73hzbsb4ijl0bqng8nib191vgn6xq8f5cx55044d"; name = "mozc-temp"; }; @@ -18068,7 +18278,7 @@ sha256 = "1pjhch8vah0kf73fl2fk6khhrx1kflggd3zlxrf7w4fxr0qn8la3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mpv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/mpv"; sha256 = "1vq308ac6jj1h8qa2b2sypisb38hbvwjimqndhpfir06fghkw94l"; name = "mpv"; }; @@ -18089,7 +18299,7 @@ sha256 = "1draiwbwb8zfi6rdr5irv8091xv2pmnifq7pzi3rrvjb8swb28z3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/msvc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/msvc"; sha256 = "04gq2klana557qvsi3bv6416l0319jsqb6bdfs7y6729qd94hlq3"; name = "msvc"; }; @@ -18110,7 +18320,7 @@ sha256 = "0wrg6f7czn61f9wmrk27dzcdskznm5i1pwwjck5h768j0y9dfv6a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mu4e-alert"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/mu4e-alert"; sha256 = "15nwj09iyrvjsc9lrxla6qa0s8izcllxghw5gx3ffncfcrx2l8qm"; name = "mu4e-alert"; }; @@ -18131,7 +18341,7 @@ sha256 = "1lyd8pcawn106zwlbq6gdq05i2zhry1qh9cdyjiw61nvgbbfi0yx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mu4e-maildirs-extension"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/mu4e-maildirs-extension"; sha256 = "1xz19dxrj1grnl7wy9qglh08xb3dr509232l3xizpkxgqqk8pwbi"; name = "mu4e-maildirs-extension"; }; @@ -18152,7 +18362,7 @@ sha256 = "11zabs7qpdhri6n90ck7pgwcbz46d813nyl73h5m1i8jvz1wzx7v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/multi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/multi"; sha256 = "1c240d1c1g8wb2ld944344zklnv86d9rycmya4z53b2ai10642ig"; name = "multi"; }; @@ -18173,7 +18383,7 @@ sha256 = "1d9y3dw27pgzgv6wk575d5ign55xdqgbl3ycyq1z7sji1477lz6b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/multi-web-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/multi-web-mode"; sha256 = "0vi4yvahr10aqpcz4127c8pcqpr5srwc1yhgipnbnm86qnh34ql5"; name = "multi-web-mode"; }; @@ -18194,7 +18404,7 @@ sha256 = "10k4c9vl0bfidrry0msyqamijizjghg54g26yaqbr2vi0mbbz22k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/multiple-cursors"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/multiple-cursors"; sha256 = "0mky5p9wpd3270wr5vfna8rkk2ff81wk7vicyxli39195m0qgg0x"; name = "multiple-cursors"; }; @@ -18215,7 +18425,7 @@ sha256 = "15gw4d0hp15rglsj8hzd290li4p0kadj2dsz0dgfcxld7hnimihk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mustache-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/mustache-mode"; sha256 = "076ar57qhwcpl4n634ma827r2rh61670778wqr5za2444a6ax1gs"; name = "mustache-mode"; }; @@ -18236,7 +18446,7 @@ sha256 = "0hvq6z754niqjyv79jzb833wrwbspc7npfg85scwdv8vzwassjx4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mwim"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/mwim"; sha256 = "0bsibwplvyv96y5i5svm2b0jwzs5a7jr2aara7v7xnpj0nqaxm8k"; name = "mwim"; }; @@ -18257,7 +18467,7 @@ sha256 = "0550k0rfm0zai306642v689mcpsw9pbd5vs0il82cihwvrxjifc5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/mykie"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/mykie"; sha256 = "12ram39fp3m9ar6q184rsnpkxb14y0ajibng7ia2ck54ck7n36cj"; name = "mykie"; }; @@ -18278,7 +18488,7 @@ sha256 = "0amhw630hgc0j8wr8m6aav399ixi3vbwrck79hhlr3pmyh91vv7n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/name-this-color"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/name-this-color"; sha256 = "12nrk1ww766jb4gb4iz6w485nimh2iv8wni2jq4l38v8ndh490zb"; name = "name-this-color"; }; @@ -18299,7 +18509,7 @@ sha256 = "0m82g27gwf9mvicivmcilqghz5b24ijmnw0jf0wl2skfbbg0sydh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/names"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/names"; sha256 = "1q784606jlakw1z6sx2g2x8hz8c8arywrm2r626wj0v105v510vg"; name = "names"; }; @@ -18320,7 +18530,7 @@ sha256 = "10yn215xb4s6kshk108y75im1xbdp0vwc9kah5bbaflp9234i0zh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/narrow-reindent"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/narrow-reindent"; sha256 = "0fybal70kk62zlra63x4jb72694m0mzv4cx746prx9anvq1ss2i0"; name = "narrow-reindent"; }; @@ -18341,7 +18551,7 @@ sha256 = "0ydxj6dc10knambma2hpimqrhfz216nbj96w1dcwgjixs4cd4nax"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/narrowed-page-navigation"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/narrowed-page-navigation"; sha256 = "1yrmih60dd69qnin505jlmfidm2svzpdrz46286r7nm6pk7s4pb7"; name = "narrowed-page-navigation"; }; @@ -18362,7 +18572,7 @@ sha256 = "1l7asqwi5gcvb2mn8608025lwypf2vqzrkc3a9phdfjp0qn2apdn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/nasm-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/nasm-mode"; sha256 = "1626yf9mmqlsw8w01vzqsyb5ipa56259d4kl6w871k7rvhxwff17"; name = "nasm-mode"; }; @@ -18383,7 +18593,7 @@ sha256 = "119hy8rs83f17d6zizdaxn2ck3sylxbyz7adszbznjc8zrbaw0ic"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/nav-flash"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/nav-flash"; sha256 = "0936kr0s6zxxmjwaqm7ywdw2im4dxai1xb7j6xa2gp7c70qvvsx3"; name = "nav-flash"; }; @@ -18404,7 +18614,7 @@ sha256 = "15jh1lsgqfnpbmrikm8kdh5bj60yb96f2as2anppjjsgl6w96glh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/navi-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/navi-mode"; sha256 = "0f5db983w9kxq8mcjr22zfrm7cpxydml4viac62lvab2kwbpbrmi"; name = "navi-mode"; }; @@ -18425,7 +18635,7 @@ sha256 = "09cb07f98aclgq8jf5419305zydkk1hz4nvzrwqz7syrlpvx8xi5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/navorski"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/navorski"; sha256 = "0dnzpsm0ya8rbcik5wp378hc9k7gjb3gwmkqqj889c38q5cdwsx7"; name = "navorski"; }; @@ -18446,7 +18656,7 @@ sha256 = "16i1k1zr6ng1dlxb1b73mxjf25f4kvf3x5vfffsi3qnfm960bg3q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ncl-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ncl-mode"; sha256 = "0hmd606xgapzbc79px9l1q6pphrhdzip495yprvg20xsdpmjlfw9"; name = "ncl-mode"; }; @@ -18467,7 +18677,7 @@ sha256 = "19xxg4ya6vndk2ljdnl284zs8qf9dkq4ghr7pmsclp9n7zh46v48"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/nemerle"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/nemerle"; sha256 = "0698hbgk80w7wp0ssx9pl13aapm7rc6l3y2zydfkyqdfwy5y71v6"; name = "nemerle"; }; @@ -18488,7 +18698,7 @@ sha256 = "1gmi0xxwkh33w5gxc8488m1vv6ycizqhlw1kpn81zhqdzzq3s06n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/neotree"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/neotree"; sha256 = "05smm1xsn866lsrak0inn2qw6dvzy24lz6h7rvinlhk5w27xva06"; name = "neotree"; }; @@ -18509,7 +18719,7 @@ sha256 = "08bpyk0brx0x2l0y8hn8zpkaxb2ndmxz22kzxxypj6hdz303wf38"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/nginx-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/nginx-mode"; sha256 = "07k17m64zhv6gik8v4n73d8l1k6fsp4qp8cl94r384ny0187y65c"; name = "nginx-mode"; }; @@ -18530,7 +18740,7 @@ sha256 = "0dzcaa88l7yjc7fhyhkvbzs7bmhi6bb6rx41wsnnidlnpzbgdrk7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/niceify-info"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/niceify-info"; sha256 = "1s9c8yxbab9zl5jx38alwa2hpp4zj5cb9a5gfm3x09jf3iw768bl"; name = "niceify-info"; }; @@ -18543,15 +18753,15 @@ ninja-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ninja-mode"; - version = "1.6.0"; + version = "1.7.1"; src = fetchFromGitHub { owner = "martine"; repo = "ninja"; - rev = "484c16336f19bd8970bb6e75322d61b92a229899"; - sha256 = "1wc0cvmfhpvfzdy127d1n812q93dd9sp3mmqnc8jzy8i3frqqqq6"; + rev = "b49b0fc01bb052b6ac856b1e72be9391e962398e"; + sha256 = "14jh2cg1isip8b8lls3hdj99vpqjyjqlv27r2kpq6095b78p64d9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ninja-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ninja-mode"; sha256 = "1m7f25sbkz8k343giczrnw2ah5i3mk4c7csi8kk9x5y16030asik"; name = "ninja-mode"; }; @@ -18572,7 +18782,7 @@ sha256 = "1rvi30xyj2vj3gmzagy51smrhb1xwlsfgnyg30hblj88yn0wh5sz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/nix-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/nix-mode"; sha256 = "00rqawi8zs2x79c91gmk0anfyqbwalvfwmpak20i11lfzmdsza1s"; name = "nix-mode"; }; @@ -18593,7 +18803,7 @@ sha256 = "1lm7rkgf7q5g4ji6v1masfbhxdpwni8d77dapsy5k9p73cr2aqld"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/nixos-options"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/nixos-options"; sha256 = "1m3jipidk10zj68rzjbacgjlal31jf80gqjxlgj4qs8lm671gxmm"; name = "nixos-options"; }; @@ -18614,7 +18824,7 @@ sha256 = "0wk86gm0by9c8mfbvydz5va07qd30n6wx067inqfa7wjffaq0xr7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/noccur"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/noccur"; sha256 = "0a8l50v09bgap7rsls808k9wyjpjbcxaffsvz7hh9rw9s7m5fz5g"; name = "noccur"; }; @@ -18635,7 +18845,7 @@ sha256 = "03vcs458rcn1hgfvmgmijadjvri7zlh2z4lxgaplzfnga13mapym"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/nodejs-repl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/nodejs-repl"; sha256 = "0rvhhrsw87kfrwdhm8glq6b3nr0v90ivm7fcc0da4yc2jmcyk907"; name = "nodejs-repl"; }; @@ -18654,7 +18864,7 @@ sha256 = "07bhzddaxdjd591xmg59yd657a1is0q515291jd83mjsmgq258bm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/nose"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/nose"; sha256 = "0l77hsmn3qk934ppdav1gy9sq48g0v1dzc5qy0rp9vv4yz2jx2jk"; name = "nose"; }; @@ -18666,14 +18876,14 @@ }) {}; notmuch = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: melpaBuild { pname = "notmuch"; - version = "0.22pre1"; + version = "0.22"; src = fetchgit { url = "git://git.notmuchmail.org/git/notmuch"; - rev = "2434ecfba3617f4affaf0bd5a8cde4b918155302"; - sha256 = "0s979vb13pr5ycrsr2p25gha5dn5bb44mghbrbn2sky8nvyf7dxa"; + rev = "ea5caecec5c50833a6f5a422e217a71eee6324af"; + sha256 = "0n471pjj433jivmwbifzw8x6ya09v52yvgdjfkxcp2a6mn23k6xm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/notmuch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/notmuch"; sha256 = "173d1gf5rd4nbjwg91486ibg54n3qlpwgyvkcy4d30jm4vqwqrqv"; name = "notmuch"; }; @@ -18694,7 +18904,7 @@ sha256 = "1ss87vlp7625lnn2iah3rc1xfxcbpx4kmiww9n16jx073fs2rj18"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/notmuch-labeler"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/notmuch-labeler"; sha256 = "1c0cbkk5k8ps01xl63a0xa2adkqaj0znw8qs8ca4ai8v1420bpl0"; name = "notmuch-labeler"; }; @@ -18715,7 +18925,7 @@ sha256 = "1l07nrlfd5qj8jnqacjba7mb6prapg8d8h3881l3kb66sn02ahgy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/nrepl-sync"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/nrepl-sync"; sha256 = "01b504b4d8rrhlf3sfq3kk9i222fch6jd5jbm02kqw20fgv6q3jd"; name = "nrepl-sync"; }; @@ -18736,7 +18946,7 @@ sha256 = "0c4qfbb345yna5c30czq8nhcx283z1fnpp6h16p7vjqs6y37czsl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/nsis-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/nsis-mode"; sha256 = "0pc047ryw906sz5mv0awvl67kh20prsgx6fbh0j1qm0cali2792l"; name = "nsis-mode"; }; @@ -18757,7 +18967,7 @@ sha256 = "1624jj922l0bbav1v8szdr0lpyx0ng959fg3sspg1j15kgkir8kf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/nvm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/nvm"; sha256 = "03gy7wavc2q02lnr9pmp3l1pn0lzbdq0kwnmg9fvklmq6r6n3x34"; name = "nvm"; }; @@ -18770,15 +18980,15 @@ nyan-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "nyan-mode"; - version = "1.1.0"; + version = "1.1.1"; src = fetchFromGitHub { owner = "TeMPOraL"; repo = "nyan-mode"; - rev = "95034cefb34df3b11a547e75a4b85c423502341d"; - sha256 = "1gxwss5rr4j6pv74fadmvnhdzlhk839am15cr9bj4qm47vrr98jl"; + rev = "b5db3a612bba35c8f54f44c300ebc879db6b3288"; + sha256 = "199ii1658k4sp5krha77n9l5jblyvnvvvr28g2nbc74lfybckjwq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/nyan-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/nyan-mode"; sha256 = "1z2wnsbjllqa533g1ab5cgbv3d9hjix7fsd7z9c45nqh5cmadmyv"; name = "nyan-mode"; }; @@ -18799,7 +19009,7 @@ sha256 = "0bgspjy8h3d7v12sfjnd2ghj4183pdf0z48g5xs129jwd3nycykp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/nyan-prompt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/nyan-prompt"; sha256 = "1s0qyhpfpncsv9qfxy07rbp4gv8pp5xzb48rbd3r14nkjlnylnfb"; name = "nyan-prompt"; }; @@ -18820,7 +19030,7 @@ sha256 = "0r12023yy8j96bp8z2ml6ffyr2c9rcd5abkh6vqnkwsdxkzx6wrs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/o-blog"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/o-blog"; sha256 = "08grkyvg27wd5232q3y8p0v7higfq7bmsdzmvhja96v6qy2xsbja"; name = "o-blog"; }; @@ -18841,7 +19051,7 @@ sha256 = "0bqr6yl1hpykpykjpfb247xnpnz510zrg9yv7nkxlrig4pjgdcx1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ob-http"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ob-http"; sha256 = "0b7ghz9pqbyn3b52cpmnwa2wnd4svj23p6gc48ybwzwiid42wiss"; name = "ob-http"; }; @@ -18854,15 +19064,15 @@ ob-sagemath = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, s, sage-shell-mode }: melpaBuild { pname = "ob-sagemath"; - version = "0.2"; + version = "0.2.1"; src = fetchFromGitHub { owner = "stakemori"; repo = "ob-sagemath"; - rev = "fec3fbabaef5f5d679ef1ccbbc39958a4d01b839"; - sha256 = "0hapjgzbd4s5jif8jdm9svl58h6a504gxc8jq57sibfcbwkjbfk4"; + rev = "da0b9b8c15398ca1d3e0b0671dd6ea3a1d41e7ae"; + sha256 = "0y8vc3p95mhpdg5mzdxxcpzxlhd7fmdsbs2b1bfklnnasvzbdfq7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ob-sagemath"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ob-sagemath"; sha256 = "02ispac1y4g7p7iyscf5p8lvp92ncrn6281jm9igyiny1w6hivy7"; name = "ob-sagemath"; }; @@ -18883,7 +19093,7 @@ sha256 = "1xx6hyq3gk4bavcx6i9bhipbn4mn5rv2ga9lryq09qgq2l9znclk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ob-sml"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ob-sml"; sha256 = "04qvzhwjr8ipvq3znnhn0wbl4pbb1rwxi90iidavzk3phbkpaskn"; name = "ob-sml"; }; @@ -18904,7 +19114,7 @@ sha256 = "10hm20dzhkxk61ass3bd5gdn1bs2l60y3zjnpkxinzn7m6aaniia"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ob-translate"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ob-translate"; sha256 = "1hi0rxbyxvk9sbk2fy3kqw7l4lgri921vya1mn4i1q2i1979r2gz"; name = "ob-translate"; }; @@ -18925,7 +19135,7 @@ sha256 = "05ay599nc6jdw2fjss4izz1ynv2wc4svff932n8j9hvrhygipb2w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ocodo-svg-modelines"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ocodo-svg-modelines"; sha256 = "0fa88ns70wsr9i9gf4zx3fvmn1a32mrjsda105n0cx6c965kfmay"; name = "ocodo-svg-modelines"; }; @@ -18946,7 +19156,7 @@ sha256 = "0ynv2yhm7akpvqp72pdabhddwr352s1k85q8m1khsvspgg1mkiqz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ocp-indent"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ocp-indent"; sha256 = "0wc4z9dsnnyr24n3vg1npvc3rm53av8bpbvrl8kldxxdiwgnbkjw"; name = "ocp-indent"; }; @@ -18967,7 +19177,7 @@ sha256 = "19fg6r7aiirfsbp2h1a824476sn1ln4nz8kvpdzkzvyf1hzx68gw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/octicons"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/octicons"; sha256 = "02f37bvnc5qvkvfbyx5wp54nz71bqm747mq1p5361sx091lllkxk"; name = "octicons"; }; @@ -18988,7 +19198,7 @@ sha256 = "0az4llfgva4wvpljyc5s2m7ggfnj06ssp32x8bncr5fzksha3r7b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/offlineimap"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/offlineimap"; sha256 = "0nza7lrz7cn06njcblwh9hy3050j8ja4awbxx7jzv6nazjg7201b"; name = "offlineimap"; }; @@ -19001,15 +19211,15 @@ olivetti = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "olivetti"; - version = "1.3.0"; + version = "1.4.0"; src = fetchFromGitHub { owner = "rnkn"; repo = "olivetti"; - rev = "26f3db0bc37324444e41a1d4797056b61b56b004"; - sha256 = "1rj97yg2n9fi80qlb4z6iahqid3yinlhx9mrbh6gi1niz58ws69h"; + rev = "4095b761e12352a0862e6fadbc56483e7c756f21"; + sha256 = "1hx1yv0fd64832y15c2chz9d50hqs4ap5vry4x6745vify6mchlj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/olivetti"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/olivetti"; sha256 = "0fkvw2y8r4ww2ar9505xls44j0rcrxc884p5srf1q47011v69mhd"; name = "olivetti"; }; @@ -19030,7 +19240,7 @@ sha256 = "07grj81alrr6qgs3jmqkjzphkvi26w6jm5hf1f5wyx7h6q293ady"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/omni-kill"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/omni-kill"; sha256 = "03kydl16rd9mnc1rnan2byqa6f70891fhcj16wkavl2r68rfj75k"; name = "omni-kill"; }; @@ -19051,7 +19261,7 @@ sha256 = "030f983n19n64f8irif102nncvam04xpx020vfgja9886wlj40pk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/omni-log"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/omni-log"; sha256 = "0c29243zq8r89ax4rxlmb8imag12icnldcb0q0xsnhjccw8lyw1r"; name = "omni-log"; }; @@ -19072,7 +19282,7 @@ sha256 = "1rfs6z56pnacy6m7yvm2hrb0ykfvaiyichivcmb9ssdgqp92cbxx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/omni-scratch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/omni-scratch"; sha256 = "190dkqcw8xywzrq8a99w4rqi0y1h2aj23s84g2ln1sf7jaf6d6n9"; name = "omni-scratch"; }; @@ -19093,7 +19303,7 @@ sha256 = "0c34rci5793hd674x2srhqvnj46llrbkrw1xpzf73s4ib5zhh7xi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/omni-tags"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/omni-tags"; sha256 = "133ww1jf14jbw02ssbx2a46mp52j18a2wwzb6x77azb0akmf1lzl"; name = "omni-tags"; }; @@ -19114,7 +19324,7 @@ sha256 = "1iq8yzjv7wb0jfi3lqqyx4n7whvb7xf8ls0q0w7pgsrsslrxbwcm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/omnisharp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/omnisharp"; sha256 = "0dwya22y92k7x2s223az1g8hmrpfmk1sgwbr9z47raaa8kd52iad"; name = "omnisharp"; }; @@ -19144,7 +19354,7 @@ sha256 = "119pk7gg4fw5bdvir8077ra603b5nbqvd7ph9cqrwxa056jzvry8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/opam"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/opam"; sha256 = "004r93nn1ranvxkcc0y5m3p8gh4axgghgnsvim38nc1sqda5h6xa"; name = "opam"; }; @@ -19165,7 +19375,7 @@ sha256 = "0n64l1jrrk60g192nn0240qcv2p9r138mi9gb38qq5k65wffbc21"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/opencl-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/opencl-mode"; sha256 = "1g351wiaycwmg1bnf4s2mdnc3lb2ml5l54g19184xqssfqlx7y79"; name = "opencl-mode"; }; @@ -19186,7 +19396,7 @@ sha256 = "12q09kdcgv6hl1hmgarl73j4g9gi4h7sj865655mdja0ns9n1pdb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/operate-on-number"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/operate-on-number"; sha256 = "1rw3fqbzfizgcbz3yaf99rr2546msna4z7dyfa8dbi8h7yzl4fhk"; name = "operate-on-number"; }; @@ -19207,7 +19417,7 @@ sha256 = "1xckin2d6s40kgr2293g72ipc57f8gp6y63303kmqcv3qm8q13ca"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-ac"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-ac"; sha256 = "059jr3v3558cgw626zbqfwmwwv5f4637ai26h7b6psqh0x9sf3mr"; name = "org-ac"; }; @@ -19228,7 +19438,7 @@ sha256 = "0gkxxzdk8bd1yi5x9217pkq9d01ccq8znxc7h8qcw0p1336rigfc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-agenda-property"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-agenda-property"; sha256 = "0zsjzjw52asl609q7a2s4jcsm478p4cxzhnd3azyr9ypxydjf6qk"; name = "org-agenda-property"; }; @@ -19249,7 +19459,7 @@ sha256 = "0j6fqgzvbmvvdh0dgwsxq004wxys2zwnq9wa3idm087ynp2a2ani"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-autolist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-autolist"; sha256 = "1jvspxhxlvd7h1srk9dbk1v5dykmf8jsjaqicpll7ial6i0qgikj"; name = "org-autolist"; }; @@ -19270,7 +19480,7 @@ sha256 = "0j765rb2yfwnc0ri53jb8d6lxj6knpmy495bk3sd63492kdrxf93"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-bookmark-heading"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-bookmark-heading"; sha256 = "1q92rg9d945ypcpb7kig2r0cr7nb7avsylaa7nxjib25advx80n9"; name = "org-bookmark-heading"; }; @@ -19291,7 +19501,7 @@ sha256 = "10nr4sjffnqbllv6gmak6pviyynrb7pi5nvrq331h5alm3xcpq0w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-bullets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-bullets"; sha256 = "1kxhlabaqi1g6pz215afp65d9cp324s8mvabjh7q1h7ari32an75"; name = "org-bullets"; }; @@ -19312,7 +19522,7 @@ sha256 = "0cxccxz17pj67wgmyxr74n381mknqgqkyav3jkxs4ghg59g5nygl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-dp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-dp"; sha256 = "0fnrzpgw8l0g862j20yy4mw1wfcm2i04r6dxi4yd7yay8bw2i4yq"; name = "org-dp"; }; @@ -19333,7 +19543,7 @@ sha256 = "18x8c6jcqkfam79z4hskr8h1lvzvd5rlfgymmj1ps6p6hd3j4ihl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-elisp-help"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-elisp-help"; sha256 = "0a4wvz52hkcw5nrml3h1yp8w97vg5jw22wnpfbb827zh7iwb259h"; name = "org-elisp-help"; }; @@ -19354,7 +19564,7 @@ sha256 = "1pxfcyf447h18220izi8qlnwdr8rlwn5kds8gr5i1v90s6hpa498"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-gcal"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-gcal"; sha256 = "1mp6cm0rhd4r9pfvsjjp86sdqxjbbg7gk41zx0zf0s772smddy3q"; name = "org-gcal"; }; @@ -19375,7 +19585,7 @@ sha256 = "0b57ik05iax2h3nrj96kysbk4hxmxlaabd0n6lv1xsayrlli3sj1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-gnome"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-gnome"; sha256 = "0c37gfs6xs0jbvg6ypd4z5ip1khm26wr5lxgmv1dzcc383ynzg0v"; name = "org-gnome"; }; @@ -19396,7 +19606,7 @@ sha256 = "1iyqv34b7q2k73srshcnpvfzcadq47w4rzkqp6m1d3ajk8x2vypq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-if"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-if"; sha256 = "0h0jdyawz2j4mp33w85z8q77l37qid8palvw5n4z379qa0wr5h96"; name = "org-if"; }; @@ -19409,15 +19619,15 @@ org-journal = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "org-journal"; - version = "1.10.2"; + version = "1.11.0"; src = fetchFromGitHub { owner = "bastibe"; repo = "org-journal"; - rev = "68974d86f1ef518defb3085e415d882ba4575714"; - sha256 = "0980scx1dzslbdzmhv720branc4jd4bdkyji34gahinx4w9brj79"; + rev = "3db5d3532b3d5df10fda6e11097e227d5dc733d3"; + sha256 = "1rv1d49gc544cmzknd272x4v74kqbvccg0mf16b1jkn5h8f4jhkm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-journal"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-journal"; sha256 = "1npzqxn1ssigq7k1nrxz3xymxaazby0ddgxq6lgw2a1zjmjm4h2b"; name = "org-journal"; }; @@ -19438,7 +19648,7 @@ sha256 = "1797pd264zn19zk93nifyw6pwk2a7wrpfir373qclk601yv2g5h8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-link-travis"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-link-travis"; sha256 = "0hj4x7cw7a3ry8xislkz9bnavy77z4cpmnvns02yi3gnib53mlfs"; name = "org-link-travis"; }; @@ -19459,7 +19669,7 @@ sha256 = "1bggz782ci0z6aw76v51ykbmfzh5g6cxh43w798as1152sn7im3p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-linkany"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-linkany"; sha256 = "0arjj3c23yqm1ljvbnl7v9cqvd9lbz4381g8f3jyqbafs25bdc3c"; name = "org-linkany"; }; @@ -19479,7 +19689,7 @@ sha256 = "055ahg27z4y0r4nhgqdik10x91dpmfmrv1mbr7hc7xzk9cy4rf2w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-mac-iCal"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-mac-iCal"; sha256 = "1ilzvmw1x5incagp1vf8d9v9mz0krlv7bpv428gg3gpqzpm6kksw"; name = "org-mac-iCal"; }; @@ -19500,7 +19710,7 @@ sha256 = "0yxfhzygiki8sha1dddac4g72r51yi4jnga2scmk51f9jgwqbihp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-multiple-keymap"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-multiple-keymap"; sha256 = "16iv5575634asvn1b2k535ml8g4lqgy8z5w6ykma5f9phq5idb9f"; name = "org-multiple-keymap"; }; @@ -19521,7 +19731,7 @@ sha256 = "15fy6xpz6mk4j3nkrhiqal2dp77rhxmk8a7xiw037xr1jgq9sd9a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-outlook"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-outlook"; sha256 = "0cn8h6yy67jr5h1yxsfqmr8q7ii4f99pgghfp821m01pj55qyjx9"; name = "org-outlook"; }; @@ -19542,7 +19752,7 @@ sha256 = "0zc20m63a1iz9aziid5jsvcbl86k9dg9js4k3almchh55az4a0i3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-page"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-page"; sha256 = "1326m3w7vz22zk7rx40z28fddsccy5fl1qhbb7clci8l69blcc2v"; name = "org-page"; }; @@ -19563,7 +19773,7 @@ sha256 = "14lshgyrlzjcrqdfsn17llm70ijbs86cv9mccy87vlr01rbsz6lj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-pdfview"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-pdfview"; sha256 = "1z4gb5lw7ngphixw06b5484kwlxbc098w2xshzml5sywr16a4iab"; name = "org-pdfview"; }; @@ -19584,7 +19794,7 @@ sha256 = "1fjdza723615bhdm5x6gbd03vi7ywzpbjn8p59saimczqngfdpmw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-pomodoro"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-pomodoro"; sha256 = "1vdi07hrhniyhhvg0hcr5mlixy6bjynvwm89z2lvfyvnnxpx0r27"; name = "org-pomodoro"; }; @@ -19605,7 +19815,7 @@ sha256 = "16aq5p65q5a0an14q9xzsnkaa5bzkrwhm9cv5ljajjfcjsjcvmb6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-projectile"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-projectile"; sha256 = "078s77wms1n1b29mrn6x25sksfjad0yns51gmahzd7hlgp5d56dm"; name = "org-projectile"; }; @@ -19626,7 +19836,7 @@ sha256 = "1cxjzj955rvp0ijbp7ifpmkxdhimz8hqjw5c9gv6zwjqb5iih9ry"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-protocol-jekyll"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-protocol-jekyll"; sha256 = "18wg489n2d1sx9jk00ki6p2rxkqz67kqwnmy2kb1ga1rmb6x9wfs"; name = "org-protocol-jekyll"; }; @@ -19647,7 +19857,7 @@ sha256 = "1bi09hd5m994rkqcx0a045h20419b6n4vvwiiggzsi0723dd9fb9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-random-todo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-random-todo"; sha256 = "0yflppdbkfn2phd21zkjdlidzasfm846mzniay83v3akz0qx31lr"; name = "org-random-todo"; }; @@ -19668,7 +19878,7 @@ sha256 = "0hhgfw0sqvl9jmmslwxn6v3dii99v09yz2h0ia5np9lzyxsc207a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-readme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-readme"; sha256 = "1qqbsgspd006gy0kc614w7bg6na0ygmflvqkmw47899pbgj81hxh"; name = "org-readme"; }; @@ -19681,15 +19891,15 @@ org-ref = callPackage ({ dash, emacs, f, fetchFromGitHub, fetchurl, helm, helm-bibtex, hydra, key-chord, lib, melpaBuild, s }: melpaBuild { pname = "org-ref"; - version = "0.7.1"; + version = "0.8.1"; src = fetchFromGitHub { owner = "jkitchin"; repo = "org-ref"; - rev = "a188bb8af194a50ad2f023ad1773d4e33d8cf21a"; - sha256 = "07w41v1sczn98v70xw2rlfq8v1wrhs38gkyziibi96w4y3g6i7k0"; + rev = "af0dac5e863746a34360d8c70f83103778409c92"; + sha256 = "1iwvff3bi80xyds6xy202kfx42hv162cpcl78r88sl8j25q3jxhk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-ref"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-ref"; sha256 = "087isxf3z8cgmmniaxr3lpq9jg3sriw88dwp4f0ky286hlvgzw08"; name = "org-ref"; }; @@ -19710,7 +19920,7 @@ sha256 = "03c88jzwvl95dl39703mknkvnk3cmw4gss5c1y2k9py2rgh6bpr9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-repo-todo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-repo-todo"; sha256 = "0l5ns1hs3i4dhrpmvzl34zc9zysgjkfa7j8apbda59n9jdvml5v1"; name = "org-repo-todo"; }; @@ -19731,7 +19941,7 @@ sha256 = "0zx9gpvm5gy9k45lbhaks9s935id727lszsh40gmpdp5zxf3rjk1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-sync"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-sync"; sha256 = "0n8fz2d1vg9r8dszgasbnb6pgaxr2i8mqrp953prf1nhmfpjpxad"; name = "org-sync"; }; @@ -19752,7 +19962,7 @@ sha256 = "1qx3kd02sxs9k7adlvdlbmyhkc5kr7ni5lw4gxjw3nphnc536bkb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-table-comment"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-table-comment"; sha256 = "1d40vl8aa1x27z4gwnkzxgrqp7vd3ln2pc445ijjxp1wr8bjxvdz"; name = "org-table-comment"; }; @@ -19773,7 +19983,7 @@ sha256 = "1qz1qhd7v6ynmvz7j1xscz85z6zwy9dcarwhbz020l4bk4g9zf94"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-tfl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-tfl"; sha256 = "1rqmmw0222vbxfn5wxq9ni2j813x92lpv99jjszqjvgnf2rkhjhf"; name = "org-tfl"; }; @@ -19794,7 +20004,7 @@ sha256 = "12fksqi9flf84h1lbmbcjnqxa7dairp50wvlwfhbp1hbb8l9z63a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-themis"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-themis"; sha256 = "08rajz5y7h88fh94s2ad0f66va4vi31k9hwdv8p212bs276rp7ln"; name = "org-themis"; }; @@ -19815,7 +20025,7 @@ sha256 = "09iw2jffb2qrx5r07zd1j8sk5wafamjkc2khqyfwc5kx6xyp1f46"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-time-budgets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-time-budgets"; sha256 = "0r8km586n6xdnjha7xnzlh03nw1dp066hydaz8kxfmhvygl9cpah"; name = "org-time-budgets"; }; @@ -19836,7 +20046,7 @@ sha256 = "0qqa62fsmra6v4061kpki8wbhfcwkgnb2gzxwvnaqlcmhivksg6v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-toodledo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-toodledo"; sha256 = "0c7qr0jsc4iyrwkc22xp9nmk6984v7q1k0rvpd62m07lb5gvbiq3"; name = "org-toodledo"; }; @@ -19857,7 +20067,7 @@ sha256 = "1yh4p3i0ajfnsvh057h8dpf4rqvvblmfgzj6vyn9dmcl5is1ir2q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-tracktable"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-tracktable"; sha256 = "0mngf9q2ffxq32cgng0xl30661mj15wmr9y4hr3xddj626kxrp00"; name = "org-tracktable"; }; @@ -19878,7 +20088,7 @@ sha256 = "1h15fr16kgbyrxambmk4hsmha6hx4c4yqkccb82g3wlvzmnqj5x3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-transform-tree-table"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-transform-tree-table"; sha256 = "0n68cw769nk90ms6w1w6cc1nxjwn1navkz56mf11bsiqvsk3km7r"; name = "org-transform-tree-table"; }; @@ -19899,7 +20109,7 @@ sha256 = "0aacxxwhwjzby0f9r4q0lra5lqcrw5snnm1yc63jrs6c0ifakk45"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-tree-slide"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-tree-slide"; sha256 = "0v857zplv0wdbg4li667v2p5pn5zcf9fgbqcwa75x8babilkl6jn"; name = "org-tree-slide"; }; @@ -19920,7 +20130,7 @@ sha256 = "061nf6gwrzi36q3m3b1hn4bj33a6q4yic3fxdxxwvwrzi42bl74a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-trello"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-trello"; sha256 = "14lq8nn1x6qb3jx518zaaz5582m4npd593w056igqhahkfm0qp8i"; name = "org-trello"; }; @@ -19948,7 +20158,7 @@ sha256 = "1qf4pqsg12y1qx7di0y5dp0f4slyp69h2q6y21hldzknhwxx4yy4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org-vcard"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org-vcard"; sha256 = "0l6azshvzl1wws582njqr3qx4h73gwrdqwa3jcic1qbs9hg2l4yl"; name = "org-vcard"; }; @@ -19969,7 +20179,7 @@ sha256 = "0av1477jn3s4s5kymd7sbb0av437vb5mnfc6rpfgzwji7b8mfr7l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org2blog"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org2blog"; sha256 = "0ancvn4ji4552k4nfd2ijclsd027am93ngg241ll8f6h6k0wpmzq"; name = "org2blog"; }; @@ -19990,7 +20200,7 @@ sha256 = "089nqbda5mg1ippqnsl5wcx9n1gpnaqhl6kz54n47kivb400bidh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/org2jekyll"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/org2jekyll"; sha256 = "1j9d6xf5nsakifxwd4zmjc29lbj46ffn3z109k2y2yhz7q3r9hzv"; name = "org2jekyll"; }; @@ -20011,7 +20221,7 @@ sha256 = "02mxp17p7bj4xamg0m6zk832hmpqcgzc7bjbjcnvbvrawhc255hy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/orgbox"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/orgbox"; sha256 = "12wfqlpjh9nr7zgqs4h8kmfsk825n68qcbn8z2fw2mpshg3nj7l8"; name = "orgbox"; }; @@ -20032,7 +20242,7 @@ sha256 = "1wxxdx3c5qacsii4kysk438cjr1hnmpir78kp6xgk9xw5g9snlnj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/orgit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/orgit"; sha256 = "0askccb3h98v8gmylwxaph3gbyv5b1sp4slws76aqz1kq9x0jy7w"; name = "orgit"; }; @@ -20053,7 +20263,7 @@ sha256 = "076q8j70vqabirri6ckl1f0y60pq4bnilds6s34mxsxz1k3z3m1s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/orglink"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/orglink"; sha256 = "0ldrvvqs3hlazj0dch162gsbnbxcg6fgrxid8p7w9gj19vbcl52b"; name = "orglink"; }; @@ -20074,7 +20284,7 @@ sha256 = "0g1xhh88a65vcq6rlh7ii16pra4pv519ajcws0h93ldbbjiy7p0m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/osx-browse"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/osx-browse"; sha256 = "06rfzq2hxhzg6jh2zs28r7ffxwlq40nz954j13ly8403c7rmbrfm"; name = "osx-browse"; }; @@ -20095,7 +20305,7 @@ sha256 = "1ykn48src7qhx9cmpjkaqsz7h36p75kkq1h9wlcpv5fhaky2d4n4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/osx-clipboard"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/osx-clipboard"; sha256 = "0gjgr451v6rlyarz96v6h8kfbvkk7npvhgvkgwdi0bjighrhlv4f"; name = "osx-clipboard"; }; @@ -20116,7 +20326,7 @@ sha256 = "1vywqzw8hydi944q4ghgxbbvvmwfpa9wj5nmrnixfcw8h4mfcxvv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/osx-dictionary"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/osx-dictionary"; sha256 = "13033fxc5vjd1f7mm6znmprcp3mwxbvblb2d25shr8d4imqqhv82"; name = "osx-dictionary"; }; @@ -20137,7 +20347,7 @@ sha256 = "1csnxpsfnv9lv07kgvc60qx5c33sshmnz60p3qjz7ym7rnjy9b5x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/osx-location"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/osx-location"; sha256 = "1p12mmrw70p3b04zlprkdxdfnb7m3vkm6gci3fwhr5zyfvwxvn0c"; name = "osx-location"; }; @@ -20158,7 +20368,7 @@ sha256 = "0830kkmvc3ss7ygqfwz3j75s7mhxfxyadaksrp0v2cc4y6wn6nfv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/osx-plist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/osx-plist"; sha256 = "0zaqmhf5nm6jflwgxnknhi8zn97vhsia2xv8jm677l0h23pk2va8"; name = "osx-plist"; }; @@ -20179,7 +20389,7 @@ sha256 = "1pn6xvq41di1jb5d3i8wgs54w0m2414cq3f1vk0xpibshkq7sr4a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/osx-trash"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/osx-trash"; sha256 = "1f6pi53mhp2pvrfjm8544lqqj36gzpzxq245lzvv91lvqkxr9ysj"; name = "osx-trash"; }; @@ -20200,7 +20410,7 @@ sha256 = "1v9kx5xr7xcr6i664h2g6j8824yjsjdn5pvgmawvxrrplbjmiqnp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/outorg"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/outorg"; sha256 = "04swss84p33a9baa4swqc1a9lfp6wziqrwa7vcyi3y0yzllx36cx"; name = "outorg"; }; @@ -20221,7 +20431,7 @@ sha256 = "1v04iyx57w8scw3iqrivii7q0sh8sa7xacswdhd18mw9kvjrbj98"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/outshine"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/outshine"; sha256 = "1ajddzcrnvfgx3xa5wm0bcll9dax52syg1p521mv0ffkld63jyfl"; name = "outshine"; }; @@ -20242,7 +20452,7 @@ sha256 = "0qxk2rf84j86syxi8xknsq252irwg7sz396v3bb4wqz4prpj0kzc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ov"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ov"; sha256 = "0d71mpv74cfxcnwixbrl90nr22cw4kv5sdgpny5wycvh6cgmd6qb"; name = "ov"; }; @@ -20263,7 +20473,7 @@ sha256 = "0jz8p6bwpfncxwi6ssmi6ngx8sjjica565i6ln0gsr5i11zfb7nx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/overseer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/overseer"; sha256 = "04wfwcal051jrnmm5dga6vl4c9j10pm416586yxb8smi6fxws2jg"; name = "overseer"; }; @@ -20284,7 +20494,7 @@ sha256 = "0f2psx4lq98l3q3fnibsfqxp2hvvwk7b30zjvjlry3bffg3l7pfk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/owdriver"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/owdriver"; sha256 = "0j8z7ynan0zj581x50gsi9lljkbi6bwmzpfyha3i6q8ch5qkdxfd"; name = "owdriver"; }; @@ -20305,7 +20515,7 @@ sha256 = "047fcvpvwzaqisw4q3p6hxgjyqsi2n9nms1qx9w4znvxrnjq8jz3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ox-ioslide"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ox-ioslide"; sha256 = "0z0qnvpw64wxbgz8203rphswlh9hd2i11pz2mlay8l3bzz4gx4vc"; name = "ox-ioslide"; }; @@ -20326,7 +20536,7 @@ sha256 = "0h49pfl97vl796sm7r62rpv3slj0z5krm4zrqkgz0q6zlyrjay29"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ox-pandoc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ox-pandoc"; sha256 = "0wy6yvwd4vyq6xalkrshnfjjxlh1p24y52z49894nz5fl63b74xc"; name = "ox-pandoc"; }; @@ -20347,7 +20557,7 @@ sha256 = "08dw3h1417cr6ddd8gl8zcd11pxqpmkd67bknzhjpj7bbqznfqwa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ox-twbs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ox-twbs"; sha256 = "15csgnph5wh2dvcc2dnvrlm7whh428rq8smqji1509ib7aw9y5mx"; name = "ox-twbs"; }; @@ -20368,7 +20578,7 @@ sha256 = "073qpa223ja673p63mhvy4l6yyv3k7z05ifwvn7bmq4b5fq42hw6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pabbrev"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pabbrev"; sha256 = "1mbfa40pbzbi00sp155zm43sj6nw221mcayc2rk3ppin9ps95hx3"; name = "pabbrev"; }; @@ -20389,7 +20599,7 @@ sha256 = "1xv0ra130qg0ksgqi4npspnv0ckq77k7f5kcibavj030h578kj97"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/package+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/package+"; sha256 = "1mbsxr4llz8ny7n7w3lykld9yvbaywlfqnvr9l0aiv9rvmdv03bn"; name = "package-plus"; }; @@ -20410,7 +20620,7 @@ sha256 = "1pdv6d6bm5jmpgjqf9ycvzasxz1205zdi0zjrmkr33c03azwz7rd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/package-safe-delete"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/package-safe-delete"; sha256 = "12ss5yjhnyxsif4vlbgxamn5jfa0wxkkphffxnv6drhvmpq226jw"; name = "package-safe-delete"; }; @@ -20431,7 +20641,7 @@ sha256 = "0fs0a274c7sxldjj0m8wfx9vx7fkq41wngsvk8drzc38qa965vs0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/package-utils"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/package-utils"; sha256 = "02hgh7wg68ysfhw5hckrpshzv4vm1vnm395d34x6vpgl4ccx7v9r"; name = "package-utils"; }; @@ -20452,7 +20662,7 @@ sha256 = "1zzm43x0y90j4cr4zpwn3fs8apl7n0jhl6qlfkcbar7bb62pi66q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/packed"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/packed"; sha256 = "0sw7d2l17bq471i4isrf2xf0z85nqqiciw25whw0c0chdzwzai6z"; name = "packed"; }; @@ -20473,7 +20683,7 @@ sha256 = "1acz3w2zdcds0h6p2k9h3lmjsk519asqrxjw7f3pyrcq7x2qbhc4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/page-break-lines"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/page-break-lines"; sha256 = "0q1166z190dxznzgf2f29klj2jkaqlic483p4h3bylihkqp93ij7"; name = "page-break-lines"; }; @@ -20494,7 +20704,7 @@ sha256 = "03mlg6dmpjw8fq2s3c4gpqj20kjhzldz3m51bf6s0mxq9bclx2xw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pallet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pallet"; sha256 = "0q50cdwnn2w1n5h4bappncjjyi5yaixxannwgy23fngdrz1mxwd7"; name = "pallet"; }; @@ -20515,7 +20725,7 @@ sha256 = "17ibs2szjvy4ar4gidlyg6w20926fr1z59m851akghiwf4aqly7z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pandoc-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pandoc-mode"; sha256 = "0qvc6cf87h1jqf590kd68jfg25snxaxayfds634wj4z6gp70l781"; name = "pandoc-mode"; }; @@ -20536,7 +20746,7 @@ sha256 = "0gmdzagyg0p7q1gyj2a3aqp2g4asljpib3n67nikr0v99c2mki5y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pangu-spacing"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pangu-spacing"; sha256 = "082qh26vlk7kifz1800lyai17yvngwjygrfrsh1dsd8dxhk6l9j8"; name = "pangu-spacing"; }; @@ -20557,7 +20767,7 @@ sha256 = "1xh614czldjvfl66vhkyaai5k4qsg1l3mz6wd5b1w6kd45qrc54i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/paper-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/paper-theme"; sha256 = "04diqm2c9fm29zyms3hplkzb4kb7b2kyrxdsy0jxyjj5kabypd50"; name = "paper-theme"; }; @@ -20578,7 +20788,7 @@ sha256 = "0mg9glbrvhk7xl2grr8fs08wksqvwcgsdgwx0s8fhf8ygcvqcqix"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/paradox"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/paradox"; sha256 = "1xq14nfvprsq18464qr4mhphq7cl1f570lji5n8z6j9vpfm9a4p2"; name = "paradox"; }; @@ -20618,7 +20828,7 @@ sha256 = "0jbjwjl92pf0kih3p2x20ms2kpyzzam8fir661nimpmk802ahgkj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/paredit-everywhere"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/paredit-everywhere"; sha256 = "0gbkwk8mrbjr2l8pz3q4y6j8q4m12zmzl31c88ngs1k5d86wav36"; name = "paredit-everywhere"; }; @@ -20639,7 +20849,7 @@ sha256 = "1l0rq3k78k68ky58bv1mhya3mnl7n5wgr88n95na2lcil1dk8ghh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/paren-face"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/paren-face"; sha256 = "0dmzk66m3rd8x0rb925pyrfpc2qsvayks4kmhpb2ccdrx68pg8gf"; name = "paren-face"; }; @@ -20660,7 +20870,7 @@ sha256 = "0i5bc7lyyrx6swqlrp9l5x72yzwi53qn6ldrfs99gh08b3yvsnni"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/parent-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/parent-mode"; sha256 = "1ndn6m6aasmk9yrml9xqj8141100nw7qi1bhnlsss3v8b6njwwig"; name = "parent-mode"; }; @@ -20681,7 +20891,7 @@ sha256 = "0n91whyjnrdhb9bqfif01ygmwv5biwpz2pvjv5w5y1d4g0k1x9ml"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/parsebib"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/parsebib"; sha256 = "07br2x68scsxykdk2ajc4mfqhdb7vjkcfgz3vnpy91sirxzgfjdd"; name = "parsebib"; }; @@ -20702,7 +20912,7 @@ sha256 = "18m0973l670cjbzpa1vfv06gymhsa2f1pjcp329s0npb735x5whj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pass"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pass"; sha256 = "1vvyvnqf6k7wm0p45scwi6ny86slkrcbr36lnxdlkf96cqyrqzfr"; name = "pass"; }; @@ -20723,7 +20933,7 @@ sha256 = "1g0mvg9i8f2qccb4b0m4d74zkjx9gjfv47x57by6cdaf9yywqryi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/passthword"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/passthword"; sha256 = "076jayziipjx260yk3p37pf5k0qsagalidah3y6hiflrlq4sfgjn"; name = "passthword"; }; @@ -20743,7 +20953,7 @@ sha256 = "0c5yjjvvlrcny13sg5kaadbqnc2wdcc2qrxn11gc70q9awv0n7gp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/password-store"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/password-store"; sha256 = "1jh24737l4hccr1k0b9fnq45ag2dsk84fnfs86hcgsadl94d6kss"; name = "password-store"; }; @@ -20764,7 +20974,7 @@ sha256 = "0m6qjsq6qfwwszm95lj8c58l75vbmx9r5hm9bfywyympfgy0fa1n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pastehub"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pastehub"; sha256 = "1slvqn5ay6gkbi0ai1gy1wmc02h4g3n6srrh4fqn72y7b9nv5i0v"; name = "pastehub"; }; @@ -20785,7 +20995,7 @@ sha256 = "1v5mpjb8kavbqhvg4rizwg8cypgmi6ngdiy8qp9pimmkb56y42ly"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pastelmac-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pastelmac-theme"; sha256 = "168zzqhp2dbfcnknwfqxk68rgmibfw71ksghvi6h2j2c1m08l23f"; name = "pastelmac-theme"; }; @@ -20806,7 +21016,7 @@ sha256 = "1brdyrp2sz1pszdfr6f4w94qxk5lrd6kphc1xa5pywfns14c9386"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pathify"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pathify"; sha256 = "1z970xnzbhmfikj1rkfx24jvwc7f1xxw6hk7kmahxvphjxrvgc2f"; name = "pathify"; }; @@ -20827,7 +21037,7 @@ sha256 = "0kkgqaxyrv65rfg2ng1vmmmrc9bm98yqpsv2pcb760287dn0l27m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/paxedit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/paxedit"; sha256 = "06ymilr0zrwfpyzql7dcpg48lhkx73f2jlaw3caxgsjaz7x3n4ic"; name = "paxedit"; }; @@ -20848,7 +21058,7 @@ sha256 = "0xbbq8ddlirhvv921nrf7bwazh0i98bk0a9xzyx8iqpyg66vbfa8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pcache"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pcache"; sha256 = "1q2wlbc58lyf3dxfs9ppdxvdsp81jmkq874zbd7f39wvc5ckbz0l"; name = "pcache"; }; @@ -20869,7 +21079,7 @@ sha256 = "0h0p4c08z0dqxmg55fzch1d2f38rywfk1j0an2f4sc94lj7ckbm6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pcomplete-extension"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pcomplete-extension"; sha256 = "0m0c9ir44p21rj93fkisvpvi08936717ljmzsr4qdf69b3i54cwc"; name = "pcomplete-extension"; }; @@ -20890,7 +21100,7 @@ sha256 = "1dpfhrxbaqpgjzac3m9hclbzlnrxq9b8bx6za53aqvml72yzxc6i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pcre2el"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pcre2el"; sha256 = "1l72hv9843qk5p8gi9ibr15wczm804j3ws2v1x7nx4dr7pc5c7l3"; name = "pcre2el"; }; @@ -20911,7 +21121,7 @@ sha256 = "03k3xhrim4s3yvbnl8g8ci5g7chlffycdw7d6a1pz3077mxf1f1z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pcsv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pcsv"; sha256 = "1zphndkbva59g1fd319a240yvq8fjk315b1fyrb8zvmqpgk9n0dl"; name = "pcsv"; }; @@ -20932,7 +21142,7 @@ sha256 = "19sy49r3ijh36m7hl4vspw5c4i8pnfqdn4ldm2sqchxigkw56ayl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pdf-tools"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pdf-tools"; sha256 = "1hnc8cci00mw78h7d7gs8smzrgihqz871sdc9hfvamb7iglmdlxw"; name = "pdf-tools"; }; @@ -20953,7 +21163,7 @@ sha256 = "0kjz7ch4bn0m4v9zgqyqcrsasnqc5c5drv2hp22j7rnbb7ny0q3n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/peg"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/peg"; sha256 = "0nxy9xn99myz0p36m4jflfj48qxhhn1sspbfx8d90030xg3cc2gm"; name = "peg"; }; @@ -20973,7 +21183,7 @@ sha256 = "0w02l91x624cgzdg33a9spgcwy12m607dsfnr1xbc1fi08np4sd1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/per-buffer-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/per-buffer-theme"; sha256 = "1czcaybpfmx4mwff7hs07iayyvgvlhifkickccap6kpd0cp4n6hn"; name = "per-buffer-theme"; }; @@ -20994,7 +21204,7 @@ sha256 = "0j72rqd96dz9pp9zwc88q3358m4b891dg0szmbyvs4myp3yandz2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/persistent-scratch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/persistent-scratch"; sha256 = "0iai65lsg3zxj07hdb9201w3rwrvdb3wffr6k2jdl8hzg5idghn1"; name = "persistent-scratch"; }; @@ -21015,7 +21225,7 @@ sha256 = "14p20br8vzxs39d4hswzrrkgwql5nnmn5j17cpbabzjvck42rixc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/persistent-soft"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/persistent-soft"; sha256 = "0a4xiwpgyyynjf69s8p183mqd3z53absv544ggvhb2gkpm6jravc"; name = "persistent-soft"; }; @@ -21036,7 +21246,7 @@ sha256 = "090b73969namf3h7pbf8xc969dygj3frzlkf0h2x29wl1fmag5kr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/persp-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/persp-mode"; sha256 = "1bgni7y5xsn4a21494npr90w3320snfzw1hvql30xrr57pw3765w"; name = "persp-mode"; }; @@ -21057,7 +21267,7 @@ sha256 = "12c2rrhysrcl2arc6hpzv6lxbb1r3bzlvdp23hnp9sci6yc10k3q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/perspective"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/perspective"; sha256 = "150dxcsd0ylvfi9mmfpcki1wd3nl8q9mbszd3dgqfnm40yncklml"; name = "perspective"; }; @@ -21078,7 +21288,7 @@ sha256 = "1qxsc5wyk8l9gkgmqy3mzwxdhji1ljqw9s1jfxkax7fyv4d1v31p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ph"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ph"; sha256 = "0azx4cpfdn01yrqyn0q1gg9z7w0h0rn7zl39v3dx6yidd76ysh0l"; name = "ph"; }; @@ -21099,7 +21309,7 @@ sha256 = "0r6cl1ng41s6wsy5syjlkaip0mp8h491diipdc1psbhnpk4vabsv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/phi-search-mc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/phi-search-mc"; sha256 = "07hd80rbyzr5n3yd7hv1j51nl6pvcxmln20g6xvw8gh5yfl9k0m8"; name = "phi-search-mc"; }; @@ -21120,7 +21330,7 @@ sha256 = "0zs11811kx6x1zgc1icd8gw420saa7z6zshpzmrddnbznya4qql6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/php-auto-yasnippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/php-auto-yasnippets"; sha256 = "1hhddvpc80b6wvjpbpibsf24rp5a5p45m0bg7m0c8mx181h9mqgn"; name = "php-auto-yasnippets"; }; @@ -21141,7 +21351,7 @@ sha256 = "0pwhw59ki19f9rkgvvnjzhby67s0y9hpsrg6cwqxakjlm66w96q3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/php-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/php-mode"; sha256 = "1lc4d3fgxhanqr3b8zr99z0la6cpzs2rksj806lnsfw38klvi89y"; name = "php-mode"; }; @@ -21162,7 +21372,7 @@ sha256 = "09rinyx0621d7613xmbyvrrlav6d4ia332wkgg0m9dn265g3h56z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/phpcbf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/phpcbf"; sha256 = "1hf88ys4grffpqgavrbc72dn3m7crafgid2ygzx9c5j55syh8mfv"; name = "phpcbf"; }; @@ -21183,7 +21393,7 @@ sha256 = "1s4a0ygm79shv6f0rghrkq9jb7jc7sh9cjxzlzj0c8zpvsxl0hlz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/phpunit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/phpunit"; sha256 = "0nj8ss1yjkcqnbnn4jgbp0403ljjk2xhipzikdrl3dbxlf14i4f8"; name = "phpunit"; }; @@ -21204,7 +21414,7 @@ sha256 = "12jhdkgfck2a6d5jj65l9d98dm34gsyi0ya4h21dbbvz35zivz70"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pinyin-search"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pinyin-search"; sha256 = "1si693nmmxgg0kp5mxvj5nq946kfc5cv3wfsl4znbqzps8qb2b7z"; name = "pinyin-search"; }; @@ -21214,6 +21424,27 @@ license = lib.licenses.free; }; }) {}; + pinyinlib = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "pinyinlib"; + version = "0.1.0"; + src = fetchFromGitHub { + owner = "cute-jumper"; + repo = "pinyinlib.el"; + rev = "f1e6c86f47e16c2bd48436630286bae8d6f8cb8c"; + sha256 = "13q95z0j1mpk2yrrq0amc2jjhajaz4884bfliy2h8adh109j4q1d"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pinyinlib"; + sha256 = "0kv67qa3825fw64qimkph2b65pilrsx5730y4c7f7c1f8giz5vxr"; + name = "pinyinlib"; + }; + packageRequires = []; + meta = { + homepage = "https://melpa.org/#/pinyinlib"; + license = lib.licenses.free; + }; + }) {}; pip-requirements = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pip-requirements"; @@ -21225,7 +21456,7 @@ sha256 = "1dsg49156mfhkd8ip4ny03sc06zchxr1qpbcx48f5sn4m9j5d3vs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pip-requirements"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pip-requirements"; sha256 = "1wsjfyqga7pzp8gsm5x53qrkn40srairbjpifyrqbi2fpzmwhrnz"; name = "pip-requirements"; }; @@ -21246,7 +21477,7 @@ sha256 = "1wg8pcwd70ixn2bxh01934zl12ry4pgx3l9dccpbjdi40gira00d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pixiv-novel-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pixiv-novel-mode"; sha256 = "0f1rxvf9nrw984122i6dzsgik9axfjv6yscmg203s065n9lz17px"; name = "pixiv-novel-mode"; }; @@ -21267,7 +21498,7 @@ sha256 = "0nk12dcppdyhav6m6yf7abpywyd7amxd4237zsfd32w4zxsx39k1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pkg-info"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pkg-info"; sha256 = "0whcvralk76mfmvbvwn57va5dkb1irj7iwffgddi7r0ima49iszx"; name = "pkg-info"; }; @@ -21288,7 +21519,7 @@ sha256 = "0a8qb1ldk6bjs7fpxgxrf90md7q46fhl71gmay8yafdkh6hn0kqr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pkgbuild-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pkgbuild-mode"; sha256 = "1lp7frjahcpr4xnzxz77qj5hbpxbxm2g28apkixrnc1xjha66v3x"; name = "pkgbuild-mode"; }; @@ -21309,7 +21540,7 @@ sha256 = "1nznbkl06cdq4pyqmvkp9jynsjibn0fd6ai4mggz6ggcwzcixbf0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/platformio-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/platformio-mode"; sha256 = "1v1pp3365wj19a5wmsxyyy5n548z3lmcbm2pwl914wip3ca7546f"; name = "platformio-mode"; }; @@ -21330,7 +21561,7 @@ sha256 = "0slfaclbhjm5paw8l7rr3y9xxjyhkizp9lwyvlgpkd38n4pgj2bx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/play-routes-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/play-routes-mode"; sha256 = "17phqil2zf5rfvhs5v743dh4lix4v2azbf33z9n97ahs7j66y2gz"; name = "play-routes-mode"; }; @@ -21351,7 +21582,7 @@ sha256 = "11cbpgjsnw8fiqf1s12hbm9qxgjcw6y2zxx7wz4wg7idmi7m0b7g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/plenv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/plenv"; sha256 = "0dw9fy5wd9wm76ag6yyw3f9jnlj7rcdcxgdjm30h514qfi9hxbw4"; name = "plenv"; }; @@ -21372,7 +21603,7 @@ sha256 = "0f00dv5jwbhs99j4jc6lvr5n0mv1y80yg7zpp6yrmhww6829l5rg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/plsense"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/plsense"; sha256 = "1ka06r4ashhjkfyzql9mfvs3gj7n684h4gaycj29w4nfqrhcw9va"; name = "plsense"; }; @@ -21393,7 +21624,7 @@ sha256 = "0s34nbqqy6aqi113xj452pbmqp43046wfbfbbfv1xwhybgq0c1j1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/plsense-direx"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/plsense-direx"; sha256 = "0qd4b7gkmn5ydadhp70995rap3643s1aa8gfi5izgllzhg0i864j"; name = "plsense-direx"; }; @@ -21403,6 +21634,27 @@ license = lib.licenses.free; }; }) {}; + plur = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "plur"; + version = "0.1"; + src = fetchFromGitHub { + owner = "xuchunyang"; + repo = "plur"; + rev = "5bdd3b9a2f0624414bd596e798644713cd1545f0"; + sha256 = "0qlxj19hj96l4lw81xh5r14ppf6kp63clikk060s9yw00q7gnl6a"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/plur"; + sha256 = "0nf1dc7xf2zp316rssnz8sv374akcr54hp0rb219qvgyck9bdqiv"; + name = "plur"; + }; + packageRequires = [ emacs ]; + meta = { + homepage = "https://melpa.org/#/plur"; + license = lib.licenses.free; + }; + }) {}; pony-snippets = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }: melpaBuild { pname = "pony-snippets"; @@ -21414,7 +21666,7 @@ sha256 = "0xjvxfkrl6wl31s7rvbv9zczn6d6i9vf20waqlr3c2ff3zy55ygy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pony-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pony-snippets"; sha256 = "12ygvpfkzldq6s4mwbrxs4x9927i7pa7ywn7lf1r3gg4h29ar9gn"; name = "pony-snippets"; }; @@ -21427,15 +21679,15 @@ ponylang-mode = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ponylang-mode"; - version = "0.0.5"; + version = "0.0.7"; src = fetchFromGitHub { owner = "SeanTAllen"; repo = "ponylang-mode"; - rev = "e6c713a1e43f4e5a3ee78e102050fff4efe334fb"; - sha256 = "0ay44hp82ly4kdsgwhhk16gvw26kyvpl8h3fziyicfl5swy954nb"; + rev = "cab4db97aacb9b5e05d6f0175154039a6b068cff"; + sha256 = "0by7klp7imy7zgc37wsiil86y6i2h1wfwfyifc2cf0jn5dsvfikw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ponylang-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ponylang-mode"; sha256 = "02fq0qp7f4bzmynzszrwskfs78nzsmf413qjxqndrh3hamixzpi1"; name = "ponylang-mode"; }; @@ -21456,7 +21708,7 @@ sha256 = "18i0kivn6prh5pwdr7b4pxfxqsc8l4mks1h6cfs7iwnfn15g5k19"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pophint"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pophint"; sha256 = "1chq2j79hg095jxw5z3pz4qicqrccw0gj4sxrin0a55hnprzzp72"; name = "pophint"; }; @@ -21477,7 +21729,7 @@ sha256 = "1y538siabcf1n00wr4iz5gbxfndw661kx2mn9w1g4lg7yi4n0h0h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/popup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/popup"; sha256 = "151g00h9rkid76qf6c53n8bncsfaikmhj8fqcb3r3a6mbngcd5k2"; name = "popup"; }; @@ -21498,7 +21750,7 @@ sha256 = "084hb3zn1aiabbyxgaalszb2qjf9z64z960ks5fvz8nh7n6y7ny4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/popup-complete"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/popup-complete"; sha256 = "04bpm31zx87j390r2xi1yl4kyqgalmyqc48xarsm67zfww9fw9c1"; name = "popup-complete"; }; @@ -21519,7 +21771,7 @@ sha256 = "19mqzfpki2zlnibp2vzymhdld1m20jinxwgdhmbl6zdfx74zbz7b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/popup-imenu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/popup-imenu"; sha256 = "0lxwfaa9vhdn55dj3idp8c3fg1g26qsqq46y5bimfd0s89bjbaxn"; name = "popup-imenu"; }; @@ -21540,7 +21792,7 @@ sha256 = "0nips9npm4zmz3f37vvb4s0g1ci0p9cl6w0z4sc6agg4rybjhpdp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/popwin"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/popwin"; sha256 = "1zp54nv8rh0b3g8y5aj4793miiw2r1ijwbzq31lkwmbdr09mixmf"; name = "popwin"; }; @@ -21561,7 +21813,7 @@ sha256 = "0w8bnspnk871qndp18hs0wk4x9x31xr9rwbvf5dc8mcbnj29ch33"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pos-tip"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pos-tip"; sha256 = "13qjz112qlrnq34lr70087gshzq8m44knfl6694hfprzjgix84vh"; name = "pos-tip"; }; @@ -21582,7 +21834,7 @@ sha256 = "1nx3b24i26kgm52xw21x4m15qjkxw3sg5r6qyvck0fyhj0gw69gr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/powerline"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/powerline"; sha256 = "0gsffr6ilmckrzifsmhwd42vr85vs42pc26f1205pbxb7ma34dhx"; name = "powerline"; }; @@ -21603,7 +21855,7 @@ sha256 = "010b151wblgxlfpy590yanbl2r8qhpbqgi02v0pyir340frm9ngn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/powershell"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/powershell"; sha256 = "162k8y9k2n48whaq93sqk86zy3p9qvsfxgyfv9n1nvk4l5wn70wk"; name = "powershell"; }; @@ -21624,7 +21876,7 @@ sha256 = "0pv671j8g09pn61kkfb3pa9axfa9zd2jdrkgr81rm2gqb2vh1hsq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ppd-sr-speedbar"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ppd-sr-speedbar"; sha256 = "1m2918hqvb9c6rgb5szs95ds99gdjdxggcbdfqzmbb5sz2936av8"; name = "ppd-sr-speedbar"; }; @@ -21645,7 +21897,7 @@ sha256 = "013fig9i4fyx16krp2vfv953p3rwdzr38zs6i50af4pqz4vrcfvh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pretty-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pretty-mode"; sha256 = "1zxi4nj7vnchiiz1ndx17b719a1wipiqniykzn4pa1w7dsnqg21f"; name = "pretty-mode"; }; @@ -21666,7 +21918,7 @@ sha256 = "08ljf39jfmfpdk36nws2dnwpm7y8252zsdprsc85hr1h1ig5xy15"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/processing-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/processing-mode"; sha256 = "184yg9z14ighz9djg53ji5dgnb98dnxkkwx55m8f0f879x31i89m"; name = "processing-mode"; }; @@ -21687,7 +21939,7 @@ sha256 = "08ljf39jfmfpdk36nws2dnwpm7y8252zsdprsc85hr1h1ig5xy15"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/processing-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/processing-snippets"; sha256 = "09vkm9asmjz1in0f63s7bf4amifspsqf5w9pxiy5y0qvmn28fr2r"; name = "processing-snippets"; }; @@ -21708,7 +21960,7 @@ sha256 = "0r32rjfsbna0g2376gdv0c0im1lzw1cwbp9690rgqjj95ls4saa3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/prodigy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/prodigy"; sha256 = "032868bgy2wmb2ws48lfibs4118inpna7mmml8m7i4m4y9ll6g85"; name = "prodigy"; }; @@ -21729,7 +21981,7 @@ sha256 = "1hv8ifrpwn434sm41vkgbwni21ma5kfybkwasi6zp0f2b5i9ziw7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/project-explorer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/project-explorer"; sha256 = "076lzmyi1n7yrgdgyh9qinq271qk6k64x0msbzarihr3p4psrn8m"; name = "project-explorer"; }; @@ -21750,7 +22002,7 @@ sha256 = "1x7hwda1w59b8hvzxyk996wdz6phs6rchh3f1ydf0ab6x7m7xvjr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/project-persist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/project-persist"; sha256 = "0csjwj0qaw0hz2qrj8kxgxlixh2hi3aqib98vm19sr3f1b8qab24"; name = "project-persist"; }; @@ -21771,7 +22023,7 @@ sha256 = "1nq320ph8fs9a197ji4mnw2xa24dld0r1nka476yvkg4azmcc9x8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/project-persist-drawer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/project-persist-drawer"; sha256 = "1jv2y2hcqakyvfibclzm7g4diw0bvsv3a8fa43yf19wb64jm8hdb"; name = "project-persist-drawer"; }; @@ -21791,7 +22043,7 @@ sha256 = "08dd2y6hdsj1rxcqa2hnjypnn9c2z43y7z2hz0fi4vny547qybz8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/project-root"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/project-root"; sha256 = "0xjir204zk254y2x70k9vqwirx2ljmrikpsgn5kn170d1bxvhwmb"; name = "project-root"; }; @@ -21812,7 +22064,7 @@ sha256 = "1rl6n6v9f4m7m969frx8b51a4lzfix2bxx6rfcfbh6kzhc00qnxf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/projectile"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/projectile"; sha256 = "1kf8hql59nwiy13q0p6p6rf5agjvah43f0sflflfqsrxbihshvdn"; name = "projectile"; }; @@ -21833,7 +22085,7 @@ sha256 = "0k4ai896yfbjym01ay5gzgyw41lnqs45c9ndl3i5c8006ggikc0f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/projectile-rails"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/projectile-rails"; sha256 = "0fgvignqdqh0ma91z9385782l89mvwfn77rp1gmy8cbkwi3b7fkq"; name = "projectile-rails"; }; @@ -21854,7 +22106,7 @@ sha256 = "1ma6djvhvjai07v1g9a36lfa3nw8zsy6x5vliwcdnkf44gs287ra"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/projectile-sift"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/projectile-sift"; sha256 = "1wbgpwq9yy3v7hqidaczrvvsw5ajj7m3n4gsy3b169xv5h673a0i"; name = "projectile-sift"; }; @@ -21875,7 +22127,7 @@ sha256 = "1rw55w2fpb3rw7j136kclkhppz21f7d7di4cvlv7zj5zpdl5zz88"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/projekt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/projekt"; sha256 = "1bhb24701flihl54w8xrj6yxhynpq4dk0fp5ciac7k28n4930lw8"; name = "projekt"; }; @@ -21896,7 +22148,7 @@ sha256 = "1hq8426i8rpb3qzkd5akv3i08pa4jsp9lwsskn38bfgp71pwild2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/prompt-text"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/prompt-text"; sha256 = "1b9sj9kzx5ydq2zsfmkwsx78pzg0vsvrn92397js6b2cm24vrwwc"; name = "prompt-text"; }; @@ -21917,7 +22169,7 @@ sha256 = "18ap2liz5r5a8ja2zz9182fnfm47jnsbyblpq859zks356k37iwc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/prop-menu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/prop-menu"; sha256 = "0dhy52fxxpa058mhhx0slw3sly3dlxm9vkax6fd1sap6f6v00p5i"; name = "prop-menu"; }; @@ -21938,7 +22190,7 @@ sha256 = "03df8zvx2sry3jz2x4pi3l32qyfqa7w8kj8jdbz30nzy0h7aa070"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/protobuf-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/protobuf-mode"; sha256 = "1hh0w93fg6mfwsbb9wvp335ry8kflj50k8hybchpjcn6f4x39xsj"; name = "protobuf-mode"; }; @@ -21959,7 +22211,7 @@ sha256 = "0wgxrwl7dpy084sc76wiwpixycb171g7xwc66m5gnlrv79qyac73"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/psci"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/psci"; sha256 = "0sgrz8byz2pcsad2pydinp4hh2xb48pdb03r93wg2vvyy8p15j9g"; name = "psci"; }; @@ -21980,7 +22232,7 @@ sha256 = "0msa8c29djhy5h3zpdvx25f4y1c50rgsk8iz6r127psrxdlfrvg8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/psession"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/psession"; sha256 = "18va6kvpia5an74vkzccs72z02vg4vq9mjzr5ih7xbcqxna7yv3a"; name = "psession"; }; @@ -22001,7 +22253,7 @@ sha256 = "1p0k770h96iw8bxm8ssi0a91m050s615q036870lrlsz35mzc5kw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pt"; sha256 = "0zmz1hcr4ajc2ydvpdxhy1dlhp7hvlkv6y6w1b79ffvq6acdd5mj"; name = "pt"; }; @@ -22022,7 +22274,7 @@ sha256 = "19bcf3wbmp186yxvrdsm2ax4npvi2x0id94zi13pdnw4cz7zch3v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/puml-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/puml-mode"; sha256 = "131ghjq6lsbhbx5hdg36swnkqijdb9bx6zg73hg0nw8qk0z742vn"; name = "puml-mode"; }; @@ -22043,7 +22295,7 @@ sha256 = "1v48i37iqrrwbyy3bscicfq66vbbml4sg0f0n950bnk0qagjx8py"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/punctuality-logger"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/punctuality-logger"; sha256 = "0q9s74hkfqvcx67xpq9rlvh38nyjnz230bll6ks7y5yzxvl4qhcm"; name = "punctuality-logger"; }; @@ -22064,7 +22316,7 @@ sha256 = "012lv7hrwlhvins81vw3yjkhdwbpi6g1dx55i101qyrpzv5ifngm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pungi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pungi"; sha256 = "1v9fsd764z5wdcips63z53rcipdz7bha4q6s4pnn114jn3a93ls1"; name = "pungi"; }; @@ -22085,7 +22337,7 @@ sha256 = "0xr3s56p6fbm6wgw17galsl3kqvv8c7l1l1qvbhbay39yzs4ff14"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/puppet-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/puppet-mode"; sha256 = "1s2hap6fs6rg5q80dmzhaf4qqaf5sglhs8p896i3i5hq51w0ciyc"; name = "puppet-mode"; }; @@ -22106,7 +22358,7 @@ sha256 = "1wk319akv0scvyyjsd48pisi2i1gkahhsan9hfszrs6xx3anvfd9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/purescript-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/purescript-mode"; sha256 = "00gz752mh7144nsaka5q3q4681jp845kc5vcy2nbfnqp9b24l55m"; name = "purescript-mode"; }; @@ -22127,7 +22379,7 @@ sha256 = "03ivg3ddhy5zh410wgwxa17m98wywqhk62jgijhjd00b6l8i4aym"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pushbullet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pushbullet"; sha256 = "1swzl25rcw7anl7q099qh14yhnwlbn3m20ib9kis0l1rv59kkarl"; name = "pushbullet"; }; @@ -22148,7 +22400,7 @@ sha256 = "06xdq2slwhkcqlbv7x86zmv55drzif9cwjlj543cwhncphl2x9rd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/py-autopep8"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/py-autopep8"; sha256 = "1argjdmh0x9c90zkb6cr4z3zkpgjp2mkpsw0dr4v6gg83jcggfpp"; name = "py-autopep8"; }; @@ -22169,7 +22421,7 @@ sha256 = "0150q6xcnzzrkn9fa9njm973l1d49c48ad8qia71k4jwrxjjj6zr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/py-isort"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/py-isort"; sha256 = "0k5gn3bjn5pv6dn6p0m9xghn0sx3m29bj3pfrmyh6gd5ic0l00yb"; name = "py-isort"; }; @@ -22190,7 +22442,7 @@ sha256 = "09z739w4fjg9xnv3mbh7v8j59mnbsfq4ygq616pj4xcw3nsh0rbg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/py-yapf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/py-yapf"; sha256 = "1381x0ffpllxwgkr2d8xxbv1nd4k475m1aff8l5qijw7d1fqga2f"; name = "py-yapf"; }; @@ -22211,7 +22463,7 @@ sha256 = "0qg1kjzsv2mcvlsivqy8ys3djbs5yala37r9h2zcxdicl88q0l11"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pycarddavel"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pycarddavel"; sha256 = "12k2mnzkd8yv17csfhclsnd479vcabawmac23yw6dsw7ic53jf1a"; name = "pycarddavel"; }; @@ -22232,7 +22484,7 @@ sha256 = "1y3q1k195wp2kgp00a1y34i20zm80wdv2kxigh6gbn2r6qzkqrar"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pyenv-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pyenv-mode"; sha256 = "00yqrk92knv9gq1m9xcg78gavv70jsjlwzkllzxl63iva9qrch59"; name = "pyenv-mode"; }; @@ -22253,7 +22505,7 @@ sha256 = "0q6bib9nr6xiq6npzbngyfcjk87yyvwzq1zirr3z1h5wadm34lsk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/python-environment"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/python-environment"; sha256 = "1pq16rddw76ic5d02j5bswl9qcydi47hqmhs7r06jk46vsfzxpl7"; name = "python-environment"; }; @@ -22274,7 +22526,7 @@ sha256 = "00i7cc4r7275l22k3708xi4hqw2j44yivdb1madzrpf314v3kabr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/python-x"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/python-x"; sha256 = "115mvhqfa0fa8kdk64biba7ri4xjk74qqi6vm1a5z3psam9mjcmn"; name = "python-x"; }; @@ -22295,7 +22547,7 @@ sha256 = "1af9cd8l5ac58mj92xc7a3diy995cv29abnbb3fl6x4208l4xs3c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pythonic"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pythonic"; sha256 = "1hq0r3vg8vmgw89wfjdqknwm76pimlk0dy56wmh9vffh06gqsb51"; name = "pythonic"; }; @@ -22316,7 +22568,7 @@ sha256 = "0jidmc608amd0chs4598zkj0nvyll0al093121hkczsbpgbllq9z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/pyvenv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/pyvenv"; sha256 = "0gai9idss1wvryxyqk3pv854mc2xg9hd0r55r2blql8n5rd2yv8v"; name = "pyvenv"; }; @@ -22337,7 +22589,7 @@ sha256 = "110z27n3h7p2yalicfhnv832ikfcf7p0hrf5qkryz1sdmz79wb3f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/qiita"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/qiita"; sha256 = "1kzk7pc68ks9gxm2l2d28al23gxh56z0cmkl80qwg7sh4gsmhyxl"; name = "qiita"; }; @@ -22358,7 +22610,7 @@ sha256 = "1mlka59gyylj4cabi1b552h11qx54kjqwx3bkmsdngjrd4da222a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/qml-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/qml-mode"; sha256 = "123mlibviplzra558x87da4zx0kpbhsgfigjjgjgp3mdg897084n"; name = "qml-mode"; }; @@ -22379,7 +22631,7 @@ sha256 = "0lfmdlb626b3gbmlvacwn84vpqam6gk9lp29wk0hcraw69vaw1v8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/quasi-monochrome-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/quasi-monochrome-theme"; sha256 = "0h5pqrklyga40jg8qc47lwmf8khn0vcs5jx2sdycl2ipy0ikmfs0"; name = "quasi-monochrome-theme"; }; @@ -22400,7 +22652,7 @@ sha256 = "1iypwvdgdh30c9br7jnibgwbdca2mqjy95x2ppsc51sik2mz2db1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/quickrun"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/quickrun"; sha256 = "0f989d6niw6ghf9mq454kqyp0gy7gj34vx5l6krwc52agckyfacy"; name = "quickrun"; }; @@ -22421,7 +22673,7 @@ sha256 = "02bddznlqys37fnhdpp2g9xa9m7kfgrj1vl0hc5kr42hggk9wwmg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/r-autoyas"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/r-autoyas"; sha256 = "18zifadsgbwnga205jvpx61wa2dvjxmxs5v7cjqhny45a524nbv4"; name = "r-autoyas"; }; @@ -22442,7 +22694,7 @@ sha256 = "1r1gq6b33iv5a3kf96s73xp5y7yw2lq36cczmwbb9ix5bh5jhcyk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/racer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/racer"; sha256 = "1091y5pisbf73i6zg5d7yny2d5yckkjg0z6fpjpmz5qjs3xcm9wi"; name = "racer"; }; @@ -22463,7 +22715,7 @@ sha256 = "02x5ciyafqwak06yk813kl8p92hq03wjsk1882q8axr9q231100c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rainbow-blocks"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/rainbow-blocks"; sha256 = "08p41wvrw1j3h7j7lyl8nxk1gcc2id9ikljmiklg0kc6s8ijhng8"; name = "rainbow-blocks"; }; @@ -22476,15 +22728,15 @@ rainbow-delimiters = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "rainbow-delimiters"; - version = "2.1.1"; + version = "2.1.3"; src = fetchFromGitHub { owner = "Fanael"; repo = "rainbow-delimiters"; - rev = "0823d0c67f935a4c36a1c945e93051102963c7fb"; - sha256 = "0gxc8j5a14bc9mp43cbcz41ipc0z1yvmypg52dnl8hadirry20gd"; + rev = "93cd2dc873e7fedca7abc599cd97d46db4376ac7"; + sha256 = "0vs9pf8lqq5p5qz1770pxgw47ym4xj8axxmwamn66br59mykdhv0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rainbow-delimiters"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/rainbow-delimiters"; sha256 = "132nslbnszvbgkl0819z811yar3lms1hp5na4ybi9gkmnb7bg4rg"; name = "rainbow-delimiters"; }; @@ -22505,7 +22757,7 @@ sha256 = "05i0jpmxzsj2lsj48cafn3v93z37l7k5kaza2ik3yirdpjdibyrh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rainbow-identifiers"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/rainbow-identifiers"; sha256 = "0lw790ymrgpyh0sxwmzinl2ik5vl5vggbg14cd0cx5yagkw5y3mp"; name = "rainbow-identifiers"; }; @@ -22526,7 +22778,7 @@ sha256 = "1q65jj6bghvzhlqmpg61a7vn8izc01wp2fjiqx013zxpg9awvzmq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rake"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/rake"; sha256 = "0cw47g6cjnkh3z4hbwwq1f8f5vrvs84spn06k53bx898brqdh8ns"; name = "rake"; }; @@ -22547,7 +22799,7 @@ sha256 = "1r2k9s46njys2acacwk57mkr9szbpxz93xd4rnjf5gx551khlhjb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ranger"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ranger"; sha256 = "14g4r4iaz0nzfsklslrswsik670pvfd0605xfjghvpngn2a8ych4"; name = "ranger"; }; @@ -22568,7 +22820,7 @@ sha256 = "1i16361klpdsxphcjdpxqswab3ing69j1wb9nygws7ghil85h0bx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rase"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/rase"; sha256 = "1g7v2z7l4csl5by64hc3zg4kgrkvv81iq30mfqq4nvy1jc0xa6j0"; name = "rase"; }; @@ -22589,7 +22841,7 @@ sha256 = "0rwgwz1x9w447y8mxy9hrx1rzi3ac9dwk2y5yg1p08z5b7dy6vcz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rats"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/rats"; sha256 = "0jhwiq9yzwpyqhk3c32vqx8nryingzh58psxbzjl3812b7xdqphr"; name = "rats"; }; @@ -22610,7 +22862,7 @@ sha256 = "09c6v4lnv6vm2cckbdpx2fdi9xkz9l68qvhx35vaawxhrkgvypzp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rbenv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/rbenv"; sha256 = "09nw7sz6rdgs7hdw517qwgzgyrdmxb16sgldfkifk41rhiyqhr65"; name = "rbenv"; }; @@ -22631,7 +22883,7 @@ sha256 = "1kwn33rxaqik5jls66c2indvswhwmxdmd60n7a1h9siqm5qhy9d6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rcirc-styles"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/rcirc-styles"; sha256 = "01dxhnzsnljig769dk9axdi970b3lw2s6p1z3ljf29qlb5j4548r"; name = "rcirc-styles"; }; @@ -22652,7 +22904,7 @@ sha256 = "0h54mpi8jd21vjifc0yy0hvpygiam1rlmypijpi4kv42x5mxkn3a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rdf-prefix"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/rdf-prefix"; sha256 = "1vxgn5f2kws17ndfdv1vj5p9ks3rp6sikzpc258j07bhsfpjz5qm"; name = "rdf-prefix"; }; @@ -22673,7 +22925,7 @@ sha256 = "1ka5q2q18hgh7wl5yn04489121bq4nx369rz8nb7dr5l14cas0xm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/real-auto-save"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/real-auto-save"; sha256 = "03dbbizpyg62v6zbq8hd16ikrifz8m2bdlbb3g67f2834xqmxha8"; name = "real-auto-save"; }; @@ -22694,7 +22946,7 @@ sha256 = "07j1grdbqv3iv5ghmgsjw678bxjajcxi27clz4krcz3ys5b1h70v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/realgud"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/realgud"; sha256 = "0qmvd35ng1aqclwj3pskn58c0fi98kvx9666wp3smgj3n88vgy15"; name = "realgud"; }; @@ -22715,7 +22967,7 @@ sha256 = "114ssmby614xjs7mrpbbsdd4gj5ra6klfh8h6z8iij8xn3kii83q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/recover-buffers"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/recover-buffers"; sha256 = "0g40d7440hzlc9b45v63ng0anvmgip4dhbd9wcm2sn8qjfr4w11b"; name = "recover-buffers"; }; @@ -22736,7 +22988,7 @@ sha256 = "1vpsihrl03hkd6n6b7mrjccm0a023qf3154a8rw4chihikxw27pj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rect+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/rect+"; sha256 = "0vk0jwpl6yp2md9nh0ghp2qn883a8lr3cq8c9mgq0g552dwdiv5m"; name = "rect-plus"; }; @@ -22757,7 +23009,7 @@ sha256 = "048pjrd04w6w4v6r56yblbqgkjh01xib7k1i6rjc6288jh5vr1vm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rectangle-utils"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/rectangle-utils"; sha256 = "1w5z2gykydsfp30ahqjihpvq04c5v0cfslbrrg429hycys8apws7"; name = "rectangle-utils"; }; @@ -22778,7 +23030,7 @@ sha256 = "19c5rkb4nn6fs85lixrgrv8gagr69h430inig31dvm4fip9xdjp9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/redpen-paragraph"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/redpen-paragraph"; sha256 = "0jr707ik6fhznq0q421l986w85ah0n9b4is91zrgbk1v6miqrhca"; name = "redpen-paragraph"; }; @@ -22799,7 +23051,7 @@ sha256 = "0q4a4iznk6xk680xnvly69j8w1dac79qxlycwrfki6msnkagyn9p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/redtick"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/redtick"; sha256 = "0qnx9s2rch4xn98vbgiq8ll2hxrwi4fi4vg4bccyvwh21nj51iq0"; name = "redtick"; }; @@ -22820,7 +23072,7 @@ sha256 = "1r8fhs7d2vkrbv15ic2bm79i9a8swbc38vk566vnxkhl3rfd5a0a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/relative-line-numbers"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/relative-line-numbers"; sha256 = "0mj1w5a4ax8hwz41vn02bacxlnifd14hvf3p288ljvwchvlf0hn3"; name = "relative-line-numbers"; }; @@ -22841,7 +23093,7 @@ sha256 = "0lqbhwi1f8b4sv9p1rf0gyjllk0l7g6v6mlws496079wxx1n5j66"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/relax"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/relax"; sha256 = "0gfr4ym6aakawhkfz40ar2n0rfz503hq428yj6rbf7jmq3ajaysk"; name = "relax"; }; @@ -22862,7 +23114,7 @@ sha256 = "007lqahjbig6yygqik6fgbq114784z6l40a3vrc4qs9361zqizck"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/repeatable-motion"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/repeatable-motion"; sha256 = "12z4z8apd8ksf6dfvqm54l71mx68j0yg4hrjypa9p77fpcd6p0zw"; name = "repeatable-motion"; }; @@ -22883,7 +23135,7 @@ sha256 = "12wylmyz54n1f3kaw9clhvs66dg43xvcvll4pl5ii0ibfv6pls1b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/repl-toggle"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/repl-toggle"; sha256 = "1jyaksxgyygfv1wn9c6y8sykb4hicwgs9n5vrdikd2i0iix29zpb"; name = "repl-toggle"; }; @@ -22904,7 +23156,7 @@ sha256 = "1pxvwiqhv2nmsxkdwn9jx7na1vgk9dg9yxidglxpmvpid6fy4qdk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/replace-symbol"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/replace-symbol"; sha256 = "07ljmw6aw9hsqffhwmiq2pvhry27acg6f4vgxgi91vjr8jj3r4ng"; name = "replace-symbol"; }; @@ -22925,7 +23177,7 @@ sha256 = "0hs80g3npgb6qfcaivdfkpsc9mss1kdmyp5j7s922qcy2k4yxmgl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/repo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/repo"; sha256 = "0z4lcswh0c6xnsxlv33bsxh0nh26ydzfl8sv8xabdp5a2gk6bhpb"; name = "repo"; }; @@ -22946,7 +23198,7 @@ sha256 = "1xzp2hnkr9lsjx50cxlpki9mvyhjsv0vyc77480jrlnpspakj7qs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/req-package"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/req-package"; sha256 = "1438f60dnmc3a2dh6hd0wslrh25nd3af797aif70kv6qc71h87vf"; name = "req-package"; }; @@ -22956,43 +23208,43 @@ license = lib.licenses.free; }; }) {}; - request = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + request = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "request"; - version = "0.1.0"; + version = "0.2.0"; src = fetchFromGitHub { owner = "tkf"; repo = "emacs-request"; - rev = "b548f8bd9c4372232cb3d3633b9fcfffb2f535ff"; - sha256 = "0j7nakxj750rhdnm0nk075s7rx38rc9npbb55kg7r9vb2qilnvmr"; + rev = "efbe231346f368a3079bf185ce25997ac6104d9c"; + sha256 = "0rpw9is8sx2gmbc7l6mv5qdd0jrh497lyj5f0zx0lqwjl8imw401"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/request"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/request"; sha256 = "0h4jqg98px9dqqvjp08vi2z1lhmk0ca59lnrcl96bi7gkkj3jiji"; name = "request"; }; - packageRequires = []; + packageRequires = [ cl-lib emacs ]; meta = { homepage = "https://melpa.org/#/request"; license = lib.licenses.free; }; }) {}; - request-deferred = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + request-deferred = callPackage ({ deferred, fetchFromGitHub, fetchurl, lib, melpaBuild, request }: melpaBuild { pname = "request-deferred"; - version = "0.1.0"; + version = "0.2.0"; src = fetchFromGitHub { owner = "tkf"; repo = "emacs-request"; - rev = "b548f8bd9c4372232cb3d3633b9fcfffb2f535ff"; - sha256 = "0j7nakxj750rhdnm0nk075s7rx38rc9npbb55kg7r9vb2qilnvmr"; + rev = "efbe231346f368a3079bf185ce25997ac6104d9c"; + sha256 = "0rpw9is8sx2gmbc7l6mv5qdd0jrh497lyj5f0zx0lqwjl8imw401"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/request-deferred"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/request-deferred"; sha256 = "1dcxqnzmvddk61dzmfx8vjbzd8m44lscr3pjdp3r7211zhwfk40n"; name = "request-deferred"; }; - packageRequires = []; + packageRequires = [ deferred request ]; meta = { homepage = "https://melpa.org/#/request-deferred"; license = lib.licenses.free; @@ -23009,7 +23261,7 @@ sha256 = "1b832r7779rmr6rhzj7klc0l5xzwc4rids87g2hczpb5dhqnchca"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/requirejs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/requirejs"; sha256 = "09z6r9wcag3gj075wq215zcslyknl1izap595rn48xvizxi06c6k"; name = "requirejs"; }; @@ -23030,7 +23282,7 @@ sha256 = "1ywcnrrr4wp6c951mqfscvdgcmwyvxy80p40vi27nzbl977lb1xv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/resize-window"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/resize-window"; sha256 = "0h1hlj50hc97wxqpnmvg6w3qhdd9nbnb8r8v39ylv87zqjcmlp8l"; name = "resize-window"; }; @@ -23051,7 +23303,7 @@ sha256 = "0y4ga1lj2x2f0r535ivs09m2l0q76iz72w42wknhsw9lmdsyl5nz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/restart-emacs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/restart-emacs"; sha256 = "03aabz7fmy99nwimvjn7qz6pvc94i470hfgiwmjz3348cw02k0n6"; name = "restart-emacs"; }; @@ -23072,7 +23324,7 @@ sha256 = "1q13cgpz4wzhnqv84ablawy3y2wgdwy46sp7454mmfx9m77jzb2v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/reveal-in-osx-finder"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/reveal-in-osx-finder"; sha256 = "00jgrmh5s3vlpj1jjf8l3c3h4hjk5x781m95sidw6chimizvfmfc"; name = "reveal-in-osx-finder"; }; @@ -23093,7 +23345,7 @@ sha256 = "15xnz4fi22wsximimwmirlz11v4ksfj8nilyjfw6acd92yrhzg6h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/reverse-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/reverse-theme"; sha256 = "163kk5qnz9bk3l2fam79n264s764jfxbwqbiwgid8kw9cmk0v776"; name = "reverse-theme"; }; @@ -23114,7 +23366,7 @@ sha256 = "11hwf9y5ax207w6rwrsmi3pmn7pn7ap6iys0z8hni2f5zzxjrmx3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rich-minority"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/rich-minority"; sha256 = "11xd76w5k3b3q5bxqjb55vi6dsal9drvyc1nh7z83awm59hvgczc"; name = "rich-minority"; }; @@ -23135,7 +23387,7 @@ sha256 = "0p044wg9d4i6f5x7bdshmisgwvw424y16lixac93q6v5bh3xmab5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rigid-tabs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/rigid-tabs"; sha256 = "06n0bcvc3nnp84pcq3lywwga7l92jz8hnkilhbq59kydf5zbjldp"; name = "rigid-tabs"; }; @@ -23156,7 +23408,7 @@ sha256 = "1wqhqv2fc5h10igv1php51bayx0s7qw4m9gzx9by80dab8lwa0vk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rinari"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/rinari"; sha256 = "0qknicg3vzl7zbkwsdvp10hrvlng6mbi8hgslx4ir522dflrf9p0"; name = "rinari"; }; @@ -23177,7 +23429,7 @@ sha256 = "1drvyf5asjp3lgpss7llff35q8r89vmh73n1axaj2qp9jx5a5jih"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rnc-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/rnc-mode"; sha256 = "09ly7ln6qrcmmim9bl7kd50h4axrhy6ig406r352xm4a9zc8n22q"; name = "rnc-mode"; }; @@ -23198,7 +23450,7 @@ sha256 = "01xd3nc7bmf4r4d37x08rw2dlsg6gns8mraahi4rwkg6a9lwl44n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/robe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/robe"; sha256 = "19py2lwi7maya90kh1mgwqb16j72f7gm05dwla6xrzq1aks18wrk"; name = "robe"; }; @@ -23219,7 +23471,7 @@ sha256 = "0dimmdz4aqcif4lp23nqxfg7kngzym2yivn6h3p7bn1821vgzq9s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/robots-txt-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/robots-txt-mode"; sha256 = "1q3fqaf9nysy9bhx4h9idgshxr65hfwnx05vlwazx7jd6bq6kxfh"; name = "robots-txt-mode"; }; @@ -23240,7 +23492,7 @@ sha256 = "0rgv4y9aa5cc2ddz3y5z8d22xmr8kf5c60h0r3g8h91jmcw3rb4z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/roguel-ike"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/roguel-ike"; sha256 = "1a7sa6nhgi0s4gjh55bhk5cg6q6s7564fk008ibmrm05gfq9wlg8"; name = "roguel-ike"; }; @@ -23261,7 +23513,7 @@ sha256 = "133ficdghshlmwq5dn42cg3h51jdg4lcwqr4cd2s2s52rz8plw9h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rope-read-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/rope-read-mode"; sha256 = "0grnn5k6rbck0hz4c6cadgj3a4dv62habyingznisg2kx9i3m0dw"; name = "rope-read-mode"; }; @@ -23282,7 +23534,7 @@ sha256 = "0mfkq8n28lal4lqwp6v0ilz8wrwgg61sbm0jggznwisjqqy3lzrh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rsense"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/rsense"; sha256 = "1901xqlpc8fg4sl9j58jn40i2djs8s0cdcqcrzrq02lvk8ssfdf5"; name = "rsense"; }; @@ -23303,7 +23555,7 @@ sha256 = "0hrn5n7aaymwimk511kjij44vqaxbmhly1gwmlmsrnbvvma7f2mp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rspec-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/rspec-mode"; sha256 = "0nyib9rx9w9cbsgkcjx9n8fp77xkzxg923z0rdm3f9kc7njcn0zx"; name = "rspec-mode"; }; @@ -23324,7 +23576,7 @@ sha256 = "0k36rcmw6dw02605nvjp3fq6gfvwf4nyv7b309jc97sx7vj2mb9s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rtags"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/rtags"; sha256 = "08clwydx2b9cl4wv61b0p564jpvq7gzkrlcdkchpi4yz6djbp0lw"; name = "rtags"; }; @@ -23345,7 +23597,7 @@ sha256 = "10djjp1520xc05qkciaiaiiciscaln6c74h7ymba40mvzlf67y9q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rubocop"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/rubocop"; sha256 = "114azl0fasmnq0fxxyiif3363mpg8qz3ynx91in5acqzh902fa3q"; name = "rubocop"; }; @@ -23366,7 +23618,7 @@ sha256 = "1wqhqv2fc5h10igv1php51bayx0s7qw4m9gzx9by80dab8lwa0vk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ruby-compilation"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ruby-compilation"; sha256 = "1x1vpkjpx95sfcjhkx4cafypj0nkbd1i0mzxx3lmcrsmg8iv0rjc"; name = "ruby-compilation"; }; @@ -23387,7 +23639,7 @@ sha256 = "1cpz9vkp57nk682c5xm20g7bfj5g2aq5ahpk4nhgx7pvd3xvr1ds"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ruby-end"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ruby-end"; sha256 = "1cnmdlkhm8xsifbjs6ymvi92gdnxiaghb04h10qg41phj6v7m9mg"; name = "ruby-end"; }; @@ -23408,7 +23660,7 @@ sha256 = "01n9j7sag49m4bdl6065jklnxnc5kck51izg884s1is459qgy86k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ruby-hash-syntax"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ruby-hash-syntax"; sha256 = "0bvwyagfh7mn457iibrpv1ay75089gp8pg608gbm24m0ix82xvb5"; name = "ruby-hash-syntax"; }; @@ -23429,7 +23681,7 @@ sha256 = "008zj9rg2cmh0xd7g6kgx6snm5sspxs4jmfa8hd43wx5y9pmlb8f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ruby-test-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ruby-test-mode"; sha256 = "113ysf08bfh2ipk55f8h741j05999yrgx57mzh53rim5n63a312w"; name = "ruby-test-mode"; }; @@ -23450,7 +23702,7 @@ sha256 = "1zvhq9l717rjgkm7bxz5gqkmh5i49cshwzlimb3h78kpjw3hxl2k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ruby-tools"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ruby-tools"; sha256 = "0zpk55rkrqyangyyljxzf0n1icgqnpdzycwack5rji556h5grvjy"; name = "ruby-tools"; }; @@ -23471,7 +23723,7 @@ sha256 = "0iblk0vagjcg3c8q9hlpwk7426ms7aq0s80izgvascfmyqycv6qm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/rvm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/rvm"; sha256 = "08i7cmav2cz73jp88ww0ay2yjhk9dj8146836q4sij1bl1slbaf8"; name = "rvm"; }; @@ -23492,7 +23744,7 @@ sha256 = "08vf62fcrnbmf2ppb759kzznjdz8x72fqdwbc4n8nbswrwgm2ikl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/s"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/s"; sha256 = "0b2lj6nj08pk5fnxvjkc1d9hvi29rnjjy4n5ns4pq6wxpfnlcw64"; name = "s"; }; @@ -23513,7 +23765,7 @@ sha256 = "06gqqbkn85l2p05whmr4wkg9axqyzb7r7sgm3r8wfshm99kgpxvl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sackspace"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/sackspace"; sha256 = "1m10iw83k6m7v7sg2dxzdy83zxq6svk8h9fh4ankyn3baqrdxg5z"; name = "sackspace"; }; @@ -23534,7 +23786,7 @@ sha256 = "184471s05fcfpsva56yzaq93hm3yqfl8y7rm4wj51azr5p2lk888"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sage-shell-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/sage-shell-mode"; sha256 = "18k7yh8rczng0kn2wsawjml70cb5bnc5jr2gj0hini5f7jq449wx"; name = "sage-shell-mode"; }; @@ -23555,7 +23807,7 @@ sha256 = "0lxrq3mzabkwj5bv0mgd7fnx3dsx8vxd5kjgb79rjfra0m7pfgln"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sass-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/sass-mode"; sha256 = "1byjk5zpzjlyiwkp780c4kh7s9l56y686sxji89wc59d19rp8800"; name = "sass-mode"; }; @@ -23576,7 +23828,7 @@ sha256 = "1mcag7qad1npjn096byakb8pmmi2g64nlf2vcc12irzmwia85fml"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sauron"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/sauron"; sha256 = "01fk1xfh7r16fb1xg5ibbs7gci9dja49msdlf7964hiq7pnnhxgb"; name = "sauron"; }; @@ -23597,7 +23849,7 @@ sha256 = "0y846zmcz5x2jn5bndm0mfi18jc5cd1fkidgc4wvqmm0w30gyx4q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sbt-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/sbt-mode"; sha256 = "0v0n70czgkdijnw5jd4na41vlrmqcshvr8gdpv0bv55ilqhiihc8"; name = "sbt-mode"; }; @@ -23614,12 +23866,12 @@ src = fetchFromGitHub { owner = "ensime"; repo = "emacs-scala-mode"; - rev = "34888c094990bc669347f106dbd516f487e55ae3"; - sha256 = "1gfhk595vnf6565nv6m1v8dc4a3a9z34jj1qdh02lk8azg5ylk89"; + rev = "84850e7e75abb7ffe7838f199a5a07a8cd1025d7"; + sha256 = "07928cll5n3s7xx75nfbil73zilrhdfh19hp4s75c7hh8sdwmig6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/scala-mode2"; - sha256 = "0rnkln6jwwqc968w3qpc6zjjv8ylw0w6c2hsjpq2slja3jn5khch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/scala-mode2"; + sha256 = "169h6x51s4xzxamyhsqnd3h960gjfgdigc2pp1220dlpcp9hlzg1"; name = "scala-mode2"; }; packageRequires = []; @@ -23639,7 +23891,7 @@ sha256 = "0hhsgyil8aqdkkip5325yrdq89gnijglcbf1dsvl4wvnmq7a1rik"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/scala-outline-popup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/scala-outline-popup"; sha256 = "1fq0k6l57wkya1ycm4cc190kg90j2k9clnl0sc70achp4i47qbk7"; name = "scala-outline-popup"; }; @@ -23660,7 +23912,7 @@ sha256 = "13s8hp16wxd9fb8gf05dn0xr692kkgiqg7v49fgr00gas4xgpfpm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/scpaste"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/scpaste"; sha256 = "02dqmx6v3jxdn5yz1z74624sc6sz2bm4qjyi78w9akhp2jplwlk1"; name = "scpaste"; }; @@ -23681,7 +23933,7 @@ sha256 = "0zpjf9cp8g4rgnwgmhlpwnanf9lzqm3rm1mkihf0gk5qzxvwsdh9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/scss-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/scss-mode"; sha256 = "1g27xnp6bjaicxjlb9m0njc6fg962j3hlvvzmxvmyk7gsdgcgpkv"; name = "scss-mode"; }; @@ -23702,7 +23954,7 @@ sha256 = "08yc67a4ji7z8s0zh500wiscziqsxi92i1d33fjla2mcr8sxxn0i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/search-web"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/search-web"; sha256 = "0qqx9l8dn1as4gqpq80jfacn6lz0132m91pjzxv0fx6al2iz0m36"; name = "search-web"; }; @@ -23723,7 +23975,7 @@ sha256 = "0nsm7z056rh32sq7abgdwyaz4dbz8v9pgbha5jvpk7y0zmnabrgs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sekka"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/sekka"; sha256 = "1jj4ly9p7m3xvb31nfn171lbpm9y70y8cbf8p24w0fhv665dx0cp"; name = "sekka"; }; @@ -23744,7 +23996,7 @@ sha256 = "1c9yv1kjcd0jrzgw99q9p4kzj980f261mjcsggbcw806wb0iw1xn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/select-themes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/select-themes"; sha256 = "18ydv7240vcqppg1i7n8sy18hy0lhpxz17947kxs7mvj4rl4wd84"; name = "select-themes"; }; @@ -23765,7 +24017,7 @@ sha256 = "18xdkisxvdizsk51pnyimp9mwc6k9cpcxqr5hgndkz9q97p5dp79"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/selectric-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/selectric-mode"; sha256 = "1k4l0lr68rqyi37wvqp1cnfci6jfkz0gvrd1hwbgx04cjgmz56n4"; name = "selectric-mode"; }; @@ -23786,7 +24038,7 @@ sha256 = "15lx6qvmq3vp84ys8dzbx1nzxcnzlq41whawc2yhrnd1dbq4mv2d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/servant"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/servant"; sha256 = "0h8xsg37cvc5r8vkclf7d3gbf6gh4k5pmbiyhwpkbrxwjyl1sl21"; name = "servant"; }; @@ -23807,7 +24059,7 @@ sha256 = "1h58q41wixjlapia1ggf83jxcllq7492k55mc0fq7hbx3hw1q1y2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/serverspec"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/serverspec"; sha256 = "001d57yd0wmz4d7qmhnanac8g29wls0sqw194003hrgirakg82id"; name = "serverspec"; }; @@ -23828,7 +24080,7 @@ sha256 = "0sp952abz7dkq8b8kkzzmnwnkq5w15zsx5dr3h8lzxb92lnank9v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/session"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/session"; sha256 = "0fghxbnf1d5iyrx1q8xd0lbw9nvkdgg2v2f89j6apnawisrsbhwx"; name = "session"; }; @@ -23849,7 +24101,7 @@ sha256 = "11h5z2gmwq07c4gqzj2c9apksvqk3k8kpbb9kg78bbif2xfajr3m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sexp-move"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/sexp-move"; sha256 = "0lcxmr2xqh8z7xinxbv1wyrh786zlahhhj5nnbv83i8m23i3ymmd"; name = "sexp-move"; }; @@ -23870,7 +24122,7 @@ sha256 = "0yy162sz7vwj0i9w687a5x1c2fq31vc3i6gqhbywspviczdp4q1y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/shackle"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/shackle"; sha256 = "159z0cwg7afrmym0xk902d8z093sqv39jig25ds7z4a224yrv5w6"; name = "shackle"; }; @@ -23891,7 +24143,7 @@ sha256 = "0vkxl3w4y4yacs1s4v0gwggvzrss8g74d3dgk8h3gphl4dlgx496"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/shakespeare-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/shakespeare-mode"; sha256 = "1i9fr9l3x7pwph654hqd8s74swy5gmn3wzs85a2ibmpcjq8mz9rd"; name = "shakespeare-mode"; }; @@ -23912,7 +24164,7 @@ sha256 = "11g9lsgakq8nf689k49p9l536ffi62g3bh11mh9ix1l058xamqw2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/shampoo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/shampoo"; sha256 = "01ssgw4cnnx8d86g3r1d5hqcib4qyhmpqvcvx47xs7zh0jscps61"; name = "shampoo"; }; @@ -23933,7 +24185,7 @@ sha256 = "0fzywfdaisvvdbcl813n1shz0r8v1k9kcgxgynv5l0i4nkrgkww5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/shell-pop"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/shell-pop"; sha256 = "02s17ln0hbi9gy3di8fksp3mqc7d8ahhf5vwyz4vrc1bg77glxw8"; name = "shell-pop"; }; @@ -23954,7 +24206,7 @@ sha256 = "0mcxp74sk9bn36gbhhimgns07iqa4dgbq2pvpqy41igqwb84w306"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/shell-split-string"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/shell-split-string"; sha256 = "1yj1h7za4ylxh2nikj7s1qqlilpsk05x9571a2fymfyznm3iq77m"; name = "shell-split-string"; }; @@ -23975,7 +24227,7 @@ sha256 = "0ia7sdip4hl27avckv3qpqgm3k4ynvp3xxq1cy53bqfzzx0gcria"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/shell-switcher"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/shell-switcher"; sha256 = "07g9naiv2jk9jxwjywrbb05dy0pbfdx6g8pkra38rn3vqrjzvhyx"; name = "shell-switcher"; }; @@ -23996,7 +24248,7 @@ sha256 = "0wvaa5nrbblayjvzjyj6cd942ywg7xz5d8fqaffxcvwlcdihvm7q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/shell-toggle"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/shell-toggle"; sha256 = "1ai0ks7smr8b221j9hmsikswpxqraa9b13fpwv4wwagavnlah446"; name = "shell-toggle"; }; @@ -24017,7 +24269,7 @@ sha256 = "1nli26llyfkj1cz2dwn18c5pz1pnpz3866hapfibvdmwrg4z6cax"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/shelldoc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/shelldoc"; sha256 = "1xlp03aaidp7dp8349v8drzhl4lcngvxgdrwwn9cahfqlrvvbbbx"; name = "shelldoc"; }; @@ -24038,7 +24290,7 @@ sha256 = "0mn7bwvj1yv75a2531jp929j6ypckdfqdg6b5ig0kkbcrrwb7kxs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/shelltest-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/shelltest-mode"; sha256 = "1inb0vq34fbwkr0jg4dv2lljag8djggi8kyssrzhfawri50m81nh"; name = "shelltest-mode"; }; @@ -24059,7 +24311,7 @@ sha256 = "0zlwmzsxkv4mkggylxfx2fkrwgz7dz3zbg2gkn2rxcpy2k2gla64"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/shift-number"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/shift-number"; sha256 = "1sbzkmd336d0dcdpk29pzk2b5bhlahrn083x62l6m150n2xzxn4p"; name = "shift-number"; }; @@ -24080,7 +24332,7 @@ sha256 = "1vf766ja8f4xp1f5pmwgz6a85km0nxvc5dn571lwidfrrdbr9rkk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/shm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/shm"; sha256 = "1qmp8cc83dcz25xbyqd4987i0d8ywvh16wq2wfs4km3ia8a2vi3c"; name = "shm"; }; @@ -24101,7 +24353,7 @@ sha256 = "09454mcjd8n1090pjc5mk1dc6bn3bgh60ddpnv9hkajkzpcjxx4h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/shpec-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/shpec-mode"; sha256 = "155hc1nym3fsvflps8d3ixaqw1cafqp97zcaywdppp47n7vj8zjl"; name = "shpec-mode"; }; @@ -24122,7 +24374,7 @@ sha256 = "050gmxdk88zlfjwi07jsj2mvsfcv5imhzcpa6ip3cqkzpmw3pl32"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/shrink-whitespace"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/shrink-whitespace"; sha256 = "12if0000i3rrxcm732layrv2h464wbb4xflbbfc844c83dbx1jmq"; name = "shrink-whitespace"; }; @@ -24143,7 +24395,7 @@ sha256 = "103yvfgkj78i4bnv1fwk76izsa8h4wyj3vwj1vq7xggj607hkxzq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/shut-up"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/shut-up"; sha256 = "1bcqrnnafnimfcg1s7vrgq4cb4rxi5sgpd92jj7xywvkalr3kh26"; name = "shut-up"; }; @@ -24164,7 +24416,7 @@ sha256 = "1ma6djvhvjai07v1g9a36lfa3nw8zsy6x5vliwcdnkf44gs287ra"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sift"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/sift"; sha256 = "0mv5zk140kjilwvzccj75ym7wlkkqryb532mbsy7i9bs3q7m916d"; name = "sift"; }; @@ -24185,7 +24437,7 @@ sha256 = "1qmkc0w28l53zzf5yd2grrk1sq222g5qnsm35ph25s1cfvc1qb2g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/simple-httpd"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/simple-httpd"; sha256 = "1g9m8dx62pql6dqz490pifcli96i5pv6sar18w4lwrfgpfisfz8c"; name = "simple-httpd"; }; @@ -24206,7 +24458,7 @@ sha256 = "0v0vmkix9f0hb2183irr6xra8mwi47g6rn843sas7jy2ycaqd91v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/simpleclip"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/simpleclip"; sha256 = "07qkfwlg8vw5kb097qbsv082hxir047q2bcvc8scbak2dr6pl12s"; name = "simpleclip"; }; @@ -24227,7 +24479,7 @@ sha256 = "04giklbd1fsw2zysr7aqg17h6cpyn4i9jbknm4d4v6581f2pcl93"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/simplenote2"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/simplenote2"; sha256 = "1qdzbwhzmsga65wmrd0mb3rbs71nlyqqb6f4v7kvfxzyis50cswm"; name = "simplenote2"; }; @@ -24248,7 +24500,7 @@ sha256 = "1p1771qm3jndnf4rdhb1bri5cjiksvxizagi7vfb7mjmsmx18w61"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/simplezen"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/simplezen"; sha256 = "13f2anhfsxmx1vdd209gxkhpywsi3nn6pazhc6bkswmn27yiig7j"; name = "simplezen"; }; @@ -24269,7 +24521,7 @@ sha256 = "101xn4glqi7b5vhdqqahj2ib4pm30pzq8sad7zagxw9csihcri3q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/skeletor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/skeletor"; sha256 = "1vfvg5l12dzksr24dxwc6ngawsqzpxjs97drw48qav9dy1vyl10v"; name = "skeletor"; }; @@ -24290,7 +24542,7 @@ sha256 = "0g5sapd76pjnfhxlw149zj0fpn6l3pz3l8qlcn2c237vm8vn6qv3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/skewer-less"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/skewer-less"; sha256 = "0fhv5cnp5bgw3krfmb0jl18kw2hzx2p81falj57lg3p8rn23dryl"; name = "skewer-less"; }; @@ -24311,7 +24563,7 @@ sha256 = "05jndz0c26q60s416vqgvr66axdmxb7qsr2g70fvl5iqavnayhpv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/skewer-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/skewer-mode"; sha256 = "1zp4myi9f7pw6zkgc0xg12585iihn7khcsf20pvqyc0vn4ajdwqm"; name = "skewer-mode"; }; @@ -24332,7 +24584,7 @@ sha256 = "09ccdgg2wgw3xmlkpjsaqmnmf7f8rhjy4g6ypsn1sk5rgbgk8aj8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/slamhound"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/slamhound"; sha256 = "14zlcw0zw86awd6g98l4h2whav9amz4m8ik877d1wsdjf69g7k9x"; name = "slamhound"; }; @@ -24353,7 +24605,7 @@ sha256 = "0rk12am1dq52khwkwrmg70zarhni2avj4sy44jqckb4x7sv7djfk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/slideview"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/slideview"; sha256 = "0zr08yrnrz49zds1651ysmgjqgbnhfdcqbg90sbsb086iw89rxl1"; name = "slideview"; }; @@ -24374,7 +24626,7 @@ sha256 = "1cl8amk1kc7a953l1khjms04j40mfkpnbsjz3qa123msgachrsg7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/slim-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/slim-mode"; sha256 = "1hip0r22irr9sah3b65ky71ic508bhqvj9hj95a81qvy1zi9rcac"; name = "slim-mode"; }; @@ -24395,7 +24647,7 @@ sha256 = "07gfd8k0gbzylr9y8asp35p9139w79c36pbnixp4y2fimgbfri2c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/slime"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/slime"; sha256 = "04zcvjg0bbx5mdbsk9yn7rlprakl89dq6jmnq5v2g0n6q0mh6ign"; name = "slime"; }; @@ -24416,7 +24668,7 @@ sha256 = "0rdhd6kymbzhkc96dxy3nr21ajrkc7iy6zvq1va22r90f96jj9x4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/slime-company"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/slime-company"; sha256 = "195s5fi2dl3h2jyy4d45q22jac35sciz81n13b4lgw94mkxx4rq2"; name = "slime-company"; }; @@ -24429,16 +24681,16 @@ slime-docker = callPackage ({ cl-lib ? null, docker-tramp, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, slime }: melpaBuild { pname = "slime-docker"; - version = "0.4"; + version = "0.6"; src = fetchFromGitHub { owner = "daewok"; repo = "slime-docker"; - rev = "61bed969887c8556299ee643d1bab567ef36d926"; - sha256 = "0jrsilyvzdi3xdmkm6gsniw4zdg9zsxb4i6k3fm5byxvhpbwd3k4"; + rev = "114992086054abb298af7c6e24f2ef19794e2de4"; + sha256 = "0swd9rbsag8k18njp741ljg6lmlz949i4bbz5w7bl0spcpc26fs9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/slime-docker"; - sha256 = "18v62y4f613d7mpqpb8sc8hzvyhcgzrbqrc0k7w9pqf00jnl192h"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/slime-docker"; + sha256 = "13zkkrpww51ndsblpyz2msiwrjnaz6yrk61jbzrwp0r7a2v0djsa"; name = "slime-docker"; }; packageRequires = [ cl-lib docker-tramp emacs slime ]; @@ -24458,7 +24710,7 @@ sha256 = "0lp584k35asqlvbhglv124jazdgp3h7pzl0akfwbdmby9zayqk96"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/slime-ritz"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/slime-ritz"; sha256 = "1y1439y07l1a0sp9wn110hw4yyxj8n1cnd6h17rmsr549m2qbg1a"; name = "slime-ritz"; }; @@ -24479,7 +24731,7 @@ sha256 = "00v4mh04affd8kkw4rn51djpyga2rb8f63mgy86napglqnkz40r3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/slime-volleyball"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/slime-volleyball"; sha256 = "1dzvj8z3l5l9ixjl3nc3c7zzi23zc2300r7jzw2l3bvg64cfbdg7"; name = "slime-volleyball"; }; @@ -24500,7 +24752,7 @@ sha256 = "1aihr5pbdqjb5j6xsghi7qbrmp46kddv76xmyx5z98m93n70wzqf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sly"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/sly"; sha256 = "1pmyqjk8fdlzwvrlx8h6fq0savksfny78fhmr8r7b07pi20y6n9l"; name = "sly"; }; @@ -24521,7 +24773,7 @@ sha256 = "11p89pz6zmnjng5177w31ilcmifvnhv9mfjy79ic7amg01h09hsr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sly-company"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/sly-company"; sha256 = "1n8bx0qis2bs49c589cbh59xcv06r8sx6y4lxprc9pfpycx7h6v2"; name = "sly-company"; }; @@ -24542,7 +24794,7 @@ sha256 = "0yvlmwnhdph5qj1998jz0idcl7901j6fxa9hivr7kic57j8kbq71"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/smart-mode-line"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/smart-mode-line"; sha256 = "0qmhzlkc6mfqyaw4jaw6195b8sw0wg9pfjcijb4p0mlywf5mh5q6"; name = "smart-mode-line"; }; @@ -24563,7 +24815,7 @@ sha256 = "0yvlmwnhdph5qj1998jz0idcl7901j6fxa9hivr7kic57j8kbq71"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/smart-mode-line-powerline-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/smart-mode-line-powerline-theme"; sha256 = "0hv3mx39m3l35xhz351zp98321ilr6qq9wzwn1f0ziiv814khcn4"; name = "smart-mode-line-powerline-theme"; }; @@ -24584,7 +24836,7 @@ sha256 = "1kfihh4s8578cwqyzn5kp3iib7f9vvg6rfc3klqzgads187ryd4z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/smart-tabs-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/smart-tabs-mode"; sha256 = "1fmbi0ypzhsizzb1vm92hfaq23swiyiqvg0pmibavzqyc9lczhhl"; name = "smart-tabs-mode"; }; @@ -24605,7 +24857,7 @@ sha256 = "1mx4hdbrk6v52y5r47fbd6kgqyk3lvqgq8lw3hkww0pqfwwp4x6h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/smartparens"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/smartparens"; sha256 = "025nfrfw0992024i219jzm4phwf29smc5hib45s6h1s67942mqh6"; name = "smartparens"; }; @@ -24626,7 +24878,7 @@ sha256 = "0j5lg9gryl8vbzw8d3r2fl0c9wxa0c193mcvdfidd25b98wccc3f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/smartrep"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/smartrep"; sha256 = "1ypls52d51lcqhz737rqg73c6jwl6q8b3bwb29z51swyamf37rbn"; name = "smartrep"; }; @@ -24647,7 +24899,7 @@ sha256 = "1sd7dh9114mvr4xnp43xx4b7qmwkaj1a1fv7pwc28fhiy89d2md4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/smartscan"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/smartscan"; sha256 = "0vghgmx8vnjbvsw7q5zs0qz2wm6dcng9m69b8dq81g2cq9dflbwb"; name = "smartscan"; }; @@ -24668,7 +24920,7 @@ sha256 = "1pcpg3lalbrc24z3vwcaysps8dbdzmncdgqdd5ig6yk2a9wyj9ng"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/smeargle"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/smeargle"; sha256 = "1dy87ah1w21csvrkq5icnx7g7g7nxqkcyggxyazqwwxvh2silibd"; name = "smeargle"; }; @@ -24689,7 +24941,7 @@ sha256 = "1hcjh577xz3inx28r8wb4g2b1424ccw8pffvgdmpf80xp1llldj5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/smex"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/smex"; sha256 = "1rwyi7gdzswafkwpfqd6zkxka1mrf4xz17kld95d2ram6cxl6zda"; name = "smex"; }; @@ -24710,7 +24962,7 @@ sha256 = "1kkg7qhb2lmwr4siiazqny9w2z9nk799lzl5i159lfivlxcgixmk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/smooth-scroll"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/smooth-scroll"; sha256 = "1b0mjpd4dqgk7ij37145ry2jqbn1msf8rrvymn7zyckbccg83zsf"; name = "smooth-scroll"; }; @@ -24731,7 +24983,7 @@ sha256 = "1dkqix0iyjyiqf34h3p8faqcpffc0pwkxqqn80ys9jvj4f27kkrg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/smooth-scrolling"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/smooth-scrolling"; sha256 = "0zy2xsmr05l2narslfgril36d7qfb55f52qm2ki6fy1r18lfiyc6"; name = "smooth-scrolling"; }; @@ -24752,7 +25004,7 @@ sha256 = "174gbq9ydgq6vjxplnwqn4kil9yzxh9spdp6dhgr81b32ifvd5hi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/snakemake-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/snakemake-mode"; sha256 = "1xxd3dms5vgvpn18a70wjprka5xvri2pj9cw8qz09s640f5jf3r4"; name = "snakemake-mode"; }; @@ -24773,7 +25025,7 @@ sha256 = "0zcj9jf8nlsj9vms888z2vs76q54n8g8r9sh381xad3x8d6lrlb3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/solarized-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/solarized-theme"; sha256 = "15d8k32sj8i11806byvf7r57rivz391ljr0zb4dx8n8vjjkyja12"; name = "solarized-theme"; }; @@ -24794,7 +25046,7 @@ sha256 = "0b5w3vdr8llg3hqd22gnc6b6y089lq6vfk0ajkws6gfldz2gg2v1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sos"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/sos"; sha256 = "1gkd0plx7152s3dj8a9lwlwh8bgs1m006s80l10agclx6aay8rvb"; name = "sos"; }; @@ -24815,7 +25067,7 @@ sha256 = "13yn2yadkpmykaly3l3xsq1bhm4sxyk8k1px555y11qi0mfdcjhh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sotclojure"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/sotclojure"; sha256 = "12byqjzg0pffqyq958265qq8yxxmf3iyy4m7zib492qcj8ccy090"; name = "sotclojure"; }; @@ -24836,7 +25088,7 @@ sha256 = "0xykm4yayb8gw83arv5p205cx18j14q9407rqw3sbcj9cj5nbk34"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sotlisp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/sotlisp"; sha256 = "0zjnn6hhwy6cjvc5rhvhxcq5pmrhcyil14a48fcgwvg4lv7fbljk"; name = "sotlisp"; }; @@ -24857,7 +25109,7 @@ sha256 = "0q2ragq4hw89d3w48ykwljb19n2nhz8z6bsmb10shimaf203652g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sound-wav"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/sound-wav"; sha256 = "1vrwzk6zqma7r0w5ivbx16shys6hsifj52fwlf5rxs6jg1gqdb4f"; name = "sound-wav"; }; @@ -24870,15 +25122,15 @@ sourcekit = callPackage ({ dash, dash-functional, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "sourcekit"; - version = "0.1.5"; + version = "0.1.6"; src = fetchFromGitHub { owner = "nathankot"; repo = "company-sourcekit"; - rev = "c9694cd8e84f4c7deffa6111297cb80eb7cb02a6"; - sha256 = "04nm015408gzybfka0sc3czkf5y61x76h3sx3vlijf67i54bz7pi"; + rev = "16af24f22fbee170e444547e92e0023cf4311a7b"; + sha256 = "1adcgccibk6lvl4l64cvk3i4h2n23xx51gkv5ypf6rh5f6v8b6ai"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sourcekit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/sourcekit"; sha256 = "1lvk3m86awlinivpg89h6zvrwrdqa5ljdp563k3i4h9384w82pks"; name = "sourcekit"; }; @@ -24899,7 +25151,7 @@ sha256 = "1k2gfw4dydzqxbfdmcghajbb2lyg1j4wgdhp8chlql3dax1f503d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sourcemap"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/sourcemap"; sha256 = "0cjg90y6a0l59a9v7d7p12pgmr21gwd7x5msil3h6xkm15f0qcc5"; name = "sourcemap"; }; @@ -24920,7 +25172,7 @@ sha256 = "0j4qm1y7rhb95k1zbl3c60a46l9rchzslzq36mayyw61s6yysjnv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sourcetalk"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/sourcetalk"; sha256 = "0qaf2q784xgl1s3m88jpwdzghpi4f3nybga3lnr1w7sb7b3yvj3z"; name = "sourcetalk"; }; @@ -24941,7 +25193,7 @@ sha256 = "1ncwv6sqm1ch396qi1c8276dc910rnm0f3m8xjkskplv3cjaq0ai"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/spaceline"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/spaceline"; sha256 = "0jpcj0i8ckdylrisx9b4l9kam6kkjzhhv1s7mwwi4b744rx942iw"; name = "spaceline"; }; @@ -24962,7 +25214,7 @@ sha256 = "1gmmmkzxxlpz2ml6qk24vndlrbyl55r5cba76jn342zrxvb357ny"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sparkline"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/sparkline"; sha256 = "081jzaxjb32nydvr1kmyafxqxi610n0yf8lwz9vldm84famf3g7y"; name = "sparkline"; }; @@ -24983,7 +25235,7 @@ sha256 = "1gk2ps7fn9z8n6r923qzn518gz9mrj7mb6j726cz8qb585ndjbij"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sparql-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/sparql-mode"; sha256 = "1xicrfmgxpb31lz30qj450w8v7dl4ipjp7b2wz54s4kn88nsfj7d"; name = "sparql-mode"; }; @@ -25004,7 +25256,7 @@ sha256 = "1k6c7450v0ln6l9b8z1hib2s2b4rmjbskynvwwyilgdnvginfhi3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/speech-tagger"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/speech-tagger"; sha256 = "0sqil949ny9qjxq7kpb4zmjd7770r0qvq4sz80agw6a27mqnaajc"; name = "speech-tagger"; }; @@ -25025,7 +25277,7 @@ sha256 = "1q6v0xfdxm57lyj4zxyqv6n5ik5w9drk7yf9w8spb5r22jg0dg8c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sphinx-doc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/sphinx-doc"; sha256 = "00h3wx2p5hzbw6sggggdrzv4jrn1wc051iqql5y2m1hsh772ic5z"; name = "sphinx-doc"; }; @@ -25046,7 +25298,7 @@ sha256 = "17qsmjsbk8aq3azjxid6h9fzz77bils74scp21sqn8vdnijx8991"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/splitjoin"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/splitjoin"; sha256 = "0l1x98fvvia8qx8g125h4d76slv0xnb3h1zxiq9xb5qh7a1h069l"; name = "splitjoin"; }; @@ -25067,7 +25319,7 @@ sha256 = "05y8xv6zapspwr5bii41lgirslas22wsbm0kgb4dm79qbk9j1kzw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/spotify"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/spotify"; sha256 = "0pmsvxi1dsi580wkhhx8iw329agkh5yzk61bqvxzign3cd6fbq6k"; name = "spotify"; }; @@ -25088,7 +25340,7 @@ sha256 = "06rk07h92s5sljprs41y3q31q64cprx9kgs56c2j6v4c8cmsq5h6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sprintly-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/sprintly-mode"; sha256 = "15i3rrv27ccpn12wwj9raaxpj7nlnrrj3lsp8vdfwph6ydvnfza4"; name = "sprintly-mode"; }; @@ -25109,7 +25361,7 @@ sha256 = "03wjzk1ljclfjgqzkg6m7v8saaajgavyd0xskd8fg8rdkx13ki0l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sprunge"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/sprunge"; sha256 = "199vfl6i881aks8fi9d9w4w7mnc7n443h79p3s4srcpmbyfg6g3w"; name = "sprunge"; }; @@ -25119,6 +25371,27 @@ license = lib.licenses.free; }; }) {}; + sql-impala = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "sql-impala"; + version = "1.0"; + src = fetchFromGitHub { + owner = "jterk"; + repo = "sql-impala"; + rev = "68248e9851b153850542ed1f709298bb9ab59610"; + sha256 = "12zyw8b8s3jga560wv141gc4yvlbldvfcmpibns8wrpx2w8aivfj"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/sql-impala"; + sha256 = "1jr9k48d0q00d1x5lqv0n971mla2ymnqmjfn8pw0s0vxkldq4ibi"; + name = "sql-impala"; + }; + packageRequires = []; + meta = { + homepage = "https://melpa.org/#/sql-impala"; + license = lib.licenses.free; + }; + }) {}; sqlup-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "sqlup-mode"; @@ -25130,7 +25403,7 @@ sha256 = "1dcb18fq84vlfgb038i2x6vy7mhin2q6jn4jl9fh256n12cx4nrn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sqlup-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/sqlup-mode"; sha256 = "0ngs58iri3fwv5ny707kvb6xjq98x19pzak8c9nq4qnpw3nkr83b"; name = "sqlup-mode"; }; @@ -25151,7 +25424,7 @@ sha256 = "0wx8l8gkh8rbf2g149f35gpnmkk45s9x4r844aqw5by4zkvix4rc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/srefactor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/srefactor"; sha256 = "01cd40jm4h00c5q2ix7cskp7klbkcd3n5763y5lqfv59bjxwdqd2"; name = "srefactor"; }; @@ -25172,7 +25445,7 @@ sha256 = "08nx1iwvxqs1anng32w3c2clhnjf45527j0gxz5fy6h9svmb921q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ssh-config-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ssh-config-mode"; sha256 = "0aihyig6q3pmk9ld519f4n3kychrg3l7r29ijd2dpvs0530md4wb"; name = "ssh-config-mode"; }; @@ -25193,7 +25466,7 @@ sha256 = "0igqifws73cayvjnhhrsqpy14sr27avymfhaqzrpj76m2fsh6fj4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/stash"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/stash"; sha256 = "116k40ispv7sq3jskwc1lvmhmk3jjz4j967r732s07f5h11vk1z9"; name = "stash"; }; @@ -25214,7 +25487,7 @@ sha256 = "0jpxmzfvg4k5q3h3gn6lrg891wjzlcps2kkij1jbdjk4jkgq386i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/status"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/status"; sha256 = "0a9lqa7a5nki5711bjrmx214kah5ndqpwh3i240gdd08mcm07ps3"; name = "status"; }; @@ -25235,7 +25508,7 @@ sha256 = "0pik6mq8syhxk9l9ns8wgvg5312qkckm3cilb3irwdm1dvnl5hpf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/stekene-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/stekene-theme"; sha256 = "0v1kwlnrqaygzaz376a5njg9kv4yf5l35k87xga4wdd2mxfwrmf1"; name = "stekene-theme"; }; @@ -25254,7 +25527,7 @@ sha256 = "05jy51g2krmj1c3rq8k7lihml1m4x6j73lkf8z1qwg35kmadzi8j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/stgit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/stgit"; sha256 = "102s9lllrcxsqs0lgbrcljwq1l3s8ri4276wck6rcypck5zgzj89"; name = "stgit"; }; @@ -25275,7 +25548,7 @@ sha256 = "15gdcpbba3h84s7xnpk69nav6bixdixnirdh5n1rly010q0m5s5x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/string-edit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/string-edit"; sha256 = "1l1hqsfyi6pp4x4g1rk4s7x9zjc03wfmhy16izia8nkjhzz88fi8"; name = "string-edit"; }; @@ -25296,7 +25569,7 @@ sha256 = "03azfs6z0jg66ppalijcxl973vdbhj4c3g84sm5dm8xv6rnxrv2s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/string-utils"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/string-utils"; sha256 = "1vsvxc06fd3wardldb83i5hjfibvmiqnxvcgdns7i5i8qlsrsx4v"; name = "string-utils"; }; @@ -25317,7 +25590,7 @@ sha256 = "035ym1c1vzg6hjsnd258z4dkrfc11lj4c0y4gpgybhk54dq3w9dk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/stripe-buffer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/stripe-buffer"; sha256 = "02wkb9y6vykrn6a5nfnimaplj7ig8i8h6m2rvwv08f5ilbccj16a"; name = "stripe-buffer"; }; @@ -25337,7 +25610,7 @@ sha256 = "0a0lwwlly4hlmb30bk6dmi6bsdsy37g4crvv1z24gixippyv1qzm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/stumpwm-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/stumpwm-mode"; sha256 = "0a77mh7h7033adfbwg2fbx84789962par43q31s9msjlqw15gs86"; name = "stumpwm-mode"; }; @@ -25358,7 +25631,7 @@ sha256 = "0krbd1qa2408a97pqhl7fv0x8x1n2l3qq33zzj4w4vv0c55jk43n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/stylus-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/stylus-mode"; sha256 = "152k74q6qn2xa38v2zyd5y7ya5n26nvai5v7z5fmq7jrcndp27r5"; name = "stylus-mode"; }; @@ -25379,7 +25652,7 @@ sha256 = "1j63rzxnrzzqizh7fpd99dcgsy5hd7w4d2lpwl5armmixlycl5m8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/subatomic-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/subatomic-theme"; sha256 = "0mqas67qms492n3hn74c5nrkjpsgf9b42lp02s2dh366c075dpqc"; name = "subatomic-theme"; }; @@ -25400,7 +25673,7 @@ sha256 = "189547d0g9ax0nr221bkdchlfcj60dsy8lgbbrvq3n3xrmlvl362"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/subemacs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/subemacs"; sha256 = "0sqh80jhh3v37l5af7w6k9lqvj39bd91pn6a9rwdlfk389hp90zm"; name = "subemacs"; }; @@ -25421,7 +25694,7 @@ sha256 = "0mx892vn4a32df30iqmf2vsz1gdl3i557fw0194g6a66n9w2q7xf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/subshell-proc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/subshell-proc"; sha256 = "1fnp49yhnhsj7paj0b25vr6r03hr5kpgcrci439ffpbd2c85fkw2"; name = "subshell-proc"; }; @@ -25442,7 +25715,7 @@ sha256 = "1kmyivsyxr6gb2k36ssyr779rpk8qsrb27q5rjsir9fgc95qhvjb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sudden-death"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/sudden-death"; sha256 = "1wrhb3d27j07i64hvjggyajm752w4mhrhq09lfvyhz6ykp1ly3fh"; name = "sudden-death"; }; @@ -25463,7 +25736,7 @@ sha256 = "1b637p2cyc8a83qv9vba4yamzhk08f62zykqh5p35jwvym8wkann"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/suomalainen-kalenteri"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/suomalainen-kalenteri"; sha256 = "1wzijbgcr3jc47ccr7nrdkqha16s6gw0xiccnmdczi48cvnvvlkh"; name = "suomalainen-kalenteri"; }; @@ -25484,7 +25757,7 @@ sha256 = "0cw3yf2npy2ah00q2whpn52kaybbccw1qvfzsww0x4zshlrwvvvq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/super-save"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/super-save"; sha256 = "0ikfw7n2rvm3xcgnj1si92ly8w75x26071ki551ims7a8sawh52p"; name = "super-save"; }; @@ -25505,7 +25778,7 @@ sha256 = "14h40s0arc2i898r9yysn256z6l8jkrnmqvrdg7p7658c0klz5ic"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/svg-mode-line-themes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/svg-mode-line-themes"; sha256 = "12lnszcb9bl32n9wir7vf8xiyyv7njw4xg21aj9x4dasmidyx506"; name = "svg-mode-line-themes"; }; @@ -25526,7 +25799,7 @@ sha256 = "1h56qkbx5abz1l94wrdpbzspiz24mfgkppzfalvbvx5qwl079cvs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sweetgreen"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/sweetgreen"; sha256 = "1v75wk0gq5fkz8i1r8pl4gqnxbv1d80isyn48w2hxj2fmdn2xhpy"; name = "sweetgreen"; }; @@ -25547,7 +25820,7 @@ sha256 = "07xrcg33vsw19kz692hm7blzvnf7b6isllsz79fvs8q3l5c9mfjx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/swift-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/swift-mode"; sha256 = "1imr53f8agfza9zxs1h1mwyhg7yaywqqffd1lsvm1m84nvxvri2d"; name = "swift-mode"; }; @@ -25568,7 +25841,7 @@ sha256 = "19vfj01x7b8f7wyx7m51z00la2r7jcwzv0n06srkvcls0wm5s1h3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/swiper"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/swiper"; sha256 = "0qaia5pgsjsmrfmcdj72jmj39zq82wg4i5l2mb2z6jlf1jpbk6y9"; name = "swiper"; }; @@ -25589,7 +25862,7 @@ sha256 = "1y2dbd3ikdpjvi8xz10jkrx2773h7cgr6jxm5b2bldm81lvi8x64"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/swiper-helm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/swiper-helm"; sha256 = "011ln6vny7z5vw67cpzldxf5n6sk2hjdkllyf7v6sf4m62ws93ph"; name = "swiper-helm"; }; @@ -25610,7 +25883,7 @@ sha256 = "1zpfilcaycj0l2q3zyvpjbwp5j3d9rrkacd5swzlr1n1klvbji48"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/switch-window"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/switch-window"; sha256 = "02f0zjvlzms66w1ryhk1cbr4rqwklzvgcjfiicj0lcnqqx61m2k2"; name = "switch-window"; }; @@ -25631,7 +25904,7 @@ sha256 = "0krbd1qa2408a97pqhl7fv0x8x1n2l3qq33zzj4w4vv0c55jk43n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sws-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/sws-mode"; sha256 = "0b12dsad0piih1qygjj0n7rni0pl8cizbzwqm9h1dr8imy53ak4i"; name = "sws-mode"; }; @@ -25652,7 +25925,7 @@ sha256 = "02f63k8rzb3bcch6vj6w5c5ncccqg83siqnc8hyi0lhy1bfx240p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/sx"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/sx"; sha256 = "1ml1rkhhk3hkd16ij2zwng591rxs2yppsfq9gwd4ppk02if4v517"; name = "sx"; }; @@ -25662,6 +25935,27 @@ license = lib.licenses.free; }; }) {}; + syndicate = callPackage ({ evil, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "syndicate"; + version = "1.0"; + src = fetchFromGitHub { + owner = "KNX32542"; + repo = "syndicate"; + rev = "b839aaba0c8583a3254476b53976e3caac4f89a9"; + sha256 = "01bymbsvbisnpb2wpqxhrvqx6cj57nh4xvpsbsr5rr1h4pm5jkzl"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/syndicate"; + sha256 = "06nmldcw5dy2shhpk6nyix7gs57gsr5s9ksj57xgg8y2j3j0da95"; + name = "syndicate"; + }; + packageRequires = [ evil ]; + meta = { + homepage = "https://melpa.org/#/syndicate"; + license = lib.licenses.free; + }; + }) {}; synosaurus = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "synosaurus"; @@ -25673,7 +25967,7 @@ sha256 = "0hi2jflrlpp7xkbj852vp9hcl8bfmf04jqw1hawxrw4bxdp95jh2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/synosaurus"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/synosaurus"; sha256 = "06a48ajpickf4qr1bc14skfr8khnjjph7c35b7ajfy8jw2zwavpn"; name = "synosaurus"; }; @@ -25694,7 +25988,7 @@ sha256 = "1pn69f4w48jdj3wd1myj6qq2mhvygmlzbq2dws2qkjlp3kbwa6da"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/syntactic-sugar"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/syntactic-sugar"; sha256 = "12b2vpvz5h4wzxrk8jrbgc8v0w6bzzvxcyfs083fi1791qq1rw7r"; name = "syntactic-sugar"; }; @@ -25714,7 +26008,7 @@ sha256 = "15zvh6dk02rm16zs6c9zvw1w76ycn61g3cpx6jb3456ff9zn6m9m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/syntax-subword"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/syntax-subword"; sha256 = "1as89ffqz2h69fdwybgs5wibnrvskm7hd58vagfjkla9pjlpffpm"; name = "syntax-subword"; }; @@ -25735,7 +26029,7 @@ sha256 = "1hixilnnybv2v3p1wpn7a0ybwah17grawszs3jycsjgzahpgckv7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/system-specific-settings"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/system-specific-settings"; sha256 = "1ydmxi8aw2lf78wv4m39yswbqkmcadqg0wmzg9s8b5h9bxxwvppp"; name = "system-specific-settings"; }; @@ -25756,8 +26050,8 @@ sha256 = "0axskr4q0kw8pmnl1pv2z3n6x3pn6v28qcgz3qf745lqgmsgbng9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/systemd"; - sha256 = "1biais0cmidy3d0hf2ifdlr6qv1z8k8c8bczi07bsfk4md3idbir"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/systemd"; + sha256 = "1ykvm8mfi3fjvrkfcy9qn0sr9mhwm9x1svrmrd0gyqk418clk5i3"; name = "systemd"; }; packageRequires = [ emacs ]; @@ -25777,7 +26071,7 @@ sha256 = "09nndx83ws5v2i9x0dzk6l1a0lq29ffzh3y05n0n64nf5j0a7zvk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ta"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ta"; sha256 = "0kn2k4n0xfwsrniaqb36v3rxj2pf2sai3bmjksbn1g2kf5g156ll"; name = "ta"; }; @@ -25798,7 +26092,7 @@ sha256 = "1xd67s92gyr49v73j7r7cbhsc40bkw8aqh21whgbypdgzpyc7azc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tabbar-ruler"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/tabbar-ruler"; sha256 = "10dwjj6r74g9rzdd650wa1wxhqc0q6dmff4j0qbbhmjsxvsr3y0d"; name = "tabbar-ruler"; }; @@ -25819,7 +26113,7 @@ sha256 = "0gy9hxm7bca0l1hfy2pzn86avpifrz3bs8xzpicj4kxw5wi4ygns"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tablist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/tablist"; sha256 = "0c10g86xjhzpmc2sqjmzcmi393qskyw6d9bydqzjk3ffjzklm45p"; name = "tablist"; }; @@ -25840,7 +26134,7 @@ sha256 = "0kq40g46s8kgiafrhdq99h79rz9h5fvgz59k7ralmf86bl4sdmdb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tagedit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/tagedit"; sha256 = "0vfkbrxmrw4fwdz324s734zxdxm2nj3df6i8m6lgb9pizqyp2g6z"; name = "tagedit"; }; @@ -25850,6 +26144,27 @@ license = lib.licenses.free; }; }) {}; + tawny-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "tawny-mode"; + version = "1.5.0"; + src = fetchFromGitHub { + owner = "phillord"; + repo = "tawny-owl"; + rev = "5666b34900a39c6da73d9a1efe11bddf94136a04"; + sha256 = "0amsz28n0syqqkxlmzsndm0ayvzc9kgzk8brs9ihskv0j5b3pdcq"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/tawny-mode"; + sha256 = "1xaw1six1n6rw1283fdyl15xcf6m7ngvq6gqlz0xzpf232c4b0kr"; + name = "tawny-mode"; + }; + packageRequires = []; + meta = { + homepage = "https://melpa.org/#/tawny-mode"; + license = lib.licenses.free; + }; + }) {}; telepathy = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "telepathy"; @@ -25861,7 +26176,7 @@ sha256 = "16kr1p4lzi1ysd5r2dh0mxk60zsm5fvwa9345nfyrgdic340yscc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/telepathy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/telepathy"; sha256 = "0c3d6vk7d6vqzjndlym2kk7d2zm0b15ac4142ir03p6f19rqq9pr"; name = "telepathy"; }; @@ -25882,7 +26197,7 @@ sha256 = "0smdlzrcbmip6c6c3rd0871wv5xyagavwsxhhgvki6ybyzdj9a19"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/telephone-line"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/telephone-line"; sha256 = "0dyh9h1yk9y0217b6rxsm7m372n910vpfgw5w23lkkrwa8x8qpx3"; name = "telephone-line"; }; @@ -25903,7 +26218,7 @@ sha256 = "17633jachcgnibmvx433ygcfmz3j6hzli5mqbqg83r27chiq5mjx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ten-hundred-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ten-hundred-mode"; sha256 = "17v38h33ka70ynq72mvma2chvlnm1k2amyvk62c65iv67rwilky3"; name = "ten-hundred-mode"; }; @@ -25924,8 +26239,8 @@ sha256 = "1d1hrnxhi7h5d5i4198hx5lj7fbc280lpkxmk2nb8z6j7z0aki7g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/term-alert"; - sha256 = "0x4rc1y311ivaj6mlks1j8sgzrrwqn8vx171vw7s1kgf1qzk826n"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/term-alert"; + sha256 = "02qvfhklysfk1fd4ibdngf4crp9k5ab11zgg90hi1sp429a53f3m"; name = "term-alert"; }; packageRequires = [ alert term-cmd ]; @@ -25945,8 +26260,8 @@ sha256 = "1idz9c38q47lll55w1znya00hlkwa42029ys70sb14inc51cml51"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/term-cmd"; - sha256 = "0fn4f32zpl0p2lid159q59lzjv4xqmc23a64kcclqp9db8b1m5fy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/term-cmd"; + sha256 = "0pbz9fy9rjfpzspwq78ggf1wcvjslwvj8fvc05w4g56ydza0gqi4"; name = "term-cmd"; }; packageRequires = []; @@ -25966,7 +26281,7 @@ sha256 = "149pl3zxg5kriydk5h6j95jyly6i23w4w4g4a99s4zi6ljiny6c6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/term-run"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/term-run"; sha256 = "1bx3s68rgr9slsw9k01gfg7sxd4z7sarg4pi2ivril7108mhg2cs"; name = "term-run"; }; @@ -25987,7 +26302,7 @@ sha256 = "0gfsqpza8phvma5y3ck0n6p197x1i33w39m3c7jmja4ml121n73d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/termbright-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/termbright-theme"; sha256 = "14q88qdbnyzxr8sr8i5glj674sb4150b9y6nag0dqrxs629is6xj"; name = "termbright-theme"; }; @@ -26008,7 +26323,7 @@ sha256 = "1kaymyihskmdav56xj85j04iq7a8948b1jgjfrv9s7pc965j9795"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tern"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/tern"; sha256 = "1am97ssslkyijpvgk4nldi67ws48g1kpj6gisqzajrrlw5q93wvd"; name = "tern"; }; @@ -26029,7 +26344,7 @@ sha256 = "1kaymyihskmdav56xj85j04iq7a8948b1jgjfrv9s7pc965j9795"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tern-auto-complete"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/tern-auto-complete"; sha256 = "1i99b4awph50ygcqsnppm1h48hbf8cpq1ppd4swakrwgmcy2mn26"; name = "tern-auto-complete"; }; @@ -26050,7 +26365,7 @@ sha256 = "0l63lzm96gg3ihgc4l671i342qxigwdbn4xfkbxnarb0206gnb5p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tern-django"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/tern-django"; sha256 = "1pjaaffadaw8h2n7yv01ks19gw59dmh8bp8vw51hx1082r3yfvv0"; name = "tern-django"; }; @@ -26063,15 +26378,15 @@ terraform-mode = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, hcl-mode, lib, melpaBuild }: melpaBuild { pname = "terraform-mode"; - version = "0.4"; + version = "0.5"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-terraform-mode"; - rev = "6157690efce03ff20b16b85e2be6b0964efec2fb"; - sha256 = "0mz2yl9jaw7chzv9d9hhv7gcvdwwvi676y9wpn7vp85hxpda7xg7"; + rev = "3458515359c1f3c82b40e72317b7dd49c05ea873"; + sha256 = "1k0v56v7mwpb5p228c0g252szpxvpqswrmjfpk75kh32v56wp5xi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/terraform-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/terraform-mode"; sha256 = "1m3s390mn4pba7zk17xfk045dqr4rrpv5gw63jm18fyqipsi6scn"; name = "terraform-mode"; }; @@ -26092,7 +26407,7 @@ sha256 = "108csr1d7w0105rb6brzgbksb9wmq1p573vxbq0miv5k894j447f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/test-case-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/test-case-mode"; sha256 = "1iba97yvbi5vr7gvc58gq2ah6jg2s7apc9ssq7mdzki823n8z2qi"; name = "test-case-mode"; }; @@ -26113,7 +26428,7 @@ sha256 = "02vp4m3aw7rs4gxn91v6j3y8pr04hpydrg05ck3ivv46snkfagdn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/test-kitchen"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/test-kitchen"; sha256 = "1bl3yvj56dq147yplrcwphcxiwvmx5n97y4qpkm9imiv8cnjm1g0"; name = "test-kitchen"; }; @@ -26134,7 +26449,7 @@ sha256 = "08g7fan1y3wi4w7cdij14awadqss6prqg3k7qzf0wrnbm13dzhmk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/test-simple"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/test-simple"; sha256 = "1l6y77fqd0l0mh2my23psi66v5ya6pbr2hgvcbsaqjnpmfm90w3g"; name = "test-simple"; }; @@ -26155,7 +26470,7 @@ sha256 = "1a0fzn66gv421by0x6wj3z6bvzv274a9p8c2aaax0dskncl5lgk1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/textmate"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/textmate"; sha256 = "119w944pwarpqzcr9vys17svy1rkfs9hiln8903q9ff4lnjkpf1v"; name = "textmate"; }; @@ -26176,7 +26491,7 @@ sha256 = "0fjapb7naysf34g4ac5gsa90b2s2ss7qgpyd9mfv3mdqrsp2dyw7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/textmate-to-yas"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/textmate-to-yas"; sha256 = "04agz4a41h0givfdw88qjd3c7pd418qyigsij4la5f37j5rh338l"; name = "textmate-to-yas"; }; @@ -26197,7 +26512,7 @@ sha256 = "09vf3qs949n4iqzd14iq2kgvypwdwdv8ii8l5jcqfppgspd8m8yd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/theme-changer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/theme-changer"; sha256 = "1qbmsghkl5gs728q0gaalc7p8q7nzv3l045jc0jdxxnb7na3gc5w"; name = "theme-changer"; }; @@ -26218,7 +26533,7 @@ sha256 = "1srylw9wwkyq92f9v6ds9zp9z8sl800wbxjbir80g1lwv4hghaii"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/thrift"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/thrift"; sha256 = "0p1hxmm7gvhyigz8aylncgqbhk6cyf75rbcqis7x552g605mhiy9"; name = "thrift"; }; @@ -26239,7 +26554,7 @@ sha256 = "1vq5yp6pyjam2csz22mcp353a4d5r7f9m6bsjizfmgr2ld7bwhx7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/timer-revert"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/timer-revert"; sha256 = "0lvm2irfx9rb5psm1lf53fv2jjx745n1c172xmyqip5xwgmf6msy"; name = "timer-revert"; }; @@ -26260,7 +26575,7 @@ sha256 = "0p7piqbhwxp2idslqnzl5x4y9aqgba9ryxrjy3d0avky5z9kappl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/timesheet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/timesheet"; sha256 = "1gy6bf4wqvp8cw2wjnrr9ijnzwav3p7j46m7qrn6l0517shwl506"; name = "timesheet"; }; @@ -26281,7 +26596,7 @@ sha256 = "16217i8rjhgaa5kv8iq0s14b42v5rs8m2qlr60a0x6qzy65chq39"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tox"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/tox"; sha256 = "1z81x8fs5q6r19hpqphsilk8wdwwnfr8w78x5x298x74s9mcsywl"; name = "tox"; }; @@ -26301,7 +26616,7 @@ sha256 = "1pnsky541m8kzcv81w98jkv0hgajh04hxqlmgddc1y0wbvi849j0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/toxi-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/toxi-theme"; sha256 = "032m3qbxfd0qp81qwayd5g9k7vz55g4yhw0d35qkxzf4qf58x9sd"; name = "toxi-theme"; }; @@ -26322,7 +26637,7 @@ sha256 = "0lg7f71kdq3zzc85xp9p81vdarz6d6l5zy9175c67ps9smdx528i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tracking"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/tracking"; sha256 = "096h5bl7jcwz5hpbm2139bf8a784hijfy40vzf42y1c9794al46z"; name = "tracking"; }; @@ -26343,7 +26658,7 @@ sha256 = "0nsh2rz9w33m79rrr8nrz3g1wcgfrv7dc8q9g3s82ckj5g8gxfpr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/transmission"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/transmission"; sha256 = "0w0hlr4y4xpcrpvclqqqasggkgrwnzrdib51mhkh3f3mqyiw8gs9"; name = "transmission"; }; @@ -26364,7 +26679,7 @@ sha256 = "1jd7xsvs4m55fscp62a9lk59ip4sgifv4kazl55b7543nz1i31bz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/travis"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/travis"; sha256 = "1km496cq1vni9gy2d3z4c9524q62750ywz745rjz4r7178ip9mix"; name = "travis"; }; @@ -26385,7 +26700,7 @@ sha256 = "18na22fhwqz80qinmnpsvp6ghc9irva1scixi6s4q6plmgr4m397"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/truthy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/truthy"; sha256 = "1a56zmqars9fd03bkqzwpvgblq5fvq19n4jw04c4hpga92sq8wqg"; name = "truthy"; }; @@ -26406,7 +26721,7 @@ sha256 = "1ma3k9bbw427cj1n2gjajbqii482jhs2lgjggz9clpc21bn5wqfb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tss"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/tss"; sha256 = "0d16x5r2xfy6mrwy0mqzpr9b3inqmyyxgawrxlfh83j1xb903dhm"; name = "tss"; }; @@ -26427,7 +26742,7 @@ sha256 = "060jksd9aamqx1n4l0bb9v4icsf7cr8jkyw0mbhgyz32nmxh3v6g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ttrss"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ttrss"; sha256 = "08921cssvwpq33w87v08dafi2rz2rl1b3bhbhijn4bwjqgxi9w7z"; name = "ttrss"; }; @@ -26448,7 +26763,7 @@ sha256 = "0jpcjy2a77mywba2vm61knj26pgylsmv5a21cdp80q40bac4i6bb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tuareg"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/tuareg"; sha256 = "0wx723dmjlpm86xdabl9n8p22zbbxpapyfn6ifz0b0pvhh49ip7q"; name = "tuareg"; }; @@ -26469,7 +26784,7 @@ sha256 = "0ihjjw5wxz5ybl3600k937pszw3442cijs4gbqqip9vhd5y9m8gy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tumble"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/tumble"; sha256 = "1c9ybq0mb2a0pw15fmm13vfwcnr2h9fb1xsm5nrff1cg7913pgv9"; name = "tumble"; }; @@ -26490,7 +26805,7 @@ sha256 = "0asd024n5v23wdsg1959sszq568wg3a1bp4jrk0cllfji1z0n78y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/tup-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/tup-mode"; sha256 = "0pzpn1ljfcc2dl9fg7jc8lmjwz2baays4axjqk1qsbj0kqbc8j0l"; name = "tup-mode"; }; @@ -26511,7 +26826,7 @@ sha256 = "0glw5lns7hwp8jznnfm6dyjw454sv2n84gy07ma7s1q3yczhq5bc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/twilight-anti-bright-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/twilight-anti-bright-theme"; sha256 = "1qfybk5akaxdahmjffqaw712v8d7kk4jqkj3hzp96kys2zv1r6f9"; name = "twilight-anti-bright-theme"; }; @@ -26532,7 +26847,7 @@ sha256 = "193v98i84xybm3n0f30jin5q10i87vbcnbdhl4zqi7jij9p5v98z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/twittering-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/twittering-mode"; sha256 = "0v9ijxw5jazh2hc0qab48y71za2l9ryff0mpkxhr3f79irlqy0a1"; name = "twittering-mode"; }; @@ -26553,7 +26868,7 @@ sha256 = "1risfbsaafh760vnl4ryys91g4k78g0fxj2zlcndpxxv34gwkhy7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/typed-clojure-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/typed-clojure-mode"; sha256 = "1579zkhk2lwl5ij7dm9n2drggs5fmhpljrshc4ghhvig7nlyqjy3"; name = "typed-clojure-mode"; }; @@ -26574,7 +26889,7 @@ sha256 = "0iqxii1i67hscsz2fdasj3ripc9xmyl49jzwxm92r3lg13am135a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/typit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/typit"; sha256 = "05m7ymcq6fgbhh93ninrf3qi7csdnf2ahhf01mkm8gxxyaqq6m4n"; name = "typit"; }; @@ -26595,7 +26910,7 @@ sha256 = "1jhd4grch5iz12gyxwfbsgh4dmz5hj4bg4gnvphccg8dsnni05k2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/typo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/typo"; sha256 = "07hmqrnbxbrhcbxdls8i4786lkqmfr3hv6va41xih1lxj0mk60bx"; name = "typo"; }; @@ -26616,7 +26931,7 @@ sha256 = "0k41hwb6jgv3hngfrphlyhmfhvy4k05mvn0brm64xk7lj56y8q2c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ubuntu-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ubuntu-theme"; sha256 = "160z59aaxb2v6c24nki6bn7pjm9r4jl1mgxs4h4sivzxkaw811s2"; name = "ubuntu-theme"; }; @@ -26637,7 +26952,7 @@ sha256 = "0qw9vwl1p0pjw1xmshxar1a8kn6gmin5rdvvnnly8b5z9hpkjf3m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ucs-utils"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ucs-utils"; sha256 = "111fwg2cqqzpa79rcqxidppb12c8g12zszppph2ydfvkgkryb6z2"; name = "ucs-utils"; }; @@ -26658,7 +26973,7 @@ sha256 = "06qcvbp5rd0kh3ibrxj5p6r578lwsrgd7yj5c6slwmkdmna2fj33"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/undercover"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/undercover"; sha256 = "1s30c3i6y4r3mgrrs3lda3rrwmy9ff11ihdmshyziv9v5879sdjf"; name = "undercover"; }; @@ -26679,7 +26994,7 @@ sha256 = "1g1ldyz42q3i2xlgvhd4s93cvkh0fm8m3l344zjcw8rvqaisyphj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/underwater-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/underwater-theme"; sha256 = "0ab2bcqfdi9ml3z9d511pbfwcbp8hkkd36xxp61k36gkyi3acvlr"; name = "underwater-theme"; }; @@ -26700,7 +27015,7 @@ sha256 = "1qy0q1fp7cmvmxynqrb086dkb727lmk5h1k98y14j75b94ilpy0w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/unfill"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/unfill"; sha256 = "0b21dk45vbz4vqdbdx0n6wx30rm38w1jjqbsxfj7b96p3i5shwqv"; name = "unfill"; }; @@ -26721,7 +27036,7 @@ sha256 = "0n06dvf6r7qblz8vz38qc37xrn29wa1c0jyzis1qw9zzf6hmmzj7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/unicode-enbox"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/unicode-enbox"; sha256 = "1phb2qq3pg6z6bl96kl9yfq4jxhgardjpaa4lhgqbxymmqdm7gzv"; name = "unicode-enbox"; }; @@ -26742,7 +27057,7 @@ sha256 = "0fbwncna6gxlynq9196djpkjhayzk8kxlsxg0gasdgqx1nyxl0mk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/unicode-fonts"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/unicode-fonts"; sha256 = "0plipwb30qqay8691qzqdyg6smpbs9dsxxi49psb8sq0xnxl84q3"; name = "unicode-fonts"; }; @@ -26769,7 +27084,7 @@ sha256 = "0qy1hla7vf674ynqdzsaw2cnk92nhpcimww5q94rc0a95pzw64wd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/unicode-progress-reporter"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/unicode-progress-reporter"; sha256 = "03z7p27470fqy3gd356l9cpp44a35sfrxz94dxmx388rzlygk7y7"; name = "unicode-progress-reporter"; }; @@ -26790,7 +27105,7 @@ sha256 = "0q7cbl89yg3fjxaxsqsksxhw7ibdslbb004z5y1m579n7zgcrljy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/unicode-whitespace"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/unicode-whitespace"; sha256 = "1b3jgha8va42b89pdp41sab2w9wllp7dicqg4lxl67bg6wn147wy"; name = "unicode-whitespace"; }; @@ -26811,7 +27126,7 @@ sha256 = "1vbx10s2zmhpxjg26ik947bcg9f7w3g2w45wmm0shjp743fsdq8p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/unify-opening"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/unify-opening"; sha256 = "1gpmklbdbmv8va8d3yr94r1ydkcyvdzcgxv56rp0bxwbcgmk0as8"; name = "unify-opening"; }; @@ -26832,7 +27147,7 @@ sha256 = "1w2w0gmyr0nbq8kv3ldj30h9xma76gi1khbdia1y30kss677rr8m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/unkillable-scratch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/unkillable-scratch"; sha256 = "0ghbpa9pf7k6vd2mjxkpqg2qfl4sd40ir6mrk1rxr1rv8s0afkf7"; name = "unkillable-scratch"; }; @@ -26853,7 +27168,7 @@ sha256 = "07vwg0bg719gb8ln1n5a33103903vvrphnkbvvfn43904pkrf14w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/use-package"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/use-package"; sha256 = "0z7k77yfvsndql719qy4vypnwvi9izal8k8vhdx0pw8msaz4xqd8"; name = "use-package"; }; @@ -26874,7 +27189,7 @@ sha256 = "17p3cwjxdvp0v3n8fiib7hgl07z2iqi1qwlff0g3zwf4rr6kxgqy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/utop"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/utop"; sha256 = "0lv16kl29gc9hdcpn04l85pf7x93vkl41s4mgqp678cllzyr0cq7"; name = "utop"; }; @@ -26895,7 +27210,7 @@ sha256 = "0z53n9qsglp87f6q1pa3sixrjni9k46j31zg15gcwrmflmfrw8ds"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/uzumaki"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/uzumaki"; sha256 = "1fvhzz2qpyc819rjvzyf42jmb70hlg7a9ybqwi81w7rydpabg61q"; name = "uzumaki"; }; @@ -26908,15 +27223,15 @@ vagrant = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "vagrant"; - version = "0.6.0"; + version = "0.6.1"; src = fetchFromGitHub { owner = "ottbot"; repo = "vagrant.el"; - rev = "6d043d8f2c9e0c7039639504a88b2f8cbf519f67"; - sha256 = "0w4a4mxy81vbr5r4kaaddi5zbisvr9ry5x4skmmlib2k0j84niiv"; + rev = "ef3022d290ee26597e21b17ab87acbd8d4f1071f"; + sha256 = "1661fwfx2gpxjriy3ngi9raz8c2kkk3rgg51irdi591jr2zqmw6s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/vagrant"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/vagrant"; sha256 = "0g6sqzsx3lixcn09fkxhhcfp45qnqgf1ms0l7nkzyljavb7151cf"; name = "vagrant"; }; @@ -26937,7 +27252,7 @@ sha256 = "19j5q2f6pybvjq3ryjcyihzlw348hqyjhfcy3qflry6w786dqcgn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/vbasense"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/vbasense"; sha256 = "1440q2bi4arpl5lbqh7zscg7v3884clqx54p2fdfcfkz47ky4z9n"; name = "vbasense"; }; @@ -26958,7 +27273,7 @@ sha256 = "07dx3dyvkwcin0gb6j4jx0ldfxs4rqhygl56a8i81yy05adkaq2x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/vcomp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/vcomp"; sha256 = "02cj2nlyxvgvl2rjfgacljvcsnfm9crmmkhcm2pznj9xw10y8pq0"; name = "vcomp"; }; @@ -26979,7 +27294,7 @@ sha256 = "034475m2d2vlrlc2l88gdx0ga3krsdh08wkjxwnbb2dfyz3p8r9v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/vdirel"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/vdirel"; sha256 = "11cc7bw7x5h3bwnlsjyhw6k5fh2fk7wffarrcny562v4cmr013cj"; name = "vdirel"; }; @@ -27000,7 +27315,7 @@ sha256 = "0lzq31zqnk32vfp3kicnvgfr3nkv8amjzxmk9nrz1kwgmq7gvkjk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/vector-utils"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/vector-utils"; sha256 = "07armr23pq5pd47lqhir6a59r86c84zikbc51d8vfcaw8y71yr5n"; name = "vector-utils"; }; @@ -27021,7 +27336,7 @@ sha256 = "1yk7qqg8i3970kpfk34wvi0gh16qf0b0sfnf18g3s21dd4gk5a6g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/vertigo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/vertigo"; sha256 = "0x0wy1z601sk1x96bl2xx18qm4avd77iybq1a3ss8x8ykwqlgf83"; name = "vertigo"; }; @@ -27042,7 +27357,7 @@ sha256 = "0ggblkaz214vl1j4i5gv5qj2q6ahnr0k3c3l9sd0w5vdkbw8n5jb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/vhdl-tools"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/vhdl-tools"; sha256 = "006d9xv60a90xalagczkziiimwsr1np9nn25zvnc4nlbf8j3fbbw"; name = "vhdl-tools"; }; @@ -27063,7 +27378,7 @@ sha256 = "1750gx65ymibam8ahx5blfv5jc26f3mzbklk1jrmfwpsalyghdd9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/vim-region"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/vim-region"; sha256 = "1dcnx799lpjsdnnjxqzgskkfj2nx7f4kwf0xjhbg35ny4nyn81dx"; name = "vim-region"; }; @@ -27084,7 +27399,7 @@ sha256 = "1f94qx8rbnn21cl0grxqa9gzkbrz68vmqsihv8vvi8qf1c1dmd0i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/vimgolf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/vimgolf"; sha256 = "1hvw2pfa5a984hm6wd33bf6zz6hmlprc6qs3g789dfx91qm890vn"; name = "vimgolf"; }; @@ -27105,7 +27420,7 @@ sha256 = "082qrbljlahkq1fz2dfl434f1xv47jc1v9k0srh7lrm14616dzq3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/vimish-fold"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/vimish-fold"; sha256 = "017by9w53d8pqlsazfycmhdv16yylks308p5vxp1rcw2qacpc5m3"; name = "vimish-fold"; }; @@ -27126,7 +27441,7 @@ sha256 = "02msgb2dh3b5ki6v2bg39l2x93amvmaxg6v57kmyl80x27h00vx9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/visual-fill-column"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/visual-fill-column"; sha256 = "19y0pwaybjal2rc7migdbnafpi4dfbxvrzgfqr8dlvd9q68v08y5"; name = "visual-fill-column"; }; @@ -27147,7 +27462,7 @@ sha256 = "0vl0hwxzzvgna8sysf517qq08fi1zsff3dmcgwvsgzhc47sq8mng"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/vlf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/vlf"; sha256 = "1ipkv5kmda0l39xwbf7ns9p0mx3kb781mxsm9vmbkhr5x577s2j8"; name = "vlf"; }; @@ -27168,7 +27483,7 @@ sha256 = "0q1rwqjwqcnsr57s531pwlm464q8wx5vvdm5rj2xy9b3yi6phis1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/voca-builder"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/voca-builder"; sha256 = "0mbw87mpbb8rw7xzhmg6yjla2c80x9820kw4q00x00ny5rbhm76y"; name = "voca-builder"; }; @@ -27189,7 +27504,7 @@ sha256 = "1v0chqj5jir4685jd8ahw86g9zdmi6xd05wmzhyw20rbk924fcqf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/volatile-highlights"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/volatile-highlights"; sha256 = "1r6in919aqdziv6bgzp4k7jqa87bd287pacq615sd5m1nzva1a4d"; name = "volatile-highlights"; }; @@ -27210,7 +27525,7 @@ sha256 = "0jl3n79wmbxnrbf83qjq0v5pzhvv67i9r5sp2zj8nc86hh7dvjsd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/wacspace"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/wacspace"; sha256 = "1xy0mprvyi37zmgj1yrlh5ni08j47lpag1jm3a76cgghgmlfjxrl"; name = "wacspace"; }; @@ -27231,7 +27546,7 @@ sha256 = "1nx7cr7d4qmzwbvp59kc8139nzc965ibc9vf7afrz8z2h5qg4d4l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/wandbox"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/wandbox"; sha256 = "0myyln82nx462bj79acvqxwvmblxild4vbygcrzw5chcwy6crvlz"; name = "wandbox"; }; @@ -27252,7 +27567,7 @@ sha256 = "0mnfk2ys8axjh696cq5msr5cdr91icl1i3mi0dd2y00lvh6sbm7w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/wc-goal-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/wc-goal-mode"; sha256 = "0l3gh96njjldp7n13jn1zjrp17h7ivjak102j6wwspgg6v2h5419"; name = "wc-goal-mode"; }; @@ -27273,7 +27588,7 @@ sha256 = "0kzs256ymhdrqzva32j215q9fl66n9571prb7mi6syx1vpk7m3lw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/wc-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/wc-mode"; sha256 = "191dmxfpqnj7d43cr0fhdmj5ldfs7w9zg5pb2lv9wvlfl7asdid6"; name = "wc-mode"; }; @@ -27294,7 +27609,7 @@ sha256 = "113prlamr2j6y6n0w43asffawwa4qiq63mgwm85v04h6pr8bd90l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/wcheck-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/wcheck-mode"; sha256 = "0cmdvhgax6r5svn3wkwll4j271qj70g8182c58riwnkhiajxmn3k"; name = "wcheck-mode"; }; @@ -27315,7 +27630,7 @@ sha256 = "0qx92jqzsimjk92pql2h8pzhq66mqijwqgjqwp7rmq5b6k0nvx1z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/weather-metno"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/weather-metno"; sha256 = "0h7p4l8y75h27pgk45f0mk3gjd43jk8q97gjf85a9b0afd63d3f6"; name = "weather-metno"; }; @@ -27336,7 +27651,7 @@ sha256 = "0zpvs9yc2gxfmm0x0majhzxc0b0vmm6p6pxh92h8iq3pmr0di8yj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/web-beautify"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/web-beautify"; sha256 = "06ky2svhca8hjgmvxrg3h6ya7prl72q1r88x967yc6b0qq3r7g0f"; name = "web-beautify"; }; @@ -27357,7 +27672,7 @@ sha256 = "19nzjgvd2i5745283ck3k2vylrr6lnk9h3ggzwrwdhyd3m9433vm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/web-completion-data"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/web-completion-data"; sha256 = "1zzdmhyn6bjaidk808s4pdk25a5rn4287949ps5vbpyniaf6gny9"; name = "web-completion-data"; }; @@ -27370,15 +27685,15 @@ web-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "web-mode"; - version = "13.1"; + version = "14"; src = fetchFromGitHub { owner = "fxbois"; repo = "web-mode"; - rev = "d6b865de9076b48563e6d132e97a31321af1f1bf"; - sha256 = "00fzzjqa1v2dzlpgjxb2qj3nn6iizg177mk7vjvcv4814g4dhcal"; + rev = "9bd7a7ebcbe67ae8f14d585d04b93569fa496ec7"; + sha256 = "1cs9ldj2qckyynwxzvbd5fmniis6mhprdz1wvvvpjs900bbc843s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/web-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/web-mode"; sha256 = "1vyhyc5nf4yj2m63inpwmcqvlsihaqw8nn8xvfdg44nhl6vjz97i"; name = "web-mode"; }; @@ -27398,7 +27713,7 @@ sha256 = "1z7ld9d0crwdh778fyaapx75vpnlnslsh9nf07ywkylhz4w68yyv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/weblogger"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/weblogger"; sha256 = "189zs1321rybgi4zihps7d2jll5z13726jsg5mi7iycg85nkv2fk"; name = "weblogger"; }; @@ -27419,7 +27734,7 @@ sha256 = "0vg3w18xj6i320jsivsml3mi1fdxr8dgxmn7qy2780ajy5ndxnw1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/weechat"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/weechat"; sha256 = "0sxrms5024bi4irv8x8s8j1zcyd62cpqm0zv4dgpm65wnpc7xc46"; name = "weechat"; }; @@ -27440,7 +27755,7 @@ sha256 = "14vmgfz45wmpjfhfx3pfjn3bak8qvj1zk1w4xc5w1cfl6vnij6hv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/weibo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/weibo"; sha256 = "1ndgfqqb0gvy8p2fisi57s9bsa2nrnv80smg78m89i4cwagbz6yd"; name = "weibo"; }; @@ -27453,15 +27768,15 @@ which-key = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "which-key"; - version = "1.1.7"; + version = "1.1.9"; src = fetchFromGitHub { owner = "justbur"; repo = "emacs-which-key"; - rev = "d572f37f21838eb336c1eaf79672a7acb9ff06c0"; - sha256 = "1cbzssi7kmirppa7i8n4g1ggk999gmwhjv4sd04m2zihlsi7y3di"; + rev = "e151eebebf74b81321d49ea9c120bee149820fa8"; + sha256 = "06m2f6jbhl75g29xr6xxlv06m0l6517zdjg9xcfyakbbdk523w5i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/which-key"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/which-key"; sha256 = "0vqbhfzcv9m58w41zdhpiymhgl38n15c6d7ffd99narxlkckcj59"; name = "which-key"; }; @@ -27482,7 +27797,7 @@ sha256 = "01fwhrfi92pcrwc4yn03pflc9wj07mhzj0a0i5amar4f9bj6m5b4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/whitaker"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/whitaker"; sha256 = "17fnvb3jh6fi4wddn5qnp6i6ndidg8jf9ac69q9j032c2msr07nj"; name = "whitaker"; }; @@ -27503,7 +27818,7 @@ sha256 = "0xmwhybb8x6wwfr55ym5xg4dhy1aqx1abxy9qskn7h3zf1z4pgg2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/whitespace-cleanup-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/whitespace-cleanup-mode"; sha256 = "1fhdjrxxyfx4xsgfjqq9p7vhj98wmqf2r00mv8k27vdaxwsnm5p3"; name = "whitespace-cleanup-mode"; }; @@ -27524,7 +27839,7 @@ sha256 = "0ip0vkqb4dm88xqzgwc9yaxzf4sc4x006m6z73a3lbfmrncy2c1d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/whole-line-or-region"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/whole-line-or-region"; sha256 = "1vs2i4cy1zc6nj660i9h36jbfgc3kvqivjnzlq5zwlxk5hcibqa1"; name = "whole-line-or-region"; }; @@ -27545,7 +27860,7 @@ sha256 = "0fqv63m8z5m5ghh4j8ccdnmgcdkvi4jqpg9z7lp17g4p9pq3xfjf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/widget-mvc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/widget-mvc"; sha256 = "0njzvdlxb7z480r6dvmksgivhz7rvnil517aj86qx0jbc5mr3l2f"; name = "widget-mvc"; }; @@ -27566,7 +27881,7 @@ sha256 = "1kqcc1d56jz107bswlzvdng6ny6qwp93yck2i2j921msn62qvbb2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/wiki-nav"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/wiki-nav"; sha256 = "19mabz0y3fcqsm68ijwwbbqylxgp71anc0a31zgc1blha9jivvwy"; name = "wiki-nav"; }; @@ -27587,7 +27902,7 @@ sha256 = "0ib20zl8l1fs69ca9rry27qz69sgf6ws1ca5nhm5llvpkjcgv53i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/win-switch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/win-switch"; sha256 = "1s6inp5kf763rngn58r02fd7n7z3dd55j6hb7s9dgvc856d5z3my"; name = "win-switch"; }; @@ -27608,7 +27923,7 @@ sha256 = "049bwa5g0z1b9nrsc1vc4511aqcq9fvl16xg493wj651g6q9qigb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/window-end-visible"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/window-end-visible"; sha256 = "1p78n7yysj18404cdc6vahfrzwn5pixyfnja8ch48rj4fm4jbxwq"; name = "window-end-visible"; }; @@ -27629,7 +27944,7 @@ sha256 = "0jyymmbz03zj2ydca1rv6ra0b2brjl7pyl4897zd00j5kvqjdyif"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/window-layout"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/window-layout"; sha256 = "1n4a6z00lxsffirjrmbaaw432w798b9vv34qawgn1k17y9l7gb85"; name = "window-layout"; }; @@ -27650,7 +27965,7 @@ sha256 = "1rz2a1l3apavsknlfy0faaivqgpj4x9jz3hbysbg9pydpcwqgf64"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/window-numbering"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/window-numbering"; sha256 = "0x3n0ni16q69lfpyjz61spqghmhvc3cwa4aj80ihii3pk80f769x"; name = "window-numbering"; }; @@ -27671,7 +27986,7 @@ sha256 = "1xjs51wm5ydcqdwvg3c42c5z4j92q75lmk895qkka7ayy5spxxf7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/window-purpose"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/window-purpose"; sha256 = "1ib5ia7armghvmcw8qywcil4nxzwwakmfsp7ybawb0xr53h1w96d"; name = "window-purpose"; }; @@ -27692,7 +28007,7 @@ sha256 = "1f4v0xd341qs4kfnjqhgf8j26valvg6pz4rwcz0zj0s23niy2yil"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/windsize"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/windsize"; sha256 = "1xhfw77168942rcn246qndii0hv0q6vkgzj67jg4mxh8n46m50m9"; name = "windsize"; }; @@ -27708,11 +28023,11 @@ version = "0.9.0"; src = fetchhg { url = "https://bitbucket.com/ArneBab/wisp"; - rev = "4d512e8e0e0f"; - sha256 = "059m9w0m0rqjwdzdn4l1ib25ys0vym54lvb9bkd40rd0yqd36xfw"; + rev = "2c73bee5d79f"; + sha256 = "0f9cjvj6d7q873bjiyr3f7ghj421gvpzzxhfyjpl4bqpsv9qqyr7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/wisp-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/wisp-mode"; sha256 = "10zkp1qbvl8dmxij7zz4p1fixs3891xr1nr57vyb3llar9fgzglc"; name = "wisp-mode"; }; @@ -27733,7 +28048,7 @@ sha256 = "188h1sy4mxzrkwi3zgiw108c5f71rkj5agdkf9yy9v8c1bkawm4x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/wispjs-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/wispjs-mode"; sha256 = "0qzm0dcvjndasnbqpkdc56f1qv66gxv8dfgfcwq5l1bp5wyx813p"; name = "wispjs-mode"; }; @@ -27754,7 +28069,7 @@ sha256 = "0rzq2fbz523fyy2p6ddx9iws89sfgw3pwillw8yz965f3hxx3dj3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/with-editor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/with-editor"; sha256 = "1wsl1vwvywlc32r5pcc9jqd0pbzq1sn4fppxk3vwl0s5h40v8rnb"; name = "with-editor"; }; @@ -27775,7 +28090,7 @@ sha256 = "0nmzh6dynbm8vglp4pqz81s2z68jbnasvamvi1x1iawf8g9zfyix"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/wn-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/wn-mode"; sha256 = "1qy1pkfdnm4pska4cnff9cx2c812ilymajhpmsfc9jdbvhzwrwg3"; name = "wn-mode"; }; @@ -27796,7 +28111,7 @@ sha256 = "018r35dz8z03wcrx9s28pjisayy21549i232mp6wy9mxkrkxbzpc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/wonderland"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/wonderland"; sha256 = "1b4p49mbzqffm2b2y8sbbi56vnkxap2jscsmla9l6l8brybqjppi"; name = "wonderland"; }; @@ -27817,7 +28132,7 @@ sha256 = "0s3mjmfjiidn3spklndw0dvcwbb9x034xyphp60aad8vjaflbchs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/wordsmith-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/wordsmith-mode"; sha256 = "1570h1sjjaks6bnhd4xrbx6nna4v7hz6dmrzwjq37rwvallasg1n"; name = "wordsmith-mode"; }; @@ -27838,7 +28153,7 @@ sha256 = "0l2n3vwk251ba06xdrs9z0bp4ligfdjd259a84ap2z3sqdfa98x4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/worf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/worf"; sha256 = "1fkb2ddl684dijsb0cqgmfbg1nz4xv43rb7g5rah05rchy5sgkpi"; name = "worf"; }; @@ -27859,7 +28174,7 @@ sha256 = "03hjwm51sngkh7jjiwnqhflllqq6i99ib47rm2ja9ii0qyhj1qa0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/wrap-region"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/wrap-region"; sha256 = "058518smxj3j3mr6ljzh7c9x5g23d24104p58sl9nhpw0cq9k28i"; name = "wrap-region"; }; @@ -27880,7 +28195,7 @@ sha256 = "1nnjn1r669hvvzfycllwap4w04m8rfsk4nzcg8057m1f263kj31b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/writegood-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/writegood-mode"; sha256 = "1lxammisaj04g5vr5lwms64ywf39w8knrq72x4i94wwzwx5ywi1d"; name = "writegood-mode"; }; @@ -27901,7 +28216,7 @@ sha256 = "11a3h5v7knj8y360cxin59c1ipd9y4qsqlanrw69yb5k4816ayyr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/writeroom-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/writeroom-mode"; sha256 = "1kpsrp3agw8bg3qbf5rf5k1a7ww30q5xsa8z5ywxajsaywjzx1bk"; name = "writeroom-mode"; }; @@ -27922,7 +28237,7 @@ sha256 = "1lv0l27lrp6xyl0c5yhlnyjwx872izq02z8x34da9jv3walxpk8f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ws-butler"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ws-butler"; sha256 = "072k67z2lx0ampwzdiszi64xs0w6frp4nbmrd2r0wpx0pd211vbn"; name = "ws-butler"; }; @@ -27943,7 +28258,7 @@ sha256 = "1ibvcc54y2w72d3yvcczvzywribiwmkhlb1b08g4pyb1arclw393"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/wsd-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/wsd-mode"; sha256 = "07vclmnj18wx9wlrcnsl99f9jlk3sb9g6pcdv8x1smk84gccpakc"; name = "wsd-mode"; }; @@ -27964,7 +28279,7 @@ sha256 = "0mbc3ndggv2rbmfcfhw8bsx3qw6jy684hxz5dqa88lfb6vs5knzc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/wttrin"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/wttrin"; sha256 = "0msp8lja9nz6khz3dkasv8hnhkaayqxd7m58kma03hpkcjxnaxil"; name = "wttrin"; }; @@ -27985,7 +28300,7 @@ sha256 = "13id1vf590gc0kwkhh6mgq2gj2bra2kycxjlvql7v0s7cdvamjhq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/x86-lookup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/x86-lookup"; sha256 = "1clv1npvdkzsy0a08xrb880yflwzl4d5cc2c5xrs7b837mqpj8hd"; name = "x86-lookup"; }; @@ -28006,7 +28321,7 @@ sha256 = "154xnfcmil9xjjmq4cyrfpir4ga4mgcmmbd7dja1m7rpk1734xk6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/xbm-life"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/xbm-life"; sha256 = "1pglxjd4cs630sayx17ai1xflpbyj3hry3156682bgwhqs1vw68q"; name = "xbm-life"; }; @@ -28027,7 +28342,7 @@ sha256 = "1n1msmqap4a2qnjwrchf9cjkzcl20hbrx0vsc4lkbvq3p5riv5p7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/xcscope"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/xcscope"; sha256 = "06xh29cm5v3b5xwj32y0i0h0kvvy995840db4hvab2wn9jw68m8w"; name = "xcscope"; }; @@ -28048,7 +28363,7 @@ sha256 = "0p9p3w8i5w1pzh3y3yxz0rg5gywfq4m5anbiyrdn84vdd42jij4x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/xkcd"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/xkcd"; sha256 = "1r88yhs8vnkak8xl16vw3xdpm7ncz4ydkml8932bqk8xix8l8f0w"; name = "xkcd"; }; @@ -28058,6 +28373,27 @@ license = lib.licenses.free; }; }) {}; + xml-rpc = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "xml-rpc"; + version = "1.6.12"; + src = fetchFromGitHub { + owner = "hexmode"; + repo = "xml-rpc-el"; + rev = "0ab093d60140d19e31d217c8abdc7dbdac944486"; + sha256 = "0g52bmamcd54acyk6i47ar5jawad6ycvm9g656inb994wprnjin9"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/xml-rpc"; + sha256 = "14r6xgnpqsb2jlv52vgrhqf3qw8a6gmdyap3ylhilyxw71lxf1js"; + name = "xml-rpc"; + }; + packageRequires = []; + meta = { + homepage = "https://melpa.org/#/xml-rpc"; + license = lib.licenses.free; + }; + }) {}; xquery-tool = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "xquery-tool"; @@ -28069,7 +28405,7 @@ sha256 = "1yy759qc4njc8bqh8hmgc0mq5vk5spz5syxgflqhjijk8nrvyfgl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/xquery-tool"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/xquery-tool"; sha256 = "069injmvv9zzcbqbms94qx5wjj740jnik6sf3b4xjhln7z1yskp0"; name = "xquery-tool"; }; @@ -28090,7 +28426,7 @@ sha256 = "1kmlya0bwgm2krwc6j4gp80579sf5azz08l8d7pydw69rckv6ji0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/xref-js2"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/xref-js2"; sha256 = "1mfyszdi1wx2lqd9fyqm0ra227dcsjs8asc1dw2li0alwh7n4xs3"; name = "xref-js2"; }; @@ -28111,7 +28447,7 @@ sha256 = "1zdj4664gvwc4kyx7fx5232l3c5anm0xyrrnrw596q604q6xxj2x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/xterm-color"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/xterm-color"; sha256 = "0bvzi1mkxgm4vbq2va1sr0k9h3fdmppq79hkvbizc2xgk72sazpj"; name = "xterm-color"; }; @@ -28132,7 +28468,7 @@ sha256 = "1wqx6hlqcmqiljydih5fx89dw06g8w728pyn4iqsap8jwgjngb09"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/xtest"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/xtest"; sha256 = "1vbs4sb4frzg8d3l96ip9cc6lc86nbj50vpdfqazvxmdfd1sg4i7"; name = "xtest"; }; @@ -28153,7 +28489,7 @@ sha256 = "1rplafm6mldsirj7xg66vsx03n263yii3il3fkws69xmv7sx1a6i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/yafolding"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/yafolding"; sha256 = "1z70ismfwmh9a83a7h5lbhw7iywfib5fis7y8gx8020wfjq9g2yq"; name = "yafolding"; }; @@ -28174,7 +28510,7 @@ sha256 = "0l9b888wv72j4hhkcfzsh09iqjxp2qjbjcjcfmvfhxf7il11pv8h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/yagist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/yagist"; sha256 = "1mz86fq0pb4w54c66vd19m2492mkrzq2qi6ssnn2xwmn8vv02wdd"; name = "yagist"; }; @@ -28195,7 +28531,7 @@ sha256 = "1mj1gwrflpdlmc7wl1axygn1jqlrjys1dh3cpdh27zrgsjvhd6c1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/yaml-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/yaml-mode"; sha256 = "0afp83xcr8h153cayyaszwkgpap0iyk351dlykmv6bv9d2m774mc"; name = "yaml-mode"; }; @@ -28216,7 +28552,7 @@ sha256 = "007837w6gd7k253h7g2in6l3ihcbwv733yiffs26pnymgk21xdqz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/yascroll"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/yascroll"; sha256 = "11g7wn4hgdwnx3n7ra0sh8gk6rykwvrg9g2cihvcv7mjbqgcv53f"; name = "yascroll"; }; @@ -28237,7 +28573,7 @@ sha256 = "0yiglsb1s9ni4xig05ysw75l0ndjgdyhzip7c0sdxb265p3yrfby"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/yasnippet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/yasnippet"; sha256 = "1j6hcpzxljz1axh0xfbwr4ysbixkwgxawsvsgicls8r8kl2xvjvf"; name = "yasnippet"; }; @@ -28258,7 +28594,7 @@ sha256 = "1yplaj7pry43qps8hvqxj9983ah4jvaiq94l171a7f8qi28386s8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/yatemplate"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/yatemplate"; sha256 = "05gd9sxdiqpw2p1kdagwgxd94wiw1fmmcsp9v4p74i9sqmf6qn6q"; name = "yatemplate"; }; @@ -28277,7 +28613,7 @@ sha256 = "08iwfpsjs36pqr2l85avxhsjx8z0sdfw8cqwwf3brn7i4x67f7z5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/yatex"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/yatex"; sha256 = "17np4am7yan1bh4706azf8in60c41158h3z591478j5b1w13y5a6"; name = "yatex"; }; @@ -28298,7 +28634,7 @@ sha256 = "0nqyn1b01v1qxv7rcf46qypca61lmpm8d7kqv63jazw3n05qdnj8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/yaxception"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/yaxception"; sha256 = "18n2kjbgfhkhcwigxmv8dk72jp57vsqqd20lc26v5amx6mrhgh58"; name = "yaxception"; }; @@ -28319,8 +28655,8 @@ sha256 = "094alkjrh285qy3sds8dkvxsbnaxnppz1ab0i5r575lyhli9lxia"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/ycmd"; - sha256 = "1mg2b0wgfimrc0hp84q7lc654z2hysrhbzswpq1x812hgq895v8p"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/ycmd"; + sha256 = "10jqr6xz2fnrd1ihips9jmbcd28zha432h4pxjpswz3ivwjqhxna"; name = "ycmd"; }; packageRequires = [ dash deferred emacs f popup ]; @@ -28340,7 +28676,7 @@ sha256 = "0yvz7lmid4jcikb9jmc7h2lcry3fdyy809k25nyasj2bk41xqqsd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/yesql-ghosts"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/yesql-ghosts"; sha256 = "1hxzbnfd15f0ifdqjbw9nhxd0z46x705v2bc0xl71nav78fgpswf"; name = "yesql-ghosts"; }; @@ -28361,7 +28697,7 @@ sha256 = "19a47780h0x1rdicr8i7356kvamkbkcwp31skdpp5cxgysvi3d9s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/yoshi-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/yoshi-theme"; sha256 = "1kzdjs3rzg9rxrjgsk0wk75rwvbip6ixg1apcxv2c1a6biqqf2hv"; name = "yoshi-theme"; }; @@ -28382,7 +28718,7 @@ sha256 = "0016qff7hdnd0xkyhxakfzzscwlwkpzppvc4wxfw0iacpjkz1fnr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/youdao-dictionary"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/youdao-dictionary"; sha256 = "1qfk7s18br9jask1bpida0cjxks098qpz0ssmw8misi3bjax0fym"; name = "youdao-dictionary"; }; @@ -28403,7 +28739,7 @@ sha256 = "1n7ka608lk0xp7vg4zcw282zna0cwvcwvmhic6ym1ag7lq5cjrhc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/zenburn-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/zenburn-theme"; sha256 = "1kb371j9aissj0vy07jw4ydfn554blc8b2rbi0x1dvfksr2rhsn9"; name = "zenburn-theme"; }; @@ -28424,7 +28760,7 @@ sha256 = "0j940clm3w05f93rq46pzrjzj5kw2ia5mzkspk1c6x0z5vi888gm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/zerodark-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/zerodark-theme"; sha256 = "1nqzswmnq6h0av4rivqm237h7ghp7asa2nvls7nz4ma467p9qhp9"; name = "zerodark-theme"; }; @@ -28445,7 +28781,7 @@ sha256 = "1ksjd3askc3k1l0b3nia5mzkxa74bidh2x0xlrj4qs4im5445vnz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/zombie-trellys-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/zombie-trellys-mode"; sha256 = "19xzvppw7f35s82hm0y7sga8dyjjyy0dxy6vji4hxdpjziz7lggv"; name = "zombie-trellys-mode"; }; @@ -28466,7 +28802,7 @@ sha256 = "1lrgirfvcvbir7csshkhhwj99jj1x5aprhw7xfiicv7nan9m6gjy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/zone-nyan"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/zone-nyan"; sha256 = "165sgjaahz038isii971m02hr2g5iqhbhiwf5kdn8c739cjaa17b"; name = "zone-nyan"; }; @@ -28487,7 +28823,7 @@ sha256 = "1dwf3980rnwc85s73j8accwgpcdhsa6fqdrppbrqb8f7c05q8303"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/zoom-window"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/zoom-window"; sha256 = "0l9683nk2bdm49likk9c55c23qfy6f1pn04drqwd1vhpanz4l4b3"; name = "zoom-window"; }; @@ -28508,7 +28844,7 @@ sha256 = "0j6x3az8vpq2ggafjxdl8x3ln7lhh58c27z72mwywp4a2ca1g496"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/zop-to-char"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/zop-to-char"; sha256 = "0jnspvqqvnaplld083j7cqqxw122qazh88ab7hymci36m3ka9hga"; name = "zop-to-char"; }; @@ -28529,7 +28865,7 @@ sha256 = "0qwdbzfi8mddmchdd9ab9ms1ynlc8dx08i6g2mf3za1sbcivdqsr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/zotelo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/zotelo"; sha256 = "0y6s5ma7633h5pf9zj7vkazidlf211va7nk47ppb1q0iyfkyln36"; name = "zotelo"; }; @@ -28539,6 +28875,27 @@ license = lib.licenses.free; }; }) {}; + zotxt = callPackage ({ fetchFromGitLab, fetchurl, lib, melpaBuild, request-deferred }: + melpaBuild { + pname = "zotxt"; + version = "0.1.34"; + src = fetchFromGitLab { + owner = "egh"; + repo = "zotxt-emacs"; + rev = "43c0c6d23b31126bac6b14bb85608180fd9c866f"; + sha256 = "0qksa67aazs9vx7v14nlakr34z6l0h6mhfzi2c0vhrr0c210r6hp"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/zotxt"; + sha256 = "18jla05g2k8zfrmp7q9kpr1mpw6smxzdyn8nfghm306wvv9ff8y5"; + name = "zotxt"; + }; + packageRequires = [ request-deferred ]; + meta = { + homepage = "https://melpa.org/#/zotxt"; + license = lib.licenses.free; + }; + }) {}; zygospore = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "zygospore"; @@ -28550,7 +28907,7 @@ sha256 = "0v73fgb0gf81vlihiicy32v6x86rr2hv0bxlpw7d3pk4ng1a0l3z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/zygospore"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/zygospore"; sha256 = "0n9qs6fymdjly0i4rmx87y8gapfn5sqivsivcffi42vcb5f17kxj"; name = "zygospore"; }; @@ -28571,7 +28928,7 @@ sha256 = "0y0hhar3krkvbpb5y9k197mb0wfpz8cl6fmxazq8msjml7hkk339"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/zzz-to-char"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/zzz-to-char"; sha256 = "16vwp0krshmn5x3ry1j512g4kydx39znjqzri4j7wgg49bz1n7vh"; name = "zzz-to-char"; }; diff --git a/pkgs/applications/editors/emacs-modes/org-generated.nix b/pkgs/applications/editors/emacs-modes/org-generated.nix new file mode 100644 index 00000000000..00b80aba9a3 --- /dev/null +++ b/pkgs/applications/editors/emacs-modes/org-generated.nix @@ -0,0 +1,28 @@ +{ callPackage }: { + org = callPackage ({ elpaBuild, fetchurl, lib }: elpaBuild { + pname = "org"; + version = "20160502"; + src = fetchurl { + url = "http://orgmode.org/elpa/org-20160502.tar"; + sha256 = "0ranc2qiw6g6qja0jh1dvh06k6waagkiir2q2zla5d54brw4fg5a"; + }; + packageRequires = []; + meta = { + homepage = "https://elpa.gnu.org/packages/org.html"; + license = lib.licenses.free; + }; + }) {}; + org-plus-contrib = callPackage ({ elpaBuild, fetchurl, lib }: elpaBuild { + pname = "org-plus-contrib"; + version = "20160502"; + src = fetchurl { + url = "http://orgmode.org/elpa/org-plus-contrib-20160502.tar"; + sha256 = "1znqh4pp9dlqmmdjhgy6vb880hq3cl4q6nmv48x8n5may159mvm0"; + }; + packageRequires = []; + meta = { + homepage = "https://elpa.gnu.org/packages/org-plus-contrib.html"; + license = lib.licenses.free; + }; + }) {}; + } \ No newline at end of file diff --git a/pkgs/applications/editors/emacs-modes/org-packages.nix b/pkgs/applications/editors/emacs-modes/org-packages.nix new file mode 100644 index 00000000000..b8543841a7f --- /dev/null +++ b/pkgs/applications/editors/emacs-modes/org-packages.nix @@ -0,0 +1,37 @@ +/* + +# Updating + +To update the list of packages from ELPA, + +1. Clone https://github.com/ttuegel/emacs2nix +2. Run `./org-packages.sh` from emacs2nix +3. Copy the new org-packages.json file into Nixpkgs +4. `git commit -m "org-packages $(date -Idate)"` + +*/ + +{ fetchurl, lib, stdenv, texinfo }: + +self: + + let + + imported = import ./org-generated.nix { + inherit (self) callPackage; + }; + + super = imported; + + markBroken = pkg: pkg.override { + elpaBuild = args: self.elpaBuild (args // { + meta = (args.meta or {}) // { broken = true; }; + }); + }; + + overrides = { + }; + + orgPackages = super // overrides; + + in orgPackages // { inherit orgPackages; } diff --git a/pkgs/applications/editors/emacs-modes/pcache/default.nix b/pkgs/applications/editors/emacs-modes/pcache/default.nix deleted file mode 100644 index f4dcf03dee8..00000000000 --- a/pkgs/applications/editors/emacs-modes/pcache/default.nix +++ /dev/null @@ -1,30 +0,0 @@ -{ stdenv, fetchgit, emacs }: - -stdenv.mkDerivation rec { - name = "pcache-0.2.3"; - - src = fetchgit { - url = "https://github.com/sigma/pcache.git"; - rev = "fa8f863546e2e8f2fc0a70f5cc766a7f584e01b6"; - sha256 = "f7cdad5a729b24f96ec69db4adfd19daf45c27aaf3a0267385b252cb2e59daa0"; - }; - - buildInputs = [ emacs ]; - - buildPhase = '' - emacs --batch -f batch-byte-compile pcache.el - ''; - - installPhase = '' - install -d $out/share/emacs/site-lisp - install pcache.el pcache.elc $out/share/emacs/site-lisp - ''; - - meta = { - description = "Persistent caching for Emacs"; - homepage = https://github.com/sigma/pcache.el; - license = stdenv.lib.licenses.gpl2Plus; - - platforms = stdenv.lib.platforms.all; - }; -} diff --git a/pkgs/applications/editors/emacs-modes/s/default.nix b/pkgs/applications/editors/emacs-modes/s/default.nix deleted file mode 100644 index b818348939e..00000000000 --- a/pkgs/applications/editors/emacs-modes/s/default.nix +++ /dev/null @@ -1,23 +0,0 @@ -{stdenv, fetchurl, emacs}: - -let version = "1.9.0"; - -in stdenv.mkDerivation { - name = "emacs-s-${version}"; - - src = fetchurl { - url = "https://github.com/magnars/s.el/archive/${version}.tar.gz"; - sha256 = "1gah2k577gvnmxlpw7zrz0jr571vghzhdv2hbgchlgah07czd091"; - }; - - buildInputs = [ emacs ]; - - buildPhase = '' - emacs -L . --batch -f batch-byte-compile *.el - ''; - - installPhase = '' - install -d $out/share/emacs/site-lisp - install *.el *.elc $out/share/emacs/site-lisp - ''; -} diff --git a/pkgs/applications/editors/emacs-modes/xml-rpc/default.nix b/pkgs/applications/editors/emacs-modes/xml-rpc/default.nix deleted file mode 100644 index 661430516b7..00000000000 --- a/pkgs/applications/editors/emacs-modes/xml-rpc/default.nix +++ /dev/null @@ -1,32 +0,0 @@ -{stdenv, fetchurl, emacs}: - -stdenv.mkDerivation rec { - name = "xml-rpc-1.6.8"; - - src = fetchurl { - url = https://launchpadlibrarian.net/40270196/xml-rpc.el; - sha256 = "0i8hf90yhrjwqrv7q1f2g1cff6ld8apqkka42fh01wkdys1fbm7b"; - }; - - phases = [ "buildPhase" "installPhase"]; - - buildInputs = [ emacs ]; - - buildPhase = '' - cp $src xml-rpc.el - emacs --batch -f batch-byte-compile xml-rpc.el - ''; - - installPhase = '' - install -d $out/share/emacs/site-lisp - install xml-rpc.el* $out/share/emacs/site-lisp - ''; - - meta = { - description = "Elisp implementation of clientside XML-RPC"; - homepage = https://launchpad.net/xml-rpc-el; - license = stdenv.lib.licenses.gpl3Plus; - - platforms = stdenv.lib.platforms.all; - }; -} diff --git a/pkgs/applications/graphics/sane/backends/git.nix b/pkgs/applications/graphics/sane/backends/git.nix index 16553d6e013..f7ea901e41b 100644 --- a/pkgs/applications/graphics/sane/backends/git.nix +++ b/pkgs/applications/graphics/sane/backends/git.nix @@ -1,10 +1,10 @@ { callPackage, fetchgit, ... } @ args: callPackage ./generic.nix (args // { - version = "2016-05-07"; + version = "2016-05-09"; src = fetchgit { - sha256 = "5f8974bc56d5eb1d33fbe53b30e80395b690151a1ea418d8aa44c7e092656896"; - rev = "926bfade544de4a4fd5f1a8082b85a97e2443770"; + sha256 = "5e3d647503d1231395a6782c6aa536b52b3d45585a87a0600ce0aca8b422cf82"; + rev = "1e013654cc3af09f4731ab9ec8d8324d03a7de4a"; url = "git://alioth.debian.org/git/sane/sane-backends.git"; }; }) diff --git a/pkgs/applications/misc/milu/default.nix b/pkgs/applications/misc/milu/default.nix new file mode 100644 index 00000000000..8b7fb6787d7 --- /dev/null +++ b/pkgs/applications/misc/milu/default.nix @@ -0,0 +1,41 @@ +{ stdenv, fetchFromGitHub, unzip, pkgconfig, glib, clang, gcc }: + +stdenv.mkDerivation rec { + name = "milu-nightly-${version}"; + version = "2016-05-09"; + + src = fetchFromGitHub { + sha256 = "14cglw04cliwlpvw7qrs6rfm5sv6qa558d7iby5ng3wdjcwx43nk"; + rev = "b5f2521859c0319d321ad3c1ad793b826ab5f6e1"; + repo = "Milu"; + owner = "yuejia"; + }; + + preConfigure = '' + sed -i 's#/usr/bin/##g' Makefile + sed -i "s#-lclang#-L$(clang --print-search-dirs | + sed -ne '/libraries:/{s/libraries: =//; s/:/ -L/gp}') -lclang#g" Makefile + ''; + + installPhase = '' + mkdir -p $out/bin + cp bin/milu $out/bin + ''; + + buildInputs = [ + pkgconfig + glib + unzip + clang + gcc + ]; + + meta = { + description = "Higher Order Mutation Testing Tool for C and C++ programs"; + homepage = http://github.com/yuejia/Milu; + license = stdenv.lib.licenses.bsd2; + platforms = stdenv.lib.platforms.linux; + maintainers = [ stdenv.lib.maintainers.vrthra ]; + }; +} + diff --git a/pkgs/applications/misc/vue/default.nix b/pkgs/applications/misc/vue/default.nix index b116a176aed..a448d35485a 100644 --- a/pkgs/applications/misc/vue/default.nix +++ b/pkgs/applications/misc/vue/default.nix @@ -4,7 +4,7 @@ stdenv.mkDerivation rec { name = "vue-${version}"; version = "3.3.0"; src = fetchurl { - url = "releases.atech.tufts.edu/jenkins/job/VUE/116/deployedArtifacts/download/artifact.1"; + url = "http://releases.atech.tufts.edu/jenkins/job/VUE/116/deployedArtifacts/download/artifact.1"; sha256 = "0yfzr80pw632lkayg4qfmwzrqk02y30yz8br7isyhmgkswyp5rnx"; }; diff --git a/pkgs/applications/networking/browsers/firefox/default.nix b/pkgs/applications/networking/browsers/firefox/default.nix index 94017ba3327..a3c8183fff2 100644 --- a/pkgs/applications/networking/browsers/firefox/default.nix +++ b/pkgs/applications/networking/browsers/firefox/default.nix @@ -24,7 +24,7 @@ common = { pname, version, sha512 }: stdenv.mkDerivation rec { src = fetchurl { url = let ext = if lib.versionAtLeast version "41.0" then "xz" else "bz2"; - in "http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/${version}/source/firefox-${version}.source.tar.${ext}"; + in "mirror://mozilla/firefox/releases/${version}/source/firefox-${version}.source.tar.${ext}"; inherit sha512; }; @@ -131,14 +131,14 @@ in { firefox-unwrapped = common { pname = "firefox"; - version = "46.0"; - sha512 = "f5a652e25fa74e3cb271af04d50cc7b63ca73fde9d2ff350e84b3dda55352bac2b28b567aed12164285d992414ad475da9d2555ab972e5c5d7b8f5226591036b"; + version = "46.0.1"; + sha512 = "c58642774f93ceaef4f99bc3fe578db6e4f6de7f1d23080da97b61bc4fc6b516ce99fa04368893c0fa2cb9cd0b36e96955656daa97d0bd0d8f4da6a2d364cb98"; }; firefox-esr-unwrapped = common { pname = "firefox-esr"; - version = "45.0.2esr"; - sha512 = "a1e9e9371ee47181b01252d60166c405a7835063dffb4928dfb8abb9f151edd8db1dd2b59f35d7898f1660a0fcd8e41f91a3e799c25b6dd43b6ab056bc5ad6bf"; + version = "45.1.1esr"; + sha512 = "ee6bccdf01450c5b371e31c35f5bb084ad49f796fcc9cf3a346646972044ad85ce198cc34b697c32e2d3ad1e25955ef5b91b68790704ecaa4de9d3a412914fc7"; }; } diff --git a/pkgs/applications/networking/browsers/mozilla-plugins/bluejeans/default.nix b/pkgs/applications/networking/browsers/mozilla-plugins/bluejeans/default.nix index 80c9b1b31d8..6abc2bc7fc4 100644 --- a/pkgs/applications/networking/browsers/mozilla-plugins/bluejeans/default.nix +++ b/pkgs/applications/networking/browsers/mozilla-plugins/bluejeans/default.nix @@ -17,11 +17,11 @@ in stdenv.mkDerivation rec { name = "bluejeans-${version}"; - version = "2.125.24.5"; + version = "2.155.17.5"; src = fetchurl { url = "https://swdl.bluejeans.com/skinny/bjnplugin_${version}-1_amd64.deb"; - sha256 = "0lxxd7icfqcpg5rb4njkk4ybxmisv4c509yisznxspi49qfxirwq"; + sha256 = "1vszk0nrnpji4lm2pndq11kfcrcq1xccjbif9nkm15s3hcb1b66m"; }; phases = [ "unpackPhase" "installPhase" "fixupPhase" ]; diff --git a/pkgs/applications/networking/browsers/mozilla-plugins/google-talk-plugin/default.nix b/pkgs/applications/networking/browsers/mozilla-plugins/google-talk-plugin/default.nix index aed05f42503..88bdd08cbfe 100644 --- a/pkgs/applications/networking/browsers/mozilla-plugins/google-talk-plugin/default.nix +++ b/pkgs/applications/networking/browsers/mozilla-plugins/google-talk-plugin/default.nix @@ -32,6 +32,7 @@ let xorg.libXfixes xorg.libXrender xorg.libXrandr + xorg.libXext stdenv.cc.cc alsaLib libpulseaudio @@ -50,18 +51,18 @@ stdenv.mkDerivation rec { # You can get the upstream version and SHA-1 hash from the following URLs: # curl -s http://dl.google.com/linux/talkplugin/deb/dists/stable/main/binary-amd64/Packages | grep -E 'Version|SHA1' # curl -s http://dl.google.com/linux/talkplugin/deb/dists/stable/main/binary-i386/Packages | grep -E 'Version|SHA1' - version = "5.4.2.0"; + version = "5.41.0.0"; src = if stdenv.system == "x86_64-linux" then fetchurl { url = "${baseURL}/google-talkplugin_${version}-1_amd64.deb"; - sha1 = "d75fad757750b4830c4e401ade92b4993e2a4ab2"; + sha1 = "1c3cc0411444587b56178de4868eb5d0ff742ec0"; } else if stdenv.system == "i686-linux" then fetchurl { url = "${baseURL}/google-talkplugin_${version}-1_i386.deb"; - sha1 = "410872377b0bdac06b580c5e1755a3a3c712144b"; + sha1 = "0d31d726c5e9a49917e2749e73386b1c0fdcb376"; } else throw "Google Talk does not support your platform."; diff --git a/pkgs/applications/networking/browsers/mozilla-plugins/google-talk-plugin/preload.c b/pkgs/applications/networking/browsers/mozilla-plugins/google-talk-plugin/preload.c index a643e39c31a..1e2c31d9527 100644 --- a/pkgs/applications/networking/browsers/mozilla-plugins/google-talk-plugin/preload.c +++ b/pkgs/applications/networking/browsers/mozilla-plugins/google-talk-plugin/preload.c @@ -6,6 +6,7 @@ #include #include #include +#include #include #include #include diff --git a/pkgs/applications/networking/dropbox/default.nix b/pkgs/applications/networking/dropbox/default.nix index b9d45f90a5c..7895a3b252d 100644 --- a/pkgs/applications/networking/dropbox/default.nix +++ b/pkgs/applications/networking/dropbox/default.nix @@ -1,7 +1,7 @@ -{ stdenv, fetchurl, makeDesktopItem, makeWrapper, patchelf +{ stdenv, fetchurl, makeDesktopItem, patchelf , dbus_libs, gcc, glib, libdrm, libffi, libICE, libSM , libX11, libXmu, ncurses, popt, qt5, zlib -, qtbase, qtdeclarative, qtwebkit +, qtbase, qtdeclarative, qtwebkit, makeQtWrapper }: # this package contains the daemon version of dropbox @@ -62,7 +62,7 @@ in stdenv.mkDerivation { sourceRoot = ".dropbox-dist"; - buildInputs = [ makeWrapper patchelf ]; + nativeBuildInputs = [ makeQtWrapper patchelf ]; dontPatchELF = true; # patchelf invoked explicitly below dontStrip = true; # already done @@ -102,7 +102,7 @@ in stdenv.mkDerivation { mkdir -p "$out/bin" RPATH="${ldpath}:$out/${appdir}" - makeWrapper "$out/${appdir}/dropbox" "$out/bin/dropbox" \ + makeQtWrapper "$out/${appdir}/dropbox" "$out/bin/dropbox" \ --prefix LD_LIBRARY_PATH : "$RPATH" ''; diff --git a/pkgs/applications/networking/irc/hexchat/default.nix b/pkgs/applications/networking/irc/hexchat/default.nix index 65d365b5981..da47ec6580b 100644 --- a/pkgs/applications/networking/irc/hexchat/default.nix +++ b/pkgs/applications/networking/irc/hexchat/default.nix @@ -1,25 +1,29 @@ -{ stdenv, fetchurl, pkgconfig, gtk, perl, python, gettext +{ stdenv, fetchurl, pkgconfig, gtk, lua, perl, python , libtool, pciutils, dbus_glib, libcanberra, libproxy , libsexy, enchant, libnotify, openssl, intltool , desktop_file_utils, hicolor_icon_theme }: stdenv.mkDerivation rec { - version = "2.10.2"; + version = "2.12.1"; name = "hexchat-${version}"; src = fetchurl { url = "http://dl.hexchat.net/hexchat/${name}.tar.xz"; - sha256 = "0b5mw6jxa7c93nbgiwijm7j7klm6nccx6l9zyainyrbnqmjz7sw7"; + sha256 = "0svwz9ldrry1sn35jywgpacjj1cf3xl3k74ynwn8rjvxs73b00aj"; }; - buildInputs = [ - pkgconfig gtk perl python gettext - libtool pciutils dbus_glib libcanberra libproxy - libsexy libnotify openssl intltool - desktop_file_utils hicolor_icon_theme + nativeBuildInputs = [ + pkgconfig libtool intltool ]; + buildInputs = [ + gtk lua perl python pciutils dbus_glib libcanberra libproxy + libsexy libnotify openssl desktop_file_utils hicolor_icon_theme + ]; + + enableParallelBuilding = true; + #hexchat and heachat-text loads enchant spell checking library at run time and so it needs to have route to the path patchPhase = '' sed -i "s,libenchant.so.1,${enchant}/lib/libenchant.so.1,g" src/fe-gtk/sexy-spell-entry.c diff --git a/pkgs/applications/networking/mailreaders/thunderbird/default.nix b/pkgs/applications/networking/mailreaders/thunderbird/default.nix index b3a3c2bf861..cdb52ec8d23 100644 --- a/pkgs/applications/networking/mailreaders/thunderbird/default.nix +++ b/pkgs/applications/networking/mailreaders/thunderbird/default.nix @@ -20,8 +20,7 @@ stdenv.mkDerivation rec { name = "thunderbird-${verName}"; src = fetchurl { - url = "http://archive.mozilla.org/pub/thunderbird/releases/" - + "${verName}/source/thunderbird-${verName}.source.tar.xz"; + url = "mirror://mozilla/thunderbird/releases/${verName}/source/thunderbird-${verName}.source.tar.xz"; sha256 = "0rynfyxgpvfla17zniaq84slc02kg848qawkjmdbnv74y6bkhs8m"; }; diff --git a/pkgs/applications/networking/sniproxy/default.nix b/pkgs/applications/networking/sniproxy/default.nix new file mode 100644 index 00000000000..6c3c33007c8 --- /dev/null +++ b/pkgs/applications/networking/sniproxy/default.nix @@ -0,0 +1,24 @@ +{ stdenv, fetchFromGitHub, autoconf, automake, autoreconfHook, gettext, libev, pcre, pkgconfig, udns }: + +stdenv.mkDerivation rec { + name = "sniproxy-${version}"; + version = "0.4.0"; + + src = fetchFromGitHub { + owner = "dlundquist"; + repo = "sniproxy"; + rev = version; + sha256 = "1r6hv55k2z8l5q57l2q2x3nsspc2yjvi56l760yrz2c1hgh6r0a2"; + }; + + buildInputs = [ autoconf automake autoreconfHook gettext libev pcre pkgconfig udns ]; + + meta = with stdenv.lib; { + inherit (src.meta) homepage; + description = "Transparent TLS and HTTP layer 4 proxy with SNI support"; + license = licenses.bsd2; + maintainers = [ maintainers.womfoo ]; + platforms = platforms.linux; + }; + +} diff --git a/pkgs/applications/science/electronics/pulseview/default.nix b/pkgs/applications/science/electronics/pulseview/default.nix index 07724d93254..595ad9eeb0a 100644 --- a/pkgs/applications/science/electronics/pulseview/default.nix +++ b/pkgs/applications/science/electronics/pulseview/default.nix @@ -1,17 +1,17 @@ { stdenv, fetchurl, pkgconfig, cmake, glib, qt4, boost, libsigrok -, libsigrokdecode, libserialport, libzip, udev, libusb1, libftdi +, libsigrokdecode, libserialport, libzip, udev, libusb1, libftdi, glibmm }: stdenv.mkDerivation rec { - name = "pulseview-0.2.0"; + name = "pulseview-0.3.0"; src = fetchurl { url = "http://sigrok.org/download/source/pulseview/${name}.tar.gz"; - sha256 = "1pf1dgwd9j586nqmni6gqf3qxrsmawcmi9wzqfzqkjci18xd7dgy"; + sha256 = "03jk5xpsird5ssbnwkxw57jnqvnnpivhqh1xjdhdrz02lsvjrzjz"; }; buildInputs = [ pkgconfig cmake glib qt4 boost libsigrok - libsigrokdecode libserialport libzip udev libusb1 libftdi + libsigrokdecode libserialport libzip udev libusb1 libftdi glibmm ]; meta = with stdenv.lib; { diff --git a/pkgs/applications/science/logic/leo2/default.nix b/pkgs/applications/science/logic/leo2/default.nix index 95012f90a94..da4517cd6b0 100644 --- a/pkgs/applications/science/logic/leo2/default.nix +++ b/pkgs/applications/science/logic/leo2/default.nix @@ -13,7 +13,7 @@ let baseName="leo2"; version = "1.6.2"; name="${baseName}_v${version}"; - url="page.mi.fu-berlin.de/cbenzmueller/leo/leo2_v${version}.tgz"; + url = "http://page.mi.fu-berlin.de/cbenzmueller/leo/leo2_v${version}.tgz"; hash="d46a94f5991623386eb9061cfb0d748e258359a8c690fded173d35303e0e9e3a"; }; in diff --git a/pkgs/applications/video/tivodecode/default.nix b/pkgs/applications/video/tivodecode/default.nix new file mode 100644 index 00000000000..bc724102511 --- /dev/null +++ b/pkgs/applications/video/tivodecode/default.nix @@ -0,0 +1,20 @@ +{ stdenv, fetchurl }: + +let + version = "0.2pre4"; + +in + +stdenv.mkDerivation { + name = "tivodecode-${version}"; + + src = fetchurl { + url = "mirror://sourceforge/tivodecode/tivodecode/${version}/tivodecode-${version}.tar.gz"; + sha256 = "1pww5r2iygscqn20a1cz9xbfh18p84a6a5ifg4h5nvyn9b63k23q"; + }; + + meta = { + description = "Converts a .TiVo file (produced by TiVoToGo) to a normal MPEG file"; + homepage = http://tivodecode.sourceforge.net; + }; +} \ No newline at end of file diff --git a/pkgs/applications/window-managers/stumpwm/default.nix b/pkgs/applications/window-managers/stumpwm/default.nix index c47a464a4fc..d19a537cadc 100644 --- a/pkgs/applications/window-managers/stumpwm/default.nix +++ b/pkgs/applications/window-managers/stumpwm/default.nix @@ -6,8 +6,8 @@ let version = "0.9.9"; contrib = (fetchgit { url = "https://github.com/stumpwm/stumpwm-contrib.git"; - rev = "e139885fffcedaeba4b263e4575daae4364cad52"; - sha256 = "fe75bb27538a56f2d213fb21e06a8983699e129a10da7014ddcf6eed5cd965f8"; + rev = "9bebe3622b2b6c31a6bada9055ef3862fa79b86f"; + sha256 = "1ml6mjk2fsfv4sf65fdbji3q5x0qiq99g1k8w7a99gsl2i8h60gc"; }); in stdenv.mkDerivation rec { diff --git a/pkgs/build-support/fetchurl/mirrors.nix b/pkgs/build-support/fetchurl/mirrors.nix index 6de94ab511b..47b721b030d 100644 --- a/pkgs/build-support/fetchurl/mirrors.nix +++ b/pkgs/build-support/fetchurl/mirrors.nix @@ -345,4 +345,11 @@ rec { pypi = [ https://pypi.io/packages/source/ ]; + + # Mozilla projects. + mozilla = [ + http://download.cdn.mozilla.net/pub/mozilla.org/ + https://archive.mozilla.org/pub/ + ]; + } diff --git a/pkgs/build-support/grsecurity/default.nix b/pkgs/build-support/grsecurity/default.nix index e06c02a294f..7777b600062 100644 --- a/pkgs/build-support/grsecurity/default.nix +++ b/pkgs/build-support/grsecurity/default.nix @@ -8,6 +8,7 @@ let config = { mode = "auto"; sysctl = false; + denyChrootCaps = false; denyChrootChmod = false; denyUSB = false; restrictProc = false; @@ -112,6 +113,7 @@ let } GRKERNSEC_SYSCTL ${boolToKernOpt cfg.config.sysctl} + GRKERNSEC_CHROOT_CAPS ${boolToKernOpt cfg.config.denyChrootCaps} GRKERNSEC_CHROOT_CHMOD ${boolToKernOpt cfg.config.denyChrootChmod} GRKERNSEC_DENYUSB ${boolToKernOpt cfg.config.denyUSB} GRKERNSEC_NO_RBAC ${boolToKernOpt cfg.config.disableRBAC} diff --git a/pkgs/build-support/vm/default.nix b/pkgs/build-support/vm/default.nix index 50c18360b8a..4718e2d72f6 100644 --- a/pkgs/build-support/vm/default.nix +++ b/pkgs/build-support/vm/default.nix @@ -572,10 +572,11 @@ rec { strongly connected components. See deb/deb-closure.nix. */ fillDiskWithDebs = - { size ? 4096, debs, name, fullName, postInstall ? null, createRootFS ? defaultCreateRootFS }: + { size ? 4096, debs, name, fullName, postInstall ? null, createRootFS ? defaultCreateRootFS + , QEMU_OPTS ? "", memSize ? 512 }: runInLinuxVM (stdenv.mkDerivation { - inherit name postInstall; + inherit name postInstall QEMU_OPTS memSize; debs = (lib.intersperse "|" debs); @@ -734,7 +735,8 @@ rec { makeImageFromDebDist = { name, fullName, size ? 4096, urlPrefix , packagesList ? "", packagesLists ? [packagesList] - , packages, extraPackages ? [], postInstall ? "" }: + , packages, extraPackages ? [], postInstall ? "" + , QEMU_OPTS ? "", memSize ? 512 }: let expr = debClosureGenerator { @@ -743,7 +745,7 @@ rec { }; in (fillDiskWithDebs { - inherit name fullName size postInstall; + inherit name fullName size postInstall QEMU_OPTS memSize; debs = import expr {inherit fetchurl;}; }) // {inherit expr;}; diff --git a/pkgs/data/fonts/tempora-lgc/default.nix b/pkgs/data/fonts/tempora-lgc/default.nix index 53aefe9c31a..c934bdb70e3 100644 --- a/pkgs/data/fonts/tempora-lgc/default.nix +++ b/pkgs/data/fonts/tempora-lgc/default.nix @@ -2,19 +2,19 @@ let srcs = [ (fetchurl { - url = "www.ttfotf.com/download-font/tempora-lgc-unicode-bold-italic.otf"; + url = http://www.ttfotf.com/download-font/tempora-lgc-unicode-bold-italic.otf; sha256 = "1yfbi62j6gjmzglxz29m6x6lxqpxghcqjjh916qn8in74ba5v0gq"; }) (fetchurl { - url = "www.ttfotf.com/download-font/tempora-lgc-unicode-bold.otf"; + url = http://www.ttfotf.com/download-font/tempora-lgc-unicode-bold.otf; sha256 = "0bfbl1h9h1022km2rg1zwl9lpabhnwdsvzdp0bwmf0wbm62550cp"; }) (fetchurl { - url = "www.ttfotf.com/download-font/tempora-lgc-unicode-italic.otf"; + url = http://www.ttfotf.com/download-font/tempora-lgc-unicode-italic.otf; sha256 = "10m9j4bvr6c4zp691wxm4hvzhph2zlfsxk1nmbsb9vn1i6vfgz04"; }) (fetchurl { - url = "www.ttfotf.com/download-font/tempora-lgc-unicode.otf"; + url = http://www.ttfotf.com/download-font/tempora-lgc-unicode.otf; sha256 = "0iwa8wyydcpjss6d1jy4jibqxpvzph4vmaxwwmndpsqy1fz64y9i"; }) ]; diff --git a/pkgs/data/fonts/xits-math/default.nix b/pkgs/data/fonts/xits-math/default.nix new file mode 100644 index 00000000000..773aa74ce39 --- /dev/null +++ b/pkgs/data/fonts/xits-math/default.nix @@ -0,0 +1,28 @@ +{ stdenv, fetchFromGitHub }: + +stdenv.mkDerivation rec { + name = "xits-math-${version}"; + version = "1.108"; + + src = fetchFromGitHub { + owner = "khaledhosny"; + repo = "xits-math"; + rev = "v${version}"; + sha256 = "08nn676c41a7gmmhrzi8mm0g74z8aiaafjk48pqcwxvjj9av7xjg"; + }; + + phases = [ "unpackPhase" "installPhase" ]; + + installPhase = '' + mkdir -p $out/share/fonts/opentype + cp *.otf $out/share/fonts/opentype + ''; + + meta = with stdenv.lib; { + homepage = https://github.com/khaledhosny/xits-math; + description = "OpenType implementation of STIX fonts with math support"; + license = licenses.ofl; + platforms = platforms.all; + maintainers = with maintainers; [ abbradar ]; + }; +} diff --git a/pkgs/data/misc/geolite-legacy/default.nix b/pkgs/data/misc/geolite-legacy/default.nix index d9693136bf2..cf1c5301ea0 100644 --- a/pkgs/data/misc/geolite-legacy/default.nix +++ b/pkgs/data/misc/geolite-legacy/default.nix @@ -8,7 +8,7 @@ let in stdenv.mkDerivation rec { name = "geolite-legacy-${version}"; - version = "2016-05-03"; + version = "2016-05-09"; srcGeoIP = fetchDB "GeoLiteCountry/GeoIP.dat.gz" "GeoIP.dat.gz" @@ -24,10 +24,10 @@ stdenv.mkDerivation rec { "1v8wdqh6yjicb7bdcxp7v5dimlrny1fiynf4wr6wh65vr738csy2"; srcGeoIPASNum = fetchDB "asnum/GeoIPASNum.dat.gz" "GeoIPASNum.dat.gz" - "04gyrb5qyy3i1p9lgnls90irq3s64y5qfcqj91nx4x68r7dixnai"; + "0a8m521r1b4q88d7zffnkgvn9hjxcr7jzwd9qmnzjxfl5r7iiwzr"; srcGeoIPASNumv6 = fetchDB "asnum/GeoIPASNumv6.dat.gz" "GeoIPASNumv6.dat.gz" - "1l9j97bk3mbv5b6lxva6ig590gl7097xr0vayz5mpsfx5d37r4zw"; + "079a88ybfbbhqslm2hf72lpl2rjr6s6nz3cahay6m8ahaga9y75s"; meta = with stdenv.lib; { description = "GeoLite Legacy IP geolocation databases"; diff --git a/pkgs/data/misc/mobile-broadband-provider-info/default.nix b/pkgs/data/misc/mobile-broadband-provider-info/default.nix index 94a65f6e63e..0c4e5bc2a13 100644 --- a/pkgs/data/misc/mobile-broadband-provider-info/default.nix +++ b/pkgs/data/misc/mobile-broadband-provider-info/default.nix @@ -1,7 +1,7 @@ { stdenv, fetchurl }: let - version = "20120614"; + version = "20151214"; pname = "mobile-broadband-provider-info"; name = "${pname}-${version}"; in @@ -10,7 +10,7 @@ stdenv.mkDerivation rec { src = fetchurl { url = "mirror://gnome/sources/${pname}/${version}/${name}.tar.xz"; - sha256 = "72507a732e0cd16cf27424bb094b1c7a03e2206c119ad124722a283e587755f1"; + sha256 = "1905nab1h8p4hx0m1w0rn4mkg9209x680dcr4l77bngy21pmvr4a"; }; meta = { diff --git a/pkgs/development/compilers/dev86/default.nix b/pkgs/development/compilers/dev86/default.nix index f37dae80830..c9d58e433f6 100644 --- a/pkgs/development/compilers/dev86/default.nix +++ b/pkgs/development/compilers/dev86/default.nix @@ -1,25 +1,18 @@ { stdenv, fetchurl }: -stdenv.mkDerivation { - name = "dev86-0.16.19"; +stdenv.mkDerivation rec { + name = "dev86-${version}"; + version = "0.16.21"; src = fetchurl { - url = http://www.debath.co.uk/dev86/Dev86src-0.16.19.tar.gz; - sha256 = "33398b87ca85e2b69e4062cf59f2f7354af46da5edcba036c6f97bae17b8d00e"; + url = "http://v3.sk/~lkundrak/dev86/Dev86src-${version}.tar.gz"; + sha256 = "154dyr2ph4n0kwi8yx0n78j128kw29rk9r9f7s2gddzrdl712jr3"; }; makeFlags = "PREFIX=$(out)"; - # Awful hackery to get dev86 to compile with recent gcc/binutils. - # See http://bugs.gentoo.org/214964 for some inconclusive - # discussion. - preBuild = - '' - substituteInPlace makefile.in --replace "-O2" "" --replace "-O" "" - ''; - meta = { description = "Linux 8086 development environment"; - homepage = http://www.debath.co.uk/; + homepage = http://v3.sk/~lkundrak/dev86/; }; } diff --git a/pkgs/development/compilers/elm/packages/elm-compiler.nix b/pkgs/development/compilers/elm/packages/elm-compiler.nix index 38913e501b0..ac0e2c23632 100644 --- a/pkgs/development/compilers/elm/packages/elm-compiler.nix +++ b/pkgs/development/compilers/elm/packages/elm-compiler.nix @@ -7,11 +7,11 @@ }: mkDerivation { pname = "elm-compiler"; - version = "0.16"; + version = "0.17"; src = fetchgit { url = "https://github.com/elm-lang/elm-compiler"; - sha256 = "b3bcdca469716f3a4195469549a9e9bc53a6030aff132ec620b9c93958a5ffe6"; - rev = "df86c1c9b3cf06de3ccb78f26b4d2fac0129ce5a"; + sha256 = "185mh53yyxh9m0z8808fxpds3vqyrbhahf587nnw6qzyzv63m7px"; + rev = "c9c7e72c424a13255f8ee84c719f7ef48b689c1a"; }; isLibrary = true; isExecutable = true; diff --git a/pkgs/development/compilers/elm/packages/elm-make.nix b/pkgs/development/compilers/elm/packages/elm-make.nix index 923caf8e4c8..862adb460e3 100644 --- a/pkgs/development/compilers/elm/packages/elm-make.nix +++ b/pkgs/development/compilers/elm/packages/elm-make.nix @@ -1,22 +1,22 @@ { mkDerivation, aeson, ansi-terminal, ansi-wl-pprint, base, binary , blaze-html, blaze-markup, bytestring, containers, directory , elm-compiler, elm-package, fetchgit, filepath, mtl -, optparse-applicative, stdenv, text, time +, optparse-applicative, stdenv, text, time, raw-strings-qq }: mkDerivation { pname = "elm-make"; - version = "0.16"; + version = "0.17"; src = fetchgit { url = "https://github.com/elm-lang/elm-make"; - sha256 = "fc0a6ed08b236dfab43e9af73f8e83a3b88a155695a9671a2b291dc596a75116"; - rev = "54e0b33fea0cd72400ac6a3dec7643bf1b900741"; + sha256 = "0y8a67y8jhnhbcqzgjymyf1ffs75vyfpyb8as2bi0mkhb7fvzi6q"; + rev = "5f7b74567c43eff341048c7caceb247b51cdb8bb"; }; isLibrary = false; isExecutable = true; executableHaskellDepends = [ aeson ansi-terminal ansi-wl-pprint base binary blaze-html blaze-markup bytestring containers directory elm-compiler - elm-package filepath mtl optparse-applicative text time + elm-package filepath mtl optparse-applicative text time raw-strings-qq ]; jailbreak = true; homepage = "http://elm-lang.org"; diff --git a/pkgs/development/compilers/elm/packages/elm-package.nix b/pkgs/development/compilers/elm/packages/elm-package.nix index db57df970ee..5d2b4f8baba 100644 --- a/pkgs/development/compilers/elm/packages/elm-package.nix +++ b/pkgs/development/compilers/elm/packages/elm-package.nix @@ -6,11 +6,11 @@ }: mkDerivation { pname = "elm-package"; - version = "0.16"; + version = "0.17"; src = fetchgit { url = "https://github.com/elm-lang/elm-package"; - sha256 = "836789a823ab1d97a37907396856d8808c5573e295315c0a55e5bb44915fba4b"; - rev = "6305a7954a45d1635d6a7185f2dcf136c376074f"; + sha256 = "1x9jczby38ax3rbjq6hbyr593dhxazm39gy9jv00k6508dzvfg2l"; + rev = "fc0924210fe5a7c0af543769b1353dbb2ddf2f0c"; }; isLibrary = true; isExecutable = true; diff --git a/pkgs/development/compilers/elm/packages/elm-reactor-elm.nix b/pkgs/development/compilers/elm/packages/elm-reactor-elm.nix index e75744013c4..be37b2084f1 100644 --- a/pkgs/development/compilers/elm/packages/elm-reactor-elm.nix +++ b/pkgs/development/compilers/elm/packages/elm-reactor-elm.nix @@ -1,18 +1,22 @@ { - "evancz/virtual-dom" = { - version = "2.1.0"; - sha256 = "0x072vk2x9md5pxwc3f3v7gm738wr996d54avzzadfvj3qcjxpfs"; + "elm-lang/virtual-dom" = { + version = "1.0.0"; + sha256 = "0pa8k04g9yfixahsb30j0rbhfh6hwdh7xmm2fvk0hkidw7b4xg57"; }; "evancz/elm-markdown" = { - version = "2.0.0"; - sha256 = "1x1kvwag7idxif4gsznnx0lp1c49dl9pin3aj0dq21lzradggn3g"; + version = "3.0.0"; + sha256 = "1wlr8sgnyq6qgh5rcjy7imfmpqxrxgmmqcfx6p541fs70yiqya12"; }; - "evancz/elm-html" = { - version = "4.0.2"; - sha256 = "05hzsnsqp2krd9s4xjwhmvyafpky4dc40bbk9sgsr301450cfgw6"; + "elm-lang/html" = { + version = "1.0.0"; + sha256 = "16cr01yxkpkmgbgclp2p80nd62a6fjw3qipzjsgksrhwv9vv4gm4"; }; "elm-lang/core" = { - version = "3.0.0"; - sha256 = "18pdsnz05pjhdv575l3bqzrjd7780zgpcklg4c6lvwwcanpg42pk"; + version = "4.0.0"; + sha256 = "04qgzgv90qyhjk55yw4szy50h2dqdlm0a2padbgn02yf4bb1b4nw"; + }; + "elm-lang/svg" = { + version = "1.0.0"; + sha256 = "0c29y6c58x2sq1bl29z1hr5gi2rlza8clk7ssgzmsf4xbvcczbjx"; }; } diff --git a/pkgs/development/compilers/elm/packages/elm-reactor.nix b/pkgs/development/compilers/elm/packages/elm-reactor.nix index 90fdb68480c..18bb428a7a6 100644 --- a/pkgs/development/compilers/elm/packages/elm-reactor.nix +++ b/pkgs/development/compilers/elm/packages/elm-reactor.nix @@ -1,22 +1,22 @@ { mkDerivation, base, blaze-html, blaze-markup, bytestring, cmdargs , directory, elm-compiler, fetchgit, filepath, fsnotify, mtl , snap-core, snap-server, stdenv, text, time, transformers -, websockets, websockets-snap +, websockets, websockets-snap, elm-package, file-embed }: mkDerivation { pname = "elm-reactor"; - version = "0.16"; + version = "0.17"; src = fetchgit { url = "https://github.com/elm-lang/elm-reactor"; - sha256 = "55605b8443dad20c78e297ce35a603cb107b0c1e57bf1c4710faaebc60396de0"; - rev = "b03166296d11e240fa04cdb748e1f3c4af7afc83"; + sha256 = "14hb16qwx1f4bfngh87pwjavgz6njbwdxlsy218rw3xydy3s1cn3"; + rev = "4781ad2fbb6cbcde0d659dec293bbed9c847ba71"; }; isLibrary = false; isExecutable = true; executableHaskellDepends = [ base blaze-html blaze-markup bytestring cmdargs directory elm-compiler filepath fsnotify mtl snap-core snap-server text time - transformers websockets websockets-snap + transformers websockets websockets-snap elm-package file-embed ]; jailbreak = true; homepage = "http://elm-lang.org"; diff --git a/pkgs/development/compilers/elm/packages/elm-repl.nix b/pkgs/development/compilers/elm/packages/elm-repl.nix index 656fd18c721..4be7b023fa0 100644 --- a/pkgs/development/compilers/elm/packages/elm-repl.nix +++ b/pkgs/development/compilers/elm/packages/elm-repl.nix @@ -5,11 +5,11 @@ }: mkDerivation { pname = "elm-repl"; - version = "0.16"; + version = "0.17"; src = fetchgit { url = "https://github.com/elm-lang/elm-repl"; - sha256 = "36d50cf1f86815900afd4b75da6e5cd15008b2652e97ffed0f321a28e6442874"; - rev = "265de7283488964f44f0257a8b4a055ad8af984d"; + sha256 = "1mxg99w36b8i43kl1nxp7fd86igi5wyj08m9mraiq58vpcgyqnzq"; + rev = "95b4555cff6b6e2a55a4ea3dab00bfb39dfebf0d"; }; isLibrary = false; isExecutable = true; diff --git a/pkgs/development/compilers/elm/packages/release.nix b/pkgs/development/compilers/elm/packages/release.nix index b1826260f8f..742ada2481e 100644 --- a/pkgs/development/compilers/elm/packages/release.nix +++ b/pkgs/development/compilers/elm/packages/release.nix @@ -1,6 +1,6 @@ { callPackage }: { - version = "0.16.0"; + version = "0.17.0"; packages = { elm-compiler = callPackage ./elm-compiler.nix { }; elm-package = callPackage ./elm-package.nix { }; diff --git a/pkgs/development/compilers/julia/0003-no-ldconfig.patch b/pkgs/development/compilers/julia/0003-no-ldconfig.patch index d490b704927..06d1a57ed62 100644 --- a/pkgs/development/compilers/julia/0003-no-ldconfig.patch +++ b/pkgs/development/compilers/julia/0003-no-ldconfig.patch @@ -21,9 +21,9 @@ index 22015ff..2821192 100644 - FILE *ldc = popen("/sbin/ldconfig -r", "r"); -#endif + FILE *ldc = popen("true", "r"); + if (ldc == NULL) return; // ignore errors in running ldconfig (other than whatever might have been printed to stderr) while (!feof(ldc)) { - ssize_t n = getline(&line, &sz, ldc); -- 2.5.2 diff --git a/pkgs/development/compilers/julia/default.nix b/pkgs/development/compilers/julia/default.nix index 9e90ecfbe21..1dc6805bcd3 100644 --- a/pkgs/development/compilers/julia/default.nix +++ b/pkgs/development/compilers/julia/default.nix @@ -33,10 +33,10 @@ let sha256 = "03kaqbjbi6viz0n33dk5jlf6ayxqlsq4804n7kwkndiga9s4hd42"; }; - libuvVersion = "9ab431a88fe255dd21e19a11f7fa2dd95774abf4"; + libuvVersion = "efb40768b7c7bd9f173a7868f74b92b1c5a61a0e"; libuv = fetchurl { url = "https://api.github.com/repos/JuliaLang/libuv/tarball/${libuvVersion}"; - sha256 = "1bh973lbrzrjk7pcjbjnh4n92qldi81ql3aqsclywn2yg07a36h5"; + sha256 = "1znkxyv1cy9pjap7afypipzsn04533ni3pqjd191fdgw2sv9cal7"; }; rmathVersion = "0.1"; @@ -48,12 +48,12 @@ in stdenv.mkDerivation rec { pname = "julia"; - version = "0.4.2"; + version = "0.4.5"; name = "${pname}-${version}"; src = fetchurl { url = "https://github.com/JuliaLang/${pname}/releases/download/v${version}/${name}.tar.gz"; - sha256 = "04i5kjji5553lkdxz3wgflg1mav5ivwy2dascjy8jprqpq33aknk"; + sha256 = "09gc6yf3v4in0qwhrbgjrjgvblp941di0mli4zax22mvf4dzc7s4"; }; prePatch = '' diff --git a/pkgs/development/compilers/sbcl/default.nix b/pkgs/development/compilers/sbcl/default.nix index 946205011f2..893b6efea77 100644 --- a/pkgs/development/compilers/sbcl/default.nix +++ b/pkgs/development/compilers/sbcl/default.nix @@ -9,11 +9,11 @@ stdenv.mkDerivation rec { name = "sbcl-${version}"; - version = "1.3.4"; + version = "1.3.5"; src = fetchurl { url = "mirror://sourceforge/project/sbcl/sbcl/${version}/${name}-source.tar.bz2"; - sha256 = "0zx6z43xfnw1b6v5d3bpjrwgqs14wxlji22nl0lr4wmzbfbzvqli"; + sha256 = "0p3f9bvwdcl84n1l6imww547bdbfsbkvad8iad43jcb2hrpy3wf8"; }; patchPhase = '' diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index e4f4684fb9d..5f1335ca72f 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -306,7 +306,7 @@ self: super: { github-types = dontCheck super.github-types; # http://hydra.cryp.to/build/1114046/nixlog/1/raw hadoop-rpc = dontCheck super.hadoop-rpc; # http://hydra.cryp.to/build/527461/nixlog/2/raw hasql = dontCheck super.hasql; # http://hydra.cryp.to/build/502489/nixlog/4/raw - hjsonschema = overrideCabal (super.hjsonschema.override { hjsonpointer = self.hjsonpointer_0_2_0_4; }) (drv: { testTarget = "local"; }); + hjsonschema = overrideCabal super.hjsonschema (drv: { testTarget = "local"; }); hoogle = overrideCabal super.hoogle (drv: { testTarget = "--test-option=--no-net"; }); marmalade-upload = dontCheck super.marmalade-upload; # http://hydra.cryp.to/build/501904/nixlog/1/raw network-transport-tcp = dontCheck super.network-transport-tcp; @@ -786,8 +786,6 @@ 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" ) @@ -941,9 +939,6 @@ self: super: { # Looks like Avahi provides the missing library dnssd = super.dnssd.override { dns_sd = pkgs.avahi.override { withLibdnssdCompat = true; }; }; - # https://github.com/danidiaz/pipes-transduce/issues/2 - pipes-transduce = super.pipes-transduce.override { foldl = self.foldl_1_1_6; }; - # Haste stuff haste-Cabal = self.callPackage ../tools/haskell/haste/haste-Cabal.nix {}; haste-cabal-install = self.callPackage ../tools/haskell/haste/haste-cabal-install.nix { Cabal = self.haste-Cabal; HTTP = self.HTTP_4000_2_23; }; 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 60c4146c79b..7e82d94e348 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix @@ -33,33 +33,17 @@ self: super: { unix = null; xhtml = null; - # ekmett/linear#74 - linear = overrideCabal super.linear (drv: { - prePatch = "sed -i 's/-Werror//g' linear.cabal"; - }); - - # Cabal_1_22_1_1 requires filepath >=1 && <1.4 + # Our core version of Cabal is good enough for this build. cabal-install = dontCheck (super.cabal-install.override { Cabal = null; }); - # Don't compile jailbreak-cabal with Cabal 1.22.x because of https://github.com/peti/jailbreak-cabal/issues/9. - Cabal_1_23_0_0 = overrideCabal super.Cabal_1_22_4_0 (drv: { - version = "1.23.0.0"; - src = pkgs.fetchFromGitHub { - owner = "haskell"; - repo = "cabal"; - rev = "fe7b8784ac0a5848974066bdab76ce376ba67277"; - sha256 = "1d70ryz1l49pkr70g8r9ysqyg1rnx84wwzx8hsg6vwnmg0l5am7s"; - }; - jailbreak = false; - doHaddock = false; - postUnpack = "sourceRoot+=/Cabal"; - }); - jailbreak-cabal = super.jailbreak-cabal.override { - Cabal = self.Cabal_1_23_0_0; - mkDerivation = drv: self.mkDerivation (drv // { - preConfigure = "sed -i -e 's/Cabal == 1.20\\.\\*/Cabal >= 1.23/' jailbreak-cabal.cabal"; - }); - }; + # Enable latest version of cabal-install. + cabal-install_1_24_0_0 = (doDistribute (dontJailbreak (dontCheck (super.cabal-install_1_24_0_0)))).overrideScope (self: super: { Cabal = self.Cabal_1_24_0_0; }); + + # Jailbreaking is required for the test suite only (which we don't run). + Cabal_1_24_0_0 = dontJailbreak (dontCheck super.Cabal_1_24_0_0); + + # Build jailbreak-cabal with the latest version of Cabal. + jailbreak-cabal = super.jailbreak-cabal.override { Cabal = self.Cabal_1_24_0_0; }; idris = overrideCabal super.idris (drv: { # "idris" binary cannot find Idris library otherwise while building. @@ -206,4 +190,11 @@ self: super: { # Trigger rebuild to mitigate broken packaes on Hydra. amazonka-core = triggerRebuild super.amazonka-core 1; + # https://github.com/thoughtpolice/hs-ed25519/issues/13 + ed25519 = dontCheck super.ed25519; + + # https://github.com/well-typed/hackage-security/issues/157 + # https://github.com/well-typed/hackage-security/issues/158 + hackage-security = dontHaddock (dontCheck super.hackage-security); + } diff --git a/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix b/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix index c7f67fde221..b7195ac60c7 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix @@ -149,4 +149,16 @@ self: super: { trifecta = doJailbreak super.trifecta; turtle = doJailbreak super.turtle; + + ghcjs-prim = self.callPackage ({ mkDerivation, fetchgit, primitive }: mkDerivation { + pname = "ghcjs-prim"; + version = "0.1.0.0"; + src = fetchgit { + url = git://github.com/ghcjs/ghcjs-prim.git; + rev = "dfeaab2aafdfefe46bf12960d069f28d2e5f1454"; # ghc-7.10 branch + sha256 = "19kyb26nv1hdpp0kc2gaxkq5drw5ib4za0641py5i4bbf1g58yvy"; + }; + buildDepends = [ primitive ]; + license = pkgs.stdenv.lib.licenses.bsd3; + }) {}; } diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml index be659d26ee7..36e498d4be1 100644 --- a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml +++ b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml @@ -45,7 +45,6 @@ extra-packages: - gloss < 1.9.3 # new versions don't compile with GHC 7.8.x - haddock-api < 2.16 # required on GHC 7.8.x - haskell-src-exts < 1.16 # required for structured-haskell-mode-1.0.8 - - hjsonpointer == 0.2.0.4 # required for hjsonschema-0.8.0.1 - mtl < 2.2 # newer versions require transformers > 0.4.x, which we cannot provide in GHC 7.8.x - mtl-prelude < 2 # required for to build postgrest on mtl 2.1.x platforms - parallel == 3.2.0.3 # newer versions don't work with GHC 6.12.3 diff --git a/pkgs/development/haskell-modules/configuration-lts-0.0.nix b/pkgs/development/haskell-modules/configuration-lts-0.0.nix index e4a68377f17..650cbd38e6e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.0.nix @@ -113,6 +113,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1189,6 +1190,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1283,6 +1285,7 @@ self: super: { "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = dontDistribute super."amazonka-cognito-identity"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = dontDistribute super."amazonka-cognito-sync"; "amazonka-config" = dontDistribute super."amazonka-config"; "amazonka-core" = dontDistribute super."amazonka-core"; @@ -2458,6 +2461,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; @@ -3636,6 +3640,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4592,6 +4597,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_6"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4604,6 +4610,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = dontDistribute super."hpc-coveralls"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4918,6 +4925,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5254,6 +5262,7 @@ self: super: { "json" = dontDistribute super."json"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = dontDistribute super."json-autotype"; "json-b" = dontDistribute super."json-b"; @@ -5627,6 +5636,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5983,6 +5993,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_0_3_3_0"; "monad-coroutine" = doDistribute super."monad-coroutine_0_8"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-extras" = doDistribute super."monad-extras_0_5_9"; "monad-fork" = dontDistribute super."monad-fork"; @@ -6970,6 +6981,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = dontDistribute super."protocol-buffers"; "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7613,6 +7625,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = dontDistribute super."servant-server"; @@ -7893,6 +7906,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "sodium" = doDistribute super."sodium_0_11_0_2"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; @@ -8212,6 +8226,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8415,6 +8430,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8539,6 +8555,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8592,6 +8609,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = dontDistribute super."tttool"; "tubes" = dontDistribute super."tubes"; @@ -8722,6 +8740,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -9058,6 +9077,7 @@ self: super: { "web-routing" = dontDistribute super."web-routing"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.1.nix b/pkgs/development/haskell-modules/configuration-lts-0.1.nix index 74f7ad4a489..4cafbf175bc 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.1.nix @@ -113,6 +113,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1189,6 +1190,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1283,6 +1285,7 @@ self: super: { "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = dontDistribute super."amazonka-cognito-identity"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = dontDistribute super."amazonka-cognito-sync"; "amazonka-config" = dontDistribute super."amazonka-config"; "amazonka-core" = dontDistribute super."amazonka-core"; @@ -2458,6 +2461,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; @@ -3636,6 +3640,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4592,6 +4597,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_6"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4604,6 +4610,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = dontDistribute super."hpc-coveralls"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4918,6 +4925,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5254,6 +5262,7 @@ self: super: { "json" = dontDistribute super."json"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = dontDistribute super."json-autotype"; "json-b" = dontDistribute super."json-b"; @@ -5627,6 +5636,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5983,6 +5993,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_0_3_3_0"; "monad-coroutine" = doDistribute super."monad-coroutine_0_8"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-extras" = doDistribute super."monad-extras_0_5_9"; "monad-fork" = dontDistribute super."monad-fork"; @@ -6970,6 +6981,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = dontDistribute super."protocol-buffers"; "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7613,6 +7625,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = dontDistribute super."servant-server"; @@ -7893,6 +7906,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "sodium" = doDistribute super."sodium_0_11_0_2"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; @@ -8212,6 +8226,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8415,6 +8430,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8539,6 +8555,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8592,6 +8609,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = dontDistribute super."tttool"; "tubes" = dontDistribute super."tubes"; @@ -8722,6 +8740,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -9058,6 +9077,7 @@ self: super: { "web-routing" = dontDistribute super."web-routing"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.2.nix b/pkgs/development/haskell-modules/configuration-lts-0.2.nix index ae72d4f2d44..443563ba934 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.2.nix @@ -113,6 +113,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1189,6 +1190,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1283,6 +1285,7 @@ self: super: { "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = dontDistribute super."amazonka-cognito-identity"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = dontDistribute super."amazonka-cognito-sync"; "amazonka-config" = dontDistribute super."amazonka-config"; "amazonka-core" = dontDistribute super."amazonka-core"; @@ -2458,6 +2461,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; @@ -3636,6 +3640,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4592,6 +4597,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_6"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4604,6 +4610,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = dontDistribute super."hpc-coveralls"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4918,6 +4925,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5254,6 +5262,7 @@ self: super: { "json" = dontDistribute super."json"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = dontDistribute super."json-autotype"; "json-b" = dontDistribute super."json-b"; @@ -5627,6 +5636,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5983,6 +5993,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_0_3_3_0"; "monad-coroutine" = doDistribute super."monad-coroutine_0_8"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-extras" = doDistribute super."monad-extras_0_5_9"; "monad-fork" = dontDistribute super."monad-fork"; @@ -6970,6 +6981,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = dontDistribute super."protocol-buffers"; "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7613,6 +7625,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = dontDistribute super."servant-server"; @@ -7893,6 +7906,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "sodium" = doDistribute super."sodium_0_11_0_2"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; @@ -8212,6 +8226,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8415,6 +8430,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8539,6 +8555,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8592,6 +8609,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = dontDistribute super."tttool"; "tubes" = dontDistribute super."tubes"; @@ -8722,6 +8740,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -9058,6 +9077,7 @@ self: super: { "web-routing" = dontDistribute super."web-routing"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.3.nix b/pkgs/development/haskell-modules/configuration-lts-0.3.nix index 54f08ded622..480526af9a2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.3.nix @@ -113,6 +113,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1189,6 +1190,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1283,6 +1285,7 @@ self: super: { "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = dontDistribute super."amazonka-cognito-identity"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = dontDistribute super."amazonka-cognito-sync"; "amazonka-config" = dontDistribute super."amazonka-config"; "amazonka-core" = dontDistribute super."amazonka-core"; @@ -2458,6 +2461,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; @@ -3636,6 +3640,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4592,6 +4597,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_6"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4604,6 +4610,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = dontDistribute super."hpc-coveralls"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4918,6 +4925,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5254,6 +5262,7 @@ self: super: { "json" = dontDistribute super."json"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = dontDistribute super."json-autotype"; "json-b" = dontDistribute super."json-b"; @@ -5627,6 +5636,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5983,6 +5993,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_0_3_3_0"; "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-extras" = doDistribute super."monad-extras_0_5_9"; "monad-fork" = dontDistribute super."monad-fork"; @@ -6970,6 +6981,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = dontDistribute super."protocol-buffers"; "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7613,6 +7625,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = dontDistribute super."servant-server"; @@ -7893,6 +7906,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "sodium" = doDistribute super."sodium_0_11_0_2"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; @@ -8212,6 +8226,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8415,6 +8430,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8539,6 +8555,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8592,6 +8609,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = dontDistribute super."tttool"; "tubes" = dontDistribute super."tubes"; @@ -8722,6 +8740,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -9058,6 +9077,7 @@ self: super: { "web-routing" = dontDistribute super."web-routing"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.4.nix b/pkgs/development/haskell-modules/configuration-lts-0.4.nix index 0ab2ae057da..4083103c25d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.4.nix @@ -113,6 +113,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1189,6 +1190,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1283,6 +1285,7 @@ self: super: { "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = dontDistribute super."amazonka-cognito-identity"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = dontDistribute super."amazonka-cognito-sync"; "amazonka-config" = dontDistribute super."amazonka-config"; "amazonka-core" = dontDistribute super."amazonka-core"; @@ -2458,6 +2461,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; @@ -3635,6 +3639,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4589,6 +4594,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_6"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4601,6 +4607,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = dontDistribute super."hpc-coveralls"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4915,6 +4922,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5251,6 +5259,7 @@ self: super: { "json" = dontDistribute super."json"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = dontDistribute super."json-autotype"; "json-b" = dontDistribute super."json-b"; @@ -5624,6 +5633,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5980,6 +5990,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_0_3_3_0"; "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-extras" = doDistribute super."monad-extras_0_5_9"; "monad-fork" = dontDistribute super."monad-fork"; @@ -6967,6 +6978,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = dontDistribute super."protocol-buffers"; "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7609,6 +7621,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = dontDistribute super."servant-server"; @@ -7889,6 +7902,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "sodium" = doDistribute super."sodium_0_11_0_2"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; @@ -8208,6 +8222,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8411,6 +8426,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8535,6 +8551,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8588,6 +8605,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = dontDistribute super."tttool"; "tubes" = dontDistribute super."tubes"; @@ -8718,6 +8736,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -9054,6 +9073,7 @@ self: super: { "web-routing" = dontDistribute super."web-routing"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.5.nix b/pkgs/development/haskell-modules/configuration-lts-0.5.nix index 39ebdb342de..46d0d2119f8 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.5.nix @@ -113,6 +113,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1189,6 +1190,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1283,6 +1285,7 @@ self: super: { "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = dontDistribute super."amazonka-cognito-identity"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = dontDistribute super."amazonka-cognito-sync"; "amazonka-config" = dontDistribute super."amazonka-config"; "amazonka-core" = dontDistribute super."amazonka-core"; @@ -2458,6 +2461,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; @@ -3635,6 +3639,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4589,6 +4594,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_6"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4601,6 +4607,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = dontDistribute super."hpc-coveralls"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4915,6 +4922,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5251,6 +5259,7 @@ self: super: { "json" = dontDistribute super."json"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = dontDistribute super."json-autotype"; "json-b" = dontDistribute super."json-b"; @@ -5624,6 +5633,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5980,6 +5990,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_0_3_3_0"; "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-extras" = doDistribute super."monad-extras_0_5_9"; "monad-fork" = dontDistribute super."monad-fork"; @@ -6967,6 +6978,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = dontDistribute super."protocol-buffers"; "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7609,6 +7621,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = dontDistribute super."servant-server"; @@ -7889,6 +7902,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "sodium" = doDistribute super."sodium_0_11_0_2"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; @@ -8208,6 +8222,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8411,6 +8426,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8535,6 +8551,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8588,6 +8605,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = dontDistribute super."tttool"; "tubes" = dontDistribute super."tubes"; @@ -8718,6 +8736,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -9054,6 +9073,7 @@ self: super: { "web-routing" = dontDistribute super."web-routing"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.6.nix b/pkgs/development/haskell-modules/configuration-lts-0.6.nix index 07e0797c5ee..ace7afaccec 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.6.nix @@ -113,6 +113,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1188,6 +1189,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1282,6 +1284,7 @@ self: super: { "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = dontDistribute super."amazonka-cognito-identity"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = dontDistribute super."amazonka-cognito-sync"; "amazonka-config" = dontDistribute super."amazonka-config"; "amazonka-core" = dontDistribute super."amazonka-core"; @@ -2457,6 +2460,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; @@ -3634,6 +3638,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4587,6 +4592,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_6"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4599,6 +4605,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = dontDistribute super."hpc-coveralls"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4913,6 +4920,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5249,6 +5257,7 @@ self: super: { "json" = dontDistribute super."json"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = dontDistribute super."json-autotype"; "json-b" = dontDistribute super."json-b"; @@ -5622,6 +5631,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5978,6 +5988,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_0_3_3_0"; "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-extras" = doDistribute super."monad-extras_0_5_9"; "monad-fork" = dontDistribute super."monad-fork"; @@ -6965,6 +6976,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = dontDistribute super."protocol-buffers"; "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7606,6 +7618,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = dontDistribute super."servant-server"; @@ -7886,6 +7899,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "sodium" = doDistribute super."sodium_0_11_0_2"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; @@ -8205,6 +8219,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8408,6 +8423,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8532,6 +8548,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8585,6 +8602,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = dontDistribute super."tttool"; "tubes" = dontDistribute super."tubes"; @@ -8715,6 +8733,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -9051,6 +9070,7 @@ self: super: { "web-routing" = dontDistribute super."web-routing"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.7.nix b/pkgs/development/haskell-modules/configuration-lts-0.7.nix index 8e486e97dc3..dd0c62bb142 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.7.nix @@ -113,6 +113,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1188,6 +1189,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1282,6 +1284,7 @@ self: super: { "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = dontDistribute super."amazonka-cognito-identity"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = dontDistribute super."amazonka-cognito-sync"; "amazonka-config" = dontDistribute super."amazonka-config"; "amazonka-core" = dontDistribute super."amazonka-core"; @@ -2457,6 +2460,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; @@ -3634,6 +3638,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4587,6 +4592,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_6"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4599,6 +4605,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = dontDistribute super."hpc-coveralls"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4913,6 +4920,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5249,6 +5257,7 @@ self: super: { "json" = dontDistribute super."json"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = dontDistribute super."json-autotype"; "json-b" = dontDistribute super."json-b"; @@ -5622,6 +5631,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5978,6 +5988,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_0_3_3_0"; "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-extras" = doDistribute super."monad-extras_0_5_9"; "monad-fork" = dontDistribute super."monad-fork"; @@ -6965,6 +6976,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = dontDistribute super."protocol-buffers"; "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7606,6 +7618,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = dontDistribute super."servant-server"; @@ -7886,6 +7899,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "sodium" = doDistribute super."sodium_0_11_0_2"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; @@ -8205,6 +8219,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8408,6 +8423,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8532,6 +8548,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8585,6 +8602,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = dontDistribute super."tttool"; "tubes" = dontDistribute super."tubes"; @@ -8715,6 +8733,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -9051,6 +9070,7 @@ self: super: { "web-routing" = dontDistribute super."web-routing"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.0.nix b/pkgs/development/haskell-modules/configuration-lts-1.0.nix index 8db20350fe7..65d6fb97672 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.0.nix @@ -113,6 +113,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1185,6 +1186,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1279,6 +1281,7 @@ self: super: { "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = dontDistribute super."amazonka-cognito-identity"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = dontDistribute super."amazonka-cognito-sync"; "amazonka-config" = dontDistribute super."amazonka-config"; "amazonka-core" = dontDistribute super."amazonka-core"; @@ -2450,6 +2453,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; @@ -3625,6 +3629,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4579,6 +4584,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_6"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4591,6 +4597,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = dontDistribute super."hpc-coveralls"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4904,6 +4911,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5240,6 +5248,7 @@ self: super: { "json" = dontDistribute super."json"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_0_2_5_4"; "json-b" = dontDistribute super."json-b"; @@ -5613,6 +5622,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5969,6 +5979,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_0_3_3_0"; "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-extras" = doDistribute super."monad-extras_0_5_9"; "monad-fork" = dontDistribute super."monad-fork"; @@ -6956,6 +6967,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = dontDistribute super."protocol-buffers"; "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7596,6 +7608,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = dontDistribute super."servant-server"; @@ -7876,6 +7889,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -8194,6 +8208,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8397,6 +8412,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8521,6 +8537,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8574,6 +8591,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = dontDistribute super."tttool"; "tubes" = dontDistribute super."tubes"; @@ -8703,6 +8721,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -9039,6 +9058,7 @@ self: super: { "web-routing" = dontDistribute super."web-routing"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.1.nix b/pkgs/development/haskell-modules/configuration-lts-1.1.nix index 6430eb0b9e6..a4f9f8619ce 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.1.nix @@ -113,6 +113,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1185,6 +1186,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1279,6 +1281,7 @@ self: super: { "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = dontDistribute super."amazonka-cognito-identity"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = dontDistribute super."amazonka-cognito-sync"; "amazonka-config" = dontDistribute super."amazonka-config"; "amazonka-core" = dontDistribute super."amazonka-core"; @@ -2448,6 +2451,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; @@ -3622,6 +3626,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4573,6 +4578,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_8"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4585,6 +4591,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = dontDistribute super."hpc-coveralls"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4898,6 +4905,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5234,6 +5242,7 @@ self: super: { "json" = dontDistribute super."json"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_0_2_5_4"; "json-b" = dontDistribute super."json-b"; @@ -5607,6 +5616,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5962,6 +5972,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_0_3_3_0"; "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-extras" = doDistribute super."monad-extras_0_5_9"; "monad-fork" = dontDistribute super."monad-fork"; @@ -6949,6 +6960,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = dontDistribute super."protocol-buffers"; "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7589,6 +7601,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = dontDistribute super."servant-server"; @@ -7868,6 +7881,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -8185,6 +8199,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8386,6 +8401,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8509,6 +8525,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8562,6 +8579,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = dontDistribute super."tttool"; "tubes" = dontDistribute super."tubes"; @@ -8691,6 +8709,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -9026,6 +9045,7 @@ self: super: { "web-routing" = dontDistribute super."web-routing"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.10.nix b/pkgs/development/haskell-modules/configuration-lts-1.10.nix index 1772ea05317..18f9863b7cf 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.10.nix @@ -113,6 +113,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1184,6 +1185,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1278,6 +1280,7 @@ self: super: { "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = dontDistribute super."amazonka-cognito-identity"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = dontDistribute super."amazonka-cognito-sync"; "amazonka-config" = dontDistribute super."amazonka-config"; "amazonka-core" = dontDistribute super."amazonka-core"; @@ -2444,6 +2447,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; @@ -3613,6 +3617,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4562,6 +4567,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_8"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4574,6 +4580,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = dontDistribute super."hpc-coveralls"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4887,6 +4894,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5218,6 +5226,7 @@ self: super: { "json" = dontDistribute super."json"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_0_2_5_4"; "json-b" = dontDistribute super."json-b"; @@ -5590,6 +5599,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5945,6 +5955,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_0_3_3_1"; "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-extras" = doDistribute super."monad-extras_0_5_9"; "monad-fork" = dontDistribute super."monad-fork"; @@ -6929,6 +6940,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = dontDistribute super."protocol-buffers"; "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7567,6 +7579,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = dontDistribute super."servant-server"; @@ -7845,6 +7858,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -8162,6 +8176,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8361,6 +8376,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8483,6 +8499,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8535,6 +8552,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = dontDistribute super."tttool"; "tubes" = dontDistribute super."tubes"; @@ -8664,6 +8682,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8998,6 +9017,7 @@ self: super: { "web-routing" = dontDistribute super."web-routing"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.11.nix b/pkgs/development/haskell-modules/configuration-lts-1.11.nix index 711dfce2f7b..d695840afc3 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.11.nix @@ -113,6 +113,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1184,6 +1185,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1278,6 +1280,7 @@ self: super: { "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = dontDistribute super."amazonka-cognito-identity"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = dontDistribute super."amazonka-cognito-sync"; "amazonka-config" = dontDistribute super."amazonka-config"; "amazonka-core" = dontDistribute super."amazonka-core"; @@ -2444,6 +2447,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; @@ -3612,6 +3616,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4561,6 +4566,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_8"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4573,6 +4579,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = dontDistribute super."hpc-coveralls"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4886,6 +4893,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5215,6 +5223,7 @@ self: super: { "json" = dontDistribute super."json"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_0_2_5_4"; "json-b" = dontDistribute super."json-b"; @@ -5586,6 +5595,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5941,6 +5951,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_0_3_3_1"; "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-extras" = doDistribute super."monad-extras_0_5_9"; "monad-fork" = dontDistribute super."monad-fork"; @@ -6925,6 +6936,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = dontDistribute super."protocol-buffers"; "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7563,6 +7575,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = dontDistribute super."servant-server"; @@ -7841,6 +7854,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -8158,6 +8172,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8357,6 +8372,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8479,6 +8495,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8531,6 +8548,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = dontDistribute super."tttool"; "tubes" = dontDistribute super."tubes"; @@ -8660,6 +8678,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8994,6 +9013,7 @@ self: super: { "web-routing" = dontDistribute super."web-routing"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.12.nix b/pkgs/development/haskell-modules/configuration-lts-1.12.nix index 245d1cd63f2..1da893c7adb 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.12.nix @@ -113,6 +113,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1184,6 +1185,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1278,6 +1280,7 @@ self: super: { "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = dontDistribute super."amazonka-cognito-identity"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = dontDistribute super."amazonka-cognito-sync"; "amazonka-config" = dontDistribute super."amazonka-config"; "amazonka-core" = dontDistribute super."amazonka-core"; @@ -2444,6 +2447,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; @@ -3612,6 +3616,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4560,6 +4565,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_8"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4572,6 +4578,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = dontDistribute super."hpc-coveralls"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4885,6 +4892,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5214,6 +5222,7 @@ self: super: { "json" = dontDistribute super."json"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_0_2_5_8"; "json-b" = dontDistribute super."json-b"; @@ -5585,6 +5594,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5940,6 +5950,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_0_3_3_1"; "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-extras" = doDistribute super."monad-extras_0_5_9"; "monad-fork" = dontDistribute super."monad-fork"; @@ -6924,6 +6935,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = dontDistribute super."protocol-buffers"; "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7562,6 +7574,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = dontDistribute super."servant-server"; @@ -7840,6 +7853,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -8157,6 +8171,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8356,6 +8371,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8478,6 +8494,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8530,6 +8547,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = dontDistribute super."tttool"; "tubes" = dontDistribute super."tubes"; @@ -8659,6 +8677,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8993,6 +9012,7 @@ self: super: { "web-routing" = dontDistribute super."web-routing"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.13.nix b/pkgs/development/haskell-modules/configuration-lts-1.13.nix index 6dbede1453a..f40adc27b44 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.13.nix @@ -113,6 +113,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1184,6 +1185,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1278,6 +1280,7 @@ self: super: { "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = dontDistribute super."amazonka-cognito-identity"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = dontDistribute super."amazonka-cognito-sync"; "amazonka-config" = dontDistribute super."amazonka-config"; "amazonka-core" = dontDistribute super."amazonka-core"; @@ -2444,6 +2447,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; @@ -3612,6 +3616,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4559,6 +4564,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_8"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4571,6 +4577,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = dontDistribute super."hpc-coveralls"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4884,6 +4891,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5213,6 +5221,7 @@ self: super: { "json" = dontDistribute super."json"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_0_2_5_8"; "json-b" = dontDistribute super."json-b"; @@ -5584,6 +5593,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5939,6 +5949,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_0_3_3_1"; "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-extras" = doDistribute super."monad-extras_0_5_9"; "monad-fork" = dontDistribute super."monad-fork"; @@ -6923,6 +6934,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = dontDistribute super."protocol-buffers"; "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7561,6 +7573,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = dontDistribute super."servant-server"; @@ -7839,6 +7852,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -8156,6 +8170,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8354,6 +8369,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8476,6 +8492,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8528,6 +8545,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = dontDistribute super."tttool"; "tubes" = dontDistribute super."tubes"; @@ -8657,6 +8675,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8991,6 +9010,7 @@ self: super: { "web-routing" = dontDistribute super."web-routing"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.14.nix b/pkgs/development/haskell-modules/configuration-lts-1.14.nix index 253d392a083..503f9fbc5ba 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.14.nix @@ -113,6 +113,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1183,6 +1184,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1277,6 +1279,7 @@ self: super: { "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = dontDistribute super."amazonka-cognito-identity"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = dontDistribute super."amazonka-cognito-sync"; "amazonka-config" = dontDistribute super."amazonka-config"; "amazonka-core" = dontDistribute super."amazonka-core"; @@ -2441,6 +2444,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; @@ -3609,6 +3613,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4556,6 +4561,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_8"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4568,6 +4574,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = dontDistribute super."hpc-coveralls"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4881,6 +4888,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5210,6 +5218,7 @@ self: super: { "json" = dontDistribute super."json"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_0_2_5_9"; "json-b" = dontDistribute super."json-b"; @@ -5581,6 +5590,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5936,6 +5946,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_0_3_3_1"; "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-extras" = doDistribute super."monad-extras_0_5_9"; "monad-fork" = dontDistribute super."monad-fork"; @@ -6920,6 +6931,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = dontDistribute super."protocol-buffers"; "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7557,6 +7569,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = dontDistribute super."servant-server"; @@ -7835,6 +7848,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -8152,6 +8166,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8350,6 +8365,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8472,6 +8488,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8524,6 +8541,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = dontDistribute super."tttool"; "tubes" = dontDistribute super."tubes"; @@ -8653,6 +8671,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8987,6 +9006,7 @@ self: super: { "web-routing" = dontDistribute super."web-routing"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.15.nix b/pkgs/development/haskell-modules/configuration-lts-1.15.nix index 518b8b3b1b8..c8579330df6 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.15.nix @@ -113,6 +113,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1182,6 +1183,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1276,6 +1278,7 @@ self: super: { "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = dontDistribute super."amazonka-cognito-identity"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = dontDistribute super."amazonka-cognito-sync"; "amazonka-config" = dontDistribute super."amazonka-config"; "amazonka-core" = dontDistribute super."amazonka-core"; @@ -2439,6 +2442,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; @@ -3605,6 +3609,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4552,6 +4557,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_8"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4564,6 +4570,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = dontDistribute super."hpc-coveralls"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4877,6 +4884,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5206,6 +5214,7 @@ self: super: { "json" = dontDistribute super."json"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_0_2_5_9"; "json-b" = dontDistribute super."json-b"; @@ -5577,6 +5586,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5932,6 +5942,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_0_3_3_1"; "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-extras" = doDistribute super."monad-extras_0_5_9"; "monad-fork" = dontDistribute super."monad-fork"; @@ -6914,6 +6925,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = dontDistribute super."protocol-buffers"; "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7550,6 +7562,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = dontDistribute super."servant-server"; @@ -7828,6 +7841,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -8143,6 +8157,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8341,6 +8356,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8463,6 +8479,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8515,6 +8532,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = dontDistribute super."tttool"; "tubes" = dontDistribute super."tubes"; @@ -8644,6 +8662,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8978,6 +8997,7 @@ self: super: { "web-routing" = dontDistribute super."web-routing"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.2.nix b/pkgs/development/haskell-modules/configuration-lts-1.2.nix index 09655c3ab95..91ea67ba52b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.2.nix @@ -113,6 +113,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1185,6 +1186,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1279,6 +1281,7 @@ self: super: { "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = dontDistribute super."amazonka-cognito-identity"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = dontDistribute super."amazonka-cognito-sync"; "amazonka-config" = dontDistribute super."amazonka-config"; "amazonka-core" = dontDistribute super."amazonka-core"; @@ -2446,6 +2449,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; @@ -3619,6 +3623,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4570,6 +4575,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_8"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4582,6 +4588,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = dontDistribute super."hpc-coveralls"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4895,6 +4902,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5231,6 +5239,7 @@ self: super: { "json" = dontDistribute super."json"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_0_2_5_4"; "json-b" = dontDistribute super."json-b"; @@ -5604,6 +5613,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5959,6 +5969,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_0_3_3_0"; "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-extras" = doDistribute super."monad-extras_0_5_9"; "monad-fork" = dontDistribute super."monad-fork"; @@ -6945,6 +6956,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = dontDistribute super."protocol-buffers"; "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7583,6 +7595,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = dontDistribute super."servant-server"; @@ -7862,6 +7875,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -8179,6 +8193,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8380,6 +8395,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8503,6 +8519,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8556,6 +8573,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = dontDistribute super."tttool"; "tubes" = dontDistribute super."tubes"; @@ -8685,6 +8703,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -9020,6 +9039,7 @@ self: super: { "web-routing" = dontDistribute super."web-routing"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.4.nix b/pkgs/development/haskell-modules/configuration-lts-1.4.nix index 31380f1ea2b..63e9fcbaad2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.4.nix @@ -113,6 +113,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1184,6 +1185,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1278,6 +1280,7 @@ self: super: { "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = dontDistribute super."amazonka-cognito-identity"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = dontDistribute super."amazonka-cognito-sync"; "amazonka-config" = dontDistribute super."amazonka-config"; "amazonka-core" = dontDistribute super."amazonka-core"; @@ -2445,6 +2448,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; @@ -3617,6 +3621,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4567,6 +4572,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_8"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4579,6 +4585,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = dontDistribute super."hpc-coveralls"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4892,6 +4899,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5228,6 +5236,7 @@ self: super: { "json" = dontDistribute super."json"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_0_2_5_4"; "json-b" = dontDistribute super."json-b"; @@ -5601,6 +5610,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5956,6 +5966,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_0_3_3_0"; "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-extras" = doDistribute super."monad-extras_0_5_9"; "monad-fork" = dontDistribute super."monad-fork"; @@ -6941,6 +6952,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = dontDistribute super."protocol-buffers"; "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7579,6 +7591,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = dontDistribute super."servant-server"; @@ -7858,6 +7871,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -8175,6 +8189,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8375,6 +8390,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8498,6 +8514,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8551,6 +8568,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = dontDistribute super."tttool"; "tubes" = dontDistribute super."tubes"; @@ -8680,6 +8698,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -9015,6 +9034,7 @@ self: super: { "web-routing" = dontDistribute super."web-routing"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.5.nix b/pkgs/development/haskell-modules/configuration-lts-1.5.nix index 60bb9fd4473..023ec7a4d25 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.5.nix @@ -113,6 +113,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1184,6 +1185,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1278,6 +1280,7 @@ self: super: { "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = dontDistribute super."amazonka-cognito-identity"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = dontDistribute super."amazonka-cognito-sync"; "amazonka-config" = dontDistribute super."amazonka-config"; "amazonka-core" = dontDistribute super."amazonka-core"; @@ -2444,6 +2447,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; @@ -3616,6 +3620,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4566,6 +4571,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_8"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4578,6 +4584,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = dontDistribute super."hpc-coveralls"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4891,6 +4898,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5227,6 +5235,7 @@ self: super: { "json" = dontDistribute super."json"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_0_2_5_4"; "json-b" = dontDistribute super."json-b"; @@ -5600,6 +5609,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5955,6 +5965,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_0_3_3_0"; "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-extras" = doDistribute super."monad-extras_0_5_9"; "monad-fork" = dontDistribute super."monad-fork"; @@ -6940,6 +6951,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = dontDistribute super."protocol-buffers"; "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7578,6 +7590,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = dontDistribute super."servant-server"; @@ -7857,6 +7870,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -8174,6 +8188,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8374,6 +8389,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8496,6 +8512,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8549,6 +8566,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = dontDistribute super."tttool"; "tubes" = dontDistribute super."tubes"; @@ -8678,6 +8696,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -9012,6 +9031,7 @@ self: super: { "web-routing" = dontDistribute super."web-routing"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.7.nix b/pkgs/development/haskell-modules/configuration-lts-1.7.nix index c6f84999de6..c6753374f64 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.7.nix @@ -113,6 +113,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1184,6 +1185,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1278,6 +1280,7 @@ self: super: { "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = dontDistribute super."amazonka-cognito-identity"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = dontDistribute super."amazonka-cognito-sync"; "amazonka-config" = dontDistribute super."amazonka-config"; "amazonka-core" = dontDistribute super."amazonka-core"; @@ -2444,6 +2447,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; @@ -3616,6 +3620,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4566,6 +4571,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_8"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4578,6 +4584,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = dontDistribute super."hpc-coveralls"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4891,6 +4898,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5222,6 +5230,7 @@ self: super: { "json" = dontDistribute super."json"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_0_2_5_4"; "json-b" = dontDistribute super."json-b"; @@ -5595,6 +5604,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5950,6 +5960,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_0_3_3_0"; "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-extras" = doDistribute super."monad-extras_0_5_9"; "monad-fork" = dontDistribute super."monad-fork"; @@ -6935,6 +6946,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = dontDistribute super."protocol-buffers"; "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7573,6 +7585,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = dontDistribute super."servant-server"; @@ -7852,6 +7865,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -8169,6 +8183,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8369,6 +8384,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8491,6 +8507,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8544,6 +8561,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = dontDistribute super."tttool"; "tubes" = dontDistribute super."tubes"; @@ -8673,6 +8691,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -9007,6 +9026,7 @@ self: super: { "web-routing" = dontDistribute super."web-routing"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.8.nix b/pkgs/development/haskell-modules/configuration-lts-1.8.nix index c031f18467e..b0673b6d1f5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.8.nix @@ -113,6 +113,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1184,6 +1185,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1278,6 +1280,7 @@ self: super: { "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = dontDistribute super."amazonka-cognito-identity"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = dontDistribute super."amazonka-cognito-sync"; "amazonka-config" = dontDistribute super."amazonka-config"; "amazonka-core" = dontDistribute super."amazonka-core"; @@ -2444,6 +2447,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; @@ -3614,6 +3618,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4563,6 +4568,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_8"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4575,6 +4581,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = dontDistribute super."hpc-coveralls"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4888,6 +4895,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5219,6 +5227,7 @@ self: super: { "json" = dontDistribute super."json"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_0_2_5_4"; "json-b" = dontDistribute super."json-b"; @@ -5591,6 +5600,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5946,6 +5956,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_0_3_3_1"; "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-extras" = doDistribute super."monad-extras_0_5_9"; "monad-fork" = dontDistribute super."monad-fork"; @@ -6931,6 +6942,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = dontDistribute super."protocol-buffers"; "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7569,6 +7581,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = dontDistribute super."servant-server"; @@ -7848,6 +7861,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -8165,6 +8179,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8365,6 +8380,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8487,6 +8503,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8539,6 +8556,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = dontDistribute super."tttool"; "tubes" = dontDistribute super."tubes"; @@ -8668,6 +8686,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -9002,6 +9021,7 @@ self: super: { "web-routing" = dontDistribute super."web-routing"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.9.nix b/pkgs/development/haskell-modules/configuration-lts-1.9.nix index fde9da194b0..41d9848ebbc 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.9.nix @@ -113,6 +113,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1184,6 +1185,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1278,6 +1280,7 @@ self: super: { "amazonka-codedeploy" = dontDistribute super."amazonka-codedeploy"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = dontDistribute super."amazonka-cognito-identity"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = dontDistribute super."amazonka-cognito-sync"; "amazonka-config" = dontDistribute super."amazonka-config"; "amazonka-core" = dontDistribute super."amazonka-core"; @@ -2444,6 +2447,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; @@ -3613,6 +3617,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4562,6 +4567,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_8"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4574,6 +4580,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = dontDistribute super."hpc-coveralls"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4887,6 +4894,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5218,6 +5226,7 @@ self: super: { "json" = dontDistribute super."json"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_0_2_5_4"; "json-b" = dontDistribute super."json-b"; @@ -5590,6 +5599,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5945,6 +5955,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_0_3_3_1"; "monad-coroutine" = doDistribute super."monad-coroutine_0_8_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-extras" = doDistribute super."monad-extras_0_5_9"; "monad-fork" = dontDistribute super."monad-fork"; @@ -6930,6 +6941,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = dontDistribute super."protocol-buffers"; "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7568,6 +7580,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = dontDistribute super."servant-server"; @@ -7847,6 +7860,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -8164,6 +8178,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8364,6 +8379,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8486,6 +8502,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8538,6 +8555,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = dontDistribute super."tttool"; "tubes" = dontDistribute super."tubes"; @@ -8667,6 +8685,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -9001,6 +9020,7 @@ self: super: { "web-routing" = dontDistribute super."web-routing"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.0.nix b/pkgs/development/haskell-modules/configuration-lts-2.0.nix index be36e53631a..ecdf00390c3 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.0.nix @@ -113,6 +113,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1176,6 +1177,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1270,6 +1272,7 @@ self: super: { "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_3"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_0_3_3"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_0_3_3"; "amazonka-config" = doDistribute super."amazonka-config_0_3_3"; "amazonka-core" = doDistribute super."amazonka-core_0_3_3"; @@ -2427,6 +2430,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_1"; "cryptonite" = dontDistribute super."cryptonite"; @@ -3591,6 +3595,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4534,6 +4539,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4546,6 +4552,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4859,6 +4866,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5181,6 +5189,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_0_2_5_11"; "json-b" = dontDistribute super."json-b"; @@ -5547,6 +5556,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5900,6 +5910,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-extras" = dontDistribute super."monad-extras"; "monad-fork" = dontDistribute super."monad-fork"; @@ -6872,6 +6883,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = dontDistribute super."protocol-buffers"; "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7507,6 +7519,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_2_4"; @@ -7781,6 +7794,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -8094,6 +8108,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8292,6 +8307,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8414,6 +8430,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8466,6 +8483,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = doDistribute super."tttool_1_3"; "tubes" = dontDistribute super."tubes"; @@ -8594,6 +8612,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8926,6 +8945,7 @@ self: super: { "web-routing" = dontDistribute super."web-routing"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.1.nix b/pkgs/development/haskell-modules/configuration-lts-2.1.nix index c6f3f5df49b..c5fa05bdec2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.1.nix @@ -113,6 +113,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1176,6 +1177,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1270,6 +1272,7 @@ self: super: { "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_3"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_0_3_3"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_0_3_3"; "amazonka-config" = doDistribute super."amazonka-config_0_3_3"; "amazonka-core" = doDistribute super."amazonka-core_0_3_3"; @@ -2426,6 +2429,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_1"; "cryptonite" = dontDistribute super."cryptonite"; @@ -3590,6 +3594,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4533,6 +4538,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4545,6 +4551,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4858,6 +4865,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5180,6 +5188,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; @@ -5546,6 +5555,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5899,6 +5909,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-extras" = dontDistribute super."monad-extras"; "monad-fork" = dontDistribute super."monad-fork"; @@ -6871,6 +6882,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = dontDistribute super."protocol-buffers"; "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7506,6 +7518,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_2_4"; @@ -7780,6 +7793,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -8093,6 +8107,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8291,6 +8306,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8413,6 +8429,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8465,6 +8482,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = doDistribute super."tttool_1_3"; "tubes" = dontDistribute super."tubes"; @@ -8593,6 +8611,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8924,6 +8943,7 @@ self: super: { "web-routing" = dontDistribute super."web-routing"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.10.nix b/pkgs/development/haskell-modules/configuration-lts-2.10.nix index 7117655679d..94d2f684701 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.10.nix @@ -113,6 +113,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1171,6 +1172,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1265,6 +1267,7 @@ self: super: { "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_4"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_0_3_4"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_0_3_4"; "amazonka-config" = doDistribute super."amazonka-config_0_3_4"; "amazonka-core" = doDistribute super."amazonka-core_0_3_4"; @@ -2414,6 +2417,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; @@ -3573,6 +3577,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4514,6 +4519,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4526,6 +4532,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4837,6 +4844,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5156,6 +5164,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; @@ -5521,6 +5530,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5874,6 +5884,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-extras" = dontDistribute super."monad-extras"; "monad-fork" = dontDistribute super."monad-fork"; @@ -6844,6 +6855,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = dontDistribute super."protocol-buffers"; "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7476,6 +7488,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_2_4"; @@ -7749,6 +7762,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -8055,6 +8069,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8253,6 +8268,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8373,6 +8389,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8425,6 +8442,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = doDistribute super."tttool_1_3"; "tubes" = dontDistribute super."tubes"; @@ -8553,6 +8571,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8884,6 +8903,7 @@ self: super: { "web-routing" = dontDistribute super."web-routing"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.11.nix b/pkgs/development/haskell-modules/configuration-lts-2.11.nix index 8bc437ba511..61d31f0ad61 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.11.nix @@ -113,6 +113,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1171,6 +1172,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1264,6 +1266,7 @@ self: super: { "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_4"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_0_3_4"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_0_3_4"; "amazonka-config" = doDistribute super."amazonka-config_0_3_4"; "amazonka-core" = doDistribute super."amazonka-core_0_3_4"; @@ -2413,6 +2416,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; @@ -3571,6 +3575,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4511,6 +4516,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4523,6 +4529,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4834,6 +4841,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5152,6 +5160,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; @@ -5517,6 +5526,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5870,6 +5880,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-extras" = dontDistribute super."monad-extras"; "monad-fork" = dontDistribute super."monad-fork"; @@ -6838,6 +6849,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = dontDistribute super."protocol-buffers"; "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7469,6 +7481,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_2_4"; @@ -7742,6 +7755,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -8046,6 +8060,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8244,6 +8259,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8364,6 +8380,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8416,6 +8433,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = doDistribute super."tttool_1_3"; "tubes" = dontDistribute super."tubes"; @@ -8544,6 +8562,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8875,6 +8894,7 @@ self: super: { "web-routing" = dontDistribute super."web-routing"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.12.nix b/pkgs/development/haskell-modules/configuration-lts-2.12.nix index ce5accd348d..d351d001355 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.12.nix @@ -113,6 +113,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1171,6 +1172,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1264,6 +1266,7 @@ self: super: { "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_4"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_0_3_4"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_0_3_4"; "amazonka-config" = doDistribute super."amazonka-config_0_3_4"; "amazonka-core" = doDistribute super."amazonka-core_0_3_4"; @@ -2413,6 +2416,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; @@ -3571,6 +3575,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4511,6 +4516,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4523,6 +4529,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4834,6 +4841,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5152,6 +5160,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; @@ -5517,6 +5526,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5870,6 +5880,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-extras" = dontDistribute super."monad-extras"; "monad-fork" = dontDistribute super."monad-fork"; @@ -6838,6 +6849,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = dontDistribute super."protocol-buffers"; "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7468,6 +7480,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_2_4"; @@ -7741,6 +7754,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -8045,6 +8059,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8243,6 +8258,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8363,6 +8379,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8415,6 +8432,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = doDistribute super."tttool_1_3"; "tubes" = dontDistribute super."tubes"; @@ -8543,6 +8561,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8874,6 +8893,7 @@ self: super: { "web-routing" = dontDistribute super."web-routing"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.13.nix b/pkgs/development/haskell-modules/configuration-lts-2.13.nix index 1ca0df12379..3dac4d96229 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.13.nix @@ -113,6 +113,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1171,6 +1172,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1264,6 +1266,7 @@ self: super: { "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-idp" = dontDistribute super."amazonka-cognito-idp"; "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"; @@ -2413,6 +2416,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; @@ -3571,6 +3575,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4510,6 +4515,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4522,6 +4528,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4833,6 +4840,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5150,6 +5158,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; @@ -5515,6 +5524,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5868,6 +5878,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-extras" = dontDistribute super."monad-extras"; "monad-fork" = dontDistribute super."monad-fork"; @@ -6836,6 +6847,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = dontDistribute super."protocol-buffers"; "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7466,6 +7478,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_2_4"; @@ -7739,6 +7752,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -8043,6 +8057,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8241,6 +8256,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8361,6 +8377,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8413,6 +8430,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = doDistribute super."tttool_1_3"; "tubes" = dontDistribute super."tubes"; @@ -8541,6 +8559,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8872,6 +8891,7 @@ self: super: { "web-routing" = dontDistribute super."web-routing"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.14.nix b/pkgs/development/haskell-modules/configuration-lts-2.14.nix index 06608df4462..704a1ce1cd2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.14.nix @@ -113,6 +113,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1171,6 +1172,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1264,6 +1266,7 @@ self: super: { "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-idp" = dontDistribute super."amazonka-cognito-idp"; "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"; @@ -2413,6 +2416,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; @@ -3570,6 +3574,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4509,6 +4514,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4521,6 +4527,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4831,6 +4838,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5148,6 +5156,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; @@ -5513,6 +5522,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5866,6 +5876,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-extras" = dontDistribute super."monad-extras"; "monad-fork" = dontDistribute super."monad-fork"; @@ -6834,6 +6845,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = dontDistribute super."protocol-buffers"; "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7464,6 +7476,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_2_4"; @@ -7736,6 +7749,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -8040,6 +8054,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8238,6 +8253,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8358,6 +8374,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8410,6 +8427,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = doDistribute super."tttool_1_3"; "tubes" = dontDistribute super."tubes"; @@ -8538,6 +8556,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8869,6 +8888,7 @@ self: super: { "web-routing" = dontDistribute super."web-routing"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.15.nix b/pkgs/development/haskell-modules/configuration-lts-2.15.nix index 54144d1a3fd..a31c927ce60 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.15.nix @@ -113,6 +113,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1171,6 +1172,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1264,6 +1266,7 @@ self: super: { "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-idp" = dontDistribute super."amazonka-cognito-idp"; "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"; @@ -2413,6 +2416,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; @@ -3569,6 +3573,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4508,6 +4513,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4520,6 +4526,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4830,6 +4837,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5147,6 +5155,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; @@ -5512,6 +5521,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5865,6 +5875,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-extras" = dontDistribute super."monad-extras"; "monad-fork" = dontDistribute super."monad-fork"; @@ -6832,6 +6843,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = dontDistribute super."protocol-buffers"; "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7462,6 +7474,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_2_4"; @@ -7734,6 +7747,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -8037,6 +8051,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8235,6 +8250,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8355,6 +8371,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8407,6 +8424,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = doDistribute super."tttool_1_3"; "tubes" = dontDistribute super."tubes"; @@ -8535,6 +8553,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8866,6 +8885,7 @@ self: super: { "web-routing" = dontDistribute super."web-routing"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.16.nix b/pkgs/development/haskell-modules/configuration-lts-2.16.nix index c5fb5f66fa5..d9da0c1d9ef 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.16.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.16.nix @@ -113,6 +113,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1171,6 +1172,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1264,6 +1266,7 @@ self: super: { "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-idp" = dontDistribute super."amazonka-cognito-idp"; "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"; @@ -2412,6 +2415,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; @@ -3566,6 +3570,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4505,6 +4510,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4517,6 +4523,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4827,6 +4834,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5144,6 +5152,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; @@ -5508,6 +5517,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5861,6 +5871,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-extras" = dontDistribute super."monad-extras"; "monad-fork" = dontDistribute super."monad-fork"; @@ -6828,6 +6839,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = dontDistribute super."protocol-buffers"; "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7458,6 +7470,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_2_4"; @@ -7730,6 +7743,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -8033,6 +8047,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8231,6 +8246,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8351,6 +8367,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8403,6 +8420,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = doDistribute super."tttool_1_3"; "tubes" = dontDistribute super."tubes"; @@ -8531,6 +8549,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8862,6 +8881,7 @@ self: super: { "web-routing" = dontDistribute super."web-routing"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.17.nix b/pkgs/development/haskell-modules/configuration-lts-2.17.nix index 061cd3029db..930f92194ab 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.17.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.17.nix @@ -113,6 +113,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1171,6 +1172,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1264,6 +1266,7 @@ self: super: { "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-idp" = dontDistribute super."amazonka-cognito-idp"; "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"; @@ -2410,6 +2413,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; @@ -3562,6 +3566,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4501,6 +4506,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4513,6 +4519,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4823,6 +4830,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5140,6 +5148,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; @@ -5504,6 +5513,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5857,6 +5867,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-extras" = dontDistribute super."monad-extras"; "monad-fork" = dontDistribute super."monad-fork"; @@ -6823,6 +6834,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = dontDistribute super."protocol-buffers"; "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7453,6 +7465,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_2_4"; @@ -7725,6 +7738,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -8028,6 +8042,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8226,6 +8241,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8346,6 +8362,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8398,6 +8415,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = doDistribute super."tttool_1_3"; "tubes" = dontDistribute super."tubes"; @@ -8526,6 +8544,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8857,6 +8876,7 @@ self: super: { "web-routing" = dontDistribute super."web-routing"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.18.nix b/pkgs/development/haskell-modules/configuration-lts-2.18.nix index f7c844dc6f3..76dc598d9a2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.18.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.18.nix @@ -113,6 +113,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1171,6 +1172,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1264,6 +1266,7 @@ self: super: { "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-idp" = dontDistribute super."amazonka-cognito-idp"; "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"; @@ -2409,6 +2412,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; @@ -3560,6 +3564,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4499,6 +4504,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4511,6 +4517,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4821,6 +4828,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5138,6 +5146,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; @@ -5502,6 +5511,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5855,6 +5865,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-extras" = dontDistribute super."monad-extras"; "monad-fork" = dontDistribute super."monad-fork"; @@ -6820,6 +6831,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = dontDistribute super."protocol-buffers"; "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7450,6 +7462,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_2_4"; @@ -7722,6 +7735,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -8024,6 +8038,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8222,6 +8237,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8342,6 +8358,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8394,6 +8411,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = doDistribute super."tttool_1_3"; "tubes" = dontDistribute super."tubes"; @@ -8522,6 +8540,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8853,6 +8872,7 @@ self: super: { "web-routing" = dontDistribute super."web-routing"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.19.nix b/pkgs/development/haskell-modules/configuration-lts-2.19.nix index b8f383f677c..91f1c3b9155 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.19.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.19.nix @@ -113,6 +113,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1171,6 +1172,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1264,6 +1266,7 @@ self: super: { "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-idp" = dontDistribute super."amazonka-cognito-idp"; "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"; @@ -2409,6 +2412,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; @@ -3559,6 +3563,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4498,6 +4503,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4510,6 +4516,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4820,6 +4827,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5137,6 +5145,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; @@ -5501,6 +5510,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5853,6 +5863,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-extras" = dontDistribute super."monad-extras"; "monad-fork" = dontDistribute super."monad-fork"; @@ -6818,6 +6829,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = dontDistribute super."protocol-buffers"; "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7448,6 +7460,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_2_4"; @@ -7711,6 +7724,7 @@ self: super: { "snow-white" = dontDistribute super."snow-white"; "snowball" = dontDistribute super."snowball"; "snowglobe" = dontDistribute super."snowglobe"; + "soap" = doDistribute super."soap_0_2_2_7"; "sock2stream" = dontDistribute super."sock2stream"; "sockaddr" = dontDistribute super."sockaddr"; "socket" = dontDistribute super."socket"; @@ -7719,6 +7733,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -8021,6 +8036,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8219,6 +8235,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8339,6 +8356,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8391,6 +8409,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = doDistribute super."tttool_1_3"; "tubes" = dontDistribute super."tubes"; @@ -8519,6 +8538,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8850,6 +8870,7 @@ self: super: { "web-routing" = dontDistribute super."web-routing"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.2.nix b/pkgs/development/haskell-modules/configuration-lts-2.2.nix index cc8d31652af..6ef69d35e0c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.2.nix @@ -113,6 +113,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1175,6 +1176,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1269,6 +1271,7 @@ self: super: { "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_3"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_0_3_3"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_0_3_3"; "amazonka-config" = doDistribute super."amazonka-config_0_3_3"; "amazonka-core" = doDistribute super."amazonka-core_0_3_3"; @@ -2423,6 +2426,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_1"; "cryptonite" = dontDistribute super."cryptonite"; @@ -3587,6 +3591,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4530,6 +4535,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4542,6 +4548,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4855,6 +4862,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5177,6 +5185,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; @@ -5543,6 +5552,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5896,6 +5906,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-extras" = dontDistribute super."monad-extras"; "monad-fork" = dontDistribute super."monad-fork"; @@ -6868,6 +6879,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = dontDistribute super."protocol-buffers"; "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7503,6 +7515,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_2_4"; @@ -7777,6 +7790,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -8090,6 +8104,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8288,6 +8303,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8410,6 +8426,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8462,6 +8479,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = doDistribute super."tttool_1_3"; "tubes" = dontDistribute super."tubes"; @@ -8590,6 +8608,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8921,6 +8940,7 @@ self: super: { "web-routing" = dontDistribute super."web-routing"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.20.nix b/pkgs/development/haskell-modules/configuration-lts-2.20.nix index 00b678af7ad..32a6decd73c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.20.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.20.nix @@ -113,6 +113,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1171,6 +1172,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1264,6 +1266,7 @@ self: super: { "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-idp" = dontDistribute super."amazonka-cognito-idp"; "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"; @@ -2408,6 +2411,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; @@ -3558,6 +3562,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4497,6 +4502,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4509,6 +4515,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4819,6 +4826,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5136,6 +5144,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; @@ -5500,6 +5509,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5852,6 +5862,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-extras" = dontDistribute super."monad-extras"; "monad-fork" = dontDistribute super."monad-fork"; @@ -6816,6 +6827,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = dontDistribute super."protocol-buffers"; "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7446,6 +7458,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_2_4"; @@ -7708,6 +7721,7 @@ self: super: { "snow-white" = dontDistribute super."snow-white"; "snowball" = dontDistribute super."snowball"; "snowglobe" = dontDistribute super."snowglobe"; + "soap" = doDistribute super."soap_0_2_2_7"; "sock2stream" = dontDistribute super."sock2stream"; "sockaddr" = dontDistribute super."sockaddr"; "socket" = dontDistribute super."socket"; @@ -7716,6 +7730,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -8018,6 +8033,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8216,6 +8232,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8336,6 +8353,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8388,6 +8406,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = doDistribute super."tttool_1_3"; "tubes" = dontDistribute super."tubes"; @@ -8516,6 +8535,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8847,6 +8867,7 @@ self: super: { "web-routing" = dontDistribute super."web-routing"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.21.nix b/pkgs/development/haskell-modules/configuration-lts-2.21.nix index e987f7c7edd..e0ada6ea378 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.21.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.21.nix @@ -113,6 +113,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1171,6 +1172,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1264,6 +1266,7 @@ self: super: { "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-idp" = dontDistribute super."amazonka-cognito-idp"; "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"; @@ -2408,6 +2411,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; @@ -3558,6 +3562,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4497,6 +4502,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4509,6 +4515,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4819,6 +4826,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5136,6 +5144,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; @@ -5500,6 +5509,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5852,6 +5862,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-extras" = dontDistribute super."monad-extras"; "monad-fork" = dontDistribute super."monad-fork"; @@ -6815,6 +6826,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = dontDistribute super."protocol-buffers"; "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7445,6 +7457,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_2_4"; @@ -7707,6 +7720,7 @@ self: super: { "snow-white" = dontDistribute super."snow-white"; "snowball" = dontDistribute super."snowball"; "snowglobe" = dontDistribute super."snowglobe"; + "soap" = doDistribute super."soap_0_2_2_7"; "sock2stream" = dontDistribute super."sock2stream"; "sockaddr" = dontDistribute super."sockaddr"; "socket" = dontDistribute super."socket"; @@ -7715,6 +7729,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -8017,6 +8032,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8215,6 +8231,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8335,6 +8352,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8387,6 +8405,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = doDistribute super."tttool_1_3"; "tubes" = dontDistribute super."tubes"; @@ -8515,6 +8534,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8846,6 +8866,7 @@ self: super: { "web-routing" = dontDistribute super."web-routing"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.22.nix b/pkgs/development/haskell-modules/configuration-lts-2.22.nix index 8b2fd373e07..6620cd55c72 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.22.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.22.nix @@ -113,6 +113,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1171,6 +1172,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1264,6 +1266,7 @@ self: super: { "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-idp" = dontDistribute super."amazonka-cognito-idp"; "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"; @@ -2408,6 +2411,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; @@ -3558,6 +3562,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4496,6 +4501,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4508,6 +4514,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4818,6 +4825,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5135,6 +5143,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; @@ -5499,6 +5508,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5851,6 +5861,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-extras" = dontDistribute super."monad-extras"; "monad-fork" = dontDistribute super."monad-fork"; @@ -6814,6 +6825,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = dontDistribute super."protocol-buffers"; "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7444,6 +7456,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_2_4"; @@ -7706,6 +7719,7 @@ self: super: { "snow-white" = dontDistribute super."snow-white"; "snowball" = dontDistribute super."snowball"; "snowglobe" = dontDistribute super."snowglobe"; + "soap" = doDistribute super."soap_0_2_2_7"; "sock2stream" = dontDistribute super."sock2stream"; "sockaddr" = dontDistribute super."sockaddr"; "socket" = dontDistribute super."socket"; @@ -7714,6 +7728,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -8016,6 +8031,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8214,6 +8230,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8334,6 +8351,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8386,6 +8404,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = doDistribute super."tttool_1_3"; "tubes" = dontDistribute super."tubes"; @@ -8514,6 +8533,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8845,6 +8865,7 @@ self: super: { "web-routing" = dontDistribute super."web-routing"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.3.nix b/pkgs/development/haskell-modules/configuration-lts-2.3.nix index 68b2a4225e9..a44268a4474 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.3.nix @@ -113,6 +113,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1175,6 +1176,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1269,6 +1271,7 @@ self: super: { "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_3"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_0_3_3"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_0_3_3"; "amazonka-config" = doDistribute super."amazonka-config_0_3_3"; "amazonka-core" = doDistribute super."amazonka-core_0_3_3"; @@ -2423,6 +2426,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; @@ -3586,6 +3590,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4529,6 +4534,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4541,6 +4547,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4854,6 +4861,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5175,6 +5183,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; @@ -5541,6 +5550,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5894,6 +5904,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-extras" = dontDistribute super."monad-extras"; "monad-fork" = dontDistribute super."monad-fork"; @@ -6866,6 +6877,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = dontDistribute super."protocol-buffers"; "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7501,6 +7513,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_2_4"; @@ -7775,6 +7788,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -8088,6 +8102,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8286,6 +8301,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8408,6 +8424,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8460,6 +8477,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = doDistribute super."tttool_1_3"; "tubes" = dontDistribute super."tubes"; @@ -8588,6 +8606,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8919,6 +8938,7 @@ self: super: { "web-routing" = dontDistribute super."web-routing"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.4.nix b/pkgs/development/haskell-modules/configuration-lts-2.4.nix index e7ab14804b4..ba79b7ba72b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.4.nix @@ -113,6 +113,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1175,6 +1176,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1269,6 +1271,7 @@ self: super: { "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_4"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_0_3_4"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_0_3_4"; "amazonka-config" = doDistribute super."amazonka-config_0_3_4"; "amazonka-core" = doDistribute super."amazonka-core_0_3_4"; @@ -2422,6 +2425,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; @@ -3585,6 +3589,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4528,6 +4533,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4540,6 +4546,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4853,6 +4860,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5174,6 +5182,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; @@ -5540,6 +5549,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5893,6 +5903,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-extras" = dontDistribute super."monad-extras"; "monad-fork" = dontDistribute super."monad-fork"; @@ -6864,6 +6875,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = dontDistribute super."protocol-buffers"; "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7498,6 +7510,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_2_4"; @@ -7772,6 +7785,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -8085,6 +8099,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8283,6 +8298,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8405,6 +8421,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8457,6 +8474,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = doDistribute super."tttool_1_3"; "tubes" = dontDistribute super."tubes"; @@ -8585,6 +8603,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8916,6 +8935,7 @@ self: super: { "web-routing" = dontDistribute super."web-routing"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.5.nix b/pkgs/development/haskell-modules/configuration-lts-2.5.nix index d94686e2de8..6a56682de17 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.5.nix @@ -113,6 +113,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1175,6 +1176,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1269,6 +1271,7 @@ self: super: { "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_4"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_0_3_4"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_0_3_4"; "amazonka-config" = doDistribute super."amazonka-config_0_3_4"; "amazonka-core" = doDistribute super."amazonka-core_0_3_4"; @@ -2421,6 +2424,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; @@ -3584,6 +3588,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4527,6 +4532,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4539,6 +4545,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4852,6 +4859,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5173,6 +5181,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; @@ -5539,6 +5548,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5892,6 +5902,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-extras" = dontDistribute super."monad-extras"; "monad-fork" = dontDistribute super."monad-fork"; @@ -6863,6 +6874,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = dontDistribute super."protocol-buffers"; "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7497,6 +7509,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_2_4"; @@ -7771,6 +7784,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -8084,6 +8098,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8282,6 +8297,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8404,6 +8420,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8456,6 +8473,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = doDistribute super."tttool_1_3"; "tubes" = dontDistribute super."tubes"; @@ -8584,6 +8602,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8915,6 +8934,7 @@ self: super: { "web-routing" = dontDistribute super."web-routing"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.6.nix b/pkgs/development/haskell-modules/configuration-lts-2.6.nix index e869acb8a51..718c30f3c89 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.6.nix @@ -113,6 +113,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1173,6 +1174,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1267,6 +1269,7 @@ self: super: { "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_4"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_0_3_4"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_0_3_4"; "amazonka-config" = doDistribute super."amazonka-config_0_3_4"; "amazonka-core" = doDistribute super."amazonka-core_0_3_4"; @@ -2418,6 +2421,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; @@ -3581,6 +3585,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4522,6 +4527,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4534,6 +4540,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4847,6 +4854,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5168,6 +5176,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; @@ -5534,6 +5543,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5887,6 +5897,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-extras" = dontDistribute super."monad-extras"; "monad-fork" = dontDistribute super."monad-fork"; @@ -6857,6 +6868,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = dontDistribute super."protocol-buffers"; "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7491,6 +7503,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_2_4"; @@ -7765,6 +7778,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -8078,6 +8092,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8276,6 +8291,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8396,6 +8412,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8448,6 +8465,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = doDistribute super."tttool_1_3"; "tubes" = dontDistribute super."tubes"; @@ -8576,6 +8594,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8907,6 +8926,7 @@ self: super: { "web-routing" = dontDistribute super."web-routing"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.7.nix b/pkgs/development/haskell-modules/configuration-lts-2.7.nix index 46e293f904d..77112a4f118 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.7.nix @@ -113,6 +113,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1172,6 +1173,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1266,6 +1268,7 @@ self: super: { "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_4"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_0_3_4"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_0_3_4"; "amazonka-config" = doDistribute super."amazonka-config_0_3_4"; "amazonka-core" = doDistribute super."amazonka-core_0_3_4"; @@ -2417,6 +2420,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; @@ -3580,6 +3584,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4521,6 +4526,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4533,6 +4539,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4846,6 +4853,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5167,6 +5175,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; @@ -5533,6 +5542,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5886,6 +5896,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-extras" = dontDistribute super."monad-extras"; "monad-fork" = dontDistribute super."monad-fork"; @@ -6857,6 +6868,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = dontDistribute super."protocol-buffers"; "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7491,6 +7503,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_2_4"; @@ -7765,6 +7778,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -8078,6 +8092,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8276,6 +8291,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8396,6 +8412,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8448,6 +8465,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = doDistribute super."tttool_1_3"; "tubes" = dontDistribute super."tubes"; @@ -8576,6 +8594,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8907,6 +8926,7 @@ self: super: { "web-routing" = dontDistribute super."web-routing"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.8.nix b/pkgs/development/haskell-modules/configuration-lts-2.8.nix index 3f320f0eb2a..153aa7dad0d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.8.nix @@ -113,6 +113,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1171,6 +1172,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1265,6 +1267,7 @@ self: super: { "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_4"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_0_3_4"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_0_3_4"; "amazonka-config" = doDistribute super."amazonka-config_0_3_4"; "amazonka-core" = doDistribute super."amazonka-core_0_3_4"; @@ -2416,6 +2419,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; @@ -3578,6 +3582,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4519,6 +4524,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4531,6 +4537,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4844,6 +4851,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5165,6 +5173,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; @@ -5531,6 +5540,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5884,6 +5894,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-extras" = dontDistribute super."monad-extras"; "monad-fork" = dontDistribute super."monad-fork"; @@ -6855,6 +6866,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = dontDistribute super."protocol-buffers"; "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7488,6 +7500,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_2_4"; @@ -7761,6 +7774,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -8072,6 +8086,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8270,6 +8285,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8390,6 +8406,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8442,6 +8459,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = doDistribute super."tttool_1_3"; "tubes" = dontDistribute super."tubes"; @@ -8570,6 +8588,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8901,6 +8920,7 @@ self: super: { "web-routing" = dontDistribute super."web-routing"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.9.nix b/pkgs/development/haskell-modules/configuration-lts-2.9.nix index 656e376ac4b..24d6823fe67 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.9.nix @@ -113,6 +113,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1171,6 +1172,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1265,6 +1267,7 @@ self: super: { "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_0_3_4"; "amazonka-codepipeline" = dontDistribute super."amazonka-codepipeline"; "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_0_3_4"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_0_3_4"; "amazonka-config" = doDistribute super."amazonka-config_0_3_4"; "amazonka-core" = doDistribute super."amazonka-core_0_3_4"; @@ -2414,6 +2417,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; @@ -3574,6 +3578,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4515,6 +4520,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4527,6 +4533,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4838,6 +4845,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5159,6 +5167,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_0_2_5_13"; "json-b" = dontDistribute super."json-b"; @@ -5524,6 +5533,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5877,6 +5887,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-extras" = dontDistribute super."monad-extras"; "monad-fork" = dontDistribute super."monad-fork"; @@ -6848,6 +6859,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = dontDistribute super."protocol-buffers"; "protocol-buffers-descriptor" = dontDistribute super."protocol-buffers-descriptor"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7481,6 +7493,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_2_4"; @@ -7754,6 +7767,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -8061,6 +8075,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8259,6 +8274,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8379,6 +8395,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8431,6 +8448,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = doDistribute super."tttool_1_3"; "tubes" = dontDistribute super."tubes"; @@ -8559,6 +8577,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8890,6 +8909,7 @@ self: super: { "web-routing" = dontDistribute super."web-routing"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.0.nix b/pkgs/development/haskell-modules/configuration-lts-3.0.nix index a3250546cb6..96c627d8488 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.0.nix @@ -106,6 +106,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1011,6 +1012,7 @@ self: super: { "Webrexp" = dontDistribute super."Webrexp"; "Wheb" = dontDistribute super."Wheb"; "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32" = doDistribute super."Win32_2_3_1_0"; "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; "Win32-errors" = dontDistribute super."Win32-errors"; "Win32-extras" = dontDistribute super."Win32-extras"; @@ -1150,6 +1152,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1242,6 +1245,7 @@ self: super: { "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-idp" = dontDistribute super."amazonka-cognito-idp"; "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"; @@ -2351,6 +2355,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_4"; "cryptonite" = doDistribute super."cryptonite_0_6"; @@ -3478,6 +3483,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4404,6 +4410,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4416,6 +4423,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4720,6 +4728,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5025,6 +5034,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_1_0_7"; "json-b" = dontDistribute super."json-b"; @@ -5369,6 +5379,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_3"; @@ -5714,6 +5725,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -6650,6 +6662,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = doDistribute super."protocol-buffers_2_1_4"; "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_4"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7280,6 +7293,7 @@ self: super: { "servant-pandoc" = doDistribute super."servant-pandoc_0_4_1_1"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4"; @@ -7547,6 +7561,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -7839,6 +7854,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8035,6 +8051,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8149,6 +8166,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8200,6 +8218,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = doDistribute super."tttool_1_4_0_3"; "tubes" = dontDistribute super."tubes"; @@ -8326,6 +8345,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8650,6 +8670,7 @@ self: super: { "web-routes-wai" = dontDistribute super."web-routes-wai"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.1.nix b/pkgs/development/haskell-modules/configuration-lts-3.1.nix index 705840e5e1c..3613b6eb41e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.1.nix @@ -106,6 +106,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1011,6 +1012,7 @@ self: super: { "Webrexp" = dontDistribute super."Webrexp"; "Wheb" = dontDistribute super."Wheb"; "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32" = doDistribute super."Win32_2_3_1_0"; "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; "Win32-errors" = dontDistribute super."Win32-errors"; "Win32-extras" = dontDistribute super."Win32-extras"; @@ -1150,6 +1152,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1241,6 +1244,7 @@ self: super: { "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-idp" = dontDistribute super."amazonka-cognito-idp"; "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"; @@ -2350,6 +2354,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_4"; "cryptonite" = doDistribute super."cryptonite_0_6"; @@ -3476,6 +3481,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4402,6 +4408,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4414,6 +4421,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4718,6 +4726,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5023,6 +5032,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_1_0_7"; "json-b" = dontDistribute super."json-b"; @@ -5367,6 +5377,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_3"; @@ -5711,6 +5722,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -6646,6 +6658,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = doDistribute super."protocol-buffers_2_1_4"; "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_4"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7275,6 +7288,7 @@ self: super: { "servant-pandoc" = doDistribute super."servant-pandoc_0_4_1_1"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4"; @@ -7542,6 +7556,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -7834,6 +7849,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8030,6 +8046,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8144,6 +8161,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8195,6 +8213,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = doDistribute super."tttool_1_4_0_3"; "tubes" = dontDistribute super."tubes"; @@ -8321,6 +8340,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8644,6 +8664,7 @@ self: super: { "web-routes-wai" = dontDistribute super."web-routes-wai"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.10.nix b/pkgs/development/haskell-modules/configuration-lts-3.10.nix index 86dbc3d25fb..a570288bbf2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.10.nix @@ -106,6 +106,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1008,6 +1009,7 @@ self: super: { "Webrexp" = dontDistribute super."Webrexp"; "Wheb" = dontDistribute super."Wheb"; "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32" = doDistribute super."Win32_2_3_1_0"; "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; "Win32-errors" = dontDistribute super."Win32-errors"; "Win32-extras" = dontDistribute super."Win32-extras"; @@ -1147,6 +1149,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1238,6 +1241,7 @@ self: super: { "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-idp" = dontDistribute super."amazonka-cognito-idp"; "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"; @@ -2339,6 +2343,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; @@ -3459,6 +3464,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4380,6 +4386,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4392,6 +4399,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4695,6 +4703,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -4998,6 +5007,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; @@ -5338,6 +5348,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_4"; @@ -5681,6 +5692,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -6606,6 +6618,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = doDistribute super."protocol-buffers_2_1_7"; "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_7"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7233,6 +7246,7 @@ self: super: { "servant-pandoc" = doDistribute super."servant-pandoc_0_4_1_1"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_5"; @@ -7498,6 +7512,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -7788,6 +7803,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -7980,6 +7996,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8094,6 +8111,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8144,6 +8162,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = doDistribute super."tttool_1_4_0_5"; "tubes" = dontDistribute super."tubes"; @@ -8270,6 +8289,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8589,6 +8609,7 @@ self: super: { "web-routes-wai" = dontDistribute super."web-routes-wai"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.11.nix b/pkgs/development/haskell-modules/configuration-lts-3.11.nix index bb58301757a..e48f30b3afb 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.11.nix @@ -106,6 +106,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1008,6 +1009,7 @@ self: super: { "Webrexp" = dontDistribute super."Webrexp"; "Wheb" = dontDistribute super."Wheb"; "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32" = doDistribute super."Win32_2_3_1_0"; "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; "Win32-errors" = dontDistribute super."Win32-errors"; "Win32-extras" = dontDistribute super."Win32-extras"; @@ -1147,6 +1149,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1238,6 +1241,7 @@ self: super: { "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-idp" = dontDistribute super."amazonka-cognito-idp"; "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"; @@ -2338,6 +2342,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; @@ -3457,6 +3462,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4378,6 +4384,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4390,6 +4397,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4693,6 +4701,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -4996,6 +5005,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; @@ -5336,6 +5346,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_4"; @@ -5679,6 +5690,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -6603,6 +6615,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = doDistribute super."protocol-buffers_2_1_7"; "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_7"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7230,6 +7243,7 @@ self: super: { "servant-pandoc" = doDistribute super."servant-pandoc_0_4_1_1"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_5"; @@ -7495,6 +7509,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -7785,6 +7800,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -7977,6 +7993,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8091,6 +8108,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8141,6 +8159,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = doDistribute super."tttool_1_4_0_5"; "tubes" = dontDistribute super."tubes"; @@ -8267,6 +8286,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8586,6 +8606,7 @@ self: super: { "web-routes-wai" = dontDistribute super."web-routes-wai"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.12.nix b/pkgs/development/haskell-modules/configuration-lts-3.12.nix index 250384b1d28..95e073eb8ad 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.12.nix @@ -106,6 +106,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1008,6 +1009,7 @@ self: super: { "Webrexp" = dontDistribute super."Webrexp"; "Wheb" = dontDistribute super."Wheb"; "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32" = doDistribute super."Win32_2_3_1_0"; "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; "Win32-errors" = dontDistribute super."Win32-errors"; "Win32-extras" = dontDistribute super."Win32-extras"; @@ -1147,6 +1149,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1238,6 +1241,7 @@ self: super: { "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-idp" = dontDistribute super."amazonka-cognito-idp"; "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"; @@ -2337,6 +2341,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; @@ -3456,6 +3461,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4376,6 +4382,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4388,6 +4395,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4691,6 +4699,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -4994,6 +5003,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; @@ -5334,6 +5344,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_4"; @@ -5677,6 +5688,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -6600,6 +6612,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = doDistribute super."protocol-buffers_2_1_7"; "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_7"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7227,6 +7240,7 @@ self: super: { "servant-pandoc" = doDistribute super."servant-pandoc_0_4_1_1"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_5"; @@ -7492,6 +7506,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -7782,6 +7797,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -7972,6 +7988,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8086,6 +8103,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8136,6 +8154,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = doDistribute super."tttool_1_4_0_5"; "tubes" = dontDistribute super."tubes"; @@ -8262,6 +8281,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8581,6 +8601,7 @@ self: super: { "web-routes-wai" = dontDistribute super."web-routes-wai"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.13.nix b/pkgs/development/haskell-modules/configuration-lts-3.13.nix index 9c89a4dde43..0bba76b79b3 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.13.nix @@ -106,6 +106,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1008,6 +1009,7 @@ self: super: { "Webrexp" = dontDistribute super."Webrexp"; "Wheb" = dontDistribute super."Wheb"; "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32" = doDistribute super."Win32_2_3_1_0"; "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; "Win32-errors" = dontDistribute super."Win32-errors"; "Win32-extras" = dontDistribute super."Win32-extras"; @@ -1147,6 +1149,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1238,6 +1241,7 @@ self: super: { "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-idp" = dontDistribute super."amazonka-cognito-idp"; "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"; @@ -2337,6 +2341,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; @@ -3456,6 +3461,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4375,6 +4381,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4387,6 +4394,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4690,6 +4698,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -4993,6 +5002,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; @@ -5332,6 +5342,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_4"; @@ -5675,6 +5686,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -6597,6 +6609,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = doDistribute super."protocol-buffers_2_1_7"; "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_7"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7224,6 +7237,7 @@ self: super: { "servant-pandoc" = doDistribute super."servant-pandoc_0_4_1_1"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_5"; @@ -7489,6 +7503,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -7779,6 +7794,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -7969,6 +7985,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8083,6 +8100,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8133,6 +8151,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = doDistribute super."tttool_1_4_0_5"; "tubes" = dontDistribute super."tubes"; @@ -8259,6 +8278,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8577,6 +8597,7 @@ self: super: { "web-routes-wai" = dontDistribute super."web-routes-wai"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.14.nix b/pkgs/development/haskell-modules/configuration-lts-3.14.nix index fb0f7c66192..c3766276b0c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.14.nix @@ -106,6 +106,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1008,6 +1009,7 @@ self: super: { "Webrexp" = dontDistribute super."Webrexp"; "Wheb" = dontDistribute super."Wheb"; "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32" = doDistribute super."Win32_2_3_1_0"; "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; "Win32-errors" = dontDistribute super."Win32-errors"; "Win32-extras" = dontDistribute super."Win32-extras"; @@ -1146,6 +1148,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1237,6 +1240,7 @@ self: super: { "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-idp" = dontDistribute super."amazonka-cognito-idp"; "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"; @@ -2334,6 +2338,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; @@ -3453,6 +3458,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4372,6 +4378,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4384,6 +4391,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4686,6 +4694,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -4989,6 +4998,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; @@ -5328,6 +5338,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_4"; @@ -5671,6 +5682,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -6593,6 +6605,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = doDistribute super."protocol-buffers_2_1_7"; "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_7"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7220,6 +7233,7 @@ self: super: { "servant-pandoc" = doDistribute super."servant-pandoc_0_4_1_1"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_5"; @@ -7485,6 +7499,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -7775,6 +7790,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -7965,6 +7981,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8079,6 +8096,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8129,6 +8147,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = doDistribute super."tttool_1_4_0_5"; "tubes" = dontDistribute super."tubes"; @@ -8255,6 +8274,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8573,6 +8593,7 @@ self: super: { "web-routes-wai" = dontDistribute super."web-routes-wai"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.15.nix b/pkgs/development/haskell-modules/configuration-lts-3.15.nix index 703dc549352..1476133f99b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.15.nix @@ -106,6 +106,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1008,6 +1009,7 @@ self: super: { "Webrexp" = dontDistribute super."Webrexp"; "Wheb" = dontDistribute super."Wheb"; "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32" = doDistribute super."Win32_2_3_1_0"; "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; "Win32-errors" = dontDistribute super."Win32-errors"; "Win32-extras" = dontDistribute super."Win32-extras"; @@ -1146,6 +1148,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1237,6 +1240,7 @@ self: super: { "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-idp" = dontDistribute super."amazonka-cognito-idp"; "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"; @@ -2334,6 +2338,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; @@ -3453,6 +3458,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4370,6 +4376,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4382,6 +4389,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4683,6 +4691,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -4986,6 +4995,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; @@ -5325,6 +5335,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_4"; @@ -5668,6 +5679,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -6590,6 +6602,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = doDistribute super."protocol-buffers_2_1_7"; "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_7"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7216,6 +7229,7 @@ self: super: { "servant-mock" = dontDistribute super."servant-mock"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_5"; @@ -7481,6 +7495,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -7771,6 +7786,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -7961,6 +7977,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8075,6 +8092,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8125,6 +8143,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = doDistribute super."tttool_1_4_0_5"; "tubes" = dontDistribute super."tubes"; @@ -8251,6 +8270,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8569,6 +8589,7 @@ self: super: { "web-routes-wai" = dontDistribute super."web-routes-wai"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.16.nix b/pkgs/development/haskell-modules/configuration-lts-3.16.nix index 01a6769d9c8..f3651a2cee2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.16.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.16.nix @@ -106,6 +106,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1007,6 +1008,7 @@ self: super: { "Webrexp" = dontDistribute super."Webrexp"; "Wheb" = dontDistribute super."Wheb"; "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32" = doDistribute super."Win32_2_3_1_0"; "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; "Win32-errors" = dontDistribute super."Win32-errors"; "Win32-extras" = dontDistribute super."Win32-extras"; @@ -1145,6 +1147,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1236,6 +1239,7 @@ self: super: { "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-idp" = dontDistribute super."amazonka-cognito-idp"; "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"; @@ -2333,6 +2337,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; @@ -3451,6 +3456,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4367,6 +4373,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4379,6 +4386,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4680,6 +4688,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -4983,6 +4992,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; @@ -5321,6 +5331,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_4"; @@ -5663,6 +5674,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -6584,6 +6596,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = doDistribute super."protocol-buffers_2_1_7"; "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_7"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7209,6 +7222,7 @@ self: super: { "servant-mock" = dontDistribute super."servant-mock"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_5"; @@ -7474,6 +7488,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -7764,6 +7779,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -7952,6 +7968,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8065,6 +8082,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8115,6 +8133,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = doDistribute super."tttool_1_4_0_5"; "tubes" = dontDistribute super."tubes"; @@ -8241,6 +8260,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8559,6 +8579,7 @@ self: super: { "web-routes-wai" = dontDistribute super."web-routes-wai"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.17.nix b/pkgs/development/haskell-modules/configuration-lts-3.17.nix index 87b70622d7e..275e5e5d2e7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.17.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.17.nix @@ -106,6 +106,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1007,6 +1008,7 @@ self: super: { "Webrexp" = dontDistribute super."Webrexp"; "Wheb" = dontDistribute super."Wheb"; "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32" = doDistribute super."Win32_2_3_1_0"; "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; "Win32-errors" = dontDistribute super."Win32-errors"; "Win32-extras" = dontDistribute super."Win32-extras"; @@ -1145,6 +1147,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1236,6 +1239,7 @@ self: super: { "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-idp" = dontDistribute super."amazonka-cognito-idp"; "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"; @@ -2332,6 +2336,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; @@ -3450,6 +3455,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4365,6 +4371,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4377,6 +4384,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4678,6 +4686,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -4980,6 +4989,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; @@ -5318,6 +5328,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_4"; @@ -5659,6 +5670,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -6579,6 +6591,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "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"; @@ -7204,6 +7217,7 @@ self: super: { "servant-mock" = dontDistribute super."servant-mock"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_5"; @@ -7469,6 +7483,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -7759,6 +7774,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -7947,6 +7963,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8060,6 +8077,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8110,6 +8128,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = doDistribute super."tttool_1_4_0_5"; "tubes" = dontDistribute super."tubes"; @@ -8236,6 +8255,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8554,6 +8574,7 @@ self: super: { "web-routes-wai" = dontDistribute super."web-routes-wai"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.18.nix b/pkgs/development/haskell-modules/configuration-lts-3.18.nix index eefac3330c4..e9f3015c0b9 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.18.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.18.nix @@ -106,6 +106,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1007,6 +1008,7 @@ self: super: { "Webrexp" = dontDistribute super."Webrexp"; "Wheb" = dontDistribute super."Wheb"; "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32" = doDistribute super."Win32_2_3_1_0"; "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; "Win32-errors" = dontDistribute super."Win32-errors"; "Win32-extras" = dontDistribute super."Win32-extras"; @@ -1145,6 +1147,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1236,6 +1239,7 @@ self: super: { "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-idp" = dontDistribute super."amazonka-cognito-idp"; "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"; @@ -2331,6 +2335,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; @@ -3448,6 +3453,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4361,6 +4367,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4373,6 +4380,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4673,6 +4681,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -4975,6 +4984,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; @@ -5313,6 +5323,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_4"; @@ -5654,6 +5665,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -6573,6 +6585,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12"; "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_12"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7198,6 +7211,7 @@ self: super: { "servant-mock" = dontDistribute super."servant-mock"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_5"; @@ -7463,6 +7477,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -7753,6 +7768,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -7941,6 +7957,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8054,6 +8071,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8104,6 +8122,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = doDistribute super."tttool_1_4_0_5"; "tubes" = dontDistribute super."tubes"; @@ -8230,6 +8249,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8548,6 +8568,7 @@ self: super: { "web-routes-wai" = dontDistribute super."web-routes-wai"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.19.nix b/pkgs/development/haskell-modules/configuration-lts-3.19.nix index 2ec3f78b218..aa17b0ea8f7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.19.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.19.nix @@ -106,6 +106,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1007,6 +1008,7 @@ self: super: { "Webrexp" = dontDistribute super."Webrexp"; "Wheb" = dontDistribute super."Wheb"; "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32" = doDistribute super."Win32_2_3_1_0"; "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; "Win32-errors" = dontDistribute super."Win32-errors"; "Win32-extras" = dontDistribute super."Win32-extras"; @@ -1145,6 +1147,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1236,6 +1239,7 @@ self: super: { "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-idp" = dontDistribute super."amazonka-cognito-idp"; "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"; @@ -2327,6 +2331,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; @@ -3444,6 +3449,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4355,6 +4361,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4367,6 +4374,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4667,6 +4675,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -4969,6 +4978,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; @@ -5306,6 +5316,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-grouping" = dontDistribute super."list-grouping"; @@ -5646,6 +5657,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -6564,6 +6576,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12"; "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_12"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7189,6 +7202,7 @@ self: super: { "servant-mock" = dontDistribute super."servant-mock"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_5"; @@ -7453,6 +7467,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -7743,6 +7758,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -7931,6 +7947,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8044,6 +8061,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8094,6 +8112,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = doDistribute super."tttool_1_4_0_5"; "tubes" = dontDistribute super."tubes"; @@ -8220,6 +8239,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8538,6 +8558,7 @@ self: super: { "web-routes-wai" = dontDistribute super."web-routes-wai"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.2.nix b/pkgs/development/haskell-modules/configuration-lts-3.2.nix index 9aa253b8ece..7d5319c0c64 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.2.nix @@ -106,6 +106,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1010,6 +1011,7 @@ self: super: { "Webrexp" = dontDistribute super."Webrexp"; "Wheb" = dontDistribute super."Wheb"; "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32" = doDistribute super."Win32_2_3_1_0"; "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; "Win32-errors" = dontDistribute super."Win32-errors"; "Win32-extras" = dontDistribute super."Win32-extras"; @@ -1149,6 +1151,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1240,6 +1243,7 @@ self: super: { "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-idp" = dontDistribute super."amazonka-cognito-idp"; "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"; @@ -2348,6 +2352,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_4"; "cryptonite" = doDistribute super."cryptonite_0_6"; @@ -3472,6 +3477,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4398,6 +4404,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4410,6 +4417,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4714,6 +4722,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5019,6 +5028,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_1_0_7"; "json-b" = dontDistribute super."json-b"; @@ -5362,6 +5372,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_3"; @@ -5706,6 +5717,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -6641,6 +6653,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = doDistribute super."protocol-buffers_2_1_4"; "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_4"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7269,6 +7282,7 @@ self: super: { "servant-pandoc" = doDistribute super."servant-pandoc_0_4_1_1"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_1"; @@ -7535,6 +7549,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -7827,6 +7842,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8023,6 +8039,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8137,6 +8154,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8188,6 +8206,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = doDistribute super."tttool_1_4_0_3"; "tubes" = dontDistribute super."tubes"; @@ -8314,6 +8333,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8637,6 +8657,7 @@ self: super: { "web-routes-wai" = dontDistribute super."web-routes-wai"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.20.nix b/pkgs/development/haskell-modules/configuration-lts-3.20.nix index 8fc5f9654c5..89cc6684d9b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.20.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.20.nix @@ -106,6 +106,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1006,6 +1007,7 @@ self: super: { "Webrexp" = dontDistribute super."Webrexp"; "Wheb" = dontDistribute super."Wheb"; "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32" = doDistribute super."Win32_2_3_1_0"; "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; "Win32-errors" = dontDistribute super."Win32-errors"; "Win32-extras" = dontDistribute super."Win32-extras"; @@ -1144,6 +1146,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1235,6 +1238,7 @@ self: super: { "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-idp" = dontDistribute super."amazonka-cognito-idp"; "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"; @@ -2326,6 +2330,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; @@ -3443,6 +3448,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4354,6 +4360,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4366,6 +4373,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4666,6 +4674,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -4968,6 +4977,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; @@ -5305,6 +5315,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-grouping" = dontDistribute super."list-grouping"; @@ -5645,6 +5656,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -6563,6 +6575,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12"; "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_12"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7187,6 +7200,7 @@ self: super: { "servant-mock" = dontDistribute super."servant-mock"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_5"; @@ -7451,6 +7465,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -7740,6 +7755,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -7928,6 +7944,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8041,6 +8058,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8091,6 +8109,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = doDistribute super."tttool_1_4_0_5"; "tubes" = dontDistribute super."tubes"; @@ -8217,6 +8236,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8535,6 +8555,7 @@ self: super: { "web-routes-wai" = dontDistribute super."web-routes-wai"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.21.nix b/pkgs/development/haskell-modules/configuration-lts-3.21.nix index 576068260b5..72e3391f743 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.21.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.21.nix @@ -106,6 +106,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1006,6 +1007,7 @@ self: super: { "Webrexp" = dontDistribute super."Webrexp"; "Wheb" = dontDistribute super."Wheb"; "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32" = doDistribute super."Win32_2_3_1_0"; "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; "Win32-errors" = dontDistribute super."Win32-errors"; "Win32-extras" = dontDistribute super."Win32-extras"; @@ -1144,6 +1146,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1235,6 +1238,7 @@ self: super: { "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-idp" = dontDistribute super."amazonka-cognito-idp"; "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"; @@ -2325,6 +2329,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; @@ -3440,6 +3445,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4351,6 +4357,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4363,6 +4370,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4663,6 +4671,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -4963,6 +4972,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; @@ -5300,6 +5310,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-grouping" = dontDistribute super."list-grouping"; @@ -5640,6 +5651,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -6555,6 +6567,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12"; "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_12"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7177,6 +7190,7 @@ self: super: { "servant-mock" = dontDistribute super."servant-mock"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_6"; @@ -7437,6 +7451,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -7726,6 +7741,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -7914,6 +7930,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8027,6 +8044,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8077,6 +8095,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = doDistribute super."tttool_1_4_0_5"; "tubes" = dontDistribute super."tubes"; @@ -8203,6 +8222,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8518,6 +8538,7 @@ self: super: { "web-routes-wai" = dontDistribute super."web-routes-wai"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.22.nix b/pkgs/development/haskell-modules/configuration-lts-3.22.nix index d48c58d6ab5..eecb89f1f3a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.22.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.22.nix @@ -106,6 +106,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1006,6 +1007,7 @@ self: super: { "Webrexp" = dontDistribute super."Webrexp"; "Wheb" = dontDistribute super."Wheb"; "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32" = doDistribute super."Win32_2_3_1_0"; "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; "Win32-errors" = dontDistribute super."Win32-errors"; "Win32-extras" = dontDistribute super."Win32-extras"; @@ -1144,6 +1146,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1235,6 +1238,7 @@ self: super: { "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-idp" = dontDistribute super."amazonka-cognito-idp"; "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"; @@ -2325,6 +2329,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; @@ -3439,6 +3444,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4349,6 +4355,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4361,6 +4368,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4661,6 +4669,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -4958,6 +4967,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; @@ -5295,6 +5305,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-grouping" = dontDistribute super."list-grouping"; @@ -5635,6 +5646,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -6550,6 +6562,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12"; "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_12"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7172,6 +7185,7 @@ self: super: { "servant-mock" = dontDistribute super."servant-mock"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_6"; @@ -7432,6 +7446,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -7721,6 +7736,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -7909,6 +7925,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8022,6 +8039,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8072,6 +8090,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = doDistribute super."tttool_1_4_0_5"; "tubes" = dontDistribute super."tubes"; @@ -8198,6 +8217,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8513,6 +8533,7 @@ self: super: { "web-routes-wai" = dontDistribute super."web-routes-wai"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.3.nix b/pkgs/development/haskell-modules/configuration-lts-3.3.nix index 47d9668fd7d..7ec5e6f8c5c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.3.nix @@ -106,6 +106,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1010,6 +1011,7 @@ self: super: { "Webrexp" = dontDistribute super."Webrexp"; "Wheb" = dontDistribute super."Wheb"; "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32" = doDistribute super."Win32_2_3_1_0"; "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; "Win32-errors" = dontDistribute super."Win32-errors"; "Win32-extras" = dontDistribute super."Win32-extras"; @@ -1149,6 +1151,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1240,6 +1243,7 @@ self: super: { "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-idp" = dontDistribute super."amazonka-cognito-idp"; "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"; @@ -2348,6 +2352,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_4"; "cryptonite" = doDistribute super."cryptonite_0_6"; @@ -3471,6 +3476,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4396,6 +4402,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4408,6 +4415,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4712,6 +4720,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5017,6 +5026,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_1_0_7"; "json-b" = dontDistribute super."json-b"; @@ -5360,6 +5370,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_3"; @@ -5704,6 +5715,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -6639,6 +6651,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = doDistribute super."protocol-buffers_2_1_5"; "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_5"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7266,6 +7279,7 @@ self: super: { "servant-pandoc" = doDistribute super."servant-pandoc_0_4_1_1"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_2"; @@ -7531,6 +7545,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -7823,6 +7838,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8019,6 +8035,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8133,6 +8150,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8184,6 +8202,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = doDistribute super."tttool_1_4_0_4"; "tubes" = dontDistribute super."tubes"; @@ -8310,6 +8329,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8632,6 +8652,7 @@ self: super: { "web-routes-wai" = dontDistribute super."web-routes-wai"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.4.nix b/pkgs/development/haskell-modules/configuration-lts-3.4.nix index d5b0a6538cb..75925456656 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.4.nix @@ -106,6 +106,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1010,6 +1011,7 @@ self: super: { "Webrexp" = dontDistribute super."Webrexp"; "Wheb" = dontDistribute super."Wheb"; "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32" = doDistribute super."Win32_2_3_1_0"; "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; "Win32-errors" = dontDistribute super."Win32-errors"; "Win32-extras" = dontDistribute super."Win32-extras"; @@ -1149,6 +1151,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1240,6 +1243,7 @@ self: super: { "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-idp" = dontDistribute super."amazonka-cognito-idp"; "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"; @@ -2348,6 +2352,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_4"; "cryptonite" = doDistribute super."cryptonite_0_6"; @@ -3471,6 +3476,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4396,6 +4402,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4408,6 +4415,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4712,6 +4720,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5017,6 +5026,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_1_0_7"; "json-b" = dontDistribute super."json-b"; @@ -5360,6 +5370,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_3"; @@ -5704,6 +5715,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -6639,6 +6651,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = doDistribute super."protocol-buffers_2_1_6"; "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_6"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7266,6 +7279,7 @@ self: super: { "servant-pandoc" = doDistribute super."servant-pandoc_0_4_1_1"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_2"; @@ -7531,6 +7545,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -7822,6 +7837,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8018,6 +8034,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8132,6 +8149,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8183,6 +8201,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = doDistribute super."tttool_1_4_0_4"; "tubes" = dontDistribute super."tubes"; @@ -8309,6 +8328,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8630,6 +8650,7 @@ self: super: { "web-routes-wai" = dontDistribute super."web-routes-wai"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.5.nix b/pkgs/development/haskell-modules/configuration-lts-3.5.nix index 45dc2fcca11..db27d282439 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.5.nix @@ -106,6 +106,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1010,6 +1011,7 @@ self: super: { "Webrexp" = dontDistribute super."Webrexp"; "Wheb" = dontDistribute super."Wheb"; "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32" = doDistribute super."Win32_2_3_1_0"; "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; "Win32-errors" = dontDistribute super."Win32-errors"; "Win32-extras" = dontDistribute super."Win32-extras"; @@ -1149,6 +1151,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1240,6 +1243,7 @@ self: super: { "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-idp" = dontDistribute super."amazonka-cognito-idp"; "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"; @@ -2347,6 +2351,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_4"; "cryptonite" = doDistribute super."cryptonite_0_6"; @@ -3469,6 +3474,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4393,6 +4399,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4405,6 +4412,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4708,6 +4716,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5011,6 +5020,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_1_0_7"; "json-b" = dontDistribute super."json-b"; @@ -5354,6 +5364,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_4"; @@ -5698,6 +5709,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -6630,6 +6642,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = doDistribute super."protocol-buffers_2_1_6"; "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_6"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7257,6 +7270,7 @@ self: super: { "servant-pandoc" = doDistribute super."servant-pandoc_0_4_1_1"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_2"; @@ -7522,6 +7536,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -7813,6 +7828,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8006,6 +8022,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8120,6 +8137,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8171,6 +8189,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = doDistribute super."tttool_1_4_0_4"; "tubes" = dontDistribute super."tubes"; @@ -8297,6 +8316,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8618,6 +8638,7 @@ self: super: { "web-routes-wai" = dontDistribute super."web-routes-wai"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.6.nix b/pkgs/development/haskell-modules/configuration-lts-3.6.nix index ab047df5f84..e1d11a279de 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.6.nix @@ -106,6 +106,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1010,6 +1011,7 @@ self: super: { "Webrexp" = dontDistribute super."Webrexp"; "Wheb" = dontDistribute super."Wheb"; "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32" = doDistribute super."Win32_2_3_1_0"; "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; "Win32-errors" = dontDistribute super."Win32-errors"; "Win32-extras" = dontDistribute super."Win32-extras"; @@ -1149,6 +1151,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1240,6 +1243,7 @@ self: super: { "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-idp" = dontDistribute super."amazonka-cognito-idp"; "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"; @@ -2347,6 +2351,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_4"; "cryptonite" = doDistribute super."cryptonite_0_6"; @@ -3469,6 +3474,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4391,6 +4397,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4403,6 +4410,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4706,6 +4714,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5009,6 +5018,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_1_0_7"; "json-b" = dontDistribute super."json-b"; @@ -5349,6 +5359,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_4"; @@ -5693,6 +5704,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -6625,6 +6637,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = doDistribute super."protocol-buffers_2_1_7"; "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_7"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7252,6 +7265,7 @@ self: super: { "servant-pandoc" = doDistribute super."servant-pandoc_0_4_1_1"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_2"; @@ -7517,6 +7531,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -7808,6 +7823,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -8001,6 +8017,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8115,6 +8132,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8165,6 +8183,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = doDistribute super."tttool_1_4_0_4"; "tubes" = dontDistribute super."tubes"; @@ -8291,6 +8310,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8611,6 +8631,7 @@ self: super: { "web-routes-wai" = dontDistribute super."web-routes-wai"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.7.nix b/pkgs/development/haskell-modules/configuration-lts-3.7.nix index 8337bda39cb..0db12c698b2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.7.nix @@ -106,6 +106,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1010,6 +1011,7 @@ self: super: { "Webrexp" = dontDistribute super."Webrexp"; "Wheb" = dontDistribute super."Wheb"; "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32" = doDistribute super."Win32_2_3_1_0"; "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; "Win32-errors" = dontDistribute super."Win32-errors"; "Win32-extras" = dontDistribute super."Win32-extras"; @@ -1149,6 +1151,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1240,6 +1243,7 @@ self: super: { "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-idp" = dontDistribute super."amazonka-cognito-idp"; "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"; @@ -2344,6 +2348,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_4"; "cryptonite" = doDistribute super."cryptonite_0_6"; @@ -3466,6 +3471,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4387,6 +4393,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4399,6 +4406,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4702,6 +4710,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5005,6 +5014,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; @@ -5345,6 +5355,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_4"; @@ -5689,6 +5700,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -6619,6 +6631,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = doDistribute super."protocol-buffers_2_1_7"; "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_7"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7246,6 +7259,7 @@ self: super: { "servant-pandoc" = doDistribute super."servant-pandoc_0_4_1_1"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_4"; @@ -7511,6 +7525,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -7801,6 +7816,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -7994,6 +8010,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8108,6 +8125,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8158,6 +8176,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = doDistribute super."tttool_1_4_0_5"; "tubes" = dontDistribute super."tubes"; @@ -8284,6 +8303,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8604,6 +8624,7 @@ self: super: { "web-routes-wai" = dontDistribute super."web-routes-wai"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.8.nix b/pkgs/development/haskell-modules/configuration-lts-3.8.nix index 43afe3fcc25..47c13adab0f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.8.nix @@ -106,6 +106,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1010,6 +1011,7 @@ self: super: { "Webrexp" = dontDistribute super."Webrexp"; "Wheb" = dontDistribute super."Wheb"; "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32" = doDistribute super."Win32_2_3_1_0"; "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; "Win32-errors" = dontDistribute super."Win32-errors"; "Win32-extras" = dontDistribute super."Win32-extras"; @@ -1149,6 +1151,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1240,6 +1243,7 @@ self: super: { "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-idp" = dontDistribute super."amazonka-cognito-idp"; "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"; @@ -2342,6 +2346,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; @@ -3463,6 +3468,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4384,6 +4390,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4396,6 +4403,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4699,6 +4707,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -5002,6 +5011,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; @@ -5342,6 +5352,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_4"; @@ -5685,6 +5696,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -6614,6 +6626,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = doDistribute super."protocol-buffers_2_1_7"; "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_7"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7241,6 +7254,7 @@ self: super: { "servant-pandoc" = doDistribute super."servant-pandoc_0_4_1_1"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_4"; @@ -7506,6 +7520,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -7796,6 +7811,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -7988,6 +8004,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8102,6 +8119,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8152,6 +8170,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = doDistribute super."tttool_1_4_0_5"; "tubes" = dontDistribute super."tubes"; @@ -8278,6 +8297,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8598,6 +8618,7 @@ self: super: { "web-routes-wai" = dontDistribute super."web-routes-wai"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.9.nix b/pkgs/development/haskell-modules/configuration-lts-3.9.nix index 23f906f0302..77c15982b99 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.9.nix @@ -106,6 +106,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -1008,6 +1009,7 @@ self: super: { "Webrexp" = dontDistribute super."Webrexp"; "Wheb" = dontDistribute super."Wheb"; "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32" = doDistribute super."Win32_2_3_1_0"; "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; "Win32-errors" = dontDistribute super."Win32-errors"; "Win32-extras" = dontDistribute super."Win32-extras"; @@ -1147,6 +1149,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1238,6 +1241,7 @@ self: super: { "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-idp" = dontDistribute super."amazonka-cognito-idp"; "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"; @@ -2339,6 +2343,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; @@ -3459,6 +3464,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-types" = dontDistribute super."github-types"; "github-utils" = dontDistribute super."github-utils"; "github-webhook-handler" = dontDistribute super."github-webhook-handler"; @@ -4380,6 +4386,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4392,6 +4399,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_0_9_0"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4695,6 +4703,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -4998,6 +5007,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; @@ -5338,6 +5348,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_4"; @@ -5681,6 +5692,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -6609,6 +6621,7 @@ self: super: { "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf" = dontDistribute super."protobuf"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = doDistribute super."protocol-buffers_2_1_7"; "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_7"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -7236,6 +7249,7 @@ self: super: { "servant-pandoc" = doDistribute super."servant-pandoc_0_4_1_1"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_4"; @@ -7501,6 +7515,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -7791,6 +7806,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -7983,6 +7999,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -8097,6 +8114,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = dontDistribute super."tracy"; "trajectory" = dontDistribute super."trajectory"; @@ -8147,6 +8165,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "ttrie" = dontDistribute super."ttrie"; "tttool" = doDistribute super."tttool_1_4_0_5"; "tubes" = dontDistribute super."tubes"; @@ -8273,6 +8292,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8593,6 +8613,7 @@ self: super: { "web-routes-wai" = dontDistribute super."web-routes-wai"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-4.0.nix b/pkgs/development/haskell-modules/configuration-lts-4.0.nix index 84ce04ad25f..4df8a8d1580 100644 --- a/pkgs/development/haskell-modules/configuration-lts-4.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-4.0.nix @@ -106,6 +106,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -498,6 +499,7 @@ self: super: { "HaskellForMaths" = dontDistribute super."HaskellForMaths"; "HaskellLM" = dontDistribute super."HaskellLM"; "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellNet" = doDistribute super."HaskellNet_0_5"; "HaskellNet-SSL" = doDistribute super."HaskellNet-SSL_0_3_2_1"; "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; @@ -987,6 +989,7 @@ self: super: { "Webrexp" = dontDistribute super."Webrexp"; "Wheb" = dontDistribute super."Wheb"; "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32" = doDistribute super."Win32_2_3_1_0"; "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; "Win32-errors" = dontDistribute super."Win32-errors"; "Win32-junction-point" = dontDistribute super."Win32-junction-point"; @@ -1121,6 +1124,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1212,6 +1216,7 @@ self: super: { "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_1_3_7"; "amazonka-codepipeline" = doDistribute super."amazonka-codepipeline_1_3_7"; "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_1_3_7"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_1_3_7"; "amazonka-config" = doDistribute super."amazonka-config_1_3_7"; "amazonka-core" = doDistribute super."amazonka-core_1_3_7"; @@ -2277,6 +2282,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_6"; "cryptonite" = doDistribute super."cryptonite_0_10"; @@ -2486,6 +2492,7 @@ self: super: { "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; + "declarative" = doDistribute super."declarative_0_1_0_1"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; "dedukti" = dontDistribute super."dedukti"; @@ -3366,6 +3373,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-utils" = dontDistribute super."github-utils"; "gitignore" = dontDistribute super."gitignore"; "gitit" = dontDistribute super."gitit"; @@ -4251,6 +4259,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4263,6 +4272,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_1_0_3"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4547,6 +4557,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -4831,6 +4842,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; @@ -5169,6 +5181,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-grouping" = dontDistribute super."list-grouping"; @@ -5499,6 +5512,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -6379,6 +6393,7 @@ self: super: { "prosper" = dontDistribute super."prosper"; "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12"; "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_12"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -6981,6 +6996,7 @@ self: super: { "servant-mock" = dontDistribute super."servant-mock"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_6"; @@ -7225,6 +7241,7 @@ self: super: { "snow-white" = dontDistribute super."snow-white"; "snowball" = dontDistribute super."snowball"; "snowglobe" = dontDistribute super."snowglobe"; + "soap" = doDistribute super."soap_0_2_2_7"; "sock2stream" = dontDistribute super."sock2stream"; "sockaddr" = dontDistribute super."sockaddr"; "socket" = doDistribute super."socket_0_5_3_0"; @@ -7233,6 +7250,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -7322,6 +7340,7 @@ self: super: { "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; "stack-run" = dontDistribute super."stack-run"; + "stack-run-auto" = doDistribute super."stack-run-auto_0_1_1_0"; "stackage-curator" = doDistribute super."stackage-curator_0_11_0"; "stackage-types" = doDistribute super."stackage-types_1_1_0"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; @@ -7514,6 +7533,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -7693,6 +7713,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -7803,6 +7824,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = doDistribute super."tracy_0_1_2_0"; "trajectory" = dontDistribute super."trajectory"; @@ -7852,6 +7874,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "tttool" = doDistribute super."tttool_1_5_1"; "tubes" = dontDistribute super."tubes"; "tuntap" = dontDistribute super."tuntap"; @@ -7974,6 +7997,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8262,6 +8286,7 @@ self: super: { "web-routes-transformers" = dontDistribute super."web-routes-transformers"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-4.1.nix b/pkgs/development/haskell-modules/configuration-lts-4.1.nix index c04f602d55d..7349c96cf07 100644 --- a/pkgs/development/haskell-modules/configuration-lts-4.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-4.1.nix @@ -106,6 +106,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -498,6 +499,7 @@ self: super: { "HaskellForMaths" = dontDistribute super."HaskellForMaths"; "HaskellLM" = dontDistribute super."HaskellLM"; "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellNet" = doDistribute super."HaskellNet_0_5"; "HaskellNet-SSL" = doDistribute super."HaskellNet-SSL_0_3_2_1"; "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; @@ -987,6 +989,7 @@ self: super: { "Webrexp" = dontDistribute super."Webrexp"; "Wheb" = dontDistribute super."Wheb"; "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32" = doDistribute super."Win32_2_3_1_0"; "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; "Win32-errors" = dontDistribute super."Win32-errors"; "Win32-junction-point" = dontDistribute super."Win32-junction-point"; @@ -1120,6 +1123,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1210,6 +1214,7 @@ self: super: { "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_1_3_7"; "amazonka-codepipeline" = doDistribute super."amazonka-codepipeline_1_3_7"; "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_1_3_7"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_1_3_7"; "amazonka-config" = doDistribute super."amazonka-config_1_3_7"; "amazonka-core" = doDistribute super."amazonka-core_1_3_7"; @@ -2275,6 +2280,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_6"; "cryptonite" = doDistribute super."cryptonite_0_10"; @@ -2484,6 +2490,7 @@ self: super: { "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; + "declarative" = doDistribute super."declarative_0_1_0_1"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; "dedukti" = dontDistribute super."dedukti"; @@ -3361,6 +3368,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-utils" = dontDistribute super."github-utils"; "gitignore" = dontDistribute super."gitignore"; "gitit" = dontDistribute super."gitit"; @@ -4245,6 +4253,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4257,6 +4266,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_1_0_3"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4541,6 +4551,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -4820,6 +4831,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; @@ -5156,6 +5168,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-grouping" = dontDistribute super."list-grouping"; @@ -5486,6 +5499,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -6365,6 +6379,7 @@ self: super: { "prosper" = dontDistribute super."prosper"; "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12"; "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_12"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -6967,6 +6982,7 @@ self: super: { "servant-mock" = dontDistribute super."servant-mock"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_6"; @@ -7211,6 +7227,7 @@ self: super: { "snow-white" = dontDistribute super."snow-white"; "snowball" = dontDistribute super."snowball"; "snowglobe" = dontDistribute super."snowglobe"; + "soap" = doDistribute super."soap_0_2_2_7"; "sock2stream" = dontDistribute super."sock2stream"; "sockaddr" = dontDistribute super."sockaddr"; "socket" = doDistribute super."socket_0_5_3_0"; @@ -7219,6 +7236,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -7308,6 +7326,7 @@ self: super: { "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; "stack-run" = dontDistribute super."stack-run"; + "stack-run-auto" = doDistribute super."stack-run-auto_0_1_1_0"; "stackage-curator" = doDistribute super."stackage-curator_0_11_0"; "stackage-types" = doDistribute super."stackage-types_1_1_0"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; @@ -7500,6 +7519,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -7679,6 +7699,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -7789,6 +7810,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = doDistribute super."tracy_0_1_2_0"; "trajectory" = dontDistribute super."trajectory"; @@ -7838,6 +7860,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "tttool" = doDistribute super."tttool_1_5_1"; "tubes" = dontDistribute super."tubes"; "tuntap" = dontDistribute super."tuntap"; @@ -7960,6 +7983,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8248,6 +8272,7 @@ self: super: { "web-routes-transformers" = dontDistribute super."web-routes-transformers"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-4.2.nix b/pkgs/development/haskell-modules/configuration-lts-4.2.nix index 17f07bbbe04..1b4193ff04c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-4.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-4.2.nix @@ -106,6 +106,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -497,6 +498,7 @@ self: super: { "HaskellForMaths" = dontDistribute super."HaskellForMaths"; "HaskellLM" = dontDistribute super."HaskellLM"; "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellNet" = doDistribute super."HaskellNet_0_5"; "HaskellNet-SSL" = doDistribute super."HaskellNet-SSL_0_3_2_1"; "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; @@ -986,6 +988,7 @@ self: super: { "Webrexp" = dontDistribute super."Webrexp"; "Wheb" = dontDistribute super."Wheb"; "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32" = doDistribute super."Win32_2_3_1_0"; "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; "Win32-errors" = dontDistribute super."Win32-errors"; "Win32-junction-point" = dontDistribute super."Win32-junction-point"; @@ -1119,6 +1122,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1209,6 +1213,7 @@ self: super: { "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_1_3_7"; "amazonka-codepipeline" = doDistribute super."amazonka-codepipeline_1_3_7"; "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_1_3_7"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_1_3_7"; "amazonka-config" = doDistribute super."amazonka-config_1_3_7"; "amazonka-core" = doDistribute super."amazonka-core_1_3_7"; @@ -2269,6 +2274,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptol" = doDistribute super."cryptol_2_2_6"; "cryptonite" = doDistribute super."cryptonite_0_10"; @@ -2477,6 +2483,7 @@ self: super: { "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; + "declarative" = doDistribute super."declarative_0_1_0_1"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; "dedukti" = dontDistribute super."dedukti"; @@ -3350,6 +3357,7 @@ self: super: { "github" = dontDistribute super."github"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-utils" = dontDistribute super."github-utils"; "gitignore" = dontDistribute super."gitignore"; "gitit" = dontDistribute super."gitit"; @@ -4227,6 +4235,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4239,6 +4248,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_1_0_3"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4522,6 +4532,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -4798,6 +4809,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; @@ -5134,6 +5146,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-grouping" = dontDistribute super."list-grouping"; @@ -5464,6 +5477,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -6337,6 +6351,7 @@ self: super: { "prosper" = dontDistribute super."prosper"; "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12"; "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_12"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -6935,6 +6950,7 @@ self: super: { "servant-mock" = dontDistribute super."servant-mock"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_6"; @@ -7175,6 +7191,7 @@ self: super: { "snow-white" = dontDistribute super."snow-white"; "snowball" = dontDistribute super."snowball"; "snowglobe" = dontDistribute super."snowglobe"; + "soap" = doDistribute super."soap_0_2_2_7"; "sock2stream" = dontDistribute super."sock2stream"; "sockaddr" = dontDistribute super."sockaddr"; "socket" = doDistribute super."socket_0_5_3_0"; @@ -7183,6 +7200,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -7271,6 +7289,7 @@ self: super: { "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; "stack-run" = dontDistribute super."stack-run"; + "stack-run-auto" = doDistribute super."stack-run-auto_0_1_1_0"; "stackage-curator" = doDistribute super."stackage-curator_0_11_0"; "stackage-types" = doDistribute super."stackage-types_1_1_0"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; @@ -7463,6 +7482,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -7642,6 +7662,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -7752,6 +7773,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = doDistribute super."tracy_0_1_2_0"; "trajectory" = dontDistribute super."trajectory"; @@ -7801,6 +7823,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "tttool" = doDistribute super."tttool_1_5_1"; "tubes" = dontDistribute super."tubes"; "tuntap" = dontDistribute super."tuntap"; @@ -7923,6 +7946,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unexceptionalio" = dontDistribute super."unexceptionalio"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; @@ -8210,6 +8234,7 @@ self: super: { "web-routes-transformers" = dontDistribute super."web-routes-transformers"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.0.nix b/pkgs/development/haskell-modules/configuration-lts-5.0.nix index 2e7ab1dda21..2c0cd6d9986 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.0.nix @@ -106,6 +106,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -491,6 +492,7 @@ self: super: { "HaskellForMaths" = dontDistribute super."HaskellForMaths"; "HaskellLM" = dontDistribute super."HaskellLM"; "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellNet" = doDistribute super."HaskellNet_0_5"; "HaskellNet-SSL" = doDistribute super."HaskellNet-SSL_0_3_2_1"; "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; @@ -976,6 +978,7 @@ self: super: { "Webrexp" = dontDistribute super."Webrexp"; "Wheb" = dontDistribute super."Wheb"; "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32" = doDistribute super."Win32_2_3_1_0"; "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; "Win32-errors" = dontDistribute super."Win32-errors"; "Win32-junction-point" = dontDistribute super."Win32-junction-point"; @@ -1108,6 +1111,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1198,6 +1202,7 @@ self: super: { "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_1_3_7"; "amazonka-codepipeline" = doDistribute super."amazonka-codepipeline_1_3_7"; "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_1_3_7"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_1_3_7"; "amazonka-config" = doDistribute super."amazonka-config_1_3_7"; "amazonka-core" = doDistribute super."amazonka-core_1_3_7"; @@ -2242,6 +2247,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptonite" = doDistribute super."cryptonite_0_10"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2446,6 +2452,7 @@ self: super: { "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; + "declarative" = doDistribute super."declarative_0_1_0_1"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; "dedukti" = dontDistribute super."dedukti"; @@ -3305,6 +3312,7 @@ self: super: { "github" = doDistribute super."github_0_14_0"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-utils" = dontDistribute super."github-utils"; "gitignore" = dontDistribute super."gitignore"; "gitit" = dontDistribute super."gitit"; @@ -4177,6 +4185,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4189,6 +4198,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_1_0_3"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4470,6 +4480,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -4745,6 +4756,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; @@ -5077,6 +5089,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-grouping" = dontDistribute super."list-grouping"; @@ -5405,6 +5418,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_4"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -6039,6 +6053,7 @@ self: super: { "pinchot" = doDistribute super."pinchot_0_6_0_0"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; + "pipes" = doDistribute super."pipes_4_1_8"; "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_5"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec" = doDistribute super."pipes-attoparsec_0_5_1_2"; @@ -6267,6 +6282,7 @@ self: super: { "prosper" = dontDistribute super."prosper"; "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12"; "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_12"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -6858,6 +6874,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_6"; @@ -7095,6 +7112,7 @@ self: super: { "snow-white" = dontDistribute super."snow-white"; "snowball" = dontDistribute super."snowball"; "snowglobe" = dontDistribute super."snowglobe"; + "soap" = doDistribute super."soap_0_2_2_7"; "sock2stream" = dontDistribute super."sock2stream"; "sockaddr" = dontDistribute super."sockaddr"; "socket" = doDistribute super."socket_0_5_3_0"; @@ -7103,6 +7121,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -7191,6 +7210,7 @@ self: super: { "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; "stack-run" = dontDistribute super."stack-run"; + "stack-run-auto" = doDistribute super."stack-run-auto_0_1_1_0"; "stackage-curator" = doDistribute super."stackage-curator_0_13_0"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; @@ -7380,6 +7400,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -7554,6 +7575,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -7663,6 +7685,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = doDistribute super."tracy_0_1_2_0"; "trajectory" = dontDistribute super."trajectory"; @@ -7712,6 +7735,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "tttool" = doDistribute super."tttool_1_5_1"; "tubes" = dontDistribute super."tubes"; "tuntap" = dontDistribute super."tuntap"; @@ -7832,6 +7856,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -8118,6 +8143,7 @@ self: super: { "web-routes-transformers" = dontDistribute super."web-routes-transformers"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.1.nix b/pkgs/development/haskell-modules/configuration-lts-5.1.nix index 48ce764aff4..86590db9a03 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.1.nix @@ -106,6 +106,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -490,6 +491,7 @@ self: super: { "HaskellForMaths" = dontDistribute super."HaskellForMaths"; "HaskellLM" = dontDistribute super."HaskellLM"; "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellNet" = doDistribute super."HaskellNet_0_5"; "HaskellNet-SSL" = doDistribute super."HaskellNet-SSL_0_3_2_1"; "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; @@ -975,6 +977,7 @@ self: super: { "Webrexp" = dontDistribute super."Webrexp"; "Wheb" = dontDistribute super."Wheb"; "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32" = doDistribute super."Win32_2_3_1_0"; "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; "Win32-errors" = dontDistribute super."Win32-errors"; "Win32-junction-point" = dontDistribute super."Win32-junction-point"; @@ -1107,6 +1110,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1197,6 +1201,7 @@ self: super: { "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_1_3_7"; "amazonka-codepipeline" = doDistribute super."amazonka-codepipeline_1_3_7"; "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_1_3_7"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_1_3_7"; "amazonka-config" = doDistribute super."amazonka-config_1_3_7"; "amazonka-core" = doDistribute super."amazonka-core_1_3_7"; @@ -2237,6 +2242,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptonite" = doDistribute super."cryptonite_0_10"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2441,6 +2447,7 @@ self: super: { "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; + "declarative" = doDistribute super."declarative_0_1_0_1"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; "dedukti" = dontDistribute super."dedukti"; @@ -3300,6 +3307,7 @@ self: super: { "github" = doDistribute super."github_0_14_0"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-utils" = dontDistribute super."github-utils"; "gitignore" = dontDistribute super."gitignore"; "gitit" = dontDistribute super."gitit"; @@ -4172,6 +4180,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4184,6 +4193,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_1_0_3"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4465,6 +4475,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -4739,6 +4750,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; @@ -5071,6 +5083,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-grouping" = dontDistribute super."list-grouping"; @@ -5398,6 +5411,7 @@ self: super: { "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_5"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -6032,6 +6046,7 @@ self: super: { "pinchot" = doDistribute super."pinchot_0_6_0_0"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; + "pipes" = doDistribute super."pipes_4_1_8"; "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_5"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec" = doDistribute super."pipes-attoparsec_0_5_1_2"; @@ -6260,6 +6275,7 @@ self: super: { "prosper" = dontDistribute super."prosper"; "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12"; "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_12"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -6849,6 +6865,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_6"; @@ -7086,6 +7103,7 @@ self: super: { "snow-white" = dontDistribute super."snow-white"; "snowball" = dontDistribute super."snowball"; "snowglobe" = dontDistribute super."snowglobe"; + "soap" = doDistribute super."soap_0_2_2_7"; "sock2stream" = dontDistribute super."sock2stream"; "sockaddr" = dontDistribute super."sockaddr"; "socket" = doDistribute super."socket_0_5_3_0"; @@ -7094,6 +7112,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -7182,6 +7201,7 @@ self: super: { "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; "stack-run" = dontDistribute super."stack-run"; + "stack-run-auto" = doDistribute super."stack-run-auto_0_1_1_0"; "stackage-curator" = doDistribute super."stackage-curator_0_13_0"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; @@ -7371,6 +7391,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -7545,6 +7566,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -7654,6 +7676,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = doDistribute super."tracy_0_1_2_0"; "trajectory" = dontDistribute super."trajectory"; @@ -7703,6 +7726,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "tttool" = doDistribute super."tttool_1_5_1"; "tubes" = dontDistribute super."tubes"; "tuntap" = dontDistribute super."tuntap"; @@ -7823,6 +7847,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -8108,6 +8133,7 @@ self: super: { "web-routes-transformers" = dontDistribute super."web-routes-transformers"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.10.nix b/pkgs/development/haskell-modules/configuration-lts-5.10.nix index 3aa1204e725..06df71ceb75 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.10.nix @@ -106,6 +106,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -484,6 +485,7 @@ self: super: { "HaskellForMaths" = dontDistribute super."HaskellForMaths"; "HaskellLM" = dontDistribute super."HaskellLM"; "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellNet" = doDistribute super."HaskellNet_0_5"; "HaskellNet-SSL" = doDistribute super."HaskellNet-SSL_0_3_2_1"; "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; @@ -967,6 +969,7 @@ self: super: { "Webrexp" = dontDistribute super."Webrexp"; "Wheb" = dontDistribute super."Wheb"; "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32" = doDistribute super."Win32_2_3_1_0"; "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; "Win32-errors" = dontDistribute super."Win32-errors"; "Win32-junction-point" = dontDistribute super."Win32-junction-point"; @@ -1097,6 +1100,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1187,6 +1191,7 @@ self: super: { "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_1_3_7"; "amazonka-codepipeline" = doDistribute super."amazonka-codepipeline_1_3_7"; "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_1_3_7"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_1_3_7"; "amazonka-config" = doDistribute super."amazonka-config_1_3_7"; "amazonka-core" = doDistribute super."amazonka-core_1_3_7"; @@ -1754,6 +1759,7 @@ self: super: { "cabal-nirvana" = dontDistribute super."cabal-nirvana"; "cabal-progdeps" = dontDistribute super."cabal-progdeps"; "cabal-query" = dontDistribute super."cabal-query"; + "cabal-rpm" = doDistribute super."cabal-rpm_0_9_10"; "cabal-scripts" = dontDistribute super."cabal-scripts"; "cabal-setup" = dontDistribute super."cabal-setup"; "cabal-sign" = dontDistribute super."cabal-sign"; @@ -2065,6 +2071,7 @@ self: super: { "conductive-clock" = dontDistribute super."conductive-clock"; "conductive-hsc3" = dontDistribute super."conductive-hsc3"; "conductive-song" = dontDistribute super."conductive-song"; + "conduit" = doDistribute super."conduit_1_2_6_4"; "conduit-audio" = dontDistribute super."conduit-audio"; "conduit-audio-lame" = dontDistribute super."conduit-audio-lame"; "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; @@ -2206,6 +2213,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptonite" = doDistribute super."cryptonite_0_10"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2409,6 +2417,7 @@ self: super: { "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; + "declarative" = doDistribute super."declarative_0_1_0_1"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; "dedukti" = dontDistribute super."dedukti"; @@ -3244,6 +3253,7 @@ self: super: { "gitdo" = dontDistribute super."gitdo"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-utils" = dontDistribute super."github-utils"; "gitignore" = dontDistribute super."gitignore"; "gitit" = dontDistribute super."gitit"; @@ -4105,6 +4115,7 @@ self: super: { "hothasktags" = dontDistribute super."hothasktags"; "hotswap" = dontDistribute super."hotswap"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4117,6 +4128,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_1_0_3"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4392,6 +4404,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -4661,6 +4674,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_1_0_13"; "json-b" = dontDistribute super."json-b"; @@ -4991,6 +5005,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-grouping" = dontDistribute super."list-grouping"; @@ -5306,6 +5321,7 @@ self: super: { "monad-codec" = dontDistribute super."monad-codec"; "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_5"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -5919,6 +5935,7 @@ self: super: { "pinchot" = doDistribute super."pinchot_0_6_0_0"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; + "pipes" = doDistribute super."pipes_4_1_8"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec" = doDistribute super."pipes-attoparsec_0_5_1_2"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; @@ -6144,6 +6161,7 @@ self: super: { "prosper" = dontDistribute super."prosper"; "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12"; "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_12"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -6455,6 +6473,7 @@ self: super: { "resource-pool-catchio" = dontDistribute super."resource-pool-catchio"; "resource-pool-monad" = dontDistribute super."resource-pool-monad"; "resource-simple" = dontDistribute super."resource-simple"; + "resourcet" = doDistribute super."resourcet_1_1_7_3"; "respond" = dontDistribute super."respond"; "rest-core" = doDistribute super."rest-core_0_37"; "rest-example" = dontDistribute super."rest-example"; @@ -6724,6 +6743,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_7"; @@ -6957,6 +6977,7 @@ self: super: { "snow-white" = dontDistribute super."snow-white"; "snowball" = dontDistribute super."snowball"; "snowglobe" = dontDistribute super."snowglobe"; + "soap" = doDistribute super."soap_0_2_2_7"; "sock2stream" = dontDistribute super."sock2stream"; "sockaddr" = dontDistribute super."sockaddr"; "socket" = doDistribute super."socket_0_5_3_0"; @@ -6964,6 +6985,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -7052,6 +7074,7 @@ self: super: { "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; "stack-run" = dontDistribute super."stack-run"; + "stack-run-auto" = doDistribute super."stack-run-auto_0_1_1_0"; "stackage-curator" = doDistribute super."stackage-curator_0_13_1"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; @@ -7237,6 +7260,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -7269,6 +7293,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_9"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; @@ -7408,6 +7433,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -7517,6 +7543,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "trajectory" = dontDistribute super."trajectory"; "transactional-events" = dontDistribute super."transactional-events"; @@ -7565,6 +7592,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "tttool" = doDistribute super."tttool_1_5_1"; "tubes" = dontDistribute super."tubes"; "tuntap" = dontDistribute super."tuntap"; @@ -7682,6 +7710,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -7958,6 +7987,7 @@ self: super: { "web-routes-transformers" = dontDistribute super."web-routes-transformers"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.11.nix b/pkgs/development/haskell-modules/configuration-lts-5.11.nix index 612dbe5c9c8..9bd529f774b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.11.nix @@ -106,6 +106,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -483,6 +484,7 @@ self: super: { "HaskellForMaths" = dontDistribute super."HaskellForMaths"; "HaskellLM" = dontDistribute super."HaskellLM"; "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellNet" = doDistribute super."HaskellNet_0_5"; "HaskellNet-SSL" = doDistribute super."HaskellNet-SSL_0_3_2_1"; "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; @@ -966,6 +968,7 @@ self: super: { "Webrexp" = dontDistribute super."Webrexp"; "Wheb" = dontDistribute super."Wheb"; "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32" = doDistribute super."Win32_2_3_1_0"; "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; "Win32-errors" = dontDistribute super."Win32-errors"; "Win32-junction-point" = dontDistribute super."Win32-junction-point"; @@ -1096,6 +1099,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1185,6 +1189,7 @@ self: super: { "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_1_3_7"; "amazonka-codepipeline" = doDistribute super."amazonka-codepipeline_1_3_7"; "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_1_3_7"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_1_3_7"; "amazonka-config" = doDistribute super."amazonka-config_1_3_7"; "amazonka-core" = doDistribute super."amazonka-core_1_3_7"; @@ -1398,6 +1403,8 @@ self: super: { "avahi" = dontDistribute super."avahi"; "avatar-generator" = dontDistribute super."avatar-generator"; "average" = dontDistribute super."average"; + "avers-api" = doDistribute super."avers-api_0_0_4"; + "avers-server" = doDistribute super."avers-server_0_0_3"; "avl-static" = dontDistribute super."avl-static"; "avr-shake" = dontDistribute super."avr-shake"; "awesome-prelude" = dontDistribute super."awesome-prelude"; @@ -1748,6 +1755,7 @@ self: super: { "cabal-nirvana" = dontDistribute super."cabal-nirvana"; "cabal-progdeps" = dontDistribute super."cabal-progdeps"; "cabal-query" = dontDistribute super."cabal-query"; + "cabal-rpm" = doDistribute super."cabal-rpm_0_9_10"; "cabal-scripts" = dontDistribute super."cabal-scripts"; "cabal-setup" = dontDistribute super."cabal-setup"; "cabal-sign" = dontDistribute super."cabal-sign"; @@ -2058,6 +2066,7 @@ self: super: { "conductive-clock" = dontDistribute super."conductive-clock"; "conductive-hsc3" = dontDistribute super."conductive-hsc3"; "conductive-song" = dontDistribute super."conductive-song"; + "conduit" = doDistribute super."conduit_1_2_6_4"; "conduit-audio" = dontDistribute super."conduit-audio"; "conduit-audio-lame" = dontDistribute super."conduit-audio-lame"; "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; @@ -2198,6 +2207,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptonite" = doDistribute super."cryptonite_0_10"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2401,6 +2411,7 @@ self: super: { "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; + "declarative" = doDistribute super."declarative_0_1_0_1"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; "dedukti" = dontDistribute super."dedukti"; @@ -3234,6 +3245,7 @@ self: super: { "gitdo" = dontDistribute super."gitdo"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-utils" = dontDistribute super."github-utils"; "gitignore" = dontDistribute super."gitignore"; "gitit" = dontDistribute super."gitit"; @@ -4095,6 +4107,7 @@ self: super: { "hothasktags" = dontDistribute super."hothasktags"; "hotswap" = dontDistribute super."hotswap"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4107,6 +4120,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; "hpdft" = dontDistribute super."hpdft"; @@ -4378,6 +4392,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -4646,6 +4661,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_1_0_13"; "json-b" = dontDistribute super."json-b"; @@ -4976,6 +4992,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-grouping" = dontDistribute super."list-grouping"; @@ -5290,6 +5307,7 @@ self: super: { "monad-codec" = dontDistribute super."monad-codec"; "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_5"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -5903,6 +5921,7 @@ self: super: { "pinchot" = doDistribute super."pinchot_0_6_0_0"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; + "pipes" = doDistribute super."pipes_4_1_8"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec" = doDistribute super."pipes-attoparsec_0_5_1_2"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; @@ -6127,6 +6146,7 @@ self: super: { "prosper" = dontDistribute super."prosper"; "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12"; "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_12"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -6438,6 +6458,7 @@ self: super: { "resource-pool-catchio" = dontDistribute super."resource-pool-catchio"; "resource-pool-monad" = dontDistribute super."resource-pool-monad"; "resource-simple" = dontDistribute super."resource-simple"; + "resourcet" = doDistribute super."resourcet_1_1_7_3"; "respond" = dontDistribute super."respond"; "rest-core" = doDistribute super."rest-core_0_37"; "rest-example" = dontDistribute super."rest-example"; @@ -6707,6 +6728,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_7"; @@ -6940,6 +6962,7 @@ self: super: { "snow-white" = dontDistribute super."snow-white"; "snowball" = dontDistribute super."snowball"; "snowglobe" = dontDistribute super."snowglobe"; + "soap" = doDistribute super."soap_0_2_2_7"; "sock2stream" = dontDistribute super."sock2stream"; "sockaddr" = dontDistribute super."sockaddr"; "socket" = doDistribute super."socket_0_5_3_0"; @@ -6947,6 +6970,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -7035,6 +7059,7 @@ self: super: { "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; "stack-run" = dontDistribute super."stack-run"; + "stack-run-auto" = doDistribute super."stack-run-auto_0_1_1_0"; "stackage-curator" = doDistribute super."stackage-curator_0_13_1"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; @@ -7219,6 +7244,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -7251,6 +7277,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_9"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; @@ -7389,6 +7416,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -7498,6 +7526,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "trajectory" = dontDistribute super."trajectory"; "transactional-events" = dontDistribute super."transactional-events"; @@ -7545,6 +7574,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "tttool" = doDistribute super."tttool_1_5_1"; "tubes" = dontDistribute super."tubes"; "tuntap" = dontDistribute super."tuntap"; @@ -7662,6 +7692,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -7935,6 +7966,7 @@ self: super: { "web-routes-transformers" = dontDistribute super."web-routes-transformers"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.12.nix b/pkgs/development/haskell-modules/configuration-lts-5.12.nix index 9fa65e96512..0f710c73778 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.12.nix @@ -106,6 +106,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -483,6 +484,7 @@ self: super: { "HaskellForMaths" = dontDistribute super."HaskellForMaths"; "HaskellLM" = dontDistribute super."HaskellLM"; "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellNet" = doDistribute super."HaskellNet_0_5"; "HaskellNet-SSL" = doDistribute super."HaskellNet-SSL_0_3_2_1"; "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; @@ -965,6 +967,7 @@ self: super: { "Webrexp" = dontDistribute super."Webrexp"; "Wheb" = dontDistribute super."Wheb"; "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32" = doDistribute super."Win32_2_3_1_0"; "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; "Win32-errors" = dontDistribute super."Win32-errors"; "Win32-junction-point" = dontDistribute super."Win32-junction-point"; @@ -1095,6 +1098,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1184,6 +1188,7 @@ self: super: { "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_1_3_7"; "amazonka-codepipeline" = doDistribute super."amazonka-codepipeline_1_3_7"; "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_1_3_7"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_1_3_7"; "amazonka-config" = doDistribute super."amazonka-config_1_3_7"; "amazonka-core" = doDistribute super."amazonka-core_1_3_7"; @@ -1397,6 +1402,8 @@ self: super: { "avahi" = dontDistribute super."avahi"; "avatar-generator" = dontDistribute super."avatar-generator"; "average" = dontDistribute super."average"; + "avers-api" = doDistribute super."avers-api_0_0_4"; + "avers-server" = doDistribute super."avers-server_0_0_3"; "avl-static" = dontDistribute super."avl-static"; "avr-shake" = dontDistribute super."avr-shake"; "awesome-prelude" = dontDistribute super."awesome-prelude"; @@ -1747,6 +1754,7 @@ self: super: { "cabal-nirvana" = dontDistribute super."cabal-nirvana"; "cabal-progdeps" = dontDistribute super."cabal-progdeps"; "cabal-query" = dontDistribute super."cabal-query"; + "cabal-rpm" = doDistribute super."cabal-rpm_0_9_10"; "cabal-scripts" = dontDistribute super."cabal-scripts"; "cabal-setup" = dontDistribute super."cabal-setup"; "cabal-sign" = dontDistribute super."cabal-sign"; @@ -2053,6 +2061,7 @@ self: super: { "conductive-clock" = dontDistribute super."conductive-clock"; "conductive-hsc3" = dontDistribute super."conductive-hsc3"; "conductive-song" = dontDistribute super."conductive-song"; + "conduit" = doDistribute super."conduit_1_2_6_4"; "conduit-audio" = dontDistribute super."conduit-audio"; "conduit-audio-lame" = dontDistribute super."conduit-audio-lame"; "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; @@ -2193,6 +2202,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptonite" = doDistribute super."cryptonite_0_10"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2396,6 +2406,7 @@ self: super: { "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; + "declarative" = doDistribute super."declarative_0_1_0_1"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; "dedukti" = dontDistribute super."dedukti"; @@ -3227,6 +3238,7 @@ self: super: { "gitdo" = dontDistribute super."gitdo"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-utils" = dontDistribute super."github-utils"; "gitignore" = dontDistribute super."gitignore"; "gitit" = dontDistribute super."gitit"; @@ -4087,6 +4099,7 @@ self: super: { "hothasktags" = dontDistribute super."hothasktags"; "hotswap" = dontDistribute super."hotswap"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4099,6 +4112,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; "hpdft" = dontDistribute super."hpdft"; @@ -4369,6 +4383,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -4636,6 +4651,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_1_0_13"; "json-b" = dontDistribute super."json-b"; @@ -4966,6 +4982,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-grouping" = dontDistribute super."list-grouping"; @@ -5274,6 +5291,7 @@ self: super: { "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; "monad-connect" = dontDistribute super."monad-connect"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -5887,6 +5905,7 @@ self: super: { "pinchot" = doDistribute super."pinchot_0_6_0_0"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; + "pipes" = doDistribute super."pipes_4_1_8"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec" = doDistribute super."pipes-attoparsec_0_5_1_2"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; @@ -6109,6 +6128,7 @@ self: super: { "prosper" = dontDistribute super."prosper"; "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12"; "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_12"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -6420,6 +6440,7 @@ self: super: { "resource-pool-catchio" = dontDistribute super."resource-pool-catchio"; "resource-pool-monad" = dontDistribute super."resource-pool-monad"; "resource-simple" = dontDistribute super."resource-simple"; + "resourcet" = doDistribute super."resourcet_1_1_7_3"; "respond" = dontDistribute super."respond"; "rest-core" = doDistribute super."rest-core_0_37"; "rest-example" = dontDistribute super."rest-example"; @@ -6688,6 +6709,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_7"; @@ -6920,6 +6942,7 @@ self: super: { "snow-white" = dontDistribute super."snow-white"; "snowball" = dontDistribute super."snowball"; "snowglobe" = dontDistribute super."snowglobe"; + "soap" = doDistribute super."soap_0_2_2_7"; "sock2stream" = dontDistribute super."sock2stream"; "sockaddr" = dontDistribute super."sockaddr"; "socket" = doDistribute super."socket_0_5_3_1"; @@ -6927,6 +6950,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -7015,6 +7039,7 @@ self: super: { "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; "stack-run" = dontDistribute super."stack-run"; + "stack-run-auto" = doDistribute super."stack-run-auto_0_1_1_0"; "stackage-curator" = doDistribute super."stackage-curator_0_13_1"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; @@ -7197,6 +7222,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -7229,6 +7255,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_9"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; @@ -7366,6 +7393,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -7475,6 +7503,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "trajectory" = dontDistribute super."trajectory"; "transactional-events" = dontDistribute super."transactional-events"; @@ -7522,6 +7551,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "tttool" = doDistribute super."tttool_1_5_1"; "tubes" = dontDistribute super."tubes"; "tuntap" = dontDistribute super."tuntap"; @@ -7639,6 +7669,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -7912,6 +7943,7 @@ self: super: { "web-routes-transformers" = dontDistribute super."web-routes-transformers"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.13.nix b/pkgs/development/haskell-modules/configuration-lts-5.13.nix index 2bc6383a95a..49aedccdd13 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.13.nix @@ -106,6 +106,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -482,6 +483,7 @@ self: super: { "HaskellForMaths" = dontDistribute super."HaskellForMaths"; "HaskellLM" = dontDistribute super."HaskellLM"; "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellNet" = doDistribute super."HaskellNet_0_5"; "HaskellNet-SSL" = doDistribute super."HaskellNet-SSL_0_3_2_1"; "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; @@ -962,6 +964,7 @@ self: super: { "Webrexp" = dontDistribute super."Webrexp"; "Wheb" = dontDistribute super."Wheb"; "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32" = doDistribute super."Win32_2_3_1_0"; "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; "Win32-errors" = dontDistribute super."Win32-errors"; "Win32-junction-point" = dontDistribute super."Win32-junction-point"; @@ -1092,6 +1095,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1181,6 +1185,7 @@ self: super: { "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_1_3_7"; "amazonka-codepipeline" = doDistribute super."amazonka-codepipeline_1_3_7"; "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_1_3_7"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_1_3_7"; "amazonka-config" = doDistribute super."amazonka-config_1_3_7"; "amazonka-core" = doDistribute super."amazonka-core_1_3_7"; @@ -1393,6 +1398,8 @@ self: super: { "avahi" = dontDistribute super."avahi"; "avatar-generator" = dontDistribute super."avatar-generator"; "average" = dontDistribute super."average"; + "avers-api" = doDistribute super."avers-api_0_0_4"; + "avers-server" = doDistribute super."avers-server_0_0_3"; "avl-static" = dontDistribute super."avl-static"; "avr-shake" = dontDistribute super."avr-shake"; "awesome-prelude" = dontDistribute super."awesome-prelude"; @@ -1740,6 +1747,7 @@ self: super: { "cabal-nirvana" = dontDistribute super."cabal-nirvana"; "cabal-progdeps" = dontDistribute super."cabal-progdeps"; "cabal-query" = dontDistribute super."cabal-query"; + "cabal-rpm" = doDistribute super."cabal-rpm_0_9_10"; "cabal-scripts" = dontDistribute super."cabal-scripts"; "cabal-setup" = dontDistribute super."cabal-setup"; "cabal-sign" = dontDistribute super."cabal-sign"; @@ -2043,6 +2051,7 @@ self: super: { "conductive-clock" = dontDistribute super."conductive-clock"; "conductive-hsc3" = dontDistribute super."conductive-hsc3"; "conductive-song" = dontDistribute super."conductive-song"; + "conduit" = doDistribute super."conduit_1_2_6_4"; "conduit-audio" = dontDistribute super."conduit-audio"; "conduit-audio-lame" = dontDistribute super."conduit-audio-lame"; "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; @@ -2183,6 +2192,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptonite" = doDistribute super."cryptonite_0_10"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2386,6 +2396,7 @@ self: super: { "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; + "declarative" = doDistribute super."declarative_0_1_0_1"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; "dedukti" = dontDistribute super."dedukti"; @@ -3216,6 +3227,7 @@ self: super: { "gitdo" = dontDistribute super."gitdo"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-utils" = dontDistribute super."github-utils"; "gitignore" = dontDistribute super."gitignore"; "gitit" = dontDistribute super."gitit"; @@ -4076,6 +4088,7 @@ self: super: { "hothasktags" = dontDistribute super."hothasktags"; "hotswap" = dontDistribute super."hotswap"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4088,6 +4101,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; "hpdft" = dontDistribute super."hpdft"; @@ -4305,6 +4319,7 @@ self: super: { "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; + "http-conduit" = doDistribute super."http-conduit_2_1_10"; "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; "http-dispatch" = dontDistribute super."http-dispatch"; @@ -4354,6 +4369,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -4619,6 +4635,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_1_0_13"; "json-b" = dontDistribute super."json-b"; @@ -4949,6 +4966,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-grouping" = dontDistribute super."list-grouping"; @@ -5256,6 +5274,7 @@ self: super: { "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; "monad-connect" = dontDistribute super."monad-connect"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -5867,6 +5886,7 @@ self: super: { "pinchot" = doDistribute super."pinchot_0_6_0_0"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; + "pipes" = doDistribute super."pipes_4_1_8"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-bzip" = dontDistribute super."pipes-bzip"; @@ -5886,6 +5906,7 @@ self: super: { "pipes-network-tls" = dontDistribute super."pipes-network-tls"; "pipes-p2p" = dontDistribute super."pipes-p2p"; "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples"; + "pipes-parse" = doDistribute super."pipes-parse_3_0_5"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-shell" = dontDistribute super."pipes-shell"; @@ -6086,6 +6107,7 @@ self: super: { "prosper" = dontDistribute super."prosper"; "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12"; "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_12"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -6397,6 +6419,7 @@ self: super: { "resource-pool-catchio" = dontDistribute super."resource-pool-catchio"; "resource-pool-monad" = dontDistribute super."resource-pool-monad"; "resource-simple" = dontDistribute super."resource-simple"; + "resourcet" = doDistribute super."resourcet_1_1_7_3"; "respond" = dontDistribute super."respond"; "rest-core" = doDistribute super."rest-core_0_37"; "rest-example" = dontDistribute super."rest-example"; @@ -6665,6 +6688,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_7"; @@ -6897,6 +6921,7 @@ self: super: { "snow-white" = dontDistribute super."snow-white"; "snowball" = dontDistribute super."snowball"; "snowglobe" = dontDistribute super."snowglobe"; + "soap" = doDistribute super."soap_0_2_2_7"; "sock2stream" = dontDistribute super."sock2stream"; "sockaddr" = dontDistribute super."sockaddr"; "socket" = doDistribute super."socket_0_5_3_1"; @@ -6904,6 +6929,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -6992,6 +7018,7 @@ self: super: { "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; "stack-run" = dontDistribute super."stack-run"; + "stack-run-auto" = doDistribute super."stack-run-auto_0_1_1_0"; "stackage-curator" = doDistribute super."stackage-curator_0_13_3"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; @@ -7174,6 +7201,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -7206,6 +7234,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_9"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; @@ -7343,6 +7372,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -7452,6 +7482,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "trajectory" = dontDistribute super."trajectory"; "transactional-events" = dontDistribute super."transactional-events"; @@ -7499,6 +7530,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "tttool" = doDistribute super."tttool_1_5_1"; "tubes" = dontDistribute super."tubes"; "tuntap" = dontDistribute super."tuntap"; @@ -7616,6 +7648,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -7886,6 +7919,7 @@ self: super: { "web-routes-transformers" = dontDistribute super."web-routes-transformers"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.14.nix b/pkgs/development/haskell-modules/configuration-lts-5.14.nix index 28f470e7dda..6755f138c59 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.14.nix @@ -106,6 +106,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -125,6 +126,7 @@ self: super: { "BitSyntax" = dontDistribute super."BitSyntax"; "Bitly" = dontDistribute super."Bitly"; "Blobs" = dontDistribute super."Blobs"; + "BlogLiterately" = doDistribute super."BlogLiterately_0_8_2_1"; "BluePrintCSS" = dontDistribute super."BluePrintCSS"; "Blueprint" = dontDistribute super."Blueprint"; "Bookshelf" = dontDistribute super."Bookshelf"; @@ -481,6 +483,7 @@ self: super: { "HaskellForMaths" = dontDistribute super."HaskellForMaths"; "HaskellLM" = dontDistribute super."HaskellLM"; "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellNet" = doDistribute super."HaskellNet_0_5"; "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; @@ -959,6 +962,7 @@ self: super: { "Webrexp" = dontDistribute super."Webrexp"; "Wheb" = dontDistribute super."Wheb"; "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32" = doDistribute super."Win32_2_3_1_0"; "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; "Win32-errors" = dontDistribute super."Win32-errors"; "Win32-junction-point" = dontDistribute super."Win32-junction-point"; @@ -1089,6 +1093,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1178,6 +1183,7 @@ self: super: { "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_1_3_7"; "amazonka-codepipeline" = doDistribute super."amazonka-codepipeline_1_3_7"; "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_1_3_7"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_1_3_7"; "amazonka-config" = doDistribute super."amazonka-config_1_3_7"; "amazonka-core" = doDistribute super."amazonka-core_1_3_7"; @@ -1387,6 +1393,8 @@ self: super: { "avahi" = dontDistribute super."avahi"; "avatar-generator" = dontDistribute super."avatar-generator"; "average" = dontDistribute super."average"; + "avers-api" = doDistribute super."avers-api_0_0_4"; + "avers-server" = doDistribute super."avers-server_0_0_3"; "avl-static" = dontDistribute super."avl-static"; "avr-shake" = dontDistribute super."avr-shake"; "awesome-prelude" = dontDistribute super."awesome-prelude"; @@ -1733,6 +1741,7 @@ self: super: { "cabal-nirvana" = dontDistribute super."cabal-nirvana"; "cabal-progdeps" = dontDistribute super."cabal-progdeps"; "cabal-query" = dontDistribute super."cabal-query"; + "cabal-rpm" = doDistribute super."cabal-rpm_0_9_10"; "cabal-scripts" = dontDistribute super."cabal-scripts"; "cabal-setup" = dontDistribute super."cabal-setup"; "cabal-sign" = dontDistribute super."cabal-sign"; @@ -2034,6 +2043,7 @@ self: super: { "conductive-clock" = dontDistribute super."conductive-clock"; "conductive-hsc3" = dontDistribute super."conductive-hsc3"; "conductive-song" = dontDistribute super."conductive-song"; + "conduit" = doDistribute super."conduit_1_2_6_4"; "conduit-audio" = dontDistribute super."conduit-audio"; "conduit-audio-lame" = dontDistribute super."conduit-audio-lame"; "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; @@ -2172,6 +2182,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; @@ -2374,6 +2385,7 @@ self: super: { "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; + "declarative" = doDistribute super."declarative_0_1_0_1"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; "dedukti" = dontDistribute super."dedukti"; @@ -3201,6 +3213,7 @@ self: super: { "gitdo" = dontDistribute super."gitdo"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-utils" = dontDistribute super."github-utils"; "gitignore" = dontDistribute super."gitignore"; "gitit" = dontDistribute super."gitit"; @@ -4060,6 +4073,7 @@ self: super: { "hothasktags" = dontDistribute super."hothasktags"; "hotswap" = dontDistribute super."hotswap"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4072,6 +4086,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; "hpdft" = dontDistribute super."hpdft"; @@ -4289,6 +4304,7 @@ self: super: { "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; + "http-conduit" = doDistribute super."http-conduit_2_1_10"; "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; "http-dispatch" = dontDistribute super."http-dispatch"; @@ -4338,6 +4354,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -4603,6 +4620,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_1_0_13"; "json-b" = dontDistribute super."json-b"; @@ -4932,6 +4950,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-grouping" = dontDistribute super."list-grouping"; @@ -5237,6 +5256,7 @@ self: super: { "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; "monad-connect" = dontDistribute super."monad-connect"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -5845,6 +5865,7 @@ self: super: { "pinchot" = doDistribute super."pinchot_0_6_0_0"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; + "pipes" = doDistribute super."pipes_4_1_8"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-bzip" = dontDistribute super."pipes-bzip"; @@ -5864,6 +5885,7 @@ self: super: { "pipes-network-tls" = dontDistribute super."pipes-network-tls"; "pipes-p2p" = dontDistribute super."pipes-p2p"; "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples"; + "pipes-parse" = doDistribute super."pipes-parse_3_0_5"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-shell" = dontDistribute super."pipes-shell"; @@ -6064,6 +6086,7 @@ self: super: { "prosper" = dontDistribute super."prosper"; "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12"; "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_12"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -6374,6 +6397,7 @@ self: super: { "resource-pool-catchio" = dontDistribute super."resource-pool-catchio"; "resource-pool-monad" = dontDistribute super."resource-pool-monad"; "resource-simple" = dontDistribute super."resource-simple"; + "resourcet" = doDistribute super."resourcet_1_1_7_3"; "respond" = dontDistribute super."respond"; "rest-core" = doDistribute super."rest-core_0_37"; "rest-example" = dontDistribute super."rest-example"; @@ -6641,6 +6665,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_7"; @@ -6869,6 +6894,7 @@ self: super: { "snow-white" = dontDistribute super."snow-white"; "snowball" = dontDistribute super."snowball"; "snowglobe" = dontDistribute super."snowglobe"; + "soap" = doDistribute super."soap_0_2_2_7"; "sock2stream" = dontDistribute super."sock2stream"; "sockaddr" = dontDistribute super."sockaddr"; "socket" = doDistribute super."socket_0_5_3_1"; @@ -6876,6 +6902,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -6964,6 +6991,7 @@ self: super: { "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; "stack-run" = dontDistribute super."stack-run"; + "stack-run-auto" = doDistribute super."stack-run-auto_0_1_1_0"; "stackage-curator" = doDistribute super."stackage-curator_0_13_3"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; @@ -7144,6 +7172,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -7175,6 +7204,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_9"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; @@ -7310,6 +7340,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -7385,6 +7416,7 @@ self: super: { "tkhs" = dontDistribute super."tkhs"; "tkyprof" = dontDistribute super."tkyprof"; "tld" = dontDistribute super."tld"; + "tls" = doDistribute super."tls_1_3_5"; "tls-debug" = doDistribute super."tls-debug_0_4_1"; "tls-extra" = dontDistribute super."tls-extra"; "tmpl" = dontDistribute super."tmpl"; @@ -7418,6 +7450,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "trajectory" = dontDistribute super."trajectory"; "transactional-events" = dontDistribute super."transactional-events"; @@ -7465,6 +7498,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "tttool" = doDistribute super."tttool_1_5_1"; "tubes" = dontDistribute super."tubes"; "tuntap" = dontDistribute super."tuntap"; @@ -7581,6 +7615,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -7845,6 +7880,7 @@ self: super: { "web-routes-transformers" = dontDistribute super."web-routes-transformers"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.15.nix b/pkgs/development/haskell-modules/configuration-lts-5.15.nix index a6d2b1237c8..eab17859efa 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.15.nix @@ -106,6 +106,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -125,6 +126,7 @@ self: super: { "BitSyntax" = dontDistribute super."BitSyntax"; "Bitly" = dontDistribute super."Bitly"; "Blobs" = dontDistribute super."Blobs"; + "BlogLiterately" = doDistribute super."BlogLiterately_0_8_2_1"; "BluePrintCSS" = dontDistribute super."BluePrintCSS"; "Blueprint" = dontDistribute super."Blueprint"; "Bookshelf" = dontDistribute super."Bookshelf"; @@ -480,6 +482,7 @@ self: super: { "HaskellForMaths" = dontDistribute super."HaskellForMaths"; "HaskellLM" = dontDistribute super."HaskellLM"; "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellNet" = doDistribute super."HaskellNet_0_5"; "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; "Haskelloids" = dontDistribute super."Haskelloids"; @@ -958,6 +961,7 @@ self: super: { "Webrexp" = dontDistribute super."Webrexp"; "Wheb" = dontDistribute super."Wheb"; "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32" = doDistribute super."Win32_2_3_1_0"; "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; "Win32-errors" = dontDistribute super."Win32-errors"; "Win32-junction-point" = dontDistribute super."Win32-junction-point"; @@ -1088,6 +1092,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1177,6 +1182,7 @@ self: super: { "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_1_3_7"; "amazonka-codepipeline" = doDistribute super."amazonka-codepipeline_1_3_7"; "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_1_3_7"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_1_3_7"; "amazonka-config" = doDistribute super."amazonka-config_1_3_7"; "amazonka-core" = doDistribute super."amazonka-core_1_3_7"; @@ -1386,6 +1392,8 @@ self: super: { "avahi" = dontDistribute super."avahi"; "avatar-generator" = dontDistribute super."avatar-generator"; "average" = dontDistribute super."average"; + "avers-api" = doDistribute super."avers-api_0_0_4"; + "avers-server" = doDistribute super."avers-server_0_0_3"; "avl-static" = dontDistribute super."avl-static"; "avr-shake" = dontDistribute super."avr-shake"; "awesome-prelude" = dontDistribute super."awesome-prelude"; @@ -1731,6 +1739,7 @@ self: super: { "cabal-nirvana" = dontDistribute super."cabal-nirvana"; "cabal-progdeps" = dontDistribute super."cabal-progdeps"; "cabal-query" = dontDistribute super."cabal-query"; + "cabal-rpm" = doDistribute super."cabal-rpm_0_9_10"; "cabal-scripts" = dontDistribute super."cabal-scripts"; "cabal-setup" = dontDistribute super."cabal-setup"; "cabal-sign" = dontDistribute super."cabal-sign"; @@ -2032,6 +2041,7 @@ self: super: { "conductive-clock" = dontDistribute super."conductive-clock"; "conductive-hsc3" = dontDistribute super."conductive-hsc3"; "conductive-song" = dontDistribute super."conductive-song"; + "conduit" = doDistribute super."conduit_1_2_6_4"; "conduit-audio" = dontDistribute super."conduit-audio"; "conduit-audio-lame" = dontDistribute super."conduit-audio-lame"; "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; @@ -2169,6 +2179,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; @@ -2370,6 +2381,7 @@ self: super: { "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; + "declarative" = doDistribute super."declarative_0_1_0_1"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; "dedukti" = dontDistribute super."dedukti"; @@ -3194,6 +3206,7 @@ self: super: { "gitdo" = dontDistribute super."gitdo"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-utils" = dontDistribute super."github-utils"; "gitignore" = dontDistribute super."gitignore"; "gitit" = dontDistribute super."gitit"; @@ -4051,6 +4064,7 @@ self: super: { "hothasktags" = dontDistribute super."hothasktags"; "hotswap" = dontDistribute super."hotswap"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4063,6 +4077,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; "hpdft" = dontDistribute super."hpdft"; @@ -4280,6 +4295,7 @@ self: super: { "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; "http-client-session" = dontDistribute super."http-client-session"; "http-client-streams" = dontDistribute super."http-client-streams"; + "http-conduit" = doDistribute super."http-conduit_2_1_10"; "http-conduit-browser" = dontDistribute super."http-conduit-browser"; "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; "http-dispatch" = dontDistribute super."http-dispatch"; @@ -4329,6 +4345,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -4594,6 +4611,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_1_0_13"; "json-b" = dontDistribute super."json-b"; @@ -4922,6 +4940,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-grouping" = dontDistribute super."list-grouping"; @@ -5079,6 +5098,7 @@ self: super: { "manatee-terminal" = dontDistribute super."manatee-terminal"; "manatee-welcome" = dontDistribute super."manatee-welcome"; "mancala" = dontDistribute super."mancala"; + "mandrill" = doDistribute super."mandrill_0_5_2_0"; "mandulia" = dontDistribute super."mandulia"; "manifold-random" = dontDistribute super."manifold-random"; "manifolds" = dontDistribute super."manifolds"; @@ -5226,6 +5246,7 @@ self: super: { "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; "monad-connect" = dontDistribute super."monad-connect"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -5834,6 +5855,7 @@ self: super: { "pinchot" = doDistribute super."pinchot_0_6_0_0"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; + "pipes" = doDistribute super."pipes_4_1_8"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-bzip" = dontDistribute super."pipes-bzip"; @@ -5853,6 +5875,7 @@ self: super: { "pipes-network-tls" = dontDistribute super."pipes-network-tls"; "pipes-p2p" = dontDistribute super."pipes-p2p"; "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples"; + "pipes-parse" = doDistribute super."pipes-parse_3_0_5"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; "pipes-shell" = dontDistribute super."pipes-shell"; @@ -6050,6 +6073,7 @@ self: super: { "prosper" = dontDistribute super."prosper"; "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12"; "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_12"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -6360,6 +6384,7 @@ self: super: { "resource-pool-catchio" = dontDistribute super."resource-pool-catchio"; "resource-pool-monad" = dontDistribute super."resource-pool-monad"; "resource-simple" = dontDistribute super."resource-simple"; + "resourcet" = doDistribute super."resourcet_1_1_7_3"; "respond" = dontDistribute super."respond"; "rest-core" = doDistribute super."rest-core_0_37"; "rest-example" = dontDistribute super."rest-example"; @@ -6627,6 +6652,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_7"; @@ -6855,6 +6881,7 @@ self: super: { "snow-white" = dontDistribute super."snow-white"; "snowball" = dontDistribute super."snowball"; "snowglobe" = dontDistribute super."snowglobe"; + "soap" = doDistribute super."soap_0_2_2_7"; "sock2stream" = dontDistribute super."sock2stream"; "sockaddr" = dontDistribute super."sockaddr"; "socket" = doDistribute super."socket_0_5_3_1"; @@ -6862,6 +6889,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -6950,6 +6978,7 @@ self: super: { "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; "stack-run" = dontDistribute super."stack-run"; + "stack-run-auto" = doDistribute super."stack-run-auto_0_1_1_0"; "stackage-curator" = doDistribute super."stackage-curator_0_13_3"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; @@ -7130,6 +7159,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -7161,6 +7191,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_9"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; @@ -7294,6 +7325,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -7369,6 +7401,7 @@ self: super: { "tkhs" = dontDistribute super."tkhs"; "tkyprof" = dontDistribute super."tkyprof"; "tld" = dontDistribute super."tld"; + "tls" = doDistribute super."tls_1_3_5"; "tls-debug" = doDistribute super."tls-debug_0_4_1"; "tls-extra" = dontDistribute super."tls-extra"; "tmpl" = dontDistribute super."tmpl"; @@ -7402,6 +7435,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "trajectory" = dontDistribute super."trajectory"; "transactional-events" = dontDistribute super."transactional-events"; @@ -7448,6 +7482,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "tttool" = doDistribute super."tttool_1_5_1"; "tubes" = dontDistribute super."tubes"; "tuntap" = dontDistribute super."tuntap"; @@ -7564,6 +7599,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -7828,6 +7864,7 @@ self: super: { "web-routes-transformers" = dontDistribute super."web-routes-transformers"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.2.nix b/pkgs/development/haskell-modules/configuration-lts-5.2.nix index 1250eb5119c..586fa1423ab 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.2.nix @@ -106,6 +106,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -490,6 +491,7 @@ self: super: { "HaskellForMaths" = dontDistribute super."HaskellForMaths"; "HaskellLM" = dontDistribute super."HaskellLM"; "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellNet" = doDistribute super."HaskellNet_0_5"; "HaskellNet-SSL" = doDistribute super."HaskellNet-SSL_0_3_2_1"; "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; @@ -974,6 +976,7 @@ self: super: { "Webrexp" = dontDistribute super."Webrexp"; "Wheb" = dontDistribute super."Wheb"; "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32" = doDistribute super."Win32_2_3_1_0"; "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; "Win32-errors" = dontDistribute super."Win32-errors"; "Win32-junction-point" = dontDistribute super."Win32-junction-point"; @@ -1106,6 +1109,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1196,6 +1200,7 @@ self: super: { "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_1_3_7"; "amazonka-codepipeline" = doDistribute super."amazonka-codepipeline_1_3_7"; "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_1_3_7"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_1_3_7"; "amazonka-config" = doDistribute super."amazonka-config_1_3_7"; "amazonka-core" = doDistribute super."amazonka-core_1_3_7"; @@ -2236,6 +2241,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptonite" = doDistribute super."cryptonite_0_10"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2440,6 +2446,7 @@ self: super: { "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; + "declarative" = doDistribute super."declarative_0_1_0_1"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; "dedukti" = dontDistribute super."dedukti"; @@ -3293,6 +3300,7 @@ self: super: { "gitdo" = dontDistribute super."gitdo"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-utils" = dontDistribute super."github-utils"; "gitignore" = dontDistribute super."gitignore"; "gitit" = dontDistribute super."gitit"; @@ -4165,6 +4173,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4177,6 +4186,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_1_0_3"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4457,6 +4467,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -4730,6 +4741,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; @@ -5062,6 +5074,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-grouping" = dontDistribute super."list-grouping"; @@ -5386,6 +5399,7 @@ self: super: { "monad-codec" = dontDistribute super."monad-codec"; "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_5"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -6014,6 +6028,7 @@ self: super: { "pinchot" = doDistribute super."pinchot_0_6_0_0"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; + "pipes" = doDistribute super."pipes_4_1_8"; "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_5"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec" = doDistribute super."pipes-attoparsec_0_5_1_2"; @@ -6241,6 +6256,7 @@ self: super: { "prosper" = dontDistribute super."prosper"; "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12"; "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_12"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -6828,6 +6844,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_6"; @@ -7065,6 +7082,7 @@ self: super: { "snow-white" = dontDistribute super."snow-white"; "snowball" = dontDistribute super."snowball"; "snowglobe" = dontDistribute super."snowglobe"; + "soap" = doDistribute super."soap_0_2_2_7"; "sock2stream" = dontDistribute super."sock2stream"; "sockaddr" = dontDistribute super."sockaddr"; "socket" = doDistribute super."socket_0_5_3_0"; @@ -7073,6 +7091,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -7161,6 +7180,7 @@ self: super: { "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; "stack-run" = dontDistribute super."stack-run"; + "stack-run-auto" = doDistribute super."stack-run-auto_0_1_1_0"; "stackage-curator" = doDistribute super."stackage-curator_0_13_0"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; @@ -7349,6 +7369,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -7523,6 +7544,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -7632,6 +7654,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = doDistribute super."tracy_0_1_2_0"; "trajectory" = dontDistribute super."trajectory"; @@ -7681,6 +7704,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "tttool" = doDistribute super."tttool_1_5_1"; "tubes" = dontDistribute super."tubes"; "tuntap" = dontDistribute super."tuntap"; @@ -7801,6 +7825,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -8086,6 +8111,7 @@ self: super: { "web-routes-transformers" = dontDistribute super."web-routes-transformers"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.3.nix b/pkgs/development/haskell-modules/configuration-lts-5.3.nix index f9911c0a94d..f1ce759151c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.3.nix @@ -106,6 +106,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -487,6 +488,7 @@ self: super: { "HaskellForMaths" = dontDistribute super."HaskellForMaths"; "HaskellLM" = dontDistribute super."HaskellLM"; "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellNet" = doDistribute super."HaskellNet_0_5"; "HaskellNet-SSL" = doDistribute super."HaskellNet-SSL_0_3_2_1"; "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; @@ -971,6 +973,7 @@ self: super: { "Webrexp" = dontDistribute super."Webrexp"; "Wheb" = dontDistribute super."Wheb"; "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32" = doDistribute super."Win32_2_3_1_0"; "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; "Win32-errors" = dontDistribute super."Win32-errors"; "Win32-junction-point" = dontDistribute super."Win32-junction-point"; @@ -1103,6 +1106,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1193,6 +1197,7 @@ self: super: { "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_1_3_7"; "amazonka-codepipeline" = doDistribute super."amazonka-codepipeline_1_3_7"; "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_1_3_7"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_1_3_7"; "amazonka-config" = doDistribute super."amazonka-config_1_3_7"; "amazonka-core" = doDistribute super."amazonka-core_1_3_7"; @@ -2229,6 +2234,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptonite" = doDistribute super."cryptonite_0_10"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2432,6 +2438,7 @@ self: super: { "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; + "declarative" = doDistribute super."declarative_0_1_0_1"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; "dedukti" = dontDistribute super."dedukti"; @@ -3276,6 +3283,7 @@ self: super: { "gitdo" = dontDistribute super."gitdo"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-utils" = dontDistribute super."github-utils"; "gitignore" = dontDistribute super."gitignore"; "gitit" = dontDistribute super."gitit"; @@ -4148,6 +4156,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4160,6 +4169,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_1_0_3"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4440,6 +4450,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -4712,6 +4723,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; @@ -5044,6 +5056,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-grouping" = dontDistribute super."list-grouping"; @@ -5366,6 +5379,7 @@ self: super: { "monad-codec" = dontDistribute super."monad-codec"; "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_5"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -5993,6 +6007,7 @@ self: super: { "pinchot" = doDistribute super."pinchot_0_6_0_0"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; + "pipes" = doDistribute super."pipes_4_1_8"; "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_5"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec" = doDistribute super."pipes-attoparsec_0_5_1_2"; @@ -6220,6 +6235,7 @@ self: super: { "prosper" = dontDistribute super."prosper"; "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12"; "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_12"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -6804,6 +6820,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_6"; @@ -7039,6 +7056,7 @@ self: super: { "snow-white" = dontDistribute super."snow-white"; "snowball" = dontDistribute super."snowball"; "snowglobe" = dontDistribute super."snowglobe"; + "soap" = doDistribute super."soap_0_2_2_7"; "sock2stream" = dontDistribute super."sock2stream"; "sockaddr" = dontDistribute super."sockaddr"; "socket" = doDistribute super."socket_0_5_3_0"; @@ -7046,6 +7064,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -7134,6 +7153,7 @@ self: super: { "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; "stack-run" = dontDistribute super."stack-run"; + "stack-run-auto" = doDistribute super."stack-run-auto_0_1_1_0"; "stackage-curator" = doDistribute super."stackage-curator_0_13_1"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; @@ -7321,6 +7341,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -7495,6 +7516,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -7604,6 +7626,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = doDistribute super."tracy_0_1_2_0"; "trajectory" = dontDistribute super."trajectory"; @@ -7653,6 +7676,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "tttool" = doDistribute super."tttool_1_5_1"; "tubes" = dontDistribute super."tubes"; "tuntap" = dontDistribute super."tuntap"; @@ -7773,6 +7797,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -8054,6 +8079,7 @@ self: super: { "web-routes-transformers" = dontDistribute super."web-routes-transformers"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.4.nix b/pkgs/development/haskell-modules/configuration-lts-5.4.nix index 790a2add670..e123a04f318 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.4.nix @@ -106,6 +106,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -486,6 +487,7 @@ self: super: { "HaskellForMaths" = dontDistribute super."HaskellForMaths"; "HaskellLM" = dontDistribute super."HaskellLM"; "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellNet" = doDistribute super."HaskellNet_0_5"; "HaskellNet-SSL" = doDistribute super."HaskellNet-SSL_0_3_2_1"; "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; @@ -970,6 +972,7 @@ self: super: { "Webrexp" = dontDistribute super."Webrexp"; "Wheb" = dontDistribute super."Wheb"; "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32" = doDistribute super."Win32_2_3_1_0"; "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; "Win32-errors" = dontDistribute super."Win32-errors"; "Win32-junction-point" = dontDistribute super."Win32-junction-point"; @@ -1101,6 +1104,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1191,6 +1195,7 @@ self: super: { "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_1_3_7"; "amazonka-codepipeline" = doDistribute super."amazonka-codepipeline_1_3_7"; "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_1_3_7"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_1_3_7"; "amazonka-config" = doDistribute super."amazonka-config_1_3_7"; "amazonka-core" = doDistribute super."amazonka-core_1_3_7"; @@ -2225,6 +2230,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptonite" = doDistribute super."cryptonite_0_10"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2428,6 +2434,7 @@ self: super: { "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; + "declarative" = doDistribute super."declarative_0_1_0_1"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; "dedukti" = dontDistribute super."dedukti"; @@ -3266,6 +3273,7 @@ self: super: { "gitdo" = dontDistribute super."gitdo"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-utils" = dontDistribute super."github-utils"; "gitignore" = dontDistribute super."gitignore"; "gitit" = dontDistribute super."gitit"; @@ -4137,6 +4145,7 @@ self: super: { "hotswap" = dontDistribute super."hotswap"; "hourglass" = doDistribute super."hourglass_0_2_9"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4149,6 +4158,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_1_0_3"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4428,6 +4438,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -4700,6 +4711,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; @@ -5032,6 +5044,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-grouping" = dontDistribute super."list-grouping"; @@ -5352,6 +5365,7 @@ self: super: { "monad-codec" = dontDistribute super."monad-codec"; "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_5"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -5974,6 +5988,7 @@ self: super: { "pinchot" = doDistribute super."pinchot_0_6_0_0"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; + "pipes" = doDistribute super."pipes_4_1_8"; "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_5"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec" = doDistribute super."pipes-attoparsec_0_5_1_2"; @@ -6200,6 +6215,7 @@ self: super: { "prosper" = dontDistribute super."prosper"; "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12"; "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_12"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -6783,6 +6799,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_6"; @@ -7018,6 +7035,7 @@ self: super: { "snow-white" = dontDistribute super."snow-white"; "snowball" = dontDistribute super."snowball"; "snowglobe" = dontDistribute super."snowglobe"; + "soap" = doDistribute super."soap_0_2_2_7"; "sock2stream" = dontDistribute super."sock2stream"; "sockaddr" = dontDistribute super."sockaddr"; "socket" = doDistribute super."socket_0_5_3_0"; @@ -7025,6 +7043,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -7113,6 +7132,7 @@ self: super: { "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; "stack-run" = dontDistribute super."stack-run"; + "stack-run-auto" = doDistribute super."stack-run-auto_0_1_1_0"; "stackage-curator" = doDistribute super."stackage-curator_0_13_1"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; @@ -7300,6 +7320,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -7473,6 +7494,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -7582,6 +7604,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = doDistribute super."tracy_0_1_2_0"; "trajectory" = dontDistribute super."trajectory"; @@ -7631,6 +7654,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "tttool" = doDistribute super."tttool_1_5_1"; "tubes" = dontDistribute super."tubes"; "tuntap" = dontDistribute super."tuntap"; @@ -7750,6 +7774,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -8031,6 +8056,7 @@ self: super: { "web-routes-transformers" = dontDistribute super."web-routes-transformers"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.5.nix b/pkgs/development/haskell-modules/configuration-lts-5.5.nix index e52c401380f..6657efbd460 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.5.nix @@ -106,6 +106,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -486,6 +487,7 @@ self: super: { "HaskellForMaths" = dontDistribute super."HaskellForMaths"; "HaskellLM" = dontDistribute super."HaskellLM"; "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellNet" = doDistribute super."HaskellNet_0_5"; "HaskellNet-SSL" = doDistribute super."HaskellNet-SSL_0_3_2_1"; "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; @@ -970,6 +972,7 @@ self: super: { "Webrexp" = dontDistribute super."Webrexp"; "Wheb" = dontDistribute super."Wheb"; "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32" = doDistribute super."Win32_2_3_1_0"; "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; "Win32-errors" = dontDistribute super."Win32-errors"; "Win32-junction-point" = dontDistribute super."Win32-junction-point"; @@ -1101,6 +1104,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1191,6 +1195,7 @@ self: super: { "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_1_3_7"; "amazonka-codepipeline" = doDistribute super."amazonka-codepipeline_1_3_7"; "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_1_3_7"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_1_3_7"; "amazonka-config" = doDistribute super."amazonka-config_1_3_7"; "amazonka-core" = doDistribute super."amazonka-core_1_3_7"; @@ -2222,6 +2227,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptonite" = doDistribute super."cryptonite_0_10"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2425,6 +2431,7 @@ self: super: { "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; + "declarative" = doDistribute super."declarative_0_1_0_1"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; "dedukti" = dontDistribute super."dedukti"; @@ -3263,6 +3270,7 @@ self: super: { "gitdo" = dontDistribute super."gitdo"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-utils" = dontDistribute super."github-utils"; "gitignore" = dontDistribute super."gitignore"; "gitit" = dontDistribute super."gitit"; @@ -4132,6 +4140,7 @@ self: super: { "hothasktags" = dontDistribute super."hothasktags"; "hotswap" = dontDistribute super."hotswap"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4144,6 +4153,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_1_0_3"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4423,6 +4433,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -4695,6 +4706,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_1_0_10"; "json-b" = dontDistribute super."json-b"; @@ -5027,6 +5039,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-grouping" = dontDistribute super."list-grouping"; @@ -5347,6 +5360,7 @@ self: super: { "monad-codec" = dontDistribute super."monad-codec"; "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_5"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -5969,6 +5983,7 @@ self: super: { "pinchot" = doDistribute super."pinchot_0_6_0_0"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; + "pipes" = doDistribute super."pipes_4_1_8"; "pipes-aeson" = doDistribute super."pipes-aeson_0_4_1_5"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec" = doDistribute super."pipes-attoparsec_0_5_1_2"; @@ -6195,6 +6210,7 @@ self: super: { "prosper" = dontDistribute super."prosper"; "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12"; "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_12"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -6778,6 +6794,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_6"; @@ -7013,6 +7030,7 @@ self: super: { "snow-white" = dontDistribute super."snow-white"; "snowball" = dontDistribute super."snowball"; "snowglobe" = dontDistribute super."snowglobe"; + "soap" = doDistribute super."soap_0_2_2_7"; "sock2stream" = dontDistribute super."sock2stream"; "sockaddr" = dontDistribute super."sockaddr"; "socket" = doDistribute super."socket_0_5_3_0"; @@ -7020,6 +7038,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -7108,6 +7127,7 @@ self: super: { "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; "stack-run" = dontDistribute super."stack-run"; + "stack-run-auto" = doDistribute super."stack-run-auto_0_1_1_0"; "stackage-curator" = doDistribute super."stackage-curator_0_13_1"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; @@ -7295,6 +7315,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -7468,6 +7489,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -7577,6 +7599,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "tracy" = doDistribute super."tracy_0_1_2_0"; "trajectory" = dontDistribute super."trajectory"; @@ -7626,6 +7649,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "tttool" = doDistribute super."tttool_1_5_1"; "tubes" = dontDistribute super."tubes"; "tuntap" = dontDistribute super."tuntap"; @@ -7745,6 +7769,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -8023,6 +8048,7 @@ self: super: { "web-routes-transformers" = dontDistribute super."web-routes-transformers"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.6.nix b/pkgs/development/haskell-modules/configuration-lts-5.6.nix index 3393c7f35ea..24c834831c7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.6.nix @@ -106,6 +106,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -485,6 +486,7 @@ self: super: { "HaskellForMaths" = dontDistribute super."HaskellForMaths"; "HaskellLM" = dontDistribute super."HaskellLM"; "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellNet" = doDistribute super."HaskellNet_0_5"; "HaskellNet-SSL" = doDistribute super."HaskellNet-SSL_0_3_2_1"; "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; @@ -969,6 +971,7 @@ self: super: { "Webrexp" = dontDistribute super."Webrexp"; "Wheb" = dontDistribute super."Wheb"; "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32" = doDistribute super."Win32_2_3_1_0"; "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; "Win32-errors" = dontDistribute super."Win32-errors"; "Win32-junction-point" = dontDistribute super."Win32-junction-point"; @@ -1100,6 +1103,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1190,6 +1194,7 @@ self: super: { "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_1_3_7"; "amazonka-codepipeline" = doDistribute super."amazonka-codepipeline_1_3_7"; "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_1_3_7"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_1_3_7"; "amazonka-config" = doDistribute super."amazonka-config_1_3_7"; "amazonka-core" = doDistribute super."amazonka-core_1_3_7"; @@ -2216,6 +2221,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptonite" = doDistribute super."cryptonite_0_10"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2419,6 +2425,7 @@ self: super: { "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; + "declarative" = doDistribute super."declarative_0_1_0_1"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; "dedukti" = dontDistribute super."dedukti"; @@ -3255,6 +3262,7 @@ self: super: { "gitdo" = dontDistribute super."gitdo"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-utils" = dontDistribute super."github-utils"; "gitignore" = dontDistribute super."gitignore"; "gitit" = dontDistribute super."gitit"; @@ -4121,6 +4129,7 @@ self: super: { "hothasktags" = dontDistribute super."hothasktags"; "hotswap" = dontDistribute super."hotswap"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4133,6 +4142,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_1_0_3"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4412,6 +4422,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -4684,6 +4695,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_1_0_11"; "json-b" = dontDistribute super."json-b"; @@ -5015,6 +5027,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-grouping" = dontDistribute super."list-grouping"; @@ -5334,6 +5347,7 @@ self: super: { "monad-codec" = dontDistribute super."monad-codec"; "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_5"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -5954,6 +5968,7 @@ self: super: { "pinchot" = doDistribute super."pinchot_0_6_0_0"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; + "pipes" = doDistribute super."pipes_4_1_8"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec" = doDistribute super."pipes-attoparsec_0_5_1_2"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; @@ -6179,6 +6194,7 @@ self: super: { "prosper" = dontDistribute super."prosper"; "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12"; "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_12"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -6490,6 +6506,7 @@ self: super: { "resource-pool-catchio" = dontDistribute super."resource-pool-catchio"; "resource-pool-monad" = dontDistribute super."resource-pool-monad"; "resource-simple" = dontDistribute super."resource-simple"; + "resourcet" = doDistribute super."resourcet_1_1_7_3"; "respond" = dontDistribute super."respond"; "rest-core" = doDistribute super."rest-core_0_37"; "rest-example" = dontDistribute super."rest-example"; @@ -6761,6 +6778,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_6"; @@ -6996,6 +7014,7 @@ self: super: { "snow-white" = dontDistribute super."snow-white"; "snowball" = dontDistribute super."snowball"; "snowglobe" = dontDistribute super."snowglobe"; + "soap" = doDistribute super."soap_0_2_2_7"; "sock2stream" = dontDistribute super."sock2stream"; "sockaddr" = dontDistribute super."sockaddr"; "socket" = doDistribute super."socket_0_5_3_0"; @@ -7003,6 +7022,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -7091,6 +7111,7 @@ self: super: { "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; "stack-run" = dontDistribute super."stack-run"; + "stack-run-auto" = doDistribute super."stack-run-auto_0_1_1_0"; "stackage-curator" = doDistribute super."stackage-curator_0_13_1"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; @@ -7278,6 +7299,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -7451,6 +7473,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -7560,6 +7583,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "trajectory" = dontDistribute super."trajectory"; "transactional-events" = dontDistribute super."transactional-events"; @@ -7608,6 +7632,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "tttool" = doDistribute super."tttool_1_5_1"; "tubes" = dontDistribute super."tubes"; "tuntap" = dontDistribute super."tuntap"; @@ -7727,6 +7752,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -8004,6 +8030,7 @@ self: super: { "web-routes-transformers" = dontDistribute super."web-routes-transformers"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.7.nix b/pkgs/development/haskell-modules/configuration-lts-5.7.nix index cdb0b7b2f7a..80ba60f0ab7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.7.nix @@ -106,6 +106,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -485,6 +486,7 @@ self: super: { "HaskellForMaths" = dontDistribute super."HaskellForMaths"; "HaskellLM" = dontDistribute super."HaskellLM"; "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellNet" = doDistribute super."HaskellNet_0_5"; "HaskellNet-SSL" = doDistribute super."HaskellNet-SSL_0_3_2_1"; "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; @@ -969,6 +971,7 @@ self: super: { "Webrexp" = dontDistribute super."Webrexp"; "Wheb" = dontDistribute super."Wheb"; "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32" = doDistribute super."Win32_2_3_1_0"; "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; "Win32-errors" = dontDistribute super."Win32-errors"; "Win32-junction-point" = dontDistribute super."Win32-junction-point"; @@ -1100,6 +1103,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1190,6 +1194,7 @@ self: super: { "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_1_3_7"; "amazonka-codepipeline" = doDistribute super."amazonka-codepipeline_1_3_7"; "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_1_3_7"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_1_3_7"; "amazonka-config" = doDistribute super."amazonka-config_1_3_7"; "amazonka-core" = doDistribute super."amazonka-core_1_3_7"; @@ -2071,6 +2076,7 @@ self: super: { "conductive-clock" = dontDistribute super."conductive-clock"; "conductive-hsc3" = dontDistribute super."conductive-hsc3"; "conductive-song" = dontDistribute super."conductive-song"; + "conduit" = doDistribute super."conduit_1_2_6_4"; "conduit-audio" = dontDistribute super."conduit-audio"; "conduit-audio-lame" = dontDistribute super."conduit-audio-lame"; "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; @@ -2212,6 +2218,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptonite" = doDistribute super."cryptonite_0_10"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2415,6 +2422,7 @@ self: super: { "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; + "declarative" = doDistribute super."declarative_0_1_0_1"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; "dedukti" = dontDistribute super."dedukti"; @@ -3251,6 +3259,7 @@ self: super: { "gitdo" = dontDistribute super."gitdo"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-utils" = dontDistribute super."github-utils"; "gitignore" = dontDistribute super."gitignore"; "gitit" = dontDistribute super."gitit"; @@ -4116,6 +4125,7 @@ self: super: { "hothasktags" = dontDistribute super."hothasktags"; "hotswap" = dontDistribute super."hotswap"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4128,6 +4138,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_1_0_3"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4406,6 +4417,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -4678,6 +4690,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_1_0_11"; "json-b" = dontDistribute super."json-b"; @@ -5009,6 +5022,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-grouping" = dontDistribute super."list-grouping"; @@ -5327,6 +5341,7 @@ self: super: { "monad-codec" = dontDistribute super."monad-codec"; "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_5"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -5945,6 +5960,7 @@ self: super: { "pinchot" = doDistribute super."pinchot_0_6_0_0"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; + "pipes" = doDistribute super."pipes_4_1_8"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec" = doDistribute super."pipes-attoparsec_0_5_1_2"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; @@ -6170,6 +6186,7 @@ self: super: { "prosper" = dontDistribute super."prosper"; "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12"; "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_12"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -6481,6 +6498,7 @@ self: super: { "resource-pool-catchio" = dontDistribute super."resource-pool-catchio"; "resource-pool-monad" = dontDistribute super."resource-pool-monad"; "resource-simple" = dontDistribute super."resource-simple"; + "resourcet" = doDistribute super."resourcet_1_1_7_3"; "respond" = dontDistribute super."respond"; "rest-core" = doDistribute super."rest-core_0_37"; "rest-example" = dontDistribute super."rest-example"; @@ -6751,6 +6769,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_6"; @@ -6986,6 +7005,7 @@ self: super: { "snow-white" = dontDistribute super."snow-white"; "snowball" = dontDistribute super."snowball"; "snowglobe" = dontDistribute super."snowglobe"; + "soap" = doDistribute super."soap_0_2_2_7"; "sock2stream" = dontDistribute super."sock2stream"; "sockaddr" = dontDistribute super."sockaddr"; "socket" = doDistribute super."socket_0_5_3_0"; @@ -6993,6 +7013,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -7081,6 +7102,7 @@ self: super: { "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; "stack-run" = dontDistribute super."stack-run"; + "stack-run-auto" = doDistribute super."stack-run-auto_0_1_1_0"; "stackage-curator" = doDistribute super."stackage-curator_0_13_1"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; @@ -7266,6 +7288,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -7439,6 +7462,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -7548,6 +7572,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "trajectory" = dontDistribute super."trajectory"; "transactional-events" = dontDistribute super."transactional-events"; @@ -7596,6 +7621,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "tttool" = doDistribute super."tttool_1_5_1"; "tubes" = dontDistribute super."tubes"; "tuntap" = dontDistribute super."tuntap"; @@ -7714,6 +7740,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -7991,6 +8018,7 @@ self: super: { "web-routes-transformers" = dontDistribute super."web-routes-transformers"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.8.nix b/pkgs/development/haskell-modules/configuration-lts-5.8.nix index fdd720ddc07..508263e7022 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.8.nix @@ -106,6 +106,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -485,6 +486,7 @@ self: super: { "HaskellForMaths" = dontDistribute super."HaskellForMaths"; "HaskellLM" = dontDistribute super."HaskellLM"; "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellNet" = doDistribute super."HaskellNet_0_5"; "HaskellNet-SSL" = doDistribute super."HaskellNet-SSL_0_3_2_1"; "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; @@ -969,6 +971,7 @@ self: super: { "Webrexp" = dontDistribute super."Webrexp"; "Wheb" = dontDistribute super."Wheb"; "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32" = doDistribute super."Win32_2_3_1_0"; "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; "Win32-errors" = dontDistribute super."Win32-errors"; "Win32-junction-point" = dontDistribute super."Win32-junction-point"; @@ -1100,6 +1103,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1190,6 +1194,7 @@ self: super: { "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_1_3_7"; "amazonka-codepipeline" = doDistribute super."amazonka-codepipeline_1_3_7"; "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_1_3_7"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_1_3_7"; "amazonka-config" = doDistribute super."amazonka-config_1_3_7"; "amazonka-core" = doDistribute super."amazonka-core_1_3_7"; @@ -2071,6 +2076,7 @@ self: super: { "conductive-clock" = dontDistribute super."conductive-clock"; "conductive-hsc3" = dontDistribute super."conductive-hsc3"; "conductive-song" = dontDistribute super."conductive-song"; + "conduit" = doDistribute super."conduit_1_2_6_4"; "conduit-audio" = dontDistribute super."conduit-audio"; "conduit-audio-lame" = dontDistribute super."conduit-audio-lame"; "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; @@ -2212,6 +2218,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptonite" = doDistribute super."cryptonite_0_10"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2415,6 +2422,7 @@ self: super: { "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; + "declarative" = doDistribute super."declarative_0_1_0_1"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; "dedukti" = dontDistribute super."dedukti"; @@ -3251,6 +3259,7 @@ self: super: { "gitdo" = dontDistribute super."gitdo"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-utils" = dontDistribute super."github-utils"; "gitignore" = dontDistribute super."gitignore"; "gitit" = dontDistribute super."gitit"; @@ -4116,6 +4125,7 @@ self: super: { "hothasktags" = dontDistribute super."hothasktags"; "hotswap" = dontDistribute super."hotswap"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4128,6 +4138,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_1_0_3"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4406,6 +4417,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -4678,6 +4690,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_1_0_11"; "json-b" = dontDistribute super."json-b"; @@ -5009,6 +5022,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-grouping" = dontDistribute super."list-grouping"; @@ -5327,6 +5341,7 @@ self: super: { "monad-codec" = dontDistribute super."monad-codec"; "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_5"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -5945,6 +5960,7 @@ self: super: { "pinchot" = doDistribute super."pinchot_0_6_0_0"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; + "pipes" = doDistribute super."pipes_4_1_8"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec" = doDistribute super."pipes-attoparsec_0_5_1_2"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; @@ -6170,6 +6186,7 @@ self: super: { "prosper" = dontDistribute super."prosper"; "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12"; "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_12"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -6481,6 +6498,7 @@ self: super: { "resource-pool-catchio" = dontDistribute super."resource-pool-catchio"; "resource-pool-monad" = dontDistribute super."resource-pool-monad"; "resource-simple" = dontDistribute super."resource-simple"; + "resourcet" = doDistribute super."resourcet_1_1_7_3"; "respond" = dontDistribute super."respond"; "rest-core" = doDistribute super."rest-core_0_37"; "rest-example" = dontDistribute super."rest-example"; @@ -6751,6 +6769,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_6"; @@ -6986,6 +7005,7 @@ self: super: { "snow-white" = dontDistribute super."snow-white"; "snowball" = dontDistribute super."snowball"; "snowglobe" = dontDistribute super."snowglobe"; + "soap" = doDistribute super."soap_0_2_2_7"; "sock2stream" = dontDistribute super."sock2stream"; "sockaddr" = dontDistribute super."sockaddr"; "socket" = doDistribute super."socket_0_5_3_0"; @@ -6993,6 +7013,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -7081,6 +7102,7 @@ self: super: { "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; "stack-run" = dontDistribute super."stack-run"; + "stack-run-auto" = doDistribute super."stack-run-auto_0_1_1_0"; "stackage-curator" = doDistribute super."stackage-curator_0_13_1"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; @@ -7266,6 +7288,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -7439,6 +7462,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -7548,6 +7572,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "trajectory" = dontDistribute super."trajectory"; "transactional-events" = dontDistribute super."transactional-events"; @@ -7596,6 +7621,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "tttool" = doDistribute super."tttool_1_5_1"; "tubes" = dontDistribute super."tubes"; "tuntap" = dontDistribute super."tuntap"; @@ -7714,6 +7740,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -7990,6 +8017,7 @@ self: super: { "web-routes-transformers" = dontDistribute super."web-routes-transformers"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.9.nix b/pkgs/development/haskell-modules/configuration-lts-5.9.nix index 46a86d946a1..bc831536c5c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.9.nix @@ -106,6 +106,7 @@ self: super: { "BerkeleyDB" = dontDistribute super."BerkeleyDB"; "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BiGUL" = dontDistribute super."BiGUL"; "BigPixel" = dontDistribute super."BigPixel"; "Binpack" = dontDistribute super."Binpack"; "Biobase" = dontDistribute super."Biobase"; @@ -485,6 +486,7 @@ self: super: { "HaskellForMaths" = dontDistribute super."HaskellForMaths"; "HaskellLM" = dontDistribute super."HaskellLM"; "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellNet" = doDistribute super."HaskellNet_0_5"; "HaskellNet-SSL" = doDistribute super."HaskellNet-SSL_0_3_2_1"; "HaskellTorrent" = dontDistribute super."HaskellTorrent"; "HaskellTutorials" = dontDistribute super."HaskellTutorials"; @@ -969,6 +971,7 @@ self: super: { "Webrexp" = dontDistribute super."Webrexp"; "Wheb" = dontDistribute super."Wheb"; "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32" = doDistribute super."Win32_2_3_1_0"; "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; "Win32-errors" = dontDistribute super."Win32-errors"; "Win32-junction-point" = dontDistribute super."Win32-junction-point"; @@ -1099,6 +1102,7 @@ self: super: { "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-json-ast" = dontDistribute super."aeson-json-ast"; "aeson-lens" = dontDistribute super."aeson-lens"; "aeson-native" = dontDistribute super."aeson-native"; "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; @@ -1189,6 +1193,7 @@ self: super: { "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_1_3_7"; "amazonka-codepipeline" = doDistribute super."amazonka-codepipeline_1_3_7"; "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_1_3_7"; + "amazonka-cognito-idp" = dontDistribute super."amazonka-cognito-idp"; "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_1_3_7"; "amazonka-config" = doDistribute super."amazonka-config_1_3_7"; "amazonka-core" = doDistribute super."amazonka-core_1_3_7"; @@ -2069,6 +2074,7 @@ self: super: { "conductive-clock" = dontDistribute super."conductive-clock"; "conductive-hsc3" = dontDistribute super."conductive-hsc3"; "conductive-song" = dontDistribute super."conductive-song"; + "conduit" = doDistribute super."conduit_1_2_6_4"; "conduit-audio" = dontDistribute super."conduit-audio"; "conduit-audio-lame" = dontDistribute super."conduit-audio-lame"; "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; @@ -2210,6 +2216,7 @@ self: super: { "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; "cryptonite" = doDistribute super."cryptonite_0_10"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2413,6 +2420,7 @@ self: super: { "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; "decimal-arithmetic" = dontDistribute super."decimal-arithmetic"; + "declarative" = doDistribute super."declarative_0_1_0_1"; "decode-utf8" = dontDistribute super."decode-utf8"; "decoder-conduit" = dontDistribute super."decoder-conduit"; "dedukti" = dontDistribute super."dedukti"; @@ -3248,6 +3256,7 @@ self: super: { "gitdo" = dontDistribute super."gitdo"; "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; + "github-release" = dontDistribute super."github-release"; "github-utils" = dontDistribute super."github-utils"; "gitignore" = dontDistribute super."gitignore"; "gitit" = dontDistribute super."gitit"; @@ -4109,6 +4118,7 @@ self: super: { "hothasktags" = dontDistribute super."hothasktags"; "hotswap" = dontDistribute super."hotswap"; "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "houseman" = dontDistribute super."houseman"; "hp2any-core" = dontDistribute super."hp2any-core"; "hp2any-graph" = dontDistribute super."hp2any-graph"; "hp2any-manager" = dontDistribute super."hp2any-manager"; @@ -4121,6 +4131,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpath" = dontDistribute super."hpath"; "hpc-coveralls" = doDistribute super."hpc-coveralls_1_0_3"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; @@ -4399,6 +4410,7 @@ self: super: { "hw-bits" = dontDistribute super."hw-bits"; "hw-conduit" = dontDistribute super."hw-conduit"; "hw-diagnostics" = dontDistribute super."hw-diagnostics"; + "hw-json" = dontDistribute super."hw-json"; "hw-parser" = dontDistribute super."hw-parser"; "hw-prim" = dontDistribute super."hw-prim"; "hw-rankselect" = dontDistribute super."hw-rankselect"; @@ -4668,6 +4680,7 @@ self: super: { "jsmw" = dontDistribute super."jsmw"; "json-assertions" = dontDistribute super."json-assertions"; "json-ast" = dontDistribute super."json-ast"; + "json-ast-json-encoder" = dontDistribute super."json-ast-json-encoder"; "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; "json-autotype" = doDistribute super."json-autotype_1_0_13"; "json-b" = dontDistribute super."json-b"; @@ -4999,6 +5012,7 @@ self: super: { "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-grouping" = dontDistribute super."list-grouping"; @@ -5317,6 +5331,7 @@ self: super: { "monad-codec" = dontDistribute super."monad-codec"; "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_5"; + "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -5931,6 +5946,7 @@ self: super: { "pinchot" = doDistribute super."pinchot_0_6_0_0"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; + "pipes" = doDistribute super."pipes_4_1_8"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec" = doDistribute super."pipes-attoparsec_0_5_1_2"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; @@ -6156,6 +6172,7 @@ self: super: { "prosper" = dontDistribute super."prosper"; "proteaaudio" = dontDistribute super."proteaaudio"; "protobuf-native" = dontDistribute super."protobuf-native"; + "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12"; "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_12"; "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; @@ -6467,6 +6484,7 @@ self: super: { "resource-pool-catchio" = dontDistribute super."resource-pool-catchio"; "resource-pool-monad" = dontDistribute super."resource-pool-monad"; "resource-simple" = dontDistribute super."resource-simple"; + "resourcet" = doDistribute super."resourcet_1_1_7_3"; "respond" = dontDistribute super."respond"; "rest-core" = doDistribute super."rest-core_0_37"; "rest-example" = dontDistribute super."rest-example"; @@ -6736,6 +6754,7 @@ self: super: { "servant-pandoc" = dontDistribute super."servant-pandoc"; "servant-pool" = dontDistribute super."servant-pool"; "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-quickcheck" = dontDistribute super."servant-quickcheck"; "servant-response" = dontDistribute super."servant-response"; "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_7"; @@ -6969,6 +6988,7 @@ self: super: { "snow-white" = dontDistribute super."snow-white"; "snowball" = dontDistribute super."snowball"; "snowglobe" = dontDistribute super."snowglobe"; + "soap" = doDistribute super."soap_0_2_2_7"; "sock2stream" = dontDistribute super."sock2stream"; "sockaddr" = dontDistribute super."sockaddr"; "socket" = doDistribute super."socket_0_5_3_0"; @@ -6976,6 +6996,7 @@ self: super: { "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; + "socks" = doDistribute super."socks_0_5_4"; "soegtk" = dontDistribute super."soegtk"; "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; @@ -7064,6 +7085,7 @@ self: super: { "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; "stack-run" = dontDistribute super."stack-run"; + "stack-run-auto" = doDistribute super."stack-run-auto_0_1_1_0"; "stackage-curator" = doDistribute super."stackage-curator_0_13_1"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; @@ -7249,6 +7271,7 @@ self: super: { "system-inotify" = dontDistribute super."system-inotify"; "system-lifted" = dontDistribute super."system-lifted"; "system-random-effect" = dontDistribute super."system-random-effect"; + "system-test" = dontDistribute super."system-test"; "system-time-monotonic" = dontDistribute super."system-time-monotonic"; "system-util" = dontDistribute super."system-util"; "system-uuid" = dontDistribute super."system-uuid"; @@ -7281,6 +7304,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_9"; "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; "tai64" = dontDistribute super."tai64"; @@ -7420,6 +7444,7 @@ self: super: { "th-sccs" = dontDistribute super."th-sccs"; "th-traced" = dontDistribute super."th-traced"; "th-typegraph" = dontDistribute super."th-typegraph"; + "th-utilities" = dontDistribute super."th-utilities"; "themoviedb" = dontDistribute super."themoviedb"; "themplate" = dontDistribute super."themplate"; "theoremquest" = dontDistribute super."theoremquest"; @@ -7529,6 +7554,7 @@ self: super: { "trace-function-call" = dontDistribute super."trace-function-call"; "traced" = dontDistribute super."traced"; "tracer" = dontDistribute super."tracer"; + "tracetree" = dontDistribute super."tracetree"; "tracker" = dontDistribute super."tracker"; "trajectory" = dontDistribute super."trajectory"; "transactional-events" = dontDistribute super."transactional-events"; @@ -7577,6 +7603,7 @@ self: super: { "tsparse" = dontDistribute super."tsparse"; "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; + "ttask" = dontDistribute super."ttask"; "tttool" = doDistribute super."tttool_1_5_1"; "tubes" = dontDistribute super."tubes"; "tuntap" = dontDistribute super."tuntap"; @@ -7695,6 +7722,7 @@ self: super: { "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; + "uncertain" = dontDistribute super."uncertain"; "unfoldable" = dontDistribute super."unfoldable"; "unfoldable-restricted" = dontDistribute super."unfoldable-restricted"; "ungadtagger" = dontDistribute super."ungadtagger"; @@ -7971,6 +7999,7 @@ self: super: { "web-routes-transformers" = dontDistribute super."web-routes-transformers"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; + "webcloud" = dontDistribute super."webcloud"; "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix index 975cbaa3ece..bbdaa79ae12 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -1417,6 +1417,20 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "BiGUL" = callPackage + ({ mkDerivation, base, containers, mtl, pretty, template-haskell }: + mkDerivation { + pname = "BiGUL"; + version = "0.9.0.0"; + sha256 = "4530a12694a213bbbc98a55a7120c7093d92a70892757c30faac0176a4ce9ff7"; + libraryHaskellDepends = [ + base containers mtl pretty template-haskell + ]; + homepage = "http://www.prg.nii.ac.jp/project/bigul/"; + description = "The Bidirectional Generic Update Language"; + license = stdenv.lib.licenses.publicDomain; + }) {}; + "BigPixel" = callPackage ({ mkDerivation, array, base, bmp, bytestring, gloss }: mkDerivation { @@ -1995,7 +2009,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "BlogLiterately" = callPackage + "BlogLiterately_0_8_2_1" = callPackage ({ mkDerivation, base, blaze-html, bool-extras, bytestring, cmdargs , containers, data-default, directory, filepath, HaXml, haxr , highlighting-kate, hscolour, HTTP, lens, mtl, pandoc @@ -2018,6 +2032,58 @@ self: { homepage = "http://byorgey.wordpress.com/blogliterately/"; description = "A tool for posting Haskelly articles to blogs"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "BlogLiterately" = callPackage + ({ mkDerivation, base, blaze-html, bool-extras, bytestring, cmdargs + , containers, data-default, directory, filepath, HaXml, haxr + , highlighting-kate, hscolour, HTTP, lens, mtl, pandoc + , pandoc-citeproc, pandoc-types, parsec, process, split, strict + , tagsoup, temporary, transformers + }: + mkDerivation { + pname = "BlogLiterately"; + version = "0.8.2.2"; + sha256 = "8542a047940fcccbfca14985d22757f9a034c06103cd587e40744aa53e3adc87"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base blaze-html bool-extras bytestring cmdargs containers + data-default directory filepath HaXml haxr highlighting-kate + hscolour HTTP lens mtl pandoc pandoc-citeproc pandoc-types parsec + process split strict tagsoup temporary transformers + ]; + executableHaskellDepends = [ base cmdargs ]; + homepage = "http://byorgey.wordpress.com/blogliterately/"; + description = "A tool for posting Haskelly articles to blogs"; + license = "GPL"; + }) {}; + + "BlogLiterately_0_8_2_3" = callPackage + ({ mkDerivation, base, blaze-html, bool-extras, bytestring, cmdargs + , containers, data-default, directory, filepath, HaXml, haxr + , highlighting-kate, hscolour, HTTP, lens, mtl, pandoc + , pandoc-citeproc, pandoc-types, parsec, process, split, strict + , tagsoup, temporary, transformers + }: + mkDerivation { + pname = "BlogLiterately"; + version = "0.8.2.3"; + sha256 = "2f730bad3df890f883039b8a6928e7352bfc3dc9128e2d0f5ed8d5e71195080e"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base blaze-html bool-extras bytestring cmdargs containers + data-default directory filepath HaXml haxr highlighting-kate + hscolour HTTP lens mtl pandoc pandoc-citeproc pandoc-types parsec + process split strict tagsoup temporary transformers + ]; + executableHaskellDepends = [ base cmdargs ]; + homepage = "http://byorgey.wordpress.com/blogliterately/"; + description = "A tool for posting Haskelly articles to blogs"; + license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BlogLiterately-diagrams_0_1_4_3" = callPackage @@ -5788,21 +5854,21 @@ self: { }) {}; "Euterpea" = callPackage - ({ mkDerivation, ansi-terminal, array, arrows, base, bytestring - , Cabal, containers, deepseq, ghc-prim, HCodecs, heap, markov-chain - , PortMidi, pure-fft, QuickCheck, random, stm, UISF + ({ mkDerivation, array, arrows, base, bytestring, containers + , deepseq, ghc-prim, HCodecs, heap, PortMidi, random, stm }: mkDerivation { pname = "Euterpea"; - version = "1.1.1"; - sha256 = "e33dc58a5efdb57f05017abcfa56728a17d4f3ec152b0ea9a530c4409e61f652"; + version = "2.0.0"; + sha256 = "755214020c31362d37380a53655d6c28bd60be07e55881e23f5bb3092fd2894b"; + revision = "1"; + editedCabalFile = "510bf796ea4d89573b4b30927ed70bde80cc382bc84d63149d57187aeb793f19"; libraryHaskellDepends = [ array arrows base bytestring containers deepseq ghc-prim HCodecs - heap markov-chain PortMidi pure-fft random stm UISF + heap PortMidi random stm ]; - testHaskellDepends = [ ansi-terminal base Cabal QuickCheck ]; jailbreak = true; - homepage = "http://haskell.cs.yale.edu/"; + homepage = "http://www.euterpea.com"; description = "Library for computer music research and education"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -6530,10 +6596,8 @@ self: { }: mkDerivation { pname = "FractalArt"; - version = "0.2.0.0"; - sha256 = "011d310a8ba7d5e891bf8a6c0f567ccda609324df792d8533475e4f28a4c2097"; - revision = "2"; - editedCabalFile = "5ce975b8ccd2d1ed165abada3d4b8af27d8bac02783595343aac28a6d7617b74"; + version = "0.2.0.3"; + sha256 = "def0ff1b8d30d993c594d20a951318d8f29cd67943555e2439829d4fbc63a0fc"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -6541,7 +6605,6 @@ self: { vector ]; executableSystemDepends = [ libX11 ]; - jailbreak = true; homepage = "https://github.com/TomSmeets/FractalArt"; description = "Generates colorful wallpapers"; license = stdenv.lib.licenses.mit; @@ -8780,6 +8843,8 @@ self: { pname = "HLearn-algebra"; version = "1.1.0.1"; sha256 = "aa04d725af69ba78d7c474c52ebd8de7aa7a25db7e0013cde5c42b8559000acc"; + revision = "2"; + editedCabalFile = "640b0ad035c523ba7b520543910b428bf1c676b80eda8fa6575c497ff5d89889"; libraryHaskellDepends = [ base ConstraintKinds containers deepseq hashable MonadRandom parallel random template-haskell vector vector-heterogenous @@ -8800,6 +8865,8 @@ self: { pname = "HLearn-approximation"; version = "1.1.0"; sha256 = "76a315bd7ce257fcfea4b06428287fce5281f7f3fb44d8209558121fa9bd19bf"; + revision = "1"; + editedCabalFile = "7b0837f48941b5d4e09ed43f8f49511049b93b4404a4d5ae576ca44c9b61c5e1"; libraryHaskellDepends = [ base ConstraintKinds containers heap HLearn-algebra HLearn-datastructures HLearn-distributions list-extras vector @@ -8819,6 +8886,8 @@ self: { pname = "HLearn-classification"; version = "1.0.1.3"; sha256 = "0d6e4d8eb596aaa1395f8508f1c08f802e15cf2aff2bfa73ab9341684d008185"; + revision = "1"; + editedCabalFile = "a9a58cc0d1045dbc8d0d33d21be268baedaf2cf79d21232fbb3b4cd9b2cbedc1"; libraryHaskellDepends = [ base binary bytestring ConstraintKinds containers deepseq dlist hashable HLearn-algebra HLearn-distributions list-extras logfloat @@ -8858,6 +8927,8 @@ self: { pname = "HLearn-distributions"; version = "1.1.0.2"; sha256 = "eef328acd2739a3022972a0c2de48e4b4325c5810543b60a207b3136a75669a7"; + revision = "1"; + editedCabalFile = "58bb2e9dd62d8fba266d3f6148a8694aaba645aa6b75947d5ad65fe46cb957c7"; libraryHaskellDepends = [ array base ConstraintKinds containers deepseq erf gamma graphviz HLearn-algebra HLearn-datastructures hmatrix list-extras @@ -10768,7 +10839,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "HaskellNet" = callPackage + "HaskellNet_0_5" = callPackage ({ mkDerivation, array, base, base64-string, bytestring, cryptohash , mime-mail, mtl, network, old-time, pretty, text }: @@ -10783,9 +10854,10 @@ self: { homepage = "https://github.com/jtdaugherty/HaskellNet"; description = "Client support for POP3, SMTP, and IMAP"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "HaskellNet_0_5_1" = callPackage + "HaskellNet" = callPackage ({ mkDerivation, array, base, base64-string, bytestring, cryptohash , mime-mail, mtl, network, old-time, pretty, text }: @@ -10800,7 +10872,6 @@ self: { homepage = "https://github.com/jtdaugherty/HaskellNet"; description = "Client support for POP3, SMTP, and IMAP"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HaskellNet-SSL_0_3_2_1" = callPackage @@ -20873,7 +20944,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "Win32" = callPackage + "Win32_2_3_1_0" = callPackage ({ mkDerivation, advapi32, base, bytestring, gdi32, shell32 , shfolder, user32, winmm }: @@ -20892,6 +20963,25 @@ self: { }) {advapi32 = null; gdi32 = null; shell32 = null; shfolder = null; user32 = null; winmm = null;}; + "Win32" = callPackage + ({ mkDerivation, advapi32, base, bytestring, gdi32, shell32 + , shfolder, user32, winmm + }: + mkDerivation { + pname = "Win32"; + version = "2.3.1.1"; + sha256 = "5c57f6ca9e13bb9e945bfe25b85390451fff589ae5e1e2522fc939a144c7a588"; + libraryHaskellDepends = [ base bytestring ]; + librarySystemDepends = [ + advapi32 gdi32 shell32 shfolder user32 winmm + ]; + homepage = "https://github.com/haskell/win32"; + description = "A binding to part of the Win32 library"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {advapi32 = null; gdi32 = null; shell32 = null; + shfolder = null; user32 = null; winmm = null;}; + "Win32-dhcp-server" = callPackage ({ mkDerivation, base, text, Win32, Win32-errors }: mkDerivation { @@ -24071,6 +24161,18 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "aeson-json-ast" = callPackage + ({ mkDerivation, aeson, base, json-ast }: + mkDerivation { + pname = "aeson-json-ast"; + version = "0.1"; + sha256 = "fac988efb621e4ac75269138df140dc1e1e8287c206416f2a81cd3d3b3716d9a"; + libraryHaskellDepends = [ aeson base json-ast ]; + homepage = "https://github.com/sannsyn/aeson-json-ast"; + description = "Integration layer for \"json-ast\" and \"aeson\""; + license = stdenv.lib.licenses.mit; + }) {}; + "aeson-lens" = callPackage ({ mkDerivation, aeson, base, bytestring, doctest, lens, text , unordered-containers, vector @@ -25092,14 +25194,16 @@ self: { }) {}; "alea" = callPackage - ({ mkDerivation, argparser, base, containers, threefish }: + ({ mkDerivation, base, optparse-applicative, random, text }: mkDerivation { pname = "alea"; - version = "0.4.0.0"; - sha256 = "258d629383851804321a54d320df892b1513216b3336a2e8b3d07b973d8628c8"; + version = "0.5.1.0"; + sha256 = "32188a6da518656e962379038e0aa05f08c1434380d4eacf0ab162815638f5bd"; isLibrary = false; isExecutable = true; - executableHaskellDepends = [ argparser base containers threefish ]; + executableHaskellDepends = [ + base optparse-applicative random text + ]; homepage = "https://github.com/Rnhmjoj/alea"; description = "a diceware passphrase generator"; license = stdenv.lib.licenses.mit; @@ -25743,7 +25847,7 @@ self: { description = "A Haskell binding for ALURE"; license = "LGPL"; hydraPlatforms = stdenv.lib.platforms.none; - }) {alure = null;}; + }) {inherit (pkgs) alure;}; "amazon-emailer" = callPackage ({ mkDerivation, base, bytestring, configurator, http-conduit @@ -25924,6 +26028,29 @@ self: { license = "unknown"; }) {}; + "amazonka_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, base, bytestring, conduit + , 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.4.1"; + sha256 = "32d4ceac8f85158de8aeab4ff1ff5d38a17846617ce2eccbeac5ee4016d539e5"; + libraryHaskellDepends = [ + amazonka-core base bytestring conduit conduit-extra directory + exceptions http-conduit ini mmorph monad-control mtl resourcet + retry text time transformers transformers-base transformers-compat + ]; + testHaskellDepends = [ base tasty tasty-hunit ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Comprehensive Amazon Web Services SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-apigateway_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers @@ -25962,6 +26089,26 @@ self: { license = "unknown"; }) {}; + "amazonka-apigateway_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-apigateway"; + version = "1.4.1"; + sha256 = "8d7743e38c5063fd80a98fbaf5e8bce1df8f01299faa5414013b3ae678517578"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon API Gateway SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-autoscaling_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -26042,6 +26189,26 @@ self: { license = "unknown"; }) {}; + "amazonka-autoscaling_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-autoscaling"; + version = "1.4.1"; + sha256 = "958e5ae9bf17c74e5fe20ce6b1615d8b65a566aa68a8fd9f2a7230a0d1990863"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Auto Scaling SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-certificatemanager" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers @@ -26060,6 +26227,26 @@ self: { license = "unknown"; }) {}; + "amazonka-certificatemanager_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-certificatemanager"; + version = "1.4.1"; + sha256 = "a2396a029bfb4fa0f124f1247b4c96656b2f703ecabbf672bdb04ce1c18f36e9"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Certificate Manager SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-cloudformation_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -26140,6 +26327,26 @@ self: { license = "unknown"; }) {}; + "amazonka-cloudformation_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-cloudformation"; + version = "1.4.1"; + sha256 = "cd896557245c4b482ac43d337849829cf22acb06382a3194f86322df7f9ddc82"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon CloudFormation SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-cloudfront_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -26220,6 +26427,26 @@ self: { license = "unknown"; }) {}; + "amazonka-cloudfront_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-cloudfront"; + version = "1.4.1"; + sha256 = "78a08971325a3f5d3e32661955a7aca9646937e3c50c2de2522e65727c142861"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon CloudFront SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-cloudhsm_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -26300,6 +26527,26 @@ self: { license = "unknown"; }) {}; + "amazonka-cloudhsm_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-cloudhsm"; + version = "1.4.1"; + sha256 = "c2c9e67f0d5375fd02935cf679b03b6422113bf26dc0259107e19d3a2d6a8016"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon CloudHSM SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-cloudsearch_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -26380,6 +26627,26 @@ self: { license = "unknown"; }) {}; + "amazonka-cloudsearch_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-cloudsearch"; + version = "1.4.1"; + sha256 = "74c98123a8fa80c6c006e1f6a2078fc29b8b9987c0203d3da570ec568b1853e2"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon CloudSearch SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-cloudsearch-domains_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -26460,6 +26727,26 @@ self: { license = "unknown"; }) {}; + "amazonka-cloudsearch-domains_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-cloudsearch-domains"; + version = "1.4.1"; + sha256 = "636f127366c83682298e840597791ac110d57a595e25a4be3207d8867db2ca3a"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon CloudSearch Domain SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-cloudtrail_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -26540,6 +26827,26 @@ self: { license = "unknown"; }) {}; + "amazonka-cloudtrail_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-cloudtrail"; + version = "1.4.1"; + sha256 = "923d16101a573992f2797f88e45d270ffa7f829bd400328ebd613170ca434b9e"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon CloudTrail SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-cloudwatch_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -26620,6 +26927,26 @@ self: { license = "unknown"; }) {}; + "amazonka-cloudwatch_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-cloudwatch"; + version = "1.4.1"; + sha256 = "8098a72bb0c027b4761ff5c90bf7519a76217aeb77fd344c3e5060f1293d84ae"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon CloudWatch SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-cloudwatch-events" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers @@ -26638,6 +26965,26 @@ self: { license = "unknown"; }) {}; + "amazonka-cloudwatch-events_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-cloudwatch-events"; + version = "1.4.1"; + sha256 = "b49b594354bdc1dcac1328c0d49914828be24cf2f0b6e8d8046a005baa111bc8"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon CloudWatch Events SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-cloudwatch-logs_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -26718,6 +27065,26 @@ self: { license = "unknown"; }) {}; + "amazonka-cloudwatch-logs_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-cloudwatch-logs"; + version = "1.4.1"; + sha256 = "3a914e342372cba504f6f8db0e94160a95464fa31f977635b5e461001ee3dd83"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon CloudWatch Logs SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-codecommit_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers @@ -26756,6 +27123,26 @@ self: { license = "unknown"; }) {}; + "amazonka-codecommit_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-codecommit"; + version = "1.4.1"; + sha256 = "0c156f86c5831c317bd91945763c2a145f93e57972d3c0e65ae262bc1e1350f3"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon CodeCommit SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-codedeploy_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -26836,6 +27223,26 @@ self: { license = "unknown"; }) {}; + "amazonka-codedeploy_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-codedeploy"; + version = "1.4.1"; + sha256 = "891660111d35a80bd96f94f1166d171104aeb1cda0d15313d3c6fa474e8e6752"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon CodeDeploy SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-codepipeline_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers @@ -26874,6 +27281,26 @@ self: { license = "unknown"; }) {}; + "amazonka-codepipeline_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-codepipeline"; + version = "1.4.1"; + sha256 = "3f3e1199a20e2adb2097f9c5c64ad9667fd487b1c5208de7cf416de1d78f7259"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon CodePipeline SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-cognito-identity_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -26954,6 +27381,45 @@ self: { license = "unknown"; }) {}; + "amazonka-cognito-identity_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-cognito-identity"; + version = "1.4.1"; + sha256 = "bfc5d173b371be283d4459469bcd67289c31c169ebd875f0066b4a48a1bf61f6"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Cognito Identity SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-cognito-idp" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-cognito-idp"; + version = "1.4.1"; + sha256 = "c70c8664346e2c4599ad31e01ce7157f5bbc17fbff76c588d5571cf244245b02"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Cognito Identity Provider SDK"; + license = "unknown"; + }) {}; + "amazonka-cognito-sync_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -27034,6 +27500,26 @@ self: { license = "unknown"; }) {}; + "amazonka-cognito-sync_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-cognito-sync"; + version = "1.4.1"; + sha256 = "01d230b51aec35aa99da4a3e27bfe8bd5638843a23ae42f8aba1d620f4e82649"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Cognito Sync SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-config_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -27114,6 +27600,26 @@ self: { license = "unknown"; }) {}; + "amazonka-config_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-config"; + version = "1.4.1"; + sha256 = "232bb1167d7cd0de68711bddd841cebc382807edda491ec821ed45fc7be7afd2"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Config SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-core_0_3_3" = callPackage ({ mkDerivation, aeson, attoparsec, base, base16-bytestring , base64-bytestring, bifunctors, bytestring, case-insensitive @@ -27274,6 +27780,37 @@ self: { license = "unknown"; }) {}; + "amazonka-core_1_4_1" = callPackage + ({ mkDerivation, aeson, attoparsec, base, bifunctors, bytestring + , case-insensitive, conduit, conduit-extra, cryptonite, deepseq + , exceptions, hashable, http-conduit, http-types, lens, memory, mtl + , QuickCheck, quickcheck-unicode, resourcet, scientific, semigroups + , tagged, tasty, tasty-hunit, tasty-quickcheck, template-haskell + , text, time, transformers, transformers-compat + , unordered-containers, xml-conduit, xml-types + }: + mkDerivation { + pname = "amazonka-core"; + version = "1.4.1"; + sha256 = "609024a35a4ce8e3561e513de2a36b44c1250163ad54ee6970cdce2a14fca33a"; + libraryHaskellDepends = [ + aeson attoparsec base bifunctors bytestring case-insensitive + conduit conduit-extra cryptonite deepseq exceptions hashable + http-conduit http-types lens memory mtl resourcet scientific + semigroups tagged text time transformers transformers-compat + unordered-containers xml-conduit xml-types + ]; + testHaskellDepends = [ + aeson base bytestring case-insensitive http-types QuickCheck + quickcheck-unicode tasty tasty-hunit tasty-quickcheck + template-haskell text time + ]; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Core data types and functionality for Amazonka libraries"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-datapipeline_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -27354,6 +27891,26 @@ self: { license = "unknown"; }) {}; + "amazonka-datapipeline_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-datapipeline"; + version = "1.4.1"; + sha256 = "9c3201095c2ebe0c15cfcfbba01e192775ba24ff2db73605616d1292debdb5a5"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Data Pipeline SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-devicefarm_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers @@ -27392,6 +27949,26 @@ self: { license = "unknown"; }) {}; + "amazonka-devicefarm_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-devicefarm"; + version = "1.4.1"; + sha256 = "093def2f39de4bccbac124b2b2bc6e454ea3c839946a390a4056c3205ccf5caf"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Device Farm SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-directconnect_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -27472,6 +28049,26 @@ self: { license = "unknown"; }) {}; + "amazonka-directconnect_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-directconnect"; + version = "1.4.1"; + sha256 = "75395c2d9adaf5dc3a7e4296553137ea49682a25686833dcdcb696348b3339e1"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Direct Connect SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-dms" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers @@ -27490,6 +28087,26 @@ self: { license = "unknown"; }) {}; + "amazonka-dms_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-dms"; + version = "1.4.1"; + sha256 = "0a2a5e7f0677dbf639a48b915363b6af1239d1edd4f8af487bb1c3d13aae5518"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Database Migration Service SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-ds_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers @@ -27528,6 +28145,26 @@ self: { license = "unknown"; }) {}; + "amazonka-ds_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-ds"; + version = "1.4.1"; + sha256 = "23c2ed6ee691bb12f9aaf9143f69ea18fa9589b10ff7aa89417aa342a298ebb5"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Directory Service SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-dynamodb_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -27608,6 +28245,26 @@ self: { license = "unknown"; }) {}; + "amazonka-dynamodb_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-dynamodb"; + version = "1.4.1"; + sha256 = "5cf81ac70bb10d015cea77f54de3f0f997e56bd61e99e5a19918f8a779957722"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon DynamoDB SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-dynamodb-streams_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers @@ -27646,6 +28303,26 @@ self: { license = "unknown"; }) {}; + "amazonka-dynamodb-streams_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-dynamodb-streams"; + version = "1.4.1"; + sha256 = "102e58e26e412e383bd6e417403e685bbeb039a52f8f8a6b3ab149cab3abc457"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon DynamoDB Streams SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-ec2_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -27742,6 +28419,26 @@ self: { license = "unknown"; }) {}; + "amazonka-ec2_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-ec2"; + version = "1.4.1"; + sha256 = "677a49261781900b757307b5ab5714862016f777d12d246536a30c9806e9f6bf"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Elastic Compute Cloud SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-ecr" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers @@ -27760,6 +28457,26 @@ self: { license = "unknown"; }) {}; + "amazonka-ecr_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-ecr"; + version = "1.4.1"; + sha256 = "563e6cab29b97554b2b6b32d19a388f336e508c556232dd61576cfa2d4856067"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon EC2 Container Registry SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-ecs_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -27840,6 +28557,26 @@ self: { license = "unknown"; }) {}; + "amazonka-ecs_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-ecs"; + version = "1.4.1"; + sha256 = "63d51f7b595cf2d4eb89f4e50fc7c5e1a9a181a9018cb8d1dfdca226a7126334"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon EC2 Container Service SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-efs_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers @@ -27878,6 +28615,26 @@ self: { license = "unknown"; }) {}; + "amazonka-efs_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-efs"; + version = "1.4.1"; + sha256 = "a06e0fe82eb29b898c971fc0349813c5a3d2cdb76d06081642272195be947287"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Elastic File System SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-elasticache_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -27958,6 +28715,26 @@ self: { license = "unknown"; }) {}; + "amazonka-elasticache_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-elasticache"; + version = "1.4.1"; + sha256 = "49697a7ca0cdd93529506685af14af6abb6bae0aef7cd6c5f32255cc44fad460"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon ElastiCache SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-elasticbeanstalk_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -28038,6 +28815,26 @@ self: { license = "unknown"; }) {}; + "amazonka-elasticbeanstalk_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-elasticbeanstalk"; + version = "1.4.1"; + sha256 = "991b28904384bb189b1d840730db33f1706a90b72102f7eb311ba0311d4f6b7a"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Elastic Beanstalk SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-elasticsearch_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers @@ -28076,6 +28873,26 @@ self: { license = "unknown"; }) {}; + "amazonka-elasticsearch_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-elasticsearch"; + version = "1.4.1"; + sha256 = "7c959fadb17fb32e9157bce8612d44681d479f23c6d511290e9261397d5006ab"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Elasticsearch Service SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-elastictranscoder_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -28156,6 +28973,26 @@ self: { license = "unknown"; }) {}; + "amazonka-elastictranscoder_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-elastictranscoder"; + version = "1.4.1"; + sha256 = "b3e610a6c780162a4884c8afb942a07186b7d7b73cb8e6b9c94fcc5cea62a46c"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Elastic Transcoder SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-elb_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -28236,6 +29073,26 @@ self: { license = "unknown"; }) {}; + "amazonka-elb_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-elb"; + version = "1.4.1"; + sha256 = "51039234ba0f195767f87aa9add9c08866e1125701df5700733ecc06a4adab6e"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Elastic Load Balancing SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-emr_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -28316,6 +29173,26 @@ self: { license = "unknown"; }) {}; + "amazonka-emr_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-emr"; + version = "1.4.1"; + sha256 = "adc68d54f947f9ed1c52dcaea880dc77509b095db47a162e0317cccfd0366983"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Elastic MapReduce SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-gamelift" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers @@ -28334,6 +29211,26 @@ self: { license = "unknown"; }) {}; + "amazonka-gamelift_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-gamelift"; + version = "1.4.1"; + sha256 = "c52ab8bd55f8b9f91a0d4acb10d7829eba1656bb9b54cead672654f9c441dfa2"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon GameLift SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-glacier_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -28414,6 +29311,26 @@ self: { license = "unknown"; }) {}; + "amazonka-glacier_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-glacier"; + version = "1.4.1"; + sha256 = "0cdd5610284c5a39775716a96fc7ac12177a243b01c25cd3d7a5a7df9863816c"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Glacier SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-iam_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -28494,6 +29411,26 @@ self: { license = "unknown"; }) {}; + "amazonka-iam_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-iam"; + version = "1.4.1"; + sha256 = "27503e0980328216c9f306b51a376189ebdda70111aa49862de340b06544485e"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Identity and Access Management SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-importexport_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -28574,6 +29511,26 @@ self: { license = "unknown"; }) {}; + "amazonka-importexport_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-importexport"; + version = "1.4.1"; + sha256 = "6ee93786aa5b695bf0b39ef13d6b7cb40f296a8e7e0fd626b8d50c328a469914"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Import/Export SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-inspector_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers @@ -28612,6 +29569,26 @@ self: { license = "unknown"; }) {}; + "amazonka-inspector_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-inspector"; + version = "1.4.1"; + sha256 = "106deae8302c38891772a96bd864278a29dc9241321c8a468f25218912e79b20"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Inspector SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-iot_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers @@ -28650,6 +29627,26 @@ self: { license = "unknown"; }) {}; + "amazonka-iot_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-iot"; + version = "1.4.1"; + sha256 = "ba233bcd39c277b3223a4215278813d461782e83ad1a280f6b022aca6234cd64"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon IoT SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-iot-dataplane_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers @@ -28688,6 +29685,26 @@ self: { license = "unknown"; }) {}; + "amazonka-iot-dataplane_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-iot-dataplane"; + version = "1.4.1"; + sha256 = "11452a7fbe3677a0a9c9e3fcbb31f9e685d66123ac73b5e0a9f7531f9c492982"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon IoT Data Plane SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-kinesis_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -28768,6 +29785,26 @@ self: { license = "unknown"; }) {}; + "amazonka-kinesis_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-kinesis"; + version = "1.4.1"; + sha256 = "ac3ffa7d3b70c742c4443e66c87fff844231a147f28ef3df4067ad3906e3092c"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Kinesis SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-kinesis-firehose_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers @@ -28806,6 +29843,26 @@ self: { license = "unknown"; }) {}; + "amazonka-kinesis-firehose_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-kinesis-firehose"; + version = "1.4.1"; + sha256 = "80da1bb280e89a1b1d10879f69648af8e8269ffd0a39b0cc11151432dd1f55b0"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Kinesis Firehose SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-kms_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -28886,6 +29943,26 @@ self: { license = "unknown"; }) {}; + "amazonka-kms_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-kms"; + version = "1.4.1"; + sha256 = "ac39006ed8555208855e4ad648271e02dc71ac8a2124dc365fba6d953dcddc32"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Key Management Service SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-lambda_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -28966,6 +30043,26 @@ self: { license = "unknown"; }) {}; + "amazonka-lambda_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-lambda"; + version = "1.4.1"; + sha256 = "459126719de03a81bfeeb9b10fc4210df9f9b7a299d8f6045e3cba7f665499ae"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Lambda SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-marketplace-analytics_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers @@ -29004,6 +30101,26 @@ self: { license = "unknown"; }) {}; + "amazonka-marketplace-analytics_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-marketplace-analytics"; + version = "1.4.1"; + sha256 = "16f0c684260893d20ff48e41e0d087c292691799fe1de8b3a4727ddcae740c8f"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Marketplace Commerce Analytics SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-marketplace-metering" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers @@ -29022,6 +30139,26 @@ self: { license = "unknown"; }) {}; + "amazonka-marketplace-metering_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-marketplace-metering"; + version = "1.4.1"; + sha256 = "dc1c12ff3740fb72b0f6238bd4e736754b312078e6edbabcfb5e2e22819d616e"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Marketplace Metering SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-ml_0_3_6" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -29074,6 +30211,26 @@ self: { license = "unknown"; }) {}; + "amazonka-ml_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-ml"; + version = "1.4.1"; + sha256 = "191486e7aeffe0d3d5f798d72e5ad6b2c477cb7cc4ed8298ff2acab463fbf0b0"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Machine Learning SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-opsworks_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -29154,6 +30311,26 @@ self: { license = "unknown"; }) {}; + "amazonka-opsworks_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-opsworks"; + version = "1.4.1"; + sha256 = "753e14e15f312f90d580c6a24580373560fce06cd99e9b63036da2f5e6794635"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon OpsWorks SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-rds_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -29235,6 +30412,26 @@ self: { hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; + "amazonka-rds_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-rds"; + version = "1.4.1"; + sha256 = "6c4443c56b947b6b60e4dcfa84390f35f081d7bd3e80f2e5d8bcecb49be3e045"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Relational Database Service SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-redshift_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -29315,6 +30512,26 @@ self: { license = "unknown"; }) {}; + "amazonka-redshift_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-redshift"; + version = "1.4.1"; + sha256 = "3f7c3091c83e393f6a83a4ca904b5e48c6378b7d4564e8011a92a8b1b61d1e86"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Redshift SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-route53_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -29409,6 +30626,26 @@ self: { license = "unknown"; }) {}; + "amazonka-route53_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-route53"; + version = "1.4.1"; + sha256 = "3cd11cf0a58141fd357bbd9e058d087d31025e3baa23e3d9e5485c6fcd74372c"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Route 53 SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-route53-domains_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -29489,6 +30726,26 @@ self: { license = "unknown"; }) {}; + "amazonka-route53-domains_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-route53-domains"; + version = "1.4.1"; + sha256 = "78988dcf5e9e5c57b97c3c59d179aa36e30ee81a125dc0e16b2a5eda71dacd56"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Route 53 Domains SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-s3_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -29571,6 +30828,26 @@ self: { license = "unknown"; }) {}; + "amazonka-s3_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , lens, tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-s3"; + version = "1.4.1"; + sha256 = "8ecb8988afbebc6f43b3d011a8a81536d2e49863aeb6f912b29d7170be920831"; + libraryHaskellDepends = [ amazonka-core base lens text ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Simple Storage Service SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-sdb_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -29651,6 +30928,26 @@ self: { license = "unknown"; }) {}; + "amazonka-sdb_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-sdb"; + version = "1.4.1"; + sha256 = "e4f3ed1815ca1681cfbcff483136fc5e967239b38e708e64a700fc358a6bd514"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon SimpleDB SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-ses_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -29731,6 +31028,26 @@ self: { license = "unknown"; }) {}; + "amazonka-ses_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-ses"; + version = "1.4.1"; + sha256 = "10c7a8e01a375b1d863bc9daf1dfb4beb5c2613b766d0e5d66e9bbcf516be2eb"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Simple Email Service SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-sns_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -29811,6 +31128,26 @@ self: { license = "unknown"; }) {}; + "amazonka-sns_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-sns"; + version = "1.4.1"; + sha256 = "8783e4e11fccb6e97e83682cbf550f8026eab1beb32a375681786039d6b5f8d4"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Simple Notification Service SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-sqs_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -29892,6 +31229,26 @@ self: { hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; + "amazonka-sqs_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-sqs"; + version = "1.4.1"; + sha256 = "a0c05964c0e72538b79713a438d4af22ae407f5af3de0156d54362afd076db59"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Simple Queue Service SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-ssm_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -29972,6 +31329,26 @@ self: { license = "unknown"; }) {}; + "amazonka-ssm_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-ssm"; + version = "1.4.1"; + sha256 = "8d42cbcf0c138c974a3c4aea0c5db6f7f9d84f91b690b01fe9cdb76351517011"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Simple Systems Management Service SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-storagegateway_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -30052,6 +31429,26 @@ self: { license = "unknown"; }) {}; + "amazonka-storagegateway_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-storagegateway"; + version = "1.4.1"; + sha256 = "0f7c435d349fea3c59904962d29bcb55da27e2477d304ffddf86b9b3cb21979d"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Storage Gateway SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-sts_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -30132,6 +31529,26 @@ self: { license = "unknown"; }) {}; + "amazonka-sts_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-sts"; + version = "1.4.1"; + sha256 = "4968023539276c047b93d1a7bad64e13b01c9dd9c0bcab419b58e1ac1be3aab1"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Security Token Service SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-support_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -30212,6 +31629,26 @@ self: { license = "unknown"; }) {}; + "amazonka-support_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-support"; + version = "1.4.1"; + sha256 = "02b87dfef8398f7400e1e204fc324287434e0c39eca886f4b7e3f562c6a77a27"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Support SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-swf_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -30294,6 +31731,26 @@ self: { license = "unknown"; }) {}; + "amazonka-swf_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-swf"; + version = "1.4.1"; + sha256 = "96bb747a87dc3938a076179e478d6eb52215ba593edd1c2178b660b983acb9c3"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Simple Workflow Service SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-test_1_3_7" = callPackage ({ mkDerivation, aeson, amazonka-core, base, bifunctors, bytestring , case-insensitive, conduit, conduit-extra, groom, http-client @@ -30340,6 +31797,30 @@ self: { license = "unknown"; }) {}; + "amazonka-test_1_4_1" = callPackage + ({ mkDerivation, aeson, amazonka-core, base, bifunctors, bytestring + , case-insensitive, conduit, conduit-extra, groom, http-client + , http-types, process, resourcet, tasty, tasty-hunit + , template-haskell, temporary, text, time, unordered-containers + , yaml + }: + mkDerivation { + pname = "amazonka-test"; + version = "1.4.1"; + sha256 = "740db45e6773a104d80a1a0b8f83b399e6bfe122294545fce36d5a3da7e423a3"; + libraryHaskellDepends = [ + aeson amazonka-core base bifunctors bytestring case-insensitive + conduit conduit-extra groom http-client http-types process + resourcet tasty tasty-hunit template-haskell temporary text time + unordered-containers yaml + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Common functionality for Amazonka library test-suites"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-waf_1_3_7" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers @@ -30378,6 +31859,26 @@ self: { license = "unknown"; }) {}; + "amazonka-waf_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-waf"; + version = "1.4.1"; + sha256 = "5a93904b1e21cb8f1cdcacab8d65a7e81ae7cae4fabcf5cf6eab5fb06647fb05"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon WAF SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-workspaces_0_3_6" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -30430,6 +31931,26 @@ self: { license = "unknown"; }) {}; + "amazonka-workspaces_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-workspaces"; + version = "1.4.1"; + sha256 = "9a7e1583c4b98a4bf63439c936e17579a98970fef16d36d1f8ad8059e0626257"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon WorkSpaces SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "ampersand" = callPackage ({ mkDerivation, base, bytestring, conduit, containers, csv , directory, filepath, graphviz, hashable, HStringTemplate, lens @@ -34087,6 +35608,19 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "atomic-primops_0_8_0_4" = callPackage + ({ mkDerivation, base, ghc-prim, primitive }: + mkDerivation { + pname = "atomic-primops"; + version = "0.8.0.4"; + sha256 = "47e1e393848c0538aa1733a90a63bd08a00915ec7499d90014aaecc792db9864"; + libraryHaskellDepends = [ base ghc-prim primitive ]; + homepage = "https://github.com/rrnewton/haskell-lockfree/wiki"; + description = "A safe approach to CAS and other atomic ops in Haskell"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "atomic-primops-foreign" = callPackage ({ mkDerivation, base, bits-atomic, HUnit, test-framework , test-framework-hunit, time @@ -34941,6 +36475,19 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "auto-update_0_1_4" = callPackage + ({ mkDerivation, base }: + mkDerivation { + pname = "auto-update"; + version = "0.1.4"; + sha256 = "5e96c151024e8bcaf4eaa932e16995872b2017f46124b967e155744d9580b425"; + 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; + }) {}; + "autoexporter" = callPackage ({ mkDerivation, base, Cabal, directory, filepath }: mkDerivation { @@ -35208,7 +36755,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "avers-api" = callPackage + "avers-api_0_0_4" = callPackage ({ mkDerivation, aeson, avers, base, bytestring, cookie, servant , text, time, vector }: @@ -35226,6 +36773,24 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "avers-api" = callPackage + ({ mkDerivation, aeson, avers, base, bytestring, cookie + , http-api-data, servant, text, time, vector + }: + mkDerivation { + pname = "avers-api"; + version = "0.0.5"; + sha256 = "469fa007854e5836e816cdf66d650f7b89601dd9644cf859ff680bb6b69d124c"; + libraryHaskellDepends = [ + aeson avers base bytestring cookie http-api-data servant text time + vector + ]; + homepage = "http://github.com/wereHamster/avers-api"; + description = "Types describing the core and extended Avers APIs"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "avers-server_0_0_1" = callPackage ({ mkDerivation, aeson, avers, avers-api, base, bytestring , bytestring-conversion, cookie, either, http-types, mtl @@ -35270,7 +36835,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "avers-server" = callPackage + "avers-server_0_0_3" = callPackage ({ mkDerivation, aeson, avers, avers-api, base, base64-bytestring , bytestring, bytestring-conversion, containers, cookie, cryptohash , either, http-types, mtl, resource-pool, rethinkdb-client-driver @@ -35294,6 +36859,30 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "avers-server" = callPackage + ({ mkDerivation, aeson, avers, avers-api, base, base64-bytestring + , bytestring, bytestring-conversion, containers, cookie, cryptohash + , either, http-types, mtl, resource-pool, rethinkdb-client-driver + , servant, servant-server, stm, text, time, transformers, wai + , wai-websockets, websockets + }: + mkDerivation { + pname = "avers-server"; + version = "0.0.4"; + sha256 = "5d3d28135e20af8c92fd5b36ff4336b2858ac595b3eed3f33458a57f1c19ad4d"; + libraryHaskellDepends = [ + aeson avers avers-api base base64-bytestring bytestring + bytestring-conversion containers cookie cryptohash either + http-types mtl resource-pool rethinkdb-client-driver servant + servant-server stm text time transformers wai wai-websockets + websockets + ]; + homepage = "http://github.com/wereHamster/avers-server"; + description = "Server implementation of the Avers API"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "avl-static" = callPackage ({ mkDerivation, base, QuickCheck, test-framework , test-framework-quickcheck2 @@ -43157,15 +44746,15 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "brick_0_5" = callPackage + "brick_0_5_1" = callPackage ({ mkDerivation, base, containers, contravariant, data-default , deepseq, lens, template-haskell, text, text-zipper, transformers , vector, vty }: mkDerivation { pname = "brick"; - version = "0.5"; - sha256 = "70819394a586d768e31bbf34b225ce642f682b625256ebe3c8651ee203f5e942"; + version = "0.5.1"; + sha256 = "eb3d43ecd16ac14da9846941ea834ebb99bbfc2f95008dc109b3fa2fef7d9d8d"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -45364,6 +46953,35 @@ self: { license = stdenv.lib.licenses.agpl3; }) {}; + "cabal-helper_0_7_0_1" = callPackage + ({ mkDerivation, base, bytestring, Cabal, cabal-install, directory + , extra, filepath, ghc-prim, mtl, process, template-haskell + , temporary, transformers, unix, utf8-string + }: + mkDerivation { + pname = "cabal-helper"; + version = "0.7.0.1"; + sha256 = "4c158f81ad325a0b2bfd5bfec149851f59837fd73775c8b4da0050bdeca0182d"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base Cabal directory filepath ghc-prim mtl process transformers + ]; + executableHaskellDepends = [ + base bytestring Cabal directory filepath ghc-prim process + template-haskell temporary transformers utf8-string + ]; + testHaskellDepends = [ + base bytestring Cabal directory extra filepath ghc-prim mtl process + template-haskell temporary transformers unix utf8-string + ]; + testToolDepends = [ cabal-install ]; + doCheck = false; + description = "Simple interface to some of Cabal's configuration state used by ghc-mod"; + license = stdenv.lib.licenses.agpl3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "cabal-info" = callPackage ({ mkDerivation, base, Cabal, directory, filepath , optparse-applicative @@ -46083,7 +47701,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "cabal-rpm" = callPackage + "cabal-rpm_0_9_10" = callPackage ({ mkDerivation, base, Cabal, directory, filepath, process, time , unix }: @@ -46099,6 +47717,25 @@ self: { homepage = "https://github.com/juhp/cabal-rpm"; description = "RPM packaging tool for Haskell Cabal-based packages"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "cabal-rpm" = callPackage + ({ mkDerivation, base, Cabal, directory, filepath, process, time + , unix + }: + mkDerivation { + pname = "cabal-rpm"; + version = "0.9.11"; + sha256 = "ba5c748e84cfda23dee92d9381b34f013bf2840452bebe53d3f0c2e1bd31d581"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + base Cabal directory filepath process time unix + ]; + homepage = "https://github.com/juhp/cabal-rpm"; + description = "RPM packaging tool for Haskell Cabal-based packages"; + license = stdenv.lib.licenses.gpl3; }) {}; "cabal-scripts" = callPackage @@ -48341,8 +49978,8 @@ self: { ({ mkDerivation, base, bytestring, comonad, text }: mkDerivation { pname = "category-printf"; - version = "0.1.0.2"; - sha256 = "135238d1fccf41277339c28c9479091b5ab5243674652ba4f644bcdcc2267de4"; + version = "0.1.1.0"; + sha256 = "51b6e8bef10f4e17a11b553cd2ea04dca728f27f171464c14ffdf359abbd0ba5"; libraryHaskellDepends = [ base bytestring comonad text ]; jailbreak = true; description = "Highbrow approach to type-safe printf format specifications"; @@ -48548,8 +50185,8 @@ self: { }: mkDerivation { pname = "cef"; - version = "0.1.3"; - sha256 = "9918fb0b19e23aefe90ed914e30498011f1fa6ea0c8ffdc9e8f8a90337ac41d4"; + version = "0.1.4"; + sha256 = "8564580a312cfee425d2d40e3b99283a05c50f4cdf2f283bc892c19c6fbec4cb"; libraryHaskellDepends = [ base bytestring text time ]; testHaskellDepends = [ base directory doctest filepath ]; homepage = "http://github.com/picussecurity/haskell-cef.git"; @@ -56168,7 +57805,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "conduit" = callPackage + "conduit_1_2_6_4" = callPackage ({ mkDerivation, base, containers, exceptions, hspec, lifted-base , mmorph, mtl, QuickCheck, resourcet, safe, transformers , transformers-base @@ -56188,17 +57825,18 @@ self: { homepage = "http://github.com/snoyberg/conduit"; description = "Streaming data processing library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "conduit_1_2_6_5" = callPackage + "conduit" = callPackage ({ mkDerivation, base, containers, exceptions, hspec, lifted-base , mmorph, mtl, QuickCheck, resourcet, safe, transformers , transformers-base }: mkDerivation { pname = "conduit"; - version = "1.2.6.5"; - sha256 = "b7915cd0d1dea9bbbf47060c980bbc5b214717874533f88ced763a49d905b4f8"; + version = "1.2.6.6"; + sha256 = "958fe8636ef49b947493fd23ea1522d51e82e6acc87cb9e5038398e25fa5d188"; libraryHaskellDepends = [ base exceptions lifted-base mmorph mtl resourcet transformers transformers-base @@ -56210,7 +57848,6 @@ self: { homepage = "http://github.com/snoyberg/conduit"; description = "Streaming data processing library"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "conduit-audio" = callPackage @@ -57181,6 +58818,25 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "configurator-export_0_1_0_1" = callPackage + ({ mkDerivation, base, base-compat, configurator, pretty + , semigroups, text, unordered-containers + }: + mkDerivation { + pname = "configurator-export"; + version = "0.1.0.1"; + sha256 = "9dbd62ef29c97792ccdfdb1b3b79aedfa527dce49a9ac5054f21b29a7f9b824c"; + libraryHaskellDepends = [ + base base-compat configurator pretty semigroups text + unordered-containers + ]; + testHaskellDepends = [ base ]; + homepage = "http://github.com/mstksg/configurator-export"; + description = "Pretty printer and exporter for configurations from the \"configurator\" library"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "confsolve" = callPackage ({ mkDerivation, attoparsec, base, cmdargs, process, system-fileio , system-filepath, text, time, unordered-containers @@ -60878,6 +62534,23 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "cryptohash-md5" = callPackage + ({ mkDerivation, base, bytestring, tasty, tasty-hunit + , tasty-quickcheck + }: + mkDerivation { + pname = "cryptohash-md5"; + version = "0.11.7.1"; + sha256 = "c6e64cb9278403f6c6cdd435f6b612da4f4aca1cc2e687f6773d054c48dbb271"; + libraryHaskellDepends = [ base bytestring ]; + testHaskellDepends = [ + base bytestring tasty tasty-hunit tasty-quickcheck + ]; + homepage = "https://github.com/hvr/cryptohash-md5"; + description = "Fast, pure and practical MD5 implementation"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "cryptohash-sha256" = callPackage ({ mkDerivation, base, bytestring, tasty, tasty-hunit , tasty-quickcheck @@ -62056,8 +63729,8 @@ self: { }: mkDerivation { pname = "d3d11binding"; - version = "0.0.0.5"; - sha256 = "036c759c06663100d0de0ce8e0bdd8e8d476bfbf02221c4678faecbaf229400f"; + version = "0.0.0.6"; + sha256 = "7e5fe934403cd83f94b97d539863ad26df6f0de67d4f291dcabeaaabe7462252"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base c-storable-deriving vect Win32 ]; @@ -65232,7 +66905,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "declarative" = callPackage + "declarative_0_1_0_1" = callPackage ({ mkDerivation, base, hasty-hamiltonian, lens, mcmc-types , mighty-metropolis, mwc-probability, pipes, primitive , speedy-slice, transformers @@ -65249,6 +66922,46 @@ self: { homepage = "http://github.com/jtobin/declarative"; description = "DIY Markov Chains"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "declarative" = callPackage + ({ mkDerivation, base, hasty-hamiltonian, lens, mcmc-types + , mighty-metropolis, mwc-probability, pipes, primitive + , speedy-slice, transformers + }: + mkDerivation { + pname = "declarative"; + version = "0.2.1"; + sha256 = "7e4996de092e39fb310e9ea0eeb8a85a16c4f0ce92d8ec73b653374f07a2ecd4"; + libraryHaskellDepends = [ + base hasty-hamiltonian lens mcmc-types mighty-metropolis + mwc-probability pipes primitive speedy-slice transformers + ]; + testHaskellDepends = [ base mwc-probability ]; + homepage = "http://github.com/jtobin/declarative"; + description = "DIY Markov Chains"; + license = stdenv.lib.licenses.mit; + }) {}; + + "declarative_0_2_2" = callPackage + ({ mkDerivation, base, hasty-hamiltonian, lens, mcmc-types + , mighty-metropolis, mwc-probability, pipes, primitive + , speedy-slice, transformers + }: + mkDerivation { + pname = "declarative"; + version = "0.2.2"; + sha256 = "2201fb8299231ad5017a4ebf429d5036f7d3950df8cf3e684173fa7d658cac8e"; + libraryHaskellDepends = [ + base hasty-hamiltonian lens mcmc-types mighty-metropolis + mwc-probability pipes primitive speedy-slice transformers + ]; + testHaskellDepends = [ base mwc-probability ]; + homepage = "http://github.com/jtobin/declarative"; + description = "DIY Markov Chains"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "decode-utf8" = callPackage @@ -73578,13 +75291,12 @@ self: { pname = "ed25519"; version = "0.0.5.0"; sha256 = "d8a5958ebfa9309790efade64275dc5c441b568645c45ceed1b0c6ff36d6156d"; - revision = "1"; - editedCabalFile = "4e8742cc8e8bf5d078c68c9f550b06566c7a94df3ff3070cfe4c91cbee664f06"; + revision = "2"; + editedCabalFile = "2e051ab9d98bc22e0c4afe09e763d3e8e0571ea51a3ae952db33ac89e58006b3"; libraryHaskellDepends = [ base bytestring ghc-prim ]; testHaskellDepends = [ base bytestring directory doctest filepath hlint QuickCheck ]; - jailbreak = true; homepage = "http://thoughtpolice.github.com/hs-ed25519"; description = "Ed25519 cryptographic signatures"; license = stdenv.lib.licenses.mit; @@ -74412,6 +76124,26 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "either_4_4_1_1" = callPackage + ({ mkDerivation, base, bifunctors, exceptions, free, mmorph + , monad-control, MonadRandom, mtl, profunctors, semigroupoids + , semigroups, transformers, transformers-base + }: + mkDerivation { + pname = "either"; + version = "4.4.1.1"; + sha256 = "b087cb0fb63fec2fbdcac05fef0d03751daef5deb86cda3c732b9a6a31e634d3"; + libraryHaskellDepends = [ + base bifunctors exceptions free mmorph monad-control MonadRandom + mtl profunctors semigroupoids semigroups transformers + transformers-base + ]; + homepage = "http://github.com/ekmett/either/"; + description = "An either monad transformer"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "either-unwrap" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -75770,21 +77502,20 @@ self: { }) {}; "enumerate" = callPackage - ({ mkDerivation, base, containers, deepseq, exceptions, ghc-prim - , MemoTrie, modular-arithmetic, semigroups, template-haskell, vinyl + ({ mkDerivation, array, base, containers, deepseq, exceptions + , ghc-prim, MemoTrie, semigroups, template-haskell, vinyl }: mkDerivation { pname = "enumerate"; - version = "0.0.0"; - sha256 = "a94c036510a6f14724cdc8adefefd85382902e049633234f69cb3f5fea4a3839"; + version = "0.1.1"; + sha256 = "22b4079b793d645f2d1c1e0f151b1aa78e430a32868cf2f8980f7ca13b73091e"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - base containers deepseq exceptions ghc-prim MemoTrie - modular-arithmetic semigroups template-haskell vinyl + array base containers deepseq exceptions ghc-prim MemoTrie + semigroups template-haskell vinyl ]; executableHaskellDepends = [ base ]; - jailbreak = true; homepage = "https://github.com/sboosali/enumerate"; description = "enumerate all the values in a finite type (automatically)"; license = stdenv.lib.licenses.mit; @@ -76965,8 +78696,8 @@ self: { }: mkDerivation { pname = "eternal"; - version = "0.1.3"; - sha256 = "9db1f4e585dab1a838310d746799dc59db6840575c9c3b82e7fca0b1f939ecef"; + version = "0.1.4"; + sha256 = "e7224a9b8f8fa210ed3ed078a2aeec3d1ffb829df678cabfd09dc1cc749b2aac"; libraryHaskellDepends = [ base base-unicode-symbols transformers utf8-string ]; @@ -77317,8 +79048,8 @@ self: { }: mkDerivation { pname = "eventloop"; - version = "0.8.0.1"; - sha256 = "7e89dcc7ea6bcc0843ca16d6df613fa0b873117ef1bfd818478bdb301c6311cb"; + version = "0.8.1.1"; + sha256 = "2b066af25bcb398ae29ed0f62c506c459af6fe69b93b494f840d6bd3c283bfb4"; libraryHaskellDepends = [ aeson base bytestring concurrent-utilities deepseq network stm suspend text timers websockets @@ -79153,8 +80884,8 @@ self: { }: mkDerivation { pname = "fast-tagsoup"; - version = "1.0.10"; - sha256 = "83e90610fdd1c0f6587e293a7f188cdc5376425e002be2226c83afea2b20d046"; + version = "1.0.12"; + sha256 = "6447078da5a85c62528edab1a266ae8709811ba1d113f6dee1ec249e75e3904a"; libraryHaskellDepends = [ base bytestring containers tagsoup text text-icu ]; @@ -81785,8 +83516,8 @@ self: { ({ mkDerivation, base, transformers }: mkDerivation { pname = "first-class-patterns"; - version = "0.3.2.2"; - sha256 = "c8e4ff951a16806ecfecba1739a13b45489ddf742a1bb025ff915164bdaa4735"; + version = "0.3.2.3"; + sha256 = "93de2ae56c0f90bb9f8938a5c653907a3c9b366087cc9f3751378eb7a6aa3714"; libraryHaskellDepends = [ base transformers ]; homepage = "https://github.com/reinerp/first-class-patterns"; description = "First class patterns and pattern matching, using type families"; @@ -84271,8 +86002,8 @@ self: { }: mkDerivation { pname = "fquery"; - version = "0.2.2"; - sha256 = "5641c8748ff11e5ba37175eac76ee4b14739a3d4d4711ea5ce023bc8d8559cbe"; + version = "0.2.3"; + sha256 = "8bbbedcec2bd3f98ea91a187b3970de55a5e2c60ec96fe44b7609a9d122f039e"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -90171,6 +91902,49 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "github-release" = callPackage + ({ mkDerivation, aeson, base, bytestring, http-client + , http-client-tls, http-types, mime-types, optparse-generic, text + , unordered-containers, uri-templater + }: + mkDerivation { + pname = "github-release"; + version = "0.1.5"; + sha256 = "bef5d00d01c10c5c2d8deb29465eefe390c8dc6ad691f1c81fab86256c50594e"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson base bytestring http-client http-client-tls http-types + mime-types optparse-generic text unordered-containers uri-templater + ]; + executableHaskellDepends = [ base ]; + homepage = "https://github.com/tfausak/github-release#readme"; + description = "Upload files to GitHub releases"; + license = stdenv.lib.licenses.mit; + }) {}; + + "github-release_0_1_8" = callPackage + ({ mkDerivation, aeson, base, bytestring, http-client + , http-client-tls, http-types, mime-types, optparse-generic, text + , unordered-containers, uri-templater + }: + mkDerivation { + pname = "github-release"; + version = "0.1.8"; + sha256 = "165ea874a35b23014def46e67f4d348135c35f31a86d445576e17c22948343bf"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson base bytestring http-client http-client-tls http-types + mime-types optparse-generic text unordered-containers uri-templater + ]; + executableHaskellDepends = [ base ]; + homepage = "https://github.com/tfausak/github-release#readme"; + description = "Upload files to GitHub releases"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "github-types" = callPackage ({ mkDerivation, aeson, aeson-pretty, base, hspec, hspec-smallcheck , http-conduit, smallcheck, text, time, unordered-containers @@ -92348,12 +94122,15 @@ self: { pname = "gogol-core"; version = "0.0.1"; sha256 = "5baad8cb7a646cee9490916096ba71bf75168d7f807d79419d350813fc52ef9b"; + revision = "1"; + editedCabalFile = "511fe34ba21f0de5e0349dbab8be23bf824e1229c086ee95613af4b5bf8e29e2"; libraryHaskellDepends = [ aeson attoparsec base bytestring case-insensitive conduit dlist exceptions hashable http-client http-media http-types lens resourcet scientific servant text time unordered-containers ]; testHaskellDepends = [ base tasty ]; + jailbreak = true; homepage = "https://github.com/brendanhay/gogol"; description = "Core data types and functionality for Gogol libraries"; license = "unknown"; @@ -97608,10 +99385,11 @@ self: { pname = "hackage-security-HTTP"; version = "0.1.1"; sha256 = "cd22ac26027df4a6f9c32f57c18a2fad6b69249e79aeeb4081128fd188cd1332"; + revision = "1"; + editedCabalFile = "7285a235c94e56319275337ad1c82b3f84982e58f1b1fdb3a88d7b3c2d966286"; libraryHaskellDepends = [ base bytestring hackage-security HTTP mtl network network-uri zlib ]; - jailbreak = true; homepage = "https://github.com/well-typed/hackage-security"; description = "Hackage security bindings against the HTTP library"; license = stdenv.lib.licenses.bsd3; @@ -106869,15 +108647,15 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "hedis_0_8_2" = callPackage + "hedis_0_8_3" = callPackage ({ mkDerivation, base, bytestring, bytestring-lexing, deepseq , HUnit, mtl, network, resource-pool, scanner, slave-thread , test-framework, test-framework-hunit, text, time, vector }: mkDerivation { pname = "hedis"; - version = "0.8.2"; - sha256 = "4d577fcb4e1457455210ee58d0aef3f02069d2d4d055108a0391899544a254a9"; + version = "0.8.3"; + sha256 = "233debced6ce6285ecc5974769a748d4c9b97bbde7eb4be097b907d668b69d9e"; libraryHaskellDepends = [ base bytestring bytestring-lexing deepseq mtl network resource-pool scanner text time vector @@ -110447,28 +112225,6 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "hjsonpointer_0_2_0_4" = callPackage - ({ mkDerivation, aeson, base, http-types, HUnit, test-framework - , test-framework-hunit, text, unordered-containers, vector - }: - mkDerivation { - pname = "hjsonpointer"; - version = "0.2.0.4"; - sha256 = "8ac317938cc885b01d1165f15671def24e6ceac971413bd494195e77fe0e45b0"; - libraryHaskellDepends = [ - aeson base text unordered-containers vector - ]; - testHaskellDepends = [ - 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; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "hjsonpointer" = callPackage ({ mkDerivation, aeson, base, http-types, HUnit, QuickCheck , test-framework, test-framework-hunit, test-framework-quickcheck2 @@ -112736,8 +114492,8 @@ self: { }: mkDerivation { pname = "hobbits"; - version = "1.2"; - sha256 = "f778c6919bb011b565005a540f3aba6c9d4a08be530333939612358225595d50"; + version = "1.2.1"; + sha256 = "d2e11a1b42ee877a4c74df40df4f0131432c7d7219bf8304de239e2e7a44a0a1"; libraryHaskellDepends = [ base deepseq haskell-src-exts haskell-src-meta mtl syb tagged template-haskell th-expand-syns transformers @@ -114370,6 +116126,36 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "houseman" = callPackage + ({ mkDerivation, base, bytestring, directory, dotenv, hspec + , interpolate, io-streams, mockery, mtl, optparse-generic, parsers + , process, QuickCheck, silently, streaming-commons, temporary, text + , time, trifecta, unix + }: + mkDerivation { + pname = "houseman"; + version = "0.1.0"; + sha256 = "542e790677bcacd177e5dc74c355dfc444f33d596e6229db563615ec7276a19c"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base bytestring directory dotenv io-streams mtl optparse-generic + parsers process streaming-commons text time trifecta unix + ]; + executableHaskellDepends = [ + base bytestring directory dotenv io-streams mtl optparse-generic + parsers process streaming-commons text time trifecta unix + ]; + testHaskellDepends = [ + base bytestring directory dotenv hspec interpolate io-streams + mockery mtl optparse-generic parsers process QuickCheck silently + streaming-commons temporary text time trifecta unix + ]; + homepage = "https://github.com/fujimura/houseman#readme"; + description = "A Haskell implementation of Foreman"; + license = stdenv.lib.licenses.mit; + }) {}; + "hp2any-core" = callPackage ({ mkDerivation, attoparsec, base, bytestring, containers , directory, filepath, network, old-locale, process, time @@ -114492,6 +116278,36 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "hpack_0_14_0" = callPackage + ({ mkDerivation, aeson, aeson-qq, base, base-compat, containers + , deepseq, directory, filepath, Glob, hspec, interpolate, mockery + , QuickCheck, temporary, text, unordered-containers, yaml + }: + mkDerivation { + pname = "hpack"; + version = "0.14.0"; + sha256 = "ec0c1c2619059ebbd29e7c1069831313b92292da900daadf785b78dd1b9ca291"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson base base-compat containers deepseq directory filepath Glob + text unordered-containers yaml + ]; + executableHaskellDepends = [ + aeson base base-compat containers deepseq directory filepath Glob + text unordered-containers yaml + ]; + testHaskellDepends = [ + aeson aeson-qq base base-compat containers deepseq directory + filepath Glob hspec interpolate mockery QuickCheck temporary text + unordered-containers yaml + ]; + homepage = "https://github.com/sol/hpack#readme"; + description = "An alternative format for Haskell packages"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "hpaco" = callPackage ({ mkDerivation, aeson, base, cmdargs, filepath, hpaco-lib, strict , utf8-string, yaml @@ -114620,6 +116436,27 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "hpath" = callPackage + ({ mkDerivation, base, bytestring, deepseq, doctest, exceptions + , hspec, HUnit, process, QuickCheck, unix, unix-bytestring + , utf8-string, word8 + }: + mkDerivation { + pname = "hpath"; + version = "0.6.0"; + sha256 = "bbd8a996e6328274a19943b884fbeca6790df955775ac6f0be6575f25b310404"; + libraryHaskellDepends = [ + base bytestring deepseq exceptions hspec unix unix-bytestring + utf8-string word8 + ]; + testHaskellDepends = [ + base bytestring doctest hspec HUnit process QuickCheck unix + utf8-string + ]; + description = "Support for well-typed paths"; + license = stdenv.lib.licenses.gpl2; + }) {}; + "hpc_0_6_0_3" = callPackage ({ mkDerivation, base, containers, directory, filepath, time }: mkDerivation { @@ -120400,14 +122237,14 @@ self: { }) {}; "htoml" = callPackage - ({ mkDerivation, aeson, base, bytestring, Cabal, containers - , file-embed, old-locale, parsec, tasty, tasty-hspec, tasty-hunit - , text, time, unordered-containers, vector + ({ mkDerivation, aeson, base, bytestring, containers, file-embed + , old-locale, parsec, tasty, tasty-hspec, tasty-hunit, text, time + , unordered-containers, vector }: mkDerivation { pname = "htoml"; - version = "0.1.0.3"; - sha256 = "84890e99f5f01d38c2177f9d4f1ff1ce4e50e832a663d1c3ebe7d9750156ab16"; + version = "1.0.0.1"; + sha256 = "11145f645768abaa51c6ffda70f1c6fe7bb99163877efb13058a16d2d0bd592b"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -120415,11 +122252,11 @@ self: { unordered-containers vector ]; executableHaskellDepends = [ - aeson base bytestring Cabal containers file-embed parsec tasty + aeson base bytestring containers file-embed parsec tasty tasty-hspec tasty-hunit text time unordered-containers vector ]; testHaskellDepends = [ - aeson base bytestring Cabal containers file-embed parsec tasty + aeson base bytestring containers file-embed parsec tasty tasty-hspec tasty-hunit text time unordered-containers vector ]; homepage = "https://github.com/cies/htoml"; @@ -121820,7 +123657,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "http-conduit" = callPackage + "http-conduit_2_1_10" = callPackage ({ mkDerivation, aeson, base, blaze-builder, bytestring , case-insensitive, conduit, conduit-extra, connection, cookie , data-default-class, exceptions, hspec, http-client @@ -121848,6 +123685,37 @@ self: { homepage = "http://www.yesodweb.com/book/http-conduit"; description = "HTTP client package with conduit interface and HTTPS support"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "http-conduit" = callPackage + ({ mkDerivation, aeson, base, blaze-builder, bytestring + , case-insensitive, conduit, conduit-extra, connection, cookie + , data-default-class, exceptions, hspec, http-client + , http-client-tls, http-types, HUnit, lifted-base, monad-control + , mtl, network, resourcet, streaming-commons, temporary, text, time + , transformers, utf8-string, wai, wai-conduit, warp, warp-tls + }: + mkDerivation { + pname = "http-conduit"; + version = "2.1.10.1"; + sha256 = "36ebae73f7bf984e1062aa6079b935069b49a5b3811ea935194c0cecb8de815f"; + libraryHaskellDepends = [ + aeson base bytestring conduit conduit-extra data-default-class + exceptions http-client http-client-tls http-types lifted-base + monad-control mtl resourcet transformers + ]; + testHaskellDepends = [ + aeson base blaze-builder bytestring case-insensitive conduit + conduit-extra connection cookie data-default-class hspec + http-client http-types HUnit lifted-base network streaming-commons + temporary text time transformers utf8-string wai wai-conduit warp + warp-tls + ]; + doCheck = false; + homepage = "http://www.yesodweb.com/book/http-conduit"; + description = "HTTP client package with conduit interface and HTTPS support"; + license = stdenv.lib.licenses.bsd3; }) {}; "http-conduit-browser" = callPackage @@ -123353,16 +125221,16 @@ self: { "hw-conduit" = callPackage ({ mkDerivation, array, base, bytestring, conduit, criterion, hspec - , hw-bits, resourcet + , hw-bits, resourcet, word8 }: mkDerivation { pname = "hw-conduit"; - version = "0.0.0.9"; - sha256 = "48bbf4936ee486f79f40cfac76b425dc019b82dfdfce40539c2ec495436e6293"; + version = "0.0.0.11"; + sha256 = "e0e1193a901858d9bc5fccc51f99977a9bffd24993f9de6c1c3030aa0a1ed77b"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - array base bytestring conduit hw-bits resourcet + array base bytestring conduit hw-bits resourcet word8 ]; executableHaskellDepends = [ base criterion ]; testHaskellDepends = [ base bytestring hspec ]; @@ -123387,6 +125255,68 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "hw-json" = callPackage + ({ mkDerivation, array, attoparsec, base, bytestring, conduit + , containers, criterion, hspec, hw-bits, hw-conduit, hw-diagnostics + , hw-parser, hw-prim, hw-rankselect, mmap, mono-traversable, parsec + , QuickCheck, resourcet, text, transformers, vector, word8 + }: + mkDerivation { + pname = "hw-json"; + version = "0.0.0.2"; + sha256 = "b1205920d0b1ef4046a0d5ff4513d9d6b4ca952e080b7608b9de85b67d38b3fa"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + array attoparsec base bytestring conduit containers hw-bits + hw-conduit hw-parser hw-prim hw-rankselect mono-traversable + resourcet text vector word8 + ]; + executableHaskellDepends = [ + base bytestring conduit criterion hw-bits hw-conduit hw-diagnostics + hw-prim hw-rankselect mmap resourcet vector + ]; + testHaskellDepends = [ + attoparsec base bytestring conduit hspec hw-bits hw-conduit hw-prim + hw-rankselect mmap parsec QuickCheck resourcet transformers vector + ]; + homepage = "http://github.com/haskell-works/hw-json#readme"; + description = "Conduits for tokenizing streams"; + license = stdenv.lib.licenses.bsd3; + }) {}; + + "hw-json_0_0_0_3" = callPackage + ({ mkDerivation, array, attoparsec, base, bytestring, conduit + , containers, criterion, hspec, hw-bits, hw-conduit, hw-diagnostics + , hw-parser, hw-prim, hw-rankselect, mmap, mono-traversable, parsec + , QuickCheck, resourcet, text, transformers, vector, word8 + }: + mkDerivation { + pname = "hw-json"; + version = "0.0.0.3"; + sha256 = "873af674982dd9edb44522ddb99144e902cf2b9baf3091ca68619c24d680326e"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + array attoparsec base bytestring conduit containers hw-bits + hw-conduit hw-parser hw-prim hw-rankselect mono-traversable + resourcet text vector word8 + ]; + executableHaskellDepends = [ + base bytestring conduit criterion hw-bits hw-conduit hw-diagnostics + hw-prim hw-rankselect mmap resourcet vector + ]; + testHaskellDepends = [ + attoparsec base bytestring conduit containers hspec hw-bits + hw-conduit hw-prim hw-rankselect mmap parsec QuickCheck resourcet + transformers vector + ]; + homepage = "http://github.com/haskell-works/hw-json#readme"; + description = "Conduits for tokenizing streams"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "hw-parser" = callPackage ({ mkDerivation, attoparsec, base, bytestring, hw-prim , mono-traversable, text @@ -123421,6 +125351,25 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "hw-prim_0_0_0_11" = callPackage + ({ mkDerivation, base, bytestring, hspec, QuickCheck, random + , vector + }: + mkDerivation { + pname = "hw-prim"; + version = "0.0.0.11"; + sha256 = "6d9c2bb19313e5995dff5de36438ff3ae5632478631bdb66d65eca2397469015"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base bytestring random vector ]; + executableHaskellDepends = [ base ]; + testHaskellDepends = [ base hspec QuickCheck ]; + homepage = "http://github.com/haskell-works/hw-prim#readme"; + description = "Primitive functions and data types"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "hw-rankselect" = callPackage ({ mkDerivation, base, hspec, hw-bits, hw-prim, QuickCheck, vector }: @@ -123440,29 +125389,38 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "hw-rankselect_0_0_0_3" = callPackage + ({ mkDerivation, base, hspec, hw-bits, hw-prim, QuickCheck, vector + }: + mkDerivation { + pname = "hw-rankselect"; + version = "0.0.0.3"; + sha256 = "d00344eb9e7f8ae778551eb43cd37717d508b6d8b1fde4b554eaa6c5bd04efab"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base hw-bits hw-prim vector ]; + executableHaskellDepends = [ base ]; + testHaskellDepends = [ + base hspec hw-bits hw-prim QuickCheck vector + ]; + homepage = "http://github.com/haskell-works/hw-rankselect#readme"; + description = "Conduits for tokenizing streams"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "hw-succinct" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, conduit, criterion - , hspec, hw-bits, hw-conduit, hw-diagnostics, hw-parser, hw-prim - , hw-rankselect, mmap, mono-traversable, parsec, QuickCheck - , resourcet, text, transformers, vector + ({ mkDerivation, attoparsec, base, bytestring, conduit, containers + , hw-bits, hw-conduit, hw-parser, hw-prim, hw-rankselect + , mono-traversable, text, vector, word8 }: mkDerivation { pname = "hw-succinct"; - version = "0.0.0.12"; - sha256 = "2005251655ba822fd8eabbb81247126014e5aea55e68dadd1547c8460a448310"; - isLibrary = true; - isExecutable = true; + version = "0.0.0.14"; + sha256 = "f3e2ec65f1d7e0baa7cda17442cdcd60635cd2693a38873361df9578b65ffbeb"; libraryHaskellDepends = [ - attoparsec base bytestring conduit hw-bits hw-conduit hw-parser - hw-prim hw-rankselect mono-traversable text vector - ]; - executableHaskellDepends = [ - base bytestring conduit criterion hw-bits hw-conduit hw-diagnostics - hw-prim hw-rankselect mmap resourcet vector - ]; - testHaskellDepends = [ - attoparsec base bytestring conduit hspec hw-bits hw-conduit hw-prim - hw-rankselect mmap parsec QuickCheck resourcet transformers vector + attoparsec base bytestring conduit containers hw-bits hw-conduit + hw-parser hw-prim hw-rankselect mono-traversable text vector word8 ]; homepage = "http://github.com/haskell-works/hw-succinct#readme"; description = "Conduits for tokenizing streams"; @@ -131377,6 +133335,24 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "json-ast-json-encoder" = callPackage + ({ mkDerivation, base-prelude, contravariant, contravariant-extras + , json-ast, json-encoder, scientific, text, unordered-containers + , vector + }: + mkDerivation { + pname = "json-ast-json-encoder"; + version = "0.1"; + sha256 = "c0e75b796effda6b295d21c2ea99f992425f7085a07513b95c9943377eb87233"; + libraryHaskellDepends = [ + base-prelude contravariant contravariant-extras json-ast + json-encoder scientific text unordered-containers vector + ]; + homepage = "https://github.com/sannsyn/json-ast-json-encoder"; + description = "Encoders of JSON AST"; + license = stdenv.lib.licenses.mit; + }) {}; + "json-ast-quickcheck" = callPackage ({ mkDerivation, base, json-ast, QuickCheck, quickcheck-instances }: @@ -135371,6 +137347,33 @@ self: { hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; + "lambdacube-gl_0_5_0_4" = callPackage + ({ mkDerivation, aeson, base, base64-bytestring, bytestring + , containers, exceptions, GLFW-b, JuicyPixels, lambdacube-ir, mtl + , network, OpenGLRaw, text, time, vector, vector-algorithms + , websockets + }: + mkDerivation { + pname = "lambdacube-gl"; + version = "0.5.0.4"; + sha256 = "9cda9d95d3938685a83531b3db3f9d6a32fe0fa685d94318bf6a94d159f820df"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base bytestring containers JuicyPixels lambdacube-ir mtl OpenGLRaw + vector vector-algorithms + ]; + executableHaskellDepends = [ + aeson base base64-bytestring bytestring containers exceptions + GLFW-b JuicyPixels lambdacube-ir network OpenGLRaw text time vector + websockets + ]; + homepage = "http://lambdacube3d.com"; + description = "OpenGL 3.3 Core Profile backend for LambdaCube 3D"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "lambdacube-ir" = callPackage ({ mkDerivation, aeson, base, containers, mtl, text, vector }: mkDerivation { @@ -139271,15 +141274,15 @@ self: { "libravatar" = callPackage ({ mkDerivation, base, bytestring, cryptonite, data-default-class - , dns, network-uri, random, url, utf8-string + , dns, memory, random, text, uri-bytestring, url }: mkDerivation { pname = "libravatar"; - version = "0.3.0.1"; - sha256 = "43c646e85abcf577cb0fa09feffbbd45f4cd4cc6203db33d5a6e5a61da42dace"; + version = "0.4"; + sha256 = "32cade964a11e8474cdb23bcc5f9f8d6dbdc6186daeb191dc300d64eb7f21f2c"; libraryHaskellDepends = [ - base bytestring cryptonite data-default-class dns network-uri - random url utf8-string + base bytestring cryptonite data-default-class dns memory random + text uri-bytestring url ]; homepage = "http://rel4tion.org/projects/libravatar/"; description = "Use Libravatar, the decentralized avatar delivery service"; @@ -140815,14 +142818,29 @@ self: { ({ mkDerivation, base, Cabal, filepath }: mkDerivation { pname = "liquidhaskell-cabal"; - version = "0.1.0.0"; - sha256 = "0c13322b6925738ea5bbbbda9ce472e9aa44dd6d8a59c7b1a5dca953d75b848a"; + version = "0.1.1.0"; + sha256 = "fe83b2153191e0280b8cf4bed982482642bad9fcb549d227942a7681a5d69763"; libraryHaskellDepends = [ base Cabal filepath ]; homepage = "https://github.com/spinda/liquidhaskell-cabal#readme"; description = "Liquid Haskell integration for Cabal and stack"; license = stdenv.lib.licenses.bsd3; }) {}; + "liquidhaskell-cabal-demo" = callPackage + ({ mkDerivation, base, liquidhaskell-cabal }: + mkDerivation { + pname = "liquidhaskell-cabal-demo"; + version = "0.1.1.0"; + sha256 = "471cb6630dbcdf1071da28c2affe74717f0d5e23b2205f353eab2aa905f41e22"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base liquidhaskell-cabal ]; + executableHaskellDepends = [ base liquidhaskell-cabal ]; + homepage = "https://github.com/spinda/liquidhaskell-cabal-demo#readme"; + description = "Demo of Liquid Haskell integration for Cabal and stack"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "lispparser" = callPackage ({ mkDerivation, base, parsec }: mkDerivation { @@ -141884,8 +143902,8 @@ self: { ({ mkDerivation, base }: mkDerivation { pname = "located-base"; - version = "0.1.0.0"; - sha256 = "f23a297515bde2600a6f040f0e0b5c987a0ba2d55225fe60546faffd54fc6449"; + version = "0.1.1.0"; + sha256 = "83a96081c87ec9820b6bad7200404f7e1fbed365fe8c57641d8645d95732d59f"; libraryHaskellDepends = [ base ]; homepage = "http://github.com/gridaphobe/located-base"; description = "Location-aware variants of partial functions"; @@ -145215,7 +147233,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "mandrill" = callPackage + "mandrill_0_5_2_0" = callPackage ({ mkDerivation, aeson, base, base64-bytestring, blaze-html , bytestring, containers, email-validate, http-client , http-client-tls, http-types, lens, mtl, old-locale, QuickCheck @@ -145237,9 +147255,10 @@ self: { ]; description = "Library for interfacing with the Mandrill JSON API"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "mandrill_0_5_2_1" = callPackage + "mandrill" = callPackage ({ mkDerivation, aeson, base, base64-bytestring, blaze-html , bytestring, containers, email-validate, http-client , http-client-tls, http-types, lens, mtl, old-locale, QuickCheck @@ -145261,7 +147280,6 @@ self: { ]; description = "Library for interfacing with the Mandrill JSON API"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mandulia" = callPackage @@ -149976,6 +151994,21 @@ self: { license = "GPL"; }) {}; + "monad-dijkstra" = callPackage + ({ mkDerivation, base, free, hlint, mtl, psqueues, tasty + , tasty-hspec, transformers + }: + mkDerivation { + pname = "monad-dijkstra"; + version = "0.1.0.0"; + sha256 = "2810e69b6f90dd55b63f476caa54cc4dbf4f1d1ac4b0dffea57c2398ba7cfc31"; + libraryHaskellDepends = [ base free mtl psqueues transformers ]; + testHaskellDepends = [ base hlint tasty tasty-hspec ]; + homepage = "https://github.com/ennocramer/monad-dijkstra"; + description = "Monad transformer for weighted graph searches using Dijkstra's or A* algorithm"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "monad-exception" = callPackage ({ mkDerivation, base, monad-control, mtl-evil-instances , transformers, transformers-base @@ -153538,6 +155571,18 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "multiset-comb_0_2_4_1" = callPackage + ({ mkDerivation, base, containers, transformers }: + mkDerivation { + pname = "multiset-comb"; + version = "0.2.4.1"; + sha256 = "8ae3432daf56c1752a0d63e25acbc8b6b4dce52600091139a9e29b16400030da"; + libraryHaskellDepends = [ base containers transformers ]; + description = "Combinatorial algorithms over multisets"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "multisetrewrite" = callPackage ({ mkDerivation, base, haskell98, stm }: mkDerivation { @@ -155714,9 +157759,9 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "nested-routes_7_1_0" = callPackage + "nested-routes_7_1_0_1" = callPackage ({ mkDerivation, attoparsec, base, bytestring, composition-extra - , errors, exceptions, hashable, hashtables, hspec, hspec-wai + , errors, exceptions, hashable, hashtables, HSet, hspec, hspec-wai , http-types, mtl, poly-arity, pred-set, pred-trie, regex-compat , semigroups, text, transformers, tries, unordered-containers , wai-middleware-content-type, wai-middleware-verbs @@ -155724,8 +157769,8 @@ self: { }: mkDerivation { pname = "nested-routes"; - version = "7.1.0"; - sha256 = "1fbd722b6a9e637ff1794d1a122d6f52ae6b3cf9b70ebfc0afd5bcd593a12861"; + version = "7.1.0.1"; + sha256 = "92da6c57328e531072e17ea8ae5ff9bd2752fef57f74a151d263c79e30d38c80"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -155736,15 +157781,15 @@ self: { ]; executableHaskellDepends = [ attoparsec base bytestring composition-extra errors exceptions - hashable hashtables http-types mtl poly-arity pred-set pred-trie - regex-compat semigroups text transformers tries + hashable hashtables HSet http-types mtl poly-arity pred-set + pred-trie regex-compat semigroups text transformers tries unordered-containers wai-middleware-content-type wai-middleware-verbs wai-transformers warp ]; testHaskellDepends = [ attoparsec base bytestring composition-extra errors exceptions - hashable hspec hspec-wai http-types mtl poly-arity pred-trie - regex-compat semigroups text transformers tries + hashable hashtables HSet hspec hspec-wai http-types mtl poly-arity + pred-set pred-trie regex-compat semigroups text transformers tries unordered-containers wai-middleware-content-type wai-middleware-verbs wai-transformers ]; @@ -156641,8 +158686,8 @@ self: { }: mkDerivation { pname = "network-conduit-tls"; - version = "1.2.1"; - sha256 = "3afaab3abeb6933cdd199d8d419c2fe916e07915c672a6d9eb4be038c22de787"; + version = "1.2.1.1"; + sha256 = "666a32fc1fafaac37c1176b115ca7fb2ae630fb97b665326e1bc607953283e30"; libraryHaskellDepends = [ base bytestring conduit conduit-extra connection cprng-aes data-default monad-control network streaming-commons tls @@ -161343,12 +163388,11 @@ self: { ({ mkDerivation, attoparsec, base, text }: mkDerivation { pname = "organize-imports"; - version = "0.3.0.0"; - sha256 = "5d15e24ffba4e607c453f261c28d619e283707e36ab546d1b45e5fd3cd34a511"; + version = "0.4.0.0"; + sha256 = "546a670fc5c9f1f3f7cba3abf1e51f7e9c2263c0e44d8637d6fa8ff2cd597895"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ attoparsec base text ]; - jailbreak = true; description = "Organize scala imports"; license = stdenv.lib.licenses.gpl3; }) {}; @@ -162939,8 +164983,8 @@ self: { }: mkDerivation { pname = "pandoc-crossref"; - version = "0.2.1.1"; - sha256 = "4b90d228a8943e31ad7d2a1861b74bdb98af9422e3e675c209a012ca54e0deaa"; + version = "0.2.1.2"; + sha256 = "1410526eb891d20f0d16d6c970c3f7e8355b21c55fde56a1899a5d55828e593a"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -167665,7 +169709,7 @@ self: { maintainers = with stdenv.lib.maintainers; [ psibi ]; }) {}; - "persistent-template_2_5_1" = callPackage + "persistent-template_2_5_1_1" = callPackage ({ mkDerivation, aeson, aeson-compat, base, bytestring, containers , ghc-prim, hspec, http-api-data, monad-control, monad-logger , path-pieces, persistent, QuickCheck, tagged, template-haskell @@ -167673,8 +169717,8 @@ self: { }: mkDerivation { pname = "persistent-template"; - version = "2.5.1"; - sha256 = "24776c5690023cebc85bda7c2cc8b0ebeb6cc87884ac83800f6891b1b32975fa"; + version = "2.5.1.1"; + sha256 = "37b70abf241324a296fbfa949ba0572515701dbb593648cdd6deffce6db3aae3"; libraryHaskellDepends = [ aeson aeson-compat base bytestring containers ghc-prim http-api-data monad-control monad-logger path-pieces persistent @@ -167936,21 +169980,25 @@ self: { }) {}; "pgdl" = callPackage - ({ mkDerivation, array, base, bytestring, Cabal, configurator - , directory, filepath, HTTP, http-conduit, network-uri, process - , tagsoup, text, vty, vty-ui + ({ mkDerivation, base, binary, brick, bytestring, Cabal, conduit + , conduit-extra, configurator, data-default, directory + , directory-listing-webpage-parser, filepath, http-conduit, process + , resourcet, tagsoup, text, time, transformers, unix, vector, vty }: mkDerivation { pname = "pgdl"; - version = "8.5"; - sha256 = "9c577d2d149ed3645edb4e3a9fcbe1fbe6072cf2124b6ee76c45724b390d63a2"; + version = "9.0"; + sha256 = "d4812a30b8d37572c9fc0da282dbc1258bd31769a2e3d0771da8f391eb72d3a5"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ - array base bytestring Cabal configurator directory filepath HTTP - http-conduit network-uri process tagsoup text vty vty-ui + base binary brick bytestring Cabal conduit conduit-extra + configurator data-default directory + directory-listing-webpage-parser filepath http-conduit process + resourcet tagsoup text time transformers unix vector vty ]; - description = "simply download a video (or a file) from a webpage and xdg-open it"; + jailbreak = true; + description = "browse directory listing webpages and download files from them"; license = stdenv.lib.licenses.publicDomain; }) {}; @@ -168121,19 +170169,20 @@ self: { "phoityne-vscode" = callPackage ({ mkDerivation, aeson, base, bytestring, Cabal, cmdargs, conduit , conduit-extra, ConfigFile, containers, directory, filepath - , hslogger, hspec, HStringTemplate, MissingH, mtl, parsec, process - , resourcet, safe, split, text, transformers + , fsnotify, hslogger, hspec, HStringTemplate, MissingH, mtl, parsec + , process, resourcet, safe, split, text, transformers }: mkDerivation { pname = "phoityne-vscode"; - version = "0.0.1.0"; - sha256 = "17c662ed380004e0268b3b2dc5c467914e74bd479688fd9ce2b66530f49fb07e"; + version = "0.0.2.0"; + sha256 = "fa1c8d6f4e6f034f439db307e44990b0cb8840cdd2084e8a4bd28008b6139cdb"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ aeson base bytestring Cabal cmdargs conduit conduit-extra - ConfigFile containers directory filepath hslogger HStringTemplate - MissingH mtl parsec process resourcet safe split text transformers + ConfigFile containers directory filepath fsnotify hslogger + HStringTemplate MissingH mtl parsec process resourcet safe split + text transformers ]; testHaskellDepends = [ aeson base hspec ]; homepage = "https://sites.google.com/site/phoityne/"; @@ -168668,7 +170717,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "pipes" = callPackage + "pipes_4_1_8" = callPackage ({ mkDerivation, base, mmorph, mtl, QuickCheck, test-framework , test-framework-quickcheck2, transformers }: @@ -168683,6 +170732,24 @@ self: { ]; description = "Compositional pipelines"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "pipes" = callPackage + ({ mkDerivation, base, mmorph, mtl, QuickCheck, test-framework + , test-framework-quickcheck2, transformers + }: + mkDerivation { + pname = "pipes"; + version = "4.1.9"; + sha256 = "c2d5d08761bbb62dca03f81b3d99bb2f50a386c52c30b2abc8c3ca8aabdea3ea"; + libraryHaskellDepends = [ base mmorph mtl transformers ]; + testHaskellDepends = [ + base mtl QuickCheck test-framework test-framework-quickcheck2 + transformers + ]; + description = "Compositional pipelines"; + license = stdenv.lib.licenses.bsd3; }) {}; "pipes-aeson_0_4_1_2" = callPackage @@ -169614,7 +171681,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "pipes-parse" = callPackage + "pipes-parse_3_0_5" = callPackage ({ mkDerivation, base, pipes, transformers }: mkDerivation { pname = "pipes-parse"; @@ -169623,6 +171690,18 @@ self: { libraryHaskellDepends = [ base pipes transformers ]; description = "Parsing infrastructure for the pipes ecosystem"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "pipes-parse" = callPackage + ({ mkDerivation, base, pipes, transformers }: + mkDerivation { + pname = "pipes-parse"; + version = "3.0.6"; + sha256 = "9275f8b8ec14fd0332f2874f6b8994c5e8e6c59afab242071b3a9acfadcd092f"; + libraryHaskellDepends = [ base pipes transformers ]; + description = "Parsing infrastructure for the pipes ecosystem"; + license = stdenv.lib.licenses.bsd3; }) {}; "pipes-postgresql-simple" = callPackage @@ -172364,6 +174443,20 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "postgresql-transactional_1_1_1" = callPackage + ({ mkDerivation, base, monad-control, mtl, postgresql-simple }: + mkDerivation { + pname = "postgresql-transactional"; + version = "1.1.1"; + sha256 = "f9302a1e134b31f2e9bd243c4fe36a25b3a9a9d6984288be1bc9c29882545ed3"; + libraryHaskellDepends = [ + base monad-control mtl postgresql-simple + ]; + description = "a transactional monad on top of postgresql-simple"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "postgresql-typed" = callPackage ({ mkDerivation, aeson, array, attoparsec, base, binary, bytestring , containers, cryptonite, haskell-src-meta, memory, network @@ -172372,8 +174465,8 @@ self: { }: mkDerivation { pname = "postgresql-typed"; - version = "0.4.3"; - sha256 = "6d7150da2dc0d290435c54892d2ff0e92a2517e142d08da31c74d05957d79407"; + version = "0.4.4"; + sha256 = "b440545a710f17995a9e52384e1d1ef0b64202fac129d0bb44eb95c746e4f1f6"; libraryHaskellDepends = [ aeson array attoparsec base binary bytestring containers cryptonite haskell-src-meta memory network old-locale postgresql-binary @@ -173959,6 +176052,39 @@ self: { semigroups tasty tasty-hunit text transformers transformers-compat void ]; + doCheck = false; + description = "Streaming interface to system processes"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "process-streaming_0_9_1_2" = callPackage + ({ mkDerivation, attoparsec, base, bifunctors, bytestring, conceit + , containers, directory, doctest, exceptions, filepath, foldl, free + , kan-extensions, lens-family-core, pipes, pipes-attoparsec + , pipes-bytestring, pipes-concurrency, pipes-group, pipes-parse + , pipes-safe, pipes-text, pipes-transduce, process, profunctors + , semigroups, tasty, tasty-hunit, text, transformers + , transformers-compat, void + }: + mkDerivation { + pname = "process-streaming"; + version = "0.9.1.2"; + sha256 = "5f2e016ecbd5b811dcd17ecec7d680d3fd29ffb66e27f735fc662948fd42584e"; + libraryHaskellDepends = [ + base bifunctors bytestring conceit free kan-extensions pipes + pipes-bytestring pipes-concurrency pipes-parse pipes-safe + pipes-text pipes-transduce process profunctors text transformers + transformers-compat void + ]; + testHaskellDepends = [ + attoparsec base bifunctors bytestring containers directory doctest + exceptions filepath foldl free lens-family-core pipes + pipes-attoparsec pipes-bytestring pipes-concurrency pipes-group + pipes-parse pipes-safe pipes-text pipes-transduce process + semigroups tasty tasty-hunit text transformers transformers-compat + void + ]; description = "Streaming interface to system processes"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -174809,6 +176935,32 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "protobuf-simple" = callPackage + ({ mkDerivation, base, binary, bytestring, containers + , data-binary-ieee754, directory, filepath, hspec, mtl, parsec + , QuickCheck, quickcheck-instances, split, text + }: + mkDerivation { + pname = "protobuf-simple"; + version = "0.1.0.1"; + sha256 = "3186d3372b6621d7b92dd5043187bee4cb329e644632a7888fd8689d5441fcae"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base binary bytestring containers data-binary-ieee754 mtl text + ]; + executableHaskellDepends = [ + base containers directory filepath mtl parsec split text + ]; + testHaskellDepends = [ + base binary bytestring containers data-binary-ieee754 filepath + hspec parsec QuickCheck quickcheck-instances split text + ]; + homepage = "https://github.com/sru-systems/protobuf-simple"; + description = "Simple Protocol Buffers library (proto2)"; + license = stdenv.lib.licenses.mit; + }) {}; + "protocol-buffers_2_1_4" = callPackage ({ mkDerivation, array, base, binary, bytestring, containers , directory, filepath, mtl, parsec, syb, utf8-string @@ -175115,16 +177267,15 @@ self: { "protolude" = callPackage ({ mkDerivation, async, base, bytestring, containers, deepseq - , ghc-prim, mtl, safe, semiring-simple, stm, string-conv, text - , transformers + , ghc-prim, mtl, safe, stm, string-conv, text, transformers }: mkDerivation { pname = "protolude"; - version = "0.1.4"; - sha256 = "2b8b2e7ceb88f6db37633e204d1b59cc676535bff61c0ceb6074b75f02a6cd29"; + version = "0.1.5"; + sha256 = "6173f65da406738e776081c38cf2172e240822e42364c06147dd72ec34328edd"; libraryHaskellDepends = [ - async base bytestring containers deepseq ghc-prim mtl safe - semiring-simple stm string-conv text transformers + async base bytestring containers deepseq ghc-prim mtl safe stm + string-conv text transformers ]; homepage = "https://github.com/sdiehl/protolude"; description = "A sensible set of defaults for writing custom Preludes"; @@ -175268,16 +177419,17 @@ self: { "pseudo-boolean" = callPackage ({ mkDerivation, attoparsec, base, bytestring, bytestring-builder - , containers, deepseq, dlist, hashable, HUnit, parsec, QuickCheck - , tasty, tasty-hunit, tasty-quickcheck, tasty-th, temporary + , containers, deepseq, dlist, hashable, HUnit, megaparsec, parsec + , QuickCheck, tasty, tasty-hunit, tasty-quickcheck, tasty-th + , temporary }: mkDerivation { pname = "pseudo-boolean"; - version = "0.1.3.0"; - sha256 = "88eb7ed7ced6ce2df62044fccb7be2269ff19a9fa5e3901b84bf896837ee1b0e"; + version = "0.1.4.0"; + sha256 = "0fc981b210c969fb150f5720829556c94bc6f24c5aff6807a08c3d39e2ca726d"; libraryHaskellDepends = [ attoparsec base bytestring bytestring-builder containers deepseq - dlist hashable parsec + dlist hashable megaparsec parsec ]; testHaskellDepends = [ base bytestring HUnit QuickCheck tasty tasty-hunit tasty-quickcheck @@ -175440,8 +177592,8 @@ self: { ({ mkDerivation, base, filepath, hspec, template-haskell }: mkDerivation { pname = "publicsuffix"; - version = "0.20160320"; - sha256 = "e2d2e1a75eb71742d338f3a5c49673121c07a12ea268671cedf801d70020e344"; + version = "0.20160505"; + sha256 = "936c39ccb9d0d6ca661a924d95244699eaec0d634afa6f852438430967c5c4e7"; libraryHaskellDepends = [ base filepath template-haskell ]; testHaskellDepends = [ base hspec ]; homepage = "https://github.com/wereHamster/publicsuffix-haskell/"; @@ -175845,6 +177997,27 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "pureMD5_2_1_3" = callPackage + ({ mkDerivation, base, binary, bytestring, cereal, crypto-api + , crypto-api-tests, pretty-hex, QuickCheck, tagged, test-framework + , test-framework-quickcheck2 + }: + mkDerivation { + pname = "pureMD5"; + version = "2.1.3"; + sha256 = "bef3358a5e3a45b649860a5792f052e2f927c0492a7056cf64425116c8a7b17d"; + libraryHaskellDepends = [ + base binary bytestring cereal crypto-api tagged + ]; + testHaskellDepends = [ + base binary bytestring cereal crypto-api-tests pretty-hex + QuickCheck test-framework test-framework-quickcheck2 + ]; + description = "A Haskell-only implementation of the MD5 digest (hash) algorithm"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "purescript_0_7_2_0" = callPackage ({ mkDerivation, aeson, aeson-better-errors, ansi-wl-pprint, base , bower-json, boxes, bytestring, containers, directory, dlist @@ -176134,8 +178307,8 @@ self: { }: mkDerivation { pname = "purescript-bridge"; - version = "0.3.1.1"; - sha256 = "8e68c9481f2c4c1d9783ffdae66bb234f6d2e068a116787dd106adcd051027cd"; + version = "0.3.2.0"; + sha256 = "0377f67fc941523c093767ca33c215236550f6f67f51b95c6527e93f8f618954"; libraryHaskellDepends = [ base containers directory filepath generic-deriving text ]; @@ -182737,7 +184910,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "resourcet" = callPackage + "resourcet_1_1_7_3" = callPackage ({ mkDerivation, base, containers, exceptions, hspec, lifted-base , mmorph, monad-control, mtl, transformers, transformers-base , transformers-compat @@ -182754,9 +184927,10 @@ self: { homepage = "http://github.com/snoyberg/conduit"; description = "Deterministic allocation and freeing of scarce resources"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "resourcet_1_1_7_4" = callPackage + "resourcet" = callPackage ({ mkDerivation, base, containers, exceptions, hspec, lifted-base , mmorph, monad-control, mtl, transformers, transformers-base , transformers-compat @@ -182773,7 +184947,6 @@ self: { homepage = "http://github.com/snoyberg/conduit"; description = "Deterministic allocation and freeing of scarce resources"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "respond" = callPackage @@ -185343,17 +187516,18 @@ self: { }) {}; "rosa" = callPackage - ({ mkDerivation, aeson, argparser, base, bytestring, lens, process - , text, unordered-containers, vector, wreq + ({ mkDerivation, aeson, base, bytestring, lens + , optparse-applicative, process, text, unordered-containers, vector + , wreq }: mkDerivation { pname = "rosa"; - version = "0.2.2.0"; - sha256 = "fe03cbdeda54fb80bf4e2168ceaaffdcdeb6e608e2d7911f60ab2ca5995fef31"; + version = "0.3.0.0"; + sha256 = "3779cc49176bc37088ce1d08fe35c45c6292e8645ddd3c64e97e9cfe2f13634c"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ - aeson argparser base bytestring lens process text + aeson base bytestring lens optparse-applicative process text unordered-containers vector wreq ]; description = "Query the namecoin blockchain"; @@ -191607,6 +193781,32 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "servant-quickcheck" = callPackage + ({ mkDerivation, aeson, base, base-compat, bytestring + , case-insensitive, data-default-class, hspec, http-client + , http-media, http-types, mtl, process, QuickCheck, quickcheck-io + , servant, servant-client, servant-server, split + , string-conversions, temporary, text, transformers, warp + }: + mkDerivation { + pname = "servant-quickcheck"; + version = "0.0.0.0"; + sha256 = "12570871ccef6e0bf290a2d3b3635b37a8cef00a7ce6adff3927bb5b14f52f67"; + libraryHaskellDepends = [ + aeson base base-compat bytestring case-insensitive + data-default-class hspec http-client http-media http-types mtl + process QuickCheck servant servant-client servant-server split + string-conversions temporary text warp + ]; + testHaskellDepends = [ + base base-compat hspec http-client QuickCheck quickcheck-io servant + servant-client servant-server transformers warp + ]; + jailbreak = true; + description = "QuickCheck entire APIs"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "servant-response" = callPackage ({ mkDerivation, aeson, base, http-types, text }: mkDerivation { @@ -196870,6 +199070,18 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "smtLib_1_0_8" = callPackage + ({ mkDerivation, base, pretty }: + mkDerivation { + pname = "smtLib"; + version = "1.0.8"; + sha256 = "37016f9322742c88c89d692e62d01c419b03242bbc6d84da4dab772408ad21a9"; + libraryHaskellDepends = [ base pretty ]; + description = "A library for working with the SMTLIB format"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "smtlib2" = callPackage ({ mkDerivation, array, atto-lisp, attoparsec, base, blaze-builder , bytestring, constraints, containers, data-fix, mtl, process @@ -198921,7 +201133,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "soap" = callPackage + "soap_0_2_2_7" = callPackage ({ mkDerivation, base, bytestring, conduit, configurator , data-default, exceptions, hspec, http-client, http-types, HUnit , iconv, mtl, resourcet, text, unordered-containers, xml-conduit @@ -198943,6 +201155,31 @@ self: { homepage = "https://bitbucket.org/dpwiz/haskell-soap"; description = "SOAP client tools"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "soap" = callPackage + ({ mkDerivation, base, bytestring, conduit, configurator + , data-default, exceptions, hspec, http-client, http-types, HUnit + , iconv, mtl, resourcet, text, unordered-containers, xml-conduit + , xml-conduit-writer, xml-types + }: + mkDerivation { + pname = "soap"; + version = "0.2.3.0"; + sha256 = "9d249967e3e6394749397a89c70c9aba5e5454ea4c2592ffd00aaa0ca2e98fd1"; + libraryHaskellDepends = [ + base bytestring conduit configurator data-default exceptions + http-client http-types iconv mtl resourcet text + unordered-containers xml-conduit xml-conduit-writer xml-types + ]; + testHaskellDepends = [ + base bytestring hspec HUnit text unordered-containers xml-conduit + xml-conduit-writer + ]; + homepage = "https://bitbucket.org/dpwiz/haskell-soap"; + description = "SOAP client tools"; + license = stdenv.lib.licenses.mit; }) {}; "soap-openssl" = callPackage @@ -199190,7 +201427,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "socks" = callPackage + "socks_0_5_4" = callPackage ({ mkDerivation, base, bytestring, cereal, network }: mkDerivation { pname = "socks"; @@ -199200,9 +201437,10 @@ self: { homepage = "http://github.com/vincenthz/hs-socks"; description = "Socks proxy (version 5) implementation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "socks_0_5_5" = callPackage + "socks" = callPackage ({ mkDerivation, base, bytestring, cereal, network }: mkDerivation { pname = "socks"; @@ -199212,7 +201450,6 @@ self: { homepage = "http://github.com/vincenthz/hs-socks"; description = "Socks proxy (version 5) implementation"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sodium_0_11_0_2" = callPackage @@ -201831,8 +204068,8 @@ self: { }: mkDerivation { pname = "stack-run"; - version = "0.1.0.5"; - sha256 = "6625d1fbfde871ae88689a3ae18550a4582d68974e5f541e014c45629c1821c7"; + version = "0.1.0.6"; + sha256 = "b08c21255d54f11da1508cc4c060b2143e95bc64bc99bace3e65d4f47232c576"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -201844,7 +204081,7 @@ self: { license = stdenv.lib.licenses.mit; }) {}; - "stack-run-auto" = callPackage + "stack-run-auto_0_1_1_0" = callPackage ({ mkDerivation, async, base, extract-dependencies, file-modules , lens, lens-aeson, MissingH, process, stm-containers, text, time , wreq @@ -201870,6 +204107,35 @@ self: { homepage = "http://github.com/yamadapc/stack-run-auto#readme"; description = "Initial project template from stack"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "stack-run-auto" = callPackage + ({ mkDerivation, async, base, extract-dependencies, file-modules + , lens, lens-aeson, MissingH, process, stm-containers, text, time + , wreq + }: + mkDerivation { + pname = "stack-run-auto"; + version = "0.1.1.1"; + sha256 = "f26ed23b99158be8f3d6fa47d499b3ebea03ab0f788cfa0133bff302b7e105dc"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + async base extract-dependencies file-modules lens lens-aeson + MissingH process stm-containers text time wreq + ]; + executableHaskellDepends = [ + async base extract-dependencies file-modules lens lens-aeson + MissingH process stm-containers text time wreq + ]; + testHaskellDepends = [ + async base extract-dependencies file-modules lens lens-aeson + MissingH process stm-containers text time wreq + ]; + homepage = "http://github.com/yamadapc/stack-run-auto#readme"; + description = "Initial project template from stack"; + license = stdenv.lib.licenses.mit; }) {}; "stackage_0_3_1" = callPackage @@ -208004,6 +210270,24 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "system-test" = callPackage + ({ mkDerivation, aeson, ansi-terminal, base, bytestring, process + , text + }: + mkDerivation { + pname = "system-test"; + version = "0.1.1"; + sha256 = "d7c3118a4592a96cb9869ee8d1f5eb67d593a6d9e88dba8fad9998a3132bbf56"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + aeson ansi-terminal base bytestring process text + ]; + homepage = "https://github.com/ExcaliburZero/system-test-haskell"; + description = "Runs system tests of applications"; + license = stdenv.lib.licenses.mit; + }) {}; + "system-time-monotonic" = callPackage ({ mkDerivation, base, time }: mkDerivation { @@ -208772,7 +211056,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "tagsoup" = callPackage + "tagsoup_0_13_9" = callPackage ({ mkDerivation, base, bytestring, containers, text }: mkDerivation { pname = "tagsoup"; @@ -208784,6 +211068,21 @@ self: { homepage = "https://github.com/ndmitchell/tagsoup#readme"; 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.10"; + sha256 = "ac838eeed18118423220716855c2bfd71dcc4a7a455893d8c4ad627828f57d58"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base bytestring containers text ]; + homepage = "https://github.com/ndmitchell/tagsoup#readme"; + description = "Parsing and extracting information from (possibly malformed) HTML/XML documents"; + license = stdenv.lib.licenses.bsd3; }) {}; "tagsoup-ht" = callPackage @@ -213325,6 +215624,23 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "th-orphans_0_13_1" = callPackage + ({ mkDerivation, base, hspec, mtl, template-haskell, th-lift + , th-lift-instances, th-reify-many + }: + mkDerivation { + pname = "th-orphans"; + version = "0.13.1"; + sha256 = "bfa4b391bae1eeb8470e05b43b229e4f6eb8af5c5a4d39b723801963f325e141"; + libraryHaskellDepends = [ + base mtl template-haskell th-lift th-lift-instances th-reify-many + ]; + testHaskellDepends = [ base hspec template-haskell ]; + description = "Orphan instances for TH datatypes"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "th-printf" = callPackage ({ mkDerivation, attoparsec, base, bytestring, hspec, HUnit , QuickCheck, template-haskell, text, transformers @@ -213416,6 +215732,24 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "th-reify-many_0_1_6" = callPackage + ({ mkDerivation, base, containers, mtl, safe, template-haskell + , th-expand-syns + }: + mkDerivation { + pname = "th-reify-many"; + version = "0.1.6"; + sha256 = "aea5d277af954ec41d8c129b9e0761a0e628b6e216d0243fb2600339bbfce6ac"; + libraryHaskellDepends = [ + base containers mtl safe template-haskell th-expand-syns + ]; + testHaskellDepends = [ base template-haskell ]; + homepage = "http://github.com/mgsloan/th-reify-many"; + description = "Recurseively reify template haskell datatype info"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "th-sccs" = callPackage ({ mkDerivation, base, containers, template-haskell }: mkDerivation { @@ -213464,6 +215798,27 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "th-utilities" = callPackage + ({ mkDerivation, base, bytestring, containers, directory, filepath + , hspec, primitive, syb, template-haskell, text, th-orphans, vector + }: + mkDerivation { + pname = "th-utilities"; + version = "0.1.0.1"; + sha256 = "b41375d16d87fb64e1b3a8e32dfd154199175cdd1ab16c86e3923c75f36d1160"; + libraryHaskellDepends = [ + base bytestring containers directory filepath primitive syb + template-haskell text th-orphans + ]; + testHaskellDepends = [ + base bytestring containers directory filepath hspec primitive syb + template-haskell text th-orphans vector + ]; + homepage = "https://github.com/fpco/th-utilities#readme"; + description = "Collection of useful functions for use with Template Haskell"; + license = stdenv.lib.licenses.mit; + }) {}; + "themoviedb" = callPackage ({ mkDerivation, aeson, base, binary, bytestring, either , http-client, http-client-tls, http-types, mtl, tasty, tasty-hunit @@ -214215,16 +216570,14 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "time_1_6" = callPackage + "time_1_6_0_1" = callPackage ({ mkDerivation, base, deepseq, QuickCheck, test-framework , test-framework-quickcheck2, unix }: mkDerivation { pname = "time"; - version = "1.6"; - sha256 = "2b4ff69434fd920353ab9948b8e36b71a76227661b06cad1bb0ef99a2e91a29f"; - revision = "1"; - editedCabalFile = "aa5ff661ec586e3c082485d21abe107332ba29355d1a2c8c2966ba518d1309f2"; + version = "1.6.0.1"; + sha256 = "ff69b46f38f4d226b171d078b200f8a5a1e8cfeadfa543eabade51355d7c7fcb"; libraryHaskellDepends = [ base deepseq ]; testHaskellDepends = [ base deepseq QuickCheck test-framework test-framework-quickcheck2 @@ -215340,8 +217693,34 @@ self: { pname = "tls"; version = "1.3.4"; sha256 = "49fff2bd6b420bb57f7cc78445f9a17547a5ff4a72e29135695c9cc2d91e19c1"; - revision = "1"; - editedCabalFile = "52c52c0c7a3816c50437b9bbec9cff59dbdea6330fa64475c1bd51da0dbf6fe9"; + revision = "2"; + editedCabalFile = "160911eae9f313bf2bc9a86db576c8ce03e42b8523ee08b210ff4253ead31562"; + libraryHaskellDepends = [ + asn1-encoding asn1-types async base bytestring cereal cryptonite + data-default-class memory mtl network transformers x509 x509-store + x509-validation + ]; + testHaskellDepends = [ + base bytestring cereal cryptonite data-default-class hourglass mtl + QuickCheck tasty tasty-quickcheck x509 x509-validation + ]; + jailbreak = true; + homepage = "http://github.com/vincenthz/hs-tls"; + description = "TLS/SSL protocol native implementation (Server and Client)"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "tls_1_3_5" = callPackage + ({ mkDerivation, asn1-encoding, asn1-types, async, base, bytestring + , cereal, cryptonite, data-default-class, hourglass, memory, mtl + , network, QuickCheck, tasty, tasty-quickcheck, transformers, x509 + , x509-store, x509-validation + }: + mkDerivation { + pname = "tls"; + version = "1.3.5"; + sha256 = "ff2c21a8a9d1f34ccc5dcf816c2a873a91ab15ab4c7876cd7b88c3052624a08f"; libraryHaskellDepends = [ asn1-encoding asn1-types async base bytestring cereal cryptonite data-default-class memory mtl network transformers x509 x509-store @@ -215365,8 +217744,10 @@ self: { }: mkDerivation { pname = "tls"; - version = "1.3.5"; - sha256 = "ff2c21a8a9d1f34ccc5dcf816c2a873a91ab15ab4c7876cd7b88c3052624a08f"; + version = "1.3.6"; + sha256 = "72285fbc0f79f3138213cbe493a0bb10780becb1469b0e2c7aa840e6ba04dd62"; + revision = "1"; + editedCabalFile = "37d05226822e7949fe96455f2e8130a454700c65c87bec7745cad0bcc1a8379c"; libraryHaskellDepends = [ asn1-encoding asn1-types async base bytestring cereal cryptonite data-default-class memory mtl network transformers x509 x509-store @@ -215381,6 +217762,33 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "tls_1_3_7" = callPackage + ({ mkDerivation, asn1-encoding, asn1-types, async, base, bytestring + , cereal, cryptonite, data-default-class, hourglass, memory, mtl + , network, QuickCheck, tasty, tasty-quickcheck, transformers, x509 + , x509-store, x509-validation + }: + mkDerivation { + pname = "tls"; + version = "1.3.7"; + sha256 = "a84640e141dc68a83eb9b207baa2d71e1e8b0b73d33b7c34466d73539f457225"; + revision = "1"; + editedCabalFile = "d458dae3fdb165c9426fa9e5363c98fadc2ca75b98aa99988fbfcdeaa1e51527"; + libraryHaskellDepends = [ + asn1-encoding asn1-types async base bytestring cereal cryptonite + data-default-class memory mtl network transformers x509 x509-store + x509-validation + ]; + testHaskellDepends = [ + base bytestring cereal cryptonite data-default-class hourglass mtl + QuickCheck tasty tasty-quickcheck x509 x509-validation + ]; + homepage = "http://github.com/vincenthz/hs-tls"; + description = "TLS/SSL protocol native implementation (Server and Client)"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "tls-debug_0_3_4" = callPackage ({ mkDerivation, base, bytestring, cprng-aes, crypto-pubkey , data-default-class, network, pem, time, tls, x509, x509-system @@ -215451,8 +217859,8 @@ self: { }: mkDerivation { pname = "tls-debug"; - version = "0.4.2"; - sha256 = "8d39924ebaa304342935a4fb31b6c7fb2437142f520e0c95af9ad397efc32b01"; + version = "0.4.3"; + sha256 = "40e34f1a0635c006ecd495bb44b8f24587052f2277236254308fe7d5f2b6312d"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -215464,6 +217872,27 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "tls-debug_0_4_4" = callPackage + ({ mkDerivation, base, bytestring, cryptonite, data-default-class + , network, pem, time, tls, x509, x509-store, x509-system + , x509-validation + }: + mkDerivation { + pname = "tls-debug"; + version = "0.4.4"; + sha256 = "e5e7e416de38f21de5ba4ca17a904d843d6f3f66f6b6309b6ab9770f897c551d"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + base bytestring cryptonite data-default-class network pem time tls + x509 x509-store x509-system x509-validation + ]; + homepage = "http://github.com/vincenthz/hs-tls"; + description = "Set of programs for TLS testing and debugging"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "tls-extra" = callPackage ({ mkDerivation, base, bytestring, certificate, cipher-aes , cipher-rc4, crypto-pubkey, crypto-random, cryptohash, mtl @@ -216032,6 +218461,24 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "tracetree" = callPackage + ({ mkDerivation, base, bifunctors, containers, json, mtl + , transformers + }: + mkDerivation { + pname = "tracetree"; + version = "0.1.0.0"; + sha256 = "f4dcb708ed295ba09068560f65600242b0b59357e119d1868830ca2dfc724b1c"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base bifunctors containers json mtl transformers + ]; + jailbreak = true; + description = "Visualize Haskell data structures as edge-labeled trees"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "tracker" = callPackage ({ mkDerivation, base, containers, glib }: mkDerivation { @@ -217076,6 +219523,26 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "ttask" = callPackage + ({ mkDerivation, base, directory, extra, optparse-declarative, safe + , time, transformers + }: + mkDerivation { + pname = "ttask"; + version = "0.0.0.2"; + sha256 = "e68f8ca2858895b46926febd356f0376cff004ed422950276d48b1cdcc8a1227"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base directory extra safe time ]; + executableHaskellDepends = [ + base optparse-declarative time transformers + ]; + testHaskellDepends = [ base ]; + homepage = "https://github.com/tokiwoousaka/ttask#readme"; + description = "This is task management tool for yourself, that inspired by scrum"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "ttrie" = callPackage ({ mkDerivation, atomic-primops, base, containers, hashable , primitive, QuickCheck, stm, test-framework @@ -217246,8 +219713,8 @@ self: { }: mkDerivation { pname = "tubes"; - version = "2.0.0.0"; - sha256 = "19277b8c3f86a431ee64776aa101826d12ab33df1083813d1cbf78939a7b4422"; + version = "2.0.0.1"; + sha256 = "4297964709dca035f9adb4cc05ae92bc8fc9501847c0e8c0703ad6d0e32df989"; libraryHaskellDepends = [ base comonad contravariant free mtl profunctors semigroups transformers @@ -217715,8 +220182,8 @@ self: { ({ mkDerivation, base, eventloop }: mkDerivation { pname = "twentefp-eventloop-trees"; - version = "0.1.2.3"; - sha256 = "f6cd6a92421f35eb5943f0c57435a30035d7ebde6dacafa081bb48ae5bde7d0b"; + version = "0.1.2.4"; + sha256 = "a4806fa7f4fd3639d527b92ab6b2cb436f60778b888053d1b63fdfe3b912520d"; libraryHaskellDepends = [ base eventloop ]; description = "Tree type and show functions for lab assignment of University of Twente. Contains RoseTree and RedBlackTree"; license = stdenv.lib.licenses.bsd3; @@ -217909,6 +220376,7 @@ self: { text transformers ]; jailbreak = true; + doCheck = false; homepage = "https://github.com/markandrus/twilio-haskell"; description = "Twilio REST API library for Haskell"; license = stdenv.lib.licenses.bsd3; @@ -219917,6 +222385,24 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "uncertain" = callPackage + ({ mkDerivation, ad, base, containers, free, mwc-random, primitive + , transformers + }: + mkDerivation { + pname = "uncertain"; + version = "0.2.0.0"; + sha256 = "3f3d46ee31b7ad2328761f6e7225bde5c94e61fa35b078838b8ae44de15598b3"; + revision = "1"; + editedCabalFile = "1057e2e280de08d8a148f7a29028d6d04083adb6bd8b375bf9fed1513e937c86"; + libraryHaskellDepends = [ + ad base containers free mwc-random primitive transformers + ]; + homepage = "https://github.com/mstksg/uncertain"; + description = "Manipulating numbers with inherent experimental/measurement uncertainty"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "unexceptionalio" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -221056,14 +223542,13 @@ self: { }: mkDerivation { pname = "uom-plugin"; - version = "0.2.0.0"; - sha256 = "c9eb1b27d940f7ce7ff2850f5f9c5bc2a5b23d472c8bcfaca0aec6a8b1c72daf"; + version = "0.2.0.1"; + sha256 = "3efad2e00217c5011394a9c2c166d9acc870189486dca0c8058cf397d8ea2e81"; libraryHaskellDepends = [ base containers deepseq ghc ghc-tcplugins-extra template-haskell units-parser ]; testHaskellDepends = [ base tasty tasty-hunit ]; - jailbreak = true; homepage = "https://github.com/adamgundry/uom-plugin"; description = "Units of measure as a GHC typechecker plugin"; license = stdenv.lib.licenses.bsd3; @@ -230143,6 +232628,23 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "webcloud" = callPackage + ({ mkDerivation, base, bytestring, cgi, optparse-applicative }: + mkDerivation { + pname = "webcloud"; + version = "0.1.0.1"; + sha256 = "ff3c55543a2edccf11531b2405c98e916db0e13db067670cee566daa20df429f"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base bytestring cgi optparse-applicative + ]; + executableHaskellDepends = [ base optparse-applicative ]; + jailbreak = true; + description = "Turn an optparse-applicative program into a CGI program!"; + license = stdenv.lib.licenses.bsd2; + }) {}; + "webcrank" = callPackage ({ mkDerivation, attoparsec, base, blaze-builder, bytestring , case-insensitive, either, exceptions, http-date, http-media @@ -231161,6 +233663,30 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "werewolf_1_1_0_0" = callPackage + ({ mkDerivation, aeson, base, containers, directory, extra + , filepath, lens, MonadRandom, mtl, optparse-applicative + , random-shuffle, text, transformers + }: + mkDerivation { + pname = "werewolf"; + version = "1.1.0.0"; + sha256 = "866edf6fccb7ddc54e851f1d6da17ed661302fe9520de3a5cd493bd65b5e35b1"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson base containers extra lens mtl text transformers + ]; + executableHaskellDepends = [ + aeson base containers directory extra filepath lens MonadRandom mtl + optparse-applicative random-shuffle text transformers + ]; + homepage = "https://github.com/hjwylde/werewolf"; + description = "A game engine for playing werewolf within an arbitrary chat client"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "werewolf-slack" = callPackage ({ mkDerivation, aeson, base, bytestring, extra, http-client , http-client-tls, http-types, mtl, optparse-applicative, process @@ -231181,6 +233707,27 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "werewolf-slack_1_0_1_1" = callPackage + ({ mkDerivation, aeson, base, bytestring, extra, http-client + , http-client-tls, http-types, mtl, optparse-applicative, process + , text, wai, warp, werewolf + }: + mkDerivation { + pname = "werewolf-slack"; + version = "1.0.1.1"; + sha256 = "1f54514a3482e7afecfb14d60dfb3f98e46f562973727e382eb76db61fdbc73a"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + aeson base bytestring extra http-client http-client-tls http-types + mtl optparse-applicative process text wai warp werewolf + ]; + homepage = "https://github.com/hjwylde/werewolf-slack"; + description = "A chat interface for playing werewolf in Slack"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "wheb-mongo" = callPackage ({ mkDerivation, base, bson, mongoDB, mtl, text, Wheb }: mkDerivation { @@ -240200,8 +242747,8 @@ self: { }: mkDerivation { pname = "yesod-crud"; - version = "0.1.3"; - sha256 = "56b1ed4ad8ac35887e6e327774890a31e662de04afb2b295b88df4a85b89c776"; + version = "0.1.4"; + sha256 = "35dd4afab3aa24a64c5a7a63b87b325b7ea0f58ee03530d11be97f96c47c7ff2"; libraryHaskellDepends = [ base classy-prelude containers MissingH monad-control persistent random safe stm uuid yesod-core yesod-form yesod-persistent @@ -240785,6 +243332,33 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "yesod-job-queue_0_3_0_0" = callPackage + ({ mkDerivation, aeson, api-field-json-th, base, bytestring + , classy-prelude-yesod, cron, file-embed, hedis, lens, monad-logger + , persistent-sqlite, resourcet, stm, text, time, uuid, yesod + , yesod-core + }: + mkDerivation { + pname = "yesod-job-queue"; + version = "0.3.0.0"; + sha256 = "34da4826fd12624cf0d93f72e16a7722cc7510dcf37381bed89cc8bfabe42912"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson api-field-json-th base bytestring classy-prelude-yesod cron + file-embed hedis lens monad-logger stm text time uuid yesod + ]; + executableHaskellDepends = [ + base classy-prelude-yesod hedis monad-logger persistent-sqlite + resourcet yesod yesod-core + ]; + testHaskellDepends = [ base ]; + homepage = "https://github.com/nakaji-dayo/yesod-job-queue#readme"; + description = "Background jobs library for Yesod"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "yesod-json" = callPackage ({ mkDerivation, base, yesod-core }: mkDerivation { @@ -242570,6 +245144,43 @@ self: { hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; + "yi_0_12_5" = callPackage + ({ mkDerivation, array, base, binary, bytestring, Cabal, containers + , data-default, directory, dlist, dynamic-state, dyre, exceptions + , filepath, glib, gtk, hashable, hint, HUnit, lens, mtl, old-locale + , oo-prototypes, pango, parsec, pointedlist, process, QuickCheck + , random, safe, semigroups, split, stm, tasty, tasty-hunit + , tasty-quickcheck, template-haskell, text, text-icu, time + , transformers-base, unix, unix-compat, unordered-containers, vty + , word-trie, xdg-basedir, yi-language, yi-rope + }: + mkDerivation { + pname = "yi"; + version = "0.12.5"; + sha256 = "789ccb9366556b405fabb4b5db684944172b68afa9d9cb4160a640ab9004bdc4"; + configureFlags = [ "-fpango" "-fvty" ]; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + array base binary bytestring Cabal containers data-default + directory dlist dynamic-state dyre exceptions filepath glib gtk + hashable hint lens mtl old-locale oo-prototypes pango parsec + pointedlist process QuickCheck random safe semigroups split stm + template-haskell text text-icu time transformers-base unix + unix-compat unordered-containers vty word-trie xdg-basedir + yi-language yi-rope + ]; + executableHaskellDepends = [ base ]; + testHaskellDepends = [ + base directory filepath HUnit lens QuickCheck semigroups tasty + tasty-hunit tasty-quickcheck text yi-language yi-rope + ]; + homepage = "https://yi-editor.github.io"; + description = "The Haskell-Scriptable Editor"; + license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "yi-contrib" = callPackage ({ mkDerivation, base, containers, directory, filepath, lens, mtl , old-locale, oo-prototypes, split, text, time, transformers-base @@ -243375,6 +245986,29 @@ self: { license = stdenv.lib.licenses.mit; }) {inherit (pkgs) zeromq;}; + "zeromq4-haskell_0_6_5" = callPackage + ({ mkDerivation, async, base, bytestring, containers, exceptions + , monad-control, QuickCheck, semigroups, tasty, tasty-hunit + , tasty-quickcheck, transformers, transformers-base, zeromq + }: + mkDerivation { + pname = "zeromq4-haskell"; + version = "0.6.5"; + sha256 = "6e99b6cf882269544ce3d613a51b00a259f0aee9fdb13d25d8cb19f96799e7c2"; + libraryHaskellDepends = [ + async base bytestring containers exceptions monad-control + semigroups transformers transformers-base + ]; + libraryPkgconfigDepends = [ zeromq ]; + testHaskellDepends = [ + async base bytestring QuickCheck tasty tasty-hunit tasty-quickcheck + ]; + homepage = "https://gitlab.com/twittner/zeromq-haskell/"; + description = "Bindings to ZeroMQ 4.x"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {inherit (pkgs) zeromq;}; + "zeroth" = callPackage ({ mkDerivation, base, Cabal, derive, directory, filepath , haskell-src-exts, hskeleton, monoid-record, process, syb diff --git a/pkgs/development/interpreters/pixie/default.nix b/pkgs/development/interpreters/pixie/default.nix index 6a7424eb5cd..4adaea04ec1 100644 --- a/pkgs/development/interpreters/pixie/default.nix +++ b/pkgs/development/interpreters/pixie/default.nix @@ -3,7 +3,7 @@ variant ? "jit", buildWithPypy ? false }: let - commit-count = "1333"; + commit-count = "1352"; common-flags = "--thread --gcrootfinder=shadowstack --continuation"; variants = { jit = { flags = "--opt=jit"; target = "target.py"; }; @@ -13,8 +13,8 @@ let }; pixie-src = fetchgit { url = "https://github.com/pixie-lang/pixie.git"; - rev = "36ce07e1cd85ca82eedadf366bef3bb57a627a2a"; - sha256 = "1b3v99c0is33w029r15qvd0mkrc5n1mrvjjmfpcd9yvhvqb2vcjs"; + rev = "dd754fe9f329e9e176eeaedae1095c85cde65028"; + sha256 = "1jf3nkd1jzvxrw9ql2r74drsirrxfihc125x0wmk45jyl5q24vdd"; }; pypy-tag = "81254"; pypy-src = fetchurl { diff --git a/pkgs/development/interpreters/spidermonkey/1.8.0-rc1.nix b/pkgs/development/interpreters/spidermonkey/1.8.0-rc1.nix index 99f66199d93..960cd86ec27 100644 --- a/pkgs/development/interpreters/spidermonkey/1.8.0-rc1.nix +++ b/pkgs/development/interpreters/spidermonkey/1.8.0-rc1.nix @@ -3,9 +3,9 @@ stdenv.mkDerivation rec { version = "1.8.0-rc1"; name = "spidermonkey-${version}"; - + src = fetchurl { - url = "http://ftp.mozilla.org/pub/mozilla.org/js/js-${version}.tar.gz"; + url = "mirror://mozilla/js/js-${version}.tar.gz"; sha256 = "374398699ac3fd802d98d642486cf6b0edc082a119c9c9c499945a0bc73e3413"; }; diff --git a/pkgs/development/interpreters/spidermonkey/17.0.nix b/pkgs/development/interpreters/spidermonkey/17.0.nix index 5cc71b59d51..cbe2c47594d 100644 --- a/pkgs/development/interpreters/spidermonkey/17.0.nix +++ b/pkgs/development/interpreters/spidermonkey/17.0.nix @@ -5,7 +5,7 @@ stdenv.mkDerivation rec { name = "spidermonkey-${version}"; src = fetchurl { - url = "http://ftp.mozilla.org/pub/mozilla.org/js/mozjs${version}.tar.gz"; + url = "mirror://mozilla/js/mozjs${version}.tar.gz"; sha256 = "1fig2wf4f10v43mqx67y68z6h77sy900d1w0pz9qarrqx57rc7ij"; }; diff --git a/pkgs/development/interpreters/spidermonkey/185-1.0.0.nix b/pkgs/development/interpreters/spidermonkey/185-1.0.0.nix index 94f070d1a91..779f0ef26d4 100644 --- a/pkgs/development/interpreters/spidermonkey/185-1.0.0.nix +++ b/pkgs/development/interpreters/spidermonkey/185-1.0.0.nix @@ -5,7 +5,7 @@ stdenv.mkDerivation rec { name = "spidermonkey-${version}"; src = fetchurl { - url = "http://ftp.mozilla.org/pub/mozilla.org/js/js${version}.tar.gz"; + url = "mirror://mozilla/js/js${version}.tar.gz"; sha256 = "5d12f7e1f5b4a99436685d97b9b7b75f094d33580227aa998c406bbae6f2a687"; }; diff --git a/pkgs/development/interpreters/spidermonkey/24.2.nix b/pkgs/development/interpreters/spidermonkey/24.2.nix index 5c4fc850815..96d73b69e62 100644 --- a/pkgs/development/interpreters/spidermonkey/24.2.nix +++ b/pkgs/development/interpreters/spidermonkey/24.2.nix @@ -5,7 +5,7 @@ stdenv.mkDerivation rec { name = "spidermonkey-${version}"; src = fetchurl { - url = "http://ftp.mozilla.org/pub/mozilla.org/js/mozjs-${version}.tar.bz2"; + url = "mirror://mozilla/js/mozjs-${version}.tar.bz2"; sha256 = "1n1phk8r3l8icqrrap4czplnylawa0ddc2cc4cgdz46x3lrkybz6"; }; diff --git a/pkgs/development/interpreters/spidermonkey/default.nix b/pkgs/development/interpreters/spidermonkey/default.nix index 1ef0cf3b539..21ba0b8cba4 100644 --- a/pkgs/development/interpreters/spidermonkey/default.nix +++ b/pkgs/development/interpreters/spidermonkey/default.nix @@ -4,7 +4,7 @@ stdenv.mkDerivation rec { name = "spidermonkey-1.7"; src = fetchurl { - url = https://ftp.mozilla.org/pub/js/js-1.7.0.tar.gz; + url = mirror://mozilla/js/js-1.7.0.tar.gz; sha256 = "12v6v2ccw1y6ng3kny3xw0lfs58d1klylqq707k0x04m707kydj4"; }; diff --git a/pkgs/development/libraries/SDL2_image/default.nix b/pkgs/development/libraries/SDL2_image/default.nix index 55b465226d8..eab9b1fb55d 100644 --- a/pkgs/development/libraries/SDL2_image/default.nix +++ b/pkgs/development/libraries/SDL2_image/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, SDL2, libpng, libjpeg, libtiff, libungif, libXpm, zlib }: stdenv.mkDerivation rec { - name = "SDL2_image-2.0.0"; + name = "SDL2_image-2.0.1"; src = fetchurl { url = "http://www.libsdl.org/projects/SDL_image/release/${name}.tar.gz"; - sha256 = "0d3jlhkmr0j5a2dd5h6y29jfcsj7mkl16wghm6n3nqqp7g3ib65j"; + sha256 = "0r3z1l7fdn76qkpy7snpkcjqz8dkv2zp6lsqpq25q4m5xsyaygis"; }; buildInputs = [SDL2 libpng libjpeg libtiff libungif libXpm zlib]; diff --git a/pkgs/development/libraries/SDL2_mixer/default.nix b/pkgs/development/libraries/SDL2_mixer/default.nix index 06e174371c7..dcfa130de3a 100644 --- a/pkgs/development/libraries/SDL2_mixer/default.nix +++ b/pkgs/development/libraries/SDL2_mixer/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, SDL2, libogg, libvorbis, enableNativeMidi ? false }: stdenv.mkDerivation rec { - name = "SDL2_mixer-2.0.0"; + name = "SDL2_mixer-2.0.1"; src = fetchurl { url = "http://www.libsdl.org/projects/SDL_mixer/release/${name}.tar.gz"; - sha256 = "0nvjdxjchrajrn0jag877hdx9zb788hsd315zzg1lyck2wb0xkm8"; + sha256 = "0pv9jzjpcjlbiaybvwrb4avmv46qk7iqxlnqrd2dfj82c4mgc92s"; }; propagatedBuildInputs = [SDL2 libogg libvorbis]; diff --git a/pkgs/development/libraries/SDL2_ttf/default.nix b/pkgs/development/libraries/SDL2_ttf/default.nix index d1600ee8a8f..8d11689aba5 100644 --- a/pkgs/development/libraries/SDL2_ttf/default.nix +++ b/pkgs/development/libraries/SDL2_ttf/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, SDL2, freetype }: stdenv.mkDerivation rec { - name = "SDL2_ttf-2.0.12"; + name = "SDL2_ttf-2.0.14"; src = fetchurl { url = "https://www.libsdl.org/projects/SDL_ttf/release/${name}.tar.gz"; - sha256 = "0vkg6lyj278mdpd52map3rfi65fbq16w67ahmmfcl77a8da60a47"; + sha256 = "0xljwcpvd2knrjdfag5b257xqayplz55mqlszrqp0kpnphh5xnrl"; }; buildInputs = [SDL2 freetype]; diff --git a/pkgs/development/libraries/java/rhino/default.nix b/pkgs/development/libraries/java/rhino/default.nix index 87958512925..960af32d359 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 = "https://ftp.mozilla.org/pub/js/rhino1_7R2.zip"; + url = "mirror://mozilla/js/rhino1_7R2.zip"; sha256 = "1p32hkghi6bkc3cf2dcqyaw5cjj7403mykcp0fy8f5bsnv0pszv7"; }; diff --git a/pkgs/development/libraries/libnftnl/default.nix b/pkgs/development/libraries/libnftnl/default.nix index df692f76a2a..53dfd21f23d 100644 --- a/pkgs/development/libraries/libnftnl/default.nix +++ b/pkgs/development/libraries/libnftnl/default.nix @@ -4,14 +4,14 @@ stdenv.mkDerivation rec { name = "libnftnl-1.0.5"; src = fetchurl { - url = "netfilter.org/projects/libnftnl/files/${name}.tar.bz2"; + url = "http://netfilter.org/projects/libnftnl/files/${name}.tar.bz2"; sha256 = "15z4kcsklbvy94d24p2r0avyhc2rsvygjqr3gyccg2z30akzbm7n"; }; buildInputs = [ pkgconfig libmnl ]; meta = with stdenv.lib; { - description = "a userspace library providing a low-level netlink API to the in-kernel nf_tables subsystem"; + description = "A userspace library providing a low-level netlink API to the in-kernel nf_tables subsystem"; homepage = http://netfilter.org/projects/libnftnl; license = licenses.gpl2Plus; platforms = platforms.linux; diff --git a/pkgs/development/libraries/libpsl/default.nix b/pkgs/development/libraries/libpsl/default.nix index 07258e40355..8540eccf2da 100644 --- a/pkgs/development/libraries/libpsl/default.nix +++ b/pkgs/development/libraries/libpsl/default.nix @@ -3,10 +3,10 @@ let - listVersion = "2016-04-16"; + listVersion = "2016-05-10"; listSources = fetchFromGitHub { - sha256 = "0lwf8cvqfr3nsx92i2fphij0whb2lcswk6z6grhisqmwrs873hyv"; - rev = "dfac82546fde5180e2d5a1b61b6ae2f668009870"; + sha256 = "1bpdli2q5ap677yg0w0v7q5qmaxnm2y17wakzmc0k6k7m7xfyzw0"; + rev = "2226f9cc92213d0d68a74ecb535b15b3af00388a"; repo = "list"; owner = "publicsuffix"; }; diff --git a/pkgs/development/libraries/libserialport/default.nix b/pkgs/development/libraries/libserialport/default.nix index c40812beeac..e7ee188c29f 100644 --- a/pkgs/development/libraries/libserialport/default.nix +++ b/pkgs/development/libraries/libserialport/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, pkgconfig, udev }: stdenv.mkDerivation rec { - name = "libserialport-0.1.0"; + name = "libserialport-0.1.1"; src = fetchurl { url = "http://sigrok.org/download/source/libserialport/${name}.tar.gz"; - sha256 = "1bqrldwrcsv6jbq3pmqczq27gdkrzpaxwplanqs25f6q9gb5p47c"; + sha256 = "17ajlwgvyyrap8z7f16zcs59pksvncwbmd3mzf98wj7zqgczjaja"; }; buildInputs = [ pkgconfig udev ]; diff --git a/pkgs/development/libraries/libu2f-host/default.nix b/pkgs/development/libraries/libu2f-host/default.nix index 98dbe517591..48d55f17c57 100644 --- a/pkgs/development/libraries/libu2f-host/default.nix +++ b/pkgs/development/libraries/libu2f-host/default.nix @@ -11,9 +11,10 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ pkgconfig ]; buildInputs = [ json_c hidapi ]; + doCheck = true; + postInstall = '' - mkdir -p $out/lib/udev/rules.d/ - cp -v *.rules $out/lib/udev/rules.d/ + install -D -t $out/lib/udev/rules.d 70-u2f.rules ''; meta = with stdenv.lib; { diff --git a/pkgs/development/libraries/nspr/default.nix b/pkgs/development/libraries/nspr/default.nix index 726b5d7b29a..23f7ffb0ce8 100644 --- a/pkgs/development/libraries/nspr/default.nix +++ b/pkgs/development/libraries/nspr/default.nix @@ -6,7 +6,7 @@ stdenv.mkDerivation { name = "nspr-${version}"; src = fetchurl { - url = "http://ftp.mozilla.org/pub/mozilla.org/nspr/releases/v${version}/src/nspr-${version}.tar.gz"; + url = "mirror://mozilla/nspr/releases/v${version}/src/nspr-${version}.tar.gz"; sha256 = "1pk98bmc5xzbl62q5wf2d6mryf0v95z6rsmxz27nclwiaqg0mcg0"; }; diff --git a/pkgs/development/libraries/nss/default.nix b/pkgs/development/libraries/nss/default.nix index fc5bffe6b74..c95e2304e40 100644 --- a/pkgs/development/libraries/nss/default.nix +++ b/pkgs/development/libraries/nss/default.nix @@ -12,7 +12,7 @@ in stdenv.mkDerivation rec { version = "3.23"; src = fetchurl { - url = "http://ftp.mozilla.org/pub/mozilla.org/security/nss/releases/NSS_3_23_RTM/src/${name}.tar.gz"; + url = "mirror://mozilla/security/nss/releases/NSS_3_23_RTM/src/${name}.tar.gz"; sha256 = "1kqidv91icq96m9m8zx50n7px08km2l88458rkgyjwcn3kiq7cwl"; }; diff --git a/pkgs/development/libraries/svrcore/default.nix b/pkgs/development/libraries/svrcore/default.nix index a5559e87aad..ddb880e6bf2 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 = "https://ftp.mozilla.org/pub/directory/svrcore/releases/${version}/src/${name}.tar.bz2"; + url = "mirror://mozilla/directory/svrcore/releases/${version}/src/${name}.tar.bz2"; sha256 = "0n3alg6bxml8952fb6h0bi0l29farvq21q6k20gy2ba90m3znwj7"; }; diff --git a/pkgs/development/libraries/udns/default.nix b/pkgs/development/libraries/udns/default.nix new file mode 100644 index 00000000000..9d781b301a0 --- /dev/null +++ b/pkgs/development/libraries/udns/default.nix @@ -0,0 +1,46 @@ +{ stdenv, fetchurl }: + +# this expression is mostly based on debian's packaging +# https://tracker.debian.org/media/packages/u/udns/rules-0.4-1 + +stdenv.mkDerivation rec { + name = "udns-${version}"; + version = "0.4"; + + configurePhase = "./configure --enable-ipv6"; + + buildPhase = "make staticlib sharedlib rblcheck_s dnsget_s"; + + src = fetchurl { + url = "http://www.corpit.ru/mjt/udns/${name}.tar.gz"; + sha256 = "0447fv1hmb44nnchdn6p5pd9b44x8p5jn0ahw6crwbqsg7f0hl8i"; + }; + + installPhase = '' + mkdir -p $out/bin + mkdir -p $out/include + mkdir -p $out/lib + mkdir -p $out/share/man/man1 + mkdir -p $out/share/man/man3 + cp dnsget_s $out/bin/dnsget + cp rblcheck_s $out/bin/rblcheck + cp udns.h $out/include/ + cp libudns.a $out/lib/ + cp libudns.so.0 $out/lib/ + ln -rs $out/lib/libudns.so.0 $out/lib/libudns.so + cp dnsget.1 rblcheck.1 $out/share/man/man1 + cp udns.3 $out/share/man/man3 + ''; + + # keep man3 + outputDocdev = "out"; + + meta = with stdenv.lib; { + homepage = http://www.corpit.ru/mjt/udns.html; + description = "Async-capable DNS stub resolver library"; + license = licenses.lgpl21Plus; + maintainers = [ maintainers.womfoo ]; + platforms = platforms.linux; + }; + +} diff --git a/pkgs/development/libraries/unixODBC/default.nix b/pkgs/development/libraries/unixODBC/default.nix index ef8dcdc5329..e40f362a3b1 100644 --- a/pkgs/development/libraries/unixODBC/default.nix +++ b/pkgs/development/libraries/unixODBC/default.nix @@ -1,10 +1,20 @@ -{stdenv, fetchurl}: +{ stdenv, fetchurl }: stdenv.mkDerivation rec { - name = "unixODBC-2.3.2"; + name = "unixODBC-${version}"; + version = "2.3.4"; + src = fetchurl { url = "ftp://ftp.unixodbc.org/pub/unixODBC/${name}.tar.gz"; - sha256 = "16jw5fq7wgfky6ak1h2j2pqx99jivsdl4q8aq6immpr55xs5jd4w"; + sha256 = "0f8y88rcc2akjvjv5y66yx7k0ms9h1s0vbcfy25j93didflhj59f"; + }; + + configureFlags = [ "--disable-gui" "--sysconfdir=/etc" ]; + + meta = with stdenv.lib; { + description = "ODBC driver manager for Unix"; + homepage = http://www.unixodbc.org/; + license = licenses.lgpl2; + platforms = platforms.linux; }; - configureFlags = "--disable-gui --sysconfdir=/etc"; } diff --git a/pkgs/development/libraries/unixODBCDrivers/default.nix b/pkgs/development/libraries/unixODBCDrivers/default.nix index d3a2debbd12..80b39bd4cab 100644 --- a/pkgs/development/libraries/unixODBCDrivers/default.nix +++ b/pkgs/development/libraries/unixODBCDrivers/default.nix @@ -1,115 +1,130 @@ -{fetchurl, stdenv, unixODBC, glibc, libtool, openssl, zlib, postgresql, mysql, sqlite}: -# each attr contains the name deriv referencing the derivation and ini which -# evaluates to a string which can be appended to the global unix odbc ini file -# to register the driver +{ fetchurl, stdenv, unixODBC, cmake, postgresql, mysql55, mariadb, sqlite, zlib, libxml2 }: + # I haven't done any parameter tweaking.. So the defaults provided here might be bad + { -# new postgres connector library (doesn't work yet) - psqlng = rec { - deriv = stdenv.mkDerivation { - name = "unix-odbc-pg-odbcng-0.90.101"; - buildInputs = [ unixODBC glibc libtool postgresql ]; - # added -ltdl to resolve missing references `dlsym' `dlerror' `dlopen' `dlclose' - preConfigure=" - export CPPFLAGS=-I${unixODBC}/include - export LDFLAGS='-L${unixODBC}/lib -lltdl' - "; - src = fetchurl { - # using my mirror because original url is https - # https://projects.commandprompt.com/public/odbcng/attachment/wiki/Downloads/odbcng-0.90.101.tar.gz"; - url = http://mawercer.de/~publicrepos/odbcng-0.90.101.tar.gz; - sha256 = "13z3sify4z2jcil379704w0knkpflg6di4jh6zx1x2gdgzydxa1y"; - }; - meta = { - description = "unix odbc driver for postgresql"; - homepage = https://projects.commandprompt.com/public/odbcng; - license = stdenv.lib.licenses.gpl2; - }; - }; - ini = ""; - }; -# official postgres connector - psql = rec { - deriv = stdenv.mkDerivation rec { - name = "psqlodbc-09.03.0100"; - buildInputs = [ unixODBC libtool postgresql openssl ]; - preConfigure=" - export CPPFLAGS=-I${unixODBC}/include - export LDFLAGS='-L${unixODBC}/lib -lltdl' - "; - # added -ltdl to resolve missing references `dlsym' `dlerror' `dlopen' `dlclose' + psql = stdenv.mkDerivation rec { + name = "psqlodbc-${version}"; + version = "09.05.0210"; + src = fetchurl { url = "http://ftp.postgresql.org/pub/odbc/versions/src/${name}.tar.gz"; - sha256 = "0mh10chkmlppidnmvgbp47v5jnphsrls28zwbvyk2crcn8gdx9q1"; + sha256 = "0317zrxaiy209xzcc6b5sz6hsyiv4zm74iikp91rgz7z3ll4n4dc"; }; - meta = { - description = "unix odbc driver for postgresql"; - homepage = http://pgfoundry.org/projects/psqlodbc/; - license = "LGPL"; + + buildInputs = [ unixODBC postgresql ]; + + passthru = { + fancyName = "PostgreSQL"; + driver = "lib/psqlodbcw.so"; + }; + + meta = with stdenv.lib; { + description = "Official PostgreSQL ODBC Driver"; + homepage = https://odbc.postgresql.org/; + license = licenses.lgpl2; + platforms = platforms.linux; }; }; - ini = - "[PostgreSQL]\n" + - "Description = official PostgreSQL driver for Linux & Win32\n" + - "Driver = ${deriv}/lib/psqlodbcw.so\n" + - "Threading = 2\n"; - }; -# mysql connector - mysql = rec { - libraries = ["lib/libmyodbc3-3.51.12.so"]; - deriv = stdenv.mkDerivation { - name = "mysql-connector-odbc-3.51.12"; - src = fetchurl { - url = http://ftp.snt.utwente.nl/pub/software/mysql/Downloads/MyODBC3/mysql-connector-odbc-3.51.12.tar.gz; - md5 = "a484f590464fb823a8f821b2f1fd7fef"; - }; - configureFlags = "--disable-gui" - + " --with-mysql-path=${mysql.lib} --with-unixODBC=${unixODBC}"; - buildInputs = [ libtool zlib ]; - inherit mysql unixODBC; + + mariadb = stdenv.mkDerivation rec { + name = "mariadb-connector-odbc-${version}"; + version = "2.0.10"; + + src = fetchurl { + url = "https://downloads.mariadb.org/interstitial/connector-odbc-${version}/src/${name}-ga-src.tar.gz"; + sha256 = "0b6ximy0dg0xhqbrm1l7pn8hjapgpmddi67kh54h6i9cq9hqfdvz"; }; - ini = - "[MYSQL]\n" + - "Description = MySQL driver\n" + - "Driver = ${deriv}/lib/libmyodbc3-3.51.12.so\n" + - "CPTimeout = \n" + - "CPReuse = \n" + - "FileUsage = 3\n "; - }; - sqlite = rec { - deriv = let version = "0.995"; in - stdenv.mkDerivation { - name = "sqlite-connector-odbc-${version}"; - src = fetchurl { - url = "http://www.ch-werner.de/sqliteodbc/sqliteodbc-${version}.tar.gz"; - sha256 = "1r97fw6xy5w2f8c0ii7blfqfi6salvd3k8wnxpx9wqc1gxk8jnyy"; - }; + nativeBuildInputs = [ cmake ]; + buildInputs = [ unixODBC mariadb ]; - buildInputs = [ sqlite ]; + cmakeFlags = [ + "-DMARIADB_INCLUDE_DIR=${mariadb.lib}/include/mysql" + ]; - configureFlags = "--with-sqlite3=${sqlite} --with-odbc=${unixODBC}"; + preConfigure = '' + sed -i \ + -e 's,mariadb_config,mysql_config,g' \ + -e 's,libmariadbclient,libmysqlclient,g' \ + cmake/FindMariaDB.cmake + ''; - # move libraries to $out/lib where they're expected to be - postInstall = '' - mkdir -p "$out/lib" - mv "$out"/*.so "$out/lib" - mv "$out"/*.la "$out/lib" - ''; - - meta = { - description = "ODBC driver for SQLite"; - homepage = http://www.ch-werner.de/sqliteodbc; - license = stdenv.lib.licenses.bsd2; - platforms = stdenv.lib.platforms.linux; - maintainers = with stdenv.lib.maintainers; [ vlstill ]; - }; + passthru = { + fancyName = "MariaDB"; + driver = "lib/libmyodbc3-3.51.12.so"; }; - ini = - "[SQLite]\n" + - "Description = SQLite ODBC Driver\n" + - "Driver = ${deriv}/lib/libsqlite3odbc.so\n" + - "Setup = ${deriv}/lib/libsqlite3odbc.so\n" + - "Threading = 2\n"; - }; + + meta = with stdenv.lib; { + description = "MariaDB ODBC database driver"; + homepage = https://downloads.mariadb.org/connector-odbc/; + license = licenses.gpl2; + platforms = platforms.linux; + broken = true; + }; + }; + + mysql = stdenv.mkDerivation rec { + name = "mysql-connector-odbc-${version}"; + majorVersion = "5.3"; + version = "${majorVersion}.6"; + + src = fetchurl { + url = "https://dev.mysql.com/get/Downloads/Connector-ODBC/${majorVersion}/${name}-src.tar.gz"; + sha256 = "1smi4z49i4zm7cmykjkwlxxzqvn7myngsw5bc35z6gqxmi8c55xr"; + }; + + nativeBuildInputs = [ cmake ]; + buildInputs = [ unixODBC mysql55 ]; + + cmakeFlags = [ "-DWITH_UNIXODBC=1" ]; + + passthru = { + fancyName = "MySQL"; + driver = "lib/libmyodbc3-3.51.12.so"; + }; + + meta = with stdenv.lib; { + description = "MariaDB ODBC database driver"; + homepage = https://dev.mysql.com/downloads/connector/odbc/; + license = licenses.gpl2; + platforms = platforms.linux; + broken = true; + }; + }; + + sqlite = stdenv.mkDerivation rec { + name = "sqlite-connector-odbc-${version}"; + version = "0.9993"; + + src = fetchurl { + url = "http://www.ch-werner.de/sqliteodbc/sqliteodbc-${version}.tar.gz"; + sha256 = "0dgsj28sc7f7aprmdd0n5a1rmcx6pv7170c8dfjl0x1qsjxim6hs"; + }; + + buildInputs = [ unixODBC sqlite zlib libxml2 ]; + + configureFlags = [ "--with-odbc=${unixODBC}" ]; + + installTargets = [ "install-3" ]; + + # move libraries to $out/lib where they're expected to be + postInstall = '' + mkdir -p "$out/lib" + mv "$out"/*.* "$out/lib" + ''; + + passthru = { + fancyName = "SQLite"; + driver = "lib/libsqlite3odbc.so"; + }; + + meta = with stdenv.lib; { + description = "ODBC driver for SQLite"; + homepage = http://www.ch-werner.de/sqliteodbc; + license = licenses.bsd2; + platforms = platforms.linux; + maintainers = with maintainers; [ vlstill ]; + }; + }; } diff --git a/pkgs/development/python-modules/generic/default.nix b/pkgs/development/python-modules/generic/default.nix index 1fdbd4ffc0b..a90b66a3375 100644 --- a/pkgs/development/python-modules/generic/default.nix +++ b/pkgs/development/python-modules/generic/default.nix @@ -21,9 +21,6 @@ # https://github.com/pypa/pip/issues/881 , setupPyBuildFlags ? [] -# enable tests by default -, doCheck ? true - # DEPRECATED: use propagatedBuildInputs , pythonPath ? [] @@ -45,6 +42,8 @@ # Additional flags to pass to "pip install". , installFlags ? [] +, format ? "setup" + , ... } @ attrs: @@ -57,8 +56,53 @@ let # use setuptools shim (so that setuptools is imported before distutils) # pip does the same thing: https://github.com/pypa/pip/pull/3265 setuppy = ./run_setup.py; - # For backwards compatibility, let's use an alias - doInstallCheck = doCheck; + + formatspecific = + if format == "wheel" then + { + unpackPhase = '' + mkdir dist + cp $src dist/"''${src#*-}" + ''; + + # Wheels are pre-compiled + buildPhase = attrs.buildPhase or ":"; + installCheckPhase = attrs.checkPhase or ":"; + + # Wheels don't have any checks to run + doInstallCheck = attrs.doCheck or false; + } + else if format == "setup" then + { + # propagate python/setuptools to active setup-hook in nix-shell + propagatedBuildInputs = + propagatedBuildInputs ++ [ python setuptools ]; + + # we copy nix_run_setup.py over so it's executed relative to the root of the source + # many project make that assumption + buildPhase = attrs.buildPhase or '' + runHook preBuild + cp ${setuppy} nix_run_setup.py + ${python.interpreter} nix_run_setup.py ${lib.optionalString (setupPyBuildFlags != []) ("build_ext " + (lib.concatStringsSep " " setupPyBuildFlags))} bdist_wheel + runHook postBuild + ''; + + installCheckPhase = attrs.checkPhase or '' + runHook preCheck + ${python.interpreter} nix_run_setup.py test + runHook postCheck + ''; + + # Python packages that are installed with setuptools + # are typically distributed with tests. + # With Python it's a common idiom to run the tests + # after the software has been installed. + + # For backwards compatibility, let's use an alias + doInstallCheck = attrs.doCheck or true; + } + else + throw "Unsupported format ${format}"; in python.stdenv.mkDerivation (builtins.removeAttrs attrs ["disabled" "doCheck"] // { name = namePrefix + name; @@ -67,9 +111,6 @@ python.stdenv.mkDerivation (builtins.removeAttrs attrs ["disabled" "doCheck"] // ++ [ (ensureNewerSourcesHook { year = "1980"; }) ] ++ (lib.optional (lib.hasSuffix "zip" attrs.src.name or "") unzip); - # propagate python/setuptools to active setup-hook in nix-shell - propagatedBuildInputs = propagatedBuildInputs ++ [ python setuptools ]; - pythonPath = pythonPath; configurePhase = attrs.configurePhase or '' @@ -82,14 +123,8 @@ python.stdenv.mkDerivation (builtins.removeAttrs attrs ["disabled" "doCheck"] // runHook postConfigure ''; - # we copy nix_run_setup.py over so it's executed relative to the root of the source - # many project make that assumption - buildPhase = attrs.buildPhase or '' - runHook preBuild - cp ${setuppy} nix_run_setup.py - ${python.interpreter} nix_run_setup.py ${lib.optionalString (setupPyBuildFlags != []) ("build_ext " + (lib.concatStringsSep " " setupPyBuildFlags))} bdist_wheel - runHook postBuild - ''; + # Python packages don't have a checkPhase, only an installCheckPhase + doCheck = false; installPhase = attrs.installPhase or '' runHook preInstall @@ -104,16 +139,6 @@ python.stdenv.mkDerivation (builtins.removeAttrs attrs ["disabled" "doCheck"] // runHook postInstall ''; - # We run all tests after software has been installed since that is - # a common idiom in Python - doInstallCheck = doInstallCheck; - - installCheckPhase = attrs.checkPhase or '' - runHook preCheck - ${python.interpreter} nix_run_setup.py test - runHook postCheck - ''; - postFixup = attrs.postFixup or '' wrapPythonPrograms @@ -143,4 +168,4 @@ python.stdenv.mkDerivation (builtins.removeAttrs attrs ["disabled" "doCheck"] // # a marker for release utilities to discover python packages isBuildPythonPackage = python.meta.platforms; }; -}) +} // formatspecific) diff --git a/pkgs/development/tools/libsigrok/default.nix b/pkgs/development/tools/libsigrok/default.nix index 5be4f4a27ab..7671bf18063 100644 --- a/pkgs/development/tools/libsigrok/default.nix +++ b/pkgs/development/tools/libsigrok/default.nix @@ -1,22 +1,24 @@ { stdenv, fetchurl, pkgconfig, libzip, glib, libusb1, libftdi, check -, libserialport, librevisa +, libserialport, librevisa, doxygen, glibmm, python +, version ? "0.4.0", sha256 ? "17k63p3yhpx9qbfprgayphqqhn2hdrcph73g6fqxmrinxqziyaaz" }: stdenv.mkDerivation rec { - name = "libsigrok-0.3.0"; + inherit version; + name = "libsigrok-${version}"; src = fetchurl { url = "http://sigrok.org/download/source/libsigrok/${name}.tar.gz"; - sha256 = "0l3h7zvn3w4c1b9dgvl3hirc4aj1csfkgbk87jkpl7bgl03nk4j3"; + inherit sha256; }; firmware = fetchurl { - url = "http://sigrok.org/download/binary/sigrok-firmware-fx2lafw/sigrok-firmware-fx2lafw-bin-0.1.2.tar.gz"; - sha256 = "0w0w6l015d16181mx8mgyjha4bv3ba7x36p86k9n1x52809433gj"; + url = "http://sigrok.org/download/binary/sigrok-firmware-fx2lafw/sigrok-firmware-fx2lafw-bin-0.1.3.tar.gz"; + sha256 = "1qr02ny97navqxr56xq1a227yzf6h09m8jlvc9bnjl0bsk6887bl"; }; buildInputs = [ pkgconfig libzip glib libusb1 libftdi check libserialport - librevisa + librevisa doxygen glibmm python ]; postInstall = '' diff --git a/pkgs/development/tools/libsigrokdecode/default.nix b/pkgs/development/tools/libsigrokdecode/default.nix index 87ecd637b4e..706b9bde327 100644 --- a/pkgs/development/tools/libsigrokdecode/default.nix +++ b/pkgs/development/tools/libsigrokdecode/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, pkgconfig, glib, python3, libsigrok, check }: stdenv.mkDerivation rec { - name = "libsigrokdecode-0.3.0"; + name = "libsigrokdecode-0.4.0"; src = fetchurl { url = "http://sigrok.org/download/source/libsigrokdecode/${name}.tar.gz"; - sha256 = "13s7ss52dqj7fccjgrkx10zkj41ygxn8ml1l0bs1vgczz4fvnkpf"; + sha256 = "0drmxjc2xavccjl2i6vcjipijrn7459nv8cpmm788pi4fcdrszpx"; }; buildInputs = [ pkgconfig glib python3 libsigrok check ]; diff --git a/pkgs/development/tools/misc/autogen/default.nix b/pkgs/development/tools/misc/autogen/default.nix index d2ddcabc0b1..8170fc46f34 100644 --- a/pkgs/development/tools/misc/autogen/default.nix +++ b/pkgs/development/tools/misc/autogen/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "autogen-${version}"; - version = "5.18.6"; + version = "5.18.7"; src = fetchurl { - url = "mirror://gnu/autogen/rel${version}/autogen-${version}.tar.xz"; - sha256 = "0sfmmy19k9z0j3f738fyk6ljf6b66410cvd5zzyplxi2683j10qs"; + url = "mirror://gnu/autogen/autogen-${version}.tar.xz"; + sha256 = "01d4m8ckww12sy50vgyxlnz83z9dxqpyqp153cscncc9w6jq19d7"; }; outputs = [ "dev" "bin" "lib" "out" "man" "info" ]; diff --git a/pkgs/development/tools/misc/d-feet/default.nix b/pkgs/development/tools/misc/d-feet/default.nix index e1a3a8223f2..783607860de 100644 --- a/pkgs/development/tools/misc/d-feet/default.nix +++ b/pkgs/development/tools/misc/d-feet/default.nix @@ -2,7 +2,7 @@ , pep8, python, makeWrapper, gnome3, pygobject3, libwnck3 }: let - version = "${major}.10"; + version = "${major}.11"; major = "0.3"; in @@ -11,7 +11,7 @@ stdenv.mkDerivation rec { src = fetchurl { url = "mirror://gnome/sources/d-feet/${major}/d-feet-${version}.tar.xz"; - sha256 = "88f0df5fcb862387ff3d1793873c5eb368c3e4db0bbd82ea65f748cbf70a6359"; + sha256 = "a3dc940c66f84b996c328531e3034d475ec690d7ff639445ff7ca746aa8cb9c2"; }; buildInputs = [ diff --git a/pkgs/development/tools/misc/usb-modeswitch/data.nix b/pkgs/development/tools/misc/usb-modeswitch/data.nix new file mode 100644 index 00000000000..91b343b20b4 --- /dev/null +++ b/pkgs/development/tools/misc/usb-modeswitch/data.nix @@ -0,0 +1,29 @@ +{ stdenv, fetchurl, pkgconfig, libusb1, usb-modeswitch }: + +let + version = "20160112"; +in + +stdenv.mkDerivation rec { + name = "usb-modeswitch-data-${version}"; + + src = fetchurl { + url = "http://www.draisberghof.de/usb_modeswitch/${name}.tar.bz2"; + sha256 = "19yzqv0592b9mwgdi7apzw881q70ajyx5d56zr1z5ldi915a8yfn"; + }; + + # make clean: we always build from source. It should be necessary on x86_64 only + prePatch = '' + sed -i 's@usb_modeswitch@${usb-modeswitch}/bin/usb_modeswitch@g' 40-usb_modeswitch.rules + sed -i "1 i\DESTDIR=$out" Makefile + ''; + + buildInputs = [ pkgconfig libusb1 usb-modeswitch ]; + + meta = { + description = "device database and the rules file for 'multi-mode' USB devices"; + license = stdenv.lib.licenses.gpl2; + maintainers = [ stdenv.lib.maintainers.marcweber ]; + platforms = stdenv.lib.platforms.linux; + }; +} diff --git a/pkgs/development/tools/misc/usb-modeswitch/default.nix b/pkgs/development/tools/misc/usb-modeswitch/default.nix index cc28b011829..9aad2edfa4e 100644 --- a/pkgs/development/tools/misc/usb-modeswitch/default.nix +++ b/pkgs/development/tools/misc/usb-modeswitch/default.nix @@ -1,7 +1,7 @@ { stdenv, fetchurl, pkgconfig, libusb1 }: let - version = "2.2.1"; + version = "2.3.0"; in stdenv.mkDerivation rec { @@ -23,6 +23,7 @@ stdenv.mkDerivation rec { buildInputs = [ pkgconfig libusb1 ]; meta = { + description = "a mode switching tool for controlling 'multi-mode' USB devices"; license = stdenv.lib.licenses.gpl2; maintainers = [ stdenv.lib.maintainers.marcweber ]; platforms = stdenv.lib.platforms.linux; diff --git a/pkgs/development/tools/scalafmt/default.nix b/pkgs/development/tools/scalafmt/default.nix new file mode 100644 index 00000000000..b909c646555 --- /dev/null +++ b/pkgs/development/tools/scalafmt/default.nix @@ -0,0 +1,36 @@ +{ stdenv, fetchurl, unzip, jre }: + +stdenv.mkDerivation rec { + version = "0.2.3"; + baseName = "scalafmt"; + name = "${baseName}-${version}"; + + src = fetchurl { + url = "https://github.com/olafurpg/scalafmt/releases/download/v${version}/${baseName}.tar.gz"; + sha256 = "0klzm86771wl6d8cq5cf4a4mfz8idcis6wrg0x2ix5rcc5zi0d4d"; + }; + + unpackPhase = "tar xvzf $src"; + + installPhase = '' + mkdir -p "$out/bin" + mkdir -p "$out/lib" + + cp cli/target/scala-2.11/scalafmt.jar "$out/lib/${name}.jar" + + cat > "$out/bin/${baseName}" << EOF + #!${stdenv.shell} + exec ${jre}/bin/java -jar "$out/lib/${name}.jar" "\$@" + EOF + + chmod a+x "$out/bin/${baseName}" + ''; + + meta = with stdenv.lib; { + description = "Opinionated code formatter for Scala"; + homepage = http://scalafmt.org; + license = licenses.asl20; + platforms = platforms.linux; + maintainers = [ maintainers.markus1189 ]; + }; +} diff --git a/pkgs/development/tools/sigrok-cli/default.nix b/pkgs/development/tools/sigrok-cli/default.nix index b2e6dea09e6..7ea394039b9 100644 --- a/pkgs/development/tools/sigrok-cli/default.nix +++ b/pkgs/development/tools/sigrok-cli/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, pkgconfig, glib, libsigrok, libsigrokdecode }: stdenv.mkDerivation rec { - name = "sigrok-cli-0.5.0"; + name = "sigrok-cli-0.6.0"; src = fetchurl { url = "http://sigrok.org/download/source/sigrok-cli/${name}.tar.gz"; - sha256 = "0g3jzspq9iwz2szzxil9ilim1and85qd605f4jbc04sva80hb8vk"; + sha256 = "0g3jhi7azm256gnryka70wn7j3af42yk19c9kbhqffaz4i7dwbmb"; }; buildInputs = [ pkgconfig glib libsigrok libsigrokdecode ]; diff --git a/pkgs/development/web/nodejs/v6.nix b/pkgs/development/web/nodejs/v6.nix index ffb25f0ed59..d331686e437 100644 --- a/pkgs/development/web/nodejs/v6.nix +++ b/pkgs/development/web/nodejs/v6.nix @@ -4,9 +4,9 @@ }@args: import ./nodejs.nix (args // rec { - version = "6.0.0"; + version = "6.1.0"; src = fetchurl { url = "https://nodejs.org/download/release/v${version}/node-v${version}.tar.gz"; - sha256 = "0cpw7ng193jgfbw2g1fd0kcglmjjkbj4xb89g00z8zz0lj0nvdbd"; + sha256 = "1hsbmr3yc6zmyhz058zfxg77dzjhk94g1k0y65p6xq8ihq5yyrwy"; }; }) diff --git a/pkgs/games/liberal-crime-squad/default.nix b/pkgs/games/liberal-crime-squad/default.nix index 434f72d62f0..799b7ab43e7 100644 --- a/pkgs/games/liberal-crime-squad/default.nix +++ b/pkgs/games/liberal-crime-squad/default.nix @@ -1,20 +1,17 @@ -{ fetchFromGitHub, stdenv, ncurses, autoconf, automake , SDL2, SDL2_mixer }: +{ fetchFromGitHub, stdenv, ncurses, autoreconfHook, SDL2, SDL2_mixer }: stdenv.mkDerivation rec { - version = "2016-03-03"; + version = "2016-05-08"; name = "liberal-crime-squad-${version}"; + src = fetchFromGitHub { owner = "Kamal-Sadek"; repo = "Liberal-Crime-Squad"; - rev = "39c5f167e902e33cb37b152215d67f71b9ae8269"; - sha256 = "18s2w2570fd79y9rb7ikxls1qw29l1lbwk9n2dxxqjslbzrbvv31"; + rev = "127d712"; + sha256 = "1n16rmi2gm2mcnpp0ms1whj0nzcbfw52dnd90l52w4d1g4kqf1ck"; }; - preConfigure = '' - ./bootstrap - ''; - - buildInputs = [ ncurses autoconf automake SDL2 SDL2_mixer ]; + buildInputs = [ ncurses autoreconfHook SDL2 SDL2_mixer ]; meta = with stdenv.lib; { description = "A humorous politically themed ncurses game"; @@ -22,7 +19,8 @@ stdenv.mkDerivation rec { Welcome to Liberal Crime Squad! The Conservatives have taken the Executive, Legislative, and Judicial branches of government. Over time, the Liberal laws of this nation will erode and turn the country into a BACKWOODS YET CORPORATE NIGHTMARE. To prevent this from happening, the Liberal Crime Squad was established. The mood of the country is shifting, and we need to turn things around. Go out on the streets and indoctrinate Conservative automatons. That is, let them see their True Liberal Nature. Then arm them and send them forth to Stop Evil. ''; homepage = https://github.com/Kamal-Sadek/Liberal-Crime-Squad; + maintainers = [ maintainers.rardiol ]; license = licenses.gpl2; - platforms = platforms.linux; + platforms = platforms.all; }; } diff --git a/pkgs/games/openra/default.nix b/pkgs/games/openra/default.nix index de4858e70c7..f805030aa92 100644 --- a/pkgs/games/openra/default.nix +++ b/pkgs/games/openra/default.nix @@ -4,7 +4,7 @@ }: let - version = "20151224"; + version = "20160508"; in stdenv.mkDerivation rec { name = "openra-${version}"; @@ -19,17 +19,18 @@ in stdenv.mkDerivation rec { src = fetchurl { name = "${name}.tar.gz"; url = "https://github.com/OpenRA/OpenRA/archive/release-${version}.tar.gz"; - sha256 = "0dgaxy1my5r3sr3l3gw79v89dsc7179pasj2bibswlv03wsjgqbi"; + sha256 = "1vr5bvdkh0n5569ga2h7ggj43vnzr37hfqkfnsis1sg4vgwrnzr7"; }; dontStrip = true; buildInputs = with dotnetPackages; - [ NUnit NewtonsoftJson MonoNat FuzzyLogicLibrary SmartIrc4net SharpZipLib MaxMindGeoIP2 MaxMindDb SharpFont StyleCopMSBuild StyleCopPlusMSBuild RestSharp ] + [ NUnit3 NewtonsoftJson MonoNat FuzzyLogicLibrary SmartIrc4net SharpZipLib MaxMindGeoIP2 MaxMindDb SharpFont StyleCopMSBuild StyleCopPlusMSBuild RestSharp NUnitConsole ] ++ [ lua gnome3.zenity ]; nativeBuildInputs = [ mono makeWrapper lua pkgconfig ]; patchPhase = '' + mkdir Support sed -i 's/^VERSION.*/VERSION = release-${version}/g' Makefile substituteInPlace thirdparty/configure-native-deps.sh --replace "locations=\"" "locations=\"${lua}/lib " substituteInPlace Makefile --replace "@./thirdparty/fetch-geoip-db.sh" "" @@ -53,37 +54,57 @@ in stdenv.mkDerivation rec { "${StyleCopPlusMSBuild}/lib/dotnet/StyleCopPlus.MSBuild/StyleCopPlus.dll" "${RestSharp}/lib/dotnet/RestSharp/net4-client/RestSharp.dll" "${NUnit}/lib/dotnet/NUnit/nunit.framework.*" + "${NUnitConsole}/lib/dotnet/NUnit.Console/*" "${NewtonsoftJson}/lib/dotnet/Newtonsoft.Json/Newtonsoft.Json.dll" ]; movePackages = [ ( let filename = "Eluant.dll"; in { origin = fetchurl { - url = "https://github.com/OpenRA/Eluant/releases/download/20140425/${filename}"; + url = "https://github.com/OpenRA/Eluant/releases/download/20160124/${filename}"; sha256 = "1c20whz7dzfhg3szd62rvb79745x5iwrd5pp62j3bbj1q9wpddmb"; }; target = filename; }) ( let filename = "SDL2-CS.dll"; in { origin = fetchurl { - url = "https://github.com/OpenRA/SDL2-CS/releases/download/20150709/${filename}"; - sha256 = "0ms75w9w0x3dzpg5g1ym5nb1id7pmagbzqx0am7h8fq4m0cqddmc"; + url = "https://github.com/OpenRA/SDL2-CS/releases/download/20151227/${filename}"; + sha256 = "0gqw2wg37cqhhlc2a9lfc4ndkyfi4m8bkv7ckxbawgydjlknq83n"; + }; target = filename; }) + + ( let filename = "SDL2-CS.dll.config"; in { origin = fetchurl { + url = "https://github.com/OpenRA/SDL2-CS/releases/download/20151227/${filename}"; + sha256 = "15709iscdg44wd33szw5y0fdxwvqfjw8v3xjq6a0mm46gr7mkw7g"; + }; target = filename; }) + + ( let filename = "OpenAL-CS.dll"; in { origin = fetchurl { + url = "https://github.com/OpenRA/OpenAL-CS/releases/download/20151227/${filename}"; + sha256 = "0lvyjkn7fqys97wym8rwlcp6ay2z059iabfvlcxhlrscjpyr2cyk"; + }; target = filename; }) + + ( let filename = "OpenAL-CS.dll.config"; in { origin = fetchurl { + url = "https://github.com/OpenRA/OpenAL-CS/releases/download/20151227/${filename}"; + sha256 = "0wcmk3dw26s93598ck5jism5609v0y233i0f1b76yilyfimg9sjq"; }; target = filename; }) ( let filename = "GeoLite2-Country.mmdb.gz"; in { origin = fetchurl { url = "http://geolite.maxmind.com/download/geoip/database/${filename}"; - sha256 = "0lr978pipk5q2z3x011ps4fx5nfc3hsal7jb77fc60aa6iscr05m"; + sha256 = "0a82v0sj4zf5vigrn1pd6mnbqz6zl3rgk9nidqqzy836as2kxk9v"; }; target = filename; }) ]; in '' mkdir thirdparty/download/ - ${stdenv.lib.concatMapStringsSep "\n" (from: "cp ${from} thirdparty/download") dotnetPackagesDlls} + ${stdenv.lib.concatMapStringsSep "\n" (from: "cp -r ${from} thirdparty/download") dotnetPackagesDlls} ${stdenv.lib.concatMapStringsSep "\n" ({origin, target}: "cp ${origin} thirdparty/download/${target}") movePackages} make dependencies ''; - #todo: man-page - buildFlags = [ "DEBUG=false" "default" ]; + buildFlags = [ "DEBUG=false" "default" "man-page" ]; - installTargets = [ "install" "install-linux-icons" "install-linux-desktop" "install-linux-appdata" "install-linux-mime" ]; + doCheck = true; + + #TODO: check + checkTarget = "nunit test"; + + installTargets = [ "install" "install-linux-icons" "install-linux-desktop" "install-linux-appdata" "install-linux-mime" "install-man-page" ]; postInstall = with stdenv.lib; let runtime = makeLibraryPath [ SDL2 freetype openal systemd lua ]; diff --git a/pkgs/games/tome4/default.nix b/pkgs/games/tome4/default.nix index 8ad0f7723c0..3123d81af16 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.3"; + version = "1.4.6"; name = "tome4-${version}"; src = fetchurl { url = "http://te4.org/dl/t-engine/t-engine4-src-${version}.tar.bz2"; - sha256 = "d4c6d6aa0cb73b28172cebf89e4271b0a51c6e7dea744ce9c6d6042dd076e9cd"; + sha256 = "12pi2lw1k6l3p209nnkh4nfv3ppp8kpd6mkh1324c81z6mh6w4wg"; }; buildInputs = [ mesa_glu openal libvorbis SDL2 SDL2_ttf SDL2_image premake4 ]; preConfigure = '' diff --git a/pkgs/misc/ghostscript/default.nix b/pkgs/misc/ghostscript/default.nix index 93e83a375a4..3d51a900c3b 100644 --- a/pkgs/misc/ghostscript/default.nix +++ b/pkgs/misc/ghostscript/default.nix @@ -37,7 +37,7 @@ stdenv.mkDerivation rec { name = "ghostscript-${version}"; src = fetchurl { - url = "http://downloads.ghostscript.com/public/${name}.tar.bz2"; + url = "https://github.com/ArtifexSoftware/ghostpdl-downloads/releases/download/gs918/${name}.tar.bz2"; inherit sha256; }; diff --git a/pkgs/os-specific/linux/cpupower/default.nix b/pkgs/os-specific/linux/cpupower/default.nix index 269729917dd..d6d529627e2 100644 --- a/pkgs/os-specific/linux/cpupower/default.nix +++ b/pkgs/os-specific/linux/cpupower/default.nix @@ -35,7 +35,7 @@ stdenv.mkDerivation { meta = with stdenv.lib; { description = "Tool to examine and tune power saving features"; - homepage = https://www.kernel.org.org/; + homepage = https://www.kernel.org/; license = licenses.gpl2; platforms = platforms.linux; }; diff --git a/pkgs/os-specific/linux/kernel/linux-4.4.nix b/pkgs/os-specific/linux/kernel/linux-4.4.nix index ab41e369b6a..bd7c7f636f8 100644 --- a/pkgs/os-specific/linux/kernel/linux-4.4.nix +++ b/pkgs/os-specific/linux/kernel/linux-4.4.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, perl, buildLinux, ... } @ args: import ./generic.nix (args // rec { - version = "4.4.9"; + version = "4.4.10"; extraMeta.branch = "4.4"; src = fetchurl { url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; - sha256 = "1fgkcl1dgljb4s8ciwc4gpz5g92cf6x31rj7016bd6r0hmvcl1bn"; + sha256 = "1kpjvvd9q9wwr3314q5ymvxii4dv2d27295bzly225wlc552xhja"; }; kernelPatches = args.kernelPatches; diff --git a/pkgs/os-specific/linux/kernel/patches.nix b/pkgs/os-specific/linux/kernel/patches.nix index c22ef98249c..213d8e73dbe 100644 --- a/pkgs/os-specific/linux/kernel/patches.nix +++ b/pkgs/os-specific/linux/kernel/patches.nix @@ -106,8 +106,8 @@ rec { { kernel = pkgs.grsecurity_base_linux_4_5; patches = [ grsecurity_fix_path_4_5 ]; kversion = "4.5.3"; - revision = "201605060852"; - sha256 = "1yg5fp60nay2cvnpxnx29995wk04r995y9030dwkgk3xpxifr6z1"; + revision = "201605080858"; + sha256 = "0m6x45n9ayn4022r64dx7lxfxg3s632hlrr0260ac9gc0abyk06j"; }; grsecurity_latest = grsecurity_4_5; diff --git a/pkgs/os-specific/linux/systemd/default.nix b/pkgs/os-specific/linux/systemd/default.nix index 0f066e380c1..d6a928cd0cf 100644 --- a/pkgs/os-specific/linux/systemd/default.nix +++ b/pkgs/os-specific/linux/systemd/default.nix @@ -1,7 +1,7 @@ { stdenv, fetchFromGitHub, pkgconfig, intltool, gperf, libcap, kmod , zlib, xz, pam, acl, cryptsetup, libuuid, m4, utillinux, libffi , glib, kbd, libxslt, coreutils, libgcrypt, libgpgerror, libapparmor, audit, lz4 -, kexectools, libmicrohttpd, linuxHeaders, libseccomp +, kexectools, libmicrohttpd, linuxHeaders, libseccomp, iptables , autoreconfHook, gettext, docbook_xsl, docbook_xml_dtd_42, docbook_xml_dtd_45 , enableKDbus ? false }: @@ -33,6 +33,7 @@ stdenv.mkDerivation rec { [ linuxHeaders pkgconfig intltool gperf libcap kmod xz pam acl /* cryptsetup */ libuuid m4 glib libxslt libgcrypt libgpgerror libmicrohttpd kexectools libseccomp libffi audit lz4 libapparmor + iptables /* FIXME: we may be able to prevent the following dependencies by generating an autoconf'd tarball, but that's probably not worth it. */ diff --git a/pkgs/servers/squid/default.nix b/pkgs/servers/squid/default.nix index 4865b839ae4..e518d063dd4 100644 --- a/pkgs/servers/squid/default.nix +++ b/pkgs/servers/squid/default.nix @@ -1,10 +1,10 @@ { fetchurl, stdenv, perl, lib, openldap, pam, db, cyrus_sasl, libcap, expat, libxml2, libtool, openssl}: stdenv.mkDerivation rec { - name = "squid-3.5.17"; + name = "squid-3.5.19"; src = fetchurl { url = "http://www.squid-cache.org/Versions/v3/3.5/${name}.tar.bz2"; - sha256 = "1kdq778cm18ak4624gchmbi8avnzyvwgyzjplkd0fkcrgfs44bsf"; + sha256 = "1iy2r7r12xv0q9414rczbqbbggyyxgdmg21bynpygwkgalaz1dxx"; }; buildInputs = [perl openldap pam db cyrus_sasl libcap expat libxml2 libtool openssl]; diff --git a/pkgs/shells/xonsh/default.nix b/pkgs/shells/xonsh/default.nix index 4aa65a7d8bd..5af78c27266 100644 --- a/pkgs/shells/xonsh/default.nix +++ b/pkgs/shells/xonsh/default.nix @@ -1,8 +1,8 @@ -{stdenv, fetchFromGitHub, python3Packages}: +{stdenv, fetchurl, python3Packages}: python3Packages.buildPythonApplication rec { name = "xonsh-${version}"; - version = "0.1.3"; + version = "0.2.7"; # The logo xonsh prints during build contains unicode characters, and this # fails because locales have not been set up in the build environment. @@ -16,11 +16,9 @@ python3Packages.buildPythonApplication rec { propagatedBuildInputs = [ python3Packages.ply ]; - src = fetchFromGitHub { - owner = "scopatz"; - repo = "xonsh"; - rev = version; - sha256 = "04qnjqpz5y38g22irpph13j2a4hy7mk9pqvqz1mfimaf8zgmyh1n"; + src = fetchurl { + url = "mirror://pypi/x/xonsh/${name}.tar.gz"; + sha256= "10pglgmzj6l0l8mb3r2rxnbigqigcqn9njcgdcrg7s1b409cq4md"; }; meta = with stdenv.lib; { diff --git a/pkgs/tools/admin/letsencrypt/default.nix b/pkgs/tools/admin/letsencrypt/default.nix index be314a56731..ce5221e6d18 100644 --- a/pkgs/tools/admin/letsencrypt/default.nix +++ b/pkgs/tools/admin/letsencrypt/default.nix @@ -2,13 +2,13 @@ pythonPackages.buildPythonApplication rec { name = "letsencrypt-${version}"; - version = "0.4.0"; + version = "0.5.0"; src = fetchFromGitHub { - owner = "letsencrypt"; - repo = "letsencrypt"; + owner = "certbot"; + repo = "certbot"; rev = "v${version}"; - sha256 = "0r2wis48w5nailzp2d5brkh2f40al6sbz816xx0akh3ll0rl1hbv"; + sha256 = "0x098cdyfgqvh7x5d3sz56qjpjyg5b4fl82086sm43d8mbz0h5rm"; }; propagatedBuildInputs = with pythonPackages; [ @@ -26,7 +26,7 @@ pythonPackages.buildPythonApplication rec { zope_component zope_interface ]; - buildInputs = with pythonPackages; [ nose dialog ]; + buildInputs = [ dialog ] ++ (with pythonPackages; [ nose mock gnureadline ]); patchPhase = '' substituteInPlace letsencrypt/notify.py --replace "/usr/sbin/sendmail" "/var/setuid-wrappers/sendmail" @@ -41,7 +41,7 @@ pythonPackages.buildPythonApplication rec { ''; meta = with stdenv.lib; { - homepage = https://github.com/letsencrypt/letsencrypt; + homepage = src.meta.homepage; description = "ACME client that can obtain certs and extensibly update server configurations"; platforms = platforms.unix; maintainers = [ maintainers.iElectric ]; diff --git a/pkgs/tools/admin/simp_le/default.nix b/pkgs/tools/admin/simp_le/default.nix index 78ae1953ad7..fdb531736d0 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.buildPythonApplication rec { - name = "simp_le-2016-02-06"; + name = "simp_le-2016-04-17"; src = fetchFromGitHub { owner = "kuba"; repo = "simp_le"; - rev = "8f258bc098a84b7a20c2732536d0740244d814f7"; - sha256 = "1r2c31bhj91n3cjyf01spx52vkqxi5475zzkc9s1aliy3fs3lc4r"; + rev = "3a103b76f933f9aef782a47401dd2eff5057a6f7"; + sha256 = "0x8gqazn09m30bn1l7xnf8snhbb7yz7sb09imciqmm4jqdvn797z"; }; - propagatedBuildInputs = with pythonPackages; [ acme_0_1 ]; + propagatedBuildInputs = with pythonPackages; [ acme ]; meta = with stdenv.lib; { inherit (src.meta) homepage; diff --git a/pkgs/tools/archivers/pxattr/default.nix b/pkgs/tools/archivers/pxattr/default.nix new file mode 100644 index 00000000000..a72b067e9aa --- /dev/null +++ b/pkgs/tools/archivers/pxattr/default.nix @@ -0,0 +1,24 @@ +{ stdenv, fetchurl, gcc }: + +stdenv.mkDerivation rec { + name = "pxattr-2.1.0"; + + src = fetchurl { + url = "http://www.lesbonscomptes.com/pxattr/pxattr-2.1.0.tar.gz"; + sha256 = "1dwcqc5z7gzma1zhis2md49bj2nq7m6jimh4zlx9szw6svisz56z"; + }; + + buildInputs = [ gcc ]; + + installPhase = '' + mkdir -p $out/bin + cp pxattr $out/bin + ''; + + meta = { + homepage = http://www.lesbonscomptes.com/pxattr/index.html; + description = "Provides a single interface to extended file attributes"; + maintainers = [ stdenv.lib.maintainers.vrthra ]; + license = [ stdenv.lib.licenses.mit ]; + }; +} diff --git a/pkgs/tools/filesystems/dosfstools/default.nix b/pkgs/tools/filesystems/dosfstools/default.nix index 76df4f41257..c2691491ba3 100644 --- a/pkgs/tools/filesystems/dosfstools/default.nix +++ b/pkgs/tools/filesystems/dosfstools/default.nix @@ -1,22 +1,21 @@ -{ stdenv, fetchFromGitHub }: +{ stdenv, fetchurl }: stdenv.mkDerivation rec { name = "dosfstools-${version}"; - version = "3.0.28"; + version = "4.0"; - src = fetchFromGitHub { - owner = "dosfstools"; - repo = "dosfstools"; - rev = "v${version}"; - sha256 = "0lqirpxcn8ml0anq8aqmaljfsji9h6mdzz0jrs0yqqfhgg90bkg2"; + src = fetchurl { + sha256 = "1bvxbv1w6vhbx0nx7ygp700wq5k2hjv0hm7w0kz1x7amaf4p6dwh"; + url = "https://github.com/dosfstools/dosfstools/releases/download/v${version}/${name}.tar.xz"; }; - makeFlags = "PREFIX=$(out)"; + configureFlags = [ "--enable-compat-symlinks" ]; - meta = { + meta = with stdenv.lib; { description = "Utilities for creating and checking FAT and VFAT file systems"; - repositories.git = git://daniel-baumann.ch/git/software/dosfstools.git; homepage = http://www.daniel-baumann.ch/software/dosfstools/; - platforms = stdenv.lib.platforms.linux; + license = licenses.gpl3Plus; + platforms = platforms.linux; + maintainers = with maintainers; [ nckx ]; }; } diff --git a/pkgs/tools/misc/lesspipe/default.nix b/pkgs/tools/misc/lesspipe/default.nix new file mode 100644 index 00000000000..46324f912c5 --- /dev/null +++ b/pkgs/tools/misc/lesspipe/default.nix @@ -0,0 +1,35 @@ +{ stdenv, fetchFromGitHub, perl }: + +stdenv.mkDerivation rec { + name = "lesspipe-${version}"; + version = "1.82"; + + buildInputs = [ perl ]; + preConfigure = "patchShebangs ."; + + src = fetchFromGitHub { + owner = "wofr06"; + repo = "lesspipe"; + rev = version; + sha256 = "0vb7bpap8vy003ha10hc7hxl17y47sgdnrjpihgqxkn8k0bfqbbq"; + }; + + meta = with stdenv.lib; { + description = "A preprocessor for less"; + longDescription = '' + Usually lesspipe.sh is called as an input filter to less. With the help + of that filter less will display the uncompressed contents of compressed + (gzip, bzip2, compress, rar, 7-zip, lzip, xz or lzma) files. For files + containing archives and directories, a table of contents will be + displayed (e.g tar, ar, rar, jar, rpm and deb formats). Other supported + formats include nroff, pdf, ps, dvi, shared library, MS word, OASIS + (e.g. Openoffice), NetCDF, html, mp3, jpg, png, iso images, MacOSX bom, + plist and archive formats, perl storable data and gpg encrypted files. + This does require additional helper programs being installed. + ''; + homepage = https://github.com/wofr06/lesspipe; + platforms = platforms.all; + license = licenses.gpl2; + maintainers = [ maintainers.martijnvermaat ]; + }; +} diff --git a/pkgs/tools/misc/moreutils/default.nix b/pkgs/tools/misc/moreutils/default.nix index 759847b897a..d7e529dea9e 100644 --- a/pkgs/tools/misc/moreutils/default.nix +++ b/pkgs/tools/misc/moreutils/default.nix @@ -26,5 +26,6 @@ stdenv.mkDerivation rec { description = "Growing collection of the unix tools that nobody thought to write long ago when unix was young"; homepage = https://joeyh.name/code/moreutils/; maintainers = with maintainers; [ koral ]; + platforms = platforms.all; }; } diff --git a/pkgs/tools/misc/svtplay-dl/default.nix b/pkgs/tools/misc/svtplay-dl/default.nix index f8c087aa757..7848abcf14d 100644 --- a/pkgs/tools/misc/svtplay-dl/default.nix +++ b/pkgs/tools/misc/svtplay-dl/default.nix @@ -3,13 +3,13 @@ stdenv.mkDerivation rec { name = "svtplay-dl-${version}"; - version = "1.0"; + version = "1.1"; src = fetchFromGitHub { owner = "spaam"; repo = "svtplay-dl"; rev = version; - sha256 = "0chvljmhj7waq3dfyciiyk3i18hmrczc70qfyhn2ycq0k0nbn0jj"; + sha256 = "0wzh86zjly2r03qpjb5z0ddy79qkbw7k04qfawj22nf2w629r0dk"; }; pythonPaths = [ pycrypto requests2 ]; diff --git a/pkgs/tools/misc/yubikey-personalization/default.nix b/pkgs/tools/misc/yubikey-personalization/default.nix index 1562b9e69b8..8b8b5074fc3 100644 --- a/pkgs/tools/misc/yubikey-personalization/default.nix +++ b/pkgs/tools/misc/yubikey-personalization/default.nix @@ -16,9 +16,11 @@ stdenv.mkDerivation rec { "--with-backend=libusb-1.0" ]; + doCheck = true; + postInstall = '' - mkdir -p $out/lib/udev/rules.d/ - cp -v *.rules $out/lib/udev/rules.d/ + # Don't use 70-yubikey.rules because it depends on ConsoleKit + install -D -t $out/lib/udev/rules.d 69-yubikey.rules ''; meta = with stdenv.lib; { diff --git a/pkgs/tools/misc/zsh-navigation-tools/default.nix b/pkgs/tools/misc/zsh-navigation-tools/default.nix index afa29b616e7..797b6c74f38 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 = "2.0.7"; + version = "2.1.6"; src = fetchFromGitHub { owner = "psprint"; repo = "zsh-navigation-tools"; rev = "v${version}"; - sha256 = "0rfab3maha366dgvcmiqj6049wk5fynns1ygbgy4gnvavx2acvg2"; + sha256 = "1q0232hg64walnxcfdb5d1qjfg0pdr1781k7q5rwwm8ka0xalzcd"; }; dontBuild = true; diff --git a/pkgs/tools/networking/imapsync/default.nix b/pkgs/tools/networking/imapsync/default.nix index d6ac630b122..d01e0ededb3 100644 --- a/pkgs/tools/networking/imapsync/default.nix +++ b/pkgs/tools/networking/imapsync/default.nix @@ -18,7 +18,10 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ makeWrapper ]; buildInputs = with perlPackages; [ perl openssl MailIMAPClient TermReadKey - IOSocketSSL DigestHMAC URI FileCopyRecursive IOTee UnicodeString ]; + IOSocketSSL DigestHMAC URI FileCopyRecursive IOTee UnicodeString + DataUniqid JSONWebToken TestMockGuard LWP CryptOpenSSLRSA + LWPProtocolHttps + ]; meta = with stdenv.lib; { homepage = http://www.linux-france.org/prj/imapsync/; diff --git a/pkgs/tools/networking/ntopng/default.nix b/pkgs/tools/networking/ntopng/default.nix index c17c33af17e..d1a90d9d1aa 100644 --- a/pkgs/tools/networking/ntopng/default.nix +++ b/pkgs/tools/networking/ntopng/default.nix @@ -1,10 +1,10 @@ { stdenv, fetchurl, libpcap,/* gnutls, libgcrypt,*/ libxml2, glib , geoip, geolite-legacy, sqlite, which, autoreconfHook, git -, pkgconfig, groff, curl, json_c +, pkgconfig, groff, curl, json_c, luajit, zeromq, rrdtool }: # ntopng includes LuaJIT, mongoose, rrdtool and zeromq in its third-party/ -# directory. +# directory, but we use luajit, zeromq, and rrdtool from nixpkgs stdenv.mkDerivation rec { name = "ntopng-2.0"; @@ -23,7 +23,8 @@ stdenv.mkDerivation rec { ]; buildInputs = [ libpcap/* gnutls libgcrypt*/ libxml2 glib geoip geolite-legacy - sqlite which autoreconfHook git pkgconfig groff curl json_c ]; + sqlite which autoreconfHook git pkgconfig groff curl json_c luajit zeromq + rrdtool ]; autoreconfPhase = '' @@ -48,13 +49,15 @@ stdenv.mkDerivation rec { rm -rf httpdocs/geoip ln -s ${geolite-legacy}/share/GeoIP httpdocs/geoip + '' + stdenv.lib.optionalString stdenv.isDarwin '' + sed 's|LIBS += -lstdc++.6||' -i Makefile ''; meta = with stdenv.lib; { description = "High-speed web-based traffic analysis and flow collection tool"; homepage = http://www.ntop.org/products/ntop/; license = licenses.gpl3Plus; - platforms = platforms.linux; + platforms = platforms.linux ++ platforms.darwin; maintainers = [ maintainers.bjornfor ]; }; } diff --git a/pkgs/tools/networking/shadowsocks-libev/default.nix b/pkgs/tools/networking/shadowsocks-libev/default.nix index e49f2e5dd63..25068f8916b 100644 --- a/pkgs/tools/networking/shadowsocks-libev/default.nix +++ b/pkgs/tools/networking/shadowsocks-libev/default.nix @@ -6,8 +6,8 @@ let - version = "2.4.5"; - sha256 = "08bf7f240ee39fa700aac636ca84b65f2f0cfbcfa63a0783afb05872940067e2"; + version = "2.4.6"; + sha256 = "c87781bc280d7a7180cf82b17ad4e8f38242c73431d5b4b6cd4ccd0c29e1fe93"; in diff --git a/pkgs/tools/networking/snabb/default.nix b/pkgs/tools/networking/snabb/default.nix index 8ba9cfa6dad..cd99728d18b 100644 --- a/pkgs/tools/networking/snabb/default.nix +++ b/pkgs/tools/networking/snabb/default.nix @@ -31,6 +31,8 @@ stdenv.mkDerivation rec { cp src/snabb $out/bin ''; + enableParallelBuilding = true; + meta = with stdenv.lib; { homepage = https://github.com/SnabbCo/snabbswitch; description = "Simple and fast packet networking toolkit"; diff --git a/pkgs/tools/networking/wicd/default.nix b/pkgs/tools/networking/wicd/default.nix index 70294820425..9294d4c88ae 100644 --- a/pkgs/tools/networking/wicd/default.nix +++ b/pkgs/tools/networking/wicd/default.nix @@ -24,6 +24,7 @@ stdenv.mkDerivation rec { ./fix-app-icon.patch ./fix-gtk-issues.patch ./urwid-api-update.patch + ./fix-curses.patch ]; # Should I be using pygtk's propogated build inputs? diff --git a/pkgs/tools/networking/wicd/fix-curses.patch b/pkgs/tools/networking/wicd/fix-curses.patch new file mode 100644 index 00000000000..138dfbabfd5 --- /dev/null +++ b/pkgs/tools/networking/wicd/fix-curses.patch @@ -0,0 +1,15 @@ +--- a/curses/wicd-curses.py 2015-01-27 22:35:25.414781192 -0300 ++++ b/curses/wicd-curses.py 2015-01-28 01:13:48.078904587 -0300 +@@ -1153,9 +1153,10 @@ + if not ui._started: + return False + +- input_data = ui.get_input_nonblocking() ++ ui.set_input_timeouts(max_wait=0) ++ input_data = ui.get_input() + # Resolve any "alarms" in the waiting +- self.handle_keys(input_data[1]) ++ self.handle_keys(input_data) + + # Update the screen + canvas = self.frame.render((self.size), True) diff --git a/pkgs/tools/security/gnupg/21.nix b/pkgs/tools/security/gnupg/21.nix index 0af041e63df..e3c84fe71f2 100644 --- a/pkgs/tools/security/gnupg/21.nix +++ b/pkgs/tools/security/gnupg/21.nix @@ -13,11 +13,11 @@ with stdenv.lib; assert x11Support -> pinentry != null; stdenv.mkDerivation rec { - name = "gnupg-2.1.11"; + name = "gnupg-2.1.12"; src = fetchurl { url = "mirror://gnupg/gnupg/${name}.tar.bz2"; - sha256 = "06mn2viiwsyq991arh5i5fhr9jyxq2bi0jkdj7ndfisxihngpc5p"; + sha256 = "01n5py45x0r97l4dzmd803jpbpbcxr1591k3k4s8m9804jfr4d5c"; }; buildInputs = [ @@ -37,7 +37,7 @@ stdenv.mkDerivation rec { homepage = http://gnupg.org; description = "a complete and free implementation of the OpenPGP standard"; license = licenses.gpl3Plus; - maintainers = with maintainers; [ wkennington simons ]; + maintainers = with maintainers; [ wkennington simons fpletz ]; platforms = platforms.all; }; } diff --git a/pkgs/tools/security/hashcat/default.nix b/pkgs/tools/security/hashcat/default.nix index 3a4a6edef03..fdd49cc3c27 100644 --- a/pkgs/tools/security/hashcat/default.nix +++ b/pkgs/tools/security/hashcat/default.nix @@ -1,49 +1,39 @@ -{ stdenv, fetchurl, p7zip, patchelf, gmp }: +{ stdenv, fetchurl, gmp }: assert stdenv.isLinux; let - bits = if stdenv.system == "x86_64-linux" then "64" else "32"; - libPath = stdenv.lib.makeLibraryPath [ stdenv.cc.libc gmp ]; - - fixBin = x: '' - patchelf --interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \ - --set-rpath ${libPath} ${x} - ''; + bits = if stdenv.system == "x86_64-linux" then "64" else "32"; in stdenv.mkDerivation rec { name = "hashcat-${version}"; - version = "0.49"; + version = "2.00"; src = fetchurl { - url = "http://hashcat.net/files/${name}.7z"; - sha256 = "0va07flncihgmnri5wj0jn636w86x5qwm4jmj2halcyg7qwqijh2"; + name = "${name}.tar.gz"; + url = "https://codeload.github.com/hashcat/hashcat/tar.gz/${version}"; + sha256 = "0i2l4i1jkdhj9bkvycgd2nf809kki3jp83y0vrd4iwsdbbbyc9b3"; }; - buildInputs = [ p7zip patchelf ]; + buildInputs = [ gmp ]; - unpackPhase = "7z x $src > /dev/null && cd ${name}"; + buildFlags = [ "posix${bits}" ] + ++ stdenv.lib.optionals (bits == "64") [ "posixXOP" "posixAVX" ]; + # Upstream Makefile doesn't have 'install' target installPhase = '' mkdir -p $out/bin $out/libexec cp -R * $out/libexec - echo -n "/" > $out/bin/eula.accepted ln -s $out/libexec/hashcat-cli${bits}.bin $out/bin/hashcat ln -s $out/libexec/hashcat-cliXOP.bin $out/bin/hashcat-xop ln -s $out/libexec/hashcat-cliAVX.bin $out/bin/hashcat-avx ''; - fixupPhase = '' - ${fixBin "$out/libexec/hashcat-cli${bits}.bin"} - ${fixBin "$out/libexec/hashcat-cliXOP.bin"} - ${fixBin "$out/libexec/hashcat-cliAVX.bin"} - ''; - meta = { description = "Fast password cracker"; homepage = "http://hashcat.net/hashcat/"; - license = stdenv.lib.licenses.unfreeRedistributable; + license = stdenv.lib.licenses.mit; platforms = stdenv.lib.platforms.linux; maintainers = [ stdenv.lib.maintainers.thoughtpolice ]; }; diff --git a/pkgs/tools/security/vidalia/default.nix b/pkgs/tools/security/vidalia/default.nix index f221a1b89e6..5a217313940 100644 --- a/pkgs/tools/security/vidalia/default.nix +++ b/pkgs/tools/security/vidalia/default.nix @@ -15,7 +15,7 @@ stdenv.mkDerivation rec { meta = with stdenv.lib; { homepage = https://www.torproject.org/projects/vidalia.html.en; - repositories.git = git://git.torproject.org/vidalia; + repositories.git = https://git.torproject.org/vidalia; description = "a cross-platform graphical controller for the Tor software, built using the Qt framework"; license = licenses.gpl2Plus; maintainers = [ maintainers.phreedom ]; diff --git a/pkgs/tools/typesetting/tex/texlive-new/combine.nix b/pkgs/tools/typesetting/tex/texlive-new/combine.nix index e69c6ec425c..1faf731fd76 100644 --- a/pkgs/tools/typesetting/tex/texlive-new/combine.nix +++ b/pkgs/tools/typesetting/tex/texlive-new/combine.nix @@ -66,15 +66,43 @@ in buildEnv { export TEXMFSYSVAR="$out/share/texmf-var" export PERL5LIB="$out/share/texmf/scripts/texlive" '' + - # patch texmf-dist -> texmf to be sure - # TODO: cleanup the search paths incl. SELFAUTOLOC, and perhaps do lua actions? + # patch texmf-{dist,local} -> texmf to be sure + # TODO: perhaps do lua actions? # tried inspiration from install-tl, sub do_texmf_cnf '' + patchCnfLua() { + local cnfLua="$1" + + if [ -e "$cnfLua" ]; then + local cnfLuaOrig="$(realpath "$cnfLua")" + rm ./texmfcnf.lua + sed \ + -e 's,texmf-dist,texmf,g' \ + -e 's,texmf-local,texmf,g' \ + -e "s,\(TEXMFLOCAL[ ]*=[ ]*\)[^\,]*,\1\"$out/share/texmf\",g" \ + -e "s,\$SELFAUTOLOC,$out,g" \ + -e "s,selfautodir:/,$out/share/,g" \ + -e "s,selfautodir:,$out/share/,g" \ + -e "s,selfautoparent:/,$out/share/,g" \ + -e "s,selfautoparent:,$out/share/,g" \ + "$cnfLuaOrig" > "$cnfLua" + fi + } + ( cd ./share/texmf/web2c/ local cnfOrig="$(realpath ./texmf.cnf)" rm ./texmf.cnf - cat "$cnfOrig" | sed 's/texmf-dist/texmf/g' > ./texmf.cnf + sed \ + -e 's,texmf-dist,texmf,g' \ + -e 's,texmf-local,texmf,g' \ + -e "s,\$SELFAUTOLOC,$out,g" \ + -e "s,\$SELFAUTODIR,$out/share,g" \ + -e "s,\$SELFAUTOPARENT,$out/share,g" \ + -e "s,\$SELFAUTOGRANDPARENT,$out/share,g" \ + "$cnfOrig" > ./texmf.cnf + + patchCnfLua "./texmfcnf.lua" rm updmap.cfg ) @@ -112,10 +140,6 @@ in buildEnv { rm "$link" makeWrapper "$target" "$link" \ --prefix PATH : "$out/bin:${perl}/bin" \ - --set TEXMFCNF "$out/share/texmf/web2c" \ - --set TEXMFDIST "$out/share/texmf" \ - --set TEXMFSYSCONFIG "$out/share/texmf-config" \ - --set TEXMFSYSVAR "$out/share/texmf-var" \ --prefix PERL5LIB : "$out/share/texmf/scripts/texlive" # avoid using non-nix shebang in $target by calling interpreter diff --git a/pkgs/tools/typesetting/tex/texlive-new/fixedHashes.nix b/pkgs/tools/typesetting/tex/texlive-new/fixedHashes.nix index 130c063225f..15f57c994cc 100644 --- a/pkgs/tools/typesetting/tex/texlive-new/fixedHashes.nix +++ b/pkgs/tools/typesetting/tex/texlive-new/fixedHashes.nix @@ -66,40 +66,40 @@ "apacite.doc-6.03"="cbhyw6lwyg7mnx8h421y0hxf3h5m6n4y"; "apacite.source-6.03"="cby7n3f9rzm83736nm4rn1m77km3lr9y"; "apalike2-2015"="vf25kvilm8g379d8c5mkzv749nd9p8ap"; -"beebe-2015"="h08bwjfi8sigcbrdzmm7411i41x6adk6"; +"beebe-2015"="96mghd7ni15vs57znbj0ig086gq151j8"; "besjournals-2015"="n3ljrkamca5v9w0rk3m38nqw86s1izc8"; "besjournals.doc-2015"="3swy1ix6cxbp87hjlaf3x4ws4kg8sz77"; -"bibarts-2015"="hrwdz3limy6mjbwv5jhrcc7a4bq9mmbl"; +"bibarts-2015"="a7wcn8rhgh4irszdqk86ls1p8hpdnr7l"; "bibarts.doc-2015"="8v8bsspwmjgc2z3bk1dfn19pnqbdd84p"; "bibarts.source-2015"="gn11904mygf8j6wn1sgsqj9yn7kam8mz"; "biber.doc-1.9"="xrb6d6xqp856sr0hdn0mvqqxn7hl4mkw"; "biber.source-1.9"="nymxzi233xbzr939i8vln9xi78lfsly4"; -"bibexport-3.01"="ys88xvnax86z754hi1pc9ka1ahl9l5pl"; +"bibexport-3.01"="6gc6r95ph3rkjzq038zk6w12k733qzwr"; "bibexport.doc-3.01"="nq7jxcny132a5q19xw91r56czdn2bpi7"; "bibexport.source-3.01"="c896ngmwq4a3x762wapjq736h4xkpzvr"; "bibhtml-2.0.2"="b0klmx8rd09znlxg7wz5m8b1f8qpxsjv"; "bibhtml.doc-2.0.2"="snqyqvgwdwpkyfqfj69zwd478z96mcj4"; -"biblatex-2.9a"="r12r4yc85anhmyhzg789sm86y7g2hhcy"; +"biblatex-2.9a"="80qcpqc1v3abhjv4yf7npxza3l7ffrvn"; "biblatex.doc-2.9a"="zncbjkcf6kd48l4pahnkmf8ycwc9rf5j"; "biblatex-anonymous-2.1.0"="7c7hldxdx2g874gz0w60pc5gp5qi3anl"; "biblatex-anonymous.doc-2.1.0"="x3mm149bxqmv2x8fabrd4rz8cvf3wx1d"; -"biblatex-apa-6.7"="x3073h7lxgx8j15kqfymvy2r70rqk6a0"; +"biblatex-apa-6.7"="q368bygc8mms93ifqn8l5qx9fzls5szn"; "biblatex-apa.doc-6.7"="d969qn8l1jvkhmwc3kzxd8imzmvwi9a5"; -"biblatex-bookinarticle-1.1.2"="y8mimk9yagfc2yvdry5cb1yv47g6hrlq"; +"biblatex-bookinarticle-1.1.2"="9z1b4a99k6ny50bdc8mjsld73sa624ym"; "biblatex-bookinarticle.doc-1.1.2"="i74yrmxv557prpslyk4hx5cx0y19xsa8"; "biblatex-bwl-0.02"="0a11hlav9gsavdisyjckvnrxkkb4134w"; "biblatex-bwl.doc-0.02"="b7ddxvcabp9qd88mzb6dxvw7sz8dnqfq"; -"biblatex-caspervector-0.2.0"="jfvnrzfnv2kl006raijzz4nxkj6yp502"; +"biblatex-caspervector-0.2.0"="vfdf4svl62ipn4rclavfvqn8f7sjqm4g"; "biblatex-caspervector.doc-0.2.0"="7wiq9prbbb108khxmmdm9nz66m3j6l2k"; -"biblatex-chem-1.1m"="ri9vfy95rrg57h6ln23wfp08f2bxcrc5"; +"biblatex-chem-1.1m"="mwdbl2jcclnkfzvi3f3phwaywl00l8ga"; "biblatex-chem.doc-1.1m"="0yzngffav8511dhzjscr8klcc3cnmpqg"; -"biblatex-chicago-0.9.9g"="2hqmlyz4k3m1ip35lg2k506xgps17sjz"; +"biblatex-chicago-0.9.9g"="598kq9wca7ngjb42yvl7j9si7d044116"; "biblatex-chicago.doc-0.9.9g"="2djqc8y3vji6dgk057lxgqyhyv1xl0xf"; "biblatex-dw-1.6a"="bspjklyxgav63yy5na9yhzpd7xym44fr"; "biblatex-dw.doc-1.6a"="2i8x7vwvh5alk2i9dxil9zzhgj9dsc27"; -"biblatex-fiwi-1.2e"="8zcjibvmqi27shqpcydlcni30ncxz9l6"; +"biblatex-fiwi-1.2e"="czqp8gnsmiljwgf25r4zg3wr1grr04rb"; "biblatex-fiwi.doc-1.2e"="9vpxiaflg4w95p5fpzg2sr2q8wq5vxbj"; -"biblatex-gost-1.1"="n6xxxxasbilqbsq8r0yrn0y3c6c0xd0z"; +"biblatex-gost-1.1"="5yr5ibsqfd3y7vr2r0wh9kr6hfbcansx"; "biblatex-gost.doc-1.1"="mwzkalq3x4g4ds3zv78k4qpp1df8gc22"; "biblatex-historian-0.4"="xp6r6a37ibm9fhdc95b2v3x5kgyz26c8"; "biblatex-historian.doc-0.4"="6280kicfk2n0hwp03pyhl29ljdg911hb"; @@ -109,30 +109,30 @@ "biblatex-juradiss.doc-0.1g"="d4dp9hld95b70k8b5qxlmvcgcsxpv0g8"; "biblatex-luh-ipw-0.3"="83gar343q3h1h96h8lzs2bmsp1ba82n0"; "biblatex-luh-ipw.doc-0.3"="yxcknwckw9s58qhrbdd70jz5yrpnyip2"; -"biblatex-manuscripts-philology-1.6.1"="27wwbz82asdbbphkfghkm7lqjs1ksy2g"; +"biblatex-manuscripts-philology-1.6.1"="gsr10w71sv87zn8vpqmc31d6s9p20x6h"; "biblatex-manuscripts-philology.doc-1.6.1"="yqi4h1vr4dnmka9cyw9a2lixwbyj7lr5"; "biblatex-mla-1.5"="35x2khi3pqi9sgk4l1xlzyy2sn4kkkcr"; "biblatex-mla.doc-1.5"="3xdx7g47g6swq8h6k3v12mmqdxq1684d"; -"biblatex-multiple-dm-1.0.0"="shqrzrhxpjvs6q5fziv0j3fz1r79r22b"; +"biblatex-multiple-dm-1.0.0"="6c7h8i04ksazrq2lbc6hbpcxkjdvih07"; "biblatex-multiple-dm.doc-1.0.0"="f3avqfdxid514nigyn390598n4cvfjhh"; "biblatex-musuos-1.0"="dj5nsyf90mbi4dlghyh8aklqr28jvx76"; "biblatex-musuos.doc-1.0"="ypw7naafkwm22kfq1hd4b0z665g4jz9p"; -"biblatex-nature-1.2e"="6i24wyf98fcba7rgbdsix0wzzg7vblpi"; +"biblatex-nature-1.2e"="kfa1pzqk2wmv5lyyvv4dpj8pw1jn71dm"; "biblatex-nature.doc-1.2e"="66qwf78zdraa8pjxfppfrl2a45r2mlv6"; "biblatex-nejm-0.4"="3sb2kazf4ch1yp415iqjnq30ykn7jd35"; "biblatex-nejm.doc-0.4"="m8km67d5x860465qiwdjxx3vxh8fb7iw"; -"biblatex-philosophy-1.0"="m3mccy9nh0b78qaxh03f2h7kp3k9x9cv"; +"biblatex-philosophy-1.0"="2s7l2am9qrmp917d5slqyrs3s794r6fc"; "biblatex-philosophy.doc-1.0"="d0y3wzms398if4vmbar4jq1whp2kaizg"; "biblatex-philosophy.source-1.0"="wv63c967c5l6y602kkjmhbszsjr5fizv"; -"biblatex-phys-0.9f"="iv2v7qlkwb7gkwwqv6jwpkbj5rlgv5y2"; +"biblatex-phys-0.9f"="j1qihqcyvlzjcnr361c1j7aijr5j33wr"; "biblatex-phys.doc-0.9f"="0wspsgrw41wfh8ignlspzbznfchqz7gi"; -"biblatex-publist-1.0"="mjcvlrs81wg32rk5d46ffqnz4mssz4ld"; +"biblatex-publist-1.0"="5mwf7zzm22vj9kx9ib6aaqnfcpmdz3w5"; "biblatex-publist.doc-1.0"="l4vyx2p7skbqjdvybq9x2i6qs4g8jj53"; -"biblatex-realauthor-2.1.0"="qsjirk1vs5qdzc5h4pfxcrwxf0742g60"; +"biblatex-realauthor-2.1.0"="p76npx352crb2b4r03hs2jp5006zb43r"; "biblatex-realauthor.doc-2.1.0"="rgm2dhbzd26vnxipszvwxp419ri7rrj8"; -"biblatex-science-1.1d"="ii4fghdz3bv754gxb4v5klsx2m1wwdaf"; +"biblatex-science-1.1d"="6k9drccf3dz26il0i78xlzpmmf3w5vcz"; "biblatex-science.doc-1.1d"="fynw1y7cydvyy6scdkjwaqf3mjs8khg7"; -"biblatex-source-division-2.2.1"="3ygw2ic9sznwz765kx919hqk9aj72a35"; +"biblatex-source-division-2.2.1"="m3n4030njdf2ga5bl318lk0iyvzrkmh8"; "biblatex-source-division.doc-2.2.1"="78b165v3ylg2mq7gi0z19m20gbpk2wzg"; "biblatex-swiss-legal-1.1.2a"="lp3jw955jpyfjyn6mp6wna8rqwbhsvfj"; "biblatex-swiss-legal.doc-1.1.2a"="23bam0vm3zqrcj1cd10g8bml0jsyvmcq"; @@ -166,7 +166,7 @@ "chscite-2.9999"="yc7v9v66md3dy5k2gjswzh58xzxdhwp4"; "chscite.doc-2.9999"="fbcykh46rifs4kvn728sav04fnshr6br"; "chscite.source-2.9999"="vsii846cdlrd9fdmf4npwy8jxh0fcafb"; -"citeall-1.1"="fiplrix77k2k6y53qky612a5nkf5vncj"; +"citeall-1.1"="6fiivsrmsg3hyb457mfd8sr3nnjb0nj0"; "citeall.doc-1.1"="rk08033hjg3ibxvp4y1778js136bzy9v"; "ae-1.4"="zx6mlxrdhfvp0a5ql61jhlj97pcxazwz"; "ae.doc-1.4"="pgvyvlql6hncc8bv2wdf8ja6xxqjjqs7"; @@ -242,7 +242,7 @@ "collref.doc-2.0b"="1dzrqml74f983hxjvnpznzk5rbfl6745"; "collref.source-2.0b"="irvbzhsbnifgcacs9sw9142c2b93yqb2"; "compactbib-2015"="5365y0lxziirnp7rraxwbcksrky9hr1m"; -"crossrefware-1.0"="jrq0yavsa6j4lwv5h2ril8m698ncgqn6"; +"crossrefware-1.0"="chq7m59gshllpglg9b65h11lz0nph1yx"; "crossrefware.doc-1.0"="66z1c0ncxzbhl6vaycm39hj7gnbjsb0b"; "custom-bib-4.33"="9vqjbilzlsqg3f609hnz27pwmrl5gfg5"; "custom-bib.doc-4.33"="nz1gxi8ixypxpf4cv7nilabq1ivr6fiz"; @@ -263,9 +263,9 @@ "footbib-2.0.7"="xhrwnw5kvs3rxp32a8awv8ma7098cv6h"; "footbib.doc-2.0.7"="dzyra0rwf5hl2g6f7c2pw88d78f7yls1"; "footbib.source-2.0.7"="xj3agjgzfnwnfzzbzk4xjfk90fr1a6fm"; -"francais-bst-1.1"="1pmmh8ib44i1agrwyqpy965lscl7ivf2"; +"francais-bst-1.1"="zz8wcr2ymwd7m721qr94l1k799mi9cia"; "francais-bst.doc-1.1"="byfdgib2w5vl7rp8n4v5kqcavj2a8lqd"; -"geschichtsfrkl-1.1"="ywl1cbgb103flymrrys6k5jx0khs16kj"; +"geschichtsfrkl-1.1"="lcagr758zngrzx88gvq8m6j3g289j8by"; "geschichtsfrkl.doc-1.1"="b3n4fqzndn6d7jr0sy59g7ha3753va8g"; "geschichtsfrkl.source-1.1"="mhj1am37rsrvbb62g1nb1ddd0n1qlg2f"; "harvard-2.0.5"="yhk8zvlhgd1knzfdndba31whwj7ixh1j"; @@ -321,7 +321,7 @@ "splitbib-1.17"="az1n021wdajs8dc0q93wgfb1r0jcr2h2"; "splitbib.doc-1.17"="qsb89h2ch89qhbxir7f90xx5sqvgm1px"; "splitbib.source-1.17"="c9m7hp7fh86qj53qwaqxh8xj8yf3gxdy"; -"turabian-formatting-2015"="ps97jcaykylz6pfdz4yf07kkkarmyxan"; +"turabian-formatting-2015"="6ilq7k0bf1kyphx469dmy0mbbnnsn3yj"; "turabian-formatting.doc-2015"="730mlbmakixaa2cabiaqck6vhbk7ppd2"; "uni-wtal-ger-0.2"="i4nr7hq5gym5rcs2pc43qclci7jy9y4m"; "uni-wtal-ger.doc-0.2"="a4r7w5m71h1kfgzxgpmb84hndnhrxhhy"; @@ -549,7 +549,7 @@ "context-visualcounter.doc-2015"="2zllwd7h5f7ja9877vyiznvw5prbgh8k"; "context-visualcounter.source-2015"="7wbyascsdwh2m9hpwm3c7sd0q5940fd1"; "jmn-2015"="sxkb92pakb4lx5d9pjpang6mhfrgm4b5"; -"Asana-Math-000.954"="0n66q8sc607jha41b4znr80dvq0vpzc7"; +"Asana-Math-000.954"="qvk5bdn6hq6ci0v4l45rbwd3s4nazmsd"; "Asana-Math.doc-000.954"="lxw9kzady9mz5zg7fbxlypqihjzz66fi"; "accanthis-2015"="3ai0zz1fwlq9v25dsfz63if6i7wgrhp3"; "accanthis.doc-2015"="zlxlfbawiicbkminjw2laximsn07zpi0"; @@ -559,7 +559,7 @@ "adfsymbols.doc-1.001"="kb61cwldva4ziv006ja9y66a27926508"; "aecc-1.0"="0vpb9yz2qx0sc15kxzhgqadkcjyr27c5"; "aecc.doc-1.0"="mn7j1f7j3z5d6pnss9mlhvbw4ahn94ka"; -"alegreya-2015"="mx65xb5xzjxjxqz2cmml34mm6dkjppg2"; +"alegreya-2015"="7vin6alzrxrhk9prd23r50g4zqc7z0ll"; "alegreya.doc-2015"="4g368if3zml5s7fn4pqji9mla4dv3l6r"; "allrunes-2.1"="nsgbhsp0jhh0iydnzlx3r893pcw0y8lj"; "allrunes.doc-2.1"="5ng2q004dra8c729sldlq2vkghjwcrzi"; @@ -573,7 +573,7 @@ "antiqua.doc-001.003"="36kkp06c9grcgz7py0k7fnr5a56cvsgk"; "antt-2.08"="ln7vvpz0p5lz4sikwky7f7zmkg08zmcv"; "antt.doc-2.08"="2449s2gpspkwfmyhvvl8g5h1dqn8bg72"; -"archaic-2015"="6swpkjyd2q7yawrl9nxyp05s4vn8l4xy"; +"archaic-2015"="jvj1s2dcgkwgi9ywg48vw7i14gmlmq7n"; "archaic.doc-2015"="g3xhv1gbarnjsmdsb9jwl7zj179m0b93"; "archaic.source-2015"="vzz6l6bhcjrf3w62f10kfhr0sydga25q"; "arev-2015"="xc3i2264d5w0ijv10n6ka53311bgnib0"; @@ -641,7 +641,7 @@ "braille.doc-2015"="00dv14s64fm8g5jy8b30dx813a304nlh"; "brushscr-2015"="342p5p6h8v377mnbrv1f56kicbbjfcdx"; "brushscr.doc-2015"="hikb5s9iv60pfq2kjdbfiq1216d3rabk"; -"cabin-2015"="d95qm62h6x975s19n69qycb8mh5j9z96"; +"cabin-2015"="fhxddnhlqmc7r2bi25widryyc3jpp59j"; "cabin.doc-2015"="1gic6j7bjrhj3mgjpwjg97wb0zhyi2qw"; "caladea-2014-08-17"="1rb8sq2yh4hizlcjp8zd68ayb7cx6275"; "caladea.doc-2014-08-17"="9qr79slzxmnnvvh2iy310ypqj9g11s4b"; @@ -682,7 +682,7 @@ "cmll.source-2015"="lbaw2209cz5ymklza36486jzfpq1cqc5"; "cmpica-2015"="z5mc7yl40mzwk5bcjs3lb1ifqsr7x4s1"; "cmpica.doc-2015"="9bl7bhpb9dhp58p9hxay8xka0nz2cg2l"; -"cmtiup-1.3a"="airrzsgmwbm5ybvlvvf7dibj05hrymis"; +"cmtiup-1.3a"="k6sk5isdzms460hm17lkx5b6p6p9wz1g"; "cmtiup.doc-1.3a"="l9v6fn0qvxixcbkm39ba186j6s40mk60"; "comfortaa-2.3"="k4w8lzk1lbd0hlrvkr83p4s737410vk3"; "comfortaa.doc-2.3"="cmh2d3939a515h60ajmhbivqmbn2xmw4"; @@ -701,7 +701,7 @@ "cyklop-0.915"="5ksv3v36mc6557jckr5gk22pbqr30wnr"; "cyklop.doc-0.915"="d85643zgnh0r0j53gfpi84qsx4694xpv"; "dancers-2015"="qlpshkppzr84rr3smqpwch5j11klm3a7"; -"dantelogo-0.02"="89k0cyvfg3nmvynl04fyx5as6bm6qdjr"; +"dantelogo-0.02"="iiqbbimigxpj8kg628sj694xha98q0fw"; "dantelogo.doc-0.02"="cawwb1qv99ssvyhmqskrkdm6rssabin5"; "dejavu-2.34"="90lkxdpj8ihrs68355fal0h0a1dp3v67"; "dejavu.doc-2.34"="2v6nhxrkny5haczrpvqjzcal7bixngas"; @@ -714,10 +714,10 @@ "dingbat.source-1.0"="rq7v2cny05d4f8bkxbs2z6kj36q5bwfd"; "doublestroke-1.111"="z58ah73655dsas48b432ahkkags5n8wv"; "doublestroke.doc-1.111"="403diym6rx34bwmrh63zaka3xdhzs2dp"; -"dozenal-5.3"="cpls8r76s2ghgcv0wndrg2xx22f126s1"; +"dozenal-5.3"="liizjwlab7x8mc2f9c78yifhmb5rpcj1"; "dozenal.doc-5.3"="yr85zhsz1lg0br4jys3af04asv9g0q0k"; "dozenal.source-5.3"="qhn7lvcfz4qsralnpmsmhg8m7im62vqr"; -"drm-4.1"="w8dc3g32sj3p8vz889gwfyjwfxr1m2az"; +"drm-4.1"="i8782x71pbzgag927fqjqgw2w7zdisvj"; "drm.doc-4.1"="y2w0x3krjv2hl1gfq95kqqrdjrv2p96i"; "drm.source-4.1"="djrfmj4qxif3n0fyqc918ccj3s3cfnq9"; "droid-2.1"="0l4lmkxp92l2a36n7hy75hsl3iafdxjd"; @@ -755,7 +755,7 @@ "epsdice-2.1"="xbz7jkdzzsqrskdi4vhb0ra7m62hk9q1"; "epsdice.doc-2.1"="7lc7wwfxwxnjfgf13br3wa6n8j25ml6w"; "epsdice.source-2.1"="6px6gazxv7pr9cagfrg7mzx1w3z2nxn3"; -"erewhon-1.04"="h3vj59rsccj8sqyn3xzmi9n91gz1c5dr"; +"erewhon-1.04"="94dbdp79s3778h3gj7gdhwhfqxcfifp8"; "erewhon.doc-1.04"="abqcmnph6mc6hz1c8jj3j80crz4xmljj"; "esstix-1.0"="0ddmfrgh39pwcd2n8rggma4pqwgamp7s"; "esstix.doc-1.0"="5pf3r0xhssrgkp779n06a63yjb5cdg6a"; @@ -766,27 +766,27 @@ "eulervm.doc-4.0"="g5fxzw7dvnff2w9ys2gpgnvr2x8dabx6"; "eulervm.source-4.0"="ifvn5n0dvcr4qpcv1yp4xvnx9lj26krg"; "euxm-2015"="pb3kg627b3skhbi0prgik6y9n9zgk8s0"; -"fbb-1.07"="m6wlpqb9cq77drqgl0w4cmb618iryw5a"; +"fbb-1.07"="fs9skxxpknz2n9gcs49gvzysa1nj2s71"; "fbb.doc-1.07"="6mfyllf1qjbwx6rbsm0xmy7r3xrvq54x"; "fdsymbol-0.8"="hx8wp66hsznj0sj8jkz0vdah0bp9vvyb"; "fdsymbol.doc-0.8"="n457nji3718qh1nrjr9wbj9zqj21nkw0"; "fdsymbol.source-0.8"="3n6d2j9wh5cxakdmxg087mznnrdkjw27"; -"fetamont-1.4"="fjf29ygzd22300g3dgx9qrmspyrn78cb"; +"fetamont-1.4"="b1jqkg3ms7gl1i2xx1gz7i2v988h2qqj"; "fetamont.doc-1.4"="ig507fs94nwabizilvirzafwp8vk9qyv"; "fetamont.source-1.4"="r23ngrrhzna3p1milwxm84wvbi3wk3mg"; "feyn-0.3.3"="8dj19lvi2c2vna95mdw689d1h44l6ym3"; "feyn.doc-0.3.3"="6s6vyfbq3zb83fm0b8l7xb3pq335lhza"; "feyn.source-0.3.3"="ncnbfggbsqdr418s53908b8k33ka9iby"; -"fge-1.24"="f1g4k2b2rfgbmi26hi5kks4vhwzpibns"; +"fge-1.24"="59jqqyl11vinxa29f6gmalv30q6zfbzi"; "fge.doc-1.24"="byc6q2kci4bfxm0hg9qgkh9ivp92hpzs"; "fge.source-1.24"="hb33gbfla0k35lznh3hf1kwm6kkdcqhv"; -"fira-2015"="zw5mrxczf64bh32cnqfriz5vc79dg1ml"; +"fira-2015"="2xmp3d4vbb30qhm6n303n585dmz9n8i0"; "fira.doc-2015"="a6s9da8y3931l3qxjr1i67x9qm22iy7w"; "foekfont-2015"="wha0shrvr3lv9ll9d3gv60mcav605vcc"; "foekfont.doc-2015"="n91sl0xzglqfbdyb9mzv7wav3y4zv9sx"; "fonetika-2015"="firgrcsksy4jdk632aqfwlaki3xxgmak"; "fonetika.doc-2015"="ahz61pg6qnn2dpi3c9iz2kh2f4fvywbl"; -"fontawesome-3.1.1"="zzldk78lidhf77pjh1rz6hsi4d9vw7m7"; +"fontawesome-3.1.1"="fpiblg1836jk9dknwhh31l3in9rppd6i"; "fontawesome.doc-3.1.1"="0v7miqkb3b32p3k3ibk4g97w8vs2hclr"; "fontmfizz-2015"="c8k7306gjkypslf6micsyfcx9n5zh4js"; "fontmfizz.doc-2015"="4rnghy9z5azspczc1hxman3305k5wdn4"; @@ -799,7 +799,7 @@ "frcursive.doc-2015"="r0bj4g91m2w3yl8q8kim6ldm4d8lyziy"; "genealogy-2015"="hdl046d3paihjmlkh2q3crfj1n88fsyv"; "genealogy.doc-2015"="7115cwa2l6nsnyijcdik7kw513q3a41h"; -"gentium-tug-1.0"="h33sa65cvdkks4h1fqhvhvm68yf5qafq"; +"gentium-tug-1.0"="icijmw31g5lsgqlkam4d6z33fzprpxi8"; "gentium-tug.doc-1.0"="r7dcsx17nsf3m5r24kvg90xbgw76yp9y"; "gentium-tug.source-1.0"="chiz0vzymy1q4iax3s50ay99gws8pm9f"; "gfsartemisia-1.0"="98gdcspx1jqdry7iiq7mgxxmicl57zz0"; @@ -821,7 +821,7 @@ "gnu-freefont-2015"="1zqn27grz5h290g4fk4q8kd9pf4l05ag"; "gnu-freefont.doc-2015"="3saxb0d0h7dn8a1f7l8ax0dj5ic8piib"; "gnu-freefont.source-2015"="716drmmfwyq7pabpgagk0zwkj77lrhda"; -"gothic-2015"="26dd69rqqsm57lh8ssx35ncww74ykq80"; +"gothic-2015"="6wx2xl7wrgnai3wwqgpggwyggyg5hid1"; "gothic.doc-2015"="1cpvmj3vn26ji5cl1sfxvdh6qv7ix92f"; "gothic.source-2015"="6gh7hma17066gk20ri4qjvml8d424c1h"; "greenpoint-2015"="qlqfkgcn8gc1hy7gmfajqliriilf68ck"; @@ -840,11 +840,11 @@ "hfoldsty.source-1.15"="vyly65j4d7wl49gmm8wgpxrnv1s2ygq2"; "ifsym-2015"="qy3w8h8slb44vg4s7q7ddb9db2fd9s06"; "ifsym.doc-2015"="wpnp4ykxz7qa1ycwzkfpp5sjrs49np12"; -"inconsolata-1.05"="nbbx62cxjqaf9p1pb9ji77q1bsyavfsm"; +"inconsolata-1.05"="ym7yy9m5m8jghqchkng5112fd5knsgx4"; "inconsolata.doc-1.05"="vgbfyv2i9pq6l5pzialwxhs2qsg6yr1y"; "initials-2015"="sd0v18xidrmnllf1ihmgk02jz3v2qw8j"; "initials.doc-2015"="6nhvprdk8nd8gxmhq2hb8s41rpjwmv4g"; -"ipaex-type1-0.3b"="pfrrayp26xvf0k4dvzm1zlkldv8dy599"; +"ipaex-type1-0.3b"="zvrlkrnny2f16db0vkl5aw4bv575h4lw"; "ipaex-type1.doc-0.3b"="sasw24khpjhnwfkfjiv12q1l2ki89pp9"; "iwona-0.995b"="l8pylg2zq5pvxs7czq17b3v1xpar4qkr"; "iwona.doc-0.995b"="piyd7fk40bqwdb3fxshkcwwrdi8gra32"; @@ -903,13 +903,13 @@ "mnsymbol-1.4"="gmjs2ra3yb01bxw90gjdri3p6n7kbc6l"; "mnsymbol.doc-1.4"="7ngazrr147x9gdadm651fv9hjr1f87i2"; "mnsymbol.source-1.4"="7bf82bljx9w783jg3kibc5rn2l9j0ym2"; -"newpx-1.232"="jwc91i59k7byhvglsb0d7v90k6mb1h7r"; +"newpx-1.232"="y86mz7l525jhx1pbi8bpdkypv4hswgng"; "newpx.doc-1.232"="m8i1wivv87j0814ranjnkn2sra68lpy7"; -"newtx-1.434"="b9ck3bq7vjjvlk0za2j7937v727fg72q"; +"newtx-1.434"="a56lf6psqy42gqxi9as7c3zggacdgp9i"; "newtx.doc-1.434"="mvnm0kilmgfcdxy2rsp41s4r0jq7xg2k"; -"newtxsf-1.02"="3k4c5nn5lnpr8kyi7ixvy1r89m5y2i9d"; +"newtxsf-1.02"="38365p5pmaxqm1wa4b8iz4fhl404f66w"; "newtxsf.doc-1.02"="61bm4wdnrm7z9i9ilbkik71393zrnaml"; -"newtxtt-1.051"="8zmcwpkql7i92nmaby6hlj1l9jxjdf4c"; +"newtxtt-1.051"="asl7klidnx8cf7p0ms9ia0kyc9j4zs4i"; "newtxtt.doc-1.051"="n0r8f9lmg8p81ahsazcw3xy0xcp7i39s"; "nkarta-0.2"="g55hn51ys8zd7in6c6z46mwva577s6qd"; "nkarta.doc-0.2"="59na8icxp6l11jk6nsp53c1y5gqyjsff"; @@ -968,11 +968,11 @@ "pxtxalfa.doc-1"="fg8arijrsm7gc3liyf3036pj014w0243"; "quattrocento-2015"="49ifrqysm27xbwqmy4k0h7k65gxk4c9w"; "quattrocento.doc-2015"="3rbp50ihgm2bhv78xa7839j99m4q45qr"; -"raleway-1.2"="2x1f74q94699l9m9dvwdm5kbj4x5w3v7"; +"raleway-1.2"="5z34lhbcmxzqf0pyfmckcl3g5xqj348k"; "raleway.doc-1.2"="vcdpxmvrwa1fzicr4bapbiq5fxp5d5q7"; "recycle-2015"="4fgfdk09nzljd5a6vz52nvv8b23xk8rw"; "recycle.doc-2015"="3wazkwncn9gh1lpcax4hb8x38jr6ynxd"; -"roboto-2015"="5gk4nraszyzdcanvspvgfc4vcl1asy2q"; +"roboto-2015"="i7m39dj9qxjlyjgs0zypcamn1lz9bi2k"; "roboto.doc-2015"="jcr3mxnsn132kdmm1idlcblz778ja12r"; "romande-1.008-v7-sc"="v5sf9cqkvd7wmbrrb48dffi59m048kal"; "romande.doc-1.008-v7-sc"="bf5a3jzcqr74l7qp2im80r9x73rk3asy"; @@ -993,16 +993,16 @@ "semaphor.doc-2015"="5lc0796kh9slmk1hrm3720mcnqjlqrcv"; "skull-0.1"="hv1lxixs6dv2sagmj4rnjpkhc4s2i3mj"; "skull.source-0.1"="szzd5b98j04aj4f4aq5av7fs7316156m"; -"sourcecodepro-2.3"="f32bvmbrvvxhs3mp6szl2km0hhkl45sp"; +"sourcecodepro-2.3"="9570brkfv2gwh71p136wq4hl79n9gcjh"; "sourcecodepro.doc-2.3"="s5kvrysbfi6bgrny6cs33k07jjlw0xq8"; -"sourcesanspro-2.4"="bgm1fxilypy5qnp7dyvh7jqihfvpfk2r"; +"sourcesanspro-2.4"="k9plmdm99gncpdl368kd41qik8cdvhi7"; "sourcesanspro.doc-2.4"="qagm6dxx7xdj1zfian0jwgdmgp95kgjg"; "starfont-1.2"="phdad9yy6nvcxi7ym1chdvz0vvb309ag"; "starfont.doc-1.2"="96h183mv5rmxmnkgy6766519cz5nff6g"; "staves-2015"="9vcnfl7q4czfhyl3zxadig3nzdxg900r"; "staves.doc-2015"="rn25a0syl0d0n89jp09906y30679mr7v"; "staves.source-2015"="2vby0srv43ikzb1br9wgnsyxmgqpfrv3"; -"stix-1.1.1"="zhgwfv4z7wllki0a9s15j6is13nzviha"; +"stix-1.1.1"="cmrg4yppj3k7ybbnszq2hhijw5ilzz8l"; "stix.doc-1.1.1"="4iakg4xjaiasqj3cqwq9b41f0wldskfy"; "stix.source-1.1.1"="hgnj1aizzlrb9j4kb5zyrzq65qr32bd5"; "superiors-1.05"="yr7dyyyy1nd25d29i20yq0mpcxb9zj73"; @@ -1037,7 +1037,7 @@ "venturisadf.source-1.005"="6yz4vcq9mzzm52ca19kcvgj8fg7js28g"; "wsuipa-2015"="h05k2wwr89dak3ifgvjgjw0zyvlkyyjz"; "wsuipa.doc-2015"="nrlpxbqgccmccncqa3xx8l3zlbalkcvm"; -"xcharter-1.074"="31rph1cc4cswpcnd61n988xxrbk877zf"; +"xcharter-1.074"="izqla2x6b2rknw6xrz4f89p2dyc0d522"; "xcharter.doc-1.074"="0v3mr17lzzwx7i88wfw3mar0qz04gn4a"; "xits-1.108"="dgkldqj163pdlfy3gmjza6hb8lcanzbn"; "xits.doc-1.108"="bnvwmf9q9r8z9f1w338xadknd9hpywcm"; @@ -1152,7 +1152,7 @@ "bartel-chess-fonts.doc-2015"="xj41i6y3ssxdpqy3j60pdx2scsf3qx35"; "chess-1.2"="j9hxdp5kz4dv6wwgy6azrw6yjhdq7384"; "chess.doc-1.2"="n9xxs3zgzz1vhl7y1d8qxk4cj8fglhpx"; -"chess-problem-diagrams-1.11.1"="5gdy5gym5kcjbpqayqqgj48gcg57y2z1"; +"chess-problem-diagrams-1.11.1"="l704rprn6ybj2x2gn469z8zj1kyw8gas"; "chess-problem-diagrams.doc-1.11.1"="232ziyxp4mpcmc9vxdvbzwpwz1nrmrc1"; "chess-problem-diagrams.source-1.11.1"="bpswnnjq4as19ngyw9q6afhaa6hkbxhr"; "chessboard-1.7"="gbyh69ypw7gc06g9xpj5mwl4bnnfmlqf"; @@ -1197,10 +1197,10 @@ "psgo-0.17"="487m1ggdz7a554viflmp4cg2kgdw9ghv"; "psgo.doc-0.17"="cw2v9zzpbmqqw8k8hdq0la2dhdggip3d"; "reverxii.doc-2015"="2w8l7rs761h556il3d875k0sc86xll98"; -"rubik-2.0"="w5srg2ii3dyzjrjy79yz9nggbqfvrpc0"; +"rubik-2.0"="hihhq6z4ir4x34b1ch02inpnk2n6d3iq"; "rubik.doc-2.0"="y24ihbsxdn9ldz17v8pkhbs2kvmx1k12"; "rubik.source-2.0"="01r4vya6h49npjf5pgyndc62j3m1a1bd"; -"schwalbe-chess-2.0"="clxc90dyw7bi7d9smkv9255l1dr1hvh0"; +"schwalbe-chess-2.0"="jnx18kdrnb81sd144pc1a1w88vy5i5cl"; "schwalbe-chess.doc-2.0"="39w9l37rig1an4b61p2m11vpb8ap91a3"; "schwalbe-chess.source-2.0"="s94n8xaviy8q3kp1ya33lmcrkxam4x5n"; "sgame-2.15"="36xmv070y7wzwj8qj24y5q063v2c1l7f"; @@ -1222,7 +1222,7 @@ "abbr.doc-2015"="9lgcwpp4fw2zjx2rsp9w5szi6v2pdsn4"; "abstyles-2015"="2zmzwsgwh4rv6ysnjjk35cihbifs0jir"; "abstyles.doc-2015"="xba8x95rimsa16xhr7nziglk7djzv6w8"; -"barr-2015"="49xzdbhvj8zv55qq3rgsk85rqvn7idmb"; +"barr-2015"="rsgsgzki68jgx8d4r05qj1awvi02rm33"; "barr.doc-2015"="aza24jdhm8dgzsq808ipgny35mgq1h5x"; "bitelist-0.1"="22q3ivacwl5p0c8plgg1gjz8413l601b"; "bitelist.doc-0.1"="n00mlj88l6djwcxzj0l6pxiiba94kpl3"; @@ -1231,7 +1231,7 @@ "borceux.doc-2015"="zdg5n9rxc2sfkyi1am8jka05avi7hyng"; "c-pascal-1.2"="m4x5kfq1vm6vzv0ic910fqi1qijn7g34"; "c-pascal.doc-1.2"="v6wqph0gaibfv4cwph5w0axp5sf70m6w"; -"catcodes-0.3a"="ypwhyqfr5anyha3czd8gf0z7njdqnmzh"; +"catcodes-0.3a"="haljpnhhzvyhmnda9vgk77md5zm88773"; "catcodes.doc-0.3a"="pmcngxmc8j8qpqj3vq19hjcsm4jah791"; "catcodes.source-0.3a"="7iswl5nnr8fngix1i66facqa1iyfcsx8"; "chronosys-1.2"="qswnnwyghvsbjf3ddvbl7nl00qxwhs6h"; @@ -1244,14 +1244,14 @@ "dirtree.source-0.32"="pyfcid8hir7vvm6fpwimlfgs65dgzfm1"; "docbytex-2015"="m4jkx2gf05q3ffwfkrk4x9bcwf9f3dmw"; "docbytex.doc-2015"="01w9mkddxm1l9i12i5n5i5ar81xfn9b5"; -"dowith-0.31a"="623h8wyygzq5jcfyyjpz0kgc79ar3ynh"; +"dowith-0.31a"="vdgkjxphpmycfcsimxih7gnhv58hd9vs"; "dowith.doc-0.31a"="nria56x596zhfm2yhfa69dbzpy1wynmc"; "dowith.source-0.31a"="q7xf6lrgi92xcrxqvjmlh5zw34inpjha"; "eijkhout-2015"="hdb3ag2knc67ksx39hmax8x83l0d41kl"; "encxvlna-1.1"="kz3nvz29czk573cxbi5a5l3mbjs3vfkh"; "encxvlna.doc-1.1"="gv5k36s89g2zslq75s2j7ffvwdiz4lkb"; "epigram-2015"="0mg36ybg934n4jxgpf88lnvvc0za59ya"; -"etoc-1.08d"="6qy834b6ij9lirnaggvhqzlq97pva9mp"; +"etoc-1.08d"="wbk0i76lzwi6pq0hrmnzdn226rx7x97w"; "etoc.doc-1.08d"="4dibd870jyhfx8s4ivjgln3wqikprchx"; "etoc.source-1.08d"="mgdb8gz8jsgadzi9pdm2n5c9gdzc1x5n"; "fenixpar-0.92"="61jkr83g6i0bqmp0qg4w09gj7gwcdn96"; @@ -1295,7 +1295,7 @@ "plainpkg-0.4a"="xsvwz9z9f2jirfyzggiv49y0rfmhmnaj"; "plainpkg.doc-0.4a"="b0c8mi4mr6bjdhrwbcplwjw920l4zmbc"; "plainpkg.source-0.4a"="lcrm6734c3dv44wqcf4sp1c1aic0vqqw"; -"schemata-0.7"="f57aj571gh9bnhfsv89mp472nxm47x69"; +"schemata-0.7"="3qik2nhhwhpgkwnay4rsmglh6kffm1pz"; "schemata.doc-0.7"="ij7askyp7ay4zmcib25lfc0scfzkchkd"; "schemata.source-0.7"="9bv0w3lrzssfxx188fgyg9bl9vds02hp"; "shade-1"="4ywc6gkvkgm5fiq6avik748vzj7f23g2"; @@ -1375,10 +1375,10 @@ "ncctools-3.5"="ylcv157i3s3wxwdd6kczkrkbqr9al26h"; "ncctools.doc-3.5"="rr0ammm423b450g6ki2fv1q19dwb12f6"; "ncctools.source-3.5"="vqw4hfzqpkq8svcjjdzanwp1xlhrjj6g"; -"eledform-1.0"="ib4cwbwp814kd15dv6ygkcapi2gpdrng"; +"eledform-1.0"="34050azcglr1nl4ppvq8f01dffc3hlpm"; "eledform.doc-1.0"="pqabw2c15zx17ghhkmnm8gw0n4vbby3i"; "eledform.source-1.0"="yr6snlqsxr4v7jzgwg8lx43zwf9c0yji"; -"eledmac-1.20.0"="rbm3zpy24zgp2lbsd3g2vnq5nyplxkyl"; +"eledmac-1.20.0"="4060zpp37i1dkg0g8vv20fbyryblshzz"; "eledmac.doc-1.20.0"="6l5lkr7h5xbfxjn317d73cri6p31fj47"; "eledmac.source-1.20.0"="970mchpgw8kxmrm7ar5lqylysqc91g9b"; "expex-5.0b"="f26q32yg6rr36snjiphy6k96qr9jsb7l"; @@ -1398,7 +1398,7 @@ "jurarsp-0.52"="bwldii418vmf3b37gnm56f65bzyjrfhj"; "jurarsp.doc-0.52"="2rqnnrbk56p5i1bi7r9l5y9q8mbdmiip"; "jurarsp.source-0.52"="0gwifinaym6yjkimyf2m3dg10pld0i4z"; -"ledmac-0.19.2"="ygnfk93fzk4j7z8cjsvi6k3nwizpp5rq"; +"ledmac-0.19.2"="b5bn57g4dldnpifavq4kl1n3i6ax3drn"; "ledmac.doc-0.19.2"="04dpbc2pcg33k6knx0phw1l2qvg9x5bk"; "ledmac.source-0.19.2"="6vbjwb9vjvz3y3099bbf90zh997aq188"; "leipzig-1.1"="j4bfc0j26a00gl4f6xg615jqj03biw7r"; @@ -1413,7 +1413,7 @@ "liturg-1.0"="73vvqhnk6ll3ibzl2gk7znkfm57k0286"; "liturg.doc-1.0"="r0i6252kbg724crlphqc9rii0xq45jzx"; "liturg.source-1.0"="8q74i94hbnswf7iscpdm889w3wqvcbz6"; -"metrix-1.1"="xir9ys4fmcf3hbqhliisy2pmq5vp93k3"; +"metrix-1.1"="9k344dp2nr280nwyk9h2pl5s0jncil9q"; "metrix.doc-1.1"="p8cl9lqr85ajxnx5jvb9k4fj93xg8r3r"; "metrix.source-1.1"="5505q0y3rrpwnzk0dhjmfbbmiclad5q4"; "parallel-2015"="d8gik6iva6h6l2imix4bxb5w9p8j87ka"; @@ -1422,7 +1422,7 @@ "parrun-2015"="3b2gnwqll6qf6x5f6gzh9ym1vsba6522"; "parrun.doc-2015"="8v8338i5c6lcdgcdcwhfkb0d5brc3n2z"; "parrun.source-2015"="2bvqjwsq7ngr7n11vnqnwhqzldrb73ri"; -"phonrule-1.0.0"="b24ia8vcg5nimymwckd74pdkmxzj6lf5"; +"phonrule-1.0.0"="yj046x5dcl3gfnmyf6nf3z0f27a03f6m"; "phonrule.doc-1.0.0"="54bnf1xx2a4csrincxvz6wdrrc67zk7b"; "plari-2015"="nhdf38fv3h24zqq0bzwax05bfvrzmx5z"; "plari.doc-2015"="i09il1b9f8cchmhc9pj6ndngyym5vd4w"; @@ -1430,7 +1430,7 @@ "play-2015"="r6ryb6v6svlfv9i9j6r2a7ciks2k53bv"; "play.doc-2015"="b5kjgd2gvgz5228m98l3lhaawmdfp40h"; "play.source-2015"="jk04llsraw9d9gl5grvr019rjnkha1h3"; -"poemscol-2.64"="0m7sqdjx58mi693hki38kvp8i1hvgzml"; +"poemscol-2.64"="y5xvi7bqj3949x8bwj25777dydk0zyjk"; "poemscol.doc-2.64"="j9077m1mvznzpcvwyjw4s2szrk0wvkcp"; "poemscol.source-2.64"="cvvcaamvadpgziy64mqih9b7id3gfnaz"; "poetrytex-3.0.0"="a7a68naj2vngygl078qcy6qpyvgjqp87"; @@ -1455,7 +1455,7 @@ "textglos-1.0"="lfdr25rxphjmck47gv10zr6dwiwyczla"; "textglos.doc-1.0"="k8945zjmlx6n8szzighhs4fa1z8zc340"; "textglos.source-1.0"="mvxkgnsda7v23v765zh7mzg1fzcn0hdn"; -"thalie-0.6"="crmg2pjnzdj9s43npadd2wspscy3wkpp"; +"thalie-0.6"="zp108xap1cvfjgyw8c2945003bk2i1c0"; "thalie.doc-0.6"="p3g6c77337cvmaz3qlbn1n00y7cr10qp"; "thalie.source-0.6"="sp8h1h930vwd3vwci4nivknw1gcy72zx"; "tree-dvips-.91"="rh2g20j87hg69iym0in6b1jdg5icgina"; @@ -1472,13 +1472,13 @@ "ethiop-t1.doc-2015"="92ly98mz1iim1gfh4cm8hjwc17j9kjhl"; "fc-1.4"="iyjlb5q55khnp515n1snhpnfrrmfn1pm"; "fc.doc-1.4"="wd9bn967d6nzzvdrvim470l711v1jkg6"; -"amiri-0.107"="llahp6zhbxv2j0sk0wwqa669dbw49s8a"; +"amiri-0.107"="cs1gys4fmdh07y383wgar0qbaz0irwin"; "amiri.doc-0.107"="6d6qj7zlxfqfmj37m5bzrdxag0gq5gk5"; "arabi-1.1"="6z4lwmawzbm63ln0qkpsscv4a0pwnpfi"; "arabi.doc-1.1"="cpsn1fgrlivbwqb4n9qrpq3q69kdy3nj"; "arabtex-3.17"="fr7avfkwpdbx619kq7h1y31bx4nmkp5v"; "arabtex.doc-3.17"="b5ng3w5g40m9c3x87nih862msx5nw292"; -"bidi-16.9"="5lyvl1rv901ks990nllkld01ikid2c2v"; +"bidi-16.9"="axxdqpgc6kv4ysyfmv0cf7647d3rn8bh"; "bidi.doc-16.9"="22rmrf6sz02cd20a1ajbslgi0wdkg6sh"; "bidi.source-16.9"="6s9757h30yd4nsb915r9rj0axp1k66ic"; "dad-1.1"="yq0xfr4sfvvwzsi9crp6bqagcbnz7lkx"; @@ -1488,7 +1488,7 @@ "imsproc-0.1"="ylf3kd1bc5rafzfyil4y7wxp6vd9nsm3"; "imsproc.doc-0.1"="3kv8qk7pnfg2w7xm3lqcimi8vhx8jwf8"; "lshort-persian.doc-5.01"="hba2q0ni1c873gpg2qp835csinw78yi8"; -"persian-bib-0.8"="rq6lixi2x7f31my4kh7zph5qh1czrz2l"; +"persian-bib-0.8"="sakc18mdqnzymfvgkwsxvrjd9b5a7dqm"; "persian-bib.doc-0.8"="icpy1cr2s3z75a2a2bprbjf7xpnbfanv"; "simurgh-0.01b"="n8bv87n12x5xv3h41487vyqpbigv3qkc"; "simurgh.doc-0.01b"="z3qq4jx25qyxqmnfbpsdsayi59fkaff6"; @@ -1502,18 +1502,18 @@ "cns-2015"="3m0fbs91x53iiqvzl0hs68cks7y3m3q7"; "cns.doc-2015"="1ddyimvshda2zf3mcs6rk1n4py2aglfq"; "adobemapping-2015"="46h34i2sf5hvg0424f89gdcxipcqgrqp"; -"c90-2015"="96cnirvyid53dckl551zdz4zhlz0d29z"; +"c90-2015"="jfyd605szid7j3a757fihxhlvaqvprdd"; "c90.doc-2015"="1xvi3r9mrbjv4ldas4i27wahvr1axybf"; "c90.source-2015"="s0gycycz1zlw7fs57mzphsyisd9044w6"; -"cjk-4.8.3"="mk3h6bavv88m2s2q736w7f9w8sw4igfb"; +"cjk-4.8.3"="zdw3lfngj5zg5d118xjndaj5gg7r0wy2"; "cjk.doc-4.8.3"="wpp182lfyg5fyw45cvxrsncql5zb2vfh"; "cjk.source-4.8.3"="m09m0j8p72pfczswb3rk66nj15rbm754"; -"garuda-c90-2015"="gjx6fxnxmnlp6cqq9fynybwp23qwv9x6"; +"garuda-c90-2015"="d9m07vl6glf3zjb44whqb3flsirwwcx1"; "garuda-c90.source-2015"="cpj6fqd8jc30mgqdwjn8191fb4aingrs"; "fonts-tlwg-0.6.1"="saldmbplrrmjf0bl4qknmxlr4c6yp4bi"; "fonts-tlwg.doc-0.6.1"="n5388643xf206hj2mm9msw06mfa3kpy3"; "fonts-tlwg.source-0.6.1"="azz5bkyyckxl9qhv0dzsw09wcxn7wwnd"; -"norasi-c90-2015"="hnpc5w7xm4gfbgnq8br1w9sr8a413d0c"; +"norasi-c90-2015"="d0972qmh7nk9isx54d46f7jscg6mwcrz"; "norasi-c90.source-2015"="svdil8m06qbryalj465znhmnsbds2gc1"; "uhc-2015"="viphfgiqfb1w9kb8103znmzy09n6i45n"; "uhc.doc-2015"="hp3z13z2yxkrgr7z3qa8pyf4d98rd37z"; @@ -1525,30 +1525,30 @@ "cjkutils-2015"="8w069zvnnpkr2qcmsqxh6p64db57b82g"; "cjkutils.doc-2015"="jd4968qp9nd9xiqv13k7vamfg55g8lf5"; "dnp-2015"="jf1zsbg60d074ksrz0xk9ihybbabda1f"; -"xcjk2uni-0.4"="8gh9fp1qlqs0fv9z2pa0i5sq8r1as38a"; +"xcjk2uni-0.4"="l6j4sljczkgy1javijbwsdw92y5xlk2x"; "xcjk2uni.doc-0.4"="lmbgjb03n1aiyry8kgvabzp3y1cg1bfi"; "xcjk2uni.source-0.4"="994jnqkhggpnv5lb3b09x55shscqjsfk"; -"zxjafont-0.2"="jh5j0a7r0kyyhm7kphgcb1kdmghk8y0n"; +"zxjafont-0.2"="i9wmw8gl8rdqj2jyngwpq58cb9rfm4k1"; "zxjafont.doc-0.2"="sgkf8i5kwb23a3rx7k1a6imhd42jsqi7"; -"ctex-1.02d"="d84p5wdngbi4v4xfy5rfvw0ddsmxsgw7"; +"ctex-1.02d"="zvfzmq1wim058fkcyh5jismrg970a3i7"; "ctex.doc-1.02d"="nbbh11509rr34fibjxqm2prmqmgvm440"; "ctex-faq.doc-2015"="vjxcdrg7i6p9fgrgzfvykibjghpigrz3"; -"fandol-0.2"="wjjv06871xahmfvqp3bfy2f4c913sv1j"; +"fandol-0.2"="lxnjp8m4fcj3pv2hnhib6gjdh90q1ncz"; "fandol.doc-0.2"="k2rx87hrsykibmyj4daa62wy6s3s9d51"; "impatient-cn.doc-2015"="8k1gcnqs5gghbarikj17ykh4vgahpqbw"; "latex-notes-zh-cn.doc-1.20"="qx777fwi8k06qvknnll3crc1j0yvraxs"; "lshort-chinese.doc-4.20"="icxwgr6rlsbizbz6k9b35vx5v1949cbk"; "texlive-zh-cn.doc-2015"="h3d9007kc52xfhi6rzi8il0zl3kcbdq6"; -"xpinyin-2.1"="2w3jiwkf04z975b32rak99nfv0yg4qdl"; +"xpinyin-2.1"="8pxy75hz4frxwkr2d8mdw8zpjd2idbza"; "xpinyin.doc-2.1"="30g6inhfmkj4d0if669lcqv0857jj05j"; "xpinyin.source-2.1"="kkdkzgl3dad0i0zj6hjdp3h1d5vwbbcg"; "zhmetrics-r206"="2li2anrf74242blfd59cxfyn13iwmfxs"; "zhmetrics.doc-r206"="njh801caaxkfyw5nsfv3q36gkcql14pj"; "zhmetrics.source-r206"="ls3gazkf44sdal0f0k8n46ml2fgigfsm"; -"zhnumber-2.1"="xqsjsxsang8f1a11476j9cgfpl4alwc0"; +"zhnumber-2.1"="agyv79wirkaglvdcrqg8qm5abfwy1qh2"; "zhnumber.doc-2.1"="7895yyhkn0fryzadq0qcrgq2x09skq4p"; "zhnumber.source-2.1"="j658fyzbxaz70khvb3yq7rlf0ws4myng"; -"zhspacing-2012-03-14"="mg2qkkgnyfz3ali5nlxn4rnsljghn59z"; +"zhspacing-2012-03-14"="ix7nip1yc8y1gfjzby0wskn0qlsy83ih"; "zhspacing.doc-2012-03-14"="60yqnmf0wqb5jjrmcbj8z60skwycl56l"; "babel-bulgarian-1.2g"="4c5cdn8lijfw1qhkfz69pvlvl2hcg5hz"; "babel-bulgarian.doc-1.2g"="pyikwcg47yj8nh416g6wdzwk7a7f460p"; @@ -1910,7 +1910,7 @@ "umlaute.doc-v2.1"="hkjv5ym6954i5l2qxv3jm3p1prbn55h9"; "umlaute.source-v2.1"="p6217bas6hm8kksip8jkb2bhdpa9p91w"; "voss-mathcol.doc-0.1"="f15dshkczyv9r9a6vzps3ls1cz95sk8v"; -"babel-greek-1.9c"="qfddpnzqaikplb95m7v3cb173csgdzpc"; +"babel-greek-1.9c"="gnx9s4l8viykx9f9fda0x6zcchfsvncd"; "babel-greek.doc-1.9c"="kmm6ql1arfpkvh9bgpm87ngmvfrk00ba"; "babel-greek.source-1.9c"="ilxw4lm0d58vjy9ydiyc7k947d6sg3c4"; "begingreek-1.5"="7v94fdb2kxzwgvcsjfd5gnqpjhsrgp9i"; @@ -1924,9 +1924,9 @@ "gfsbaskerville.doc-1.0"="7sx91lqgpn4w4xgbdbpsk41i5mxixqf2"; "gfsporson-1.01"="k6gimiba8zfbnf4wc4zjrmwwc7ggnxkg"; "gfsporson.doc-1.01"="6i47g0k5ys9q394g6q0a3686q4h75gz3"; -"greek-fontenc-0.12"="6fpka0yi8j2ppb557072b21hhpng9n89"; +"greek-fontenc-0.12"="2hc7j372kndq25ygcbyp0d18wmvsdkcl"; "greek-fontenc.doc-0.12"="z606bwm2wcjqfxqqkqahm1b1qrx5m2xh"; -"greek-inputenc-1.5"="jq6bd7q4zrshz50wqz4zjw7a4idb9fba"; +"greek-inputenc-1.5"="nn3hvxmpgpr5jhj5l90dhl2c5lxg7q24"; "greek-inputenc.doc-1.5"="f33vxp2rm1x10pspxh7698j6p2xvnc64"; "greekdates-1.0"="zm8cfpsxp12s6n38n7lgzha482124m7v"; "greekdates.doc-1.0"="lyhisq5vmvxpmc1g59dxnpkxnvziddzk"; @@ -1949,10 +1949,10 @@ "lgreek.doc-2015"="iwa1xfg3sawwblifpgkc3na1r3hld02r"; "mkgrkindex-2.0"="v5hb36lspx6xyzzpm8ryprr7mwwpcrm5"; "mkgrkindex.doc-2.0"="mfpkm8mm8n0nqhzgnm70yjy16lzjvvhd"; -"teubner-4.5a"="4z7ikwvabkj2xkfyhjqr4r84pdhngqi6"; +"teubner-4.5a"="7h0mh95kwrp8l3im9fq4m4my65hxcwpd"; "teubner.doc-4.5a"="zc22j3cgy1ncas4qxvwh2702vg7pvyk7"; "teubner.source-4.5a"="s2s6hkvnxb1j6w33ha1bx9mpfmxg07gd"; -"xgreek-2.6"="lvccckgib9ipiqwpdw1p6qjr6r404gsl"; +"xgreek-2.6"="94vkxb75wd3immzm002xphqzw913jfn1"; "xgreek.doc-2.6"="9x4zdpv300x0y7p3390xp019fmvmj22m"; "xgreek.source-2.6"="g3hhrk4b4iavbj71hhq5n5vyxkqyq06h"; "yannisgr-2015"="0pjpl0qghjh6qdgy7snalxyxw6ca6cwk"; @@ -2012,7 +2012,7 @@ "bxbase.doc-0.5"="0rbdki8mbd6z16xz2wapachnxm8yncxj"; "bxcjkjatype-0.2c"="ab1xwylw4sijrmxf9ri6skvg79xahsc9"; "bxcjkjatype.doc-0.2c"="v0h7kjrfcpswvw3rr2hf99gk90wbi9sr"; -"bxjscls-0.3a"="xrmigwlbrk15an75hxqj06zw3rq7y86v"; +"bxjscls-0.3a"="8wszzgavinwc3gvfn47gcy5ivk943ymf"; "bxjscls.doc-0.3a"="f847lx8zbjh6z9darkxrzgb5pk19nkk2"; "bxjscls.source-0.3a"="6z2snh3hi49l3qymr9p97az4bjbxcsr4"; "convbkmk-0.10"="nzdsi8as7xpp83w064r6hwv9lv41fiq7"; @@ -2022,30 +2022,30 @@ "japanese-1.3"="bhx7258l34dp6rnim62i8hfjdpdaa3yp"; "japanese.doc-1.3"="yg6si864mkna4svdlmrv0hbs5ndrdgd0"; "japanese.source-1.3"="vgpac9smlyfli4fz4k1m807s0l9qmq6d"; -"japanese-otf-v1.7b6"="3mnxmczajnjjslws0vhg9xysg5cc71yi"; +"japanese-otf-v1.7b6"="gg3a77f64a0hikr7vy72sbkbgalrafp2"; "japanese-otf.doc-v1.7b6"="4q54k2hdnq3yqwrdvj782ys17d9y019b"; "japanese-otf.source-v1.7b6"="9crkbzn6bn2r9b40ms5fs4hc5hrvaxw7"; "japanese-otf-uptex-0.16"="nyxs33g2s0ra3p5glc2bixs99d2y21gj"; "japanese-otf-uptex.doc-0.16"="dhh6vvdlj2ynw5gkaqibj6gb32ymi2xw"; "japanese-otf-uptex.source-0.16"="c2nhgc2a9h9yxhvjgdva1gyvb4a7ni6x"; -"jfontmaps-20140301.0"="fj0fc57flw7rn25iwi6fgzwkhxx7873x"; +"jfontmaps-20140301.0"="3nr06l8xz4f6dbkv41arnn2lr85b6g6l"; "jfontmaps.doc-20140301.0"="pzc08issm864g2yk1rak705n9sikr05w"; "jfontmaps.source-20140301.0"="v57f9rwaqyp6pssk63a1gqriycx8hfbs"; "jsclasses-2015"="ll9ymhjaym0ip3b1hicfanaqnp964571"; "jsclasses.doc-2015"="hcnrfmk77v35h6mq8c5is8fscvbi80g3"; "jsclasses.source-2015"="26v2qml65yd158p2x9jr42w0asfpivm1"; "lshort-japanese.doc-2015"="5b8svqq4w1ipn3737s73pk969s8yv63d"; -"luatexja-20150307.0"="q8bc8zk060xb2zkvlmshzvgzxwak0yii"; +"luatexja-20150307.0"="n4wyyah1y1y3j37dsqiwvn80368x7qvh"; "luatexja.doc-20150307.0"="743iz5hlv4hishn2gmhkprzvnj52jyz4"; "luatexja.source-20150307.0"="8g0gxmxaljdk14pw71080ikgs5sdr69c"; -"ptex-2015"="yd4naq4x5ljpc42dk5izzgd3mndk9php"; +"ptex-2015"="zfasskqjw5g3gynzmcacgb5b21xm05qa"; "ptex.doc-2015"="w8dldswxz9bcv4l66d9kh9rfq00aaff1"; "ptex.source-2015"="km5rr2iczg1d69a4wjkddjfdasyzykbz"; -"ptex2pdf-0.6"="pla25lcfx2ib63bcmhqksq89bx51nc3p"; +"ptex2pdf-0.6"="v4z8kvf5hz5jig8c1fv8aliaczxf3aya"; "ptex2pdf.doc-0.6"="4mysss7vydp8k4b5xr6y8c12wc6hfc81"; "pxbase-0.5"="cfs2rdlj1wsmjnr63pvm49dvhxhjzm42"; "pxbase.doc-0.5"="a9m3kywik9d25vwjlg87bbarx3pd5by5"; -"pxchfon-0.7a"="sq7j29fm5c1xanli0b6d8r33ddc1mbkj"; +"pxchfon-0.7a"="bji0lsjvxfdi6z8xd4ql17lzkg08kryp"; "pxchfon.doc-0.7a"="i8qy6x6dp7aqsyfdr7hd2vwj40vlcf31"; "pxchfon.source-0.7a"="b3ckb9yilxjrzb60ji5hd4xlh4ngx5c4"; "pxcjkcat-1.0"="dzfnrrf8f727a0jhk1fq0w10jqv189fc"; @@ -2055,25 +2055,25 @@ "pxrubrica-2015"="715qrv98q1p45igh4i8vdbahjiirn6cd"; "pxrubrica.doc-2015"="x8sahrizyfs3fsrcj0ir2kp62cd7bvfa"; "pxrubrica.source-2015"="m3pwdsq4d4d8wr1ansgf3l8lv1dsks0w"; -"uptex-1.11"="mnvx2fl6rs45a0rw14hw2296abyd9jlb"; +"uptex-1.11"="9mjgf7qxf7c55h1wik4j1wy8dlq8nmjh"; "uptex.doc-1.11"="in2x9in2ibk6yixlcwl8j0g4fqr14az3"; "uptex.source-1.11"="4v2x04fyszpl9xs52ncldb9wdycw0adh"; "zxjafbfont-0.2"="gqmmwcbw81z91mwqf731jk0mgdfiw8d5"; "zxjafbfont.doc-0.2"="0901rpw6rd2wivh0fsqnna6gywc6j8hh"; "zxjatype-0.6"="9qhfs4jzhh2hg62bbdgczns5p6lp4yxp"; "zxjatype.doc-0.6"="dsbn56x5h53lz263hq1llbbb7s1v5cxq"; -"cjk-ko-1.5"="dx19cg9jd3l38ai818v7v7l1qr5fhjip"; +"cjk-ko-1.5"="5jhwc0gp5w380v8jb89c78cz8dzvzp5j"; "cjk-ko.doc-1.5"="kpnd7xahvfvwizwy44m9k41z6kqks29w"; -"kotex-oblivoir-2.1.0"="s2zq9gdk6l55r5m4b90j0bsb951p6iyi"; +"kotex-oblivoir-2.1.0"="b4awgfxn4990kjv0gjv8vgifik5pz48r"; "kotex-oblivoir.doc-2.1.0"="rb6s6mbi1xf20lqr4q05xx9q08299yl3"; -"kotex-utf-2.0.1"="yv61w0rbszl849y0qw1nbkbg9a4rbmlz"; +"kotex-utf-2.0.1"="x3j8gcy8ylvgpiwyrwrgl8wjj9gdrp63"; "kotex-utf.doc-2.0.1"="hx0z6bm33m4smcm6vi66dymq532zx7gb"; "memoir-3.7c"="l3v0nybdr45nfa7a1812h990gg8hy3wq"; "memoir.doc-3.7c"="83zhg1iwy5955hmns2mvm780jx10qd4d"; "memoir.source-3.7c"="asrkc481acshxfygfv8lqywy84w92dpf"; -"kotex-plain-2015"="0g15d5d5mcmcd7dy52man440k4dppixs"; +"kotex-plain-2015"="wa5ifv962vi96ikyv53b6x7wg1fi67c5"; "kotex-plain.doc-2015"="a68fkivzj54ars0l1qjfbbwd1m6y9p3x"; -"kotex-utils-2.0.1"="qaidfvm03nw0zw1nr2myvq1j12vn1z0v"; +"kotex-utils-2.0.1"="gvq7vg419f2wqzl6xp9mcffclvh65hs6"; "kotex-utils.doc-2.0.1"="yif8x84hcay6bv8mqq4claqw68mzlbjf"; "lshort-korean.doc-4.17"="1g5islw4v6x4s50zxb0zgc3nhk83yf06"; "nanumtype1-3.0"="b1wscjlknaslwhpaxxfi8w2drxg1m770"; @@ -2101,7 +2101,7 @@ "babel-thai-1.0.0"="s3h479l6qbpm7ymfmg6v2y7d4cyi2ga5"; "babel-thai.doc-1.0.0"="yk77akss918d2yfn1halnvfa5635ikyg"; "babel-thai.source-1.0.0"="s0cvg8q806xl02n8m647a7wl4yvspl66"; -"babel-vietnamese-1.3"="dbnqp0hrh3h5nhiplnh2dnzv95kngfjk"; +"babel-vietnamese-1.3"="pi8gc005y8hn42hyxrn7p23kbashsv1c"; "babel-vietnamese.source-1.3"="gha6qy23c18sip068ix2jangq3bh32gb"; "cjhebrew-0.1a"="yrqcf3w89y1iapkax8cmymbckaanim9q"; "cjhebrew.doc-0.1a"="klgdcnc8fkxi7j8y5ckmm3dz08qb8pin"; @@ -2198,10 +2198,10 @@ "abstract-1.2a"="qd0czw54z49h3mxnxlk6drblpbl47sln"; "abstract.doc-1.2a"="qd4dggpq9076j7cma12mkhy238ni4w3z"; "abstract.source-1.2a"="819fv5rryh634fmqic8fqagdfi9h04wj"; -"achemso-3.10"="rs6s8hqg6psh9rhkljcz5b91p0ga3fjc"; +"achemso-3.10"="hqf673avc0j0a16k4qajgfg2xqccmhlz"; "achemso.doc-3.10"="vwgk1h45a5lyq8qdmk1zhwvk13jiwdxd"; "achemso.source-3.10"="irnlgdqxawpz7a63zwv4p9wxx1dxs5vb"; -"acro-1.6a"="218l2lzk1ajsn1s2z7jq2ml13rc2zmx7"; +"acro-1.6a"="5y5a6mbb1inq86g89gq5gy0247ik4gmj"; "acro.doc-1.6a"="rrdx6qhvrlik9d2j5blnpchfs1b4zjkv"; "acronym-1.41"="2spcw1vwwm6mwpl2dvv7wybxvndbsqn5"; "acronym.doc-1.41"="izmrdd0rscib9xa10xm33vvh7bvgzdly"; @@ -2211,7 +2211,7 @@ "acroterm.source-0.1"="w99kkypzq7c73rx4rv4m917c68vnan00"; "actuarialangle-2015"="gdr626xy52l5i3svfgrhj95l092mxz9y"; "actuarialangle.doc-2015"="mrycbdm2blp0b1j0bpg8542m5skr8m04"; -"addlines-0.2"="mlqvbxmig832glvsm42a5p8b1k21y07m"; +"addlines-0.2"="2v5gfg9w6p4p6849lgipiql9x73d5a41"; "addlines.doc-0.2"="w2s3pq9ll4wayd69hyqnxi22kkncr93k"; "addlines.source-0.2"="db5cww7g77ih6ppa9mb0qmv7g8zs97wl"; "adjmulticol-1.1"="pql48y74ir0kniq2zyygqb9yapjj226d"; @@ -2240,7 +2240,7 @@ "amsaddr-1.1"="6sf35pmlda97q2dhi5h7cwan25gi9nij"; "amsaddr.doc-1.1"="m5wxpa9vd09pja40i6lzzrlw62ml5zvm"; "amsaddr.source-1.1"="b66925k432cw6rqwqapcg1h8gjgnvry7"; -"animate-2015"="jslsqpa31sf7mwmabc3qwkqsiln244kw"; +"animate-2015"="8zzflqfggzyamjm60lc7dvzn3s4sjxd5"; "animate.doc-2015"="jk6whknp83x3zvb9477c1qkr48vwdxxv"; "animate.source-2015"="mnwv59486ax9gr0ynr7jafdaxzybwz4y"; "anonchap-1.1a"="qpazykls2jy7nqpqkaqvyi35c2ajz0qg"; @@ -2266,14 +2266,14 @@ "arraysort-1.0"="h5gbw2lvn0zfvhz0s5lmc495yz49bdds"; "arraysort.doc-1.0"="fx9j9a4nhjlfmxvsnqqcxxh7220s1rsg"; "arraysort.source-1.0"="0xdix5q42gnib80gi1pbaxx9yixbjm61"; -"arydshln-1.71"="hrmxq4pl92niszrfb7pb3q90vma0sgb4"; +"arydshln-1.71"="qlglsp1l43b2596zw8mbsl8wyqw1rvln"; "arydshln.doc-1.71"="ailyxzq95hbrwrhmb1s0gb3c3dnk8iq8"; "arydshln.source-1.71"="n5fwa99mbwg645jpqj8ca480v18mfa6s"; "assignment-2015"="f5a0sprx94bby245g2cfycrrazgp00k7"; "assignment.doc-2015"="0d0cafwd56gqn5dacsq4fdgzz8jqks19"; -"assoccnt-0.5"="9pb3maknwyaa0k4wl2h3l83n3zki5jal"; +"assoccnt-0.5"="6bikcn3hf37rs2wp84f9h8nf81z86hr6"; "assoccnt.doc-0.5"="qdjhds8sycibpi40fa4i1malmaigzyp7"; -"attachfile-1.6"="x0zw8vj6blqiaq7dzdps02fzxfdk1cbg"; +"attachfile-1.6"="a8qk19fzxsf3bqkrqjyqmwshb4jv5nc1"; "attachfile.doc-1.6"="nmyhsmrj7gmrd6h4cl1gg838kxrg4pmi"; "attachfile.source-1.6"="fplydbsypx7icfclvyig0g9yzc9ncilf"; "authoraftertitle-0.9"="6mqbsmy9gg6qkwgihzapa0xnlqyscz4z"; @@ -2292,7 +2292,7 @@ "background-2.1"="akcsb7n8iyy4zlcgfp0ikwb5awzdnh9d"; "background.doc-2.1"="inm76hq9brwc39n6bhp9782766mmgwpx"; "background.source-2.1"="54l8p1yj06wlcwxrrmjqjhgmxai9l9s2"; -"bankstatement-0.9.1"="x8imdl5q0g64s99pk4b3llc7fbrdl3ng"; +"bankstatement-0.9.1"="gz4wcynn22a2bg7hbdfa3j5iab5ak957"; "bankstatement.doc-0.9.1"="h9qnzmhnkxxhqkkmrv1zwd5fm4m3fvvp"; "bashful-0.93"="4xa5zrj0cfwm628cycqi053irhdybdj6"; "bashful.doc-0.93"="d9132bwcay35ssw31rsrraq6b15wrzaa"; @@ -2307,7 +2307,7 @@ "beameraudience.doc-0.1"="wkgcr8dyl8ywxwpdc5h8p96dsw9l229y"; "beamerdarkthemes-0.4.1"="nw30s7g9lid7b9vmabvnj3z5g22nxgv6"; "beamerdarkthemes.doc-0.4.1"="kygvsh50b3zi88h51ajnzc3c0xyzb5mh"; -"beamerposter-1.07"="158r0xlfqbxwki6dhcj41ngwlygihr9a"; +"beamerposter-1.07"="mwbgqibdcw9bnmhv9gf04bdivcmlq07r"; "beamerposter.doc-1.07"="9fyyj2x1g091dqkb3afnz1hgpxlbzcn8"; "beamersubframe-0.2"="m8capqp9nc8mbi9xdzkz89nnz41972v4"; "beamersubframe.doc-0.2"="y5m8y5zkbzi553hp8maav6g6a42iklfr"; @@ -2327,10 +2327,10 @@ "bez123.source-1.1b"="fsc7gqwcbpfjlhn0bljq7l0jd8g6zapd"; "bezos-2015"="xfvg3ykycr5dkmi1xc6h66g0a9fiah5z"; "bezos.doc-2015"="6g6lwlra53qn9jh13sy28gzjxn5gcyr4"; -"bhcexam-0.3"="845y05hnfnxkvqh7ypzqyjr2d7nj47gy"; +"bhcexam-0.3"="1px8zypnmrvi26ysrplj54pdz67ajcs5"; "bhcexam.doc-0.3"="iwpz14z50acxphzwfwrw8m7xprpk3s6c"; "bhcexam.source-0.3"="zz5an5jyw3rxdkz5nl54hsi0vr6m98hk"; -"bigfoot-2.0"="v5hxn5p5jnfqxjjvx11wc7vrymdd5cfq"; +"bigfoot-2.0"="i4hdv09y0blcrbhk554ilzc70fv19242"; "bigfoot.doc-2.0"="cl4riiwycqc8b8sm081g9hyr6n9184s5"; "bigfoot.source-2.0"="4yslb248z4zg8xr6hqkypqk54nhrpla3"; "bigints-2015"="6ig6fmxy6wj6k3yc4x9s7b18xbfxj4kp"; @@ -2348,7 +2348,7 @@ "blowup-0.1j"="xg9ka2nvl5acv52k8g8b5h9jaljqj63w"; "blowup.doc-0.1j"="wrbcg9m6l9hr9ywygwr46bgsn6pqyjqv"; "blowup.source-0.1j"="ld500dwp7fkbay30jzvp84037wyvc9gk"; -"bnumexpr-1.1b"="1cyczddlscp7bf6v55vyxx2gqlan49g7"; +"bnumexpr-1.1b"="asvhrmm3rb14s1mlzyfb86gigd68nc7h"; "bnumexpr.doc-1.1b"="4nlbpzcf586lrp7b2yxri3hhg1frs07j"; "bnumexpr.source-1.1b"="5b6k97l8p8zq4wi5zzl6hpg0ij4mv6v9"; "boites-1.1"="nccwd0yxdm5cr6razvwlkrrb5wxxj1i2"; @@ -2405,7 +2405,7 @@ "cals-2.2"="6wlwfvx4yc3grkw6czi9qvjbjdrz82qq"; "cals.doc-2.2"="4bf5bb1rgiiy7rbn6hhsmj5qqap4s7hr"; "cals.source-2.2"="a6znwcv73yr8c2r24sz2d18vj563dnig"; -"calxxxx-yyyy-1.0h"="jkzprdpdkp7h5kwym8d5lkd9g0p2k0y3"; +"calxxxx-yyyy-1.0h"="8jw4z44q97036yl05blsw3l7dav9xrk7"; "calxxxx-yyyy.doc-1.0h"="jl74kvc88rib7mwr98x4vcrdvqdz6zif"; "cancel-2.2"="gq061h1xf31ivc5zz1wqk7c457m33amn"; "cancel.doc-2.2"="24zhq0iz9iqwm1lnyd6zgzc7dsg9b1gf"; @@ -2461,7 +2461,7 @@ "changepage-1.0c"="s3dd0v3z0g8v74i6cnasyaa70wnqiimk"; "changepage.doc-1.0c"="g63jqnyrkc74dd9ksi0s7pbxq7s4dzwb"; "changepage.source-1.0c"="0ck3lyl2kzvm1182hmw88ni48paff7aq"; -"changes-2.0.3"="c9fhf9azrmc557dicdm414ja00wfakha"; +"changes-2.0.3"="h3nxw2xdajy1xy8sssgpbg2ka8b9fwig"; "changes.doc-2.0.3"="nw248jqsj6vqma940pqciak8hfky8vj0"; "changes.source-2.0.3"="x3v1ww79dgy74wl8zgzbgx2kgs0da89i"; "chappg-2.1b"="231kpsvxwdnmakq4mkca0nisqdl622n2"; @@ -2470,7 +2470,7 @@ "chapterfolder-2.0.1"="n1iyz86gz5mb7ixn2kd48i0rgj28d7sr"; "chapterfolder.doc-2.0.1"="cq3fgi89g5j3l8pjmgb9f76ly6ykdviz"; "chapterfolder.source-2.0.1"="v9hlnak7v7s4bi4942gc43hh03zy33d7"; -"chet-2.0"="jihsshvdyw1mw1zr9w2ynlz4fl24kwvv"; +"chet-2.0"="5401gmabiw5jlcqrxyamzb9ravbsmgqp"; "chet.doc-2.0"="308dj712zl4lqkahlphw2frknka9hzgv"; "chextras-1.01"="mc1ymd3wfbwash00ly9gxk6hcx9rl4lk"; "chextras.doc-1.01"="9rl2yhjmafyp430avjf0dmdmmgb45x01"; @@ -2482,7 +2482,7 @@ "chletter.source-2.0"="q76hqgvq8mjc9zqnxjxlk379gqlm0jgr"; "chngcntr-1.0a"="9bqyqx6ar7pa1zyhgxldm1prdd3df1jr"; "chngcntr.doc-1.0a"="k608fdsycrxdjrjnddcwc6hcirbd914r"; -"chronology-1.1"="2cg1hn31k1fz9s9szrqdlwq9fg3b9j9w"; +"chronology-1.1"="jsrsagv2imvc5hz7mgbqdkdqjih66rd4"; "chronology.doc-1.1"="dssl3q689blb0pj47ix02fkff2j5nx3b"; "circ-1.1"="i0wnc7sxhx96v3jnnsv5l6i5nzvp94jv"; "circ.doc-1.1"="v5g8hhvdn9xhqp9r1k9xahrnc0yd2a3l"; @@ -2506,7 +2506,7 @@ "cmdtrack.source-2015"="hlqnd8ar2w2wyjr7rxi6qbi3mw2ppgsn"; "cmsd-2015"="4b40ccv8788hg71xh6sv12gnzyy2q4rb"; "cmsd.doc-2015"="j3bvhldqzjqf1snv9pbg7k39sbwl2ccj"; -"cnltx-0.12"="dr2irzpxqs0rvv6vb63vw6zvjh5q1qqb"; +"cnltx-0.12"="i7agvf6p3zbmpp0yy54jcz30yk5wgndb"; "cnltx.doc-0.12"="7fygrm65zsjdpsqb6irb6i8i6n713hk3"; "cntformats-0.7"="v6xl1mkldlf6265h96m2q0bylifxhl33"; "cntformats.doc-0.7"="rdam48ljhih6v72gaa3394zlg8cwsb50"; @@ -2696,12 +2696,12 @@ "bxeepic.doc-0.2"="qkfwmg27v6ygkp3d9d1l18zrpribbx3q"; "cachepic-1.0"="hr0pnmjxny590gzhqbwq9qiqd1vcpwrq"; "cachepic.doc-1.0"="myyjxkc21qrwmvx2nvbg2smvzfzi5f5l"; -"celtic-2015"="09bng8gwlvyllf3a5r5rdc16h490283h"; +"celtic-2015"="mr86xyd6md9n5b17a6wga40k8z98dq7b"; "celtic.doc-2015"="zwq3sd7y6495vklxkm0rj4v9xy2rh3nq"; "celtic.source-2015"="440cvrkwgjn0cfi6kbalxxcwkspg8gqw"; -"chemfig-1.1a"="nq05n1gf1yn80m8qzw5x29rm8qqira12"; +"chemfig-1.1a"="klsfh302iw9fzbl4w2hr155fgzld1jw9"; "chemfig.doc-1.1a"="qc4ng9xcf6ck2zry99n28mnf9ymag5b5"; -"circuitikz-0.3.0"="pgvwpbzh3hlqki0wzxwp4n8sp0wn27sb"; +"circuitikz-0.3.0"="0ji7f1grlgn2kgfslc8fshb77sqy77wg"; "circuitikz.doc-0.3.0"="3cqzs5f3nxsami2ibm2bmckgk5byl3hv"; "combinedgraphics-0.2.2"="hr8cvhw9ng0nx1v0v34bx5yppzhw8r3a"; "combinedgraphics.doc-0.2.2"="2s219mqf373sb1rp3dwjd9kdasjl9fdg"; @@ -2709,7 +2709,7 @@ "curve-1.16"="w4a3qv419x68y5ydvi1dk6pnm6ni82ci"; "curve.doc-1.16"="f4n85j7dlkp12vm17vqac8d4hzm1jvd9"; "curve.source-1.16"="gkfbyzhsaknlrhm3ni81jxswdjv5z9ij"; -"curve2e-1.41"="rgh2g3klal9iz6hbwwd39by21v1j6wj9"; +"curve2e-1.41"="gy48z045rdfrzda6vsy0ybwgaynvf78b"; "curve2e.doc-1.41"="wy4nhdj43xmpabq29rn6x95xypgkjkpy"; "curve2e.source-1.41"="6h6167fh3s6cg72p8vxjazjxhrgd17x4"; "curves-1.53"="5v3y0h5201ayjrnlwy6r3d1bv738k0l5"; @@ -2747,17 +2747,17 @@ "flowchart-3.3"="63krabbf5sfqxf0rjb2h4mjksvb9vgcd"; "flowchart.doc-3.3"="697hizfchfd691kx07sl1y84p8l6196d"; "flowchart.source-3.3"="zgn96fhr4z67gpz85717hwwfvkfz2hlx"; -"forest-1.05"="ww8hlkb1d61p6z64cs6fyrin3z5p94ac"; +"forest-1.05"="9djr6jiphicv992hkcv9mz7j7s5pq5qq"; "forest.doc-1.05"="2bpsn78p3q2ay27s20vznmbym5df18vh"; "forest.source-1.05"="pvnwgs90cx65hymg9zspjvyh31phqs03"; -"genealogytree-0.10"="km6lzz5vhn194zz4bkhlzzls4i05kns4"; +"genealogytree-0.10"="jgrq9w6r2kqaa7fh7a7gbl64l9pg673m"; "genealogytree.doc-0.10"="8il7h4d75wh5zy1xjk27fa9mj2gj728y"; "getmap-1.8"="ghp3skiy0znf7vyhl59mfna7sgfc8fsz"; "getmap.doc-1.8"="lvmiaxhc7ghwsxaygcabjsbx1dll8kzi"; "gincltex-0.3"="sqimpp1pb3c7mqcm4jnd40jlahpcnr30"; "gincltex.doc-0.3"="mpr0nv6ldvvc7wgq35qh34csxhxnknmf"; "gincltex.source-0.3"="s0dq3s33c04fqmzi9q9wp09vgfm7qh9h"; -"gnuplottex-0.8"="y4c35kpwkkgsx9gclpcj2j0fnq5cixgy"; +"gnuplottex-0.8"="vwpajdwl4aidnz2jf0gqk6nqyp26vv72"; "gnuplottex.doc-0.8"="5q7i8807mjgqi2vyxhn9kjiryr4q98r3"; "gnuplottex.source-0.8"="mv5bkynm8ks1rhp4xmj3z7ih893nwj8z"; "gradientframe-0.2"="x80zlqzx72n55qpazclikrafwzny8ss5"; @@ -2775,7 +2775,7 @@ "hf-tikz-0.3a"="hfdmzpnpak33573ldllk90rywqz3ngqi"; "hf-tikz.doc-0.3a"="dy6jw7rgbclhb6c94rm3c1bxz0gznqn4"; "hf-tikz.source-0.3a"="jn1iy5nysj2y94ar0s2491l97m1y2rw8"; -"hobby-1.6"="5iw5mdvl906phr3s33ggki7jb91jf6da"; +"hobby-1.6"="6js0d9ylxpxf8gk7h5zada74g8y8icf6"; "hobby.doc-1.6"="mv4a9rr10zd89yich6n04kwsf91r0k20"; "hobby.source-1.6"="g1hq1b6fs216nnfhklsc4mfv6kfn0fz5"; "hvfloat-1.1"="9zvp0b77wng7rqynhkb4nf7fr2g7kvpc"; @@ -2786,7 +2786,7 @@ "knittingpattern.doc-2015"="bq96pr4hd9mg70qqfwjynhix7ljabbk8"; "lapdf-1.1"="g5x8axkiscl5796b82is201vcbdxvc3f"; "lapdf.doc-1.1"="3lpf17r6yqaa7ld8742cp8a7crafpc9x"; -"latex-make-2.1.19.1"="q6m4s41j12v3dm7p53cxm5pfid40rvnq"; +"latex-make-2.1.19.1"="r8xdcw1z65l15vw8bwxhwmkwv3mrs543"; "latex-make.doc-2.1.19.1"="nbs69mk1lrbcc2dpbfxi319whwnjpm0d"; "latex-make.source-2.1.19.1"="xx23l5w1mr2lwpr7mn9vmlcp57k9w4v6"; "lpic-0.8"="74wchk7ljfacnfqy6wn0j9ns5bqzhkv1"; @@ -2800,7 +2800,7 @@ "miniplot.doc-2015"="hi57wciv475ix91zl4rh30lv5pffns1p"; "mkpic-1.02"="m0rzxyzpyjzial8vvd5nm2rny449ka5b"; "mkpic.doc-1.02"="m0v80hkyq699sbmdbv5ydp75ccdh5yd3"; -"modiagram-0.2d"="8c052bkdk8558vmrnrl9rck4jcj4x2a1"; +"modiagram-0.2d"="g2syxjg96d46hkn75ym5p3pszq92kn9y"; "modiagram.doc-0.2d"="9jk09hpqz1vmdm12mdw3blh7nl7ayqdy"; "neuralnetwork-1.0"="3scaqj2kvqri7x23chqymfkg534298ik"; "neuralnetwork.doc-1.0"="xxsvv8bh5174ihqmaxgy5072z92glvhd"; @@ -2808,7 +2808,7 @@ "numericplots.doc-2.0.2"="9dlfmdqslpzhsf8zyfnsqy41qmcgzf1x"; "pb-diagram-5.0"="34vlhfdhm7glvpzprr99v7z7lc8rc8pd"; "pb-diagram.doc-5.0"="8a36mfpszgjyzddfmmz2qrg9fv03r9vh"; -"petri-nets-2015"="iq3325br5psir4pgdf45d55prb0cp67g"; +"petri-nets-2015"="47pfgdp7yxhxyhlwp39718rryhw2jrcd"; "petri-nets.doc-2015"="xx378iw9wwwxc8igpgrryn0bdv7v6v64"; "pgf-blur-1.01"="zl2b6914nny60vlp1fppznbn5k6wq0lw"; "pgf-blur.doc-1.01"="h20qsk87c3x0p74jzlpg5wcsr7w6qmdc"; @@ -2830,14 +2830,14 @@ "pgfopts-2.1"="r3hmv29kc7hfcmx1j2kirk27q4y2r5a9"; "pgfopts.doc-2.1"="qb2q273gcqw9p1wjzw8hq7z13f689zkg"; "pgfopts.source-2.1"="g9ya18k22lcd5f8aq3anl152d98h6b7z"; -"pgfplots-1.12"="fli79xq62gqm7aqwl4hwygjkrm3dcigm"; +"pgfplots-1.12"="54gbrpjj5d6254nbp8plsqnlw5a5mmn8"; "pgfplots.doc-1.12"="0zw2vhcksm8ddamb4wbxvry9ksmwc229"; "pgfplots.source-1.12"="2vcrpxbbixc6lnblzrqfj43n9chr6ggl"; "piano-1.0"="vbbcddqx5sk4gg9w1882g4a8lrnnqn2d"; "piano.doc-1.0"="bn1c29lffw62jsyiygh3i0biaaz0asmv"; "picinpar-1.2a"="wvxa8vjglc2v1k8dcszj32wx5jgmsm3w"; "picinpar.doc-1.2a"="ix8d6091agdxivkq3pj0xv5afksr16xj"; -"pict2e-0.2z"="2kwnkab0pd18a38f4k14iklywxn9jkmj"; +"pict2e-0.2z"="rmhf7g2w9a3qv2a4il24y0905swisx5p"; "pict2e.doc-0.2z"="xwwylriwczxcyi98lrsx29mz5xhbyvmn"; "pict2e.source-0.2z"="jh0i51wy4s1vgc0h57ypgly2ykhwm3k1"; "pictex-1.1"="3wr03wxjs0nbpncsyzzz2flz5h383a30"; @@ -2862,7 +2862,7 @@ "randbild-0.2"="bkb9mlnckwhxirdsck7pzqki670mgns4"; "randbild.doc-0.2"="v89kxn1iiw9spvinn8xcazp81w9a0nb3"; "randbild.source-0.2"="la433aq038bqyjdv40rvdkinsiq7bf07"; -"randomwalk-0.3"="kkv2wzlbywy291vi645g90wajqk4zmx6"; +"randomwalk-0.3"="bqnliwqf7vq029srzxpkq7nn400c6jyk"; "randomwalk.doc-0.3"="qli9naqc5qlhppak3ynki0gf39r0gy2g"; "randomwalk.source-0.3"="qbgpwbln1m34phifap9ywpr7gv9rdqkr"; "reotex-1.1"="yzydkc30vf6csv388xyf4lm9mn894781"; @@ -2879,7 +2879,7 @@ "smartdiagram-0.3"="s0yg41ckmjrch8akwy5n14hmv1x4x8z7"; "smartdiagram.doc-0.3"="mqfb7n14whfmai3z2qw6ixjpd94snlk9"; "smartdiagram.source-0.3"="lx2y6g34z0smm1ysn4pisdp8zhdmb81w"; -"spath3-1"="4s7mp1mg2wq3rar4wdnxlb0zxcb1lm2n"; +"spath3-1"="gcf13xh7ibd3pn63wz9ffzf9bary3ipx"; "spath3.doc-1"="gz6s5y3ynaf6hpfih3rvdz63w828d99i"; "spath3.source-1"="yhz3ix0b7cv70pn1i59dcb3dcg5nw2c7"; "swimgraf-2015"="x77prbkrnadhj57fbh68hqsmrbk2qsis"; @@ -2931,7 +2931,7 @@ "tikzscale-0.2.6"="7cc4pbv23n95rb1b80p1y7w8m55z59yl"; "tikzscale.doc-0.2.6"="qb6yk80pbipaq95cgasija63px2v836w"; "tikzscale.source-0.2.6"="2spzfhaff1wn11brhjcx881jmql261ad"; -"tikzsymbols-3.0f"="d7sfdnfdmabxyc38q6hdqa46z6rghhv7"; +"tikzsymbols-3.0f"="2gzkcmcbmdmpgmdvvpn7h9cwppx3dndq"; "tikzsymbols.doc-3.0f"="i53v40i69bf66p518jaf5kfl4qjn3zzr"; "tikzsymbols.source-3.0f"="aswr75mw7cyf16xiwsvwrz2bmqzvr5m5"; "timing-diagrams-2015"="89d8m3lh174y7p3xx2iqdkxnq71s7fzq"; @@ -2953,7 +2953,7 @@ "tkz-kiviat.doc-0.1"="vqm5px5ydhyxqfl5p9igi6smc71wvdj6"; "tkz-linknodes-1.0c"="zhpwsq9xpjhpr0spjlxg8pjfqcgk8l0d"; "tkz-linknodes.doc-1.0c"="n29zmirvb2zdmx7dvnfr51abwfwlfp28"; -"tkz-orm-0.1"="l6zbhy09anbgb81vxc62w33sxqqd6fzd"; +"tkz-orm-0.1"="kvjkkbbapnd2f03g4h48ic729s8yvn5z"; "tkz-orm.doc-0.1"="lisvg1jd94jf5z54znx137pc4rdxzrby"; "tkz-tab-1.3c"="9nbbbpgvmr118ww6a70vdz7xzqzwdpg4"; "tkz-tab.doc-1.3c"="fz6yxgwm70plmff6ga99x5y31mrn0wk8"; @@ -2961,13 +2961,13 @@ "tqft.doc-2.0"="9bb0qa1qwpsdy8wx3r5cjhq9ryy6wg6c"; "tqft.source-2.0"="2bjz4a1qadajnh25srakwvq4qb24rk96"; "tsemlines-1.0"="qd021jr57lay3xa2hwms13x49y9f3q7v"; -"tufte-latex-3.5.0"="siswv73hbm673x0j7iar24hnnycwy952"; +"tufte-latex-3.5.0"="fagszla48gaakgcvvynmhcmk8c2qvbf8"; "tufte-latex.doc-3.5.0"="izd822yf4ffkfhx1gfri76a9ydllj2gf"; "tufte-latex.source-3.5.0"="a77l7d5hs0z9y02gmzswgm948dlmwwvv"; "ifmtarg-1.2a"="wx2341bljdqhc4844w5b3bjh6clq0km6"; "ifmtarg.doc-1.2a"="jhj0bgi9zb3j7cm5xp3cfkvq359yk2zx"; "ifmtarg.source-1.2a"="kzgc2yrn0pkmi2712sg93y2dm8m447h0"; -"paralist-2.4"="81dr0x5r19wivp3l4h677hmmayjz1vhz"; +"paralist-2.4"="xhbh9fnqwfljdls86cd3k68djdavz9pz"; "paralist.doc-2.4"="0g7qfwnzq100pm8p9l9p1n0zmrihf0gk"; "paralist.source-2.4"="1v7dfh3n231vjs0js53r0f9vk93gb1ld"; "placeins-2.2"="ac0ckzyrg9k2akv26dg4hck4q3w3z141"; @@ -2975,9 +2975,9 @@ "sauerj-2015"="9x0hghvh5wh6jljwpyf61c6pc4rl9jaa"; "sauerj.doc-2015"="zk8dghf07j3ijvnr3zxw2bajqx49nbaj"; "sauerj.source-2015"="j1bdzs9ky0ycfh00sdynswv2vfvx7nmh"; -"xifthen-1.3"="a24pa6x9s61wh56c8z3803f90221g2zw"; +"xifthen-1.3"="4d6x7yb6hdr4xg2dn572gwpfnykppsph"; "xifthen.doc-1.3"="xnxiha89g0fns5wlwgywlk10hhp6wfh8"; -"venndiagram-1.0"="y3rvfqv2fb9cqlfjr87r1yq4l9pz9l81"; +"venndiagram-1.0"="651nqgk2id3a7hxbb6j5rbcv75mhbsvg"; "venndiagram.doc-1.0"="8gccc038llh9sbcl0fvmrx98acfchymz"; "venndiagram.source-1.0"="5l19sfv4nrkqcbq3vshibww1mxrzhqy9"; "xpicture-1.2a"="b3daw2s1dzkvrpa1lywjgqnrahnn539g"; @@ -3007,7 +3007,7 @@ "combine.source-0.7a"="j9i3psfzvamyz2imf8mmcf4970j9k9gf"; "comma-1.2"="ai1p7vnnzvazd950aav3xnjggmzh5xac"; "comma.doc-1.2"="3dkfkh89fy2jy02amwg7kh18hyh7v396"; -"commado-0.11"="q7g2wy4g397xahv6vd5v8n2w7dm1ysn8"; +"commado-0.11"="7jd82pb66a5hapcrqk19bvnszkgs649j"; "commado.doc-0.11"="p3b4z74c4z1qbxyqhpl1957q67x7yw67"; "commado.source-0.11"="pnzl27bcaa8cqv8xg9gldg03js0r9nw3"; "comment-3.7"="5l7ahv2fc7lvrq0fsa8wsll97d8pzbay"; @@ -3068,7 +3068,7 @@ "crossreference-2015"="rghmvk4vfk0la5kygcm5wmnrrzxag6ff"; "crossreference.doc-2015"="p589qj9h7vi563dgh5lp2l1gmpzfkyrm"; "crossreference.source-2015"="pmqnkrcxkwjdsz7pfwmqpjgc2kykv9s6"; -"csquotes-5.1d"="8bi5rzwhy01lmircqwa7gfbg8vlbc10n"; +"csquotes-5.1d"="k629ld2x8j7r6d67n6hcy42581xvgws5"; "csquotes.doc-5.1d"="y8x9zab76a3r5rbv45s8x9y39pyl0dsr"; "csvsimple-1.12"="wj7j3gmgvfmbdaqjjvnbzyk5ywafk47k"; "csvsimple.doc-1.12"="ajy1nsy5icn88h2653zajxy2hpilc6a4"; @@ -3090,10 +3090,10 @@ "cv4tw.doc-0.2"="49ghjsydw5i13nwglc69xmm1z0ypxlyd"; "cweb-latex-2015"="w87x1irky7jm1ixvs8m2ig97pk07m19m"; "cweb-latex.doc-2015"="r4xzcb98w8khj070k9q23ygmq84pxqd5"; -"cyber-2.0"="y0zf0wk83f88n9vd5jkhsbyblq9b4wrk"; +"cyber-2.0"="iqwcr7zqwva7spsayxm3rv5dgslfq8vm"; "cyber.doc-2.0"="87sw3qrnifbhy1r9jkm8c3sb467wds29"; "cyber.source-2.0"="m2lpqsr0r2lv43wxa66qymngsd82irqj"; -"cybercic-2.0"="zwk9q0ms1sd1zpqclzs4rsxp90669p8v"; +"cybercic-2.0"="4j6x3ncl6dhbjmbsr75fp28k9p87lj48"; "cybercic.doc-2.0"="iha1ha1xpj0x8j83ym3sc7i2nr9g4p9y"; "cybercic.source-2.0"="m4h80k04qkvg41cxq2x09s8k2x3638z7"; "dashbox-1.14"="k72p9zmp5197sh13x688gaaxynj6ra3b"; @@ -3104,10 +3104,10 @@ "dashrule.source-1.3"="94ga7n7xpk7wm3j37gp8innc0c0irdz5"; "dashundergaps-1.2"="23qw0dybqym299mk1ygxrdwybxgv25cx"; "dashundergaps.doc-1.2"="siig4cw48w28mwsgrz46b8vdm3h7y47w"; -"dataref-0.3"="0vf0mnx8pykz627bvjwpri0h6w47j4g9"; +"dataref-0.3"="ardscqh2lgwa5233bp1x54rqc43727pn"; "dataref.doc-0.3"="rvbq33xrchy329xqi8yi5vxvlgim15rn"; "dataref.source-0.3"="z4zfhavlgsm96q5x27c0ggfn5r9qngjh"; -"datatool-2.22"="20nqi21zzv2r65p3mkxhlg9a2d5mxhwm"; +"datatool-2.22"="i2wkzvfzhii2bhzzbk3rs2040mp1w8hz"; "datatool.doc-2.22"="jjbi1qbnvf6c73a2zwsc4q22ap4a6rr2"; "datatool.source-2.22"="fgvrjr027ias6dss065nqbc1hy3pvwj9"; "dateiliste-0.6"="s50fmah2lasy1vfkgkybbaynspnh0wb6"; @@ -3119,13 +3119,13 @@ "datetime-2.60"="59y83sl151h396xz62kp975q9vplg195"; "datetime.doc-2.60"="dzj8ihkcdv1hcxxi5vrqbv8ga05mx6l1"; "datetime.source-2.60"="b5x1cfqxg3rlbmdzc1g18i76rk7m1323"; -"datetime2-1.0"="v1swi49lih81d97i8yyi2m71mp267njd"; +"datetime2-1.0"="0n0qssylx4aqb3fvyh650sz6yyf49zdd"; "datetime2.doc-1.0"="9rhdkrd2xxwb9fnh5azj5g13hs3qfb21"; "datetime2.source-1.0"="6zs31q3j0bgrah6qzz3ahhw8zz8z8407"; "datetime2-bahasai-1.0"="57bvb4bqvpdmsysmyd0ijqjgf8yc7bkp"; "datetime2-bahasai.doc-1.0"="v1aj9cfq3cd4s9yggcgpx60mxz4vrfss"; "datetime2-bahasai.source-1.0"="a1wip71zywwd60fs0n6pxswpl4ngvyrk"; -"datetime2-basque-1.0"="d8lw15dxh29c6pqnanwnsd2sbknw57qs"; +"datetime2-basque-1.0"="kph4ka2jrpba2nyjvl13pb76nbqv7s7x"; "datetime2-basque.doc-1.0"="z353vfzhxs3c0kpxsvvyzm7dm8qkcdhh"; "datetime2-basque.source-1.0"="28z22qyj6mwmib0fkzb81a0rmm4iwh71"; "datetime2-breton-1.0"="accsb9744q81vcbffrl8i82k0rsrnrcv"; @@ -3152,7 +3152,7 @@ "datetime2-en-fulltext-1.0"="j2vw6akprfz3kwsjy5rnb6qnlnmxp9ws"; "datetime2-en-fulltext.doc-1.0"="q954riws1f9b7ij9c8h0kg3n8zqdhgk8"; "datetime2-en-fulltext.source-1.0"="54ky0fywkli0nld3ydyqm4k2nnvzl280"; -"datetime2-english-1.01"="qndpaaxp8n0s5gvbpn69mrzvqbmjvbbi"; +"datetime2-english-1.01"="g7v24hvkfxnqb43y0vz7v69nkivf3v9g"; "datetime2-english.doc-1.01"="0f6ckz44lq35k97rjg8bzl64y8vlybdz"; "datetime2-english.source-1.01"="c0hpgwfyd55fsifbc1spmgjgj21328qw"; "datetime2-esperanto-1.0"="q1yk5qiqb6wncsr0vyilpig017ds18wz"; @@ -3161,7 +3161,7 @@ "datetime2-estonian-1.0"="9k079dxfqh9zkicyz31jp7w0hgyd4i82"; "datetime2-estonian.doc-1.0"="xvqylva4d3s5f50r16z9779c740i1cj2"; "datetime2-estonian.source-1.0"="sbxibvxcl3xdga9kkrgq7bxgb375g0y6"; -"datetime2-finnish-1.0"="lhjrmdkhflj4my88564nf0a151sr1lbx"; +"datetime2-finnish-1.0"="mamcyx4qzrfb4iq35ijpmb6j4iplgmid"; "datetime2-finnish.doc-1.0"="qwff8r48waihbhrdav9mpk49kgiq6fsb"; "datetime2-finnish.source-1.0"="6pjzm1bymg6xhfm1ypsl8af3ax3sddgf"; "datetime2-french-1.0"="p4ygxwd3m1q3s26vv7vj3azmfdb2b84k"; @@ -3185,7 +3185,7 @@ "datetime2-irish-1.0"="jlivqyh5vddjahldl0j1klj2sgvqvvnk"; "datetime2-irish.doc-1.0"="r1hggdj1a3ws7wq4dnyma24pf7027qnn"; "datetime2-irish.source-1.0"="vlz5h7d6kpg7hsjy3hc2ava3681v9g65"; -"datetime2-italian-1.1"="y610587rf3xm0hl2x1s3k6hqmzm4v4cy"; +"datetime2-italian-1.1"="q26yh7zchpfg5gb8xraflh4vp7sa09k3"; "datetime2-italian.doc-1.1"="4fjk9w1m6gjh9z76dgxijxak9sr5v5h4"; "datetime2-italian.source-1.1"="2szvlx15kzrl328zdq59rcl9k4mbw224"; "datetime2-latin-1.0"="y6f1id6b3rrp7r0lvzlh34wmz4ss7wm7"; @@ -3261,7 +3261,7 @@ "delimtxt.source-2015"="j788dpwxgryml7ny68nzab9c3dy0322z"; "detlev-cm-2015"="0qc62hjvrkjw02wakm63rsj2jpw6ihyk"; "detlev-cm.doc-2015"="i7nksd52qv4qf6pgx9cbi61ywmjczfnx"; -"diagbox-1.0"="v5iljy8izpnwl3aasmnrmwgxv40688r5"; +"diagbox-1.0"="pq5arykiwz69xmgwhxbsx3736r495drx"; "diagbox.doc-1.0"="99c4wb0k7l00xfwsy4sxn5ph332ja7m6"; "diagbox.source-1.0"="glqlbiqk1772q2y7f9iys0vfwypfq3qv"; "diagnose-0.2"="dbkvix4h3jhwq9pd2g9ydknc87z3zlr3"; @@ -3284,7 +3284,7 @@ "dnaseq-0.01"="719cl1bfw7c1psv115pmrn7bijd0kxsr"; "dnaseq.doc-0.01"="f8yw32bkw0chrk221qga668jpfnb3rk0"; "dnaseq.source-0.01"="7aw7332aklsigpg8fazvv7ips2a236x6"; -"doclicense-1.1"="wdaw6i0g2934kf5vfl4wd2ii7kd0brvf"; +"doclicense-1.1"="y73m15zkc3xic14qfxzk2hr5f5sw95w1"; "doclicense.doc-1.1"="n0fyfbc3d8js20k340ak5nnwyf0vq4mf"; "doclicense.source-1.1"="nz00yshq7ksjpb2rs8bl790c0waqr6jv"; "docmfp-1.2d"="5az4cgljj1gmc28z6kwy9g4h49gzkplf"; @@ -3324,10 +3324,10 @@ "draftcopy-2.16"="jpi5kv4l4r74ahxh9m4nw338hlx9qjxc"; "draftcopy.doc-2.16"="x49fj5rzavabrdw8c8j05nnqxkdjlhpp"; "draftcopy.source-2.16"="b6319hjnccfx3xxfrxz1kmx9813aik0a"; -"draftwatermark-1.1"="m6bjry9jxihip0lwvk1rpdmb694k83dz"; +"draftwatermark-1.1"="r78p4n8jbzjvx8p7gx1fj7fp4h56x4xq"; "draftwatermark.doc-1.1"="wprsak3x7jdv1pj2g4h220qg3yhaz7ii"; "draftwatermark.source-1.1"="i5gdmcwj0s83z6frjrgns1sr2s9d18kn"; -"dtk-1.32"="fzayf19ib77412w9x1577bjmbhg2jjjq"; +"dtk-1.32"="i1xzhq7im38x3kgnzmc00qc2hvf7xaab"; "dtk.doc-1.32"="7l8jdx71bhx80vak3zfcjvlb4y14sdav"; "dtxgallery.doc-1"="fsbqzc353dbd3705kp716446mghsnn19"; "dtxgallery.source-1"="74z8aaywbl3hhfk0lpw3mgw9sinxj01m"; @@ -3349,7 +3349,7 @@ "ebezier-4"="m8m99zabbk55zn8l16z2qjpaw2vilfy8"; "ebezier.doc-4"="mybqgr1ksi07qkwjgr014nbgx47q6rvy"; "ebezier.source-4"="rpwm8s3jxc47d28595qx4gdgipc9aj45"; -"ecclesiastic-0.2"="8wqp6vhgpmmj254ny2sp6qhgglwbxl73"; +"ecclesiastic-0.2"="mw0n2vbpdvh26xpjh29avdz7lf2jhhx5"; "ecclesiastic.doc-0.2"="hl01jc0gwy1zwpdkrxp63drvj63c5cah"; "ecclesiastic.source-0.2"="wa7a0mpv10m7rqhjiqgx4rbwvk03g5xy"; "ecv-0.3"="hb27xhgd224h3rwx0bmrkrf3fyjgcsc9"; @@ -3378,7 +3378,7 @@ "elmath.source-v1.2"="fnw5k3ck3nbphv71xqlyq6yisgq04xjc"; "elpres-v0.3"="31sslizp2zcw6lvjjcv2hgplfsa5754w"; "elpres.doc-v0.3"="xzdg5q7032sn14b31zva0fhvv1abrciw"; -"elzcards-1.00"="frjc6wwjd3ajp2s8zybzg0xrph32w4mk"; +"elzcards-1.00"="7lkq509yp7ibz55kwxfnkvgv1dqzxjna"; "elzcards.doc-1.00"="jdqw72zkc3flikcwkn8vyalgg1al40lg"; "elzcards.source-1.00"="wx0s4v458f8m5gi8jv94nxw5q4n7jrva"; "emarks-1.0"="98dkcqyxwjzmy7r7piap7kmf3di5xjqg"; @@ -3387,7 +3387,7 @@ "embedall-1.0"="z335nw0mjz6g6gjn2xhifqa3ab9i20sc"; "embedall.doc-1.0"="xbw4wwbl2ri0mmikx2vfqz557pq8ilr8"; "embedall.source-1.0"="2xz175j1v7zvc3ndvgnwp5kvqpni6vs2"; -"embrac-0.6"="qny1xrrbhqxl98c1051z1f72bkh5c0sk"; +"embrac-0.6"="fqf2gsgbklz1m6j5s307cmxh1p6vaczy"; "embrac.doc-0.6"="y0iiap4nmfmlabxvgwb5n1zrlijnw1dx"; "emptypage-1.2"="lbjvj1gf2jiy15yj86d6jxlhrk66zmrm"; "emptypage.doc-1.2"="07fnrxjidk9b42610wx6696cah8p1zdi"; @@ -3408,7 +3408,7 @@ "engrec-1.1"="8wc4zbqvp2lgs3qgvhks8fhy0gcafddy"; "engrec.doc-1.1"="3rvil27vakyv0c56wykmhb499a3xfbjk"; "engrec.source-1.1"="3rj7ij1f8rvyb80iaxx0fw8br06w8kgp"; -"enotez-0.7c"="v8fvlh2lqqr3lq3cnf2rxc3ry8q6hc2x"; +"enotez-0.7c"="0jzsqm3x2q3xg65m51xjp921kybfyijh"; "enotez.doc-0.7c"="2wvpgjzm20zyhz1gm5av9vl24m960w06"; "enumitem-3.5.2"="0rjr25bj1ymnpq332cvmmmscrwgjc0cr"; "enumitem.doc-3.5.2"="a4f9yp8sgbxgxvsg6mz3p71pshjm76h2"; @@ -3443,7 +3443,7 @@ "errata-v0.3"="kgx1zy8j3g12czpg8hhnjq6dwa3m8xqn"; "errata.doc-v0.3"="518rdbnh3w5jsk4vlfp93cnag3kaiwmy"; "errata.source-v0.3"="p27pa3b4plzwhxl8vpr7qigbnr8aqv11"; -"esami-2.0"="lbgnzffcv4jcplyc552s4q4q7b28487z"; +"esami-2.0"="jfz4612avdmb7mfmsbi905g36mrj1vhn"; "esami.doc-2.0"="s17k8mnlhsgy36461r8dnmv22yqvw44w"; "esdiff-1.2"="q26sgf5s4ans9qv984p9s04pginqby9z"; "esdiff.doc-1.2"="67vh3nycsw9h9vv7k25agixsmrdg0068"; @@ -3474,7 +3474,7 @@ "everypage-1.1"="ds2s326xkr4qvzz1pd3ln8j6841pgndq"; "everypage.doc-1.1"="8d3v8gk3mmw9vyk9slxwwf8gshq4pcd2"; "everypage.source-1.1"="v920b95jn03slad6q3w3fr97ricjvd3f"; -"exam-2.4"="084lly3x2b2k55yd8ixl9hfjffzj668m"; +"exam-2.4"="1wd664jv1minz25hlnanbvz4xxxncbbm"; "exam.doc-2.4"="4m8fnb88rmfzjl34ln4qiygnl67rcrwn"; "exam-n-1.1"="1xx1p09wlf97pilglzmjxkzfl07mdrl7"; "exam-n.doc-1.1"="pp9rszrsg6b31p9fbyrwrfsvd2hw7k4b"; @@ -3501,7 +3501,7 @@ "export-1.8"="c2cd44yhfphk0wnyaq0db2y5rfjmcvfv"; "export.doc-1.8"="ijjjprbcnjwwj5hf13b61165mx8xdqn5"; "export.source-1.8"="0wz3raz7mf5cqz0j0g977b7ghznxgxxs"; -"exsheets-0.18"="f04lc07968y8pb3xldbr1j49wqfaj2qq"; +"exsheets-0.18"="k55k9sfb5vwp5cqlarycixch64b2bwqh"; "exsheets.doc-0.18"="zirn4md7lv8a7lxjkfvg9fin2yyf2cr4"; "exsol-0.91"="cr6n54w747z8iw7ccfzvy4kv2ly7jl9z"; "exsol.doc-0.91"="sdn4pcdn4bhshp921lacdjd07b72kdba"; @@ -3512,7 +3512,7 @@ "facsimile-1.0"="mhx5jbh4rwv10z6hd3b2w5haj02bjz0y"; "facsimile.doc-1.0"="pb8sj68gxph376h1ph6yb65ncyblxbdw"; "facsimile.source-1.0"="dvjli6r3pr4w74n9mnm2ix30jva6yysc"; -"factura-2.00"="5mgw5za462slpacvlfx8qmy7vvs2ivb0"; +"factura-2.00"="zhcr1b9x0g2dhlzpi5xpy69vmhvb4i9i"; "factura.doc-2.00"="37q3jr1h7ylp76lh5ny2c91b2s5mg8na"; "factura.source-2.00"="1wdpcmjxswgmdqzq0v3nkgd50j51wc0s"; "fancylabel-1.0"="0fli827i51c1hwda0m8wms728x7dfv0f"; @@ -3532,7 +3532,7 @@ "fancytooltips-1.8"="92mbrk8gn6np54fx90qzcgkps3v6k54y"; "fancytooltips.doc-1.8"="v90g2vxn8yqy9lvibqhldwm23cpvv53j"; "fancytooltips.source-1.8"="cgj7harpp7wxh1fvh1wfx3pc0c34nhd5"; -"fcolumn-1.0"="29dr7xjd410ikwwvnngd5hrm147fg9fm"; +"fcolumn-1.0"="3as7qnpb697lii964wfb6zq06g4cp3ai"; "fcolumn.doc-1.0"="5kbv7v12nc2d86vj0j7rmvbsfckgp80l"; "fcolumn.source-1.0"="b1knanp7s0aiaa91bmg1qqw3s2jhz5n6"; "fifo-stack-1.0"="dfyb5qmw70jy72ass9iy0k89criyybwh"; @@ -3602,7 +3602,7 @@ "fmp-2015"="3m6zqb7jl5rn5zgy0dbys5r8y1sp20x5"; "fmp.doc-2015"="3hvfiw6yizjkxnx5h7xlzfig11diglpm"; "fmp.source-2015"="44cqcijnqc5235rjqsmkj4vhmrs9j7hq"; -"fmtcount-3.00"="wl1wz5vrjsn5sbi7q6vjm43xww0imv04"; +"fmtcount-3.00"="wwzhnrff6bafab926bak2kmjdw24gch1"; "fmtcount.doc-3.00"="kj2xs1k06ixyigcswwwhihy9ymqxn8ry"; "fmtcount.source-3.00"="lv25bq2d5fsh29z130qx2axql0fm17g8"; "fn2end-1.1"="qw34b3ki30fqs4dj4fkj6f46aygw0ylw"; @@ -3711,11 +3711,11 @@ "ginpenc.source-1.0"="dkkxzw412c81hrhwnmjw1jgvhz5rrjhk"; "gitinfo-1.0"="a7mcfsqzwi88fsrdbqkwh8p3rd7w51ri"; "gitinfo.doc-1.0"="5dh5bifav6w87hq29ph7ls65yxjhk7c3"; -"gitinfo2-2.0.4"="s543i5sfdh3salg8s0swxiq49plxg0w6"; +"gitinfo2-2.0.4"="dsxgwrlg9j367wxxisxm2wv595xny8x0"; "gitinfo2.doc-2.0.4"="ml38g9xqx2n5ns1ila773kffiwq7alb0"; "gloss-1.5.2"="xacfn3b2z30pnj9lwh6mximrbsfvarfs"; "gloss.doc-1.5.2"="4qial5a0p7ip784xgpqgkl6cmabd9hlq"; -"glossaries-4.15"="0q5k3mbxlzh2idhy6d9dhp6vlqvm5z77"; +"glossaries-4.15"="rlp7s525s27kn5ax7pwssik0a2kjqan1"; "glossaries.doc-4.15"="r5x1fgq6j8pir5mfhns9k0wqk4bnqydm"; "glossaries.source-4.15"="r029hjkjwsshpjp3dim985qcpqbxg3zr"; "glossaries-danish-1.0"="hmaay0viwacnrz7bfz6xlpb03cmsphcc"; @@ -3784,13 +3784,13 @@ "gridset-0.1"="3cnrwcpmlby1i8b2zxx8hwjrqjs0ylbg"; "gridset.doc-0.1"="yhwrqdv5rcbxm0j9lanm6x5g38mw8amc"; "gridset.source-0.1"="bb1kbccwzc806sc9sp7b3dgp0flfamrb"; -"gtl-0.0a"="857hyzx5ywgvh1clkh3wpa1r29wihfb3"; +"gtl-0.0a"="qgz26n49hlpc5s3ckkbxciamp1qvii9w"; "gtl.doc-0.0a"="ihrj3ds00ygkvg0mq4yfxcqy1bandy88"; "gtl.source-0.0a"="7b8c5hxj4v4mn7nwzny5lhw61xqfsjpk"; "guitlogo-0.9.2"="7lfy6i5pq8cg24n5rh2aizbrv5s2815i"; "guitlogo.doc-0.9.2"="lrfcbc5mfy6qfji2c36zqkrva983c42v"; "guitlogo.source-0.9.2"="q5bdflg33yc271228jknv297i0fzq227"; -"handout-1.2.0"="jlk0xc6n3x36m7b4yx50wwp3g6disf44"; +"handout-1.2.0"="57fb4wlfw04ix1w84zd6i6svajpymc7m"; "handout.doc-1.2.0"="jkqkbrhkbjdwqi34x519yk21kzl9gh95"; "hanging-1.2b"="48vqvdis9l05842lr3wp64x14qacr9ag"; "hanging.doc-1.2b"="sicdi70h8j7nnw4p7bj4j3wj2bxzrwhx"; @@ -3833,13 +3833,13 @@ "hypernat-1.0b"="25v0a423yhy68vf125ys0n6p0qhvr088"; "hypernat.doc-1.0b"="0n4qzpmvhks66d0g9gnyizpl44jbh4pf"; "hyperref-docsrc.doc-2015"="5gjpppdrqh8qb1srq609q3kskl9rqfps"; -"hyperxmp-2.6"="fk5mnj1h8f1ng51pyhrm4zpv9c6kf6v4"; +"hyperxmp-2.6"="swhdbcqjjrjlyars1j6w4d1wp8nlj131"; "hyperxmp.doc-2.6"="c1gjn96nazzn0sh9vimv6vny4ajndzvk"; "hyperxmp.source-2.6"="2ln6wysd0qn421lp3v8553dm7d20964a"; "hyphenat-2.3c"="wr2lhsafb13b0zira7190bx5s68fak45"; "hyphenat.doc-2.3c"="z1sj3r1ny1lgixr2fcmsglz55b23f5lm"; "hyphenat.source-2.3c"="x70g8xiz9ss4pw775lz82yncq0x7lxf1"; -"idxcmds-0.2b"="9bbh6fszmdbag7242rhmh2iqndqbsbxd"; +"idxcmds-0.2b"="gh879f4j62vmymyiag89if5k6slra032"; "idxcmds.doc-0.2b"="44wbsgy3ywgy846m2z42spmvxkdi1qj1"; "idxlayout-0.4d"="klk75b8291j9b1j1irbn1xai2m9712vv"; "idxlayout.doc-0.4d"="a8i9vf4rlscys8ig0gls0kllahrf7f9m"; @@ -3862,14 +3862,14 @@ "iitem.source-1.0"="8xp0919wakx5r9xd21mbm4qwvd0l66fv"; "image-gallery-v1.0j"="3skl1kln38c9g31pa8sbx370kw4jp23r"; "image-gallery.doc-v1.0j"="gq0ngnivnwh35m29qimn54l0gigv79fx"; -"imakeidx-1.3a"="nq9dqa79b5rdbd28mx0aaqlzjgj2nsxr"; +"imakeidx-1.3a"="0jk3v6p144qsk3hgc32x98x3kjsdbxrk"; "imakeidx.doc-1.3a"="yr1nrxg4s13gqxqgca0vzjw04gwf0m6v"; "imakeidx.source-1.3a"="xn4mmz5pgimcvnrhq2sggfm6v1x77njy"; "import-5.1"="7i3h4z647jmm3scb0nringfljzk9vv6z"; "import.doc-5.1"="0sl784aip6r53fdas8xyqhjz5vcs6xpd"; "incgraph-1.12"="n14gyn5g1am9dyfqvxyxrqsfxdkg39xv"; "incgraph.doc-1.12"="sp235w68gh5k1d4xg2cxv7dadyjwqyiv"; -"indextools-1.4"="2lj4qz27a5gbapb0k2njqvp5bjxkcblr"; +"indextools-1.4"="sb2fdlrh7xlfhd61g9n3h3s9if9n6wm0"; "indextools.doc-1.4"="dsk7q3hllq48gas6dav4nla88vjphj0y"; "indextools.source-1.4"="5q49c8fxn3mxx4kj0fr9nh1fazl1vjdz"; "inlinedef-1.0"="x9ayxzl60mwgv8w3ispv1xc3qxwylij4"; @@ -3897,7 +3897,7 @@ "isodate-2.28"="chng6rcfh1gy25mwsg30ynxkb87lxv0i"; "isodate.doc-2.28"="mh1wrizl78fgn2xzqd5brm9hwb8zldhl"; "isodate.source-2.28"="81a6l211jzdxbf84x0haybl0w0pifjag"; -"isodoc-1.06"="i7f9nhhyy6hbffckns6bwzzk0n3i9wcr"; +"isodoc-1.06"="x03kg5y95w4ck2j7vp0qn3wymr15qpyf"; "isodoc.doc-1.06"="mf07kfd0vr8pc51mmk2blvsv1vjvxrcx"; "isodoc.source-1.06"="s93608h92m55rsz4pyx1jgry8jkwa7sf"; "isonums-1.0"="50diljpihfk6390ak54ml6gxg6h3qarr"; @@ -3911,13 +3911,13 @@ "issuulinks-1.1"="lw4b111230hkhdif9xfvdrryks1cp8k0"; "issuulinks.doc-1.1"="lcm1rfc9mcx3k7cn1ia3ldfwbv5r36kl"; "issuulinks.source-1.1"="hmn5nsszd3vf27863sbk647fgfh5gxmd"; -"iwhdp-0.31"="fkv4bw8sr1hbzpbp7q4gz6f1hizrs8rq"; +"iwhdp-0.31"="j4m15vz6ky21yk2m95kjz1is1z91vxxy"; "iwhdp.doc-0.31"="q5bbas6g64ijkaw8vk30jhsrdbi22g7a"; "jlabels-2011-06-05"="fw5il0bzwm10lj1ly8fjic2hjiqxnr7d"; "jlabels.doc-2011-06-05"="fndgg419y1rp47d5qifv0k304b5iymab"; -"jslectureplanner-1.0.1"="3rjvh6j4av5hx43xhqzxmz8nfddcmw73"; +"jslectureplanner-1.0.1"="6qmihg2f1gj7lbya03clvmglzdgqbmxz"; "jslectureplanner.doc-1.0.1"="6ixgma0jp2i3yd2pjj0nhhkrvb90xqhp"; -"jumplines-0.1"="h42yhzga1mjh9bqxbs4lpw3d6m01723g"; +"jumplines-0.1"="acxl8nhlznvcwq20n01b41kamc5xmqdr"; "jumplines.doc-0.1"="h93ylcg08v3pva5wlkwpqk2yibf7c3mh"; "jvlisting-0.7"="fi23ykvl6kw34qri5nz2k4mvgjqgbbyl"; "jvlisting.doc-0.7"="gfsf50mnhfqjcqb8bmkfig0n86cmhngz"; @@ -3949,7 +3949,7 @@ "ktv-texdata-05.34"="fdwnms9v43cjsjypsnlq6rw1j3c6zz93"; "ktv-texdata.doc-05.34"="896wnbqpxncc640x8rsi6gia2wh5njxg"; "ktv-texdata.source-05.34"="7wq3pi1mm3r1g209vq31im4n4ib21zv2"; -"l3build-SVN_5564"="chylrx6lrr06qhnrdf4nprni4gi57was"; +"l3build-SVN_5564"="7m21w55hysm26pgl3i5d9y6m2d92ybhh"; "l3build.doc-SVN_5564"="ayhxr5blkjnip1ghpw5vxb60gdw5bd1k"; "l3build.source-SVN_5564"="ihnh6ji3a0fgc6bh4fiq6g1f3nkvjmqc"; "labbook-2015"="x7i28cyfski7ssm9hv28zrlac3inky0c"; @@ -3986,7 +3986,7 @@ "leading-0.3"="m10kyvg2pjysh33gajn8a8hisfc74ii1"; "leading.doc-0.3"="5bc58zdia3qp0742p1hwmxaw13qdgnxw"; "leading.source-0.3"="ks8sv07mg6n12g60aj3s33siha865chp"; -"leaflet-1.0e"="5q7z19yahsm9arlx86n9w1lgf52g865q"; +"leaflet-1.0e"="sm1xci8wbxyqy28av79zwcnscks9y62m"; "leaflet.doc-1.0e"="j12qmvsk295gnhn8b1pmjqggnzf8lpzp"; "leaflet.source-1.0e"="qrb315j4ij7xhl2ngnbk09dda99xfn2s"; "leftidx-2015"="d2q1jibnbyjk72phsf6yj7nxj9l37fvh"; @@ -3997,7 +3997,7 @@ "lengthconvert.source-1.0a"="r2lh184znd42l741g816y2ljrsrbncha"; "lettre-2.353"="4r3qyl971gcbsn182a449ks0vsid70lc"; "lettre.doc-2.353"="gff37hsnpqyn0dbwkf4bshhql8spfzzj"; -"lettrine-1.8"="6d6lnn00zd84rkvazkqpg4gl8xsanakh"; +"lettrine-1.8"="fybjnmp9wr11h1nlxhli9fr4bin99hyj"; "lettrine.doc-1.8"="hq245f2v8wa22w55nixhz1m76c3rz51w"; "lettrine.source-1.8"="94r9kjip0f7vsy7b01aj5pfpy27qzy9z"; "lewis-0.1"="dc7cw320gc531z7m47z3pgby0zl5l6nj"; @@ -4016,7 +4016,7 @@ "lipsum-v1.3"="pcz1hrzisk3nkkcdddy5cm0maq2q3in6"; "lipsum.doc-v1.3"="pq2pnq63l6k34z2kskczpgyspflj3f7v"; "lipsum.source-v1.3"="3md0ig63828z8mw36cas7p6rwlrkm59q"; -"lisp-on-tex-1.3"="4p35bmylpbpjlw5z0bh212977zhriqd4"; +"lisp-on-tex-1.3"="8a4xfpnjajjpck9c9i6qp72r08priknp"; "lisp-on-tex.doc-1.3"="l39dsw6bi06dgqjgix15qvwdgg3kyyq6"; "listing-1.2"="y8ymrx2bxzhz1l0lkjb2nhk6j97q9v09"; "listing.doc-1.2"="i5bgnc303kwqnzkxr7yn0938y0h2nwpl"; @@ -4103,12 +4103,12 @@ "makecmds-2015"="anpaqglvl5rmcy8r2q0ap8m117nsx89q"; "makecmds.doc-2015"="39zxaxxqlmps1wd4rjy42a1hk027n06v"; "makecmds.source-2015"="j4g888p0hniq7p6b30q1fb4qfw3qp7i6"; -"makedtx-0.94b"="3cfgw790dq5imyqgimmfgblid9pnz9bd"; +"makedtx-0.94b"="r5j8ggv4bccqyvy7yhfjpq9dcrl7n1lm"; "makedtx.doc-0.94b"="n41y1m3hm9qfwrzggj69r7p5s37f78ax"; "makedtx.source-0.94b"="5m7621n0pl7ha77vxlgf9jwgqbn6m8ma"; "makeglos-2015"="6bgdfjbhxvfj2my954iinjp1xcxnyq4s"; "makeglos.doc-2015"="g4w2560v1pxm38dj5dsb3irgijzh221g"; -"mandi-2.4.0"="g3fwhq2cyzmhw3n9nwz961dpj4j0f6j9"; +"mandi-2.4.0"="w1yqdi2as62nn1fypkya2ahhb9l64d38"; "mandi.doc-2.4.0"="iah4kbp0r60xmzilhjdrihk2rjgk17v1"; "mandi.source-2.4.0"="kw0m20606dh89r0d2crh7gfkr5jjw6s0"; "manfnt-2015"="1nl2yh0i4qbxg0js1q4h566vbhh9szlr"; @@ -4122,9 +4122,9 @@ "marginnote-v1.1i"="vj1s48zmv54wdcbcr8d1z6fq2czbrnza"; "marginnote.doc-v1.1i"="1i51mw92dsfij533hpmgaxyl8dg60k95"; "marginnote.source-v1.1i"="0g5jcjcls8jhas59v95hf1mn07kss7wy"; -"mathalfa-1.07"="w4cd6wpn1l5lfjqf1l8fk16n77wlg1m6"; +"mathalfa-1.07"="744z9qw8p82cjjsay8nr488fzan7ig8l"; "mathalfa.doc-1.07"="9i2hnwqhawl2zvchk19pi92786g55pvs"; -"mathastext-1.3d"="bv01m6lafb45a6gf5a4qii62whbjmp56"; +"mathastext-1.3d"="gpjsqiibvl4aayilidl8r8jf8c87mk5n"; "mathastext.doc-1.3d"="5zf15a0xi9mcqrc8fwd5dvx9cffvasn2"; "mathastext.source-1.3d"="v7kqn09yc66xphrjz8zzbqicy2gjcysc"; "mathexam-1.00"="4rhl11na8mqzbl9l7wjk53fdhdpzbgih"; @@ -4147,7 +4147,7 @@ "mdframed-1.9b"="kc60c77k0qwqhdmpbk3r777k4q857jx1"; "mdframed.doc-1.9b"="pr5d7iqc4akn0arxjl7ynqsl6dlh64sy"; "mdframed.source-1.9b"="xnqih0l0zng5bmrjfrprr43k6l645kvi"; -"media9-0.51"="y2mh7smy1q7v69qwgp12fpjkxg4pkk0a"; +"media9-0.51"="gizjbg19zah6ilm3bkjiahpc0zji8x37"; "media9.doc-0.51"="d507fgyi9l43i9qcx5mjq09xhn7048sn"; "media9.source-0.51"="vdw2f6nvvgf858d6anp7kpwfbdyp8qq3"; "meetingmins-1.6"="d5x8znpkqcghi9lv4gby2l97smw6kddb"; @@ -4184,12 +4184,12 @@ "minipage-marginpar-v0.2"="39mkfjhflkvby43487kqpwagi8mfb1dr"; "minipage-marginpar.doc-v0.2"="ca67m5ikd0ka529wbi2s22zq5r5cr648"; "minipage-marginpar.source-v0.2"="db4g8ckwnbk7pspwfz9jbvndnzqbmfdf"; -"minitoc-60"="vwz2sm0fgb0w5y4ia8wqn9hlx90n90nn"; +"minitoc-60"="f7vrxxcn8rhqvf35hrmj7m10yh14rjs0"; "minitoc.doc-60"="y5qs4wab93vm5vlz6binzch8mdj4rnlg"; "minitoc.source-60"="05ih0b5yqy4wdxpys1dyds4310gisxhk"; "minorrevision-1.1"="svc8nrmpcahd95mzyggc6vmpfhmd9917"; "minorrevision.doc-1.1"="x12xlc4ja8ksnd9rpnic0c0hymj1sdwn"; -"minted-2.0"="66jqf90wz23lncn8wxi1niizzpkjik19"; +"minted-2.0"="w9ak81alr10ac4pvbdi4awryq1j752qa"; "minted.doc-2.0"="kdrkax5jmn9m1rkw58x4a8yydvcg2f8m"; "minted.source-2.0"="jy6jjfxhqi2699g66bc7jkvzkzxcx40c"; "minutes-1.8d"="90bxwibh5hi4hnj1p44m7xkfcq1rlb1x"; @@ -4221,10 +4221,10 @@ "monofill.source-0.2"="gmdpp4qn9x5bxk24afqs4xg7vzvaqkp4"; "moreenum-1.03"="q6a3sxik7whl9zif8j5bs1bgxcp611rr"; "moreenum.doc-1.03"="f0vzqhha6bbsvwnsgq3ng5v4qg3vkbgr"; -"morefloats-1.0f"="x4xyd6l382bi8fmh9yglbzw6dsgk5mvk"; +"morefloats-1.0f"="dzx390854qkxvhcas8krahqfg2pkg93y"; "morefloats.doc-1.0f"="csdxw9bhv09f7vs3nxjmg14kb99l3snb"; "morefloats.source-1.0f"="r2znbfvg7bcd44j5f3qdrw2112h26qb2"; -"morehype-2015"="7y3l11bc8q7qvsi6y7x0mwsa9n28kqjh"; +"morehype-2015"="7wdy8cw7wk428yy79ca20jlikk3q06ap"; "morehype.doc-2015"="h95pn137fkilmrdiv9al7sfq4hn7q948"; "morehype.source-2015"="iczd2xh2m6qq8s5fwjgvr0f8zpgf4cib"; "moresize-1.9"="mrny3a5x1zkhbxrfqi4px8izf62axxxv"; @@ -4262,7 +4262,7 @@ "multienv-1.0"="r4q7rsyn58q4scrv790dn1jwy2l0w0c7"; "multienv.doc-1.0"="jpvk0s1crqx5y739hr40ajzkc960mjr0"; "multienv.source-1.0"="x75lc8vbar75g490rdpjplwi4fr41ff3"; -"multiexpand-1.3"="m3iz7r8307f4g1k7fna36vchg0km6nmp"; +"multiexpand-1.3"="lzkfpp7kk7hnhpkxx9wfvpmkq6jqd7i0"; "multiexpand.doc-1.3"="2yfq1vdznji1yvl3hw0c9a85jspcmh5y"; "multiexpand.source-1.3"="nifla9khpfixpqz52i3rzhpp294m0cxx"; "multirow-1.6"="yawlvmvk70adgz7s7m32h8aprfgp81vi"; @@ -4284,7 +4284,7 @@ "nag-0.7"="zvdfnz7z0rgwmf5vpj3dg7l0p8xwaxl0"; "nag.doc-0.7"="r9gmc719q62qdim96mzw2sm98vwxsdip"; "nag.source-0.7"="rybplddhj3wzplms9knly5b4fpkny05d"; -"nameauth-1.8"="45j2n0wrzdqhy45hswl6f6wslvndv62c"; +"nameauth-1.8"="rvhzs64iklypwb0k4jwyfrkgmm866i0y"; "nameauth.doc-1.8"="ax2m089r6ibbllb20wyilm087v5jrshd"; "nameauth.source-1.8"="j9bd71a7zdw3j64f9sd5fqaiv8ngjcp6"; "namespc-2015"="6f7x6ldx008l8w5ziahgwl42hb5bws4k"; @@ -4318,7 +4318,7 @@ "newverbs.doc-1.3a"="884wh81zgssy9r9f2h70kank1kdv82mx"; "newverbs.source-1.3a"="d2fvf7fsx5xj7rfmi8wl0g902drq59gd"; "nextpage-1.1a"="b7b41bpr8zk2z6m5il51q9vxb3c8h67j"; -"nfssext-cfr-1.2"="5zb3li7agqxnr70igwp8vsw4hqb0yvf8"; +"nfssext-cfr-1.2"="6d5df6w6qfyscs0j3900l2sfvdi75vyh"; "nfssext-cfr.doc-1.2"="s30b4d08j0vbwy8d7wkxwhqwqp3mpnby"; "nicefilelist-0.7a"="crqgn906x51nq1d3z0s15f9kl29lbg3b"; "nicefilelist.doc-0.7a"="a77wbb5ajkj4ab3dy1zzs3hchac77cwh"; @@ -4326,7 +4326,7 @@ "niceframe-1.1c"="dvds5bwfmca1phblf3jzzgj8rxq6va5g"; "niceframe.doc-1.1c"="lkhliswdxfq68asjbrxal2k38311h9ld"; "niceframe.source-1.1c"="qyrv98xhjmv852cmzrzrban7dj742n19"; -"nicetext-0.65"="jyfgbgps3lp0ddlcv4w7ww0k3976r75b"; +"nicetext-0.65"="i3lvy4awa0igc272xv8mn7n4dfaxm9iq"; "nicetext.doc-0.65"="0hb5iha40sdazy837hd2sx8byzvqs35d"; "nicetext.source-0.65"="fn68hzdpdr84vvvpdrrp722a90frna2b"; "nlctdoc-1.04"="59mlxqz2iiyjz4s92g556xdxvgi2xp3y"; @@ -4354,7 +4354,7 @@ "nonumonpart.source-1"="j2jy48jw8hgcs830h187s9rg85kd3rfa"; "nopageno-2015"="59l05x89jv7q4mm7k73i06rmv467iimz"; "nopageno.doc-2015"="bn5vq6kzp69p03pfjx9s34ckf4h3q6iq"; -"notes-v1.0.1"="hxs1rwdhb2syg1h0h3mh5fcnv4q9mpwb"; +"notes-v1.0.1"="w3rp5aas5n6sks7d5j7b27s11zi4lx3v"; "notes.doc-v1.0.1"="hn20w72lj73didm46kkay056msa4cr8h"; "notes.source-v1.0.1"="23qrfsbbmyds189kcnq09jbmd23mi50f"; "notoccite-2015"="ifpkassfd9j5926gsnq00954clc52sbv"; @@ -4403,7 +4403,7 @@ "outlines.doc-1.1"="zg8b8617kq2vbf6inn2ms6x4a27j8yf5"; "overpic-0.53"="pjgza37bcyj3fvka800jmikglm7i5dkd"; "overpic.doc-0.53"="yg8rhb1nk68y31rjg80mf58l1w6g4pm4"; -"pagecolor-1.0e"="p0idwgh2fb97dr7zjphs7lm0ym54nfn1"; +"pagecolor-1.0e"="ba7q8fk5218ysfhqcdjzb2gknxv78qgd"; "pagecolor.doc-1.0e"="zxvd6msmw87p4wh9892kl7ls5f6d84bk"; "pagecolor.source-1.0e"="pajwr12w4lrwfw94lz7cy2afixl7vs1b"; "pagecont-1.0"="8n68c03h2ckbvv11jj3cdv771ih60s4c"; @@ -4414,7 +4414,7 @@ "pagenote.source-1.1a"="wkgw90mb45sq6baprpygc3qm5acnqrjj"; "pagerange-0.5"="8w6mqbd385ma3m67h7v1h71mrlgkhqli"; "pagerange.doc-0.5"="2kz3fnznp92cjp7b1lwpxvggn1q6hs05"; -"pageslts-1.2c"="b2rdys8jcp12dj2y2z5ggbrhpn09l334"; +"pageslts-1.2c"="axyv179gvcnvr6kv8hddpbyzj9prg0aj"; "pageslts.doc-1.2c"="d7g5q488jmschmxm8sss4a2dqfswzicc"; "pageslts.source-1.2c"="1x2ii0frfvrhqln105xbnxqn2qqxakqq"; "paper-1.0l"="wxk3akaqvdbc0q5whlwd2jpw0nvccwmn"; @@ -4429,7 +4429,7 @@ "papertex-1.2b"="qq8m5fiyahg69aw4ajb01jg9k8x67kx8"; "papertex.doc-1.2b"="x0s08fx3x24s5rgbsana1q0k06khczhc"; "papertex.source-1.2b"="pzlnd4a3gkkdir8il99pkn6iw11w6bjx"; -"paracol-1.31"="ag3awfwg9lq3z9s0c1c747j4dw970zxa"; +"paracol-1.31"="b06zg992m7hnsnws885cai5ls7kkln0l"; "paracol.doc-1.31"="j10lanby73phd1yq32mpjzvkacmbaf3d"; "paracol.source-1.31"="yzlxsg694pnmm39afb9adp1dxgi00ni1"; "paresse-4.1"="mjz05a7z528h2j2svmk4d8ycc6zfzbh0"; @@ -4444,7 +4444,7 @@ "pas-cours.doc-1.09d"="dbjz7w5q67mnwzzh775m3l5hfh6gmx7z"; "pas-cv-2.01"="zdvf8flk3kjln11sn5rs3cb265q8fgzv"; "pas-cv.doc-2.01"="am16i8cjhh2jadlhqsmfx8vb2jyrj8fn"; -"pas-tableur-2.00"="z1jvixabc9dnv4kpxw8irvw11j241194"; +"pas-tableur-2.00"="ggwlvzkwdv3qhljir7c8v8fwivi9h7lp"; "pas-tableur.doc-2.00"="aa9800yy2v3d0minnpy8hx0ly60m606q"; "patch.source-2015"="6k92ah4ka1ljyxwgg9n91m5aj6nwvnq8"; "patchcmd-1.03"="m0sliyi9dqz7ph7ia9kv91l761vcvkpm"; @@ -4468,7 +4468,7 @@ "pdf14-0.1"="nc5xwg94y7na253fjpk9wv8n9qvsk7b0"; "pdf14.doc-0.1"="lr3ls4m5rz8fwf37j5zw6prrn5kd4dkf"; "pdf14.source-0.1"="0y28fgs01xpfadwxc3bfq8y42vh87jkf"; -"pdfcomment-v2.3a"="hry8l3kqinvkmblw9myrjgfxss8f1lry"; +"pdfcomment-v2.3a"="84jnp4jjs6mdplswzch2kr5ln9k3zxd8"; "pdfcomment.doc-v2.3a"="z7v99mffn0ba9hapy2hcflxxh21jxpi5"; "pdfcprot-1.7a"="qsbfyac2h2qqbk805q72v4v8vpzn3myp"; "pdfcprot.doc-1.7a"="ri7rfypz9240jkmvfvlza821k9m2ana8"; @@ -4483,7 +4483,7 @@ "pdfsync.doc-2015"="y6am07gh7iwgmgkwq7sg9z704waxgqai"; "pdfwin-2015"="yfdlssqwsa253r0qzvy5xbgbgwpmmxpm"; "pdfwin.doc-2015"="7k1kqy2rpr93q4nvdvwcrspqjbzz1h4i"; -"pdfx-1.3"="rdxq4i322cskz1bk2l4llk665ly1scnf"; +"pdfx-1.3"="ibm822vwx8ivcbnv2dw86q4ikz6fdkjf"; "pdfx.doc-1.3"="x8zpswync681dv0zf665xh71fv7yd1kv"; "pdfx.source-1.3"="3dsfxfiw6kzbjxgiy7lqx1aw2pyq69xi"; "pecha-0.1"="8bir75jmi5y33ids3wixm0sr7zjd66zq"; @@ -4537,7 +4537,7 @@ "prettyref-3.0"="a75q522ix098qzsnhxg9w12kwp62xgk2"; "prettyref.doc-3.0"="vlnivj6n4wc0cf9l53352ph04wijswv7"; "prettyref.source-3.0"="wm5367872id8pf7v2k6wbbqvbh5ysrv0"; -"preview-11.88"="22700f0gjnly8kxq6fb2bzb231b4pdcs"; +"preview-11.88"="jivswxy2iaf93r88biwd6mjz1r1gq5vl"; "preview.doc-11.88"="6ww1ijvrmgkgdxkmjpv383x9h6bh0b74"; "preview.source-11.88"="qq5npsgaqcvn3spqg11ka9akixrdz5im"; "printlen-1.1a"="fg8vfmr64nm31r8hycy81iqvqf6l9rim"; @@ -4592,7 +4592,7 @@ "quotmark-1.0"="8inn8x79cps7g1iw3pfmc7lyky20vyxx"; "quotmark.doc-1.0"="nkjdi0xl5yvvscs63kjdy7pk3dcvgvxs"; "quotmark.source-1.0"="nhinvh37dw0n8wk1gvpqnp5l3fmaq3v5"; -"ran_toks-1.0a"="fy2w3sry2bm85db8vlld2q834w6a8w1y"; +"ran_toks-1.0a"="apsnqr722xmvb71kagccph79j45d35v5"; "ran_toks.doc-1.0a"="7q4prq3d223b9crdcnkzn7grb5q09hzf"; "ran_toks.source-1.0a"="1v27yry7kvdafhjdnq4jgwnzl0xkgww4"; "randtext-2015"="bnb1sk549kzmljwjyb9gc45xr2ndckcz"; @@ -4622,7 +4622,7 @@ "refcheck.doc-1.9.1"="hvcfjpx9g9wiaqr70vmrpkgqy4i7xikg"; "refenums-1.1.1"="8zxc6yyp3c597ydikw4zc36ri5xhlpid"; "refenums.doc-1.1.1"="gnsi301rb4zxvcjf6cln28j1qmhp5i8i"; -"reflectgraphics-0.2b"="9q1lbhjjv1mmc1hvi8x796rbwz76gn5c"; +"reflectgraphics-0.2b"="bbpagcn17kwhp9jzp3r6kp23qbr3gqs0"; "reflectgraphics.doc-0.2b"="cg12f5a4a6as871kfmd2ihvvcvvf2c1m"; "reflectgraphics.source-0.2b"="wpspwlcfxg56nwqs3ibvklfjx97wk80b"; "refman-2.0e"="32g63hz11bkfsdh6n6jcl84wyjjpq6nj"; @@ -4634,7 +4634,7 @@ "regcount-1.0"="bxa9jg03phjn6ibwfils5jkl9p6r427x"; "regcount.doc-1.0"="knh85nxr5m3g1ljcmp7z58q0xi4rc46g"; "regcount.source-1.0"="gr39ifiwslrh971xgq7lz5r81cx4vh6h"; -"regexpatch-0.2"="99wm4p34d5j99fhf5vprh44mjk8yy950"; +"regexpatch-0.2"="hg7h9kzw2glgs0zzy0m4yhhl9b4cd9ya"; "regexpatch.doc-0.2"="8msff9snbw6vflxz86lyq31minnias9v"; "regexpatch.source-0.2"="5bgsnd7svvznfvi3xfk7c5i1zvb2kxff"; "register-1.6"="mdbnvjhvzqr8xa6ry6yj99al5xfzdh5w"; @@ -4708,7 +4708,7 @@ "scalebar.source-1.0"="5f555kz7b0rbxh4vsmqa8hfqlv7790cf"; "scalerel-1.7"="9lj25lw1p1x4lgw80jp46c03z7g2pdn0"; "scalerel.doc-1.7"="1c8kka7zwlh3risn5kln27ch2d7hwhnk"; -"scanpages-1.03"="iifp2qfg6ii21jlps29sx0dmk8vgz30q"; +"scanpages-1.03"="zgcj5yqrvr8wn4lgsys5r1lda1yv7vb5"; "scanpages.doc-1.03"="r0y5vxnf0hs9apc3361w1nd21jcgsn6s"; "sdrt-1.0"="2pcbwfywj14n08187899xjdhrjr3zzlr"; "sdrt.doc-1.0"="85y00dj8k3xd2dkd42rzwscq70rhhxny"; @@ -4750,7 +4750,7 @@ "shadowtext.doc-0.3"="894a2s4awyxc0vc7d94fp0dfahjq4021"; "shapepar-2.2"="hps8xx8z0vviywd61vhkh8l758c0gndd"; "shapepar.doc-2.2"="6i0vwmvrphkjrqphk7vmxphhcvj89f0n"; -"shdoc-2015"="lz2qnykwwlrk3v07yj2hdpi5pc02g06n"; +"shdoc-2015"="5xy032p317qj0qvrlb1zl1prsjlgm447"; "shdoc.doc-2015"="pjvmkmqmv4fz6p193r5f69lk098wlb8i"; "shipunov-1.1"="1k15najivxdmqvb3a6lm4wky5mi31a2r"; "shipunov.doc-1.1"="x0hc94hmncixvhicnja1kpd6y3gqg59w"; @@ -4768,7 +4768,7 @@ "showexpl-v0.3l"="v9383ryd8k5a8sif6np3844pfqkhwsgf"; "showexpl.doc-v0.3l"="83jbcrang4b3r7qm5bnsf4hjzmqql1j2"; "showexpl.source-v0.3l"="x2y902cyl1bc50jkq9bnhp4qsiw831sh"; -"showlabels-1.6.6"="yc9fkdnm008m0yamdvay47hzsasalvy6"; +"showlabels-1.6.6"="hqr0iz2cbfkjagpgcqq5dalhljbqlr70"; "showlabels.doc-1.6.6"="5jpk3nsiv7dzshpv032bv84knb10wn3a"; "showlabels.source-1.6.6"="g4wy7zlm64m690ilmw7mfnyv7dbxnzj1"; "sidecap-1.6f"="2fcmjz54dxmvynqhmyp5wjlim72rmd7h"; @@ -4802,7 +4802,7 @@ "skeycommand.doc-0.4"="y8kcbdpydw0an53vfw75nvs8f5rhp5f9"; "skeyval-1.3"="r39dajvb7hh6437jbq3gly44i22im66z"; "skeyval.doc-1.3"="g9gr3bwzslymzx3a5kja4n4s1n0ns5lm"; -"skrapport-0.12d"="h9z7g2nnlbxragwnvnw7nbkbdcp5drrp"; +"skrapport-0.12d"="zvy4ls3xmpkygfx4vkk49kwvc33ms2zp"; "skrapport.doc-0.12d"="6zpg6qidiiakp2kpjq7rciawpm8vn2r5"; "skrapport.source-0.12d"="lhdsfg6r9v97n979kilizk4lnw660r0i"; "slantsc-2.11"="mnqakna7b6f0pygw4c66jmxy2r2srpyq"; @@ -4826,7 +4826,7 @@ "sparklines.doc-1.6"="c41pw93y8iy7yx0bc7bdjdyc0zhvx0bx"; "sphack-2015"="gdrva3zalq63d7j737247ja9a22abdxq"; "sphack.doc-2015"="3rzyc3sxq2bnlx5pw5xz1kb2gb36brgy"; -"splitindex-1.2a"="zvmi7qizfwaa8rci88zgnk39i2r6dvsd"; +"splitindex-1.2a"="72wrcsz1vmka4qal90la093asf12hs6j"; "splitindex.doc-1.2a"="h62wdfbi59iya7c1fjwj0285qwf7z157"; "splitindex.source-1.2a"="cqic67y1fc1qfk8pslzhx25lw2m5m3jy"; "spot-1.1"="bfwxb7c1lmbvy4g1q7k6syz7yk8wq0zl"; @@ -4853,7 +4853,7 @@ "stack.source-1.00"="x3hkdwa9hip4zp8paipd8yjjz10pysn6"; "stackengine-3.24"="y7yrqnqakzkn5by4xa4ihijcqg1cmm6x"; "stackengine.doc-3.24"="9f1c8n0krxp1p3jc0w5kyx5vw320104d"; -"standalone-1.1b"="4yyd1vxzg29rx7qa2477cljlygnsq896"; +"standalone-1.1b"="fvknw62iws8v57ibh3518l13n8v6wdyp"; "standalone.doc-1.1b"="pscbx00m1n9jm0x0dsjrv834mnxnr2kw"; "standalone.source-1.1b"="nc5ncyynwdcbvygr0g1pww1nvg75qim0"; "statistik-0.03"="2kynwfkkx5b782l4znp1f3vml1lwiihh"; @@ -4876,7 +4876,7 @@ "stringstrings-1.23"="3jyx0rjn2y5s3i7mdwgmbfygfqmph5v9"; "stringstrings.doc-1.23"="iwlccyqlbypigdzw8dmpfif08wq8nv2g"; "stringstrings.source-1.23"="lfm6lqdy2r3lazymqcca7padzmcvb0a6"; -"sttools-1.6"="hf896nwryc6assbwi9c8prcikcyhnbmi"; +"sttools-1.6"="pwbr1qlk309abm3m86ixdkinj9gyxl4r"; "sttools.doc-1.6"="9irl2hplwvimc913y28a5njik2mb2hdj"; "sttools.source-1.6"="v6ll4f70qvn84xym82bk1s7mrihgqjnm"; "stubs-0.1.1"="5ia769ndpi4pcrbg6cljdbpxsx353qlj"; @@ -4979,7 +4979,7 @@ "tcldoc-2.40"="r9i94qmf78q9j3adkzfly43riv2bzdmr"; "tcldoc.doc-2.40"="fh6a7m41gxn4988pwr90ph25gg26ky40"; "tcldoc.source-2.40"="p007ccff6w6d3nlpsp3q476vg9m4rjq9"; -"tcolorbox-3.50"="kk9k6zvbc1ni9vg020hd5avddffy35pr"; +"tcolorbox-3.50"="31080sbfrd25mbvxb8m8a1rk4pb0qx7k"; "tcolorbox.doc-3.50"="1dnyy4xhlhskqhhm9vhc8b59x7c7flbp"; "tdclock-v2.5"="dzb2gj8y1dv7qm5mn7xfgzdq9aydqjk8"; "tdclock.doc-v2.5"="sgdpiwcnkifms1lx7xicl3xj194lfhbg"; @@ -4997,7 +4997,7 @@ "termlist-1.1"="150mm3428j9yxvl6jf2y6l66wcymnx1h"; "termlist.doc-1.1"="b8kdav6vj2hxhfas9s69njvg61263qla"; "termlist.source-1.1"="c3bvnl6srxclx3fwhrkn9kk1wb08g1p5"; -"testhyphens-0.6"="v17y977486c6252vrjk5byrxgvxb1lam"; +"testhyphens-0.6"="xn9idcggd15gxl0iaphmlafpwq8ywilj"; "testhyphens.doc-0.6"="sp09king24a3yihgc9kyvc6x6nykihmg"; "testhyphens.source-0.6"="22iywlvywid4allad88yiishj4yg1nka"; "tex-label-2015"="wc2rqwp08adm869xmk7a6wkyzhfkbv6n"; @@ -5030,7 +5030,7 @@ "textpos.source-1.7j"="jp9z2bgzafpb5hd7g383pvqs6sgh1l63"; "theoremref-2015"="1md9iqkfgbhg6v64sgm94lp66x085rwr"; "theoremref.doc-2015"="846wd88w325ganigw2g9rvhcs9is6ziv"; -"thinsp-0.1"="k4k589cq8hg89g1mr5bp458db9wnx8y8"; +"thinsp-0.1"="flil5f3fr9ghxa0bffvqy7wackrg7q27"; "thinsp.doc-0.1"="nvvlp3kkpsd82an4gn4q8a2y60q1zrr6"; "thmtools-66"="qy4wdqkznn7cg4jpvqi4mjbnqmb2258z"; "thmtools.doc-66"="mksaav3wkw6z13hz1y0idzh5yzjp6kx1"; @@ -5076,7 +5076,7 @@ "todo-2.142"="2ydakqj3py3dsviz4npq41s593blhag2"; "todo.doc-2.142"="hs7ghig9yh4xhyr1y6n570vkiwmimv8r"; "todo.source-2.142"="3gwsvfv1rhr1c6jb1xdgm9ycws6q8m2r"; -"todonotes-1.0.3"="cm1gryfmn2n9hc4f4nsjakd18610vc48"; +"todonotes-1.0.3"="2807793b23h7diy3fs736v6za5axmxx1"; "todonotes.doc-1.0.3"="3wi8rnwhdgnh548ghfs9kbzwv44d4zvf"; "todonotes.source-1.0.3"="cyj2sg9z0npdrk0c8yqyb590mwq2ka39"; "tokenizer-1.1.0"="k1ixh9ndc7r9cna3q86cccz4ibja32cs"; @@ -5092,7 +5092,7 @@ "totpages-2.00"="5lxvigm3prx6djwih6imgxf27d57sw2f"; "totpages.doc-2.00"="9kxxf13pfksp7whw0rkx554qn9dbbbhj"; "totpages.source-2.00"="y4d9lbpab1xlfdd69q2558c5d0ka5mrj"; -"translations-1.2a"="h8qhaydda18q1c8llny1klnnj1h8mivl"; +"translations-1.2a"="siq14kkani5pwb1s2v4wfwsbc0yi93mi"; "translations.doc-1.2a"="s2hg4l6rz2crqpqaa7bm19yd3n51qgml"; "trfsigns-1.01"="5q6ajydw6n8k0b6rfflyp0bh973n4lqa"; "trfsigns.doc-1.01"="bapnr3mrhxw22p78cg2y7gjbwfqirg7f"; @@ -5148,10 +5148,10 @@ "units-0.9b"="b92vh3z7cr8q1lp5cqzkiw2dhfbla7cg"; "units.doc-0.9b"="3c1a9x0y99lb2qw8scb0x70jzbh5kjkl"; "units.source-0.9b"="ha3bz0p0xanqznz0nyfsa02j32wjdl88"; -"unravel-0.0a"="c8vsz6afszagb0kjrw8ibhysxjxzij8d"; +"unravel-0.0a"="2wy3mzx9jfxaijrh25kyjz8l4r6fzphz"; "unravel.doc-0.0a"="r9diipv8z0xpf5qm8gz868ggwzvcjnyg"; "unravel.source-0.0a"="8fxcplrwxmx9fipwj89qi6g21wsk14p6"; -"upmethodology-2015"="lgpafhyjyv7hgsjjy9q36mh22564p2l6"; +"upmethodology-2015"="wyyk5vr68dqq0yqmvggyxpk1ibqsifi7"; "upmethodology.doc-2015"="z01da1spd6fvv2739pi9x26b8gmxdnwd"; "upquote-v1.3"="3pr0j9wkyd8fzk026qk6vzsv5hlyccy7"; "upquote.doc-v1.3"="ilclzgj5m6nxhnz4398f5nwypf4jp2gh"; @@ -5187,7 +5187,7 @@ "version.doc-2.0"="7hcfbpwhb2ifxy3y84g6rgw2f7465hgj"; "versions-0.55"="c1vn4pw5im1a93xpp59i3xcf5az1n326"; "versions.doc-0.55"="l4znzf6z7qwpskdsdnhsdx264a07wvmg"; -"versonotes-0.2"="k2fdsfl3v4mh7wmi1a5wpfjdk868i1kg"; +"versonotes-0.2"="v1lfi4z19w77a8ydn9sqh17q1mnjdc9g"; "versonotes.doc-0.2"="2pxy8l8rw924nrhqjc9n8ygc80qv39d8"; "versonotes.source-0.2"="fs2034i0hajskbdk092vmwn70gwdpx7h"; "vertbars-1.0b"="ay3argjxpfngk3q24vfi0r440j053x27"; @@ -5226,7 +5226,7 @@ "widetable.source-1.1"="3280bgr049jrra7vb1iy33i8pq2n0qk1"; "williams-2015"="9xzcvf4nblyp6vl0vhnwi6lbbmp4lagm"; "williams.doc-2015"="0fr8h1zsj1h1cf3qpjvdkg3yz4fcjdsk"; -"withargs-0.0.2"="c9m75yv8ryjayyqaijgcffcvb8vw1mp2"; +"withargs-0.0.2"="a9d7w5ai4x1ap54hhb7ndx4k77cifa6k"; "withargs.doc-0.0.2"="x2cjg118gpmgnjapv4rflyp9faagh51i"; "wordlike-1.2b"="l4ma5j7ga4b3r6f627vf1vwcb872n3jr"; "wordlike.doc-1.2b"="wywmq3nr85c130ag5vqi0hpcgq8vh2f6"; @@ -5249,7 +5249,7 @@ "xfor.source-1.05"="pafv6fqj0nd5xm0wgmwavkmg97rw7dnm"; "xhfill-1.01"="6c09h61nlwbviwc1vfvmr4jhbrw2fs24"; "xhfill.doc-1.01"="cw2rx4v66138fsh1vwxhq9smyai1xlr4"; -"xint-1.1a"="34xd13m23arvmbf7cfvgnzg4sy7sjaz7"; +"xint-1.1a"="xdkk8ph0ad50qakl9dk31vlapdsg6aj2"; "xint.doc-1.1a"="k76mn94v3wi169hd6dsqd0a1m08b3vr0"; "xint.source-1.1a"="zc8hw9bas4mvarsiinhy88wlnfj2plkx"; "xmpincl-2.2"="wjg1lw656zbn3h41pxqzwwag9mgrk3h6"; @@ -5595,7 +5595,7 @@ "textpath.doc-1.6"="zliwrx3n2r3xjhdi0c80rncxwk5whg76"; "threeddice-1.0"="91chpiy1n4mg3vcabcm8li91q9lnkcvc"; "threeddice.doc-1.0"="f9anwvpf5qy57b6g4d71cdjjkkrsc1ky"; -"abc-2.0"="75mkmhz3r8v5gm0r6y53vkc5cw4iqd71"; +"abc-2.0"="lk5l8iqkjwwr121bg2q6qzsfx6ibz9rk"; "abc.doc-2.0"="kcm05fzamf7001a3skqy8sng9wzwb377"; "abc.source-2.0"="mf4bgwpb827xp3yqh0zb9228j4fpc605"; "bagpipe-3.02"="z9akwcd2fdwzps3bws9vamik64pyyl73"; @@ -5613,7 +5613,7 @@ "guitarchordschemes.doc-0.6"="ac6i30kr25pk8d0j98lbjaylrhiddkzg"; "harmony-2015"="isfyzam48q2f90vyh78rp5df93wzdfq4"; "harmony.doc-2015"="5zy2cf5afrxlmmxlsycqg3crcl5irkb1"; -"leadsheets-0.1"="l404args8hr321ib6zm5200d2bsb3s0j"; +"leadsheets-0.1"="bqsfkvrgg25zwfgz2zfiq04gv5586bpk"; "leadsheets.doc-0.1"="di48cqgjp7zcnsiqr6g1ifa0pg0akqkz"; "lilyglyphs-0.2.3"="qn7pjnhq8aaynk7s8mis9g0y0m16fbnh"; "lilyglyphs.doc-0.2.3"="89k4bzc0jy0yx59y8ssiqvjgqspsfyry"; @@ -5622,14 +5622,14 @@ "m-tx.doc-0.60d"="53qdwhlgg5jw4n7iy92kbyyhzppbc50r"; "musixguit-1.2.2"="29kbldyqlcf8xs5yh5gsx0m7liwbnqg1"; "musixguit.doc-1.2.2"="pam1limbbmc1jvhznsvrwslmlr86y7vf"; -"musixtex-1.16"="wc52qqm1ngm761qycmlygs7mb4clm635"; +"musixtex-1.16"="bqsmzpr6bq806p2q8hm2c63kbbpzx4ix"; "musixtex.doc-1.16"="3sddwc4p9y04639fpx7g0l2qyxh2rrfw"; "musixtex.source-1.16"="kb90c2jhgmx77d12x4rg6yivpiq5rxq1"; -"musixtex-fonts-2015"="jkkn272q8fgy6zcyv6pkbwnarwlxb08c"; +"musixtex-fonts-2015"="a8kdi135xis6qcwy90yisg4wafklmw2y"; "musixtex-fonts.doc-2015"="zsx57a02my0y6hjvf9yi11iyvxd6v9yb"; "pmx-2.7.0"="9cjdljh1agk1shakdnsfwfl29ypzli4a"; "pmx.doc-2.7.0"="5vfay0whkrb2gcymywi55vrr1sdipwzc"; -"pmxchords-2.0.1"="4s8vw9jrv0qxaf2pgpal8lw3zq123hqx"; +"pmxchords-2.0.1"="wwn3da9f9br7dpfhq7yg9j2f64bb9183"; "pmxchords.doc-2.0.1"="7b8pxcf66ncvkxrizcyvb436as97361i"; "songbook-4.5"="jimhdkxsiqzkwnsjsw1rynkrfhhh5n0d"; "songbook.doc-4.5"="62n794w3gxyivisl16xrz9lg2r0a0s38"; @@ -5695,7 +5695,7 @@ "auto-pst-pdf-0.6"="64qw6a4r38bsb4z3giwdvx18k60x0bch"; "auto-pst-pdf.doc-0.6"="syhgg4sidch19kh1l9nda10dq7kvyvjq"; "auto-pst-pdf.source-0.6"="j5n1kpkc88ry8nmb9hd3g382dm1x8c9x"; -"bclogo-2.26"="4l8nhw8mf5904mrxr7pxd9f0g0p7ypsn"; +"bclogo-2.26"="2j9mb9p1n575pvisvpy7zxhsw8940n2b"; "bclogo.doc-2.26"="907ib1k6kymfi52mff60a5r3g7f96rrs"; "dsptricks-1.0"="jrn51r2zwccvvy2dasq0zbf4cls15vy8"; "dsptricks.doc-1.0"="m018nyxpwvxina15zyhwalzfiqb3ryxx"; @@ -5728,7 +5728,7 @@ "pst-bar-0.92"="a5456vc3299z2n5di8kfv5q07bnp7fvz"; "pst-bar.doc-0.92"="6p7ag1iq37p5rkvd3a6b32cxnj8jqkz0"; "pst-bar.source-0.92"="grywxwwpmwyf94rwa8pmcxvbf0r0xanz"; -"pst-barcode-0.12"="76wglpij24n1bzy9qws6rqsv21hwid72"; +"pst-barcode-0.12"="5nbf182sqnyfjjw31r9mlc7niy4pzxqy"; "pst-barcode.doc-0.12"="crgbj2bd565qw6cggy3f6s7d46jjr8f2"; "pst-bezier-0.01"="63mvm18i5hmsrxnzngs44ys62m84n8dm"; "pst-bezier.doc-0.01"="sfxj0k6iv787y88lp2myay851rhdzhzb"; @@ -5740,9 +5740,9 @@ "pst-bspline.doc-1.61"="wkw3dzv38c09zz1nl4a89dcyy9dgs08h"; "pst-calendar-0.47"="nsnyxxld6q4jzvc8kwysbwn9y6fxi9g1"; "pst-calendar.doc-0.47"="jvwhyiz2cfzcx6mpwkahmpcb3fyl6yqq"; -"pst-circ-2.12a"="ki1idfkvmira18lvbw9wizznvpbrvd18"; +"pst-circ-2.12a"="2drfi18qqddcfvyhif6n0wnij9pb3h1r"; "pst-circ.doc-2.12a"="am7imjc6jnzd6mpcjn17ivyx9y9qlm12"; -"pst-coil-1.06"="yk9vbhrj0z851wrmxnvjga3wr1j5yixx"; +"pst-coil-1.06"="2ai64805vflnfx112c8p0jqf1ad477wn"; "pst-coil.doc-1.06"="3crpmyxkj90kfvy86k33yy19n9jml7bd"; "pst-coil.source-1.06"="rsapvy5g20if8z68ym7mfrrr7zf193d4"; "pst-cox-0.98_Beta"="c03maichp45vxcy6n3p210gpvypr5v2p"; @@ -5759,7 +5759,7 @@ "pst-eps-1.0"="djkk1cq45fzh2q1pvl23aiqi8b2znqrk"; "pst-eps.doc-1.0"="i903x3p9wwb1jjf5al8azqr3iasmxkyk"; "pst-eps.source-1.0"="r6jcjqy0f5mnkkahzqf9qnfrgwqh52h8"; -"pst-eucl-1.51"="3xc1glsvzasjih2pkj0b4n5nvg02jndp"; +"pst-eucl-1.51"="fqynbdixxpnnjvq67h9aym08k2jf3a11"; "pst-eucl.doc-1.51"="4hfx204qcwdr6604h6jvclpx3avv9bhf"; "pst-exa-0.05"="qlh2xf8m1if1s44hzkwgjmqwbv47d8xj"; "pst-exa.doc-0.05"="kn0kgnd8nn9l66s4i5274241q3pjgmi9"; @@ -5801,7 +5801,7 @@ "pst-jtree.doc-2.6"="i9qmlbn7apzimcsmxls2vwh5gniizyrc"; "pst-knot-0.2"="y69z6hv29f73scygpzg5qr0p3yf8cvlp"; "pst-knot.doc-0.2"="7jbx6gjfjglggmnfgpj0rzf67wp0s549"; -"pst-labo-2.03"="j1f5qybram291lygrf0xs8x8v8mmr02a"; +"pst-labo-2.03"="h5lyw06d0i2r5ghn4ljymyy3s9bglmcz"; "pst-labo.doc-2.03"="7h5zbz09g6wfpwrq5wqvc45frpv7i6sm"; "pst-layout-.95"="vwhvczg3rwlvz8r7x4y4n537bwb3x6f3"; "pst-layout.doc-.95"="y5pl5paib75knak0gamgp31mph6dnpkb"; @@ -5841,7 +5841,7 @@ "pst-pdgr-0.3"="9r2wdl0ssz6ay543lzvrfm5kyxgri2rn"; "pst-pdgr.doc-0.3"="mz28za3ryi37w9y3392wb97hv6v8cjqr"; "pst-pdgr.source-0.3"="zna70ph7hksm4cnx0sl240vgngzbq0lk"; -"pst-perspective-1.04"="fvgv1r246yfb33laf0bha4skzv41rz09"; +"pst-perspective-1.04"="iaq5j9cbgyr5p4np1fn5dqv8m8mv29qc"; "pst-perspective.doc-1.04"="lc0jdjvwis1ffpqry3aiziyxydfhwwkm"; "pst-platon-0.01"="c1crbkzj0vvblf8n894g91q7qig185w5"; "pst-platon.doc-0.01"="54icmvjwsbljdbq03j3npmwr9j85cdpg"; @@ -5866,7 +5866,7 @@ "pst-solarsystem-0.12"="s8kd8xj2mv939y4x8d1qj7gzp0ic7j2j"; "pst-solarsystem.doc-0.12"="8ck7j4f14zjzvcz0xb9fpm3cay2hmgki"; "pst-solarsystem.source-0.12"="zig04547z0ggxsg1gwanzkqxpkx64nym"; -"pst-solides3d-4.28"="bpvsazr5vxas64h4ql64837xpcjwqgf1"; +"pst-solides3d-4.28"="9svz46366bqla75i3rrdjgqsjb4xvm6z"; "pst-solides3d.doc-4.28"="dl5m4658khcsswx7chzc2s1hf8nybj44"; "pst-soroban-1.0"="q71r7bilwmgxxvcqngmn9w63cqwh526i"; "pst-soroban.doc-1.0"="ds57w9f3d4dy5c17xsvrmzs09iccanh7"; @@ -5875,7 +5875,7 @@ "pst-spectra.doc-0.91"="sc2zbs93vbzp4jqgwwxh7pga2ngrwxnz"; "pst-spirograph-0.41"="2mkxc7vrmv5xa7aggmpc27wss9gw8zzr"; "pst-spirograph.doc-0.41"="4q5pbwicrqkpmfr7zwa0ykmfy32y4iks"; -"pst-stru-0.12"="2bawy18mqq8k3vngpyz9nbh8wki1iddi"; +"pst-stru-0.12"="9xzgq9yp4wh3939dxg4wvkzsvq8za3vw"; "pst-stru.doc-0.12"="sp8b32b13qs0la7vrhd7za676a3m4cdc"; "pst-support.doc-2009-02-05"="z97cka1jrk6jji8lczqfxc09cqj7f34x"; "pst-text-1.00"="cz2rwirb2xh5yp257rn8i6s0vdns1cpl"; @@ -5904,9 +5904,9 @@ "pst-vue3d.source-1.24"="zxk7phlcdh2g1x9l4mps6ncwxc8ydryi"; "pst2pdf-0.16"="1kjw0j82pb00fwy917jdhfb2gly6ds2i"; "pst2pdf.doc-0.16"="qdrz94v1zmclri1rh582qbn2d6wqaa0j"; -"pstricks-2.60"="0yxl35h4djwmq9blkj5ag6f245a32bwf"; +"pstricks-2.60"="l2s77kss839ivcbghf8rkqdp00bvwz55"; "pstricks.doc-2.60"="5r44fkdsqxiqf3ayk84bpd92j39pbaxx"; -"pstricks-add-3.77"="x5v94gjy51ry9v8p5n3n4m6lm11rirck"; +"pstricks-add-3.77"="xarmfs8vmyc42694qalhg2qjszd12lhv"; "pstricks-add.doc-3.77"="a91m5waqb21vkzm8yjkajm43rbsw04wb"; "pstricks_calcnotes.doc-1.2"="4q48najl98h9lb1866avfw6c5ir7p4bj"; "uml-0.11"="ggl1iw3qhzysy0fza2dbl3igwlcq3i0n"; @@ -5919,12 +5919,12 @@ "IEEEconf-1.4"="y7pcvgybgsj94x4r1b3p79w2bwrja38s"; "IEEEconf.doc-1.4"="6pyp532mjalspmalr2ia8nm58fjj5fwj"; "IEEEconf.source-1.4"="h16jq4q6bvb1wpwjxnyhhp43frcjmnym"; -"IEEEtran-1.8a"="1s40640zrhxlz3bfmmnrq3mak5b964z1"; +"IEEEtran-1.8a"="96gd4zxcmg6c2mma4d8z0wganf9ml7d9"; "IEEEtran.doc-1.8a"="y9ls7az0d92gwbr85cycvxrfgyf5h5b8"; -"aastex-5.2"="6n8n7jkxhlc11vw51gyhjph5zzxxh8y1"; +"aastex-5.2"="s6k6maiimq07jvyjy6i16z7wnybs5j6y"; "aastex.doc-5.2"="f3kcghw7v9gkpym5nz7mlf4njx9488qk"; "aastex.source-5.2"="84iikhqjnv1gm8akc8hz5mcvc0njd3xw"; -"abntex2-1.9.3"="ibab7j46havrzp8vil72fslshkaf6cd5"; +"abntex2-1.9.3"="asw2qc8f7hg5ziyp6xw7n0zz2wyxlr68"; "abntex2.doc-1.9.3"="m58w47074x98ji121nzcym0lkrhlyxrk"; "acmconf-1.3"="9wid04wqz4l1xisvlng52xabw9m0p1k5"; "acmconf.doc-1.3"="66xjqp6a86iq2908p77cz57651av2i23"; @@ -5961,17 +5961,17 @@ "apa6e.source-0.3"="baqh9z3mlxqy4kklhnb9a66gj36lnhxk"; "arsclassica-4.0.3"="p3w5b12aass8kmjc6dkdsszwnjy688gk"; "arsclassica.doc-4.0.3"="w0b84pppd9jzj1h4iy8ys9y1hmilj31r"; -"articleingud-0.2"="g72bz7pllvs9a08lk850fhajcyawmyr4"; +"articleingud-0.2"="45hkl8j1hxdww0igp85iifrdz4g4h18l"; "articleingud.doc-0.2"="559h6pqgd41k3pa33z1nra8hm1x0fkmn"; "articleingud.source-0.2"="0nl4m1l9gj8vd6wxpbxh8i390fibmwwi"; "asaetr-1.0a"="wkch5k1hxw65dfdkyghyzpcibmnj0zyj"; "asaetr.doc-1.0a"="8d1x4sq5xpgc1kb5ys4dp02i2r1p3ha1"; "ascelike-2.3"="b7ff1cj0jmbdr6wrvcqr37byak164fy3"; "ascelike.doc-2.3"="sqynsfl8cm40n0r7v2a7qlhxx6zny623"; -"bangorcsthesis-1.3.0"="vl60dlsx6mk472y7ka6nqcvwwq4yhm96"; +"bangorcsthesis-1.3.0"="bm47is7rj8j29lc31lzy8jfb4zqx8s30"; "bangorcsthesis.doc-1.3.0"="nysibarjaswyfs5ciljhv2p3xgwl9ymg"; "bangorcsthesis.source-1.3.0"="sn1dg6swm9zx4ar78z4nns7zdjzam5hn"; -"beamer-FUBerlin-0.02"="3k3a0i94kn4spdnxzckpgq9dbpy2cj83"; +"beamer-FUBerlin-0.02"="bw11wjaqjjahs4x0hnakfvmvrjmjckkb"; "beamer-FUBerlin.doc-0.02"="hqnnfwi9iw5c2bfb3xq4a5iji749zsc3"; "bgteubner-2.02"="wbm0wx7ir27gllk28g0fiz099nwwqrbz"; "bgteubner.doc-2.02"="fz678npdkkgyhyf2qk7f2jpapkkzlz1z"; @@ -5982,14 +5982,14 @@ "cascadilla-1.8.2"="03g1znhjzcvxvclzwb33lrm6703j1xxw"; "cascadilla.doc-1.8.2"="njy3lpaw3lch5x3p1mm07zis50z38ps1"; "chem-journal-2015"="8rsrybpvzqr389ip3lfkjna1vy6lclv1"; -"classicthesis-4.1"="24hlkhl08qdcp6bki626w39hdhmxa6zk"; +"classicthesis-4.1"="z7kzmwqa72x76sbcjk96wpcxi81hp1pr"; "classicthesis.doc-4.1"="xjndsgj0magn5p872w923zjs5dgvibb1"; "cmpj-2.05"="awd4vc139sm6ffq56s2sgqmkmaxja6n6"; "cmpj.doc-2.05"="zbqhnyqgks8jr91m5yr7aqf97f7gxffx"; "confproc-0.8"="6anwdx64g1yfr109jrnqfml6bqj8l98a"; "confproc.doc-0.8"="qczsp87rylnxkd8nsi14kjahnkh57i6m"; "confproc.source-0.8"="f8yczf6glbb74hvfga786qvamllnza9c"; -"dccpaper-1.3.2"="rpji34bq997wyzpqd4xg0qjhymwqmhyc"; +"dccpaper-1.3.2"="79jv4cagpvwvxbhc2pjcvpp8p1rrng8b"; "dccpaper.doc-1.3.2"="xh688nlahpml6aaf8aq2xaiq38q8n1ck"; "dccpaper.source-1.3.2"="mzpzjy97igyy612rqgbnsbrsrr9inksx"; "dithesis-2015"="y0xrpjxnblvgahdwyfhm2hag5hss6qzv"; @@ -5999,7 +5999,7 @@ "ebsthesis-1.0"="3f8i1srqx6hh10rrjshsispqr3wdhm0m"; "ebsthesis.doc-1.0"="wic4wfgihf2yyk40937hr2g59933cyy5"; "ebsthesis.source-1.0"="q1lhixwgkc6zis1sgsnwzsd0p7spp0zz"; -"ejpecp-1.1"="xywab90i5jjp51x86r6ddrfam5ymks3m"; +"ejpecp-1.1"="1snzip16ssfi2s0mwdc0qv2psxlh5apw"; "ejpecp.doc-1.1"="9sdmdflx517lwb79vxg60a8qyfm17d3w"; "ejpecp.source-1.1"="6ixs70hkim20zvdvwh617a7w5p5dksi5"; "ekaia-1.02"="78afi3wg60g034ij8pq3lq73rlhp94dc"; @@ -6070,13 +6070,13 @@ "matc3mem-1.1"="1w8m977ngbqivnhlaqsf6bvn7yngg3hg"; "matc3mem.doc-1.1"="y6b8v00dhz5xg56kz04jql3rdrl0v5n1"; "matc3mem.source-1.1"="3n9x1jfgrc8jigj8w2bmngk7pxqz9v29"; -"mcmthesis-5.1.0e"="7rvf8cs4x4kmsh7qvii801ki3y21s773"; +"mcmthesis-5.1.0e"="64qi8gzjxbkrgaz5kmhw8y0p8a5a9psy"; "mcmthesis.doc-5.1.0e"="8xc57yi9qjqy3ai26395qqr5nhpb9c5j"; "mcmthesis.source-5.1.0e"="a57gj8q4ncxaycc84nxvb94iv2szhr8v"; "mentis-1.5"="nfpcmyxlg0gadqj33jnxji3nvs5fni9l"; "mentis.doc-1.5"="vnj4lk1vxc0c0710jb21x3vskppk9c86"; "mentis.source-1.5"="x8djid957v6324m74fn1m8l9hcp7mr1g"; -"msu-thesis-2.5"="qsfhzn5rsrrzfwjhp330m558il782cj1"; +"msu-thesis-2.5"="ifjb7808a22jv6scs4vdnvkv54mf0dnd"; "msu-thesis.doc-2.5"="6b38sii552r4kp14qgi88d5jmc66fx12"; "mugsthesis-2015"="cfkw21f3xy6pchbq7ryw2df8bdssilc5"; "mugsthesis.doc-2015"="xqm757zbzxi9ag50dd22274bk5n1897h"; @@ -6091,7 +6091,7 @@ "nddiss-3.0"="f7q91xxxls5q46xzjpb1pd19mv4rfqcb"; "nddiss.doc-3.0"="7v4swldnh8h17nkz59ki5ay12i919nj9"; "nddiss.source-3.0"="qd15pyqi4pyvph772p8yhf74wvk6fd8v"; -"ndsu-thesis-2015"="wd7vbq8qs8z0axjs562wkgd1layd0hxc"; +"ndsu-thesis-2015"="wn8rs3w6sfl3frjskaykdy329vpzwfvq"; "ndsu-thesis.doc-2015"="g1wp027p9ppbpxyxbcfxxhn6zjx1dxn1"; "nih-2015"="cv6rcwrnq8rpwmmxva32233isckys2md"; "nih.doc-2015"="n3j1f7kbygyh0ljz1796b0ywkifvykbh"; @@ -6111,7 +6111,7 @@ "pittetd-1.618"="1jjhfr2c6ycp2c6r3kg0y4fziq3vjpv5"; "pittetd.doc-1.618"="9394r72nr766i8mnb24s4qr4jp15jci4"; "pittetd.source-1.618"="s0apvlg01wkfzhzp5cgy3jwxx9z14469"; -"pkuthss-1.5.4"="2z9zld6lhki8q29d24wxjicbqdrba8fi"; +"pkuthss-1.5.4"="d03slfc5rsgyvwk2dqjg6bxi9mpk2k89"; "pkuthss.doc-1.5.4"="wn2r6jxmcivwkjy0lchz0z117ifc4f27"; "powerdot-FUBerlin-0.01"="r89y2lmmzzyln4jx6kzdn4rb84jz7w15"; "powerdot-FUBerlin.doc-0.01"="gy9ianzkp3a81sga5i1xp4kzsnyppzb2"; @@ -6120,17 +6120,17 @@ "pracjourn.source-0.4n"="vl8rarvx6whc3ph6pw892ldwiwzvc78x"; "procIAGssymp-2015"="cvcsi5gr6ndjlvabqwkk4spmd8y9fqz1"; "procIAGssymp.doc-2015"="y08ng1769j9ffib4fpi6rb86dvj4y0a8"; -"proposal-2015"="bh1scfkrdxkya5kh86qgpclvmnv71f5a"; +"proposal-2015"="v49g58qyd3080j7hg2q9xlk0lpnqik19"; "proposal.doc-2015"="hnz4l0z4af51yvjs8g12djfxcvnxx6jm"; "proposal.source-2015"="gjfahc1abbamqhs9gh429jnk3yyl9rgp"; "psu-thesis-1.1"="mfm31zjkdhv8g59fzcnxiwrj5l3im13a"; "psu-thesis.doc-1.1"="xqrlld1bn1kyqymprpchwp525n1jbmhd"; "ptptex-0.91"="w61zrgirw5as67kcbi3yrx5pzpw7dj36"; "ptptex.doc-0.91"="h0fi9wq2asps1aiwkvrwj93dkzzhclsy"; -"resphilosophica-1.25"="6k0vaa1ck79sqw09pmcidz4q1n7cjg94"; +"resphilosophica-1.25"="486i15l2a2xpjbx01bbknlr9n00bq00w"; "resphilosophica.doc-1.25"="hpqckwakgjkdz2szgrhn38h0m7ga6jl7"; "resphilosophica.source-1.25"="44119qn5xwn22vqrwaidrljxgarj23vp"; -"resumecls-0.2.1"="q1ngkqf7dbzap5mnflwf0yw2ixf1hlrq"; +"resumecls-0.2.1"="niqlfjipn9h1dchnx63w89i097kf58il"; "resumecls.doc-0.2.1"="2yvghszqqbklkmxw4x3yj7bp7swcq2sc"; "resumecls.source-0.2.1"="iag9fwhpniqzbgsv13w0di66vgdwgj29"; "revtex-4.1r"="bk25w1asnzgz3m3hbz9vq4wha12xs41h"; @@ -6145,9 +6145,9 @@ "sageep-1.0"="3jzsiq3wj7wwhlhzyqmi78lv6vin2kk8"; "sageep.doc-1.0"="px3f2qx88xijb5jyd75v3sxkss671ppa"; "sageep.source-1.0"="j5qj2vr800891ccgbvgdqbnfa0mxj4n3"; -"sapthesis-3.7"="dhdj52lqx1jxdsl3yzjlqvbj6gj7n1yh"; +"sapthesis-3.7"="ayccn6zfwyqf6q41d4h2jcx6ajvg532v"; "sapthesis.doc-3.7"="y8ilsizlqypiz8pvlxqwapr8dhc8abh1"; -"schule-0.5"="0gzn8m5vx4vrpwbk5xvz747nwqnrcr6m"; +"schule-0.5"="1ngvbyxq600jjn9h0krh5mf8mfrz4i60"; "schule.doc-0.5"="n6jrmvcdmfimwzzn6chfaw1dkm74mdgb"; "schule.source-0.5"="p1w1swd8xc5s7ifh8fh34bpmfv9dr82z"; "scrjrnl-0.1"="q5rd79j19g0jgafhxj3wc62x6y16378w"; @@ -6165,13 +6165,13 @@ "sphdthesis.doc-1.0"="nx5kpi9s03jwv5g8adqrn5l55lyqc9hd"; "spie-3.25"="fj1biarxwagah3b4l5r9p498qwd70yar"; "spie.doc-3.25"="dgp3in09igj011041akydwgnsw10m927"; -"sr-vorl-1.0"="8gcn7ga13qw0kw4ay732h3yz4j23flbd"; +"sr-vorl-1.0"="aspxka23zd8rlwxlvjvw6wlwkg38rj66"; "sr-vorl.doc-1.0"="9kjfmwzhzk6c835vlr19p48cgv3i0ar1"; "sr-vorl.source-1.0"="ij2gsrzpq9hyyrvjb7568ajhzvyn8ffb"; "stellenbosch-11a"="s0wddhmfp77y6v54qq4jsmqidjq3bkqh"; "stellenbosch.doc-11a"="97wbyj0mg7phb66ngkf82ziiy8v624b1"; "stellenbosch.source-11a"="0raanzzc5qjay7gz94himx8np0437pgb"; -"suftesi-2.0.1"="4qgl8pv0ll7vamqs6q7hgjwndyx0ri7x"; +"suftesi-2.0.1"="h9bfwxab3hg48q45qpkfm1f23igr073v"; "suftesi.doc-2.0.1"="rz03b1rqsmf45mzzv0d6x0ynhr4wm7ih"; "suftesi.source-2.0.1"="ks1nz456v26iaqgxlgz5nbq54amznwrj"; "sugconf-2015"="9bgrgs1gqxlj5czai1l1m45z3z4xbr6d"; @@ -6180,19 +6180,19 @@ "tabriz-thesis.doc-1.1"="cga6sdf865mjmzaa39173gy5vinshqpv"; "texilikechaps-1.0a"="v3x5w1a3lblqc3pks3yzychj64rvr67l"; "texilikecover-0.1"="fn8g82q7mvdqaa3i14nsc95wjlp0ziyl"; -"thesis-ekf-1.0"="717dnfjwia1ffx6hln1icik2f2c25i32"; +"thesis-ekf-1.0"="jzw6c55jw8s6zi1n3b257m4170cwxg73"; "thesis-ekf.doc-1.0"="wbk07sdiwhxi1rk32y7ycqs29iyg1cdp"; "thesis-ekf.source-1.0"="vlh9042sd0gp92j8l8fll1s6lfbdkcl1"; "thesis-titlepage-fhac-0.1"="dmyydjxrj16hf8gh7qyp564d195kzmwp"; "thesis-titlepage-fhac.doc-0.1"="g4jw0jyl09vq4hglb14jx355v9kli1bx"; "thesis-titlepage-fhac.source-0.1"="zp492p2j40bpphwr3zhjcqiwnj18yk56"; -"thuthesis-4.8.1"="m7r2jqkxg7q3vlnkrvmlfai0fh2dx9zh"; +"thuthesis-4.8.1"="qy8n5x27zqm6ramvqbnf7yrlq519ygri"; "thuthesis.doc-4.8.1"="b3qy0hjbkrwh89azsw54k8fd3wln9bw5"; "thuthesis.source-4.8.1"="n3z5kv52lmhb4rhs6grivnn4y5lc12xb"; -"toptesi-5.86f"="ah4ikbaimrpgqnnkbsvnncbvfvsd1vcg"; +"toptesi-5.86f"="558pgw7x7bmllz8arqnajvz9vshb19fz"; "toptesi.doc-5.86f"="swcdz1jg2gbfs0v84yxjb0dp2p00crj9"; "toptesi.source-5.86f"="dfqk26jpjaynnar2pckvvsliyql0ifhd"; -"tudscr-2.03"="rs7i0f1drkdhya1qgff5i6i4qzil481n"; +"tudscr-2.03"="b8lw5inav02ciylq4rxz96whgm7npzh4"; "tudscr.doc-2.03"="nc1ld6y7sc255gq1nf3ilrgpbhan6bp3"; "tudscr.source-2.03"="lqj1l0cs16sd5km5kdbk142hngg51n5g"; "tugboat-2.16"="52zas8k8576rv5rs8h6xbgd47pf40a19"; @@ -6212,7 +6212,7 @@ "uadocs.source-1.2"="329dadblyiz77flx909bvnkhjciiz27v"; "uafthesis-12.12"="8qdm4v22s3r9g8q16sjnw3bzx1j9w16a"; "uafthesis.doc-12.12"="d1nns5qzwkrywy9cghr19i70bp16fvw2"; -"ucbthesis-2015"="f1x2mikh9sr667gq97rgll3b41r2g7qz"; +"ucbthesis-2015"="zagmch6rnvnjiy9y0nacc5ciwqv5xsad"; "ucbthesis.doc-2015"="w4rnz11gpcc57815s8jjkcss0psy7vby"; "ucdavisthesis-1.2"="r4vnw0ch18gnjbdzpkssp3x8hd9paswj"; "ucdavisthesis.doc-1.2"="wm1ja6xd9h5w29lsmcvwn5i8iqff3rw5"; @@ -6227,7 +6227,7 @@ "uiucthesis-2.25"="62smailyn66fyhpdgrmjx0p9m0j0n12y"; "uiucthesis.doc-2.25"="ygqpzgk5jslsnqa813k0l2nvw2j8gnwq"; "uiucthesis.source-2.25"="lkq6bvdvm6ya5q5wp263zqkk7y4ig57a"; -"ulthese-3.1"="gcpcf1nb4d0x702sfqaz16r57xxpk6pc"; +"ulthese-3.1"="w6qr311m0wiyndalagllsan96a3pcd49"; "ulthese.doc-3.1"="089gvzvhxg96ymj21k6rbyj25i51hzb2"; "ulthese.source-3.1"="nkv2w0wfnv8rlbvmy2ak3b6ryrsskqq6"; "umich-thesis-1.20"="mgwbc9lzd25w17fm9j2098r6y0q1k688"; @@ -6246,11 +6246,11 @@ "uowthesis.doc-1.0a"="h9g1mwp55hj3jsqmn0fmpjm95g4139rn"; "uowthesistitlepage-2.0"="29b3r6wfpk8vh132a8fk5xsf79xs1wj2"; "uowthesistitlepage.doc-2.0"="kpfyii5m77dagy53dragdl9pc38irn4p"; -"urcls-1.0"="1b4qj762xjpbrv72mpc8j17h088x6hbf"; +"urcls-1.0"="6ag871hlyhb3fj1s0dy35h4s97pmy271"; "urcls.doc-1.0"="5z6k491044947g0yqg1xnx1shpgx5ns7"; "uspatent-1.0"="lqv4zrqgwdhav1075ym1wp3cmy7r3ahw"; "uspatent.doc-1.0"="0pa1qihx7vyc5lfkzr7bbakkphzmxp2p"; -"ut-thesis-2.0"="708iq5lajfsgb8zl62kyn9mbv6d1w2zh"; +"ut-thesis-2.0"="wz086qs6isll7wfa16yf154zqdbwz7zw"; "ut-thesis.doc-2.0"="xn36wd7fv1c5c66s3n9bb5122pzpw44f"; "uwthesis-6.13"="1z7cpyrzcb9ga77d9a58jm9234w2zafy"; "uwthesis.doc-6.13"="w30d568jxqqwdfbrpm8s1i7ylssiz3gc"; @@ -6286,12 +6286,12 @@ "algorithms.source-0.1"="cskf3mpv2rk435przyidljaijx46fiy9"; "biocon-2015"="d5164k5f9rh092j3yd5vysfzcp6qbvc7"; "biocon.doc-2015"="w3c6g9qr6s5pm76jq7v0fk4fs90p5d20"; -"bohr-0.4b"="npwklkc2pfla8whk0qcra1d0vrx8fmy5"; +"bohr-0.4b"="5r65jri672mlqzhd26dmys54sj19c8kz"; "bohr.doc-0.4b"="yfv4fmfp4666wsx11q8zq26cdiz3x4yw"; "bpchem-v1.06"="w8788zaka42fy1ksfsfxdsgijszmqjvk"; "bpchem.doc-v1.06"="py1xswacp8w7qvf1v2dn1pnhx9lwrf1k"; "bpchem.source-v1.06"="nf39x6lbn1mbrb0qdczyja4r1agglkhb"; -"bytefield-2.2"="hbdlz53b1pakpp8rwbdc4swqda6xh3ca"; +"bytefield-2.2"="rnmfh9nw5a9j74ys22kr0szlvacyzdl3"; "bytefield.doc-2.2"="9h6zb67krhq1f2m3q288dcz6q8cq5mhb"; "bytefield.source-2.2"="72pr48m3annvn2941h00vgmzx1cbq4k6"; "chemarrow-0.9"="mb0i68z92909632g3xd1m3ahvmg0nj72"; @@ -6304,13 +6304,13 @@ "chemcono.doc-1.3"="r527psyb3zf91x0xd6ywiv429b0rmicp"; "chemexec-1.0"="szl9xw9iiql9yi7la6hwcwx8frhdxkck"; "chemexec.doc-1.0"="q7rkw9ny7g93m4xm5jvs17v8x4nwb2p1"; -"chemformula-4.10a"="g17g2vkabw13wfc8i19jyhjxmhw47jd8"; +"chemformula-4.10a"="lg5ijlmnra2qxig0vsbd3n9n7wq71rv0"; "chemformula.doc-4.10a"="f2ammfc9ymzfhlalxsiy02290rd73mhf"; -"chemgreek-0.5a"="9n4dga9iv0q4z8zmgvvszhgyjbkv7idr"; +"chemgreek-0.5a"="vc3rbqz862kyx06ms2jsyxd1xag21f8x"; "chemgreek.doc-0.5a"="v7qg7f3kf5djwq7d2wqykq1f56h6pxlw"; -"chemmacros-4.7"="9m16qdpjmnn6q7aq0dicdr7k9l0gpz1k"; +"chemmacros-4.7"="wzd966cv4p5vqh3ga1k393d7svl1crcw"; "chemmacros.doc-4.7"="9c7gwg5d5p73f5lpiid0vmvxzrrqnril"; -"chemnum-1.1"="9an7nykxk9lkgdslazqblybyqlq1ki6c"; +"chemnum-1.1"="08hfiz75a971sc01xncsdhdfvzljgwln"; "chemnum.doc-1.1"="kqa1ihrahj6xg2va6h4131xs2h47bj99"; "chemschemex-1.0"="jrpkchi45q2k3csw7hiahg73j15qba9c"; "chemschemex.doc-1.0"="ahlswf4y85bxjfxljby25pnxf13sv139"; @@ -6324,10 +6324,10 @@ "clrscode3e.doc-2015"="91b116aqyihwlizzw1apmvd8kaaia407"; "complexity-0.76"="j5mbhnplpiykaxrb4znw92ax6swd90ai"; "complexity.doc-0.76"="jqvlbh8786qn3lmqzp7jirwbl9n5x15d"; -"computational-complexity-v2.25c"="0fr0wv4qszh121nj8j9h7axbj9wpijjp"; +"computational-complexity-v2.25c"="lf5mq80f1rdl64g0gsa2jsqrxv3ydpcl"; "computational-complexity.doc-v2.25c"="h3xh059by91a8dviv27861gwn4dl8wqm"; "computational-complexity.source-v2.25c"="y61fdn71v7zkzikpiznv6vp1axnfahna"; -"cryptocode-2015"="ihl02aim0r3vn3ikdnqbcz89s8wh1c99"; +"cryptocode-2015"="a8n95hv90vi0bx2azmdxlvhvq5jx3384"; "cryptocode.doc-2015"="5cj3y74rvm26fbkj7w62sz8vr0pi3p49"; "digiconfigs-0.5"="r2ph2xkdaslj50qk54n7a1xx37n8pq19"; "digiconfigs.doc-0.5"="vignfzc0zrhrx0jgybwmfcgyfcgaqhim"; @@ -6374,7 +6374,7 @@ "matlab-prettifier-0.3"="j5p21f3rgbx8hyf7rdjbpn845mw8fgih"; "matlab-prettifier.doc-0.3"="zssm3k92kxa3mjja3r4sq2574f7byspr"; "matlab-prettifier.source-0.3"="nkp80iyfa519dkk8gh7pk7fxbj4yn1lj"; -"mhchem-2015"="n5ifdyzg7dyn66gjxd57isv2xmkbh7sn"; +"mhchem-2015"="1saywy0m5qn67kc53ymrfndgnsz9jf8i"; "mhchem.doc-2015"="mx041dvid54apppcb1lcamfgh97np90r"; "miller-1.2"="vgpbb05dlbyp2phs7cpwrl9l8v7yczdb"; "miller.doc-1.2"="fj6s0x2rzvldwm2lrmjx0f3hy9l4ih51"; @@ -6401,7 +6401,7 @@ "sclang-prettifier.source-0.1"="0k4nc1bkrw4l66wr47pd6dgigdgs5i0s"; "sfg-0.91"="5j8965gkq0p9s9ryvy8ym22qz206igqh"; "sfg.doc-0.91"="ydamww1x4qxpg5bsrcacmfwkkv9c876p"; -"siunitx-2.6e"="8bbiv8dzhkfv7by3gi2fmcjnp9fyr0ll"; +"siunitx-2.6e"="yih56wwxqk8jn8x03jy0clm8w28jyvmc"; "siunitx.doc-2.6e"="jfsgv3fv8qfyqq313i8b22s4s7km2yqz"; "siunitx.source-2.6e"="wjgdy4i4r54w8axlkbn1g3y26r6bb606"; "steinmetz-1.0"="v8vskhmyjdhc7yi21b9i11j4lfzmhypm"; @@ -6410,7 +6410,7 @@ "struktex-141"="gv8q53fnzn49ig88gz3nzk0fd3a9hk7w"; "struktex.doc-141"="c6yijrx42fzk1lbci4rm5xs407zi00s4"; "struktex.source-141"="s0rqbynnpr0q90xnmzxikj8hxxfi29sr"; -"substances-0.1"="yki9jds7xw8x1jd1nws44ji009n0c1rg"; +"substances-0.1"="6mq4l73rz9ci50hp75yr2j3ii84b4yrx"; "substances.doc-0.1"="npqr89yn181k41hmz6iflwgjnrvwnhy1"; "t-angles-2015"="an3w3nw07gc6hyzfjk4bd0j4swj8qr4p"; "t-angles.doc-2015"="68ylwxvywabhyfqzlb7d642cmhdj3g2j"; diff --git a/pkgs/tools/typesetting/tex/texlive-new/pkgs.nix b/pkgs/tools/typesetting/tex/texlive-new/pkgs.nix index 62de54c61b4..aa0e4690248 100644 --- a/pkgs/tools/typesetting/tex/texlive-new/pkgs.nix +++ b/pkgs/tools/typesetting/tex/texlive-new/pkgs.nix @@ -9,20 +9,20 @@ tl: { # no indentation }; "2up" = { stripPrefix = 0; - md5.run = "6160fbc7ab71be778081500b908d2648"; + md5.run = "7bb1a159a6e50d7cb807c58f471e360e"; md5.doc = "0a8adeebe5d6e0767e70e818fbb3c042"; hasRunfiles = true; }; "Asana-Math" = { stripPrefix = 0; - md5.run = "19d86bf52a9d1ed6d9337590dde55032"; + md5.run = "5aebdc570d94990c857018260f5f8a98"; md5.doc = "2301c726639f41843eca0b2b3bb9cb6a"; hasRunfiles = true; version = "000.954"; }; "ESIEEcv" = { stripPrefix = 0; - md5.run = "2c4f5c9a7645a2b9b9af3d5b73e0f401"; + md5.run = "9d950e7a10febbba61a3773adfbd20a8"; md5.doc = "b4bc155e9ae3d8d42d240f6f9c21172e"; md5.source = "5bb62443eed2bec459b81cf46e6608f3"; hasRunfiles = true; @@ -35,7 +35,7 @@ tl: { # no indentation }; "GS1" = { stripPrefix = 0; - md5.run = "5764cb56040083565c5671bfc3224686"; + md5.run = "e87284228b76f0d89001343602efa9b4"; md5.doc = "db59c20ce35a05dd89a138c40dd0d732"; md5.source = "eef5755b53a4f1b670cf5c2fd98401c7"; hasRunfiles = true; @@ -43,7 +43,7 @@ tl: { # no indentation }; "HA-prosper" = { stripPrefix = 0; - md5.run = "c3a44a1f1ddbd77e99a8b6459d20e5fd"; + md5.run = "9866c501a40b14c2606b7eca4c0fc7e0"; md5.doc = "af0fdc0ddf1011e219283804356efc02"; md5.source = "a2c652a72a3c077187df34f34f56262d"; hasRunfiles = true; @@ -51,7 +51,7 @@ tl: { # no indentation }; "IEEEconf" = { stripPrefix = 0; - md5.run = "efc934591b3f722a563d5a7bae4ae23d"; + md5.run = "e6de714ebdcc39fc67ca4d18abf6dac5"; md5.doc = "fb5aae252a8c2d904975715e618f40f8"; md5.source = "f4520082e49f3ae96c34da6c81ae5132"; hasRunfiles = true; @@ -59,7 +59,7 @@ tl: { # no indentation }; "IEEEtran" = { stripPrefix = 0; - md5.run = "5a3b93bdbff218ee55a0f0616f3c040e"; + md5.run = "0fc4f6bec699a550e5fa75d6b0bddb2e"; md5.doc = "264b12445cd7806f0dfeba3d8b7d2220"; hasRunfiles = true; version = "1.8a"; @@ -72,7 +72,7 @@ tl: { # no indentation }; "SIstyle" = { stripPrefix = 0; - md5.run = "5e96c0711c587b304dc2fa225361df27"; + md5.run = "99b11ae66cd40dd0eb06505401f68747"; md5.doc = "1239fa7d07e00dc4b6b73d91cf58ccd3"; md5.source = "0d43560456ab44a0725966c52dc043af"; hasRunfiles = true; @@ -80,7 +80,7 @@ tl: { # no indentation }; "SIunits" = { stripPrefix = 0; - md5.run = "6cd33cfa15925340f63e8ba0d317a8a7"; + md5.run = "f6af0d652e977d3c26bb7c2b40ad9a13"; md5.doc = "27ccce30c2b7ccf497d45727c5a7701d"; md5.source = "dc4fa1c2c756880cadae661088d718d0"; hasRunfiles = true; @@ -88,7 +88,7 @@ tl: { # no indentation }; "Tabbing" = { stripPrefix = 0; - md5.run = "6b0450850eeb570c6f304c2dc4c3d795"; + md5.run = "0ae16255ed749bf3eb2befba54eaf484"; md5.doc = "237a539aad03a9e1b216d674abe4f589"; md5.source = "de83b2cfb990f3dfa4fff5f54739b79a"; hasRunfiles = true; @@ -101,7 +101,7 @@ tl: { # no indentation }; "a0poster" = { stripPrefix = 0; - md5.run = "45e2a2b9bee9bef40636101d71f9cd5c"; + md5.run = "10403f3497dd22b5b25a953fd125c262"; md5.doc = "d8b7259abbf0a5014fe1b2d87dabc1d4"; hasRunfiles = true; version = "1.22b"; @@ -113,20 +113,20 @@ tl: { # no indentation }; "a4wide" = { stripPrefix = 0; - md5.run = "e21943226f7346a751b85cc6306ee2d7"; + md5.run = "af70051e68dd90e71fe50a9608bdfbf3"; md5.doc = "be2ed13b65f8f94e1c32d089a548ee1d"; hasRunfiles = true; }; "a5comb" = { stripPrefix = 0; - md5.run = "85232a0d05e33756924e08314744b7cf"; + md5.run = "fa429bf2444a33e1b74094f51c9caa14"; md5.doc = "d0556c3c9be873fc5c22a94bfda29754"; hasRunfiles = true; version = "4"; }; "aastex" = { stripPrefix = 0; - md5.run = "1e1539c707903de67aefa7051b8307eb"; + md5.run = "b68f768656db76e2e1960771bf42f99c"; md5.doc = "064057626265c3fb36060bc047b338ee"; md5.source = "bbf9784b47066821feb3e368609ad85f"; hasRunfiles = true; @@ -134,13 +134,13 @@ tl: { # no indentation }; "abbr" = { stripPrefix = 0; - md5.run = "641b823141d6239bc3b716ae6fe97a51"; + md5.run = "e4008a655e4c492ecf01b6ea5cb1e184"; md5.doc = "b267b32d8706ff81291b85116cd1f620"; hasRunfiles = true; }; "abc" = { stripPrefix = 0; - md5.run = "d1c0e112959085714de5ddf078e48d73"; + md5.run = "66a3c1433b794acf2648eca65b1e28a1"; md5.doc = "990e8ea0832ed5b67c1122b3a715336e"; md5.source = "c8cc2546088dbe26e84ebd4490ee72a0"; hasRunfiles = true; @@ -148,21 +148,21 @@ tl: { # no indentation }; "abntex2" = { stripPrefix = 0; - md5.run = "edba0e09deb7f7b16c58763243e2e4e0"; + md5.run = "af76d1685c42b110accf388eb729fcd9"; md5.doc = "1c22f8e6ca3c0d0c83f03316f556af0c"; hasRunfiles = true; version = "1.9.3"; }; "abraces" = { stripPrefix = 0; - md5.run = "2d10015c0dd7e8d32e8a431a37eaee9f"; + md5.run = "f1678ac00b09c6af67517ac44b5e93e6"; md5.doc = "40d115134f5ab09d979d7870e4bd7eea"; hasRunfiles = true; version = "1.-"; }; "abstract" = { stripPrefix = 0; - md5.run = "c7162d2d13cb30c7c3b43a0e4d5b88f1"; + md5.run = "07bbfbf6fe174b90d7771bee3a3ee6d5"; md5.doc = "16213312c1f8f94390f073b53e03edf8"; md5.source = "0db63af1d628e2bc647759dea25e652b"; hasRunfiles = true; @@ -170,13 +170,13 @@ tl: { # no indentation }; "abstyles" = { stripPrefix = 0; - md5.run = "bdf01d5443a567781641c87182eb68f7"; + md5.run = "2f1da1e274265f0b11eabce2af5e4b10"; md5.doc = "bb64635ab0fca67fa842d3411b364674"; hasRunfiles = true; }; "accanthis" = { stripPrefix = 0; - md5.run = "47da70c3aa3e97330d59e64474970f2a"; + md5.run = "a5505090824f9b1eef737c84098964c4"; md5.doc = "ce24477639adbc5b3fa67e7e009beb01"; hasRunfiles = true; }; @@ -188,7 +188,7 @@ tl: { # no indentation }; "achemso" = { stripPrefix = 0; - md5.run = "13d1d166cee96c8370215b1bedd11416"; + md5.run = "76ab917a2eb927a65d151555a26bf797"; md5.doc = "5c5ba7e6347218f56bfaaad7b5d98988"; md5.source = "9b752f55f85f06470acc0f845f286a97"; hasRunfiles = true; @@ -196,7 +196,7 @@ tl: { # no indentation }; "acmconf" = { stripPrefix = 0; - md5.run = "16d6380f41d272b8a9b517ea2736a45b"; + md5.run = "a31930eff0e21ff7f2ce7c21b00479e5"; md5.doc = "8620b40fbd7ecdec10c737c29cc8b4d5"; md5.source = "56f155fecc9d54379d1bbb64d74070f6"; hasRunfiles = true; @@ -204,14 +204,14 @@ tl: { # no indentation }; "acro" = { stripPrefix = 0; - md5.run = "8241230f3db07d2c535667a9697e67a0"; + md5.run = "9c9ebf4af4a64435e7f491a2e86be855"; md5.doc = "a421de02707480c866b27839a2df53eb"; hasRunfiles = true; version = "1.6a"; }; "acronym" = { stripPrefix = 0; - md5.run = "2371c49ccb261d6ce77e7ff4888ac825"; + md5.run = "705b424c6af5a0c0f492bf90b976c57d"; md5.doc = "400edcf53c76151eb8d8d29d49ff5f68"; md5.source = "507d4927e952b0af50a1257cce619b65"; hasRunfiles = true; @@ -219,7 +219,7 @@ tl: { # no indentation }; "acroterm" = { stripPrefix = 0; - md5.run = "91c8c95949b7f9df952fc15c8403a80f"; + md5.run = "03018c9f7f4d2b3ea68e84df1ccbdf81"; md5.doc = "fb23ce54341ca936284834f5c94010bc"; md5.source = "16bc520dc493376ce292f19a5741d2df"; hasRunfiles = true; @@ -227,7 +227,7 @@ tl: { # no indentation }; "active-conf" = { stripPrefix = 0; - md5.run = "8ef1aa24e055c5b8dc6fcb6797b3e2b5"; + md5.run = "e9bf888b1175837c917a04eeefd5dd06"; md5.doc = "e698b0f423753f833b099017f94f335e"; md5.source = "2b0521e0ab4176d1a53b0a62e65209e7"; hasRunfiles = true; @@ -235,13 +235,13 @@ tl: { # no indentation }; "actuarialangle" = { stripPrefix = 0; - md5.run = "6c508e6d4f2065a14fc5c3ed6c5f548d"; + md5.run = "5a499899f320041942e955b1821da870"; md5.doc = "08e1026a3df3f7c053122b81e29121e4"; hasRunfiles = true; }; "addlines" = { stripPrefix = 0; - md5.run = "15855e2a3f7f55af476cfecefd4b7dcf"; + md5.run = "b319a7c75f18904d96a685f610c3dff4"; md5.doc = "efd056d17474e0bbe0ac0edf8fe452b0"; md5.source = "c02ee46cfa192e1d60a0fc62c299f31d"; hasRunfiles = true; @@ -249,7 +249,7 @@ tl: { # no indentation }; "adfathesis" = { stripPrefix = 0; - md5.run = "1f0eaefde7bd106c2eb75d8da9f54078"; + md5.run = "dcc4946fa14bd2c1baedd047e2ece853"; md5.doc = "04767e9fee9ab3e836c76dba0a108828"; md5.source = "4d29b189840a051ca36e01525f951ed3"; hasRunfiles = true; @@ -257,14 +257,14 @@ tl: { # no indentation }; "adforn" = { stripPrefix = 0; - md5.run = "56cbc439add672fd58902b62bb3779e8"; + md5.run = "f5cee370a0cd64c59a24a057601787ba"; md5.doc = "e601ea8d7f3b296ef13fefe9db4ded95"; hasRunfiles = true; version = "1.001-b-2"; }; "adfsymbols" = { stripPrefix = 0; - md5.run = "b2ca8a6f8c920d6b82d599ad1cfaafff"; + md5.run = "68e1487b795c0a875c3b4f4455dcb071"; md5.doc = "d64257860d7972171fd379dfee0caa1a"; hasRunfiles = true; version = "1.001"; @@ -286,7 +286,7 @@ tl: { # no indentation }; "adjustbox" = { stripPrefix = 0; - md5.run = "35da3a85fe5b7876c6b9d8d9c38ccd40"; + md5.run = "1ab53b197e227520adf500ed6bb1a990"; md5.doc = "827c883c5e523f9718fbb4ba438c3845"; md5.source = "fdc4ec6dcb9227ea6d92bc78f3d4cb90"; hasRunfiles = true; @@ -294,12 +294,12 @@ tl: { # no indentation }; "adobemapping" = { stripPrefix = 0; - md5.run = "89d82242beabd993fd622cc54d1d1e6f"; + md5.run = "e3c3a62e9dc98bdb0e1e720a879642fb"; hasRunfiles = true; }; "adrconv" = { stripPrefix = 0; - md5.run = "9824ce1a4c78bcd0f622d16205c7c4bf"; + md5.run = "4f412334630cf15610996407d564e797"; md5.doc = "b7e6c3544cba9eef6893c080973bc385"; md5.source = "b9b683e1fde8e01ce5cc1b80efde9963"; hasRunfiles = true; @@ -307,7 +307,7 @@ tl: { # no indentation }; "advdate" = { stripPrefix = 0; - md5.run = "8480bcfe9f4f425e621e7adbe8619aa9"; + md5.run = "7d629e37ea05552b679abd6bd5acfb5a"; md5.doc = "4cbf6691163c30cd3a066ed3f3327e39"; hasRunfiles = true; }; @@ -321,7 +321,7 @@ tl: { # no indentation }; "aecc" = { stripPrefix = 0; - md5.run = "31678c5ae1c3bed5d3dfd812c65a0e86"; + md5.run = "11313d539ae52ee46e086b21c6fd3b03"; md5.doc = "23a12dc4bce876da6705f6b99afb53b3"; hasRunfiles = true; version = "1.0"; @@ -339,7 +339,7 @@ tl: { # no indentation }; "afparticle" = { stripPrefix = 0; - md5.run = "5c1012d9a75a71f4444d1c7ae20cb2a4"; + md5.run = "db89568eb7471472df3654b2f028f57b"; md5.doc = "60af2c754ee176cfd6c573023757fa20"; md5.source = "9c6c7c47e0bbdaa18cc6a72a39e7c9ca"; hasRunfiles = true; @@ -347,21 +347,21 @@ tl: { # no indentation }; "afthesis" = { stripPrefix = 0; - md5.run = "0af743414ba4b3412d290b48d97bf04d"; + md5.run = "efd06de2fcd696f8649cff3db05118cb"; md5.doc = "093d4cf597c9ea87459909677f3b4234"; hasRunfiles = true; version = "2.7"; }; "aguplus" = { stripPrefix = 0; - md5.run = "9c64267fd40a8e7cb43f6fa3862c3c94"; + md5.run = "8e12811a4e35131053dc91c4be5cb16b"; md5.doc = "54258d8e87660153851a5dc83dfb7e62"; hasRunfiles = true; version = "1.6b"; }; "aiaa" = { stripPrefix = 0; - md5.run = "9d262ceed1e714d07817323ff3d73d5f"; + md5.run = "93bc2831fce566c857033c97f40187b6"; md5.doc = "23e48e314ce6b7070607d480f15f55ea"; md5.source = "a1f413eca56a520b8aec361e4dac5179"; hasRunfiles = true; @@ -369,31 +369,31 @@ tl: { # no indentation }; "aichej" = { stripPrefix = 0; - md5.run = "7c027bfe032a7e0d81ccd542c32e4668"; + md5.run = "d95342fc2a1cea58aa0726a8542d4da0"; hasRunfiles = true; }; "ajl" = { stripPrefix = 0; - md5.run = "c0df9c0775c16b36415b81468d50c615"; + md5.run = "272c4603d6c59f2f9e7eea2dadd6de11"; hasRunfiles = true; }; "akktex" = { stripPrefix = 0; - md5.run = "b4ad873e50f66e87de99af37279aee0b"; + md5.run = "7d6be2a7e819da8c56e052b9cf8f1745"; md5.doc = "05121e1992ca294fb14213b5f21793dd"; hasRunfiles = true; version = "0.3.2"; }; "akletter" = { stripPrefix = 0; - md5.run = "3f38c3a9cbe463222529893ba3e34c29"; + md5.run = "ac129ba0bc3d8d0234f4d6576f362158"; md5.doc = "b38a48b3dc151aa4277e5947c4e8d150"; hasRunfiles = true; version = "1.5i"; }; "alegreya" = { stripPrefix = 0; - md5.run = "9509b79a4393680f1f7400724a3f9fb6"; + md5.run = "dd7f3f8374de4bc18a151f6035f084df"; md5.doc = "ac666d9ac9ef7199e7f6d2f14547ccc9"; hasRunfiles = true; }; @@ -407,7 +407,7 @@ tl: { # no indentation }; "alg" = { stripPrefix = 0; - md5.run = "7b16c6d949b3ea06704ae147013d3091"; + md5.run = "9f8594c992fc7e47d0755035ca294c0f"; md5.doc = "5106f21c9c58d6c99fa21d5713c77eed"; md5.source = "b85297fc2e935374078835a461773ae5"; hasRunfiles = true; @@ -422,13 +422,13 @@ tl: { # no indentation }; "algorithmicx" = { stripPrefix = 0; - md5.run = "652fe4c2b1866d9b7922da02ae53412b"; + md5.run = "f91a1453c93baf4dbb33f06982d919f2"; md5.doc = "07ba166dc46ad71b46c1b0522bf48cb0"; hasRunfiles = true; }; "algorithms" = { stripPrefix = 0; - md5.run = "b91a9efa5cb98477c9c9d0661788b777"; + md5.run = "c4482676c26ed13234e0c1d60f4cf568"; md5.doc = "f2646ab2ff696a990713096d33239cd2"; md5.source = "7e9caa8faa91efb4f64d1fd8f59878cc"; hasRunfiles = true; @@ -436,7 +436,7 @@ tl: { # no indentation }; "allrunes" = { stripPrefix = 0; - md5.run = "064794fdc73b38bb52882353060a59ca"; + md5.run = "189ffdd821ef4930624622554b375b5c"; md5.doc = "322d5611211d22a92156ed1bfe8720d6"; md5.source = "59011a1830e4ddc05086601e9228798c"; hasRunfiles = true; @@ -444,14 +444,14 @@ tl: { # no indentation }; "almfixed" = { stripPrefix = 0; - md5.run = "761e1526bf7030ad01b398b90187fd47"; + md5.run = "7315b9ac93a82f0802c40a4e9c3b68e2"; md5.doc = "66ce2d4b56910fbd9ff1e08e75f11c6e"; hasRunfiles = true; version = "0.92"; }; "alnumsec" = { stripPrefix = 0; - md5.run = "0fe7e4930548ef519375334881ba0dc7"; + md5.run = "4e405376a9fa9882fd26f63e27900e36"; md5.doc = "d40c629742093b3c61ccea16a71a8687"; md5.source = "2c2cf2c807e511dcd4f32c396e1bb364"; hasRunfiles = true; @@ -459,14 +459,14 @@ tl: { # no indentation }; "alterqcm" = { stripPrefix = 0; - md5.run = "4e1c68d04bb86e09d7c9a42129904caf"; + md5.run = "6fb50ccb86286bf4141fee2592032337"; md5.doc = "f221277c341dfad65d6a0915f78fe0ab"; hasRunfiles = true; version = "3.7c"; }; "altfont" = { stripPrefix = 0; - md5.run = "54ed010b07f02ae1c8c5f2c72ddabca4"; + md5.run = "4a98d94a5066a654862fe3b848fb50b3"; md5.doc = "f9f1632e67019a7a412ddac52036ff53"; md5.source = "782d70d020ea76b04b8c3d6d17ea3e07"; hasRunfiles = true; @@ -474,21 +474,21 @@ tl: { # no indentation }; "ametsoc" = { stripPrefix = 0; - md5.run = "ebde341032058e33dd21e4e01155976f"; + md5.run = "fe3ab5eec5da789e9756cb2eca26e27a"; md5.doc = "a31a3b728b1c02e471413b617676dd80"; hasRunfiles = true; version = "4.3.2"; }; "amiri" = { stripPrefix = 0; - md5.run = "42e2a5c850aad25fa460e8d572df08c9"; + md5.run = "cb39172d7c06f09acae7feeb8f97079d"; md5.doc = "9c47008382daf7e8a0df971b5095e4ef"; hasRunfiles = true; version = "0.107"; }; "amsaddr" = { stripPrefix = 0; - md5.run = "407e8a7370217558f4398fca000f46bc"; + md5.run = "aadba9dba5022eaf95d952e3c00a3347"; md5.doc = "e87048433eb074774c5eaf97456007bb"; md5.source = "5b17a85b736b611965f59f6f3fad0f3a"; hasRunfiles = true; @@ -541,7 +541,7 @@ tl: { # no indentation }; "amsrefs" = { stripPrefix = 0; - md5.run = "cf8005eae9f7f2b5a7516d61428e9b61"; + md5.run = "d330d7b7cf96df740f48ff4595b30036"; md5.doc = "9c8296d11acc5e9ee51e9a972ef84c2d"; md5.source = "83ec3020a97824d7f663803d4500bdd6"; hasRunfiles = true; @@ -561,21 +561,21 @@ tl: { # no indentation }; "animate" = { stripPrefix = 0; - md5.run = "ed62d6aa23d7cec7223c0096027dcd03"; + md5.run = "42ba04fb38506218d17995cf8be80d65"; md5.doc = "25718f3f2a8015c963b116241e1399b7"; md5.source = "c61654a38b4c6cda5f7aca6035fc49fd"; hasRunfiles = true; }; "anonchap" = { stripPrefix = 0; - md5.run = "65eeddc75eaba72237b55ca28e00546e"; + md5.run = "5a3a7b3f7c0516431c6acff8ca8ccb4d"; md5.doc = "0c156316f7f365672a5963f46e86eaa7"; hasRunfiles = true; version = "1.1a"; }; "anonymouspro" = { stripPrefix = 0; - md5.run = "25a3cb268fb9555be1df2faf61597c82"; + md5.run = "ea26dd7a6b8d45c94a39276f70315684"; md5.doc = "07509b8f68cd87a68751da4828bdb6b3"; md5.source = "395e627ceed37f4e77a64495ac64c4c5"; hasRunfiles = true; @@ -583,7 +583,7 @@ tl: { # no indentation }; "answers" = { stripPrefix = 0; - md5.run = "d7716c34654b1e3ffb32e1185c303ee1"; + md5.run = "a4259414007a2b96f3a13cdd7b544254"; md5.doc = "c8e6f5dac1be79af070880a03c78d571"; md5.source = "d2edff813adfda6967c7a49575a5c480"; hasRunfiles = true; @@ -591,7 +591,7 @@ tl: { # no indentation }; "antiqua" = { stripPrefix = 0; - md5.run = "c54c3b38ecbf1df4afdba274aea6deab"; + md5.run = "4665d070b3ac7631dcd009a3d673529a"; md5.doc = "71c955aa99f0cc6c3722e86522c25e19"; hasRunfiles = true; version = "001.003"; @@ -599,7 +599,7 @@ tl: { # no indentation "antomega" = { stripPrefix = 0; deps."omega" = tl."omega"; - md5.run = "215d54622a2cefb3974dae94ba24d2a9"; + md5.run = "8628dd348f5c8870b50f90f3bbb92569"; md5.doc = "67f27c69848db854ef21f7ddf0c3b688"; md5.source = "48db08f013a63871669c6c58e42942f8"; hasRunfiles = true; @@ -607,7 +607,7 @@ tl: { # no indentation }; "antt" = { stripPrefix = 0; - md5.run = "f2705764ac75c0e9cab87905796575d9"; + md5.run = "c0279a8aaeed8ac38b9a89590d7c4a4a"; md5.doc = "623bf7f65aafd1ba1e0b5a7cf8e4cedc"; hasRunfiles = true; version = "2.08"; @@ -619,7 +619,7 @@ tl: { # no indentation }; "anyfontsize" = { stripPrefix = 0; - md5.run = "1890420952ec887e1d4777ccea0e363c"; + md5.run = "fdb9465ddb0f421ddd354c2d334c1ca6"; md5.doc = "24b192b9dee66629d432ec2b7e149dc9"; hasRunfiles = true; }; @@ -631,7 +631,7 @@ tl: { # no indentation }; "aobs-tikz" = { stripPrefix = 0; - md5.run = "1945d4d8eaa0017b905897fbf907460e"; + md5.run = "f65885068de76bbeb341d46c0fdd8707"; md5.doc = "6622a1e4703d479b18d9d08f672c994b"; md5.source = "052778aba9c6917c93c03c5ed598b37e"; hasRunfiles = true; @@ -639,7 +639,7 @@ tl: { # no indentation }; "aomart" = { stripPrefix = 0; - md5.run = "dfabcf72922c912bed9c14e6cbc28bc2"; + md5.run = "bc83076e0af17bcc1f4007c349731cbc"; md5.doc = "e014f6a0d162755fb3bf5d3950c653ee"; md5.source = "ea228f1a2d8b319e6aaf812f57c34c13"; hasRunfiles = true; @@ -647,14 +647,14 @@ tl: { # no indentation }; "apa" = { stripPrefix = 0; - md5.run = "cdd4878faaf4af465740cd33c36343eb"; + md5.run = "74cbd5fd02e586bbff1cf8b4ef80357b"; md5.doc = "8b2b0b57d499b694db28348f9c550579"; hasRunfiles = true; version = "1.3.4"; }; "apa6" = { stripPrefix = 0; - md5.run = "8b61cdd2f5d3f6945df3f2f584d39236"; + md5.run = "281514d19536aa62a3f2a9aa363ee395"; md5.doc = "96038b1f09d17b6c4f9a891e0f22cfe7"; md5.source = "28f47b75bf7f98e02ca53e05d219e938"; hasRunfiles = true; @@ -662,7 +662,7 @@ tl: { # no indentation }; "apa6e" = { stripPrefix = 0; - md5.run = "724e807353ba728dbfd98fe97c615bc7"; + md5.run = "de1250e843a39d44072cf21b51d8f3b5"; md5.doc = "baaa77ebf769b05b1ded9272a2b40ddf"; md5.source = "42ae08c0511dadea3e38233762c717eb"; hasRunfiles = true; @@ -670,7 +670,7 @@ tl: { # no indentation }; "apacite" = { stripPrefix = 0; - md5.run = "a97e2a2ba03d75c3b0f7053d564e9e73"; + md5.run = "1c48e9d12ecf58f9e7276d7a9dfb7660"; md5.doc = "62fa055d15a3f7324bae90b8efd6ad89"; md5.source = "3c01e80975e2df8d7c1915836a8712dd"; hasRunfiles = true; @@ -678,7 +678,7 @@ tl: { # no indentation }; "apalike2" = { stripPrefix = 0; - md5.run = "0f01887a7d362f2662a0e7cb8891b67f"; + md5.run = "6f3f66c1e2575d0a164b6d42bdbe9f8e"; hasRunfiles = true; }; "apnum" = { @@ -698,7 +698,7 @@ tl: { # no indentation }; "appendixnumberbeamer" = { stripPrefix = 0; - md5.run = "59047c6fdeed4f0d4f6998dd217305af"; + md5.run = "4f656d8a1751c2339e6921c6876316cf"; md5.doc = "662d1e5929c5d942663d18083f28f9a7"; hasRunfiles = true; }; @@ -710,7 +710,7 @@ tl: { # no indentation }; "apptools" = { stripPrefix = 0; - md5.run = "691080aebc5d422c3cd97643a0bb0017"; + md5.run = "a9ec0d90632ac8efae752aa732b6d578"; md5.doc = "9e87e5f61d40dacd2d470abede30d901"; md5.source = "a515dafef0994664fa35dc0c98dfd374"; hasRunfiles = true; @@ -718,14 +718,14 @@ tl: { # no indentation }; "arabi" = { stripPrefix = 0; - md5.run = "b9e26b944bb7f58fef004e08fa61f247"; + md5.run = "69248ee4700b329da9dee0b703484b18"; md5.doc = "27e37a27852fc470c10a660a802d1e36"; hasRunfiles = true; version = "1.1"; }; "arabtex" = { stripPrefix = 0; - md5.run = "029ed18480e442cd751d09569b4cac54"; + md5.run = "bb29c6ab4c8c8397cb9f994e246959d5"; md5.doc = "1309af120d221d0f7d5baec28c2ef4b8"; hasRunfiles = true; version = "3.17"; @@ -740,7 +740,7 @@ tl: { # no indentation }; "aramaic-serto" = { stripPrefix = 0; - md5.run = "53f2667f5dc6e07792576c99ce93cce1"; + md5.run = "ae30eac97b605eafd97408de3badc6d4"; md5.doc = "85e29ebbf5fd7feb23bd95e979126cf5"; hasRunfiles = true; version = "1.0"; @@ -754,14 +754,14 @@ tl: { # no indentation }; "archaic" = { stripPrefix = 0; - md5.run = "b5401aacafff63b368768768ba43f6f5"; + md5.run = "0773b1bad7bbdc6a3d48f9cc9498a10f"; md5.doc = "2ad612b6abbd479312fab9e6d57926d5"; md5.source = "ce5a8d1e5a11faac9505f48fe1ee7fd2"; hasRunfiles = true; }; "arcs" = { stripPrefix = 0; - md5.run = "85a053d2b161928d03f9e3b2489fdd06"; + md5.run = "4a0436364f7ca49852d5ebaf81ae87e8"; md5.doc = "02349e6a4aa38c51dc7920f18b6416d1"; md5.source = "a7ce1cbafe469d617f8ea5e281cd81b9"; hasRunfiles = true; @@ -769,7 +769,7 @@ tl: { # no indentation }; "arev" = { stripPrefix = 0; - md5.run = "2407880966374b9d40293380c0c5f6c3"; + md5.run = "ca5689b704fad7b2bda3cbf093071b9b"; md5.doc = "eb03e53802b27949b0e50d00c7ead594"; md5.source = "97f514d0409ccfdd4ee8433fb765f317"; hasRunfiles = true; @@ -788,20 +788,20 @@ tl: { # no indentation }; "arphic" = { stripPrefix = 0; - md5.run = "8f6a847aa1e45e8470f9427c07bb5b27"; + md5.run = "596ff5700adcaaad413fea9196dddf83"; md5.doc = "c74acfef13cb22e7e4749e4bab7e7cac"; hasRunfiles = true; }; "arrayjobx" = { stripPrefix = 0; - md5.run = "d962f8b7e95f5b0352bff4f298324af4"; + md5.run = "767b2f2b7f719a65a90bd6017a098a55"; md5.doc = "8416dbda06c615ae55d72875e038f0f8"; hasRunfiles = true; version = "1.04"; }; "arraysort" = { stripPrefix = 0; - md5.run = "2419f909cfb9e05a7c701ef2bcaa42da"; + md5.run = "8915aef877261944f996a064dc3420cf"; md5.doc = "5fbc26a4c0532c0d4d8828ef766d87cc"; md5.source = "ae5d2cc144fd512abd230178865f8ae4"; hasRunfiles = true; @@ -809,14 +809,14 @@ tl: { # no indentation }; "arsclassica" = { stripPrefix = 0; - md5.run = "333c4d02f625deed2e864bdafa3ad3fc"; + md5.run = "4b3eea641c1eafc55d9efb3a9975543d"; md5.doc = "f8a0662d518ab2ff27bd2a48faacdffb"; hasRunfiles = true; version = "4.0.3"; }; "articleingud" = { stripPrefix = 0; - md5.run = "ec28a05077ce97023ed8989c0a72d9ef"; + md5.run = "e6eba53194125723a1f1dbe1c8d8532c"; md5.doc = "5ab46df5e09a24eab1adfe6c92543262"; md5.source = "fd3e15d4d92d7af03af58a6ac8728281"; hasRunfiles = true; @@ -824,7 +824,7 @@ tl: { # no indentation }; "arydshln" = { stripPrefix = 0; - md5.run = "0eb08a7144e7059ba8cdce8d94e938c4"; + md5.run = "8c6c4f962e681473394e379f8a911be8"; md5.doc = "d352488ac8def5720341a2b67086e820"; md5.source = "a5ebba61fa0249096fdd207882b1581c"; hasRunfiles = true; @@ -832,14 +832,14 @@ tl: { # no indentation }; "asaetr" = { stripPrefix = 0; - md5.run = "69e73aa3214aec5cf9f28719da6aa11e"; + md5.run = "757b274fbc8773176cbf005bea2bec57"; md5.doc = "01935e1d4d89881cde5cac02cb253b4f"; hasRunfiles = true; version = "1.0a"; }; "ascelike" = { stripPrefix = 0; - md5.run = "e069fe31b984a811e077d6d9cbf96cff"; + md5.run = "d455640c57e3f17308f73082b702c88a"; md5.doc = "0166c6c06a6ce76d75497a0f89c9466f"; hasRunfiles = true; version = "2.3"; @@ -851,7 +851,7 @@ tl: { # no indentation }; "ascii-font" = { stripPrefix = 0; - md5.run = "e8f91c8512b042479960351277b9e8be"; + md5.run = "46bd19672126abd1dd5f800d04840e5a"; md5.doc = "811ec4c423a5f4a5f0fa0df834c4faa5"; md5.source = "5a4446447d7ca12d999db5bdc92eb550"; hasRunfiles = true; @@ -859,41 +859,41 @@ tl: { # no indentation }; "askmaps" = { stripPrefix = 0; - md5.run = "8bc5adcd2fe5334eb59634cdfa9300d3"; + md5.run = "f266259b3f32a155df0a30cfd4c50b63"; md5.doc = "dee7d5e6677a8a6ea0c815a951c57e40"; hasRunfiles = true; version = "0.1"; }; "aspectratio" = { stripPrefix = 0; - md5.run = "7d48d2702032b8a3916e68cc1c291f37"; + md5.run = "876dac18bfaa5182d7da4cb12beb3a83"; md5.doc = "aeb956a2b34ab2b30f445a3330e5ad50"; hasRunfiles = true; version = "2.0"; }; "assignment" = { stripPrefix = 0; - md5.run = "cc40951586224b96a07ada38a396c1f2"; + md5.run = "9c754f863d9ebf631373caeb58c6041b"; md5.doc = "248210b8e247f3d4b3db62749364297e"; hasRunfiles = true; }; "assoccnt" = { stripPrefix = 0; - md5.run = "3f28de304faf568ab6781003fdb97809"; + md5.run = "89795c1415f88bc7cfa521c9a2aea34a"; md5.doc = "a321f2f1c28cb67ce5577a805111a666"; hasRunfiles = true; version = "0.5"; }; "astro" = { stripPrefix = 0; - md5.run = "f0e2b77779e8cdf144d224f6809a878a"; + md5.run = "2bf0dfa03f41060cc4c273ef87aaa21f"; md5.doc = "b1596f1f2a609d47d442d13d0c793b10"; hasRunfiles = true; version = "2.20"; }; "asyfig" = { stripPrefix = 0; - md5.run = "6610c66949eee5fdabeb2f50e8c35668"; + md5.run = "d6698e6c06e56b91639b0aa6ba8030ba"; md5.doc = "be83a8ef59db300621b56d95791925e3"; md5.source = "d7cd4ed49e70ba72e4cf9c6cace33300"; hasRunfiles = true; @@ -922,7 +922,7 @@ tl: { # no indentation }; "asypictureb" = { stripPrefix = 0; - md5.run = "be8258a7f0b554d9921051da104305e7"; + md5.run = "d3e523849b4a6dcd3a08a920067171fb"; md5.doc = "18334b34ec0e8212118feaddfcadca5c"; md5.source = "bd1861e313c51392d0d025d95dcf8b9f"; hasRunfiles = true; @@ -930,7 +930,7 @@ tl: { # no indentation }; "attachfile" = { stripPrefix = 0; - md5.run = "86c1195e4baa116ee459d4ab67dcb303"; + md5.run = "9753e49c34173911bb08703a14b10ee9"; md5.doc = "dcf018b316732f9cd8751e37755cee82"; md5.source = "717185b74828bd2b64fb1e951ff06c7f"; hasRunfiles = true; @@ -938,13 +938,13 @@ tl: { # no indentation }; "augie" = { stripPrefix = 0; - md5.run = "9001e310cba33111180c780ab1a16d87"; + md5.run = "5edc494193b7597fde5a203b045fc095"; md5.doc = "57ebe04633f9f0b06d86bdd241c353ae"; hasRunfiles = true; }; "auncial-new" = { stripPrefix = 0; - md5.run = "3f116604d5ffcc6a8cb2750c37e0a3c6"; + md5.run = "22b90312b944cdd68bd653863cd29f6e"; md5.doc = "1d4289adb757778696ddf805f1fb5405"; md5.source = "38e700c4b61727dc8472ff98d411c206"; hasRunfiles = true; @@ -952,26 +952,26 @@ tl: { # no indentation }; "aurical" = { stripPrefix = 0; - md5.run = "220a479a055e6cae95d875147bebca10"; + md5.run = "55df75d08ba797b1495597d25e9a5638"; md5.doc = "87ea53cf6e2c9844c63276b5b2c92194"; hasRunfiles = true; version = "1.5"; }; "authoraftertitle" = { stripPrefix = 0; - md5.run = "61d7764727f0362bace0feab956c7d57"; + md5.run = "53939213c73d4a76ac057509ead663c6"; md5.doc = "d57af2f290c7480d3d684762a312713b"; hasRunfiles = true; version = "0.9"; }; "authorindex" = { - md5.run = "a1fa0210f9b6aa224507d1bd7b38826f"; + md5.run = "11d2c5c02fa806395fc15995b8451edd"; md5.doc = "c518a7f9a34da2f2bac741bc033a1417"; hasRunfiles = true; }; "auto-pst-pdf" = { stripPrefix = 0; - md5.run = "8c216ed90f604ee12a635191c716200f"; + md5.run = "fbfcfccf291b539876da88f37c8e8a34"; md5.doc = "28c777fa51d096f534eddc09bccf4651"; md5.source = "139be5a13e50a628f0f7071ff84a0fed"; hasRunfiles = true; @@ -979,7 +979,7 @@ tl: { # no indentation }; "autoarea" = { stripPrefix = 0; - md5.run = "35edd9dc5d640f0d2b7f9fbcd334cbcf"; + md5.run = "669349587e4d193e5d27b77f5e3f03da"; md5.doc = "7430909ea2e4cb47c6f134727ac75f8b"; hasRunfiles = true; version = "0.3a"; @@ -993,7 +993,7 @@ tl: { # no indentation }; "autonum" = { stripPrefix = 0; - md5.run = "b1d7dfb0f60efd8e976a0097531a2c18"; + md5.run = "b11b7a4a715621467ca60e45c07c5311"; md5.doc = "a5b121b5325f47f41327e5c169317ec9"; md5.source = "a3e501ede803afc09cc747f09ba26a4e"; hasRunfiles = true; @@ -1001,7 +1001,7 @@ tl: { # no indentation }; "autopdf" = { stripPrefix = 0; - md5.run = "580d7d42042eda77bc7019e1b0af4d5d"; + md5.run = "1f8f4555601a8a272dddd09f976d4500"; md5.doc = "cc8a9384403dcac62e31dfe6fe3165a6"; md5.source = "22753e0ba030c6f1ad02c49f99920ce5"; hasRunfiles = true; @@ -1014,7 +1014,7 @@ tl: { # no indentation }; "avremu" = { stripPrefix = 0; - md5.run = "3f77ccfd33c80529745548a00428a1b7"; + md5.run = "9a199f4b4412fa09b1921cd1494153ee"; md5.doc = "d1e368ef3f365cce61b4ae2a7072ca08"; md5.source = "8fd882a805a7c45a34f20223556556ee"; hasRunfiles = true; @@ -1022,7 +1022,7 @@ tl: { # no indentation }; "b1encoding" = { stripPrefix = 0; - md5.run = "f7d7bf92344e0c378afa5cb02c7344c2"; + md5.run = "6f65a6ab843ba50a5514bfd26e6c546d"; md5.doc = "c1e8fb64cc38804f071b83bc7550a133"; md5.source = "98994cfc7c0e50e82817f8bf49fe8d00"; hasRunfiles = true; @@ -1046,7 +1046,7 @@ tl: { # no indentation }; "babel-bahasa" = { stripPrefix = 0; - md5.run = "8e3aa3e65e17d3b6bc716f1e5fe344ea"; + md5.run = "522c82be23e4dfa5eca0437ec245d0eb"; md5.doc = "0607dfc38b4bdb6a4021e470af1a9c3a"; md5.source = "e536a06afbdd0a609cfd20508f2eab3d"; hasRunfiles = true; @@ -1134,7 +1134,7 @@ tl: { # no indentation }; "babel-esperanto" = { stripPrefix = 0; - md5.run = "85081578e6e3b87305cfa48997366486"; + md5.run = "cb218ce2c3c1eba191a4a7983b583d80"; md5.doc = "fc24f6e6479386d8de6f33e918518be9"; md5.source = "0bda1241eba99854ea0615cda233b54c"; hasRunfiles = true; @@ -1179,7 +1179,7 @@ tl: { # no indentation }; "babel-georgian" = { stripPrefix = 0; - md5.run = "bcce18483bc47d47bf41b8322c83abfa"; + md5.run = "2e9518855a4b5632735eae9e811654aa"; md5.doc = "45dcd64f71cd69d96e3d10a570952e3d"; hasRunfiles = true; version = "2.1"; @@ -1194,7 +1194,7 @@ tl: { # no indentation }; "babel-greek" = { stripPrefix = 0; - md5.run = "1984c16e02ee88db879f3529d3023a11"; + md5.run = "e00c63975c5615e0056812b9051f6434"; md5.doc = "e5f0e67f36d25c4e53319997c7f27c93"; md5.source = "983e32b4e40a6f39127b8d89fc8bd95b"; hasRunfiles = true; @@ -1202,7 +1202,7 @@ tl: { # no indentation }; "babel-hebrew" = { stripPrefix = 0; - md5.run = "8c2be6cd01e4c549fb0360eaa5fb4a78"; + md5.run = "fc9193b48bdc9bef784a7eaec2616723"; md5.doc = "c345af0ae04f9f0b09d8feb80780016f"; md5.source = "8a5618148bca5cdbf40192a839d4ca16"; hasRunfiles = true; @@ -1225,7 +1225,7 @@ tl: { # no indentation }; "babel-interlingua" = { stripPrefix = 0; - md5.run = "d9c506d7e19bbd61a4f97c2342a4e973"; + md5.run = "9b0102d3becb3c2cc622b1c9230d0e22"; md5.doc = "ccb8b4274e602b3b4dff4b055125d7d0"; md5.source = "51c310540096e3b10ebdcdda16973241"; hasRunfiles = true; @@ -1375,7 +1375,7 @@ tl: { # no indentation }; "babel-sorbian" = { stripPrefix = 0; - md5.run = "1bc6d7df61a9c9648c2e77aee6c8c791"; + md5.run = "368f7c78174e2ee51a06bdcc3f5394ad"; md5.doc = "a7470927fea81e37a34fe58f4bb2ff11"; md5.source = "4b92486248e02ce1517a4216ae9d332d"; hasRunfiles = true; @@ -1399,7 +1399,7 @@ tl: { # no indentation }; "babel-thai" = { stripPrefix = 0; - md5.run = "f7cf0862dab30fa9dfef3307a940dcb6"; + md5.run = "8585381770da199fd8e3a0ec20be9f9d"; md5.doc = "38fdaf90bc67915efe0af420490b1b4b"; md5.source = "fe6ff150e5ca32c0d1e141c62794d38b"; hasRunfiles = true; @@ -1422,7 +1422,7 @@ tl: { # no indentation }; "babel-vietnamese" = { stripPrefix = 0; - md5.run = "ab5e561366f2a58de214270ba507901c"; + md5.run = "2fdf2751a27280d2cbde08f5ce734dbc"; md5.source = "0a924f3a3e891f1f7cb3e1c356a315e5"; hasRunfiles = true; version = "1.3"; @@ -1444,7 +1444,7 @@ tl: { # no indentation }; "background" = { stripPrefix = 0; - md5.run = "62031915c1ce85d2a1bf7ef6c820186f"; + md5.run = "a81d62058ad3df91b4905b77db4fc308"; md5.doc = "3dace5849831ce174e7b933c12faeb55"; md5.source = "97f3d7b4bb072d255c8642e570112d47"; hasRunfiles = true; @@ -1460,14 +1460,14 @@ tl: { # no indentation }; "bagpipe" = { stripPrefix = 0; - md5.run = "cabdfba4e7e9bc5042f67e87b4054247"; + md5.run = "9cce11d380d45d9b6b8c29de338c7334"; md5.doc = "ccfb9968d9c691bbb003e0efd36afb30"; hasRunfiles = true; version = "3.02"; }; "bangorcsthesis" = { stripPrefix = 0; - md5.run = "7bbe3839d9ea84ff101b80c9b037f7c1"; + md5.run = "cb36f03a968ef3485fc0a49c4cd909bf"; md5.doc = "3d61576c27bc912fd958c425c4daa545"; md5.source = "2fe55c4f18d64862191f37b56ce0fc0c"; hasRunfiles = true; @@ -1475,53 +1475,53 @@ tl: { # no indentation }; "bangtex" = { stripPrefix = 0; - md5.run = "9fad334167393d297d72415f676ed5f5"; + md5.run = "8a03154bce368a5e3e95ca13b23ce1e4"; md5.doc = "a46ac7d0c7b2d42d1bb15686d0dd7464"; hasRunfiles = true; }; "bankstatement" = { stripPrefix = 0; - md5.run = "357453fb9230f4cd8a593342e73a9e2d"; + md5.run = "105a0ea864a5808e4fd37e472d2a5eeb"; md5.doc = "b847e072c567e563569f657676311194"; hasRunfiles = true; version = "0.9.1"; }; "barcodes" = { stripPrefix = 0; - md5.run = "ea0d681bb85658f47f7af834b775b211"; + md5.run = "fe0268761b0e726bffe88f704822a8bc"; md5.doc = "20eae7851d01fa11a889cb93de3280a3"; md5.source = "071e7618c23a73a8ef0d98bbfc250f66"; hasRunfiles = true; }; "bardiag" = { stripPrefix = 0; - md5.run = "f431c62f5240b2dbb1f2cbd220457706"; + md5.run = "12f14112b2d9ad8d1553be19a37f928c"; md5.doc = "1a8cc2802dd1d825b31e08ce41536e57"; hasRunfiles = true; version = "0.4a"; }; "barr" = { stripPrefix = 0; - md5.run = "c2c6f2082d05bc9f0b4ba948455ee4c8"; + md5.run = "26afc7b338dd88be3b84563e74639f47"; md5.doc = "65426a713efe35b7225bf38d0cd1b0dd"; hasRunfiles = true; }; "bartel-chess-fonts" = { stripPrefix = 0; - md5.run = "0ff9184cf604290868a5e3de50cbf1dd"; + md5.run = "53c016d594804d7239a1de482c1b1cbf"; md5.doc = "3e1ce1227a55ca603cff6431b80cc47e"; hasRunfiles = true; }; "bashful" = { stripPrefix = 0; - md5.run = "0dae8ec1768dc1ecf34c7741087b39c2"; + md5.run = "89110fd11e57e9b4216349910515f35f"; md5.doc = "8fa57c4d151e5e77f4ab62dfb50991b3"; hasRunfiles = true; version = "0.93"; }; "basicarith" = { stripPrefix = 0; - md5.run = "d954fd8b173f9d9a713ba3ead6a00fcd"; + md5.run = "169fd38f356734ceefdcbadd6d0350d4"; md5.doc = "66f970372440bf74d93fdc2139217378"; md5.source = "783e47becf4eb98c07f7999c7a557157"; hasRunfiles = true; @@ -1529,7 +1529,7 @@ tl: { # no indentation }; "baskervald" = { stripPrefix = 0; - md5.run = "ee602d672770452fc82519753e46c42c"; + md5.run = "f2ff44bb164f55af27c3088a902ac556"; md5.doc = "ef2655a0de4300069d323c7bf92621a1"; md5.source = "eac1760a42c7651b61b8406d0b4950fa"; hasRunfiles = true; @@ -1537,7 +1537,7 @@ tl: { # no indentation }; "baskervaldx" = { stripPrefix = 0; - md5.run = "eb344270df8fe5d475b7b8e1332c02a5"; + md5.run = "03b8ea80be09d41349748e690d8009c7"; md5.doc = "d70890b43a6d1b6abcb12950d14072cf"; hasRunfiles = true; version = "1.07"; @@ -1566,7 +1566,7 @@ tl: { # no indentation }; "bbding" = { stripPrefix = 0; - md5.run = "00752b3cbf3694e28b03b0352cd78dce"; + md5.run = "b0bd738d1c9181469147322b6fde4e12"; md5.doc = "df271767d672360e1be524750c26b407"; md5.source = "6a4163bf72ad61670b27ac0f638d03ce"; hasRunfiles = true; @@ -1574,20 +1574,20 @@ tl: { # no indentation }; "bbm" = { stripPrefix = 0; - md5.run = "c9e07bf22bbbc24ce36b6cf151970e66"; + md5.run = "b3822f0ee43ffaef9ce4598954ca99db"; md5.doc = "32a16da46abb049aeef8db96cf8d6dc8"; hasRunfiles = true; }; "bbm-macros" = { stripPrefix = 0; - md5.run = "ea7b3b2b270a8d3f5c6d1b05e412b37d"; + md5.run = "6f566a394cc31dcfe1c920dd50379215"; md5.doc = "adf994f3192ae5d5c62f10a7064eb126"; md5.source = "50b36bf67da223a66cd3596ad87df377"; hasRunfiles = true; }; "bbold" = { stripPrefix = 0; - md5.run = "32acc0f3185fe9fff4c317237ec9d7d4"; + md5.run = "b4a3bb8d70baf1a06a96f802d4ae6c84"; md5.doc = "038ba4376b60d8584cf46ae26e65aa0c"; md5.source = "6308c7f5fd0420720ba48746f4043d85"; hasRunfiles = true; @@ -1595,20 +1595,20 @@ tl: { # no indentation }; "bbold-type1" = { stripPrefix = 0; - md5.run = "f09e5493c456e022bdda7b14b3d70410"; + md5.run = "44f08636d46469162b57b9e041ef63c8"; md5.doc = "f90a5109d814006f10d11f64dc22a99d"; hasRunfiles = true; }; "bchart" = { stripPrefix = 0; - md5.run = "78eb2ac5f029ce80bc0fc686621e6739"; + md5.run = "e35abfbe0c4d5f13101b06c308242e81"; md5.doc = "256b575f84864700a827aa0471b59b1d"; hasRunfiles = true; version = "0.1.2"; }; "bclogo" = { stripPrefix = 0; - md5.run = "7261f9d1645390848f11782c5672931e"; + md5.run = "ded273e15895249f4ac0d1f258f6cfbc"; md5.doc = "5b66acaaa3a9d064cdb3181f8ab3e7d1"; hasRunfiles = true; version = "2.26"; @@ -1624,7 +1624,7 @@ tl: { # no indentation }; "beamer-FUBerlin" = { stripPrefix = 0; - md5.run = "1c7820ca19de3159cb4fa15337397f4f"; + md5.run = "513e13373ecb717cce6b7b77b6e0c874"; md5.doc = "965b10a19d3c3316407081e13b19b9b1"; hasRunfiles = true; version = "0.02"; @@ -1636,35 +1636,35 @@ tl: { # no indentation }; "beamer2thesis" = { stripPrefix = 0; - md5.run = "fa0d050ae5c2c2ea1e09b99d95bac100"; + md5.run = "7f7d88008683f6b35d1788e85a9641a2"; md5.doc = "9d3bffdc02305423656f8ba4c1da0335"; hasRunfiles = true; version = "2.2"; }; "beameraudience" = { stripPrefix = 0; - md5.run = "d0a40600cb30f052cc41e36bded4e55f"; + md5.run = "151b2681938f64fdeba62ed989a4d3ec"; md5.doc = "ba28c314551b27db3a24825ef1612161"; hasRunfiles = true; version = "0.1"; }; "beamerdarkthemes" = { stripPrefix = 0; - md5.run = "4bd578a669293051d5c93ca6e4968927"; + md5.run = "5d7737b5b6626bd682a5c43fe511f5b6"; md5.doc = "25fda34dad91b3d995a8731fbe17fcd1"; hasRunfiles = true; version = "0.4.1"; }; "beamerposter" = { stripPrefix = 0; - md5.run = "b1115cb8d031a7b7e3f9c204af8036be"; + md5.run = "e439f40949b723f625eb348aba9f7ccd"; md5.doc = "d483a6f35a9f14dfc403e8cc7140218e"; hasRunfiles = true; version = "1.07"; }; "beamersubframe" = { stripPrefix = 0; - md5.run = "3e6ae2b23aa2cbb72ca2f2e485c926ef"; + md5.run = "eff6cec28c85b2311d7d1c19aeaecffa"; md5.doc = "2a1eead19d30afdef4cce9bf83452c01"; md5.source = "d2f10c8917235d90299b682564e0e649"; hasRunfiles = true; @@ -1672,20 +1672,20 @@ tl: { # no indentation }; "beamertheme-upenn-bc" = { stripPrefix = 0; - md5.run = "f14db3b2d3f02e0108bafdc91472e975"; + md5.run = "932f64df5806e8b0a311156bbfb017e4"; md5.doc = "779f7c9df8fb748ba3140f459a64264d"; hasRunfiles = true; version = "1.0"; }; "beamerthemejltree" = { stripPrefix = 0; - md5.run = "d5e9ee8ea6f95508c16832bff3252520"; + md5.run = "8666cf35ffe77e0ebf7d179c85e62716"; hasRunfiles = true; version = "1.1"; }; "beamerthemenirma" = { stripPrefix = 0; - md5.run = "9d1943de704ca5ea3f24370e847e93eb"; + md5.run = "7a0e17662f29d3b21624844f47cd6e95"; md5.doc = "83b89e449210cfc0a4c8da9cb73acf89"; hasRunfiles = true; version = "0.1"; @@ -1698,12 +1698,12 @@ tl: { # no indentation }; "beebe" = { stripPrefix = 0; - md5.run = "02418ac69ca456699e8a66b7fe110400"; + md5.run = "2833962aaaab80e32117f1bf1bb8e2d7"; hasRunfiles = true; }; "begingreek" = { stripPrefix = 0; - md5.run = "26b403eed53c46ac30b1afcb11ceafc7"; + md5.run = "80ed4619c49273677813333d905258af"; md5.doc = "a079a81a331ba299c6b9044e6bcd203a"; md5.source = "6583abd6607529444a5d4930e28f2c45"; hasRunfiles = true; @@ -1718,54 +1718,54 @@ tl: { # no indentation }; "belleek" = { stripPrefix = 0; - md5.run = "42b8402f490e35c220c0570f04673738"; + md5.run = "eb958e105c4f4484e3acddc8242afc39"; md5.doc = "3a7a90e075c416c35edec3f3b77f7e7b"; md5.source = "b29f527e560c1ca59e7d6474c7456920"; hasRunfiles = true; }; "bengali" = { stripPrefix = 0; - md5.run = "d10750107840cbcdc2ae992190349e51"; + md5.run = "162b30cf493d568b2e973f5090a80e36"; md5.doc = "72887b2cd7cccf98d808d552e49955ca"; md5.source = "6241c99d08a8aff5d93d7d1adf4d7860"; hasRunfiles = true; }; "bera" = { stripPrefix = 0; - md5.run = "c1495646b7c9c10a7f7c0af4a486ac2b"; + md5.run = "17316aab845dd2d870d012062ea1e4bf"; md5.doc = "20342015f5f5ddc445d00730f2ef4357"; hasRunfiles = true; }; "berenisadf" = { stripPrefix = 0; - md5.run = "0a59f56f872f489f5af02a56f4a51007"; + md5.run = "cc2d776d1e498c312bdcfe01b24e5dcf"; md5.doc = "edc4b1f2c0c271fd83848a4d21838237"; hasRunfiles = true; version = "1.004"; }; "besjournals" = { stripPrefix = 0; - md5.run = "ae4650a5e8cbff4c2d1ad52a894e3248"; + md5.run = "d35683147443c3896e3cbb96c4ca225f"; md5.doc = "957fdf97b7947913a24e0e84cfd53aa3"; hasRunfiles = true; }; "betababel" = { stripPrefix = 0; - md5.run = "58fe35eea0e1effb2dc5892c389b461a"; + md5.run = "3c1ceb33fb779b6f0d9bfd8b5e7b006e"; md5.doc = "db1564abd6f6d1ba55b8f3498eb1918e"; hasRunfiles = true; version = "0.5"; }; "beton" = { stripPrefix = 0; - md5.run = "aad4c408ac4b99b84c3dfcffb4727d2e"; + md5.run = "bc4526db31ecbdd74b2288edf8af3df3"; md5.doc = "bf9e114aea75a0a69cf6dc21ee755d17"; md5.source = "2f7c68cdce06d729b227a33cba05e066"; hasRunfiles = true; }; "bez123" = { stripPrefix = 0; - md5.run = "d8fe7ca7018d5a4681cfc093cc14b1b3"; + md5.run = "5cf86432d08b6dbcf1de5514c293f03f"; md5.doc = "b8b8cf92dfd728b7a11fe42386cda055"; md5.source = "6121f849ebecccd728e10ec77263eccc"; hasRunfiles = true; @@ -1773,20 +1773,20 @@ tl: { # no indentation }; "bezos" = { stripPrefix = 0; - md5.run = "765be665b1c4e2bc4be025363780723b"; + md5.run = "c2dbdcd42e5d6b4b7059bd874abd0f61"; md5.doc = "0e720810d98dc3019568d21fe39953b0"; hasRunfiles = true; }; "bgreek" = { stripPrefix = 0; - md5.run = "2934ab79888aaff54a942b02cd36109e"; + md5.run = "57a23e7246f0142779f738b6405f3d46"; md5.doc = "5e8c49e2a2c8258be8d9c63d5b875a23"; hasRunfiles = true; version = "0.3"; }; "bgteubner" = { stripPrefix = 0; - md5.run = "fc17cc32a2bac7a8ce7c89a306e9ee2e"; + md5.run = "7d7b988ae362ef5fa731d83f909b4640"; md5.doc = "20140ca1fffdfc38e71a5b636197a324"; md5.source = "9795e8a3e16741deeb948f42ef745e46"; hasRunfiles = true; @@ -1794,7 +1794,7 @@ tl: { # no indentation }; "bguq" = { stripPrefix = 0; - md5.run = "217434c50c134a4fe850dc2885b046ff"; + md5.run = "2dd878af559e026efc9337fb494de387"; md5.doc = "2da3adeb0e6816c3ef56577c23b7ad69"; md5.source = "a9c89caf56d2e6ef1a456c4475384488"; hasRunfiles = true; @@ -1802,7 +1802,7 @@ tl: { # no indentation }; "bhcexam" = { stripPrefix = 0; - md5.run = "b194498aed9f14cb6f193ca906ae7040"; + md5.run = "4845ff28291a2b6bf6a969eb02a7830d"; md5.doc = "1a72d7a191ce4a088394ecc13b8816ba"; md5.source = "8c1538883a058490c249d8b1bfd785d6"; hasRunfiles = true; @@ -1817,7 +1817,7 @@ tl: { # no indentation }; "bibarts" = { stripPrefix = 0; - md5.run = "8af96c22f2316ce6985c4d3bd8f6eeb6"; + md5.run = "a712826e26713ddfd0d7c5b3cef6bfe0"; md5.doc = "d594ea92f1bf37f8a379314fe8fc6271"; md5.source = "28306c78cb56122f5f42a4040dbb0114"; hasRunfiles = true; @@ -1829,7 +1829,7 @@ tl: { # no indentation version = "1.9"; }; "bibexport" = { - md5.run = "a8d13cf7f68e12fc2cc79167d673844d"; + md5.run = "1ff3f61353fbb8c001f13be108610107"; md5.doc = "10e449c1bee68252882e05cc607bf17f"; md5.source = "ae632512cb90c50297c73e4bfccb3d4d"; hasRunfiles = true; @@ -1837,161 +1837,161 @@ tl: { # no indentation }; "bibhtml" = { stripPrefix = 0; - md5.run = "e5a11d2f42d3b074dca49673c963a752"; + md5.run = "3791b567d4d2df27513fc7cce2596454"; md5.doc = "ef8b9817b8bb8895f9e474f76da58654"; hasRunfiles = true; version = "2.0.2"; }; "biblatex" = { stripPrefix = 0; - md5.run = "be5f4721eb30254a07a237909b10cd0f"; + md5.run = "18b0966c02db0afdc0b239aa234ef8e1"; md5.doc = "dcfcabbe076139c46e0145603cb7e545"; hasRunfiles = true; version = "2.9a"; }; "biblatex-anonymous" = { stripPrefix = 0; - md5.run = "3cd0ac0b40c0165224c8f9f26d618bab"; + md5.run = "8b74895d7eb5611cc2d739c00dee5bf7"; md5.doc = "a94ec8ed6f4c1f420bfb3165152b723d"; hasRunfiles = true; version = "2.1.0"; }; "biblatex-apa" = { stripPrefix = 0; - md5.run = "5c33f130b5d3542ffbac42376e71145e"; + md5.run = "75fa51a7ff8b94d080e8c2933e61ec0f"; md5.doc = "61b746d73cd9b2a07f6f1e8382829f82"; hasRunfiles = true; version = "6.7"; }; "biblatex-bookinarticle" = { stripPrefix = 0; - md5.run = "c4a2da606a55ceab94f33ff8a36397f6"; + md5.run = "3b92d3bd49e1b9e655273d7912ec110e"; md5.doc = "7b548437831bd191bc2b3cbb4090355d"; hasRunfiles = true; version = "1.1.2"; }; "biblatex-bwl" = { stripPrefix = 0; - md5.run = "ac79032ee651af7149da26797ab07d20"; + md5.run = "39391b730589dfa575a7a6ff072d5934"; md5.doc = "577c09f3d6530e37c7aa4d8df37fb44f"; hasRunfiles = true; version = "0.02"; }; "biblatex-caspervector" = { stripPrefix = 0; - md5.run = "2195203894df7a2d44cfd4c3829d0f93"; + md5.run = "b03563581f62755a03e7277b260618f7"; md5.doc = "c36c48a3c079b784b95a4d837ecacf05"; hasRunfiles = true; version = "0.2.0"; }; "biblatex-chem" = { stripPrefix = 0; - md5.run = "8e8ee2cd8d91d162d1a3a7ecddcb85fa"; + md5.run = "7c9059d6b44eb45272764cb530e98837"; md5.doc = "7900a0d69c8e456ed6ff4c9d45951eb3"; hasRunfiles = true; version = "1.1m"; }; "biblatex-chicago" = { stripPrefix = 0; - md5.run = "fdf21196a357fc965f960e92d2916e59"; + md5.run = "8d6aec915e561e5ec2276271a86e6310"; md5.doc = "be360d80698432aab38e0de4bb014413"; hasRunfiles = true; version = "0.9.9g"; }; "biblatex-dw" = { stripPrefix = 0; - md5.run = "b5271824827441b0017158caa00d2b4a"; + md5.run = "4a3ac6d75da1f77295408d00ea838502"; md5.doc = "e092c1327b117361037741682aed4290"; hasRunfiles = true; version = "1.6a"; }; "biblatex-fiwi" = { stripPrefix = 0; - md5.run = "f9e7eff4c33931503a581c1faea0a6d8"; + md5.run = "79ec588788d1e68005bf599ab2ae4a18"; md5.doc = "554e5459571f4b2e977df2f566545fdb"; hasRunfiles = true; version = "1.2e"; }; "biblatex-gost" = { stripPrefix = 0; - md5.run = "47957f195fe5378c74b4278fa4faada1"; + md5.run = "a621fc6965392427603fab1eae3449e7"; md5.doc = "131ef0f3c694ddb4b138f622960bda22"; hasRunfiles = true; version = "1.1"; }; "biblatex-historian" = { stripPrefix = 0; - md5.run = "d5c1109c66b2c34f2f1f7126e94d67cd"; + md5.run = "8ae8a6aa6770e634ac04bce808477ddd"; md5.doc = "32ce998e17f63e72c4f5fb8db235f0dc"; hasRunfiles = true; version = "0.4"; }; "biblatex-ieee" = { stripPrefix = 0; - md5.run = "ffc3f73540eb54e3a0a78d52581e8040"; + md5.run = "cb4399632a53d0c0cb61e0480dd5aa87"; md5.doc = "088f86df8b37edfb99fdea7c70c2c98d"; hasRunfiles = true; version = "1.1k"; }; "biblatex-juradiss" = { stripPrefix = 0; - md5.run = "f6a0b165c810ee3fd0d1d3b3a04f052f"; + md5.run = "d6bd0e6d1523996da1e9aad4f03c9897"; md5.doc = "51358765ad65915a3a88a01903c8833e"; hasRunfiles = true; version = "0.1g"; }; "biblatex-luh-ipw" = { stripPrefix = 0; - md5.run = "0aee5ca08cee3fb319a4353cb7be92d0"; + md5.run = "bd4a36b75317c6656b2e15da93634bbe"; md5.doc = "2a16bf860612d2939632140598839d6c"; hasRunfiles = true; version = "0.3"; }; "biblatex-manuscripts-philology" = { stripPrefix = 0; - md5.run = "332b387995bf9cf2db121a6870b78935"; + md5.run = "84276395176c06826ee2d679038a95ac"; md5.doc = "0be271f0ec249944a74b0a3d8713396e"; hasRunfiles = true; version = "1.6.1"; }; "biblatex-mla" = { stripPrefix = 0; - md5.run = "0c9ce484ae5fc43a20765db004b5c675"; + md5.run = "346250e9d1977c8ef6b351c3523bbf93"; md5.doc = "7ff48af82276c57cb15ecd47e7c00d3b"; hasRunfiles = true; version = "1.5"; }; "biblatex-multiple-dm" = { stripPrefix = 0; - md5.run = "aa31b6157a7e76773f4b0f78d6c28656"; + md5.run = "5a169e6429ad9997a81ce13ae76ac523"; md5.doc = "fb782cbb50d9d13fb6863f11668f8449"; hasRunfiles = true; version = "1.0.0"; }; "biblatex-musuos" = { stripPrefix = 0; - md5.run = "ca38f99d2a8bfccdbb4b422cf6d7f416"; + md5.run = "85a6896c8533597b52bff01e3a27e497"; md5.doc = "1b3f22f122ec17a0d73afe70757b822c"; hasRunfiles = true; version = "1.0"; }; "biblatex-nature" = { stripPrefix = 0; - md5.run = "c27cdfd2975c2ee9fdeb74eb280c51bb"; + md5.run = "53f74bf42d3e2b3097cace7854acfe86"; md5.doc = "a7970a611a212e43bc49b5d7c3c20635"; hasRunfiles = true; version = "1.2e"; }; "biblatex-nejm" = { stripPrefix = 0; - md5.run = "021d23f25f62add9355ab975ba864a4f"; + md5.run = "6e876b4fd6cbdf32ac1df4c89a7c1a2a"; md5.doc = "a39a8798e06e8a3b3232076a42d11c1b"; hasRunfiles = true; version = "0.4"; }; "biblatex-philosophy" = { stripPrefix = 0; - md5.run = "29bfa98fd79f5b3ac3e18f82fd01d0ac"; + md5.run = "290ceebd1f827628b48e5de4a3562ca2"; md5.doc = "3826777d30074b55ca35b6e631b0d4a8"; md5.source = "47f02043920fb454b085afdd1a4ce9e1"; hasRunfiles = true; @@ -1999,63 +1999,63 @@ tl: { # no indentation }; "biblatex-phys" = { stripPrefix = 0; - md5.run = "86da187b299815ec2de385e83180b735"; + md5.run = "44d6d20230e578740cc43cd005cc50df"; md5.doc = "71464fdc877fbd5da7be240d481d03a8"; hasRunfiles = true; version = "0.9f"; }; "biblatex-publist" = { stripPrefix = 0; - md5.run = "5941a89e6a19c51a5cbc711386c24b12"; + md5.run = "7a1c758502d0116e8edfa36c38e16284"; md5.doc = "308616ecb49e1d0ea239f11ee2faaca0"; hasRunfiles = true; version = "1.0"; }; "biblatex-realauthor" = { stripPrefix = 0; - md5.run = "d4316c8be8c2082d7eb92cf697349626"; + md5.run = "bd014f5b7c784b316090a45adc29442b"; md5.doc = "25119ff2b06815825cc3fddb1d296dbe"; hasRunfiles = true; version = "2.1.0"; }; "biblatex-science" = { stripPrefix = 0; - md5.run = "0a93321e886340ec0af32fc16e2486dc"; + md5.run = "8887ad902dee244de052d3622d0733fc"; md5.doc = "0a4171ee9f982e41899ef600472c3018"; hasRunfiles = true; version = "1.1d"; }; "biblatex-source-division" = { stripPrefix = 0; - md5.run = "4651f7cf3df4ac0af2fef86c82bf45ba"; + md5.run = "ea611df0fccdcfe89fb728f97fe6b24d"; md5.doc = "3355b2cb6440faf0c907c26e0d2671c9"; hasRunfiles = true; version = "2.2.1"; }; "biblatex-swiss-legal" = { stripPrefix = 0; - md5.run = "206eb9be6e997d6aa9fbb3f0181c6bfb"; + md5.run = "c774e269217fae2e8b268ef7f41d6ca6"; md5.doc = "4b275e839b2f14c4d028dd65ac6ad56f"; hasRunfiles = true; version = "1.1.2a"; }; "biblatex-trad" = { stripPrefix = 0; - md5.run = "ad5ca6ceedfa2d732ad17be3bc58433f"; + md5.run = "67b9d7cdb219152da8c6860fd8ce56e2"; md5.doc = "8a4c7e5181fb189bb1695cb4ea598a68"; hasRunfiles = true; version = "0.2"; }; "biblatex-true-citepages-omit" = { stripPrefix = 0; - md5.run = "5f7756d521d08e065828f825ff6c03c0"; + md5.run = "4d04dc452b1e8b14f0396b9d64f060ca"; md5.doc = "8bf28245ba6ce20da27b10047c81d231"; hasRunfiles = true; version = "1.2.0a"; }; "bibleref" = { stripPrefix = 0; - md5.run = "9cdf3767d7593dcb9464946d77b3e817"; + md5.run = "cfe9871ae37c95de78c9d1d3b2c3fa53"; md5.doc = "670c5c73ffd93102a53c51889f269292"; md5.source = "707f6e28a2421cd6ebff77cdef98ac99"; hasRunfiles = true; @@ -2078,7 +2078,7 @@ tl: { # no indentation }; "bibleref-lds" = { stripPrefix = 0; - md5.run = "288d7c67826c8e9101d554df2506594b"; + md5.run = "5c909440d184d399a63dc2cee2835f7d"; md5.doc = "f28f81822d027b3ba93ab2cf15bc8e6e"; md5.source = "01287bd98f2252d44452f9e7b4bdd798"; hasRunfiles = true; @@ -2086,7 +2086,7 @@ tl: { # no indentation }; "bibleref-mouth" = { stripPrefix = 0; - md5.run = "d95490596c93864ae26299308adea6bd"; + md5.run = "95a0f4ee9e3fbea8650609825e8d0dcc"; md5.doc = "d8be92be498cf50e7228dd1a3ebc2597"; md5.source = "917b9540fc1c0aa45f67c9416c503272"; hasRunfiles = true; @@ -2094,14 +2094,14 @@ tl: { # no indentation }; "bibleref-parse" = { stripPrefix = 0; - md5.run = "a0fed5ac35ef5678c6d148841d732d87"; + md5.run = "16efdb5efe8267caf277a9d2234f1bd2"; md5.doc = "625949ba50c62aeda964d845d255c1a4"; hasRunfiles = true; version = "1.1"; }; "biblist" = { stripPrefix = 0; - md5.run = "f9b98867b5f310b3c64757325192d526"; + md5.run = "dac73856d4c4b5d0a5cfc53066013423"; md5.doc = "3dbca04680f1cd96e1630c9f029fc82c"; hasRunfiles = true; }; @@ -2124,7 +2124,7 @@ tl: { # no indentation }; "bibtopic" = { stripPrefix = 0; - md5.run = "a839896ce2c867ea950df080ba6ac146"; + md5.run = "92ec78053bea6f9fba552355b5034c4c"; md5.doc = "79a4c8911bb4380cbefa9dcb52df6c77"; md5.source = "23480a2cdf6175e588b3c0f5272dd5c6"; hasRunfiles = true; @@ -2132,7 +2132,7 @@ tl: { # no indentation }; "bibtopicprefix" = { stripPrefix = 0; - md5.run = "1dbe0324e08c2ef16c73a07526460703"; + md5.run = "207318ec4132394f357d2e444ab6411e"; md5.doc = "518ab6947177212a1d28bcff57c51462"; md5.source = "d39882cb1607f10b95edeae7b36dad00"; hasRunfiles = true; @@ -2140,7 +2140,7 @@ tl: { # no indentation }; "bibunits" = { stripPrefix = 0; - md5.run = "b0c533b4263c6869ba7b32e8e6c2437d"; + md5.run = "595a36428aa2e2a356d90b6e52d2e18a"; md5.doc = "a741be9bc7dae5941da24649157587f3"; md5.source = "b08875b5265e6845c782bfa5da2c2911"; hasRunfiles = true; @@ -2148,7 +2148,7 @@ tl: { # no indentation }; "bidi" = { stripPrefix = 0; - md5.run = "c1a8013e0460af33c00af369fc679322"; + md5.run = "a956be15d5045ff2f6c8e686a63cd6b5"; md5.doc = "b24398ac3bace539a8681e71b1c3f1c2"; md5.source = "ad04371e2605d7e3cf1f728b052fc693"; hasRunfiles = true; @@ -2191,7 +2191,7 @@ tl: { # no indentation }; "bigfoot" = { stripPrefix = 0; - md5.run = "7e172fc00881bf34d4b133a5ab41b826"; + md5.run = "f3472cd89ca587ff15245d84f4219bc0"; md5.doc = "4fcb48bcbf940eeb0c605b05bc03e168"; md5.source = "509c9fd6b1746487107a4569fb1ba80e"; hasRunfiles = true; @@ -2199,7 +2199,7 @@ tl: { # no indentation }; "bigints" = { stripPrefix = 0; - md5.run = "d25af3cde837810ba0bf34b2b73b66cf"; + md5.run = "281a287a7c2dfa9d8f36ef9fcc0bf1d2"; md5.doc = "4a2409f0f4abb3e0c04f8ff4b5cc0769"; hasRunfiles = true; }; @@ -2213,13 +2213,13 @@ tl: { # no indentation }; "biocon" = { stripPrefix = 0; - md5.run = "38767bf567ac41e5100be4aa9153af44"; + md5.run = "cac5132f53e182f011fbb124869e5168"; md5.doc = "3a187ea8e6f1dd62534d4647836542b5"; hasRunfiles = true; }; "bitelist" = { stripPrefix = 0; - md5.run = "e3ac0d71e8ac46cf74f3ff469cb56a26"; + md5.run = "fb1cb556b34f81406c5b64e345915ee3"; md5.doc = "5deb126f4e33dbfe03bd20268e177349"; md5.source = "9232434055394ab99efa46181200773b"; hasRunfiles = true; @@ -2227,7 +2227,7 @@ tl: { # no indentation }; "bizcard" = { stripPrefix = 0; - md5.run = "64b2034b4d54bcb82ba5f01db721c78d"; + md5.run = "72627652bf227c0d10faed11c70b5176"; md5.doc = "af532dfaedf9d61c78b15582a75f8920"; md5.source = "282454b8537ec683cf266105f4a943e7"; hasRunfiles = true; @@ -2235,14 +2235,14 @@ tl: { # no indentation }; "blacklettert1" = { stripPrefix = 0; - md5.run = "7d485c46dc70c97030f167c6a5f0e374"; + md5.run = "bee878f7a185e4d76b6c4fdc2c139e95"; md5.doc = "30134bbf82d1577ea12ca1ed88561d65"; md5.source = "fe157ad9929c467dd39e5ff18db8999c"; hasRunfiles = true; }; "blindtext" = { stripPrefix = 0; - md5.run = "71c6b1128037eacd305a5b4d66bbf1b4"; + md5.run = "79746da9b1219d649e608643d9c140a5"; md5.doc = "ef9e0283df2c0548284f33a789ac9ccb"; md5.source = "3a92aa401b43820bbd78b0c711985473"; hasRunfiles = true; @@ -2250,14 +2250,14 @@ tl: { # no indentation }; "blkarray" = { stripPrefix = 0; - md5.run = "5e1a6527cb5a2570a5b6c9098ece7288"; + md5.run = "1b60641c51bac83d2f02c981c1ebc31c"; md5.doc = "4575d1ca06ce37756650c224c2375069"; hasRunfiles = true; version = "0.07"; }; "block" = { stripPrefix = 0; - md5.run = "cb506acfe8203d344a13d121ce9d5573"; + md5.run = "040f3e46525d3c77533a5c5e3342c5de"; md5.doc = "1b649d42065ab7ea5f9693bc44b1e3ca"; hasRunfiles = true; }; @@ -2269,7 +2269,7 @@ tl: { # no indentation }; "bloques" = { stripPrefix = 0; - md5.run = "151d81e74d505a6ea5acf1ff5b644457"; + md5.run = "1bd199b479551db4197e1ee96e46c87a"; md5.doc = "2ec97b56e682b8ace1ccb49be8701329"; hasRunfiles = true; version = "1.0"; @@ -2284,7 +2284,7 @@ tl: { # no indentation }; "blox" = { stripPrefix = 0; - md5.run = "91cb9f66d6704ad4b288fe88aa28aca6"; + md5.run = "abe5473d38afe971099fdf49ee1d300a"; md5.doc = "ea4115f67099166b0e9c856255c7dd5b"; md5.source = "52b1cd8e59cce1dfad886f394de0acbb"; hasRunfiles = true; @@ -2292,7 +2292,7 @@ tl: { # no indentation }; "bnumexpr" = { stripPrefix = 0; - md5.run = "0489c2e7206bcce190373fb0724035b8"; + md5.run = "c06a827d91207f98bf06cc96483a63bf"; md5.doc = "e67eb9cd4a6822e5bd514ee92188d781"; md5.source = "796d7560b8b2374cacd47eccff80bfdc"; hasRunfiles = true; @@ -2300,28 +2300,28 @@ tl: { # no indentation }; "bodegraph" = { stripPrefix = 0; - md5.run = "ac28b24f71e64924d9724cddee9d740b"; + md5.run = "ea83b6852fe392ef97ce76b827b4ec32"; md5.doc = "b3ada1cce99d2e4b929a8a639adb6125"; hasRunfiles = true; version = "1.4"; }; "bohr" = { stripPrefix = 0; - md5.run = "c4edd6aa9f16c5fdf73d1babf09c9748"; + md5.run = "977de9b8f76f47a988472604ea599255"; md5.doc = "14de1b622a05d14fb314ace58d22e4ae"; hasRunfiles = true; version = "0.4b"; }; "boisik" = { stripPrefix = 0; - md5.run = "600e1939bf5badefe42b20672d239f0c"; + md5.run = "c792baa8fc36558a1e4d77bd060496f5"; md5.doc = "d58e859a03db51a5a29b85fbf5d8819f"; hasRunfiles = true; version = "0.5"; }; "boites" = { stripPrefix = 0; - md5.run = "ed77ce8a866552b75b129260d197c980"; + md5.run = "71c372c95d1482c6437af9b551eeb187"; md5.doc = "9c29b9dd318be8be0a2b465f8c493857"; md5.source = "f896cdadf8c31f262ffe603fe4d06683"; hasRunfiles = true; @@ -2329,7 +2329,7 @@ tl: { # no indentation }; "bold-extra" = { stripPrefix = 0; - md5.run = "9bd3e28565f3b42c833cb7148576eafd"; + md5.run = "109cb2854a88fb1a6fd8b2e160971afa"; md5.doc = "564eb9523d538d6a6289bd59fd2c2cd0"; hasRunfiles = true; version = "0.1"; @@ -2342,14 +2342,14 @@ tl: { # no indentation }; "bondgraph" = { stripPrefix = 0; - md5.run = "ab79222ca57830c87be1b3012af222ec"; + md5.run = "fb42f90e628c51e3dd2ba2c9200ec952"; md5.doc = "f39edca186442fb2ae4c27fa92a1555a"; hasRunfiles = true; version = "1.0"; }; "bondgraphs" = { stripPrefix = 0; - md5.run = "b165b94aeb79892317771451b1e9f5f6"; + md5.run = "74886880233be7dbddaec98e423b9b10"; md5.doc = "31d809180b0ae38aca3534822234a7f3"; md5.source = "0b5e8b681b8ba6a6071b52a2f84e849c"; hasRunfiles = true; @@ -2357,7 +2357,7 @@ tl: { # no indentation }; "bookcover" = { stripPrefix = 0; - md5.run = "64396420d902679b089c16b6149bb885"; + md5.run = "977bf2ddc46e3215f92a59087d2845be"; md5.doc = "f4c7ed313d51aadda025a0b2f4992f50"; md5.source = "49fd5f3d3400b6dc281b9350419e3a26"; hasRunfiles = true; @@ -2365,21 +2365,21 @@ tl: { # no indentation }; "bookest" = { stripPrefix = 0; - md5.run = "aeb6c533a8e8ce3fe7857d78dc1218c1"; + md5.run = "345e759a38af4b05e2882a685bbf20d4"; md5.doc = "c5ac277d7ac093410e44fe1848f639e7"; hasRunfiles = true; version = "1.1"; }; "bookhands" = { stripPrefix = 0; - md5.run = "07c52cccd5752371741fe8e3e24688b1"; + md5.run = "9d66ee8bc2c4880a7f28658331d3e2d5"; md5.doc = "4d34ed9f326e3e1b933be24620ab9db4"; md5.source = "f8a5fefea1e2daa5824c7e4a89e4753b"; hasRunfiles = true; }; "booklet" = { stripPrefix = 0; - md5.run = "daea254d29505edaf0f4302b08adf455"; + md5.run = "5eb6340c502dc4c6fe24afaa9c1528ad"; md5.doc = "54dcdc985d6481a7c6cf757be58d0b26"; md5.source = "843769bc849b7c39861dd4ca2318657f"; hasRunfiles = true; @@ -2412,7 +2412,7 @@ tl: { # no indentation }; "boolexpr" = { stripPrefix = 0; - md5.run = "dcf93623f34ad1b4675f3cb8010d95af"; + md5.run = "317d97a39b41756e8a98e08e6703b5df"; md5.doc = "4eb373c2a533460a5ad0bd2857c0f134"; md5.source = "7865197ab0a0821e05789377e673f9cf"; hasRunfiles = true; @@ -2420,14 +2420,14 @@ tl: { # no indentation }; "boondox" = { stripPrefix = 0; - md5.run = "b0236beb2f063fc14179d4a54d5d80a5"; + md5.run = "dced1d4cee86eb2b17c5065842e0487f"; md5.doc = "64588bfc17a664c794160dcef8508917"; hasRunfiles = true; version = "1.0"; }; "bophook" = { stripPrefix = 0; - md5.run = "a30addb711471124e79e2c0b331ae8b7"; + md5.run = "98a00ed232c3c7aa4d61ce127ef9d9c5"; md5.doc = "4c2fd987010a1fe3aea6525c0b7caa15"; md5.source = "e55d20102aa7f8a89d6e32962bd7e87f"; hasRunfiles = true; @@ -2435,7 +2435,7 @@ tl: { # no indentation }; "borceux" = { stripPrefix = 0; - md5.run = "3a060de20e4ad6c9f99737f39114beaf"; + md5.run = "0ec0d2394822a3da791d729df364f835"; md5.doc = "72890eb1cb864fc59522e1738c6b4089"; hasRunfiles = true; }; @@ -2448,13 +2448,13 @@ tl: { # no indentation }; "boxedminipage" = { stripPrefix = 0; - md5.run = "73e9f7695ee1ca2be9baf6abec018161"; + md5.run = "3baaee96b05e0546ceaed27c81d1286b"; md5.doc = "f8f205fca1457e8b37df204d31f9a733"; hasRunfiles = true; }; "boxedminipage2e" = { stripPrefix = 0; - md5.run = "b732e6026acc2e2694edd7f1861b57d3"; + md5.run = "42c15eeeed1d4890286b635ae5165c78"; md5.doc = "fed617452e06571c73d71684f28c1c2a"; md5.source = "3defbf4ebee53d79c6ed8dbfdf228779"; hasRunfiles = true; @@ -2462,7 +2462,7 @@ tl: { # no indentation }; "boxhandler" = { stripPrefix = 0; - md5.run = "0e07b5cdf0dd62f35127b82e373d5ddb"; + md5.run = "73b783286685df9fe03cbeb47faf4511"; md5.doc = "70616a1e295185e7a26f2c7a56ac9caf"; md5.source = "e3a5bf68738721543696a18cb8095b92"; hasRunfiles = true; @@ -2470,7 +2470,7 @@ tl: { # no indentation }; "bpchem" = { stripPrefix = 0; - md5.run = "b7425bc5a7065130f9637ce4fd6629ac"; + md5.run = "a07daaa8295c3853fc66658205348b5f"; md5.doc = "8e4c171fdba5a6a18f74af27eb9a07aa"; md5.source = "e6ace63c35663a38376e01c15d45e330"; hasRunfiles = true; @@ -2485,14 +2485,14 @@ tl: { # no indentation }; "bracketkey" = { stripPrefix = 0; - md5.run = "e31c0c0208f4de691120b8a1bd4dbe99"; + md5.run = "5368d62c6255c83ae652195ac1f12f57"; md5.doc = "b43cbfed83ab36e21520afa4e38d2644"; hasRunfiles = true; version = "1.0"; }; "braids" = { stripPrefix = 0; - md5.run = "3365b950fa9eaca4389db7f79a971492"; + md5.run = "c5461c3f695d230434e514c77eee2b1b"; md5.doc = "83ae1a7f46be0997543be61383e655a2"; md5.source = "f8ca9bb59f031bd56968858c8482fa7e"; hasRunfiles = true; @@ -2500,19 +2500,19 @@ tl: { # no indentation }; "braille" = { stripPrefix = 0; - md5.run = "345f24aa86c88db966385ed9e706415e"; + md5.run = "d0e6a19a7e7e1a407632c97e94fa88a0"; md5.doc = "068af8fccfd78e452da3c749dad6f455"; hasRunfiles = true; }; "braket" = { stripPrefix = 0; - md5.run = "e13ae58ab370cb370a083668ab916cd2"; + md5.run = "d75f4f8212a139309a2a1e26e7e5c66b"; md5.doc = "f5fa1ae0b0e53483ceed97137f5819ec"; hasRunfiles = true; }; "brandeis-dissertation" = { stripPrefix = 0; - md5.run = "4bc64799f8c5cbb2d868e108443977ee"; + md5.run = "b3c506fc62d13458f2198a4ff65ff92e"; md5.doc = "dce142f1f74fc6cebe972447f439f2eb"; md5.source = "e716d1385e1884bfefcd8e2e9e782549"; hasRunfiles = true; @@ -2520,13 +2520,13 @@ tl: { # no indentation }; "breakcites" = { stripPrefix = 0; - md5.run = "7513c84fbdf013b35cda336680da5aed"; + md5.run = "6be18d75357b6e63d3d86a3bfe92922e"; md5.doc = "2afa4a8a0020d2acf0b8e2ca07932fa1"; hasRunfiles = true; }; "breakurl" = { stripPrefix = 0; - md5.run = "045516e60fabcbbbd795e766ba1d7618"; + md5.run = "17cbcee8b359b8102a159ef9cd80df9b"; md5.doc = "94f5e3124b69a01c588f90a32b68eb93"; md5.source = "9089de2ec8bfb65f4b8c2afb54056740"; hasRunfiles = true; @@ -2550,13 +2550,13 @@ tl: { # no indentation }; "brushscr" = { stripPrefix = 0; - md5.run = "a0852e354b43c2495b1b824f0e69455b"; + md5.run = "77de3aef6d3ea3b9dac11c92fbac0fbb"; md5.doc = "b485964d68533437d9b9d1a82b389718"; hasRunfiles = true; }; "bullcntr" = { stripPrefix = 0; - md5.run = "53f10cedfcdaa5f0bf94e5017deaf3e6"; + md5.run = "4b0ec4db86e48f503ae74f892566f38b"; md5.doc = "378ca49a2262abed5a24bacbc467c035"; md5.source = "cd5193f1b5c604195b2601da94332f7b"; hasRunfiles = true; @@ -2570,49 +2570,49 @@ tl: { # no indentation }; "burmese" = { stripPrefix = 0; - md5.run = "ba30fc7d77e13319bd339cab45968026"; + md5.run = "34ad71c181637a0715d835d2aa992838"; md5.doc = "1bc66b22790374aa3892b702079b7e79"; md5.source = "e3ae65ddfbbba14bb4835f04600c2a94"; hasRunfiles = true; }; "bussproofs" = { stripPrefix = 0; - md5.run = "9840f3a67ac0bc2f90388fcaab455312"; + md5.run = "cd8b56bf1a44b8c30c87656777835447"; md5.doc = "f3c26efa0119d379c436f2ed048f47eb"; hasRunfiles = true; version = "1.1"; }; "bxbase" = { stripPrefix = 0; - md5.run = "39e283d2006af2c47bb44509e24196a9"; + md5.run = "9e354f7191681e8225a6766cddcb84d5"; md5.doc = "57a22005074b8b71573bbdd87ffde338"; hasRunfiles = true; version = "0.5"; }; "bxcjkjatype" = { stripPrefix = 0; - md5.run = "869e2f998ce3d5cc9dda54fd537f1c8e"; + md5.run = "6991e7c9e04fd7d9edbf09f697d78b4e"; md5.doc = "412b2298cd911b9f33658bd950c3ba89"; hasRunfiles = true; version = "0.2c"; }; "bxdpx-beamer" = { stripPrefix = 0; - md5.run = "82ba0dc7519e5db65ab59b34675e058c"; + md5.run = "46cb150eed7d31af19afa1049781e906"; md5.doc = "a028fd03d075e6c4f06c9f7b213ceb85"; hasRunfiles = true; version = "0.2"; }; "bxeepic" = { stripPrefix = 0; - md5.run = "400ac258a1e7cff24d84b82e20b7a1f7"; + md5.run = "e16539c71b286be579ce7631758ee4f9"; md5.doc = "313869d45ce14c69cdfb84bdf5c1cf16"; hasRunfiles = true; version = "0.2"; }; "bxjscls" = { stripPrefix = 0; - md5.run = "f5bb79e398b9e0a14e24404925e302ad"; + md5.run = "bd4e220fd25408bcdfe74a7bf2e35253"; md5.doc = "6bb3fc9b4fbbe091522f3c79c26697d1"; md5.source = "bc7f10d9fb404dc7dcfc6dd66ca3e1bd"; hasRunfiles = true; @@ -2620,7 +2620,7 @@ tl: { # no indentation }; "bytefield" = { stripPrefix = 0; - md5.run = "70dc1d1a12352001051bc01164c94552"; + md5.run = "19c34a29aa15298fd7d3ac7159473257"; md5.doc = "bf56abdebe82da1a3466890bd61a4004"; md5.source = "ab8a0f3681f510542269ff04234ce2c1"; hasRunfiles = true; @@ -2628,40 +2628,40 @@ tl: { # no indentation }; "c-pascal" = { stripPrefix = 0; - md5.run = "8c880983a926c873721a27e018924344"; + md5.run = "9b343743bb8fe5007ab6df9cb85c441f"; md5.doc = "0aa2cd70261d9230c17c752a0f3bcd9f"; hasRunfiles = true; version = "1.2"; }; "c90" = { stripPrefix = 0; - md5.run = "c6bed25ea4ae2d8140e005a21b5ebf8c"; + md5.run = "3020863d63a09e27f39d57c5b50b017c"; md5.doc = "7cf0ac80eafb154d811ff961fbf236ce"; md5.source = "4f2f37721ed4b8e15b8ceca2b4af6b80"; hasRunfiles = true; }; "cabin" = { stripPrefix = 0; - md5.run = "ad246c4b986d5eb1ee0426062821bdbe"; + md5.run = "a6cc0904c2f17d90497fce97ec4f8d15"; md5.doc = "a7f0ad44b62694697d950c68fd5f5c7d"; hasRunfiles = true; }; "cachepic" = { - md5.run = "303f05564c22a4eceb2f1934be0dbaa4"; + md5.run = "a3e16ea7e53e8147c197b2becba99d1b"; md5.doc = "a00b8488f239da51f90d8045ef4e9425"; hasRunfiles = true; version = "1.0"; }; "caladea" = { stripPrefix = 0; - md5.run = "0598b94287de39b26374d44dcf0d39b2"; + md5.run = "2a6cf8349b2752b1d1193f131e412852"; md5.doc = "f43949519d7fdf7a7edbb518f14c7510"; hasRunfiles = true; version = "2014-08-17"; }; "calcage" = { stripPrefix = 0; - md5.run = "e7c8261b8343469d10bf9f8217a4c709"; + md5.run = "f73afd650ce5119cd1495f075aca288e"; md5.doc = "573adb65bfc46842ce7abf3288c8c93d"; md5.source = "fb48b6af5ac2f48b0361fb93b3864723"; hasRunfiles = true; @@ -2669,7 +2669,7 @@ tl: { # no indentation }; "calctab" = { stripPrefix = 0; - md5.run = "e32b22234efebb96c719f1a38e3b839d"; + md5.run = "5ed58fccd554eb19713ed019d319f147"; md5.doc = "3902641a386f692554d17876e9e6afc7"; hasRunfiles = true; version = "v0.6.1"; @@ -2684,7 +2684,7 @@ tl: { # no indentation }; "calculator" = { stripPrefix = 0; - md5.run = "ec3e64690d5c6ff991fbae97091ffc68"; + md5.run = "05234da50b399384c1f5d15e1a0300ff"; md5.doc = "40b7c7bbad11602b1b1ec6af998b884e"; md5.source = "06abb11052555401b0b97b7be21f1ab0"; hasRunfiles = true; @@ -2692,26 +2692,26 @@ tl: { # no indentation }; "calligra" = { stripPrefix = 0; - md5.run = "85a773bddd3cb2eb5f1f854a888d29f4"; + md5.run = "ce68a9fc130f3e4a795934ececadfd8e"; md5.doc = "cc3173eb10363b17fba539a4b4a9bb9b"; hasRunfiles = true; }; "calligra-type1" = { stripPrefix = 0; - md5.run = "d53589fb0aa3fadf7f04dc61d290b53c"; + md5.run = "ec8ad12002cd648907efb3a54d24c83f"; md5.doc = "e2aa4cc6332b5b8d9cb341e3352c0925"; hasRunfiles = true; version = "001.000"; }; "calrsfs" = { stripPrefix = 0; - md5.run = "9c31e21cb1ae20a1040e12ffcca51730"; + md5.run = "040df808ad0ca12ae294a9aca272c64f"; md5.doc = "07b15c3f1944f9bb3e31e33be3d87149"; hasRunfiles = true; }; "cals" = { stripPrefix = 0; - md5.run = "087b34215a7a60a496987eff34fab659"; + md5.run = "9b99d2f4e3c30572442cf7146c8d2b15"; md5.doc = "a188cc51fb382772fb27306b87a4feaa"; md5.source = "dd937b2f3c607583c133fee26d94baba"; hasRunfiles = true; @@ -2719,21 +2719,21 @@ tl: { # no indentation }; "calxxxx-yyyy" = { stripPrefix = 0; - md5.run = "4e4e70bd633f8756081bd4e1ff993ba0"; + md5.run = "0affbc6b2299431ee97b6457a7eee9b6"; md5.doc = "8c376fb2c470d804ba44870fbd3ca6a7"; hasRunfiles = true; version = "1.0h"; }; "cancel" = { stripPrefix = 0; - md5.run = "c821d7428ee972ac3ecb935c5f398200"; + md5.run = "1837485c01be867dc5fbddb9f5945acd"; md5.doc = "c1e2abc3640a3f0943fe812742027777"; hasRunfiles = true; version = "2.2"; }; "canoniclayout" = { stripPrefix = 0; - md5.run = "49023afec725068e23807842835e1ee4"; + md5.run = "4c4354c87a67c07f1ad91f1bb35c9e26"; md5.doc = "9aadffcca92cde00b6f21e2fcd0c482d"; md5.source = "52ed809bc469c8d44e97e792573a1d22"; hasRunfiles = true; @@ -2741,7 +2741,7 @@ tl: { # no indentation }; "cantarell" = { stripPrefix = 0; - md5.run = "4919c5534a404d99a41fce0f560f59ae"; + md5.run = "3984c62863006c94122b08a318fa52cf"; md5.doc = "e1712b0c85612bbcbe67e3991f7f4dfe"; md5.source = "4907c9cb03ab55cfd5e8158c6a9f3729"; hasRunfiles = true; @@ -2749,14 +2749,14 @@ tl: { # no indentation }; "capt-of" = { stripPrefix = 0; - md5.run = "82df93bab744c864878c00f1f31b5439"; + md5.run = "0095b732225fc47d4aa80d31a15fbaff"; md5.doc = "b29db12b99ee547e2ac798532c0c35fa"; md5.source = "96a62cf61a2e8c6831f0c801a85db789"; hasRunfiles = true; }; "captcont" = { stripPrefix = 0; - md5.run = "23c6b175ad843fbfd2737de18fec39af"; + md5.run = "580b0c15a1ace4562482037973b09386"; md5.doc = "2e04f118b49913d3af79d3eaf095ad90"; md5.source = "5783628b48bfec745fcfb843d9617e4d"; hasRunfiles = true; @@ -2764,7 +2764,7 @@ tl: { # no indentation }; "captdef" = { stripPrefix = 0; - md5.run = "8c929102f9318bade97d6857261de7ef"; + md5.run = "f434ea42c8f498b9a6459e580f2a92e0"; md5.doc = "deee8232671e9191407237faafacb119"; hasRunfiles = true; }; @@ -2785,40 +2785,40 @@ tl: { # no indentation }; "carlito" = { stripPrefix = 0; - md5.run = "9bf3c1086b14a48e0bdd90da0972881e"; + md5.run = "f62afac73586b26a3191217449f96779"; md5.doc = "1f6b11c109724b6c913c58b6ce56ebf2"; hasRunfiles = true; }; "carolmin-ps" = { stripPrefix = 0; - md5.run = "095985ddcaf91da1d94c4f0731664040"; + md5.run = "d50ee197572a369dbc70cfeb1c86a01f"; md5.doc = "ee5f1297d8bb3c8516eb153b56acae3b"; hasRunfiles = true; }; "cascadilla" = { stripPrefix = 0; - md5.run = "1ea417e699682e1f7111e6f176967487"; + md5.run = "ac5c4fa26bbc7f0cac8c656eddf84495"; md5.doc = "4a51215e68b511263d8281647b88649f"; hasRunfiles = true; version = "1.8.2"; }; "cases" = { stripPrefix = 0; - md5.run = "f8966c937681ecc4486f3fa4a5bf848e"; + md5.run = "f1811d94523893c561504a1899638986"; md5.doc = "c18724c9f2b13c9360a44c74e2976eb5"; hasRunfiles = true; version = "2.5"; }; "casyl" = { stripPrefix = 0; - md5.run = "9ee6d847acfabc28124df18074f1d751"; + md5.run = "610033cdc9e2bdf3c0f05ef881d78823"; md5.doc = "5da61ca2a6c0448d58af44ae676c0fd2"; hasRunfiles = true; version = "2.0"; }; "catchfilebetweentags" = { stripPrefix = 0; - md5.run = "dcfa3754757b0b3c842bce8946afd09f"; + md5.run = "3b487fbace4edd31a990d9e575fe0bd5"; md5.doc = "fa3283baddd919781dcb6d8e8e120fed"; md5.source = "cfa5e88e5ed1effa24e4a9858b4c1814"; hasRunfiles = true; @@ -2826,7 +2826,7 @@ tl: { # no indentation }; "catcodes" = { stripPrefix = 0; - md5.run = "add4b8cce720b24a197e2ab105ebd8a0"; + md5.run = "0e70b49cf1901be150f0b7953d4f2e43"; md5.doc = "3b1fbaf3038f31712e912f17b3c95fec"; md5.source = "277cdf600e9b57b3fe8d2e095aefb171"; hasRunfiles = true; @@ -2834,7 +2834,7 @@ tl: { # no indentation }; "catechis" = { stripPrefix = 0; - md5.run = "9fb6362651703c1aab900a85340ab5ed"; + md5.run = "71da6e9983371532bc0e64310f7e759b"; md5.doc = "2fc54843a28dd8d15f96bbae59b9307c"; md5.source = "dab4c6294c807225a68051ff1df3c884"; hasRunfiles = true; @@ -2842,14 +2842,14 @@ tl: { # no indentation }; "catoptions" = { stripPrefix = 0; - md5.run = "44d3346cc34f4a06b9cf97306181160a"; + md5.run = "c9cfff02e1e99ffe773781ec558b2994"; md5.doc = "0ae61bdd037a0a616b6f5c9e3d5e9741"; hasRunfiles = true; version = "0.2.7h"; }; "cbcoptic" = { stripPrefix = 0; - md5.run = "bd0c1cad129f515e8f732973f565c36a"; + md5.run = "b5ff6cdbfba9012430e16b89203a857e"; md5.doc = "59bca8330ee195aa3c5c14eac874a90f"; hasRunfiles = true; version = "0.2"; @@ -2878,7 +2878,7 @@ tl: { # no indentation }; "ccaption" = { stripPrefix = 0; - md5.run = "3154f4bb32d8aa6ca18e3e3eed47d44b"; + md5.run = "f4ba00bfe995aada8a79bfa3eb119ba3"; md5.doc = "ad46bcb425a50dd92659186b4ee7f82c"; md5.source = "df17acd1a02fa95d6ec0f36960173127"; hasRunfiles = true; @@ -2894,7 +2894,7 @@ tl: { # no indentation }; "ccicons" = { stripPrefix = 0; - md5.run = "f458dbef55f35c194c2e6c2a8ff4b875"; + md5.run = "6010738fa4aa9f794842618fb036b3bc"; md5.doc = "de9286b33963bdde54e6e485d000ed15"; md5.source = "cb0d8ffcdb066a9725cd55777d8f2c81"; hasRunfiles = true; @@ -2902,14 +2902,14 @@ tl: { # no indentation }; "cclicenses" = { stripPrefix = 0; - md5.run = "fdf82afcb1999f708b0cc62b9ef2a41d"; + md5.run = "9b02ed0b9e3eefa71a6fa75a3c314651"; md5.doc = "c64ff0c278d5651eee9a09de6820ba65"; md5.source = "914b68b1bb2f0b848bd2cc67a5d1c0a9"; hasRunfiles = true; }; "cd" = { stripPrefix = 0; - md5.run = "ba3fd4eb84cbfbc6d8fd694442a1b280"; + md5.run = "d7c995decdf8965f9d45ead2c3fae63e"; md5.doc = "9f87b6588eea2b0e14aeaf2167daff51"; md5.source = "644c5bfac25c54a0dcd559db66811848"; hasRunfiles = true; @@ -2917,7 +2917,7 @@ tl: { # no indentation }; "cd-cover" = { stripPrefix = 0; - md5.run = "23cbc6b68bf26f3162f06010ab2a862f"; + md5.run = "82ac0ba064aa5a5fea471c53fb5285c9"; md5.doc = "01650b912eac0e9716eef60ffc8c31f3"; md5.source = "40c62658929559cd050ec824bba1de69"; hasRunfiles = true; @@ -2925,7 +2925,7 @@ tl: { # no indentation }; "cdpbundl" = { stripPrefix = 0; - md5.run = "b4b81ba92ca717d48b9ae65a246bf706"; + md5.run = "f99c035660a489b65833ec4fe3bfa9f9"; md5.doc = "6d80b541e99506eb5b62108b4d3663d1"; md5.source = "3c1b85544790ae7779813527e65cb979"; hasRunfiles = true; @@ -2933,42 +2933,42 @@ tl: { # no indentation }; "cell" = { stripPrefix = 0; - md5.run = "4f48fba42530a8dbe9146638c5253bf7"; + md5.run = "749fbeb08d81bb6be5cb8eddd4c515a8"; md5.doc = "7672ea6cb8da7512151a668b113d1ac0"; hasRunfiles = true; version = "2010-12-12"; }; "cellspace" = { stripPrefix = 0; - md5.run = "4cc6ffb8dd48809d8281d7a10ffec229"; + md5.run = "fe7dd2f01af81eb9ffd37a9606282c2e"; md5.doc = "d403408e2f79707d564980e67d08808e"; hasRunfiles = true; version = "1.6"; }; "celtic" = { stripPrefix = 0; - md5.run = "5edb3843f803d4ce0696647768ef8b80"; + md5.run = "113c705a26d6f0a484ef05b1df2e7258"; md5.doc = "c33df430acd8e965d47a22f6c0b0d5ee"; md5.source = "ddf24d3df3de5a3fe92cc8f0bf7c03a9"; hasRunfiles = true; }; "censor" = { stripPrefix = 0; - md5.run = "0462fce6bc76c2fc145e5d9518f742b6"; + md5.run = "37b1466f37c5feaba18482e29f973575"; md5.doc = "c489a657a3f2f87c4d12649d09d3a05f"; hasRunfiles = true; version = "3.21"; }; "cfr-initials" = { stripPrefix = 0; - md5.run = "585d86ee54d8ec4c03c9561acbe2d43c"; + md5.run = "3eafe33cad4e16da9a1f92c87dc8fc4e"; md5.doc = "96fd963c76710523f7ab84b5818f5ca5"; hasRunfiles = true; version = "1.01"; }; "cfr-lm" = { stripPrefix = 0; - md5.run = "93f2badb4cc972fbe01d780d535a58e6"; + md5.run = "423804bbde369de3cb1a24209fb57d3f"; md5.doc = "363915901aa3bb92f47a1b78534cc499"; md5.source = "da270f5c0924602bc72b8be7d7bad04e"; hasRunfiles = true; @@ -2984,14 +2984,14 @@ tl: { # no indentation }; "changelayout" = { stripPrefix = 0; - md5.run = "6e03b99b4511b0ee1c0778f8885b2383"; + md5.run = "eb1026b87ccb8dbb155e1e39b3106695"; md5.doc = "ab8725b1acf72367b9da091b0aef9163"; hasRunfiles = true; version = "1.0"; }; "changepage" = { stripPrefix = 0; - md5.run = "ba08ee736d4e053eb8ea3fdad3ec5d29"; + md5.run = "7a2881a41e02c8ce3e75cb432fdb839e"; md5.doc = "06edbf2cac8cdcadc603dde17c23f8ee"; md5.source = "e0e256a5d4cc4d98ebb741c052acdb24"; hasRunfiles = true; @@ -2999,7 +2999,7 @@ tl: { # no indentation }; "changes" = { stripPrefix = 0; - md5.run = "b3034a2a978444c1519e3c2b979b1ebc"; + md5.run = "e281224fbd562d7ec36aa743c48394f4"; md5.doc = "4a983612a9dd825928e3891067fca338"; md5.source = "9a375adde15e6b83b10bf57723d06f2d"; hasRunfiles = true; @@ -3007,7 +3007,7 @@ tl: { # no indentation }; "chappg" = { stripPrefix = 0; - md5.run = "21d9a573195e8d1328adf6aedf89fb8b"; + md5.run = "192e9f886cf5ae356bf765a57aa761d3"; md5.doc = "241658299433109916c515a42e050ab5"; md5.source = "72f9bf0a13f5609e956747a1c973777e"; hasRunfiles = true; @@ -3015,7 +3015,7 @@ tl: { # no indentation }; "chapterfolder" = { stripPrefix = 0; - md5.run = "82def4868d543b107dbc037803066373"; + md5.run = "b6b523c447e034690b5235da311f6702"; md5.doc = "7d4ec43e9aa22d5d1029ec463728ad99"; md5.source = "621cd78d186d686356f48bd488c5f156"; hasRunfiles = true; @@ -3029,7 +3029,7 @@ tl: { # no indentation }; "chbibref" = { stripPrefix = 0; - md5.run = "d20ab8ad867a0dc7b5eb717821390c5d"; + md5.run = "3721e86c218f595ab8e9bf730eed6c1c"; md5.doc = "014c3a5d5918485d2d9dcd4ea040f52a"; hasRunfiles = true; version = "1.0"; @@ -3042,12 +3042,12 @@ tl: { # no indentation }; "chem-journal" = { stripPrefix = 0; - md5.run = "41960d2c08a304636cf25d4db3077c1f"; + md5.run = "f1adc697dbcab4b097e7bdd777b052da"; hasRunfiles = true; }; "chemarrow" = { stripPrefix = 0; - md5.run = "6267699425c6f597356e487e4ca41652"; + md5.run = "c5e20a0d35a1221e1b28df8fbdead06f"; md5.doc = "2c805e5738f5a39bfccdd7e55154ba31"; md5.source = "f152459f5ff7d63b90ad5a0f2418aa4f"; hasRunfiles = true; @@ -3055,7 +3055,7 @@ tl: { # no indentation }; "chembst" = { stripPrefix = 0; - md5.run = "4b85a38bd6b8a6206cadd7c881b6ee94"; + md5.run = "d5dc776ffa4ee505613fe5b17b36135c"; md5.doc = "145b65d4b6164b71960e664cd9d9e97d"; md5.source = "168c8193af2c6514514ad785b69c0879"; hasRunfiles = true; @@ -3063,63 +3063,63 @@ tl: { # no indentation }; "chemcompounds" = { stripPrefix = 0; - md5.run = "d0cea4ebdb30052cfa75f1801346efd1"; + md5.run = "980ed9b22c97330de307aa0da1dca30e"; md5.doc = "4b8520660fe12149c149cabf1b16ee5c"; md5.source = "db4ce064da53bf0e7137fd81ddcef9f1"; hasRunfiles = true; }; "chemcono" = { stripPrefix = 0; - md5.run = "d27cce27e9a3c0c999c6fdb3595d7f48"; + md5.run = "9fb667f38f6633a63c0f53d2dba62836"; md5.doc = "9e694afc75387260bed9e39069761d58"; hasRunfiles = true; version = "1.3"; }; "chemexec" = { stripPrefix = 0; - md5.run = "7ec5b8370e0a7df81b0ebc8407709352"; + md5.run = "97c5a54bae1a89686177faba94566e86"; md5.doc = "915e124c90ffcac68186d5dd17ad606a"; hasRunfiles = true; version = "1.0"; }; "chemfig" = { stripPrefix = 0; - md5.run = "605507dfcc508689c9493996295097b8"; + md5.run = "e4f09fe7d57ef2280283afb961784884"; md5.doc = "9580ee6be715f1fe3e4b2942cb31e545"; hasRunfiles = true; version = "1.1a"; }; "chemformula" = { stripPrefix = 0; - md5.run = "92f45e7b3795aeb0a824ae2cdd1baf43"; + md5.run = "513bda8f73fa9bb1fa6be0334b1a1d0c"; md5.doc = "8b2bfe0b1d2b7e9300b359274a993616"; hasRunfiles = true; version = "4.10a"; }; "chemgreek" = { stripPrefix = 0; - md5.run = "bf43179cf7237eab9ea1e086d5251918"; + md5.run = "93ffc5cdeba0308449545cd1facc4c6c"; md5.doc = "17a25fbde5bae7c08478b5602778f34c"; hasRunfiles = true; version = "0.5a"; }; "chemmacros" = { stripPrefix = 0; - md5.run = "131ed6975ee967a086ca1b1e571f4b96"; + md5.run = "61c448ff867a613abf80330af4ebceb0"; md5.doc = "0547bfd8ba1e90f63b767c85182e2e9b"; hasRunfiles = true; version = "4.7"; }; "chemnum" = { stripPrefix = 0; - md5.run = "da097ce8ac387dd5bde61831ed65a13b"; + md5.run = "4d38d2dbc6c728becc028f4d63a5980b"; md5.doc = "7adba8a95f58a8c5e98f4f181b9065c5"; hasRunfiles = true; version = "1.1"; }; "chemschemex" = { stripPrefix = 0; - md5.run = "4a96dc6c91e09d549a253353ce51331c"; + md5.run = "f077e01154b0f4c6326069f05d8766b7"; md5.doc = "5dc076b0c699d27821d563aea9eca75a"; md5.source = "4a3aaa51581056dc676689af81580b3d"; hasRunfiles = true; @@ -3127,7 +3127,7 @@ tl: { # no indentation }; "chemstyle" = { stripPrefix = 0; - md5.run = "3d5c30cade5b0e5e42684630cb211d20"; + md5.run = "8863da918173b4ff38398ed8bcff2107"; md5.doc = "fe9d8332740c48b6735a8f56811ee63c"; md5.source = "2783ce217c61c09d5c6ef49b18122d12"; hasRunfiles = true; @@ -3135,20 +3135,20 @@ tl: { # no indentation }; "cherokee" = { stripPrefix = 0; - md5.run = "881276496ea7a33777babf3377ee51f2"; + md5.run = "6aec1d0492a06a757e489698a2854661"; md5.doc = "9fbb11fc76642edc744222fe97210aa9"; hasRunfiles = true; }; "chess" = { stripPrefix = 0; - md5.run = "76feac3205b422d65f5c31422e766372"; + md5.run = "6de9bdb30ab28c666e438968db84e804"; md5.doc = "df9aeef2b8b9f076e252c4280eb3a75e"; hasRunfiles = true; version = "1.2"; }; "chess-problem-diagrams" = { stripPrefix = 0; - md5.run = "9f469a2158908fef0b581ce960a596eb"; + md5.run = "e9196407671f8439495fe3450448e1e6"; md5.doc = "dafb300691e0f7a943a7fae29a7f50ad"; md5.source = "73f98b9a65deb12b1913099abd7fffa6"; hasRunfiles = true; @@ -3156,7 +3156,7 @@ tl: { # no indentation }; "chessboard" = { stripPrefix = 0; - md5.run = "6f20e5dd33ef69024eafd6df3cb5764a"; + md5.run = "d5a5e1f91f9af93c516d5d074610d9d9"; md5.doc = "3991299d00c2981968965e4d4948ee95"; md5.source = "62ba98a5b1663d9828a25c2defd354ac"; hasRunfiles = true; @@ -3164,7 +3164,7 @@ tl: { # no indentation }; "chessfss" = { stripPrefix = 0; - md5.run = "dc01453590dae5e408b4106895370bca"; + md5.run = "39f6eaebecd0b1f39a3355e71786eb80"; md5.doc = "01779361760e77d8f18531aaeb812b07"; md5.source = "aff95efe1a4d7cc2d8ca87b872a46a63"; hasRunfiles = true; @@ -3172,14 +3172,14 @@ tl: { # no indentation }; "chet" = { stripPrefix = 0; - md5.run = "261e35fc94d61fe8561f81349eb3f426"; + md5.run = "581cae879c7fe67312f92fb6b6a45d86"; md5.doc = "ef609e3c5b8d75956af5301257bba961"; hasRunfiles = true; version = "2.0"; }; "chextras" = { stripPrefix = 0; - md5.run = "2f1e94fde9cec80bb3589c8a0601e05f"; + md5.run = "f4374cfd0a322b4400265c1cb7331132"; md5.doc = "bbee9d114d85a07dd4068ca58adc95b8"; md5.source = "3fe87f264298c85a677bbdf46c62bde0"; hasRunfiles = true; @@ -3187,12 +3187,12 @@ tl: { # no indentation }; "chicago" = { stripPrefix = 0; - md5.run = "01a7cc4b21a968be24d041e530523d29"; + md5.run = "23a948382108f199ad84bdac675cee63"; hasRunfiles = true; }; "chicago-annote" = { stripPrefix = 0; - md5.run = "40ee68ad475fb86ed5449572702c611c"; + md5.run = "9fdd082583e3c227ec4c47c10cea05e0"; md5.doc = "89d37da3e7fe0a61d723d52366c4e27b"; hasRunfiles = true; }; @@ -3206,7 +3206,7 @@ tl: { # no indentation }; "chkfloat" = { stripPrefix = 0; - md5.run = "a6f28be3b321dd043241011b143cd63c"; + md5.run = "9dba5e6aa9beadfa537ed999877302ef"; md5.doc = "1b7b2d5ead89e78dbd24df47ed56444e"; hasRunfiles = true; version = "0.1"; @@ -3219,7 +3219,7 @@ tl: { # no indentation }; "chletter" = { stripPrefix = 0; - md5.run = "08a49680468f2ba3cb0ae8fd0970d283"; + md5.run = "cd30a47e123c0c40f6e3efea59725c2c"; md5.doc = "ced6d1d2b6802bb9f85f1d0e56b42228"; md5.source = "0c18d146e7a439274dd23316d8bc03ee"; hasRunfiles = true; @@ -3227,28 +3227,28 @@ tl: { # no indentation }; "chngcntr" = { stripPrefix = 0; - md5.run = "96dc48994d82bdb82a654fcb929768cc"; + md5.run = "864f471da274f3bd093d725e72b69672"; md5.doc = "1f908c29e98b2209dc4e84b00192e6fa"; hasRunfiles = true; version = "1.0a"; }; "chronology" = { stripPrefix = 0; - md5.run = "8d9853176e98a3de8bc62de781723d84"; + md5.run = "ac7f200194b23243f5455eeb2e7ef9fa"; md5.doc = "bf9a07e84e8cebb7843becd0ab103150"; hasRunfiles = true; version = "1.1"; }; "chronosys" = { stripPrefix = 0; - md5.run = "c6a4bcd35ee658b3a2e5dc26173de101"; + md5.run = "d6909f1697dbdb2edeeddbb3959efaaa"; md5.doc = "18c121281222170d23b19c451f893e62"; hasRunfiles = true; version = "1.2"; }; "chscite" = { stripPrefix = 0; - md5.run = "f3b6f7bcd2e86c516bcd7f7ab2190b00"; + md5.run = "0358d8878eb478c3972b153b21b1839f"; md5.doc = "d571133c3eee640eb7b557122f699f9a"; md5.source = "4e79359dbd8cbe497fbda790978d6bc9"; hasRunfiles = true; @@ -3256,13 +3256,13 @@ tl: { # no indentation }; "cinzel" = { stripPrefix = 0; - md5.run = "0c8a18233a8f589dc80305c39345e4f0"; + md5.run = "97e441b0c2e7c0230f25d6858d0efa5e"; md5.doc = "474c482e5100aab66916d0282496a3ea"; hasRunfiles = true; }; "circ" = { stripPrefix = 0; - md5.run = "355dc0dcf0a55594138ae88f581b133d"; + md5.run = "160b7358e83f32106f7837c88a47dcdd"; md5.doc = "e9b8fbd8fd3b08d4b7dd702b73971e28"; md5.source = "c0e3ef6b06965ec0e0e05599faf38eec"; hasRunfiles = true; @@ -3270,7 +3270,7 @@ tl: { # no indentation }; "circuitikz" = { stripPrefix = 0; - md5.run = "bf63206f5094ea9d014308da43c25d03"; + md5.run = "55266d7e34b2f0a558868ba4ee49006b"; md5.doc = "dd52728b72cf27b329d6ce45465ea8e4"; hasRunfiles = true; version = "0.3.0"; @@ -3284,14 +3284,14 @@ tl: { # no indentation }; "citeall" = { stripPrefix = 0; - md5.run = "e8ea4b80300724792a6c0d5ef1a2a997"; + md5.run = "752ee34b1671af60915655b3f8dd9291"; md5.doc = "a01f867885174f42a466a9aef1f80037"; hasRunfiles = true; version = "1.1"; }; "cjhebrew" = { stripPrefix = 0; - md5.run = "8cf4a2b1e676b1e4490b6a53fb5d5396"; + md5.run = "136f5260014fee9afdcc4f4cc320a7cd"; md5.doc = "762b6ac79cacaad15ee92756f37078d4"; hasRunfiles = true; version = "0.1a"; @@ -3304,7 +3304,7 @@ tl: { # no indentation deps."norasi-c90" = tl."norasi-c90"; deps."uhc" = tl."uhc"; deps."wadalab" = tl."wadalab"; - md5.run = "4e4633224f2d8e46877e79f0a18b5562"; + md5.run = "824b9999dd87f3f384b423103ee21245"; md5.doc = "39b7889989c463514fa31371c152e162"; md5.source = "6add8d6547cce71afbd7075e7edef836"; hasRunfiles = true; @@ -3312,41 +3312,41 @@ tl: { # no indentation }; "cjk-ko" = { stripPrefix = 0; - md5.run = "eb060e5dbfcac0ef5642997b61b2c7ca"; + md5.run = "906ae6880fac46374e03b494d280885f"; md5.doc = "c567b4116eb2c7b229c2f1c8b8d5d897"; hasRunfiles = true; version = "1.5"; }; "cjkpunct" = { stripPrefix = 0; - md5.run = "edb1f051ca16038522ae718120c78a85"; + md5.run = "12bc4ca9419d5137c6d3bc5bff4a07b8"; md5.doc = "7d65c19ef6c5f3d514bf57e0bb796652"; md5.source = "eee935f3bd83af60e785a39523f84fa5"; hasRunfiles = true; version = "4.8.1-2"; }; "cjkutils" = { - md5.run = "6a1d9a623dcce3e52bd5b19c21b4faf4"; + md5.run = "779e43cc6c45a115975463b43e83ccf1"; md5.doc = "cf17491ec9b86833baf7072f7678bf1e"; hasRunfiles = true; }; "classics" = { stripPrefix = 0; - md5.run = "6b7219068d1da3b404924df3cc6b7f7d"; + md5.run = "8128bada279f7bcd01f4490d5e3a56fe"; md5.doc = "369fb9d99eea0ced92c396524d364b0a"; hasRunfiles = true; version = "0.1"; }; "classicthesis" = { stripPrefix = 0; - md5.run = "bbae3f7527a7206ab673038e490da7bc"; + md5.run = "1921c11a2949cbd94a2c0dada1631336"; md5.doc = "796eacd3967d3f32033cb5d9911edede"; hasRunfiles = true; version = "4.1"; }; "classpack" = { stripPrefix = 0; - md5.run = "5c8db979b02715c6b31fcb1e361be52e"; + md5.run = "dfca8fd998ac78546f18e72b935c9ab2"; md5.doc = "19fa7447dacf2f62cd703b143ed9e6ab"; md5.source = "84e6d3fae605aa497928a233218348f6"; hasRunfiles = true; @@ -3354,13 +3354,13 @@ tl: { # no indentation }; "clearsans" = { stripPrefix = 0; - md5.run = "481175ffb4a4d62f96d56fd35eeb5033"; + md5.run = "17c5ab9e9b5a7aca5fb511f64595e942"; md5.doc = "a4c2a25a9fd738b6f994e99735086c97"; hasRunfiles = true; }; "clefval" = { stripPrefix = 0; - md5.run = "a2a9de065c0f896d985796be850af1bf"; + md5.run = "f5db120e440cd77cbab254a66310bc02"; md5.doc = "3cc562893904ed0bc5d1dbc75dd67660"; md5.source = "4d8959f128b2f0b549ee6438fc2591a9"; hasRunfiles = true; @@ -3368,7 +3368,7 @@ tl: { # no indentation }; "cleveref" = { stripPrefix = 0; - md5.run = "9a4914a9786f52d5e127c799033e3e38"; + md5.run = "b394624778764779adf8f56180f740df"; md5.doc = "faa64ecd8777919e6cdbbac1e042dfba"; md5.source = "2515f19162218b1be0dcf3241abff491"; hasRunfiles = true; @@ -3376,27 +3376,27 @@ tl: { # no indentation }; "clipboard" = { stripPrefix = 0; - md5.run = "0264abc955bb2e269afc11ebf643855e"; + md5.run = "e413cc148ccf256875eb832e3cc5c6ab"; md5.doc = "6cf8c2b025dfd5c8be46e4ba0ace20e6"; hasRunfiles = true; version = "0.2"; }; "clock" = { stripPrefix = 0; - md5.run = "32b11af4f7f2f99d6696bddf28bc62d8"; + md5.run = "f34b7d2317dc276b6684037311d4357b"; md5.doc = "cac29747124b057dc803d5fdc7ee3e4f"; hasRunfiles = true; }; "clrscode" = { stripPrefix = 0; - md5.run = "94976b8f00162510883552c0522666d0"; + md5.run = "90dd99290a973ce60c6f9d05a46869e4"; md5.doc = "0338516302e0676e4baae2ea553dfce3"; hasRunfiles = true; version = "1.7"; }; "clrscode3e" = { stripPrefix = 0; - md5.run = "cae8a084c9d1cb5478febf7710dc3a08"; + md5.run = "23de67a891fae1bf26ab7404f528ecf4"; md5.doc = "6a321f28750bfb5def463402f83a2c67"; hasRunfiles = true; }; @@ -3408,7 +3408,7 @@ tl: { # no indentation }; "cm-lgc" = { stripPrefix = 0; - md5.run = "5dea7f25218ff30a5161681bafb6666c"; + md5.run = "f708a2eb31ab6a5a61bc8fe9b45842d3"; md5.doc = "15d0f36372556fbd28f51a8e37facf85"; hasRunfiles = true; version = "0.5"; @@ -3442,7 +3442,7 @@ tl: { # no indentation }; "cmbright" = { stripPrefix = 0; - md5.run = "3803fc8a97e6b544569e2cc3d0fae8df"; + md5.run = "121cf59e32306c67b4af6ec3aadc3d5f"; md5.doc = "3da109eaf5646af0d5e0e2a65f3fc398"; md5.source = "fd6f31bf62010526af192519318c2175"; hasRunfiles = true; @@ -3456,14 +3456,14 @@ tl: { # no indentation }; "cmdstring" = { stripPrefix = 0; - md5.run = "45921faf60fb0f52206ba7af04725272"; + md5.run = "46c3d6321ffa7f8fdac173c5e617607d"; md5.doc = "492e8f57d25731c0848ce6ca5ea8dc32"; hasRunfiles = true; version = "1.1"; }; "cmdtrack" = { stripPrefix = 0; - md5.run = "5abe82c4bf58579f94771948e8bd298d"; + md5.run = "efa036c17afdc7d272735bb15fcc76ed"; md5.doc = "6fd783f9b8d14ac40409dd4c3e37d372"; md5.source = "cfe5599b08f443914451f034fa22c425"; hasRunfiles = true; @@ -3475,33 +3475,33 @@ tl: { # no indentation }; "cmll" = { stripPrefix = 0; - md5.run = "37ecd95b307f6d3db6c7274e2447e32d"; + md5.run = "303e2052b128e0a5b4ba87db10f45f5e"; md5.doc = "fd5836ea68718f5941097a5c23da15a1"; md5.source = "e0f0bfa2ea53a172c448a80d51e6e771"; hasRunfiles = true; }; "cmpica" = { stripPrefix = 0; - md5.run = "7ca168ebe58388b3cd9d120ade981a8a"; + md5.run = "a700f793294bff38784e9a8265b8eabe"; md5.doc = "54211e5978c4788268fe251d30d7de3b"; hasRunfiles = true; }; "cmpj" = { stripPrefix = 0; - md5.run = "9f5fc4f3eb0ca370726c3f7288fcb32e"; + md5.run = "582084813f6f62f41482cfe39f889910"; md5.doc = "c5a9644ab377a334d6da446d6b8ce143"; hasRunfiles = true; version = "2.05"; }; "cmsd" = { stripPrefix = 0; - md5.run = "83d4588a08c9f778b4d1f1b26aefdd6a"; + md5.run = "2705f222d2cf5f0d450c33c625346392"; md5.doc = "c4c576a3d040f33e28cc9e1538456a40"; hasRunfiles = true; }; "cmtiup" = { stripPrefix = 0; - md5.run = "71c0cd0bf99b017d47fc2d6d0718eaa8"; + md5.run = "b54d7b7d5c8a70f3611789e7387b6caa"; md5.doc = "23afb79eebd6858eae69b0b43345efac"; hasRunfiles = true; version = "1.3a"; @@ -3514,41 +3514,41 @@ tl: { # no indentation }; "cnltx" = { stripPrefix = 0; - md5.run = "91173d18ccce7f82c0de117398780610"; + md5.run = "1af24df057c456c233106bbcf3d17a1c"; md5.doc = "d98e72d0d16496c0d090d14d1c9e6a60"; hasRunfiles = true; version = "0.12"; }; "cns" = { stripPrefix = 0; - md5.run = "4fb983942d6ab99dd6d53ee819a17f79"; + md5.run = "bd61ecfdeecac0aa02b751bb8b7fb610"; md5.doc = "593e314ca307be9a8ea9d75ce2af1bb7"; hasRunfiles = true; }; "cntformats" = { stripPrefix = 0; - md5.run = "eeea4d26ad2486308824e501b6fbdd98"; + md5.run = "c9259efdc9fa0cf191b243c9c20ffa1a"; md5.doc = "7eb8620869b7340584fa089455dc8cbd"; hasRunfiles = true; version = "0.7"; }; "codedoc" = { stripPrefix = 0; - md5.run = "396e2815d5b6cbe3070e667577559823"; + md5.run = "10f1cbe63ec9ebbaed338b043bab59df"; md5.doc = "b852f2f7175535eb515b8e6c37a4b2d9"; hasRunfiles = true; version = "0.3"; }; "codepage" = { stripPrefix = 0; - md5.run = "a621f74067607e161bb9570a15fe176e"; + md5.run = "657800f4fc19c0c51ae1aa555ee1592c"; md5.doc = "3295b0ec9e1cec8fb77187fea7a205c0"; md5.source = "959aafe3475632ae44d70a91e4b2cbbb"; hasRunfiles = true; }; "codesection" = { stripPrefix = 0; - md5.run = "3a55170650ff98e8074338f0a17388e7"; + md5.run = "240a9eed7f852002d57ae3ae1ec97e4c"; md5.doc = "b9ef8fe05be275f8d429d0a0faa6cd06"; md5.source = "06c26e005a8d50193495f4e433b6fa97"; hasRunfiles = true; @@ -3564,7 +3564,7 @@ tl: { # no indentation }; "collcell" = { stripPrefix = 0; - md5.run = "e350fda06c524a04448134f6284b5c90"; + md5.run = "e9d7ebd7c0c30d9f4b9a3a2c2c525fa5"; md5.doc = "d74dd55a078711ab5b019515e27c6fce"; md5.source = "7e84f477ae41373e309f81a34a0d3839"; hasRunfiles = true; @@ -3572,7 +3572,7 @@ tl: { # no indentation }; "collectbox" = { stripPrefix = 0; - md5.run = "415dbbf33f45f0008eb7379d7e67058e"; + md5.run = "f1af1f351c8953afeaa90dd2b87cb182"; md5.doc = "27e3b43f1b645177cb5c4d53f2063750"; md5.source = "93b9e72e527a2ac442c2871fdc8b0046"; hasRunfiles = true; @@ -6653,7 +6653,7 @@ tl: { # no indentation }; "collref" = { stripPrefix = 0; - md5.run = "38e3c1774468e9cdc907997268990ee2"; + md5.run = "5a8b8194b36403e7b7c5ca2a0d645b6e"; md5.doc = "76c6b2c14553e901cb31be748d0a4994"; md5.source = "479990fb381022c8595e6d6387b1f37b"; hasRunfiles = true; @@ -6661,26 +6661,26 @@ tl: { # no indentation }; "colordoc" = { stripPrefix = 0; - md5.run = "8e271a31cb325dba9ca84b809aceb1ff"; + md5.run = "90e006f40d414fa4a3cddaf8430d53c5"; md5.doc = "974e77225667b7dfceeb4896fe6aae6f"; md5.source = "1e5052b12f1ff297eb9457a70affe8f9"; hasRunfiles = true; }; "colorinfo" = { stripPrefix = 0; - md5.run = "9ec4e3c76af71dfc4978849f845a9087"; + md5.run = "2e6c4c460acb9c4129cea33189443b29"; md5.doc = "669fb46a871fb2758a6e9505d229c692"; hasRunfiles = true; version = "0.3c"; }; "colorsep" = { stripPrefix = 0; - md5.run = "8f325ce22c6de2876d1c4d791ae59169"; + md5.run = "27bce3f951926b4ce3a9bb4da579ea88"; hasRunfiles = true; }; "colortab" = { stripPrefix = 0; - md5.run = "86d3a0bedd6ad01e7fd1d777039e4f83"; + md5.run = "46bf870c49a8ccf24712cb153ff92dc7"; md5.doc = "835b7dd8bb01f45a833bd5423f342d4e"; hasRunfiles = true; version = "1.0"; @@ -6695,7 +6695,7 @@ tl: { # no indentation }; "colorwav" = { stripPrefix = 0; - md5.run = "e9c1e4acf2418c1a7af9b0cb455a393d"; + md5.run = "a176b25168b90847cb7eba113232728d"; md5.doc = "2063d7189189f205f434208f5b527d1f"; md5.source = "ce55708c6ab2c8e834b2eedb50fa2034"; hasRunfiles = true; @@ -6703,7 +6703,7 @@ tl: { # no indentation }; "colorweb" = { stripPrefix = 0; - md5.run = "86de9d78b9d9bf0cec0456a0cb83d250"; + md5.run = "8c2348767862bfa40e25666814209e46"; md5.doc = "9f135f40678e25ee7cc0ab9b342e9868"; md5.source = "e75458d0b24d09331183c4717e3c2cf5"; hasRunfiles = true; @@ -6711,21 +6711,21 @@ tl: { # no indentation }; "colourchange" = { stripPrefix = 0; - md5.run = "d980a9a0604d6bad296b798ecf0120a7"; + md5.run = "9031de5c6a25a7c220dcc0259e2fe008"; md5.doc = "1525f3df50fa522ed0e4664e30b8fb5e"; hasRunfiles = true; version = "1.22"; }; "combelow" = { stripPrefix = 0; - md5.run = "f28aecd3c5ae9aef86dd06154de1475d"; + md5.run = "1446d06419e7932c9236199e98a5d939"; md5.doc = "59582389b970c8e85aad157d8bee46ff"; hasRunfiles = true; version = "0.99f"; }; "combine" = { stripPrefix = 0; - md5.run = "b4d8715b6ab98cda07fece933ad9b94d"; + md5.run = "e446300fba4ac890207f0a44da041ba5"; md5.doc = "1aece09f6a84d70a9e2d49cbe4f0ae69"; md5.source = "611b584938ae209357e12dea2648cc9d"; hasRunfiles = true; @@ -6733,7 +6733,7 @@ tl: { # no indentation }; "combinedgraphics" = { stripPrefix = 0; - md5.run = "daf057c6b716b93c0a2baa88c2ef1d16"; + md5.run = "ef2ee20e433e9b3a1fd3fa2abee559c1"; md5.doc = "b48cedf51648af4be2240516fbd7a75c"; md5.source = "f38581c982ce62723aa74ca76f20a8e7"; hasRunfiles = true; @@ -6741,7 +6741,7 @@ tl: { # no indentation }; "comfortaa" = { stripPrefix = 0; - md5.run = "075fbe6f7b2912651f388ac825fbadaa"; + md5.run = "7c33059ee74eec302b11734795033f91"; md5.doc = "6cb31f2316fe04064611673b5dd8b51c"; md5.source = "5267f95ee6f59569d7e487a829e109e0"; hasRunfiles = true; @@ -6749,14 +6749,14 @@ tl: { # no indentation }; "comma" = { stripPrefix = 0; - md5.run = "b6c7aabd5ddb794172d51506769bc110"; + md5.run = "2bf4f7e8cf2214fc3ddd421788f3ade3"; md5.doc = "c6e4c762ace654402e13c17b8365f309"; hasRunfiles = true; version = "1.2"; }; "commado" = { stripPrefix = 0; - md5.run = "0be367fdd1df69c03a81ed3b9c2223dd"; + md5.run = "dfdac9d56e5cba0fe0a3dd83268e8676"; md5.doc = "70a6dfc5b6125ae50d133f370ed37e0d"; md5.source = "1df800fb675dfb4426fa0b5606028a30"; hasRunfiles = true; @@ -6778,12 +6778,12 @@ tl: { # no indentation }; "compactbib" = { stripPrefix = 0; - md5.run = "592a3b36814bc8c8c2d30fad73335a8a"; + md5.run = "314bade4a37ecf51a0d485f010585262"; hasRunfiles = true; }; "complexity" = { stripPrefix = 0; - md5.run = "9e96c550cad54b98330b6ca838caa225"; + md5.run = "4f9e061c68c0efa73fe35d1b0c109264"; md5.doc = "f4d328bf9c199358b83cf2cd2a88b2d3"; hasRunfiles = true; version = "0.76"; @@ -6801,7 +6801,7 @@ tl: { # no indentation }; "computational-complexity" = { stripPrefix = 0; - md5.run = "810529a98cbd018b782ac4cbdc52c64e"; + md5.run = "7d1ea9b1644b42112d8a45487bc057f7"; md5.doc = "3fcf633b394b54383e2043cdecea4732"; md5.source = "96e9f260623860327685e23abb11d428"; hasRunfiles = true; @@ -6809,7 +6809,7 @@ tl: { # no indentation }; "concepts" = { stripPrefix = 0; - md5.run = "7165a4d9de8847b1da4898c40ce78baa"; + md5.run = "0280570ca3e4ddc79c337b3eedf9c7e7"; md5.doc = "895ea2172b13f99f03755bcef2c3c66d"; hasRunfiles = true; version = "0.0.5-r1"; @@ -6824,13 +6824,13 @@ tl: { # no indentation }; "concmath-fonts" = { stripPrefix = 0; - md5.run = "231d29cf1de84ecdecb4d26e2226965c"; + md5.run = "65ca8a9188a547c16c9ee4247d61f654"; md5.doc = "eb2e6ec9c27695d32c2d65ebfecb5c50"; hasRunfiles = true; }; "concprog" = { stripPrefix = 0; - md5.run = "25d626982a6c95ca2e5f0083478432df"; + md5.run = "83e59b41b933b349c3025605666f1845"; md5.doc = "a0747ecdd3f291e68974643e3cfe2eee"; hasRunfiles = true; }; @@ -6842,7 +6842,7 @@ tl: { # no indentation }; "confproc" = { stripPrefix = 0; - md5.run = "d7a1dbcfca7f10e8deb0472480e3ab0e"; + md5.run = "76d87c04d784cdea1b97fef97567289e"; md5.doc = "f66d9996995036b2c74d5d91e4e1d7a2"; md5.source = "8d1d6686236e4e3ee823addafea42fb8"; hasRunfiles = true; @@ -6850,7 +6850,7 @@ tl: { # no indentation }; "constants" = { stripPrefix = 0; - md5.run = "f4aee31f8e27e3cdc71434e8294a3970"; + md5.run = "08edfeb7ff680f2c1060e01756e8a25d"; md5.doc = "18b2a9009a614a0cfdc64f00b0431d86"; md5.source = "2f85d5bc9fcf7dcaa247cc3143fbe41b"; hasRunfiles = true; @@ -7108,7 +7108,7 @@ tl: { # no indentation }; "contour" = { stripPrefix = 0; - md5.run = "e591e45c53ca0c52d9a43559560a7a67"; + md5.run = "4324f2806d3bf32cfa6525734f7decb0"; md5.doc = "39ce714dcd06346619c12fbf75ccd4e6"; md5.source = "018b6324abd3248f23f079b2c3973732"; hasRunfiles = true; @@ -7116,21 +7116,21 @@ tl: { # no indentation }; "contracard" = { stripPrefix = 0; - md5.run = "8a91ac896d48cd33f16e270fe72c51bf"; + md5.run = "0e129219a4b1b701f73a1ac4cac0221c"; md5.doc = "4a55bd9f32b5d1caea3bc150d09d556e"; md5.source = "71ee12c0743e10cf0392dce84912e716"; hasRunfiles = true; version = "1.0.1"; }; "convbkmk" = { - md5.run = "389cb606a0152fabcf8a71190be039d3"; + md5.run = "3ca33526f07a2434f3393a77ff16aa37"; md5.doc = "3f8aba53751d43339a2117690574e766"; hasRunfiles = true; version = "0.10"; }; "cooking" = { stripPrefix = 0; - md5.run = "53c3fef2e63190340c9ef1310b37a50d"; + md5.run = "bdb3397c69cefaa4454d3a54eae3e207"; md5.doc = "d9bc3c4e149da42e04a172f512c1ddf9"; md5.source = "4868ae01458aa17a7e9a2ea3ab4c5f09"; hasRunfiles = true; @@ -7138,7 +7138,7 @@ tl: { # no indentation }; "cookingsymbols" = { stripPrefix = 0; - md5.run = "2a90ac464b4dfa421fe22c6ac2446039"; + md5.run = "f4be2370cd58a5430f87089c75cac6c2"; md5.doc = "34ea2c69ee8dadbbfd6dc01cd2064dee"; md5.source = "215adaec7c03a66b47122a51dec178b7"; hasRunfiles = true; @@ -7146,7 +7146,7 @@ tl: { # no indentation }; "cool" = { stripPrefix = 0; - md5.run = "f770ba22da6c2adb19630948ab0c7cbb"; + md5.run = "5a9a8bf99b5551b82feb442eacb851d5"; md5.doc = "cf7d5ba809179a402299380c22720a33"; md5.source = "eda786fe0761d1176470b4ff978c466f"; hasRunfiles = true; @@ -7154,7 +7154,7 @@ tl: { # no indentation }; "coollist" = { stripPrefix = 0; - md5.run = "bcc3850a6db4ec0c750e34f3a7883efe"; + md5.run = "e2a5e33faf5e952cf043bc4de037a000"; md5.doc = "5fa7adf25ec403b19225237094a5f96c"; md5.source = "21738780d5219dba3f8424bc0769c7f1"; hasRunfiles = true; @@ -7162,7 +7162,7 @@ tl: { # no indentation }; "coolstr" = { stripPrefix = 0; - md5.run = "42befefd846c7811783db53292183657"; + md5.run = "2cb3272787bd6e98c8f61cde5d3d27be"; md5.doc = "c6629f6b2ed6e22155cf3195f7c326be"; md5.source = "fc8d7351ef4c71705539a294d62de21b"; hasRunfiles = true; @@ -7170,7 +7170,7 @@ tl: { # no indentation }; "coolthms" = { stripPrefix = 0; - md5.run = "74b5c2b6d96f56fa501070da02e83249"; + md5.run = "21fa377c6122d446993247d5c3d563d3"; md5.doc = "4a166b791f39a2178b39473e8926b79f"; md5.source = "a92ecd3ec9c2878d62db0cbbf4182921"; hasRunfiles = true; @@ -7178,7 +7178,7 @@ tl: { # no indentation }; "cooltooltips" = { stripPrefix = 0; - md5.run = "adf223c2dd9d2e4df046f71d49d978b7"; + md5.run = "91e8a15ddc5ed3a0c757ecb866085ae4"; md5.doc = "5ff1374e27248e26efd21202c5d5c9f5"; md5.source = "17c1aec012a849e31457003053403df4"; hasRunfiles = true; @@ -7186,7 +7186,7 @@ tl: { # no indentation }; "coordsys" = { stripPrefix = 0; - md5.run = "e5ef0b7a9bd7000fcbe192ca70c9e7c7"; + md5.run = "5adf006af4bbf24d3c03275f2694805c"; md5.doc = "effcfd9bc0a7b7e03e6c65a39f520e9a"; md5.source = "b86e2efa12af84a4ba1d03bd638bf63b"; hasRunfiles = true; @@ -7194,28 +7194,28 @@ tl: { # no indentation }; "copyrightbox" = { stripPrefix = 0; - md5.run = "e28bd9169fefe624c0557f0a98280c0a"; + md5.run = "ba16385c45e463d31fe870317807e761"; md5.doc = "98815bd531a2602575a0d8b84179177f"; hasRunfiles = true; version = "0.1"; }; "coseoul" = { stripPrefix = 0; - md5.run = "f95d3cb403da2b00a2cb31a40ebd4029"; + md5.run = "5f2e4efc27b7db9129ece1762c0f912e"; md5.doc = "d7b3ea1909c4cf39feb1c9daef7580dc"; hasRunfiles = true; version = "1.1"; }; "countriesofeurope" = { stripPrefix = 0; - md5.run = "4081c8a5f00962b64ba04befcb7c43c1"; + md5.run = "34611015a75798bb998959b5718cd9cf"; md5.doc = "488fff86db7159332b87ba582b4e12db"; hasRunfiles = true; version = "0.21"; }; "counttexruns" = { stripPrefix = 0; - md5.run = "80c400520259837fd872f3ef7ebaa44d"; + md5.run = "d59c60b0d825ede0b545ef470cb96236"; md5.doc = "462662b88401ea5f17b46c9d5f6db947"; md5.source = "59bdf1d21450dfe6e440a2f0d23384bf"; hasRunfiles = true; @@ -7228,27 +7228,27 @@ tl: { # no indentation }; "courier-scaled" = { stripPrefix = 0; - md5.run = "54d4a0a16e164a7e2552c9562d11be60"; + md5.run = "294dd06fd7b6dd3ba08187303b07483b"; md5.doc = "ee4f9c0dbcc1262f7367399c8db4f7de"; hasRunfiles = true; }; "courseoutline" = { stripPrefix = 0; - md5.run = "16113773f413e6b4f0853c8a06b8a260"; + md5.run = "441c3697e49656a0aaaaecdb372a591c"; md5.doc = "30a80dd8ae971f7a40131e92f1c0e3df"; hasRunfiles = true; version = "1.0"; }; "coursepaper" = { stripPrefix = 0; - md5.run = "2e55555ec4f64af1428ca9d250ac5840"; + md5.run = "5e07d10dcb1b6149701870f88923683b"; md5.doc = "ba0d0837c6e3ba748b6ac6de3672c0e7"; hasRunfiles = true; version = "2.0"; }; "coverpage" = { stripPrefix = 0; - md5.run = "840e2a0bb0e712139620aace0a09cee4"; + md5.run = "06d192acecfdaf2406355df4b82c021e"; md5.doc = "5bb1492147b1615480fa1a908e4efb07"; md5.source = "3acaae0806746e0c62494f9198b5a77c"; hasRunfiles = true; @@ -7256,13 +7256,13 @@ tl: { # no indentation }; "covington" = { stripPrefix = 0; - md5.run = "a18dc8795072859dea84181f593d9a3c"; + md5.run = "957332deecac82030d789e6b29fdb65a"; md5.doc = "b758fc0180aabf91d37127e9ae3f26f1"; hasRunfiles = true; }; "cprotect" = { stripPrefix = 0; - md5.run = "4eeda7bd12ca74a967ca859ba728ecf5"; + md5.run = "a003c6f5d9fae163f14c6fd61391e176"; md5.doc = "c5e0483ee3bbb889c54aed7312ea9c5e"; md5.source = "a9c789c76dc7f993dfee2c647dc08cbb"; hasRunfiles = true; @@ -7270,7 +7270,7 @@ tl: { # no indentation }; "crbox" = { stripPrefix = 0; - md5.run = "a3ff369bc4e7d85872d35ba76424a859"; + md5.run = "1dbbf0508b5e13acb190e60f4bda0ecc"; md5.doc = "0b7e14230e66523e6e07eef52f65301f"; hasRunfiles = true; version = "0.1"; @@ -7285,20 +7285,20 @@ tl: { # no indentation }; "crossreference" = { stripPrefix = 0; - md5.run = "c11eee8538fb3fd67fa2049fc68108fd"; + md5.run = "d3ed28a0fe25d2b8cef2c4fe37dc5fc8"; md5.doc = "8c7c55e94e8811c83b103f1c2eafbac4"; md5.source = "6a4371501a8298e593b85ca69a06d5cd"; hasRunfiles = true; }; "crossrefware" = { - md5.run = "ee75140b5eb04a51679cc02ff6af4ab4"; + md5.run = "13a278d23c5eb6291a3ec27d1c9c2f87"; md5.doc = "2adf79a845007f121cc8eec3b9984bcf"; hasRunfiles = true; version = "1.0"; }; "crossword" = { stripPrefix = 0; - md5.run = "5c519f82364c846899070f34dde66dd6"; + md5.run = "39a88844bb56df8d52694993ba5afce3"; md5.doc = "3f23fe80adeedf055358a21ff2914a6e"; md5.source = "36f2e5c338d1a2ce43e57f5a9a296f89"; hasRunfiles = true; @@ -7306,7 +7306,7 @@ tl: { # no indentation }; "crosswrd" = { stripPrefix = 0; - md5.run = "05c1179b8e02917e724448d4e159db21"; + md5.run = "9ee9999bd71b350695db43bb23a065c1"; md5.doc = "abf9210f6987d12333fa45ce3ca986a8"; md5.source = "b889e5cb920c6f503fbc502f4b286fab"; hasRunfiles = true; @@ -7314,13 +7314,13 @@ tl: { # no indentation }; "cryptocode" = { stripPrefix = 0; - md5.run = "ceda0b52e9bea0b3a11b14ac4c3c10fa"; + md5.run = "99f0f7aa684611c58adabe772aaa0cea"; md5.doc = "5f06fe1f4acc9540ef1416eb7c433971"; hasRunfiles = true; }; "cryst" = { stripPrefix = 0; - md5.run = "e848c0a977c3847bea9723944dc71db4"; + md5.run = "5401730c00aac2fb89081b4e4582da78"; md5.doc = "9e1517d6395bc426a8f3000fc0ae342b"; hasRunfiles = true; }; @@ -7349,7 +7349,7 @@ tl: { # no indentation }; "csquotes" = { stripPrefix = 0; - md5.run = "4b32c9b0312048ab22d96c8643c03194"; + md5.run = "29b1c1b01449c1696800b6088b3ede7e"; md5.doc = "6154c40162e8660a744b5726dff87105"; hasRunfiles = true; version = "5.1d"; @@ -7367,7 +7367,7 @@ tl: { # no indentation }; "csvsimple" = { stripPrefix = 0; - md5.run = "5b5fea61b7c580278d465e58054bf0dd"; + md5.run = "7cd2d247a18d9f2eaa96f74dc5f07a36"; md5.doc = "62e919f010135109ef6b05c350602e22"; hasRunfiles = true; version = "1.12"; @@ -7401,7 +7401,7 @@ tl: { # no indentation "ctex" = { stripPrefix = 0; deps."ttfutils" = tl."ttfutils"; - md5.run = "7b4ebc39ad14746ec40be9829f93fe8f"; + md5.run = "3365119a83ea48ecd8dbc43f45d31e30"; md5.doc = "bb49a4b482568545641d24a792238548"; hasRunfiles = true; version = "1.02d"; @@ -7413,7 +7413,7 @@ tl: { # no indentation }; "ctib" = { stripPrefix = 0; - md5.run = "74a39a069d65bea4a0e20857f3bad552"; + md5.run = "1b83ecd44eba97cc29a33f2169b1794f"; md5.doc = "1d432aff74547d3a6c9290b7a73ace8c"; md5.source = "80c8ed6193175d2e25d9df9a28da2b4b"; hasRunfiles = true; @@ -7426,7 +7426,7 @@ tl: { # no indentation }; "cuisine" = { stripPrefix = 0; - md5.run = "1abc91bb0aecdb56d6977ac4ca5875a5"; + md5.run = "b9dcdb65e657752ceef9878cfcc55a2a"; md5.doc = "1f4da3b2fcc25f5fc2d7c0d0ec8737d2"; md5.source = "2446e8cd95a863e6fcd1ce5a01ce60ef"; hasRunfiles = true; @@ -7434,7 +7434,7 @@ tl: { # no indentation }; "currfile" = { stripPrefix = 0; - md5.run = "233051fb7c353eca5014af564eae5eb2"; + md5.run = "09827417d90d18825585065572357772"; md5.doc = "a08d5e67dd6fbc2044b7994fe7c11902"; md5.source = "3e918becb3ba0f4637728e598b91b0d0"; hasRunfiles = true; @@ -7442,7 +7442,7 @@ tl: { # no indentation }; "currvita" = { stripPrefix = 0; - md5.run = "196d0292a3111274d21589c6496b0f83"; + md5.run = "019ea14a5e3eca13965ae125dd866dab"; md5.doc = "050f747f54869ed3b2006d73ecdbfd01"; md5.source = "e1699c51f49d2eeaa1ea2bccf36097cb"; hasRunfiles = true; @@ -7454,7 +7454,7 @@ tl: { # no indentation }; "curve" = { stripPrefix = 0; - md5.run = "9400b7d88db71605c1c8d134858835df"; + md5.run = "c78121ebd1341dc398cb14476a50f9d2"; md5.doc = "f15dd46fa36f182eac22c7ddb95d1761"; md5.source = "5f66d74a4ce297077568a55e9f0f328c"; hasRunfiles = true; @@ -7462,7 +7462,7 @@ tl: { # no indentation }; "curve2e" = { stripPrefix = 0; - md5.run = "ab79f925fd8abd533f29a8630cb8a304"; + md5.run = "daee6771dbc0abb34f776b7feecce9e0"; md5.doc = "a90ad39cfde7dc0fdf136cb01c5959f1"; md5.source = "77151885ef3dddd72293dfd432b15a2e"; hasRunfiles = true; @@ -7470,7 +7470,7 @@ tl: { # no indentation }; "curves" = { stripPrefix = 0; - md5.run = "61894f5c568b0d6b2b3d40250d4d98ed"; + md5.run = "13bb951ced8bf5fec80ef9a954276eba"; md5.doc = "5e3b6848e69f9539f3c7eac2796c0010"; md5.source = "49f169873a5cfe1ecf1e939f22ccef19"; hasRunfiles = true; @@ -7478,7 +7478,7 @@ tl: { # no indentation }; "custom-bib" = { stripPrefix = 0; - md5.run = "8284049efb11d9c43bda37f68b1ef251"; + md5.run = "87d54762ec22e906c3099cabe17f22c9"; md5.doc = "2e7c44ae737392d4781ede55c52af363"; md5.source = "53c3c82ee57e701d7062451d5584f03c"; hasRunfiles = true; @@ -7486,7 +7486,7 @@ tl: { # no indentation }; "cutwin" = { stripPrefix = 0; - md5.run = "a5851cc2cf771e2a235fc0d5dfa56cc7"; + md5.run = "1c0272bb292219f483ab4c83d1f55bc6"; md5.doc = "2d1ebbbd44bec1ed14e39c84894f74ca"; md5.source = "c93851234ededa4832330a85ec30cb0c"; hasRunfiles = true; @@ -7494,13 +7494,13 @@ tl: { # no indentation }; "cv" = { stripPrefix = 0; - md5.run = "52372128264560da7c82fa07715f2426"; + md5.run = "88b7800f2431100134dca3e957d8fb23"; md5.doc = "dd1a48d82e35f32d158e41d4adce881f"; hasRunfiles = true; }; "cv4tw" = { stripPrefix = 0; - md5.run = "0b1ff7c4988a1bc456446a428859f122"; + md5.run = "974bb9d93534e7ec600fbedb2d5f9f74"; md5.doc = "8c95982cdbe112bec0c4b0dd94e0898c"; hasRunfiles = true; version = "0.2"; @@ -7513,13 +7513,13 @@ tl: { # no indentation }; "cweb-latex" = { stripPrefix = 0; - md5.run = "37a358f1ca35c67183fee1725d96e082"; + md5.run = "68ef861f53164664843e81d4bd42fd99"; md5.doc = "81e4eb8265bdece0af1658a3cf3386a4"; hasRunfiles = true; }; "cyber" = { stripPrefix = 0; - md5.run = "b3dda9bb5caa5ad08a5624719cf58ea9"; + md5.run = "5f4a8ec6815808c1c7f67c450b71f0df"; md5.doc = "b910701c38b56734906a0f6948db8766"; md5.source = "9b572c3acb84a17c4de0c9b2bfe4052f"; hasRunfiles = true; @@ -7527,7 +7527,7 @@ tl: { # no indentation }; "cybercic" = { stripPrefix = 0; - md5.run = "9938c45c15b4b6fb8671659e686d6858"; + md5.run = "5e4ad49cbc96a72df74656ea3a4b4933"; md5.doc = "bb0366ee34e2be29c1da437641e5f303"; md5.source = "1a15b5ad2169b0119dd99c5660dc1eac"; hasRunfiles = true; @@ -7535,7 +7535,7 @@ tl: { # no indentation }; "cyklop" = { stripPrefix = 0; - md5.run = "09e3ef205e31fc30797bb39a38b88d96"; + md5.run = "76d8b7215a395168accd2b40d6ee003c"; md5.doc = "4251fe25d71863e03ca49b45af820f62"; hasRunfiles = true; version = "0.915"; @@ -7560,26 +7560,26 @@ tl: { # no indentation }; "dad" = { stripPrefix = 0; - md5.run = "56752e961d69abab0e853e9f5e4b8775"; + md5.run = "73fa4000db2ea30b6cee2dcf7f07c6ac"; md5.doc = "4eec5b93534bf729aae8e903631058e9"; hasRunfiles = true; version = "1.1"; }; "dancers" = { stripPrefix = 0; - md5.run = "e2b85333b10b3ead03d2a5fa77c75579"; + md5.run = "9de06cf1c60d295e89baaeaa6b2ef0ab"; hasRunfiles = true; }; "dantelogo" = { stripPrefix = 0; - md5.run = "be22f78511e9e55b0f65f0b59a24bfbf"; + md5.run = "616274b60a19cfbe7afddd4cafe015cb"; md5.doc = "8e9bd8b34bcc8faca1a1e863407c04ee"; hasRunfiles = true; version = "0.02"; }; "dashbox" = { stripPrefix = 0; - md5.run = "d09cbe22099441bf45859d7ec3d67217"; + md5.run = "e96057db3235f4ad6a3221a993989a79"; md5.doc = "7f87298d60be789fe583062e1eaf7819"; md5.source = "14cb4aed099e52d4587e7a86f7a822e6"; hasRunfiles = true; @@ -7587,7 +7587,7 @@ tl: { # no indentation }; "dashrule" = { stripPrefix = 0; - md5.run = "a5b44f933e6fcd12f02a6448dffe687a"; + md5.run = "132cdc4fae9e9c596c5f42019515ff94"; md5.doc = "fc800baf9ae5f8e420a477f879382dc5"; md5.source = "12c9a4e1cb3a6ddad38c9bb8482bb9c8"; hasRunfiles = true; @@ -7595,14 +7595,14 @@ tl: { # no indentation }; "dashundergaps" = { stripPrefix = 0; - md5.run = "e8bb4a991f1fbab05c1b60fbd76acb3b"; + md5.run = "8a2e5acc5574ee7718ac7862c65b215a"; md5.doc = "10408b2b2fa0d29b43ec86684495d859"; hasRunfiles = true; version = "1.2"; }; "dataref" = { stripPrefix = 0; - md5.run = "42611209e5aae20f7ae19509be13c47c"; + md5.run = "51878ebf917258043d40ad5c75c5b0ab"; md5.doc = "a4d52d460f1439b9e104f167057cb58d"; md5.source = "80e4bdca571be75e9c33f52461c52223"; hasRunfiles = true; @@ -7610,7 +7610,7 @@ tl: { # no indentation }; "datatool" = { stripPrefix = 0; - md5.run = "cb5d55ddc26c87b84e1a3a9aad8de0ce"; + md5.run = "4f2235431ae9cf8f617b34406c8ab915"; md5.doc = "443b1d00faf7bc03720da83b9734beea"; md5.source = "62bdaf65473a36fe4322c3bf20d5bdef"; hasRunfiles = true; @@ -7618,7 +7618,7 @@ tl: { # no indentation }; "dateiliste" = { stripPrefix = 0; - md5.run = "39d4a40e44e0850f473964a56377cc36"; + md5.run = "11d324ac4b6103e171d43bafbd361824"; md5.doc = "e7be629b58c4e6fa5187083e3366c797"; md5.source = "cbb373879e15141f6be16d2965fe9499"; hasRunfiles = true; @@ -7626,7 +7626,7 @@ tl: { # no indentation }; "datenumber" = { stripPrefix = 0; - md5.run = "89b550f62aa8352dc79df3f0513d121f"; + md5.run = "579ed54d6ac3db528f81fb8f382e7c42"; md5.doc = "2750caa49fa407dad6ecaa2c94d74b2b"; md5.source = "00d193efb5584c8374763d100cd12504"; hasRunfiles = true; @@ -7634,7 +7634,7 @@ tl: { # no indentation }; "datetime" = { stripPrefix = 0; - md5.run = "84e448a9cd082478b9a9e4e5437509a6"; + md5.run = "6766a4640e8a9073ab144bf70667f99b"; md5.doc = "9ce7f1a4ced5c2c30d8accbed2936467"; md5.source = "3798163053f509a16bbefb1d8e499b4f"; hasRunfiles = true; @@ -7642,7 +7642,7 @@ tl: { # no indentation }; "datetime2" = { stripPrefix = 0; - md5.run = "36e1ece35ad37434dc62c0ed5f0ffaa6"; + md5.run = "29d7933554adf5d894c28b0c62e90454"; md5.doc = "f40dc9954d1d66d8fc036e47b1ef600b"; md5.source = "98e5017914ddcc0122149d306666b30c"; hasRunfiles = true; @@ -7650,7 +7650,7 @@ tl: { # no indentation }; "datetime2-bahasai" = { stripPrefix = 0; - md5.run = "257f751b139ac02457b039feb0f0e2d7"; + md5.run = "a0488f07d18ad216804dfd3b7ced1e4d"; md5.doc = "8da7e6f8eafc268c8bc41248cebe2a98"; md5.source = "90747787d5fe06c737c267dbceedc657"; hasRunfiles = true; @@ -7658,7 +7658,7 @@ tl: { # no indentation }; "datetime2-basque" = { stripPrefix = 0; - md5.run = "4db4af9be0e043416e394ac4a8a49888"; + md5.run = "34d956e3f7b30036e99e919ebadfd9bf"; md5.doc = "7a4e09cfc8d53271240e537e9fe9a182"; md5.source = "c47b1da26b353a944fda1ce4ac53c842"; hasRunfiles = true; @@ -7666,7 +7666,7 @@ tl: { # no indentation }; "datetime2-breton" = { stripPrefix = 0; - md5.run = "3867fc2c98872eab5ee98454da6563dc"; + md5.run = "c38698a18fc381fff962b1da1d6420e2"; md5.doc = "85127ce22887036c7e80fec81204e5bd"; md5.source = "6e298b9f5b76239fa4aaec17205f5ced"; hasRunfiles = true; @@ -7674,7 +7674,7 @@ tl: { # no indentation }; "datetime2-bulgarian" = { stripPrefix = 0; - md5.run = "6fb4151ffaebb1cd855d25d18f6ad777"; + md5.run = "b1b83f571392c8c36ae0f1b3e29b3a36"; md5.doc = "efd1d0b101e421139e7898a198c4efe4"; md5.source = "d4556b7e99d5ab20fed8b69a2db3266f"; hasRunfiles = true; @@ -7682,7 +7682,7 @@ tl: { # no indentation }; "datetime2-catalan" = { stripPrefix = 0; - md5.run = "16d62c3f31fd0566b23e7f80f7c7b5d8"; + md5.run = "9c89fcb60969b91de4a9582c1de07295"; md5.doc = "eeee64a21d425ead25b4bde09b0bbcc9"; md5.source = "eec8d7955e3b69555889a78005dd6e24"; hasRunfiles = true; @@ -7690,7 +7690,7 @@ tl: { # no indentation }; "datetime2-croatian" = { stripPrefix = 0; - md5.run = "e211f32fc0eb46d07f01dadf3faaf67c"; + md5.run = "445d69b99272fcd1f10eebc52e374fae"; md5.doc = "b0b249df1fe6324af3d66861291fee57"; md5.source = "1c6d67683ffc321d625231311a493091"; hasRunfiles = true; @@ -7698,7 +7698,7 @@ tl: { # no indentation }; "datetime2-czech" = { stripPrefix = 0; - md5.run = "8795810a51025d3723a68311c1d9cc2c"; + md5.run = "d6761d4e0acce1709539ea0b1786a99b"; md5.doc = "61bcdc2bcfeaf8ff3e6ef276cfdaa00c"; md5.source = "eb18139c68d1f4d5d14843ef2e72174b"; hasRunfiles = true; @@ -7706,7 +7706,7 @@ tl: { # no indentation }; "datetime2-danish" = { stripPrefix = 0; - md5.run = "e97fd6a679f9411465406f179ed7a74c"; + md5.run = "8047f129d0dd138ea687e71fc1c33a5c"; md5.doc = "102e7193ef7b692eedf2822c3ccee54c"; md5.source = "fc3b56e21ac4c2178e4aedd2c9ddbafb"; hasRunfiles = true; @@ -7714,7 +7714,7 @@ tl: { # no indentation }; "datetime2-dutch" = { stripPrefix = 0; - md5.run = "2867a84aabadc8adbbd2c457ec17f6d5"; + md5.run = "30d80e880ff3ff222c50791f994be2e2"; md5.doc = "bc4d16dea75d55b228fcc7e910c5c8a6"; md5.source = "ca123ed42cc7a2db75210277220e6fe3"; hasRunfiles = true; @@ -7722,7 +7722,7 @@ tl: { # no indentation }; "datetime2-en-fulltext" = { stripPrefix = 0; - md5.run = "e19b608c3a9827402f9e1236bb6ec813"; + md5.run = "9510f74526e4f526fd6c83a17aca4749"; md5.doc = "6b0d22d887cb74a1fc9625756a30a6aa"; md5.source = "4fbee01cd58fc4c1e34ec01a0ae03aea"; hasRunfiles = true; @@ -7730,7 +7730,7 @@ tl: { # no indentation }; "datetime2-english" = { stripPrefix = 0; - md5.run = "227abb02541936dbf8b062694eda62e8"; + md5.run = "f872dccceb597f39b4df2adcfe32f7cb"; md5.doc = "744dd414e79b933501d3b76d1ad0922f"; md5.source = "217c6f7bbefc7f333cec04dfcf341ff3"; hasRunfiles = true; @@ -7738,7 +7738,7 @@ tl: { # no indentation }; "datetime2-esperanto" = { stripPrefix = 0; - md5.run = "08202d05fcf0576c882a2f308ab1eba9"; + md5.run = "d0ca1f94f5147abf96e7a55410d4a35e"; md5.doc = "c10263b9dfce1d74290a3eef58ecd9a9"; md5.source = "56c8bbeb0a3200b65f5cc41c22d091cc"; hasRunfiles = true; @@ -7746,7 +7746,7 @@ tl: { # no indentation }; "datetime2-estonian" = { stripPrefix = 0; - md5.run = "96d00241642ddc84fd62b8075dd5007e"; + md5.run = "aefd8dc24723a1665303fbc273bae6b4"; md5.doc = "420d73c206cf5c8cd06967be611d076e"; md5.source = "7af530f865fffb7cf10f236451fd4acc"; hasRunfiles = true; @@ -7754,7 +7754,7 @@ tl: { # no indentation }; "datetime2-finnish" = { stripPrefix = 0; - md5.run = "9656f3c3d4d8d247a50d423c0d20f0dd"; + md5.run = "5fcf4073a6bcc4689a6b3c80180adfd0"; md5.doc = "d0dd58330edc5bb0cea81c319837f0da"; md5.source = "6bf5f04c38ec55a9a8dad63f800146a9"; hasRunfiles = true; @@ -7762,7 +7762,7 @@ tl: { # no indentation }; "datetime2-french" = { stripPrefix = 0; - md5.run = "c49e9fa11f3ed2904aaabea0eb6f23b4"; + md5.run = "8e793a82d66b2bed7cc192cb95d16a10"; md5.doc = "fae0bba9aaf92e1edd96dbc9e41af934"; md5.source = "0dcfa25c8ceebbcb6de5a3e91235b86d"; hasRunfiles = true; @@ -7770,7 +7770,7 @@ tl: { # no indentation }; "datetime2-galician" = { stripPrefix = 0; - md5.run = "ec972f14b9f074844f24b4a535bab897"; + md5.run = "14521d34bd14872a5466d04b458f5b5b"; md5.doc = "1577575c48db65077764596e69e9297e"; md5.source = "d56969199549044324cb9b94ada8e930"; hasRunfiles = true; @@ -7778,7 +7778,7 @@ tl: { # no indentation }; "datetime2-german" = { stripPrefix = 0; - md5.run = "4f471467feac7b4ab71496b4d7bca1c7"; + md5.run = "d8e7f111c4cc1d21953ff1664c62256c"; md5.doc = "f0793639bcd8f5df9f509b39416274eb"; md5.source = "b1004590381a02eccd50aa796476bea2"; hasRunfiles = true; @@ -7786,7 +7786,7 @@ tl: { # no indentation }; "datetime2-greek" = { stripPrefix = 0; - md5.run = "2ce187ebc446b034424337fb0a6cde21"; + md5.run = "b3a776809a4b9be1af05312d4778fcf7"; md5.doc = "9058baa971071009c656a330555e657c"; md5.source = "edd8f5fe55f498cc7e8aae84659ec835"; hasRunfiles = true; @@ -7794,7 +7794,7 @@ tl: { # no indentation }; "datetime2-hebrew" = { stripPrefix = 0; - md5.run = "81d9d49cae4dc0c7f3ff683cb11e404a"; + md5.run = "06008b4c2223de28182a1546758bd46d"; md5.doc = "d2bd420b2ea6684bb38e8c5fd9d75e8c"; md5.source = "72bf7777d5c36ae064a7017726959b3d"; hasRunfiles = true; @@ -7802,7 +7802,7 @@ tl: { # no indentation }; "datetime2-icelandic" = { stripPrefix = 0; - md5.run = "16aa7f1261e8a394678bcf42f463ad88"; + md5.run = "a2f8d1f5ee6eb2aa2ca97eb892abcaa1"; md5.doc = "62991be7626af0dd728f91bbed2522e0"; md5.source = "af56bbcdee738cfc9392e6eefaf34eba"; hasRunfiles = true; @@ -7810,7 +7810,7 @@ tl: { # no indentation }; "datetime2-irish" = { stripPrefix = 0; - md5.run = "ea8edc6154eec9112bef7bdb4ab8dfd4"; + md5.run = "76cfa9f874067d11734bd703bfdabfd1"; md5.doc = "f87e89c8d2b474dda2a03382a0a42ec3"; md5.source = "2b760dd2bca62db804a6e6ea141a315c"; hasRunfiles = true; @@ -7818,7 +7818,7 @@ tl: { # no indentation }; "datetime2-italian" = { stripPrefix = 0; - md5.run = "c313b8f0ff00da541c0a329f8d5ea089"; + md5.run = "0af741df1527cdb149e75b3f9d59db55"; md5.doc = "10083f184c833697bb7fe43cce54bff7"; md5.source = "475796664e893e69a9217e0f6873cd1a"; hasRunfiles = true; @@ -7826,7 +7826,7 @@ tl: { # no indentation }; "datetime2-latin" = { stripPrefix = 0; - md5.run = "08ba275d4c4e73ae9fb8221eea28bc6b"; + md5.run = "e043d5602e12a44ef81718269ea4d28f"; md5.doc = "8ab69ddf2b28951f03c255fb3c720481"; md5.source = "35fe98ee9e714fce15b08e70f26b00f1"; hasRunfiles = true; @@ -7834,7 +7834,7 @@ tl: { # no indentation }; "datetime2-lsorbian" = { stripPrefix = 0; - md5.run = "17c30948aa08f74adc87293c909753bc"; + md5.run = "aed26ee73adda580fb18aa51d5cac572"; md5.doc = "3e90d750a3d8cca52da5df1d01ac71fe"; md5.source = "b850b931c2d69080698ad69a3e9772c9"; hasRunfiles = true; @@ -7842,7 +7842,7 @@ tl: { # no indentation }; "datetime2-magyar" = { stripPrefix = 0; - md5.run = "85140983455aee567e21877f75a4fcd6"; + md5.run = "02fe91e7bf1cd436423a15483c52f6a3"; md5.doc = "4a07ac8fd935680d6496fce3f1fda6ce"; md5.source = "69674bb90bb8a0fa466f6085f96516ea"; hasRunfiles = true; @@ -7850,7 +7850,7 @@ tl: { # no indentation }; "datetime2-norsk" = { stripPrefix = 0; - md5.run = "b7d2dd8c51de46820a6b90fa13370044"; + md5.run = "45dd292072de43838bba1a041c9b1bb7"; md5.doc = "997c1957746f0ac8ab8ca9c4ea385a25"; md5.source = "7f3bc1336a331f78ffece22c81b18718"; hasRunfiles = true; @@ -7858,7 +7858,7 @@ tl: { # no indentation }; "datetime2-polish" = { stripPrefix = 0; - md5.run = "8fc79f43048a6aa5450c7cfba8e810d2"; + md5.run = "cea3ca4b3966ab9bbf68871c057db925"; md5.doc = "e7bb076394e5645e1b4533a46116471f"; md5.source = "2b278ced5cd3d07d878b4d9be96c05ce"; hasRunfiles = true; @@ -7866,7 +7866,7 @@ tl: { # no indentation }; "datetime2-portuges" = { stripPrefix = 0; - md5.run = "9dba6b7f34573f87dafbb6927b7688a9"; + md5.run = "af2154e4001c7bd29fd6f9b61f5932f8"; md5.doc = "b50549724f061388e71b6b686f4bef48"; md5.source = "d959db4752a718e412b7a760ac47ad0c"; hasRunfiles = true; @@ -7874,7 +7874,7 @@ tl: { # no indentation }; "datetime2-romanian" = { stripPrefix = 0; - md5.run = "91b5c3ce77f9cb8e8fd4980582b9ac60"; + md5.run = "687d02681989ed9819eb423f511e3592"; md5.doc = "d19ba3e9abdb119058f2d729572bfa2c"; md5.source = "b1460bce7e26acb12d3d79b037c2ba0f"; hasRunfiles = true; @@ -7882,7 +7882,7 @@ tl: { # no indentation }; "datetime2-russian" = { stripPrefix = 0; - md5.run = "90931ea785a066cfbb84bd3f38cf952d"; + md5.run = "1b58f716c6b8f29ea352a001744b3d71"; md5.doc = "3757f3c7152a78140095bcbff8e89306"; md5.source = "21c76d396788b371f8e8c4bf0cf5bc75"; hasRunfiles = true; @@ -7890,7 +7890,7 @@ tl: { # no indentation }; "datetime2-samin" = { stripPrefix = 0; - md5.run = "148aa9bfa728905d39743c1e30ea9c3d"; + md5.run = "93429218a039092baa5027fa3620603a"; md5.doc = "c24ddf0a4b46f6bd3e0547182563d8b8"; md5.source = "5a62eacb997db4b7a8cd45acbe5ab9d8"; hasRunfiles = true; @@ -7898,7 +7898,7 @@ tl: { # no indentation }; "datetime2-scottish" = { stripPrefix = 0; - md5.run = "798fe4713c3c7c709df382168b87f2ef"; + md5.run = "544d0ed5fef64333a6989c0288d523a2"; md5.doc = "c53db3c830d9592922971a35dafb7d27"; md5.source = "fee4141a36de5061f4bc9e9c19748bb9"; hasRunfiles = true; @@ -7906,7 +7906,7 @@ tl: { # no indentation }; "datetime2-serbian" = { stripPrefix = 0; - md5.run = "20a1b54b044c154fd1959fa2ebfd6183"; + md5.run = "4b8bc63671d20d7c7d73fc9284ff1d61"; md5.doc = "82371ec2c8b69943943654bdef3ef3ec"; md5.source = "ef5aacfc097cd301a3087fdf8c151a1a"; hasRunfiles = true; @@ -7914,7 +7914,7 @@ tl: { # no indentation }; "datetime2-slovak" = { stripPrefix = 0; - md5.run = "5e85cfba9ac867c7c5c44717ce926e4f"; + md5.run = "2fe8fd41d24c33c8068fcd770b56373a"; md5.doc = "4e2d244fe19207af94bd797a4913a773"; md5.source = "5e0486523dec055c9c0d26d7d7a83727"; hasRunfiles = true; @@ -7922,7 +7922,7 @@ tl: { # no indentation }; "datetime2-slovene" = { stripPrefix = 0; - md5.run = "f4020117fbdb508a6460905fc93187d2"; + md5.run = "e27df93779bf58f65503833ba43722ff"; md5.doc = "cafc8bc6c97699b1483188f319e04991"; md5.source = "922f429b34cca8294d9f8ad1268d5a7c"; hasRunfiles = true; @@ -7930,7 +7930,7 @@ tl: { # no indentation }; "datetime2-spanish" = { stripPrefix = 0; - md5.run = "aaf42c9248cdc2a45588a23cd81a3aef"; + md5.run = "a11267ece4d1abff17f36969b6e31dc5"; md5.doc = "4ded8923b47db8163203439e73f03841"; md5.source = "33e3b0efc019e11445ed09214c63ed64"; hasRunfiles = true; @@ -7938,7 +7938,7 @@ tl: { # no indentation }; "datetime2-swedish" = { stripPrefix = 0; - md5.run = "f65933bcbb982fd6ad91bb45516199fb"; + md5.run = "3f4753155eca5248c59eb37aacc6b1f0"; md5.doc = "81588f448dc5996248c539cb2dd39159"; md5.source = "5fd94442a5c6e42911c9867742a881a5"; hasRunfiles = true; @@ -7946,7 +7946,7 @@ tl: { # no indentation }; "datetime2-turkish" = { stripPrefix = 0; - md5.run = "ff600de141e47f867196efccaf1eb57c"; + md5.run = "3cee1cac528f1c71e12812cc69908c62"; md5.doc = "62de4a904e9c3f1d84320310b6ca0897"; md5.source = "d3a00e7071e554d298280868c41cec08"; hasRunfiles = true; @@ -7954,7 +7954,7 @@ tl: { # no indentation }; "datetime2-ukrainian" = { stripPrefix = 0; - md5.run = "268d82ff0d8707527a5805324f0fc74e"; + md5.run = "0be0a7ccc647ef3476eca13df54c91d8"; md5.doc = "7c88960052b9f1c103ea17e93391ce5d"; md5.source = "1dadffc4c57aed1f986dd72cff97389c"; hasRunfiles = true; @@ -7962,7 +7962,7 @@ tl: { # no indentation }; "datetime2-usorbian" = { stripPrefix = 0; - md5.run = "a3308990fe579a2aa49074dce387a0e6"; + md5.run = "f91b87816870e3ccd9a0bfc5d8060bea"; md5.doc = "608b78f84644f0b73a0315424ea1338a"; md5.source = "ed0a5374127d71667df75d55ed7bde4c"; hasRunfiles = true; @@ -7970,7 +7970,7 @@ tl: { # no indentation }; "datetime2-welsh" = { stripPrefix = 0; - md5.run = "b6a0ad6c4cab7c3debd1c55704ba05dd"; + md5.run = "3cfad562b5b47e202ed861a5d8f572fe"; md5.doc = "f63e2a3a250e696e3303f4930ee2029e"; md5.source = "0f3638c317b44508345b9b258c4254a5"; hasRunfiles = true; @@ -7978,14 +7978,14 @@ tl: { # no indentation }; "dblfloatfix" = { stripPrefix = 0; - md5.run = "863219f75e523014d3d3586702bd076c"; + md5.run = "3b0bc2536360d4272c7f884db77d7b8a"; md5.doc = "1ee37145dce01e28cbed60ecfd12b97d"; hasRunfiles = true; version = "1.0a"; }; "dccpaper" = { stripPrefix = 0; - md5.run = "7218ecbc09113664bb0de579874ca8ba"; + md5.run = "8f615c55d5bba054ac369ce9270a312e"; md5.doc = "19cfa761c32970702aa755bbafdf2a62"; md5.source = "83612e864bfbc373fad674d533f15a75"; hasRunfiles = true; @@ -7993,7 +7993,7 @@ tl: { # no indentation }; "dcpic" = { stripPrefix = 0; - md5.run = "8932d589670aee5b191e221c8f80cec3"; + md5.run = "a1c1d712b3fcae855a3d5d426ab109ff"; md5.doc = "e418f959e5906a64875e78aba4b73f9e"; hasRunfiles = true; version = "5.0.0"; @@ -8006,14 +8006,14 @@ tl: { # no indentation }; "decimal" = { stripPrefix = 0; - md5.run = "47b1cf179b5ed75502b83f60068cf633"; + md5.run = "4075af44a2b2c0e24c1fe2e0569227a2"; md5.doc = "b8c81f02815dc32a9429a48b9455fa91"; md5.source = "069d9854e3c983d3fd6d8b9d0e5694ad"; hasRunfiles = true; }; "decorule" = { stripPrefix = 0; - md5.run = "cfc15b4079b89146e5eb41ce917cc8b5"; + md5.run = "1719c311e39174c799cf8b06186a5f94"; md5.doc = "94fb7b2bf1698bcb82100bb28864d9fa"; md5.source = "d301abebda352300e0d1d50eafb3509b"; hasRunfiles = true; @@ -8030,14 +8030,14 @@ tl: { # no indentation }; "dejavu" = { stripPrefix = 0; - md5.run = "65cb78ce4699a8739e2c5be630fda1d0"; + md5.run = "49637df0057747b634943ffb6acc017d"; md5.doc = "6fd904da68ab8ced492439ece58748de"; hasRunfiles = true; version = "2.34"; }; "delim" = { stripPrefix = 0; - md5.run = "ea221428282515c72a79de0d043b4507"; + md5.run = "3dc5fa2e3633b4cb2fe13eed683df611"; md5.doc = "972a9b5575e7d0ae730e546c8f62f75e"; md5.source = "bdcacd782c8b7c737298ebbf3f830338"; hasRunfiles = true; @@ -8045,7 +8045,7 @@ tl: { # no indentation }; "delimtxt" = { stripPrefix = 0; - md5.run = "237071bf19612babf4b23f0be025d183"; + md5.run = "010348a1c9fa9cf81b16e423969c111e"; md5.doc = "39e989eb46c759b51a6dd95152cb966f"; md5.source = "1ca5dd0efc6bded03ab4ac1825864767"; hasRunfiles = true; @@ -8074,7 +8074,7 @@ tl: { # no indentation }; "diagbox" = { stripPrefix = 0; - md5.run = "134b0c848f46d236e543d976e41e8ecc"; + md5.run = "baa7dea736827776531008bbb34b0a57"; md5.doc = "812b7f79c9b5e56f808c2ab6e5816666"; md5.source = "dcae2ec52f4084182407d84265bd6108"; hasRunfiles = true; @@ -8082,34 +8082,34 @@ tl: { # no indentation }; "diagmac2" = { stripPrefix = 0; - md5.run = "e492f3d8a17e72b935963d9d49add692"; + md5.run = "4fa04f6a1fe3234840695955608bca7e"; md5.doc = "54a9e873536369caca244bb3b25d5fd9"; hasRunfiles = true; version = "2.1"; }; "diagnose" = { stripPrefix = 0; - md5.run = "eeeebf60cb2cadd730ab18d1cd92ef2f"; + md5.run = "ff1512230f0a07b1336b10fdbfc1ddf2"; md5.doc = "07771038ebeacfe7cf1befe371057c09"; hasRunfiles = true; version = "0.2"; }; "dialogl" = { stripPrefix = 0; - md5.run = "e00a2004fc8c6c8eecc41cbc81a3e2f6"; + md5.run = "a0d83aa38166216d2572b294f5f518d6"; md5.doc = "0023ccfb51da644a43594cbca86a3abd"; md5.source = "4352f9a75cb12974d1818b423f6b7cc0"; hasRunfiles = true; }; "dice" = { stripPrefix = 0; - md5.run = "c119b5db87c5a443492e86b8ab656ef5"; + md5.run = "7c0ff84b5432b448cdc15b50721c12e2"; md5.doc = "b0691a52335b3409da63e5790c48496b"; hasRunfiles = true; }; "dichokey" = { stripPrefix = 0; - md5.run = "401390f673819fca11d59da5febe0757"; + md5.run = "02b8dc987694fd9ccd8a99e35ec093d5"; md5.doc = "704ac327c8964e5ad49e3baf9277e3e4"; hasRunfiles = true; }; @@ -8120,26 +8120,26 @@ tl: { # no indentation }; "dictsym" = { stripPrefix = 0; - md5.run = "9600c20f5a1f19b1bd163be5b0b3584e"; + md5.run = "b0ec59292baba397d13f45409486be49"; md5.doc = "1cce8aec5c2ae56ff5ff413dd92e9eaf"; hasRunfiles = true; }; "digiconfigs" = { stripPrefix = 0; - md5.run = "a44b6ae9ba288805dfc2fb063a81fd05"; + md5.run = "4ab351d5a921aed624a3abd06a96c345"; md5.doc = "c282abcaa5d3a96d3cfb9f096c18b5a2"; hasRunfiles = true; version = "0.5"; }; "din1505" = { stripPrefix = 0; - md5.run = "fee81637bb1f3d0e1f576e5b7e1d03ba"; + md5.run = "e22f795b9d99a7ac95e6d0cfb8b5c7b1"; md5.doc = "3feebb6fa291754f7a4bb180ae155296"; hasRunfiles = true; }; "dinat" = { stripPrefix = 0; - md5.run = "1a21bdce97bc98be82c4860076018dce"; + md5.run = "cb62065b8d2f7f0e4fc25311d78efa2a"; md5.doc = "8c6371e7bbc6329202ed159345f6aa68"; hasRunfiles = true; version = "2.5"; @@ -8153,7 +8153,7 @@ tl: { # no indentation }; "dingbat" = { stripPrefix = 0; - md5.run = "d676fe2a19280f31766ee8fe0a3ebc35"; + md5.run = "cee314dab68ad63171029be69e7d57d1"; md5.doc = "126f61cd1c49c9850cdf18a7d5fbb8a3"; md5.source = "39c728ecc75cdfb78cd769b7cb8effba"; hasRunfiles = true; @@ -8161,14 +8161,14 @@ tl: { # no indentation }; "directory" = { stripPrefix = 0; - md5.run = "4df49ffc1858791d3811288ab43faec9"; + md5.run = "d8ca29b56be0c96fae0e33e628ef88c1"; md5.doc = "216685050a42b8e928f69bc42a4d1af3"; hasRunfiles = true; version = "1.20"; }; "dirtree" = { stripPrefix = 0; - md5.run = "c4fff49fa561e8397929fcb4f6b51b95"; + md5.run = "6b690470625a4f32da91285a79d82ea1"; md5.doc = "d2e0a267bdb2e083e3f0e468e95ef69c"; md5.source = "aa18d442bb5cbb383b86c88af1854111"; hasRunfiles = true; @@ -8176,7 +8176,7 @@ tl: { # no indentation }; "dirtytalk" = { stripPrefix = 0; - md5.run = "7951a025ed9e4925834e1373af4fb5c5"; + md5.run = "c95e1bd980f77b194f7a71a802af215c"; md5.doc = "51bb43d3214196ed0d8db9695fdb045b"; md5.source = "cb4632226897754b28a1076de99e397e"; hasRunfiles = true; @@ -8192,13 +8192,13 @@ tl: { # no indentation }; "dithesis" = { stripPrefix = 0; - md5.run = "b06207dcabf557a893acd801e0a49d83"; + md5.run = "61759206c4e5ffa3f5c6f1f71ba1820e"; md5.doc = "25d8b507670b537139e0587ea05fb9d8"; hasRunfiles = true; }; "dk-bib" = { stripPrefix = 0; - md5.run = "2446472c522e66ec5a4d4b00c78adf1a"; + md5.run = "f9b29d8177edb0a515fb3caee17eae13"; md5.doc = "76d1c6f5ca29395f55cb7af66053f82f"; md5.source = "3075ce0aa6b153fca8325056ea893d8f"; hasRunfiles = true; @@ -8206,13 +8206,13 @@ tl: { # no indentation }; "dlfltxb" = { stripPrefix = 0; - md5.run = "31b4570a90cd591d3ecd32e04d1eceb2"; + md5.run = "ad8e0bffce2c6310ec68a790b728310f"; md5.doc = "a8011e05a96e2b1c1a692a2e0050a9d8"; hasRunfiles = true; }; "dnaseq" = { stripPrefix = 0; - md5.run = "9e0e69371c2b5190864dbdadbd738d6c"; + md5.run = "9afb75b030086d0b56c2e4275f42afd9"; md5.doc = "349e2775443c5b1b26373a9c81ddb3cc"; md5.source = "7fe9d8a69e41465c9c096fedfafc62a7"; hasRunfiles = true; @@ -8220,7 +8220,7 @@ tl: { # no indentation }; "dnp" = { stripPrefix = 0; - md5.run = "49d94aad9503f60e75e37e241ee5c26d"; + md5.run = "3f1e33b5e99f47e909ee67a3dd26ae65"; hasRunfiles = true; }; "doc-pictex" = { @@ -8230,13 +8230,13 @@ tl: { # no indentation }; "docbytex" = { stripPrefix = 0; - md5.run = "51f7ea7f57953e7dea91c836070b3a30"; + md5.run = "d71144ceefff3cad93e1835283d0a59f"; md5.doc = "b02769206383c21dcb3795609693a9cf"; hasRunfiles = true; }; "doclicense" = { stripPrefix = 0; - md5.run = "49306982876c14e894c2888f2d10295f"; + md5.run = "b2a4f801bab304df18a8ed2b6e90d9bc"; md5.doc = "b2129152566ff530b2a1b37e63f3b8d9"; md5.source = "dfd2e17a97f8d22febbea65f775b8171"; hasRunfiles = true; @@ -8244,7 +8244,7 @@ tl: { # no indentation }; "docmfp" = { stripPrefix = 0; - md5.run = "c51cae42216d03b3a7f86a7f2d6ce25e"; + md5.run = "0b73632ec533c03f10e3b74351a9fbb4"; md5.doc = "bdc85bab1f1ea5d3306600bc92319203"; md5.source = "e4f7c17613350e5a2f42d63c458be21e"; hasRunfiles = true; @@ -8252,7 +8252,7 @@ tl: { # no indentation }; "docmute" = { stripPrefix = 0; - md5.run = "e9c138c43e94c9643a23c01315c1851e"; + md5.run = "0a8bdf41f9593ae554226a512b4da822"; md5.doc = "8511de2431b46e19bb38aa4b8568a57c"; md5.source = "7642dc34ab6880b0a320960e48579059"; hasRunfiles = true; @@ -8260,7 +8260,7 @@ tl: { # no indentation }; "doctools" = { stripPrefix = 0; - md5.run = "3a69d45ed9e9875d7e7faa5545c47cca"; + md5.run = "2a7f40cbd26d7d3049f03f838f8b716c"; md5.doc = "f808abc374bd495d5e16fa387d7754bb"; md5.source = "b56f93f796ad432c80c9ce5d2a56baa3"; hasRunfiles = true; @@ -8268,7 +8268,7 @@ tl: { # no indentation }; "documentation" = { stripPrefix = 0; - md5.run = "a8d08b46b4e9a462d3bc46de7cb21794"; + md5.run = "af28e794132f08e28f71fb51e31dca0e"; md5.doc = "ac67ffba8723fe7a7b77e405ce64709a"; md5.source = "dbde74d194d50b7407a5648aef32e4df"; hasRunfiles = true; @@ -8276,13 +8276,13 @@ tl: { # no indentation }; "doi" = { stripPrefix = 0; - md5.run = "df04ae86df0ee2fe3329cca7e2f3f0b8"; + md5.run = "d15967adb9d4439cfb2be741196c9eb2"; md5.doc = "8e908cf1c556e3c590fab014055d0840"; hasRunfiles = true; }; "doipubmed" = { stripPrefix = 0; - md5.run = "5e3e50db96e7154d8696a9ae46574934"; + md5.run = "f5408b2e9c2896457917e25ef12524b4"; md5.doc = "367e70bf1c4f83e9f696844e929278b0"; md5.source = "42828faa7fdf025a4e1d469bb8a1f5fe"; hasRunfiles = true; @@ -8297,14 +8297,14 @@ tl: { # no indentation }; "dot2texi" = { stripPrefix = 0; - md5.run = "8b3439aec02967cd8f48cb1a4b04ce98"; + md5.run = "f275c3582d8fbfdc82b6d2e67e70b015"; md5.doc = "f1cd1d0c435fed345333774c5443f696"; hasRunfiles = true; version = "3.0"; }; "dotarrow" = { stripPrefix = 0; - md5.run = "eac09ba296227d16e37d0c11b40c5de1"; + md5.run = "28732322502a544244d32385d933a370"; md5.doc = "ec1d5fd3ab2241f8de371ba20ae9537a"; md5.source = "a36b549f3ac81e6fc2e238fe60fc5632"; hasRunfiles = true; @@ -8312,7 +8312,7 @@ tl: { # no indentation }; "dotseqn" = { stripPrefix = 0; - md5.run = "34e9a0ca3ef4d76ad25abfd92f844c81"; + md5.run = "48a1d2fba759e62a87066326720212f4"; md5.doc = "26d28d162dc0de88834267f7981e887d"; md5.source = "dacad00a9b90fd65bf2fa73f789c265e"; hasRunfiles = true; @@ -8320,7 +8320,7 @@ tl: { # no indentation }; "dottex" = { stripPrefix = 0; - md5.run = "9298edbca4780d71b7badd042915da75"; + md5.run = "dd629c3de0ae16ee2e7dc9e8b5a8f26d"; md5.doc = "70ab699d1eb84205ddb23474fc8ddb4f"; md5.source = "0f05f7199751be77ce405fb47de76219"; hasRunfiles = true; @@ -8328,14 +8328,14 @@ tl: { # no indentation }; "doublestroke" = { stripPrefix = 0; - md5.run = "38728b27533392fcab8821294c6a5f5a"; + md5.run = "3433a501e119e8c113d8a25228edb429"; md5.doc = "5e95d5c6185203640245fd7259453120"; hasRunfiles = true; version = "1.111"; }; "dowith" = { stripPrefix = 0; - md5.run = "4b416b5b6e581ab0f4f7dba3bdc0f097"; + md5.run = "36f0c453dd63a9ea64df57137e8c2dba"; md5.doc = "0cd4fd9c1ca04afa9eb5e7cb72ec0c23"; md5.source = "d5caf9e068ee641a65666c71421d6276"; hasRunfiles = true; @@ -8343,7 +8343,7 @@ tl: { # no indentation }; "download" = { stripPrefix = 0; - md5.run = "aac1886314942470dc09ee53b555d7d4"; + md5.run = "e763b34e9ecb2a40ae8044d8de31a383"; md5.doc = "9973504b33e800209738d34619918eb6"; md5.source = "4c48b55a78a6c23bbdc6a11b7f9eb487"; hasRunfiles = true; @@ -8351,7 +8351,7 @@ tl: { # no indentation }; "dox" = { stripPrefix = 0; - md5.run = "4e8a552b52f0dffbe99524e05340d887"; + md5.run = "9e24a102cfc41fdad4690e63f459e89c"; md5.doc = "9a105547071c6c9342510018d393cd72"; md5.source = "f1f97e9b76daba269109b3d0e6f45826"; hasRunfiles = true; @@ -8359,7 +8359,7 @@ tl: { # no indentation }; "dozenal" = { stripPrefix = 0; - md5.run = "c144e81fdab51918424ca5a6ad7cbb6e"; + md5.run = "d1e36389341e3b94263221ef5034a12b"; md5.doc = "5082532cac35509f88b9b5ff4f72c5dd"; md5.source = "fc3e779230a705adc0d725d9ee2c9f22"; hasRunfiles = true; @@ -8367,13 +8367,13 @@ tl: { # no indentation }; "dpfloat" = { stripPrefix = 0; - md5.run = "4018ac829ac7fc909f0c911e9a49ae4e"; + md5.run = "94e82b60f89d2f6ae5eda5a2ab70ecdc"; md5.doc = "ff56c707e0f8376ae55df663a88a71ef"; hasRunfiles = true; }; "dprogress" = { stripPrefix = 0; - md5.run = "0fe8e360bfa79d554b03594b2c3f99dc"; + md5.run = "f2b65d5b1d4b2def5aa85b317460bcd8"; md5.doc = "5b7f87657f500f0ee9a907ca318d6ec1"; md5.source = "e02a4a6f1c0a001deb595195a37d4d92"; hasRunfiles = true; @@ -8381,7 +8381,7 @@ tl: { # no indentation }; "drac" = { stripPrefix = 0; - md5.run = "ca4beccf728da814008c94bea8026ba6"; + md5.run = "758d03ab250fe6690707c3d3177c8db8"; md5.doc = "429c5af202467b3a190e89ff6ac9d05a"; md5.source = "bb5304b909466f0d2e8ac1799caa30a1"; hasRunfiles = true; @@ -8389,7 +8389,7 @@ tl: { # no indentation }; "draftcopy" = { stripPrefix = 0; - md5.run = "d19e1c2714494e9a8637f9d1dc2df2c7"; + md5.run = "8ef280a83ed9d633e6e46ed2ee9c2b37"; md5.doc = "e275ff10bd4b470335e30d7fda64d701"; md5.source = "916006760c4f8485503731fa25ec099c"; hasRunfiles = true; @@ -8397,7 +8397,7 @@ tl: { # no indentation }; "draftwatermark" = { stripPrefix = 0; - md5.run = "c88265df86587321c46b9902465865ba"; + md5.run = "df9db1113a9a2b8678315effb399d5d3"; md5.doc = "6a16882d3783b95563d3e66476ae69bb"; md5.source = "d9109f0bf4782ecd4ffe4415d3c0aacd"; hasRunfiles = true; @@ -8405,7 +8405,7 @@ tl: { # no indentation }; "dramatist" = { stripPrefix = 0; - md5.run = "5ed7a6bb162055964519ab370bd86db0"; + md5.run = "e42876c96442542a49e44fec7573b1a3"; md5.doc = "e2cc7dfcccde6c08adab1bd8de9170d9"; md5.source = "68ff7a11d96a3c5e30e5b2842810d92b"; hasRunfiles = true; @@ -8413,19 +8413,19 @@ tl: { # no indentation }; "dratex" = { stripPrefix = 0; - md5.run = "26375378d1af9b3d9b2bdb40002509b3"; + md5.run = "1660b42e6db1d932456d564fbc72182d"; md5.doc = "0c548c186f5e9ebeb8a4d1b370a7bc82"; hasRunfiles = true; }; "drawstack" = { stripPrefix = 0; - md5.run = "df544485d7c2021a61b0c569c05acd8b"; + md5.run = "5ddd68dcbe1f6c5fa41591b306d0e5f2"; md5.doc = "8a69ec3c1b3c8b7ee0e9cfe186c24d71"; hasRunfiles = true; }; "drm" = { stripPrefix = 0; - md5.run = "cd2d4f0f20e8d4919f975ccc862e730b"; + md5.run = "24aed0779088927c8e70918104abcf72"; md5.doc = "a00e0aa1e454a78401d59263cce7a774"; md5.source = "32ed2ec2f984c3d8263fadd75642634e"; hasRunfiles = true; @@ -8433,7 +8433,7 @@ tl: { # no indentation }; "droid" = { stripPrefix = 0; - md5.run = "0a30010c0c14b1a6368e0aa6d021a052"; + md5.run = "f1b8218ffdfb6d435490d5100ea5e401"; md5.doc = "694ff6a603b0873120b5880ecbc00e83"; md5.source = "6081c5cf38ccf3b71f02226256507d63"; hasRunfiles = true; @@ -8448,7 +8448,7 @@ tl: { # no indentation }; "drs" = { stripPrefix = 0; - md5.run = "f3c4adbb6020bbc57b7fc9dccd835d8d"; + md5.run = "8e5f7f30f80c4cd7cd5d32550b741358"; md5.doc = "1b62c0f6e87702b9c4ba68f8ca3e6558"; hasRunfiles = true; version = "1.1b"; @@ -8462,14 +8462,14 @@ tl: { # no indentation }; "dsptricks" = { stripPrefix = 0; - md5.run = "558d4ec85c9de2d4c18f0ca94b449274"; + md5.run = "89da0f154e16ad15e9617b54150c6b5b"; md5.doc = "241f9632630f54d71e5811362ea8008d"; hasRunfiles = true; version = "1.0"; }; "dtk" = { stripPrefix = 0; - md5.run = "22fc5eed7cb8d6153bef49fd001710d0"; + md5.run = "0a5aff36071128861aa03ac2b5b2038f"; md5.doc = "4858ec2523e43aa6f24b25b089083213"; hasRunfiles = true; version = "1.32"; @@ -8499,41 +8499,41 @@ tl: { # no indentation }; "duerer" = { stripPrefix = 0; - md5.run = "bd77306bcf0484b19795df3e2224a033"; + md5.run = "b6632f77c311846c65f95ce11002f13f"; md5.doc = "ad6dad5c0c8290c2809c8d3fb607d1f0"; hasRunfiles = true; }; "duerer-latex" = { stripPrefix = 0; - md5.run = "0917a2339c565b87cd68cc4727b97e0e"; + md5.run = "96307961fc18ccf63cc2018befdeffb6"; md5.doc = "faf90b81d51b513075ae93a1fad9dae4"; hasRunfiles = true; version = "1.1"; }; "duotenzor" = { stripPrefix = 0; - md5.run = "2b9ccbf3230fef2069d706719b1e17c4"; + md5.run = "9c4ed36039648da06c0ab7b329dc2677"; md5.doc = "ac0b4a7eb15b886bf578429988f40e3f"; hasRunfiles = true; version = "1.00"; }; "dutchcal" = { stripPrefix = 0; - md5.run = "72a585d874318c84a5f656408b8c73f9"; + md5.run = "f54848fa94282ac2d26eab7124f28bf9"; md5.doc = "42a0dff59b285e70ca38e846eb480334"; hasRunfiles = true; version = "1.0"; }; "dvdcoll" = { stripPrefix = 0; - md5.run = "f599b1cac710b8eec52f027939fd5b32"; + md5.run = "156601f28a169d7db100afb86bf257d3"; md5.doc = "33a358c3d9ed0a0703c072faa639392c"; hasRunfiles = true; version = "v1.1a"; }; "dvgloss" = { stripPrefix = 0; - md5.run = "3069fcc40a7caa331dd8c917303a547b"; + md5.run = "ec4520a872198224ad9b235f0191caa8"; md5.doc = "d2a4a87d0e138a830c99cec656c0455c"; md5.source = "dcef68e1c8145af2661042f34db59b24"; hasRunfiles = true; @@ -8611,14 +8611,14 @@ tl: { # no indentation }; "dynblocks" = { stripPrefix = 0; - md5.run = "75094f137a037392df5e5c862dbebbd8"; + md5.run = "0c2c63dc24c20a3c904b6dbd9ffaeefc"; md5.doc = "0863d992186b38d9939b9afa67ba4f1b"; hasRunfiles = true; version = "0.2b"; }; "dyntree" = { stripPrefix = 0; - md5.run = "c9e188431ad3c81fef1f5f6e242c36cf"; + md5.run = "6c59fe7316b913f44ae333699d70f910"; md5.doc = "119ec54eeaef4f766f2911a8da5eec52"; md5.source = "d220145daf7e5912c770b64301597a0b"; hasRunfiles = true; @@ -8626,32 +8626,32 @@ tl: { # no indentation }; "ean" = { stripPrefix = 0; - md5.run = "28836f66b2463a6b8daf8f0a8da51903"; + md5.run = "810f1a51228465f13a9a8b7614388332"; md5.doc = "78df0522b1a4a9a97368e3dbd03b0c4d"; hasRunfiles = true; }; "ean13isbn" = { stripPrefix = 0; - md5.run = "91f8fc761df01be828f1f77613e30b8d"; + md5.run = "562691246f76bd93cf73cfeb137dd3e1"; md5.doc = "d41ab21d3a8644fdcf8fd3aba36de322"; hasRunfiles = true; }; "easy" = { stripPrefix = 0; - md5.run = "dabee6c9107fc2dbc200bce92732f3ce"; + md5.run = "164e76a596f031f15b045b2be26581c2"; md5.doc = "96dde315265e90f957dd5612ccff44fb"; hasRunfiles = true; version = "0.99"; }; "easy-todo" = { stripPrefix = 0; - md5.run = "606ba04cde76fdb286a75191cc039f71"; + md5.run = "1ff3e14a68341788a5b0a12084451639"; md5.doc = "0431d1cbb888c720153a6eb8a88360a3"; hasRunfiles = true; }; "easyfig" = { stripPrefix = 0; - md5.run = "bac8389b3718301b387762daccccc241"; + md5.run = "124311fe6fb148483189f5907dbaa3d4"; md5.doc = "3fdf1c859a282560ae51719089847e9e"; md5.source = "9250cce63a3c9727367323b1e2ba199a"; hasRunfiles = true; @@ -8659,14 +8659,14 @@ tl: { # no indentation }; "easylist" = { stripPrefix = 0; - md5.run = "05eae84fdcecdd4e9ab3714a2bc8d416"; + md5.run = "f8b170a18a3298aa9a418af20578f41f"; md5.doc = "e252a37c0b3d641b8e2b016f1ab315a2"; hasRunfiles = true; version = "1.3"; }; "ebezier" = { stripPrefix = 0; - md5.run = "63b90a0ee3fa10d7617530f4bc2591f2"; + md5.run = "f66b9db6077a2d6fa9006e5d8e422dcb"; md5.doc = "021562877760e536dac2c997a403a807"; md5.source = "c5571a11bb4ad5a689b4359f40e459e1"; hasRunfiles = true; @@ -8674,26 +8674,26 @@ tl: { # no indentation }; "ebgaramond" = { stripPrefix = 0; - md5.run = "4044b85c8e93f58f113520b1d663db8b"; + md5.run = "00c9ea770238accaa01a31473c3435f7"; md5.doc = "2a249aa1d32e10836cf3ceb3691c2ced"; hasRunfiles = true; version = "0.16"; }; "ebgaramond-maths" = { stripPrefix = 0; - md5.run = "7b9bde9f96cd01cc030836bfe97251bb"; + md5.run = "f459c7ae9b9080ec3813ec2764cea0d4"; md5.doc = "7e7ef5fc1e4eb61df794773504e4c067"; hasRunfiles = true; version = "1.1"; }; "ebong" = { - md5.run = "ae535360aa6b59436720bd9dcabed18a"; + md5.run = "afc17f207ca9681e39e419ea0cf07c12"; md5.doc = "5f5fef7820ea1dd6121c6c4753acc57d"; hasRunfiles = true; }; "ebook" = { stripPrefix = 0; - md5.run = "3706d903c13312a7db4b0694bdb6e4f7"; + md5.run = "95b48dd3e2841466587e66edc4caa049"; md5.doc = "cad1374867193cb5fa3a76f5a67b06b3"; hasRunfiles = true; }; @@ -8706,7 +8706,7 @@ tl: { # no indentation }; "ebsthesis" = { stripPrefix = 0; - md5.run = "594e42721a78114620754eda2c788abd"; + md5.run = "8fe0fbb1f2166c1e0376abc1f85f191d"; md5.doc = "a202c5f02caa507d6e68237eb20473c5"; md5.source = "358fa63e523723a5912f0514ecdc5270"; hasRunfiles = true; @@ -8721,13 +8721,13 @@ tl: { # no indentation }; "ecc" = { stripPrefix = 0; - md5.run = "6c89d5679ab6d83f41d684b310c6ccf4"; + md5.run = "0dee63e12ad62b63725b62dfbc650bdb"; md5.doc = "b07f02217c980ae8ff2522f616b033f8"; hasRunfiles = true; }; "ecclesiastic" = { stripPrefix = 0; - md5.run = "29d19973ce1a83d2793c38065c159b2c"; + md5.run = "56cb76db923405b4ed9bc5093031ad90"; md5.doc = "3bbfcbef509beef90f0616f6d662254b"; md5.source = "6f86056dd46597af0bdefd4de236661d"; hasRunfiles = true; @@ -8735,14 +8735,14 @@ tl: { # no indentation }; "ecltree" = { stripPrefix = 0; - md5.run = "81633c6731f6e7c975b172c73b28b252"; + md5.run = "f29390ed207ca43b0a14f717328d9a91"; md5.doc = "b78ba41b0b088083a57d7015de6876e0"; hasRunfiles = true; version = "1.1a"; }; "eco" = { stripPrefix = 0; - md5.run = "51d83ae3e4f96e76175a351e8a2bc1d0"; + md5.run = "d84f617c82385753dedef298d98b199d"; md5.doc = "3bcde051feee1eb23071ee1397264541"; md5.source = "dd3951f21733a5599b3cc295bc047e3e"; hasRunfiles = true; @@ -8750,13 +8750,13 @@ tl: { # no indentation }; "economic" = { stripPrefix = 0; - md5.run = "419f7d2e8313dcf43dcf4f7cfa355827"; + md5.run = "416f4590c13489a2156b400049511ae6"; md5.doc = "2ca3cf2f8768b973dfc6da0544b0be1c"; hasRunfiles = true; }; "ecv" = { stripPrefix = 0; - md5.run = "f5773ff9f6760c81d613a7e2ae3222ea"; + md5.run = "550ac159f918574a623af7f219a3e487"; md5.doc = "0a85bdcef6d72652cb094c88597724e3"; md5.source = "66aeffd68b8fd4396bfb0edff772fb5a"; hasRunfiles = true; @@ -8764,7 +8764,7 @@ tl: { # no indentation }; "ed" = { stripPrefix = 0; - md5.run = "c6307179c1d9230819b43d1f32f63dd5"; + md5.run = "91ebb4dbddd4dd10ef3c5e522c71c3a6"; md5.doc = "e2a834f6c4238a6c6f98f1584caaca90"; md5.source = "fa2f9c35c022915f0af169df13d4e8a0"; hasRunfiles = true; @@ -8772,7 +8772,7 @@ tl: { # no indentation }; "edfnotes" = { stripPrefix = 0; - md5.run = "3a05d811e465f0fa6d67a99fa3288bf8"; + md5.run = "3e0dd247674c521826d27752ca30686e"; md5.doc = "1237b60a83af54d955f57d7e6ff056f7"; md5.source = "fde5663f6351f6f3c55a3f138c427c51"; hasRunfiles = true; @@ -8780,7 +8780,7 @@ tl: { # no indentation }; "edmac" = { stripPrefix = 0; - md5.run = "ad4e1096a8bc9e78986b903662025ed4"; + md5.run = "f5ae896333aeda30077335f4948c044d"; md5.doc = "9fbd71c0ec364d93eb168f8eaaa6e21a"; md5.source = "832928ac55af81e7ee74250e6515936a"; hasRunfiles = true; @@ -8788,7 +8788,7 @@ tl: { # no indentation }; "edmargin" = { stripPrefix = 0; - md5.run = "0bfc2e224ac233e9d393e3d8badfa816"; + md5.run = "d82de77f8f0afd69e4728393be6df82f"; md5.doc = "d6323714280f32fa54f0a5f3c760521b"; md5.source = "8b74bccd7b96946ec3fcd170a3e8e0ac"; hasRunfiles = true; @@ -8797,14 +8797,14 @@ tl: { # no indentation "ednotes" = { stripPrefix = 0; deps."ncctools" = tl."ncctools"; - md5.run = "047c02037025d3fc6b841bb67fb87cbc"; + md5.run = "886ac4ae9d25636973aa9ea6c9856f4b"; md5.doc = "c4d761fa6b6ff9c99532746382c9908a"; hasRunfiles = true; version = "1.3a"; }; "eemeir" = { stripPrefix = 0; - md5.run = "e010c619acc53984e2fd933eeaabecab"; + md5.run = "7a38139bbe3e1b54c3c26be87d17ceda"; md5.doc = "498b4509ed1e5603ef509065350dfb30"; md5.source = "c1334be40a879ab9529cb7b245669f3d"; hasRunfiles = true; @@ -8819,7 +8819,7 @@ tl: { # no indentation }; "efbox" = { stripPrefix = 0; - md5.run = "c6426eea9da8d097ef41b627f10d8e91"; + md5.run = "e1278b28831415acdc78cbbfb732a21b"; md5.doc = "ccc1accbd7ece99fda21c72c64ca9f32"; md5.source = "d57385abd3336ab4bc5accc6d5654d4e"; hasRunfiles = true; @@ -8827,14 +8827,14 @@ tl: { # no indentation }; "egameps" = { stripPrefix = 0; - md5.run = "25a83350cdeabf0f396045afa6b9d397"; + md5.run = "bfcdec80a39d10e1fdd370872a03bfd6"; md5.doc = "e67a406a446d921b41a7131aac5d9328"; hasRunfiles = true; version = "1.1"; }; "egplot" = { stripPrefix = 0; - md5.run = "36c12aef17a7cf78d7d512b8a460cc6e"; + md5.run = "dc280aea025711d2ddea3102aeada267"; md5.doc = "c219d8ee7e86fcd6d9589cfa98c50be7"; md5.source = "eb51bb2d18b5d5c4d71bbdcbcbbe2588"; hasRunfiles = true; @@ -8842,13 +8842,13 @@ tl: { # no indentation }; "eiad" = { stripPrefix = 0; - md5.run = "63d28469c83f5c6e8af8c2c0475241cc"; + md5.run = "30ed7460062a4b9717eba376c3a98bbe"; md5.doc = "06b21bc199885643db89833abca44bc9"; hasRunfiles = true; }; "eiad-ltx" = { stripPrefix = 0; - md5.run = "367063970eb408fd3e7f601c42f736ad"; + md5.run = "06c34091ea7029ab9659b93257d9e132"; md5.doc = "e3ce7d5cc3f2c50787db0735737c523a"; md5.source = "0ae7d7c4e8b767c354e86af776e5bb28"; hasRunfiles = true; @@ -8856,7 +8856,7 @@ tl: { # no indentation }; "eijkhout" = { stripPrefix = 0; - md5.run = "b866fbf91884bbc8f159c245d531cab4"; + md5.run = "64a86d4d866d69d9bfa10938d3edb85a"; hasRunfiles = true; }; "einfuehrung" = { @@ -8866,7 +8866,7 @@ tl: { # no indentation }; "ejpecp" = { stripPrefix = 0; - md5.run = "22ee7b76e451938382cc2a28c91a9a60"; + md5.run = "c38218cb26ae03cbaebbd64d5ba16b52"; md5.doc = "d57a986ed2d64f8b467778070eafd30d"; md5.source = "e1e0d90c0e5b0d08fa305b09f640ee3a"; hasRunfiles = true; @@ -8874,7 +8874,7 @@ tl: { # no indentation }; "ekaia" = { stripPrefix = 0; - md5.run = "b437f7b1b1b4993034c9e03b2bdfd8b0"; + md5.run = "9f9babf007d899f51109ec9946ef375e"; md5.doc = "8597b0c0fa8d2ada89bec1dcab60b52d"; md5.source = "802f0f8633f6de4cdecf61fb2f657561"; hasRunfiles = true; @@ -8882,7 +8882,7 @@ tl: { # no indentation }; "elbioimp" = { stripPrefix = 0; - md5.run = "7cb1ba4080840fbd52cf2e89f8a76a2c"; + md5.run = "5a3f09bef6bba0e17225edf09826d1d8"; md5.doc = "4560eea6a7092c6bce004d2a1e462359"; md5.source = "f7574179a82a993a0c40a05e99070bc9"; hasRunfiles = true; @@ -8890,7 +8890,7 @@ tl: { # no indentation }; "electrum" = { stripPrefix = 0; - md5.run = "8782819c5df219def747c597447494ea"; + md5.run = "1d565faf692d623111ee068ed3ad44c2"; md5.doc = "39428ba1a371ec9b508ce6e82dedc47a"; md5.source = "155fc3ff3315e2acb5b992218147ed91"; hasRunfiles = true; @@ -8898,7 +8898,7 @@ tl: { # no indentation }; "eledform" = { stripPrefix = 0; - md5.run = "57e94c59ba4d67a86626c9a796aeb688"; + md5.run = "92bd24730832fd5745c5e0efc4710f1a"; md5.doc = "27a65c5d34f23719e9df77118ef8c904"; md5.source = "c27b1a6a4031e97affbd93ffec95ef45"; hasRunfiles = true; @@ -8906,7 +8906,7 @@ tl: { # no indentation }; "eledmac" = { stripPrefix = 0; - md5.run = "bbaa4fbfe2016c3fa40e1b89086e685f"; + md5.run = "adf12ce3a7a2aa1912fc932cf8ea9d43"; md5.doc = "9aa2905ffc13937e143a024f116f5068"; md5.source = "cbb2c1318109878d03b9219426995b2a"; hasRunfiles = true; @@ -8914,14 +8914,14 @@ tl: { # no indentation }; "ellipsis" = { stripPrefix = 0; - md5.run = "555d83388e8715ebbeb0a50ef1a5a26e"; + md5.run = "fbc301b8d42cb161123086ca9ed86109"; md5.doc = "85b57490b49a4931e3a6a298fd490f76"; md5.source = "041a5d28924a2b73c91a5a687e2bff43"; hasRunfiles = true; }; "elmath" = { stripPrefix = 0; - md5.run = "a8c192efed78d29ebcd99f8f6cdf7335"; + md5.run = "566f5e22414753d73df2b0df2b5088f9"; md5.doc = "7c3cee8b9d007f2c521861b4b2e82278"; md5.source = "6f4b846977ab09707930943c49a1aa8d"; hasRunfiles = true; @@ -8929,14 +8929,14 @@ tl: { # no indentation }; "elpres" = { stripPrefix = 0; - md5.run = "816ad747fd9782b60bddb1a6e80f493f"; + md5.run = "84366734e1b584d8b3a154d608d39f63"; md5.doc = "a73e93cf33e9b4a8b554c1a94f015c7f"; hasRunfiles = true; version = "v0.3"; }; "elsarticle" = { stripPrefix = 0; - md5.run = "439ad9b981c967d33d663d921f2f05e0"; + md5.run = "c539b5cd610def95fc37e2fd213a12f8"; md5.doc = "eb196002432b79e08c7a829cd0f9bc1e"; md5.source = "00626ef237daea224f3a967afe2eda1f"; hasRunfiles = true; @@ -8944,7 +8944,7 @@ tl: { # no indentation }; "elteikthesis" = { stripPrefix = 0; - md5.run = "258889a2da3ac9722510f7434edf5c57"; + md5.run = "815a3f3813be9d10d82aed84a44a1943"; md5.doc = "935bcea691011df0b2cb7e1cf84a7180"; md5.source = "3f4337754fbeda0823bc647d7fd20e3e"; hasRunfiles = true; @@ -8952,20 +8952,20 @@ tl: { # no indentation }; "eltex" = { stripPrefix = 0; - md5.run = "d1e5f02a437f5be71d4735c4cf9a4598"; + md5.run = "ddd063e9b856439ce84a1c1245e70fe9"; md5.doc = "18f4e6973c6d65e4d2316b17957094a3"; hasRunfiles = true; version = "2.0"; }; "elvish" = { stripPrefix = 0; - md5.run = "c4d6107505196e1cd0d6b072b57f9990"; + md5.run = "d3e00f85dc76593ca6e93ec0ee96db5a"; md5.doc = "3bf86af12161b1a66824866765be6ca2"; hasRunfiles = true; }; "elzcards" = { stripPrefix = 0; - md5.run = "9f2a96920d8f6b32e1a713e0a06e7145"; + md5.run = "cdec574963220c898a83d24fbda4a6e0"; md5.doc = "5dbd6d2781b9da18b612addbf015e941"; md5.source = "1eba5865b03aed8c9ccbdeeba6e93743"; hasRunfiles = true; @@ -8973,7 +8973,7 @@ tl: { # no indentation }; "emarks" = { stripPrefix = 0; - md5.run = "e850eb7bedc78ef919c42d17f2f93f37"; + md5.run = "5ca5c4dc8d1a84cb3dfd37cb4c89ed6c"; md5.doc = "f2e7e514ee5fdadf8b97cfb93b55ecad"; md5.source = "0455b8da9705466bc9f05c7963b7724b"; hasRunfiles = true; @@ -8981,7 +8981,7 @@ tl: { # no indentation }; "embedall" = { stripPrefix = 0; - md5.run = "bf0431819b903953730189a8caa02812"; + md5.run = "551a4b999f2b4caaed9f3410574ed82d"; md5.doc = "4d951fa797504d1e31330ac984c44647"; md5.source = "3f5f02aaffc01386a548c16ef4be6f78"; hasRunfiles = true; @@ -8989,7 +8989,7 @@ tl: { # no indentation }; "embrac" = { stripPrefix = 0; - md5.run = "dc059f308c5fe047369ca23ac9722261"; + md5.run = "5f58f2d580b368b910ccb6a131e2ed52"; md5.doc = "f8aa3ae81d56fc48bda513b309c56408"; hasRunfiles = true; version = "0.6"; @@ -9003,7 +9003,7 @@ tl: { # no indentation }; "emptypage" = { stripPrefix = 0; - md5.run = "528742d40589480cc9556bd2b863ea50"; + md5.run = "8a3e8722f844ec351d3d55858ba4efe1"; md5.doc = "db263c14951342dd9e5443c1eeb9e224"; md5.source = "4bc50fb2cae6bc729519cb2f554a35d7"; hasRunfiles = true; @@ -9011,7 +9011,7 @@ tl: { # no indentation }; "emulateapj" = { stripPrefix = 0; - md5.run = "278627c735d9e3d97770e690361e38e0"; + md5.run = "bf0073c85ce4ca3e43bd1ce0603ea498"; md5.doc = "0df354c17a2f945f46bf15cf6af078a9"; hasRunfiles = true; }; @@ -9023,14 +9023,14 @@ tl: { # no indentation }; "encxvlna" = { stripPrefix = 0; - md5.run = "3b9629029700c7039b4fe05102680a3d"; + md5.run = "f22335aeb26d37cff8f6a4d85b81ece6"; md5.doc = "60798529ce4d8b98988eb10c6d13b3b2"; hasRunfiles = true; version = "1.1"; }; "endfloat" = { stripPrefix = 0; - md5.run = "2ad9190658d53033c68e6df043c7fd4b"; + md5.run = "4d7eaa23ab9a6ef7ce71c0767a5b512e"; md5.doc = "5cf0e2b64f10f4f92b7c65003b48ac94"; md5.source = "39509f4f226ff3c2a41e9412d156a85a"; hasRunfiles = true; @@ -9038,7 +9038,7 @@ tl: { # no indentation }; "endheads" = { stripPrefix = 0; - md5.run = "7b14f6070330b9c27db5a955c098efd8"; + md5.run = "5e07b9e0afca72b231d1dcaa64f263d8"; md5.doc = "ad052ae0b35525e422b63cd548cc96cf"; md5.source = "4b31aaf3dc4799a59a59173870a3b65a"; hasRunfiles = true; @@ -9046,20 +9046,20 @@ tl: { # no indentation }; "endiagram" = { stripPrefix = 0; - md5.run = "2e8075fd36d58a279ff996669777a1b4"; + md5.run = "a9dfc928933ee754b30dae8203052c50"; md5.doc = "65764d772832adda21fbfbb1826e6e92"; hasRunfiles = true; version = "0.1d"; }; "endnotes" = { stripPrefix = 0; - md5.run = "9e8e9f78c4492b6edb1946e12a5482d6"; + md5.run = "4e9bf263907774359d7a87ba6f539564"; md5.doc = "436cad47166b9b7d533826e7245f4538"; hasRunfiles = true; }; "engpron" = { stripPrefix = 0; - md5.run = "a4f4503dc0132558ab663989b835727a"; + md5.run = "2f836cada8fbb494d12f58cd4415e62b"; md5.doc = "e009231fba5973705c62c98a6a7c56f1"; md5.source = "66d062e2d2e1234c4c5eb762c783e480"; hasRunfiles = true; @@ -9067,7 +9067,7 @@ tl: { # no indentation }; "engrec" = { stripPrefix = 0; - md5.run = "f370e73d403116da5edf3a1f815ceb18"; + md5.run = "e74229810950f605ad21debf858d27dd"; md5.doc = "87a8962d59aabc4fe5e73bfe6b8343a8"; md5.source = "021ae49c5a95aff6f0361296af3f7778"; hasRunfiles = true; @@ -9075,7 +9075,7 @@ tl: { # no indentation }; "engtlc" = { stripPrefix = 0; - md5.run = "f842cbe067e2186fdb3c3f5ae867114b"; + md5.run = "74bde9a1062d383e202937d2038ee60a"; md5.doc = "ec5e50037720b449f115724743957e7c"; hasRunfiles = true; version = "3.2"; @@ -9089,7 +9089,7 @@ tl: { # no indentation }; "enotez" = { stripPrefix = 0; - md5.run = "47ed8a1a33f6e46cfcb52c13042eedf6"; + md5.run = "af9e4d372aa7af9cbd8623f6125b2d5b"; md5.doc = "cd462cd01b5a6a6cb87ac1294f768a73"; hasRunfiles = true; version = "0.7c"; @@ -9103,7 +9103,7 @@ tl: { # no indentation }; "enumitem-zref" = { stripPrefix = 0; - md5.run = "8a87f7bf74339257804d012f50c8b708"; + md5.run = "d4c32e6c2b2fb9f5de43a4e2a6968909"; md5.doc = "143ea6cca54d43816de8ed68f16fd7b8"; md5.source = "7efc037981c2625cf1377d4b05515837"; hasRunfiles = true; @@ -9111,13 +9111,13 @@ tl: { # no indentation }; "envbig" = { stripPrefix = 0; - md5.run = "a66512bcf2eb6cfcc0d0d28d20b1097b"; + md5.run = "0f38bc7efc413c504933681d35e71a08"; md5.doc = "d4edd2e4dbf46b48b595468fdb35120a"; hasRunfiles = true; }; "environ" = { stripPrefix = 0; - md5.run = "13d4a8bf76584d0cab335e1687cbcdaa"; + md5.run = "339c0045fc09cba1a1cebade0abb4d0a"; md5.doc = "cc37845227cacab147e1034e8cdadfa2"; md5.source = "4fd54d82c852a96b052e553a84d0fb5c"; hasRunfiles = true; @@ -9125,7 +9125,7 @@ tl: { # no indentation }; "envlab" = { stripPrefix = 0; - md5.run = "e6d11428638d8c2b8b3eca5375bcac38"; + md5.run = "35816dea7d99ee47466563d2278a2f33"; md5.doc = "3a5e853ef6315a3ea97f8fc920407c6d"; md5.source = "4dd73ef28f370702029c06fb27a6998d"; hasRunfiles = true; @@ -9133,19 +9133,19 @@ tl: { # no indentation }; "epigrafica" = { stripPrefix = 0; - md5.run = "ae0af42342d39774f983dfa3d54d9c2b"; + md5.run = "c3d584f6aeb40cc61b08f653ff2df843"; md5.doc = "7d017e09e93f76b71268f07ec7823356"; hasRunfiles = true; version = "1.01"; }; "epigram" = { stripPrefix = 0; - md5.run = "68a8bf8cfe8f883d30926c49e111bcfa"; + md5.run = "de61e2707e4c4a695a4775aca2afee4a"; hasRunfiles = true; }; "epigraph" = { stripPrefix = 0; - md5.run = "97b7c686900e31b033daaba82a58161a"; + md5.run = "3ae0268bd3ed8bde6bb92b9a877bf5e5"; md5.doc = "57de96e711b39217909d74bd3e5f7b05"; md5.source = "c907dfa17fb8c474d161cc9f8065c3f5"; hasRunfiles = true; @@ -9153,14 +9153,14 @@ tl: { # no indentation }; "epiolmec" = { stripPrefix = 0; - md5.run = "4a0abf109095148967e12dcb146eea67"; + md5.run = "08567c68d39a8377ab7d83de46523591"; md5.doc = "310e1179a3048847bea06b8b026843b6"; md5.source = "6b08402234329aafeb77ae4ba65ee623"; hasRunfiles = true; }; "eplain" = { deps."pdftex" = tl."pdftex"; - md5.run = "c8b5fed80b16a5c2630c0a0c923acfa1"; + md5.run = "b82412b0e3eeb568ec33171615a2b570"; md5.doc = "c6d8e92437019ec9299a5d83f28331d3"; md5.source = "a9f77537c21f7c8bffa2193602796f26"; hasRunfiles = true; @@ -9168,7 +9168,7 @@ tl: { # no indentation }; "epsdice" = { stripPrefix = 0; - md5.run = "e97227d6fe03c6d0809ee1396e7bd710"; + md5.run = "c84b1bc3b8e21820a897999b9b59450f"; md5.doc = "800737349c4215edbd4a8f0da3b00740"; md5.source = "9610d9126d56a25ca648199641fe4276"; hasRunfiles = true; @@ -9221,20 +9221,20 @@ tl: { # no indentation }; "epyt" = { stripPrefix = 0; - md5.run = "b401d86c3dbdf97e24b278b16687bd85"; + md5.run = "33ebbf2166c8fa83ffcd4009c16a6e39"; md5.doc = "c9425900e173dfd64fa2115d1f4d53a9"; hasRunfiles = true; version = "0.6"; }; "eqell" = { stripPrefix = 0; - md5.run = "3f8fc8495c2059f7f0ae32a7e02f86aa"; + md5.run = "080debf60175bc408ef4f89c6c98a51b"; md5.doc = "3b4a00ae4cc586c69586da8efb7b6f97"; hasRunfiles = true; }; "eqlist" = { stripPrefix = 0; - md5.run = "1e66d9cb9c9b28e6cf94e61640d4582e"; + md5.run = "eff5cc65ac0615c29d3528c9a7966c0b"; md5.doc = "e5f12aa08e869a1d06f2cdd5302b4c3e"; md5.source = "961bb561d4979c056ea4e99caeff8267"; hasRunfiles = true; @@ -9242,7 +9242,7 @@ tl: { # no indentation }; "eqname" = { stripPrefix = 0; - md5.run = "8b0d12e240f73e79e48fb4b68d4268ca"; + md5.run = "db01167cc8d5a12189b2c96c5cfa0e5b"; hasRunfiles = true; }; "eqnarray" = { @@ -9255,7 +9255,7 @@ tl: { # no indentation }; "eqparbox" = { stripPrefix = 0; - md5.run = "8468c9baaeb725f5a5960bf2dd2811f5"; + md5.run = "d46e14f6708bea8a9a83e7dacb2de90c"; md5.doc = "28e39a040f7178585eeff639b7a749b7"; md5.source = "59bd53233acb0caae2928da046e133fb"; hasRunfiles = true; @@ -9263,7 +9263,7 @@ tl: { # no indentation }; "erdc" = { stripPrefix = 0; - md5.run = "d332805662e926c27896083db2719f2c"; + md5.run = "348ec66d4c2711701b4885f2cbe59b1f"; md5.doc = "82acfbf56c2a0255bb851830ef7cb3b0"; md5.source = "2d14287c3647cc51cd56472f24a30e6a"; hasRunfiles = true; @@ -9271,14 +9271,14 @@ tl: { # no indentation }; "erewhon" = { stripPrefix = 0; - md5.run = "17443c5790961fe90c36d5ecc3bf09af"; + md5.run = "d65eeec96515c8b0f83859be9d896e0f"; md5.doc = "a8d1fc731184b299804c545e93d86f97"; hasRunfiles = true; version = "1.04"; }; "errata" = { stripPrefix = 0; - md5.run = "de3d1ff00de51d22286e1d40bf7c2a45"; + md5.run = "f5812a69f18fddc2c8ed034e7bc6bcad"; md5.doc = "048e3a8a57fea208df7830860c31c350"; md5.source = "f86fd5b7024b7b67e2bfd16f89ef4f87"; hasRunfiles = true; @@ -9292,14 +9292,14 @@ tl: { # no indentation }; "esami" = { stripPrefix = 0; - md5.run = "5cead25d9e46c243d834d6b73b87f994"; + md5.run = "03950d21eb802823f82a3ece8f4dd1b6"; md5.doc = "05e84af5f7277eab5a6c8d728a6edf9c"; hasRunfiles = true; version = "2.0"; }; "esdiff" = { stripPrefix = 0; - md5.run = "e6483c1144a10adb033753a9c594ddcf"; + md5.run = "e80c872e5ae11308c81412f70fe4f295"; md5.doc = "ed41eedd6d0f3244f0158c364c8a75db"; md5.source = "a0128de8218b32a9407947483792e298"; hasRunfiles = true; @@ -9307,7 +9307,7 @@ tl: { # no indentation }; "esint" = { stripPrefix = 0; - md5.run = "d78458ceaeea438c7aefa0e851a18e37"; + md5.run = "d45d89dbb52cde0293753db796ae0702"; md5.doc = "bcdf0fe62780390b8f07389f972f5a1a"; md5.source = "da6a61bab0159b25fb8fb93281e532a4"; hasRunfiles = true; @@ -9316,13 +9316,13 @@ tl: { # no indentation "esint-type1" = { stripPrefix = 0; deps."esint" = tl."esint"; - md5.run = "6b1bb46d8642be6027c20f243ef04f54"; + md5.run = "f578e11744f96f1db46a7d62bd2fffa9"; md5.doc = "070d1eabc49a2389432a691d1c2b254c"; hasRunfiles = true; }; "esk" = { stripPrefix = 0; - md5.run = "9414fdfe82848744e2de5ba78478b385"; + md5.run = "da270637a7eacb0911b949f6298a056d"; md5.doc = "2052c1d9b38a233d85979e2cf902bd67"; md5.source = "18bf785af9d57dea6f61f4e74f37cf2b"; hasRunfiles = true; @@ -9352,14 +9352,14 @@ tl: { # no indentation }; "esstix" = { stripPrefix = 0; - md5.run = "424ca1b6f917ba231eb7f7b192cd1ba2"; + md5.run = "41cfb782a4624e306ac2c3901babb9af"; md5.doc = "f11e46fd4741c678709da8ee1cd23633"; hasRunfiles = true; version = "1.0"; }; "estcpmm" = { stripPrefix = 0; - md5.run = "bf2a7dfce08c0eaec22c24f51792e448"; + md5.run = "f586021bb72d87fed07383915efda9a1"; md5.doc = "725394ba340afa0d6e0fc23ea4431f62"; md5.source = "a92ee3fd32d66fbfc9116318119e3f44"; hasRunfiles = true; @@ -9367,7 +9367,7 @@ tl: { # no indentation }; "esvect" = { stripPrefix = 0; - md5.run = "943bb46a2cc9f0fc8defaeb3426419e8"; + md5.run = "edc18b59f3fcd1577d6d3fa3d846dc5b"; md5.doc = "8c55c9a18ec2ec786cdcdb4cce8e937d"; md5.source = "a8fff3209c5c92deb01db42b12e984da"; hasRunfiles = true; @@ -9375,7 +9375,7 @@ tl: { # no indentation }; "etaremune" = { stripPrefix = 0; - md5.run = "cd6ef38cc0b6301b7514a291ffd4a396"; + md5.run = "360167f82376b99a258d1fcff32c3ba7"; md5.doc = "e17841616939487a0efc6a20988562ed"; md5.source = "dce1ad801f1dac806eadc8b12ed8aba9"; hasRunfiles = true; @@ -9403,7 +9403,7 @@ tl: { # no indentation }; "etextools" = { stripPrefix = 0; - md5.run = "593c4c88840d09c13b03eb6f6069e57f"; + md5.run = "1abbd0ecc80eff44eb9b09815939fce9"; md5.doc = "a49f64164829e4763add2d1df7f97087"; md5.source = "0556b6514022a15615272236bca218b8"; hasRunfiles = true; @@ -9411,7 +9411,7 @@ tl: { # no indentation }; "ethiop" = { stripPrefix = 0; - md5.run = "3a78e84e8e3327e97a4e3a6401df2922"; + md5.run = "4ffb9f2fba67c69ada6116f75469266c"; md5.doc = "30e542d7a34b7245c1fb7f7bf4c15141"; md5.source = "4b0041f92093711d4ddb61bed46a57dc"; hasRunfiles = true; @@ -9419,13 +9419,13 @@ tl: { # no indentation }; "ethiop-t1" = { stripPrefix = 0; - md5.run = "04ece06242ff7cb48565002867003556"; + md5.run = "069dd4eea37cb8b21f8b1facdb30d691"; md5.doc = "589d8947ee8e8fef56bca98460c02778"; hasRunfiles = true; }; "etoc" = { stripPrefix = 0; - md5.run = "985db2e1121d2293fad0490ae1dec523"; + md5.run = "3c79ce85de9e395c270f6f0c063d1df6"; md5.doc = "9544dcfc0eeda1f4df6b74d2eaec94a2"; md5.source = "0a32baedb8450e412c02885e217d4cbb"; hasRunfiles = true; @@ -9454,7 +9454,7 @@ tl: { # no indentation }; "eukdate" = { stripPrefix = 0; - md5.run = "64ac4612889b1f14854781dec78ac534"; + md5.run = "b20088589d3adfcfd21bd2a6c03ed881"; md5.doc = "d81fc8e8d1bb549c41ae595269484065"; md5.source = "3ccd2d3aac9e7776748dd9f2e230b6d0"; hasRunfiles = true; @@ -9470,7 +9470,7 @@ tl: { # no indentation }; "eulervm" = { stripPrefix = 0; - md5.run = "7a51b3062349e5284ce37288e7d79f4c"; + md5.run = "c2bbdb0c319bfb086ac0b4392244bc69"; md5.doc = "b70c92ff2e429040df243a1099180395"; md5.source = "1f2ff986f33daf346fed07db4264056b"; hasRunfiles = true; @@ -9493,13 +9493,13 @@ tl: { # no indentation }; "europasscv" = { stripPrefix = 0; - md5.run = "3d6ae852b5f28b9078634247b6f45359"; + md5.run = "0ce33c547dfdde55d5de789238c560e5"; md5.doc = "33e4bc695dd89d5dfc7eb86594114606"; hasRunfiles = true; }; "europecv" = { stripPrefix = 0; - md5.run = "b7c5eded696409b858a329d44c2b328e"; + md5.run = "1f62cb94898e4255c97bfcba0e3aafc1"; md5.doc = "d21ba72f5be320f7ed51cfe5103d7d81"; hasRunfiles = true; }; @@ -9512,12 +9512,12 @@ tl: { # no indentation }; "euxm" = { stripPrefix = 0; - md5.run = "2b52a1f73878ee1cac4ecf566606e6b5"; + md5.run = "656a3707c5a20083e9cf65cad523bef7"; hasRunfiles = true; }; "everyhook" = { stripPrefix = 0; - md5.run = "f6b59632e00f2ef6b04dbdb236dd0eb8"; + md5.run = "00d1c10a594a54faf3b21584244aa8bc"; md5.doc = "b32870cfbedba05a5a2b888b7d252f3b"; md5.source = "8918a6d8fa9afe40b99416b6fae5a4e6"; hasRunfiles = true; @@ -9525,7 +9525,7 @@ tl: { # no indentation }; "everypage" = { stripPrefix = 0; - md5.run = "def003216c0e00a33f3ac8e84a4ed420"; + md5.run = "15e89edfa4aee9ee72650b81234dbbaf"; md5.doc = "13fabe06825bdc406f00fc2d95da19aa"; md5.source = "de986fea92a90176bf0d56f358a4381a"; hasRunfiles = true; @@ -9533,14 +9533,14 @@ tl: { # no indentation }; "exam" = { stripPrefix = 0; - md5.run = "35f5d2c130caec066b955c87f8a9e070"; + md5.run = "7322beb9a8719a49781a72f2e6b0f264"; md5.doc = "d9591921693e7d5de981bbd6545e3f32"; hasRunfiles = true; version = "2.4"; }; "exam-n" = { stripPrefix = 0; - md5.run = "ffcac1718236eaa6df29f0a43a7ca1bb"; + md5.run = "c270736e46192e3a99f3106dd36b1b4f"; md5.doc = "53efddfd7d575ade53db9fcf4f923e87"; md5.source = "9f5437f1eab5b0dae674fe1bf7628f54"; hasRunfiles = true; @@ -9548,7 +9548,7 @@ tl: { # no indentation }; "examdesign" = { stripPrefix = 0; - md5.run = "8396976ec65807593f7ae69f9f83a6fe"; + md5.run = "49e5cdaa0ae839d8346952b6f89de795"; md5.doc = "e0533b303ba261e7cc8e30b87eda3157"; md5.source = "6f46c191bb4722a14749ad71bf7274e9"; hasRunfiles = true; @@ -9556,32 +9556,32 @@ tl: { # no indentation }; "example" = { stripPrefix = 0; - md5.run = "4bea21c30b91cf37a8a839857954196f"; + md5.run = "526f4be004289e7e314fb9e9ce9ad419"; hasRunfiles = true; }; "examplep" = { stripPrefix = 0; - md5.run = "a68e644ae2fda2d48bd5fc972898b180"; + md5.run = "a7d21b46b9757e52a58d7458c631b99e"; md5.doc = "08dce683c58ff64273edeb0afecefb07"; hasRunfiles = true; version = "0.04"; }; "exceltex" = { - md5.run = "1179f0eba190481165881aad1f73aea8"; + md5.run = "ad1390a84219f43d8108e7cbbc016125"; md5.doc = "f9c896f88dd3100ac196b94fc51bad38"; hasRunfiles = true; version = "0.5.1"; }; "excludeonly" = { stripPrefix = 0; - md5.run = "cfd042865d2ee8c436de044e749cae13"; + md5.run = "cf72c66b082ecc2d7387f4c79febc490"; md5.doc = "f3783569e3a6d52460a79e5ac34d09ac"; hasRunfiles = true; version = "1.0"; }; "exercise" = { stripPrefix = 0; - md5.run = "a8cda1cae9a5472b3080e80a9e46b868"; + md5.run = "88aa70e84580cb116fe6558956a7d2d8"; md5.doc = "09c99327a95bf3703d15c33ade77de26"; md5.source = "ca107be1ca51071bd9023b438ebbcd39"; hasRunfiles = true; @@ -9589,7 +9589,7 @@ tl: { # no indentation }; "exp-testopt" = { stripPrefix = 0; - md5.run = "13364ea20495a07ef709d92d6c17142e"; + md5.run = "f767bf128bd7f482e90ae771e9a0c16f"; md5.doc = "26aea10fa0f458416e54f1ef6d662ad4"; md5.source = "9bdd4bded21c83c3692418b23ced20f5"; hasRunfiles = true; @@ -9597,7 +9597,7 @@ tl: { # no indentation }; "expdlist" = { stripPrefix = 0; - md5.run = "1ff449d183c415a3fe243593b77ac9e5"; + md5.run = "5232cd45e488e25c5de575286c56bbfd"; md5.doc = "4286262c89d153f71e22815142de8c2f"; md5.source = "4cf24c805e0eea17e4321f6cba94cb56"; hasRunfiles = true; @@ -9605,14 +9605,14 @@ tl: { # no indentation }; "expex" = { stripPrefix = 0; - md5.run = "dcd8bb22072611e69ea1a715d3166c70"; + md5.run = "8ea5f45f0bbc364c840320ae7b3d2881"; md5.doc = "968ce890d4251041dd5e049d1b24772c"; hasRunfiles = true; version = "5.0b"; }; "export" = { stripPrefix = 0; - md5.run = "f4d175ebb0427e59a254725a7eb90eb5"; + md5.run = "e415fabace63a0373c87c89de8def70b"; md5.doc = "393429fbf9ef7c5062d7680a033998e5"; md5.source = "2ac61e7cb2487de63891fe28357f639f"; hasRunfiles = true; @@ -9628,14 +9628,14 @@ tl: { # no indentation }; "exsheets" = { stripPrefix = 0; - md5.run = "f2a716a6ab7c6c53641cca389306ba96"; + md5.run = "f457cea4a6641770796675e2865714a1"; md5.doc = "17cb7b6877fb4a116886aaa8c53e9216"; hasRunfiles = true; version = "0.18"; }; "exsol" = { stripPrefix = 0; - md5.run = "8211a3fd21b4bf459c829ca3014589c8"; + md5.run = "62f268b0847651b1c992feb7a9f6b4a5"; md5.doc = "76a7cc4b6a386eb36ff79ede24dbfbb8"; md5.source = "c6bd109d91c1d1c08e7371819c00101a"; hasRunfiles = true; @@ -9665,7 +9665,7 @@ tl: { # no indentation }; "extract" = { stripPrefix = 0; - md5.run = "99015e22b98b91e7ace6027c28b2a2d0"; + md5.run = "b8ccb9ae6064c8e74668272e4764fd50"; md5.doc = "56e89cead7dc05274aa9d4c0e1801b29"; md5.source = "bd84f872d68d7c607d49baf1f7cd27d2"; hasRunfiles = true; @@ -9680,7 +9680,7 @@ tl: { # no indentation }; "facsimile" = { stripPrefix = 0; - md5.run = "5c424e86704b6825e6ab19dee5e45abe"; + md5.run = "1f01ad41bec1dbcd1a5c236a7149738e"; md5.doc = "717950accfce7ab2768c4611fa012953"; md5.source = "19ae38deb29c9f0e53ade7be3a0217d8"; hasRunfiles = true; @@ -9688,7 +9688,7 @@ tl: { # no indentation }; "factura" = { stripPrefix = 0; - md5.run = "ffc9ee1079624a7244da7dbec711dc9e"; + md5.run = "24f70827f655eee75155260313ed5a9d"; md5.doc = "f7956118cd9389528c7c0e9eb1ab18b7"; md5.source = "7ae990357cc3345561fd6f8e9dea9533"; hasRunfiles = true; @@ -9731,7 +9731,7 @@ tl: { # no indentation }; "fancylabel" = { stripPrefix = 0; - md5.run = "78b968888cfa712a656860d8828152d9"; + md5.run = "5ec1001994270e5dcb5467cd2d986dda"; md5.doc = "78486c308137cbcc8b36e6ee7984b0a8"; md5.source = "005d84a2f4579123ad4f79893366a59d"; hasRunfiles = true; @@ -9739,7 +9739,7 @@ tl: { # no indentation }; "fancynum" = { stripPrefix = 0; - md5.run = "8938b458cafb0f8fdb7362cf277b77ac"; + md5.run = "9918955aa0598a78d44192c8904bb6ee"; md5.doc = "8d10e8752905adfc132efbca6d409ace"; md5.source = "b105af0421a9e52823e2b2c9309da927"; hasRunfiles = true; @@ -9747,7 +9747,7 @@ tl: { # no indentation }; "fancypar" = { stripPrefix = 0; - md5.run = "5c049f5e429da055fe92adcc78328ff0"; + md5.run = "87993fd50b3ba6168130ad76f59e76ac"; md5.doc = "72a9cbbc6f18d9228662f585c5bb1a49"; md5.source = "1d9ba7fbc6c49375859f2b6d486898e3"; hasRunfiles = true; @@ -9763,14 +9763,14 @@ tl: { # no indentation }; "fancyslides" = { stripPrefix = 0; - md5.run = "1798dff2d662defa36b94d926b0e6d7e"; + md5.run = "628ce460b680b9d3e1832b1ff34d068d"; md5.doc = "b573ab2ed9d84a4918bdc00fd8493973"; hasRunfiles = true; version = "1.0"; }; "fancytabs" = { stripPrefix = 0; - md5.run = "1fcff3be53b14029b73874ab78cd7ad3"; + md5.run = "7b7bbecb0534e060bcbd5275ca4cefe7"; md5.doc = "938ccb059772a40def2ce2c9e1fb9e90"; md5.source = "906d0d031acec634067a54ae426fa8e1"; hasRunfiles = true; @@ -9778,7 +9778,7 @@ tl: { # no indentation }; "fancytooltips" = { stripPrefix = 0; - md5.run = "e1e4c49a0fb2253b8060ef9c5fec2ac2"; + md5.run = "fbb2aa4f75283778bf86236d06695687"; md5.doc = "6368e4e485c63ec94eda54dfdc353b6d"; md5.source = "8576ef9f17eba1f7a3c66a42070c8ae1"; hasRunfiles = true; @@ -9794,28 +9794,28 @@ tl: { # no indentation }; "fandol" = { stripPrefix = 0; - md5.run = "1d7074ee7d476b67ad7798d2d6e26080"; + md5.run = "6e6a93abc44a32ab66c43b56f63ee520"; md5.doc = "80499a7a14fe68f372b47ca6ecebb64d"; hasRunfiles = true; version = "0.2"; }; "fast-diagram" = { stripPrefix = 0; - md5.run = "dea7ec8873500b3745a188f3dbcbb3e3"; + md5.run = "69a739f3f2de68855c0940577b24da7c"; md5.doc = "3c9ddadbd1c2db0f4e9f662ec6b4ebbb"; hasRunfiles = true; version = "1.1"; }; "fbb" = { stripPrefix = 0; - md5.run = "e61d695042ee4622d0804585121cc17b"; + md5.run = "ec85133ac9ea4c3e50677414f9bce6ba"; md5.doc = "bcf50e7f38c4f1db53d0abf066a5f57e"; hasRunfiles = true; version = "1.07"; }; "fbithesis" = { stripPrefix = 0; - md5.run = "a60daa72365f053aeace4506cec6a7f2"; + md5.run = "e80b6ce3a60b09c0b941fd33658e88c1"; md5.doc = "a3e96c9866d91ea314c5866c3c9cdfb0"; md5.source = "2171d6b02ffd38a331af9303dffb04e8"; hasRunfiles = true; @@ -9823,19 +9823,19 @@ tl: { # no indentation }; "fbs" = { stripPrefix = 0; - md5.run = "63d86d38ad5190903c647021937660ce"; + md5.run = "837260c2abb2d5c9b8a0456e6323f5a0"; hasRunfiles = true; }; "fc" = { stripPrefix = 0; - md5.run = "5b87898140326ae962b2e424275ab2ff"; + md5.run = "d856ead406891f1b0503d071bed06210"; md5.doc = "32068ca4d71719b1116e6964e05a8ef1"; hasRunfiles = true; version = "1.4"; }; "fcltxdoc" = { stripPrefix = 0; - md5.run = "9067f95d279b3ada67d8cfa1837569eb"; + md5.run = "2abe5f49850dfae9253cb16fee1b531b"; md5.doc = "83675555de47435136afbb599f06c193"; md5.source = "0f5d6f4ed870669cff457f415b60b285"; hasRunfiles = true; @@ -9843,7 +9843,7 @@ tl: { # no indentation }; "fcolumn" = { stripPrefix = 0; - md5.run = "89f93bc38c4ad533f0e8f53c3244e4f2"; + md5.run = "a0d54ec8ee9d2aff60cbf9fb7527f306"; md5.doc = "83627942b1d959d23bff55080eec305a"; md5.source = "0d7bf1971739b42588e6c732a5b86b20"; hasRunfiles = true; @@ -9851,7 +9851,7 @@ tl: { # no indentation }; "fdsymbol" = { stripPrefix = 0; - md5.run = "8c75d7a965e6613f373b3065edf3d260"; + md5.run = "24a7470f79bd38af3efabadf897ecca9"; md5.doc = "c6d66235b70e5dea8e91c5591dd9b32c"; md5.source = "5732e0e71735d491a328b64edf9bc061"; hasRunfiles = true; @@ -9866,14 +9866,14 @@ tl: { # no indentation }; "fenixpar" = { stripPrefix = 0; - md5.run = "78adb14d779fbbd867d456fed29c1947"; + md5.run = "b179ba0e531a1e3810c8a2239f3cdfff"; md5.doc = "cd907ceed5ab87e52a5f25215d2b34bf"; hasRunfiles = true; version = "0.92"; }; "fetamont" = { stripPrefix = 0; - md5.run = "bb7ab3dd0c709bd720ef296e8769848f"; + md5.run = "465ccb641a7c7872dd47cff6baa424e3"; md5.doc = "c8f0e4209c70f07efade3563d5858040"; md5.source = "ff2de749c0ae0611223255cd36790933"; hasRunfiles = true; @@ -9888,7 +9888,7 @@ tl: { # no indentation }; "feyn" = { stripPrefix = 0; - md5.run = "53c9c7b035719556e098262a27f17574"; + md5.run = "521e2a8b77645569ce6734d2d3457ddd"; md5.doc = "f6bab26a93fbbed8e3f43c70198338e9"; md5.source = "2c6b8b635ffc7a2bc770ac741d50e563"; hasRunfiles = true; @@ -9912,7 +9912,7 @@ tl: { # no indentation }; "fge" = { stripPrefix = 0; - md5.run = "7891fc95efab438f6acc779cb6b2f85e"; + md5.run = "1f9d2bdb04505fd9d97b7051811d1a91"; md5.doc = "ac494cd648f919e15a3af037356ac574"; md5.source = "1c9f8b9a39406f994c617f79cb4aa65e"; hasRunfiles = true; @@ -9927,28 +9927,28 @@ tl: { # no indentation }; "fifo-stack" = { stripPrefix = 0; - md5.run = "8a59ec6eeb480165a19d34a2619b2611"; + md5.run = "852d0030c50ebd5f8c36049b24e386ca"; md5.doc = "370531e6b74044e0da7680110ee30d8d"; md5.source = "5d0df2ce3dfd226f8f39193621cf7376"; hasRunfiles = true; version = "1.0"; }; "fig4latex" = { - md5.run = "c26761744212222ff9b99a37a3b5dcdd"; + md5.run = "af0b92401dc19389161af519c2f19bc9"; md5.doc = "ff31b004ba51afab3c1fb723a9472d87"; hasRunfiles = true; version = "0.2"; }; "figbas" = { stripPrefix = 0; - md5.run = "0c07f68d8672f8056c267c379fd8a9cf"; + md5.run = "bf0c54637d51007da95c74058041f1a8"; md5.doc = "bf393ed9b8c0cddd89cfb501f14f5c6f"; hasRunfiles = true; version = "1.0.3"; }; "figbib" = { stripPrefix = 0; - md5.run = "35ba74e51bd652228b4c7bfc1ad68448"; + md5.run = "451a45d94b38d518cd4fd5fbf530f7a8"; md5.doc = "3026d0dff3e4991706b7d1f11cb95500"; hasRunfiles = true; }; @@ -9960,14 +9960,14 @@ tl: { # no indentation }; "figsize" = { stripPrefix = 0; - md5.run = "cbcf351b3913f4a6f377d1e7667d44d1"; + md5.run = "ab79e5503874311e1a8ac35387d06b0e"; md5.doc = "471d7399d472d0edcad428beaef806b3"; hasRunfiles = true; version = "0.1"; }; "filecontents" = { stripPrefix = 0; - md5.run = "fe00e9ab568702e69693e5f580590f3f"; + md5.run = "955b56800250b86899dbc40d5187d914"; md5.doc = "5de7f45bf0fb5e86b447800c13a9244c"; md5.source = "6b24a0c28be05c0125ba31e633cedf4a"; hasRunfiles = true; @@ -9975,14 +9975,14 @@ tl: { # no indentation }; "filedate" = { stripPrefix = 0; - md5.run = "8e592a0f757c0762ee4067d0e35294bb"; + md5.run = "5f97b69c883cc62b8515cb95523f19b6"; md5.doc = "1552d52f7fc0b1321de303d51d61b8d6"; md5.source = "db6129f7f0faf6b5a7782ed8e1ea8b5a"; hasRunfiles = true; }; "filehook" = { stripPrefix = 0; - md5.run = "bbfa8941dafd3d356b7ea853fbb763b5"; + md5.run = "a2a53bbf0075f5a95c9ae68ff658767f"; md5.doc = "1ee8e2d045ecdf452177daa41ecc967b"; md5.source = "b6789844aa324c829b19774adb139d27"; hasRunfiles = true; @@ -9990,7 +9990,7 @@ tl: { # no indentation }; "fileinfo" = { stripPrefix = 0; - md5.run = "0bead16d6d1a546f26500a6af11b4788"; + md5.run = "7e8afdf8b7435ea62df67fb3360cd52c"; md5.doc = "905c1bf958fe236847189142384ab753"; md5.source = "e4f80aa1f83701ae1271ad347ce7154d"; hasRunfiles = true; @@ -9998,7 +9998,7 @@ tl: { # no indentation }; "filemod" = { stripPrefix = 0; - md5.run = "1682090363539758d4b997d04b082ac1"; + md5.run = "ac732c5e07332850f52a0e096b970398"; md5.doc = "5870c80f6e833d88087df1cb33187b4a"; hasRunfiles = true; version = "1.2"; @@ -10016,7 +10016,7 @@ tl: { # no indentation }; "fink" = { stripPrefix = 0; - md5.run = "d18da805c2473a1d00f1afb6fa8176d8"; + md5.run = "80b19ffcbfd32090ad6d8ff9d93d9a93"; md5.doc = "5b20f69edee2590c2156e3543368a87c"; md5.source = "74955f1abbf87bf2b25e36b7b36e4b0d"; hasRunfiles = true; @@ -10024,7 +10024,7 @@ tl: { # no indentation }; "finstrut" = { stripPrefix = 0; - md5.run = "554394b07211406bf4d6913e95cb7c7d"; + md5.run = "689b83130bc03940edf6bfac65efa04e"; md5.doc = "e37ec63c04cefe990a62b6bb2e6aba1d"; md5.source = "f278690ab854ea1a43d427fcdd6dfa95"; hasRunfiles = true; @@ -10032,7 +10032,7 @@ tl: { # no indentation }; "fira" = { stripPrefix = 0; - md5.run = "a08548e7afb1d8d2ed8338e2e0dbf56e"; + md5.run = "8066dc612999d50fd1b544357d7c8c52"; md5.doc = "bc2c6b4eeeb459e27f469c9b62c15b60"; hasRunfiles = true; }; @@ -10051,7 +10051,7 @@ tl: { # no indentation }; "fixfoot" = { stripPrefix = 0; - md5.run = "0473fbad6bf129ef9989485f1e3e6757"; + md5.run = "f15853a6226afd8e9b4848920d95af57"; md5.doc = "2f65d6a145ca851d9608e85c849a5bb6"; hasRunfiles = true; version = "0.3a"; @@ -10074,7 +10074,7 @@ tl: { # no indentation }; "fixme" = { stripPrefix = 0; - md5.run = "3d4b7633c799528fa8030ae196164e9c"; + md5.run = "907ddf8f276b254cef83243255183b03"; md5.doc = "18d5dc1f7929e7869c9a49f9b91264bf"; md5.source = "59e71c0741044f3dd4765ecdcc185a65"; hasRunfiles = true; @@ -10082,7 +10082,7 @@ tl: { # no indentation }; "fixmetodonotes" = { stripPrefix = 0; - md5.run = "8bff9b7027768ee8b415558e8f3d8551"; + md5.run = "55474156c860430aba860a466995a73f"; md5.doc = "27a73a8b619bfa46fd5f41d4af868e64"; md5.source = "7d9e540394482a390ce185d365a46cc6"; hasRunfiles = true; @@ -10102,13 +10102,13 @@ tl: { # no indentation }; "fjodor" = { stripPrefix = 0; - md5.run = "22d46913dc9d108afd9c6af50f426a5e"; + md5.run = "1fff674134b824fb81829c3a9a577eb7"; md5.doc = "4f82fbd683937b265c2d4e10115735c8"; hasRunfiles = true; }; "flabels" = { stripPrefix = 0; - md5.run = "d28595038a2bea984602f7c2772356b4"; + md5.run = "01f9c1c55a92128f7a79d667abe6ef17"; md5.doc = "0eaf89957f8d38e4054dcdfefd0f7ac0"; md5.source = "8cf936d834ec55853b4cb582dda37ab3"; hasRunfiles = true; @@ -10116,14 +10116,14 @@ tl: { # no indentation }; "flacards" = { stripPrefix = 0; - md5.run = "267eab9fcd6e2ffc11ed1d70242adf45"; + md5.run = "2d646be9d00634e3bf77cb84dd931f8a"; md5.doc = "3123b7d04dd5f969dc4a8e4594d256cb"; hasRunfiles = true; version = "0.1.1b"; }; "flagderiv" = { stripPrefix = 0; - md5.run = "b32ab62d1fcbfbed49e14c93d2703229"; + md5.run = "7e63ca98404d3518c6a741fcd3de5ec2"; md5.doc = "243385322f0efff4dd18fc4f80e088f8"; md5.source = "4c05602c40c11f9f9b33d9be0b0d58cc"; hasRunfiles = true; @@ -10131,7 +10131,7 @@ tl: { # no indentation }; "flashcards" = { stripPrefix = 0; - md5.run = "c46ef9ec22e8d8e09b5a71f431faec37"; + md5.run = "713fb4cfd91fa991d1f43b21c8167d92"; md5.doc = "4666402b2c2b41b082c7f077f44b262a"; md5.source = "96967c74a19f9acdd70fb76aeee693fc"; hasRunfiles = true; @@ -10139,21 +10139,21 @@ tl: { # no indentation }; "flashmovie" = { stripPrefix = 0; - md5.run = "81d775d0eb96741db7a4610d926c7dbf"; + md5.run = "779d6c042af36acca08c4b5d213b46b2"; md5.doc = "c026d097af15df53b43bdef5814cbec8"; hasRunfiles = true; version = "0.4"; }; "flipbook" = { stripPrefix = 0; - md5.run = "f329914ee715a800db2ada26cfcd76c9"; + md5.run = "a2ef64383ea4acb77cfae1c33553340a"; md5.doc = "bb7d7f2368695303bdcbf763e461d31c"; hasRunfiles = true; version = "0.2"; }; "flippdf" = { stripPrefix = 0; - md5.run = "72d5d7197ebfba93a0e2a4c312037574"; + md5.run = "b0e2b310f7edf7b92248e90ba03dfab5"; md5.doc = "3378a08678fb888a7409f361b679b1c8"; md5.source = "cb84f6372c0463bdf1e68290a59473de"; hasRunfiles = true; @@ -10169,7 +10169,7 @@ tl: { # no indentation }; "floatflt" = { stripPrefix = 0; - md5.run = "e073191fb3db4d791c96ce4167ffda6c"; + md5.run = "f40674d6fa4c987eb111e6a43632cabc"; md5.doc = "1c3de8a5415c33259d986be8608c3ce3"; md5.source = "91b60276c44f0d089a713972eee895dd"; hasRunfiles = true; @@ -10177,7 +10177,7 @@ tl: { # no indentation }; "floatrow" = { stripPrefix = 0; - md5.run = "7cbf7d2dcb1126f42fd2ef9a1944de3f"; + md5.run = "a6e707b6c29f8edcd189ad9727142932"; md5.doc = "cd0e028c64384d21dd28644bd9ad25f9"; md5.source = "d2a2d358feab0c64d9cfa3f6bcd00e2c"; hasRunfiles = true; @@ -10185,7 +10185,7 @@ tl: { # no indentation }; "flowchart" = { stripPrefix = 0; - md5.run = "b34f0b5cdae81eee113e234c91d4e5d7"; + md5.run = "f6365b40aa9fa00e024ac7eea5cf69b6"; md5.doc = "38ea0cda557512198dbf5bc4c732994d"; md5.source = "d21bb9054265017621d90ffebbc48a75"; hasRunfiles = true; @@ -10193,7 +10193,7 @@ tl: { # no indentation }; "flowfram" = { stripPrefix = 0; - md5.run = "a8eaf3c726e70af412e0455715a23bc9"; + md5.run = "f649ef73797ffc81d40f431b58fd8b7c"; md5.doc = "a66fa13da62d0e62030353f4969bbec3"; md5.source = "51f13fe13fa5d1ab47e032707ebe6bcb"; hasRunfiles = true; @@ -10201,7 +10201,7 @@ tl: { # no indentation }; "fltpoint" = { stripPrefix = 0; - md5.run = "3c313830defb7955483d7c57526f6f6d"; + md5.run = "8720ee66f2046180c775d1c8a3b92096"; md5.doc = "5668aacbad88bb3c397892eb72524f02"; md5.source = "6aacd30f468ee2990cf3c5d4abca88a5"; hasRunfiles = true; @@ -10209,14 +10209,14 @@ tl: { # no indentation }; "fmp" = { stripPrefix = 0; - md5.run = "ed765fc4c39797ab0cbb8f2621bf0c11"; + md5.run = "22a51664f2ca47ddd5a948437d66eb14"; md5.doc = "21e7556dd1c1f6f789e7437e8a82f0d2"; md5.source = "8331d5d70d42a15034c88e802670872a"; hasRunfiles = true; }; "fmtcount" = { stripPrefix = 0; - md5.run = "cbaa48a61c173ad7575aab4d629d830b"; + md5.run = "99726d3e298b4b2c4c9043f8cae4f6cb"; md5.doc = "adeb21ae64555803c901b7da7823d401"; md5.source = "ca27799b0b98a81b8f8bbd60cd921095"; hasRunfiles = true; @@ -10224,14 +10224,14 @@ tl: { # no indentation }; "fn2end" = { stripPrefix = 0; - md5.run = "fa89d655a6f367001c7409bf4989f5eb"; + md5.run = "723767d78021751ddc6335090780cbab"; md5.doc = "2cde3f38d3a054a1684d2e78152cf58e"; hasRunfiles = true; version = "1.1"; }; "fnbreak" = { stripPrefix = 0; - md5.run = "4f7265ca61eb025ee00d429765127df5"; + md5.run = "33be26c15a862333c9f91c549e2aedff"; md5.doc = "93482e5ba046a153181b48dbbe0f19ef"; md5.source = "acb9dcdc4d4ea6d7aeacc7ab31f1878c"; hasRunfiles = true; @@ -10239,40 +10239,40 @@ tl: { # no indentation }; "fncychap" = { stripPrefix = 0; - md5.run = "9d73df126fc6127827d0725399e08dd2"; + md5.run = "b1f90ca4e14ef1af95886dbf498edbf6"; md5.doc = "6e01191a96270a1713ef1aa76fc6d3a9"; hasRunfiles = true; version = "v1.34"; }; "fncylab" = { stripPrefix = 0; - md5.run = "bff786986d1905be22cc043fdcdd3ce5"; + md5.run = "80607389c8e7132122fca26667e5c9b7"; md5.doc = "dc58b9964e4660fd952134c97ae7caa3"; hasRunfiles = true; version = "1.0"; }; "fnpara" = { stripPrefix = 0; - md5.run = "b0c298a2206e6ea476489788e125a499"; + md5.run = "3750565848f38f0fcc07409bde196750"; md5.doc = "cffed7e991b0978682614c5fea6d89df"; hasRunfiles = true; }; "fnpct" = { stripPrefix = 0; - md5.run = "faca962568b3c74d3783d909123f0360"; + md5.run = "712d8f5ea5e8d4b7d3b9a1966e33af6b"; md5.doc = "d86302af39b2a43a1477aa7ec9898374"; hasRunfiles = true; version = "0.4c"; }; "fntproof" = { stripPrefix = 0; - md5.run = "848cf2b329b55176a64716ba8a48772e"; + md5.run = "afeef732866f4897db34f0d37ab4b39d"; md5.doc = "c7813ab19291887eddfa243cec72ea05"; hasRunfiles = true; }; "fnumprint" = { stripPrefix = 0; - md5.run = "b093c746d5592c17f1f1270f2f789edc"; + md5.run = "36f635661238820a814e3f45880b215c"; md5.doc = "a272ea44588e87f491eb0f1f5e3c18ce"; md5.source = "5260e48b683f3968f369f5988dfa661d"; hasRunfiles = true; @@ -10280,13 +10280,13 @@ tl: { # no indentation }; "foekfont" = { stripPrefix = 0; - md5.run = "45935ffaee27ab245657662384305cdd"; + md5.run = "800965b962769eb580302a20088feb96"; md5.doc = "437c0af5b9def6f130b3f0efb1f35a92"; hasRunfiles = true; }; "foilhtml" = { stripPrefix = 0; - md5.run = "334f59e64989c4c4d45d66e6a6e69331"; + md5.run = "63da16b9822b6d3dc8cbd6d019920c55"; md5.doc = "7bbcd25166ae775369f67a09ae3aa46b"; md5.source = "c79f102ab3ec336e9b13f55deacc9700"; hasRunfiles = true; @@ -10294,7 +10294,7 @@ tl: { # no indentation }; "fonetika" = { stripPrefix = 0; - md5.run = "52efb4c384ed455a5e6a7cfe5a0afd33"; + md5.run = "0e7e60f435891c0a0b6ca3fec04cec45"; md5.doc = "8fa10a00287b5859ccbdd0c4b17ecf41"; hasRunfiles = true; }; @@ -10307,14 +10307,14 @@ tl: { # no indentation }; "fontawesome" = { stripPrefix = 0; - md5.run = "d725c78b643deacc7bd31894d4896eca"; + md5.run = "79bb1dddb8bdec77844d8328d6b02052"; md5.doc = "0225b7cebaff5217eac6c968a903bc2b"; hasRunfiles = true; version = "3.1.1"; }; "fontaxes" = { stripPrefix = 0; - md5.run = "7fe0dc4354d727d5d4545c64a6b7e3a7"; + md5.run = "98beacfb71b2616761946b5bea929715"; md5.doc = "c993b47174e0869bafea3f8968143181"; md5.source = "f1485751ce14077f60a3ae46f042ce63"; hasRunfiles = true; @@ -10344,7 +10344,7 @@ tl: { # no indentation }; "fontmfizz" = { stripPrefix = 0; - md5.run = "e1c9942d81b3d3ea61718b0a97fd319b"; + md5.run = "4bcf2b332bc341a5de231be4dd3e5d3b"; md5.doc = "e994dea9083d7c3eef8aefd64c1529b8"; hasRunfiles = true; }; @@ -10361,7 +10361,7 @@ tl: { # no indentation }; "fonts-tlwg" = { stripPrefix = 0; - md5.run = "f538d31867dd5fe199081318a52311ec"; + md5.run = "c73037383fe2b095ed438dc5d4fc628b"; md5.doc = "fe147b4aca8f9544f31d3c133a399c74"; md5.source = "7c9ce6ac051d23596be6123990d2d220"; hasRunfiles = true; @@ -10382,7 +10382,7 @@ tl: { # no indentation }; "fonttable" = { stripPrefix = 0; - md5.run = "c51bba6fed2954b3e0c5efd49d28eedb"; + md5.run = "8a00aae53b24432ef508f72786cc0b5c"; md5.doc = "d576e99f44b20d672d5759a4280be92b"; md5.source = "9c30e5f1b384b8bc6efbc4f0f58d08e5"; hasRunfiles = true; @@ -10400,7 +10400,7 @@ tl: { # no indentation }; "footbib" = { stripPrefix = 0; - md5.run = "bbcc8ff7a1dc95fbc10ace2971482546"; + md5.run = "bf70891b19622d5097f98bc36ce9bfc7"; md5.doc = "677ba12b5fa1ab3485aba88282d2020f"; md5.source = "fb96efcd59b3750e258d9d70dec8ecee"; hasRunfiles = true; @@ -10416,14 +10416,14 @@ tl: { # no indentation }; "footnotebackref" = { stripPrefix = 0; - md5.run = "122066fc41b1516df0203ca3a87086c4"; + md5.run = "a3d1b56cb05f5d627c90ccaa9e62764e"; md5.doc = "2b9a85a235a1f205ebcd5be7d10a8554"; hasRunfiles = true; version = "1.0"; }; "footnoterange" = { stripPrefix = 0; - md5.run = "97ecd414257c935c35e6c00b71bb64a4"; + md5.run = "16d83aa356f076f4c896dac2acdf647a"; md5.doc = "ad57dc12d237fedc1dbb4429be9892e5"; md5.source = "b8c2f8652bf626680f79ab69230e68eb"; hasRunfiles = true; @@ -10431,14 +10431,14 @@ tl: { # no indentation }; "footnpag" = { stripPrefix = 0; - md5.run = "da431e9a774102b72e1c3bac4b47abb9"; + md5.run = "3f7e36ff67008326792d079c57db01aa"; md5.doc = "2f6bcad9cac322ac7f270385d142d889"; md5.source = "c1ecda76ed9830c3e31803e743db22bd"; hasRunfiles = true; }; "forarray" = { stripPrefix = 0; - md5.run = "5bfb4edc7dbf20bbae4d24fccabb270d"; + md5.run = "fe87500276b6b1549ab41a1038e5cab7"; md5.doc = "ffcda0d05fca0e1feb8334741a218544"; md5.source = "b15c6cd006c854001251af54ebc7a5a0"; hasRunfiles = true; @@ -10446,7 +10446,7 @@ tl: { # no indentation }; "foreign" = { stripPrefix = 0; - md5.run = "2e5bf7886e6a7ba9ced890c53f0596d3"; + md5.run = "c6c390b763871810e5083f4c0f2d32b8"; md5.doc = "38648d4663f20795468f191be842e1f5"; md5.source = "e00dd01e8712809814608adc246c4748"; hasRunfiles = true; @@ -10454,7 +10454,7 @@ tl: { # no indentation }; "forest" = { stripPrefix = 0; - md5.run = "32757b37ca8c5810501e096b5f3a9251"; + md5.run = "ef5f1c18ffce8d2b966a71402a8b706e"; md5.doc = "1906c2fa20c6d99471ec68a47bc7fcff"; md5.source = "2ffcbf2bf531716f792ec38d5226b36d"; hasRunfiles = true; @@ -10462,7 +10462,7 @@ tl: { # no indentation }; "forloop" = { stripPrefix = 0; - md5.run = "51bddbfab9b7efb3526ce34a347455be"; + md5.run = "7c11e83192466d04356445ee52f04afd"; md5.doc = "5e392081afed25bbeeaf769e81201634"; md5.source = "d909e6f57e936dc594d420604a59d120"; hasRunfiles = true; @@ -10470,14 +10470,14 @@ tl: { # no indentation }; "formlett" = { stripPrefix = 0; - md5.run = "ca2d21c70d8c4e0b8b24f1805b521c6d"; + md5.run = "07fe0462c56445a02681c89b288c3bc8"; md5.doc = "4bda486f46c9cef97341be8bbec16814"; hasRunfiles = true; version = "2.3"; }; "formular" = { stripPrefix = 0; - md5.run = "d630325f6442e4d5fc8294778677c22d"; + md5.run = "c02a498533419663be72f7e54eece440"; md5.doc = "e55f64c043196040c06de7a9474d30f5"; md5.source = "52de334c0db06481e1e2ce808e909474"; hasRunfiles = true; @@ -10485,7 +10485,7 @@ tl: { # no indentation }; "fouridx" = { stripPrefix = 0; - md5.run = "f52827020fab3fe37b60980860bd0abb"; + md5.run = "0c534f672c63c7337afe7864951f532f"; md5.doc = "a91b0478a97b9efbc72231c760c2751b"; md5.source = "dd358dc9a4fdd653228fd1911d7f4006"; hasRunfiles = true; @@ -10493,7 +10493,7 @@ tl: { # no indentation }; "fourier" = { stripPrefix = 0; - md5.run = "759113d38cf94ae45d8d97856884dce1"; + md5.run = "a938167e5fad39ef1cf027d5a58b4a8c"; md5.doc = "fd8897dcd7a8a90ba6ed36d56dad2891"; md5.source = "46644bf804afa7116c7d16e33fd8017b"; hasRunfiles = true; @@ -10501,7 +10501,7 @@ tl: { # no indentation }; "fouriernc" = { stripPrefix = 0; - md5.run = "32b20ba78abad15372a73eab43802d3b"; + md5.run = "f5ea2a653405a7d9a6f568d0e9c18bbb"; md5.doc = "33fcd2eac450b1f9c4c4fee36971f1d7"; hasRunfiles = true; }; @@ -10527,47 +10527,47 @@ tl: { # no indentation }; "fragments" = { stripPrefix = 0; - md5.run = "bf1846ebfbd83d90e7f87afc03f23114"; + md5.run = "43fd4c8cdfd7b1507bdd62a34a5cf968"; md5.doc = "a942c3b3ce513dbad03dd6596d2f828e"; hasRunfiles = true; }; "frame" = { stripPrefix = 0; - md5.run = "40034a13f4366a2d461c9657d695c6d8"; + md5.run = "a15dd8a1a565bd9ba2a3e3e9614101d5"; md5.doc = "81fe881415a6adeb34f226f1656939da"; hasRunfiles = true; version = "1.0"; }; "framed" = { stripPrefix = 0; - md5.run = "e602c51704f15f8498357e3a7f0b209a"; + md5.run = "e86e6af8de263056236211b3ae01160f"; md5.doc = "ba10d7aad2bcec771b7cda105192b51c"; hasRunfiles = true; version = "0.96"; }; "francais-bst" = { stripPrefix = 0; - md5.run = "2f04625ce02692eaaa3017ec33f44477"; + md5.run = "a36421c9a8fc9945b3ec0c29f8813954"; md5.doc = "283db03c100054b23281df40f94c2244"; hasRunfiles = true; version = "1.1"; }; "frankenstein" = { stripPrefix = 0; - md5.run = "2248c7aebd3ec9b5258f9aa78a8a91d6"; + md5.run = "09239201746ed8513d6ae83bec29155e"; md5.doc = "220c3a8df9061f512ffeb25108ada728"; md5.source = "7baf9a6b260e3f22bb6a00c0103156f5"; hasRunfiles = true; }; "frcursive" = { stripPrefix = 0; - md5.run = "0ba5f96102c8e13caa76aa0d92e0f2a6"; + md5.run = "a8c3867f985afce600627dfd458a2836"; md5.doc = "30a8384c98b48dc357dfbe77f30f14d4"; hasRunfiles = true; }; "frege" = { stripPrefix = 0; - md5.run = "08ecdb50995ae2f1cf474e8cd0b6adc9"; + md5.run = "31349ce3793bcb0ebc5d8c3c5ab24290"; md5.doc = "b33d1d71d1703e65ed374df8efbf142e"; hasRunfiles = true; version = "1.3"; @@ -10595,14 +10595,14 @@ tl: { # no indentation }; "ftcap" = { stripPrefix = 0; - md5.run = "327d6b2be36ce9fa24e54dee0e4f607e"; + md5.run = "aae020303454a0cc5654d5bf0019f679"; md5.doc = "a9c2e8dba507360a2f7e070143cbed13"; hasRunfiles = true; version = "1.4"; }; "ftnxtra" = { stripPrefix = 0; - md5.run = "ec4f2b3ba1e1e20818f2c9330d6e292f"; + md5.run = "57fe937699b0b2d26eb991d2f0b42382"; md5.doc = "9c5cc1c7081680068e6aac0457875d3e"; md5.source = "4267f45926e7d6dc972d0504fe3f731b"; hasRunfiles = true; @@ -10610,7 +10610,7 @@ tl: { # no indentation }; "fullblck" = { stripPrefix = 0; - md5.run = "2ea3e8931f12e2ab112a1ffe5d10fdff"; + md5.run = "624e73ae6995daa109282d42758d4caf"; md5.doc = "5a2481032adfe9b0bf22b7cd1a3e6f8f"; md5.source = "80a7e609ecd8ec35ee1684ff80370ac4"; hasRunfiles = true; @@ -10618,7 +10618,7 @@ tl: { # no indentation }; "fullminipage" = { stripPrefix = 0; - md5.run = "b1d4619958593019e0b12a49e941e12f"; + md5.run = "e4d8b0b908f0a6ad298bb0f3d70cbddf"; md5.doc = "c407ff1fb93043a04a89fbf3bf2f2723"; md5.source = "7f4d2a1f78144487ae7a6c8df46a9d9c"; hasRunfiles = true; @@ -10626,21 +10626,21 @@ tl: { # no indentation }; "fullwidth" = { stripPrefix = 0; - md5.run = "4ec14abe07bdd09f60e58559d7b27424"; + md5.run = "6bdb62b219e5656e755e59641abc15c0"; md5.doc = "c58460f1ec025e3ac0b260a0fa709a7a"; hasRunfiles = true; version = "0.1"; }; "functan" = { stripPrefix = 0; - md5.run = "1f9013c12e40748878ce56c6f0482c19"; + md5.run = "877dd7023c8e4c0587d8f0e8c315283d"; md5.doc = "ea2bee0477821212e56959ae8d05b3f1"; md5.source = "a19afae62d5a3cecaa7e6340afa27488"; hasRunfiles = true; }; "fundus-calligra" = { stripPrefix = 0; - md5.run = "dafad7fbf649671ea19a7b5a4da610d6"; + md5.run = "53b6e6a51595ca556b0d11e01c3de68b"; md5.doc = "17129868cf3cfa0e4d55dba80a35b539"; md5.source = "0fe9a46a18545f19ce879e2cbdf644dc"; hasRunfiles = true; @@ -10648,12 +10648,12 @@ tl: { # no indentation }; "fundus-cyr" = { stripPrefix = 0; - md5.run = "fe83ca9fda43cefec9ffd280d4583d9c"; + md5.run = "0ce4650112c686ddcbdd69900296e553"; hasRunfiles = true; }; "fundus-sueterlin" = { stripPrefix = 0; - md5.run = "5f2f3984bc0faa78df07657305ec7e83"; + md5.run = "6857289e46e229d884a5d384f543f499"; md5.doc = "ad11be6e79cc4188e095dec9bc8c9023"; md5.source = "5e90397aee05de390bdec9cd556bfad5"; hasRunfiles = true; @@ -10661,13 +10661,13 @@ tl: { # no indentation }; "fwlw" = { stripPrefix = 0; - md5.run = "fad75f330c93ec4e6bcf4dfe85e69328"; + md5.run = "350235fd29e77616743955dd825f406e"; md5.doc = "b18fb5ead0750415e04470e8750d9f35"; hasRunfiles = true; }; "g-brief" = { stripPrefix = 0; - md5.run = "1a2e29329dfab9d37d746978e7d5ab49"; + md5.run = "939ac63c213c683423ce73e103933f82"; md5.doc = "7dc15f0d6cb6708465ce708a78e16ed9"; md5.source = "3505d1bf5c4cf95f97e50cdaf02a7967"; hasRunfiles = true; @@ -10675,14 +10675,14 @@ tl: { # no indentation }; "gaceta" = { stripPrefix = 0; - md5.run = "ccb73f8ae1bee5754181488b77c32c53"; + md5.run = "3c1a2de4fa426176945695149bea635d"; md5.doc = "e4bc87553cc48ef5b0e9037515b67095"; hasRunfiles = true; version = "1.06"; }; "galois" = { stripPrefix = 0; - md5.run = "84cc7f46df5b4eb66999dd70635a074c"; + md5.run = "45891db59dae73ebee3465747b71a07a"; md5.doc = "fe9c6f4a0e2df609cadef64c8ca31658"; md5.source = "632b6409b2262ad687a3fb06256836b1"; hasRunfiles = true; @@ -10690,7 +10690,7 @@ tl: { # no indentation }; "gamebook" = { stripPrefix = 0; - md5.run = "8ff32507744bce2dd441e27d59936a1f"; + md5.run = "635078ce4ba394747737589d1e13590a"; md5.doc = "df2813d8cb9f2ca68bbaf222e8d23ff7"; md5.source = "ca71186b2785ee6349368073be02cc91"; hasRunfiles = true; @@ -10705,59 +10705,59 @@ tl: { # no indentation "garuda-c90" = { stripPrefix = 0; deps."fonts-tlwg" = tl."fonts-tlwg"; - md5.run = "eb4df16080997a42b1bef99beb48e52d"; + md5.run = "c39eab7052658936b684281dbc500c65"; md5.source = "1154fec66a6e746ce8b67b214802a8b4"; hasRunfiles = true; }; "gastex" = { stripPrefix = 0; - md5.run = "75e479a463ecdec99cec28d04c9926d9"; + md5.run = "c2a5fce7d9cbb3ae965a8535436e6ecc"; md5.doc = "5817eac4efda5e374baa830557c5e0dd"; hasRunfiles = true; version = "2.8"; }; "gatech-thesis" = { stripPrefix = 0; - md5.run = "6a5ed71ca9c2c5e9f58b7d327840fc98"; + md5.run = "837483868a28a064c01f85ff67e4b11f"; md5.doc = "fd285964a55f1bc3ed9fbb9e41620a16"; hasRunfiles = true; version = "1.8"; }; "gates" = { stripPrefix = 0; - md5.run = "0e2821eaaca3cfcc9364a9f42607505d"; + md5.run = "a1c4c6e19a958d3917a51b27e5d80342"; md5.doc = "6347be8c3a359c3ea6cccfe36863fc42"; hasRunfiles = true; version = "0.2"; }; "gauss" = { stripPrefix = 0; - md5.run = "9daa1c653852abee06dbf6e3209af1dd"; + md5.run = "b633e5463e9f7176e0544a7035280b65"; md5.doc = "6d9f414b46cb73c2a4ba9627ec8aee6a"; hasRunfiles = true; }; "gb4e" = { stripPrefix = 0; - md5.run = "56461c3b27d390c7714e1c5bd751174f"; + md5.run = "f15d8eddb91e5a6e768b1651f8b5120e"; md5.doc = "596739105573ab7089161eb7ea47114c"; hasRunfiles = true; }; "gcard" = { stripPrefix = 0; - md5.run = "ebbe65dfa2ece019bc09805b57ed230c"; + md5.run = "5b245bc44e457b3cef826e32089fc05c"; md5.doc = "30b99f9036e84591be7fae533947e391"; hasRunfiles = true; }; "gchords" = { stripPrefix = 0; - md5.run = "7da01074aba0a1092c7802615873b95a"; + md5.run = "0bba7fb06194619504eddbfa3c9b3f5d"; md5.doc = "4dc1da15ff200137f4d9d4c38e5455d2"; hasRunfiles = true; version = "1.20"; }; "gcite" = { stripPrefix = 0; - md5.run = "e8067baa28c68fbfb0c22d52250a64dd"; + md5.run = "f853969cfc5b5d4d4ca5190609bba536"; md5.doc = "3898164e5b190815927c91d117b842b6"; md5.source = "27cd5967b5f2d38f79d60c10a94cf045"; hasRunfiles = true; @@ -10765,7 +10765,7 @@ tl: { # no indentation }; "gender" = { stripPrefix = 0; - md5.run = "67ec772be9be16653ce485bc51919dc2"; + md5.run = "172675b8470bf9db131d7eca58a3ade4"; md5.doc = "24e1991183f1bc57e2f433023b639945"; md5.source = "7de4475f94b7a04aaa9acef3e551000b"; hasRunfiles = true; @@ -10773,20 +10773,20 @@ tl: { # no indentation }; "gene-logic" = { stripPrefix = 0; - md5.run = "9e550619bee6d3c5e0e315afa4fe93c5"; + md5.run = "96a04c15c66b7d58aa378bb7fdaef7ee"; md5.doc = "5b87a3fb9b5736c3460535b8f5e95334"; hasRunfiles = true; version = "1.4"; }; "genealogy" = { stripPrefix = 0; - md5.run = "016cbe8a4d76718060b82007ec3bdee6"; + md5.run = "3c536f8c9a8f6c0af4009476af6605bb"; md5.doc = "a700e0fe87fc40558ccd9cf5e7e456a0"; hasRunfiles = true; }; "genealogytree" = { stripPrefix = 0; - md5.run = "ff0a9ab0e8939f833c54c4ed853f6bb7"; + md5.run = "aaa783214fecf0eeae21946999893ec6"; md5.doc = "6e9abe447a9a8e4cab9aa2f1791a08ef"; hasRunfiles = true; version = "0.10"; @@ -10798,7 +10798,7 @@ tl: { # no indentation }; "genmpage" = { stripPrefix = 0; - md5.run = "ca5b8fcc2851f0b4525849f29913fc33"; + md5.run = "101b23e307a33de1f3b9a725a9a811f9"; md5.doc = "1627d1cb7156f46a18c1c6fe8ebb9295"; md5.source = "b6add86204b8f351302d3a8d0fa74c02"; hasRunfiles = true; @@ -10806,7 +10806,7 @@ tl: { # no indentation }; "gentium-tug" = { stripPrefix = 0; - md5.run = "a39a11b269c2de7781609a2501eb821b"; + md5.run = "3a2b95d345c5d050c2764fd5f9d32fdd"; md5.doc = "5893ee9ddc2c20f9083c41e1320dbeda"; md5.source = "ee911eb4cfa3d9e4823b502a999c6a18"; hasRunfiles = true; @@ -10854,7 +10854,7 @@ tl: { # no indentation }; "geschichtsfrkl" = { stripPrefix = 0; - md5.run = "12d69b1b945a627b941589529f86e20c"; + md5.run = "a4550e039bb72056a66b2a113eb75f1b"; md5.doc = "8198d06bd74471538672267f92fe2b82"; md5.source = "6e2be93ce783375cd184ddb885a9ff99"; hasRunfiles = true; @@ -10862,13 +10862,13 @@ tl: { # no indentation }; "getfiledate" = { stripPrefix = 0; - md5.run = "260c991dc206dd3523547afe189ccea6"; + md5.run = "91ce9a3e3f3d20df6b88348976eaa882"; md5.doc = "9168d8661b18912d3c8c79d33c4a63a5"; hasRunfiles = true; version = "1.2"; }; "getmap" = { - md5.run = "65fee849638eb750efa1ae1e63b69b60"; + md5.run = "18f0e71791933df6edf627fe265edc93"; md5.doc = "f4db573f30761c0fc6bb7019d9fa1450"; hasRunfiles = true; version = "1.8"; @@ -10882,88 +10882,88 @@ tl: { # no indentation }; "gfsartemisia" = { stripPrefix = 0; - md5.run = "2d1cfaff3159a5775d4373e821225abc"; + md5.run = "43f7c4b79393f950ca39e50c7733ab77"; md5.doc = "69afbbbe0e961817dbec4aa2f8127c0e"; hasRunfiles = true; version = "1.0"; }; "gfsbaskerville" = { stripPrefix = 0; - md5.run = "a06b9c657463a7343711ef8bbcb3c916"; + md5.run = "583297bff403e502f7b1bc65563ada2e"; md5.doc = "511ef4b066f0969656f55d7c55ebc059"; hasRunfiles = true; version = "1.0"; }; "gfsbodoni" = { stripPrefix = 0; - md5.run = "6147c7e04584faf8bb47481266ed62f3"; + md5.run = "eb06bb61953c6f0ce9a94cc078dedd8c"; md5.doc = "017a2079ea4aa05680f0191e6a0d3475"; hasRunfiles = true; version = "1.01"; }; "gfscomplutum" = { stripPrefix = 0; - md5.run = "8ead73edabd40882b93b241091fa7906"; + md5.run = "28932b332c846c3dd37b7d33145a3e34"; md5.doc = "710f2f73cc48e9b0430e278c16ad5fdf"; hasRunfiles = true; version = "1.0"; }; "gfsdidot" = { stripPrefix = 0; - md5.run = "8985ed1bb19d63f7889181de5e005428"; + md5.run = "e3df5fd769a3e3a49e2ba525270772b5"; md5.doc = "61d246138a620fa0a73fa4b928555d9c"; hasRunfiles = true; }; "gfsneohellenic" = { stripPrefix = 0; - md5.run = "fe8b735c9f9c5b673c5303de80beef61"; + md5.run = "aa81653e8fa8fdba718eb5a926e5bb8d"; md5.doc = "71b4832ef1abf64bf4f69674f37d585c"; hasRunfiles = true; }; "gfsporson" = { stripPrefix = 0; - md5.run = "c85c76c18950fdc0d74c58403a9095ba"; + md5.run = "0425db4be4b1acbfc6194bec1bb4727a"; md5.doc = "a086f342f4b8b37e444b8d41cdeefee5"; hasRunfiles = true; version = "1.01"; }; "gfssolomos" = { stripPrefix = 0; - md5.run = "8e6833fa0332c5d42fa643e72b9c04aa"; + md5.run = "fe06a4c89506fa3fca805e1c0cea348d"; md5.doc = "6985e61ed12cc81144e6f9644b775c07"; hasRunfiles = true; version = "1.0"; }; "ghab" = { stripPrefix = 0; - md5.run = "778ac0d0c5a7c7d5b4c20cee95db5c55"; + md5.run = "d312123f7ed13b60f2f9d181f57204ad"; md5.doc = "002b9dbec431caf178683292c6280f48"; hasRunfiles = true; version = "0.5"; }; "ghsystem" = { stripPrefix = 0; - md5.run = "a8ee81c32561dafa51377d2a87fb9be8"; + md5.run = "8877c6f7bbf81dabc59866b8be9f5df7"; md5.doc = "e32d33a3029764a88b0ec1f9132e6e46"; hasRunfiles = true; version = "4.6"; }; "gillcm" = { stripPrefix = 0; - md5.run = "cb433b814af526f58e910320f452f5f6"; + md5.run = "4f1a97dbceaaf6f1265d6d6e3e4d3bda"; md5.doc = "d8afef9397f9027291fea5e1afe8564e"; hasRunfiles = true; version = "1.1"; }; "gillius" = { stripPrefix = 0; - md5.run = "d8e93061f08773cd5856b7311af53b09"; + md5.run = "06cb54e4243ccf2d383b4ffc60bf387c"; md5.doc = "0a2ea1fac8652d170175c6f5ea53da19"; hasRunfiles = true; }; "gincltex" = { stripPrefix = 0; - md5.run = "30fe74cf006ba6065556e5d8c23ff315"; + md5.run = "12c665f89c67d9d891f0b1951b8990fd"; md5.doc = "fcb4b8db0dc8f9fe64b10b74e9fd1f35"; md5.source = "e011a11644054127efe79d08e0b4f15c"; hasRunfiles = true; @@ -10971,7 +10971,7 @@ tl: { # no indentation }; "ginpenc" = { stripPrefix = 0; - md5.run = "af666f2c38bb999620daf6749b942228"; + md5.run = "de13f23ccd63cb7ae9c48f109de62459"; md5.doc = "6a80de656490b00244648f7e7429aa18"; md5.source = "950d09a462204b5d819536aef218a72f"; hasRunfiles = true; @@ -10979,27 +10979,27 @@ tl: { # no indentation }; "gitinfo" = { stripPrefix = 0; - md5.run = "d97faa06735ee2f72f7d3881db79632f"; + md5.run = "af9614bd912c2c9dfffadf3091245a37"; md5.doc = "9f9427ee2f0b48c72fd43ac6ca3be1cb"; hasRunfiles = true; version = "1.0"; }; "gitinfo2" = { stripPrefix = 0; - md5.run = "fe3ef252ba7639a6dfeedf578527e946"; + md5.run = "55b6cd2850174e78632588b020f77880"; md5.doc = "0f2149783365c010a8a65888e3b19718"; hasRunfiles = true; version = "2.0.4"; }; "gloss" = { stripPrefix = 0; - md5.run = "7a47b102b2be4afde30a10e54415c1b7"; + md5.run = "3073041dec9e96dea881f57aaf3f80fa"; md5.doc = "682422c42669ec9a7ee8b9a25825105a"; hasRunfiles = true; version = "1.5.2"; }; "glossaries" = { - md5.run = "86d063f5c6e40cb19b3b7c840adfd362"; + md5.run = "ff441241eed511178d7505b8330f310f"; md5.doc = "b49008ddd553e87fbdc9fe038452d019"; md5.source = "f6f9b85cb6447128a8851bc7867805fb"; hasRunfiles = true; @@ -11007,7 +11007,7 @@ tl: { # no indentation }; "glossaries-danish" = { stripPrefix = 0; - md5.run = "4b99038b184a4fe39061a557d9a6b886"; + md5.run = "83f6af57eee2ece5d9a0c81ee6c4785c"; md5.doc = "b3efd13d680d1fb2f05e1cfd331446b7"; md5.source = "aad8479065dc4d16b79ad940df6f18c8"; hasRunfiles = true; @@ -11015,7 +11015,7 @@ tl: { # no indentation }; "glossaries-dutch" = { stripPrefix = 0; - md5.run = "4b396667ed0a211df3be756de26f6bc3"; + md5.run = "e088a49b109ec9f9a90785194f6667f6"; md5.doc = "3a8f117debb1dad9f00812934a7df6ae"; md5.source = "159d973d3a88fbf72119c4d4a649b79e"; hasRunfiles = true; @@ -11023,7 +11023,7 @@ tl: { # no indentation }; "glossaries-english" = { stripPrefix = 0; - md5.run = "42bd2b68c0f388785da596eebd42978e"; + md5.run = "f1ed9502bf6287b85a756ee4cd55c855"; md5.doc = "0f1dd95868377d44aeb4ad6734b79cd9"; md5.source = "ca3558c2cb71487a5bdba7fd2be7d4e4"; hasRunfiles = true; @@ -11031,7 +11031,7 @@ tl: { # no indentation }; "glossaries-french" = { stripPrefix = 0; - md5.run = "dc4bbe0a69ab0dc79c461a072e10a041"; + md5.run = "9bc2ee368baed7e9d2db7817e7223f62"; md5.doc = "6b9b0ec12abdd17b10a758b1f5e345a7"; md5.source = "134b9a470920c6213935b218ab349887"; hasRunfiles = true; @@ -11039,7 +11039,7 @@ tl: { # no indentation }; "glossaries-german" = { stripPrefix = 0; - md5.run = "bdee918f14338a685ada5bed92e0958f"; + md5.run = "dbb973658a939b4e1b8779986fcf138f"; md5.doc = "e4463b63112eee192a1c62480348c57d"; md5.source = "90c6951007fbb2f330b21e7f4eeff99a"; hasRunfiles = true; @@ -11047,7 +11047,7 @@ tl: { # no indentation }; "glossaries-irish" = { stripPrefix = 0; - md5.run = "4ec2e955746b81ffe207fa09abd878e2"; + md5.run = "5b00684990638eee271d99a013a5be43"; md5.doc = "cf952410e52d6e06efc4aef023d7ddfd"; md5.source = "0b5d39c7b6309c5690df5e8c315ef582"; hasRunfiles = true; @@ -11055,7 +11055,7 @@ tl: { # no indentation }; "glossaries-italian" = { stripPrefix = 0; - md5.run = "fa121a527562c3ffa9a3c9554b23e731"; + md5.run = "01f1a02de96c45917b19c8867c53acfb"; md5.doc = "de46ea0f20f8fb8126e1d011eddd9208"; md5.source = "f61acafe8b30cee5b83ae25c859c3c14"; hasRunfiles = true; @@ -11063,7 +11063,7 @@ tl: { # no indentation }; "glossaries-magyar" = { stripPrefix = 0; - md5.run = "41fe312d76325da6839a99a56d8a7e6f"; + md5.run = "7c1c3b0263be61b6f63bcba9f18895cc"; md5.doc = "a76fb12a9f493716c39edf7648e548e3"; md5.source = "c74625426f9a43164fe7023e8b685d5e"; hasRunfiles = true; @@ -11071,7 +11071,7 @@ tl: { # no indentation }; "glossaries-polish" = { stripPrefix = 0; - md5.run = "9bcba123b7c88f476276b93ecb5fe77b"; + md5.run = "b12b5c9b52729aca260810370eba8b59"; md5.doc = "9c4504907f3e76714cb4e34915f1270d"; md5.source = "0a57b796981be4b231f6c2b0d807957c"; hasRunfiles = true; @@ -11079,7 +11079,7 @@ tl: { # no indentation }; "glossaries-portuges" = { stripPrefix = 0; - md5.run = "ed34c754fe066c137f7a718dc0a9dc7c"; + md5.run = "64a1d82445a81258ae0f4c0c9356315e"; md5.doc = "90173f595dcec3eac358a969982251cb"; md5.source = "677f806ddaa5c62b91ab8384e592b710"; hasRunfiles = true; @@ -11087,7 +11087,7 @@ tl: { # no indentation }; "glossaries-serbian" = { stripPrefix = 0; - md5.run = "9a87bc24f6b004c0fcdf2463756849bf"; + md5.run = "af048b5d6d9b36326fa4e36da4acca9f"; md5.doc = "08ccdccb228e00c34728b30facaed2d5"; md5.source = "a64bd97ac01576813b10b074e31e6659"; hasRunfiles = true; @@ -11095,7 +11095,7 @@ tl: { # no indentation }; "glossaries-spanish" = { stripPrefix = 0; - md5.run = "1a660e42a13b04583336685f27612356"; + md5.run = "5da2cbff47a06ce8335c9aab6d4ee1e9"; md5.doc = "b830f1d90cc3b428280b91771cc0cb02"; md5.source = "60822976e5ecbc3d846f152029b4900f"; hasRunfiles = true; @@ -11108,14 +11108,14 @@ tl: { # no indentation }; "gmdoc" = { stripPrefix = 0; - md5.run = "c527331ab8eaaa7116565eca4434ea29"; + md5.run = "be6ad21df504fcba1fb97a273d8f7481"; md5.doc = "5e516d2b0e663c0c72679b113670d15e"; hasRunfiles = true; version = "0.993"; }; "gmdoc-enhance" = { stripPrefix = 0; - md5.run = "e56325c79a895ebf07d6f5e0bdbf2ecb"; + md5.run = "308139ea4c8a1f9c2eddffc967168d36"; md5.doc = "0f7ad99165df97db42f54021b8fed775"; md5.source = "d4151798fc8b317e08c0200b036d5081"; hasRunfiles = true; @@ -11123,7 +11123,7 @@ tl: { # no indentation }; "gmiflink" = { stripPrefix = 0; - md5.run = "7de1d4af7c41280ee143559bebd03bd3"; + md5.run = "0cc67c97eb1e87437427b3aa3162f45a"; md5.doc = "dc294ea2d194923413d3b330687c1fed"; hasRunfiles = true; version = "v0.97"; @@ -11138,35 +11138,35 @@ tl: { # no indentation }; "gmutils" = { stripPrefix = 0; - md5.run = "3c817398585f5c392418494d8817b87e"; + md5.run = "fe194debacc0ca40636e85b236d9f6d9"; md5.doc = "c583fbe62668530ce1786a69922e9aac"; hasRunfiles = true; version = "v0.996"; }; "gmverb" = { stripPrefix = 0; - md5.run = "ddfa7df17c374b98563fee3707cdbc60"; + md5.run = "138107659c756a868a24a3cc63aa3d73"; md5.doc = "d3aea09920313bacdb6ff3a2b05fbad4"; hasRunfiles = true; version = "v0.98"; }; "gmverse" = { stripPrefix = 0; - md5.run = "5ee07e83edc17d83a1c7c95b1f63a483"; + md5.run = "aa67383ccc5bd15cf2995ffc90613fdd"; md5.doc = "a9f025e5f81a7de03f5e810abc88daab"; hasRunfiles = true; version = "v0.73"; }; "gnu-freefont" = { stripPrefix = 0; - md5.run = "cae1bd2925e8f10eb174311f114d84aa"; + md5.run = "0b0ef5bd6bc2d07caa1d33affabc03c5"; md5.doc = "9f90f2fc0d710aa8f731049f9aba7c41"; md5.source = "9fcd95197b3ffe161f00569a9046d493"; hasRunfiles = true; }; "gnuplottex" = { stripPrefix = 0; - md5.run = "3bed3acc2da4f9e89fb99115b006dc4b"; + md5.run = "80acc3f5efcc1b8ae346c076d3bff32d"; md5.doc = "1a0d7495d442edd506477b7550b60b6b"; md5.source = "f1e6cb7b097b240f8fffd2617c3b416a"; hasRunfiles = true; @@ -11174,7 +11174,7 @@ tl: { # no indentation }; "go" = { stripPrefix = 0; - md5.run = "2f5c9461ed434a6ec2ee938451e35546"; + md5.run = "12122c49fac4c537c6b867a2e6049f0e"; md5.doc = "2ae4e500a317632612e2fa9447f6bb48"; md5.source = "d8d5167900430db27a012106fea2e637"; hasRunfiles = true; @@ -11189,14 +11189,14 @@ tl: { # no indentation }; "gothic" = { stripPrefix = 0; - md5.run = "d0dfe0b3f12068e0039e3331b30d896d"; + md5.run = "4943d32d968b8cbd1644239c00010ead"; md5.doc = "820e1a23928c97a1ee7dd4428303315e"; md5.source = "54640bc7ed2153f03aa5c4b396f00621"; hasRunfiles = true; }; "gradientframe" = { stripPrefix = 0; - md5.run = "35b3c72898af58ae7744629c4ed8d0da"; + md5.run = "97614dde542273c17cbdf93613ac4d12"; md5.doc = "f8fcd16355c4c07206032426d1005e97"; md5.source = "40569d5309975a14fc092225f6c90d5f"; hasRunfiles = true; @@ -11204,14 +11204,14 @@ tl: { # no indentation }; "grafcet" = { stripPrefix = 0; - md5.run = "b1b76482c00e5734bb7d30ddfa67384c"; + md5.run = "61860b600e4afcbba123d6b6c68153a3"; md5.doc = "39fa5f6398c77b491ac80e6ef51aef19"; hasRunfiles = true; version = "1.3.5"; }; "graphbox" = { stripPrefix = 0; - md5.run = "c957789d462ef5ba634beb2cb103e2d5"; + md5.run = "31ab68a4e6972657e82966d7c0448595"; md5.doc = "8a1bd85c8848a1fd0c8fb0fd41346ab6"; md5.source = "bffe913a58fc16a0b00c938ad5c8b691"; hasRunfiles = true; @@ -11234,7 +11234,7 @@ tl: { # no indentation }; "graphicx-psmin" = { stripPrefix = 0; - md5.run = "fd4adffb1319384f6ef81fb22cda5956"; + md5.run = "f258f779bc23351d2583867b6e46732f"; md5.doc = "650251bfb1e08272ddb8b35413745120"; md5.source = "c661d7604b4b34fc746a03f8ab2097ab"; hasRunfiles = true; @@ -11242,7 +11242,7 @@ tl: { # no indentation }; "graphicxbox" = { stripPrefix = 0; - md5.run = "645cc79c4ca4017c833d0304d0b6705f"; + md5.run = "7f5889f347b255e71b9b5c1565537393"; md5.doc = "2ee6a23bba06d86909da98fd02753e65"; md5.source = "c76008667c885cd5d12582b017a07933"; hasRunfiles = true; @@ -11250,7 +11250,7 @@ tl: { # no indentation }; "graphviz" = { stripPrefix = 0; - md5.run = "6a39297f8bb145164acb596adb9a46e6"; + md5.run = "07db8da6d40f83e8db1d8eb4f669380c"; md5.doc = "7cffc925df31961a323147498731d999"; md5.source = "fd36342dcd062d5dd38e1424b53e1d39"; hasRunfiles = true; @@ -11258,21 +11258,21 @@ tl: { # no indentation }; "greek-fontenc" = { stripPrefix = 0; - md5.run = "f3f446504d26ad8ad23cb4799c9b52d2"; + md5.run = "cee5698eca301bfd18cd80012d3eb5f7"; md5.doc = "f04c6c43f95a6dfed0b7b052c1ba50c2"; hasRunfiles = true; version = "0.12"; }; "greek-inputenc" = { stripPrefix = 0; - md5.run = "3d779e181d57f9602547cb061fb07ba2"; + md5.run = "a9f0f7be6da2f5f3820460a5c3f40668"; md5.doc = "074496892ff3fef36ec176a2b72474c2"; hasRunfiles = true; version = "1.5"; }; "greekdates" = { stripPrefix = 0; - md5.run = "e62241eb1c941692be397be3d17e9b19"; + md5.run = "20070679ff4f9ac73e295f036706a5d1"; md5.doc = "142205dc61f070aa27cf1ba1a3684cbc"; md5.source = "d25909113a46a30a7302f5852f08201a"; hasRunfiles = true; @@ -11280,26 +11280,26 @@ tl: { # no indentation }; "greektex" = { stripPrefix = 0; - md5.run = "2bfd330e532efb5e08bb6b53f45f31eb"; + md5.run = "75e868f0ccad2256c602c9f3b6760c61"; md5.doc = "a0801ac1d97b0fb4103ba3836aef38df"; hasRunfiles = true; }; "greenpoint" = { stripPrefix = 0; - md5.run = "a711b61ee2933f9737fdf5715f47e011"; + md5.run = "b7b5530c768ecf64b3c5c6449c81d7d0"; md5.doc = "8030bc0656c93ed0bfc9e32bbe34a110"; hasRunfiles = true; }; "grfpaste" = { stripPrefix = 0; - md5.run = "de95176c535d52bcffa6ffc25ac727f7"; + md5.run = "83ac087650bc5fc6d5cad4fddae3b33d"; md5.doc = "ddfc51e840499f3f6986595f2f41ebff"; hasRunfiles = true; version = "0.2"; }; "grid" = { stripPrefix = 0; - md5.run = "6e89b3efdbd6d7c32ddcba787a844644"; + md5.run = "67e19c8f00d2790d598992cbf4921d68"; md5.doc = "ad7bc968bcd7c8246faf7e53d2224c0b"; md5.source = "74d9197bc283d823cac552a21c7271d0"; hasRunfiles = true; @@ -11307,14 +11307,14 @@ tl: { # no indentation }; "grid-system" = { stripPrefix = 0; - md5.run = "40321bcd1d266aab07dbaaf8c91e7830"; + md5.run = "584939f12eeeb845ed280db012462d41"; md5.doc = "ffa1af6799458a43efe170de91aa8bd5"; hasRunfiles = true; version = "0.3.0"; }; "gridset" = { stripPrefix = 0; - md5.run = "f44cd5f96455d8624f2c89b9e22a7991"; + md5.run = "20fec142af593505a9abd61ebc37f23e"; md5.doc = "3f15c9b1e4b93db181f31e4b72a8663b"; md5.source = "aed5ddacbb9e6f4c62db858db37a8e06"; hasRunfiles = true; @@ -11322,7 +11322,7 @@ tl: { # no indentation }; "grotesq" = { stripPrefix = 0; - md5.run = "6c6d498ea522bda13f6f5a115ce42697"; + md5.run = "5d73074d4ac28215841a5d2b74e38c5a"; md5.doc = "273b42fc506ba09909797b6890f82108"; hasRunfiles = true; }; @@ -11336,7 +11336,7 @@ tl: { # no indentation }; "gsemthesis" = { stripPrefix = 0; - md5.run = "bd86ee7dad91cfa46f4afbb1cc549980"; + md5.run = "d70530575533e1b2de561ebadbe66ebe"; md5.doc = "6252fc132fb20a99a29c8b781fd856e1"; md5.source = "6a9f57b1cffd42ad0d16cc0573ecb82a"; hasRunfiles = true; @@ -11350,7 +11350,7 @@ tl: { # no indentation }; "gtl" = { stripPrefix = 0; - md5.run = "5cac5853022c63bf459b6dfd0b4ebbed"; + md5.run = "3f9f27d09f2b6fbf1c28b43a70681a85"; md5.doc = "68ebe0b99a3ad8b6cefdafa918a3dc9b"; md5.source = "ceb3c6b69ba4383fa81a16f37dc29c23"; hasRunfiles = true; @@ -11358,14 +11358,14 @@ tl: { # no indentation }; "gtrcrd" = { stripPrefix = 0; - md5.run = "d9bf0a37bd0f529cd1368d6b664efbb3"; + md5.run = "3c6796678eed69552638b0eb7e4fffb4"; md5.doc = "53a63efd8dab06774eb630726f5eae7e"; hasRunfiles = true; version = "1.1"; }; "gu" = { stripPrefix = 0; - md5.run = "03b0bbaad3d2ed1fe3ff7d3fe1fd6829"; + md5.run = "033bf59d96e1a775c5e46107367d01e0"; md5.doc = "ca250a126b47a2736a706be4831d1319"; hasRunfiles = true; }; @@ -11376,7 +11376,7 @@ tl: { # no indentation }; "guitar" = { stripPrefix = 0; - md5.run = "9dcd8ac28c09a2db995ffe17bdbfca6f"; + md5.run = "d532f59cad276801cd4034e7b7a522ab"; md5.doc = "eedfb4afdeaac385eec025c4fb414c0b"; md5.source = "dca0dede2123a654e2dad09fbe04189e"; hasRunfiles = true; @@ -11384,14 +11384,14 @@ tl: { # no indentation }; "guitarchordschemes" = { stripPrefix = 0; - md5.run = "0825584ceb7911446606a1e852393b78"; + md5.run = "cceaa90e6b0f357b7d1e9dd5d941bf33"; md5.doc = "af0f6fe16d6cb7d97fa5f510c2e01a79"; hasRunfiles = true; version = "0.6"; }; "guitlogo" = { stripPrefix = 0; - md5.run = "1179d595360aeee0898ef78cd098a6b5"; + md5.run = "37e980b847191b9b924b41745fe7ccf2"; md5.doc = "91896253753460fdfe8ab4ef1c308efa"; md5.source = "fb90679689d3c5dde5b84075007219ce"; hasRunfiles = true; @@ -11410,26 +11410,26 @@ tl: { # no indentation }; "hacm" = { stripPrefix = 0; - md5.run = "10138ef27edcfc80c36d2771c6e6ff71"; + md5.run = "40a24e1a8f81057d9fe1867bfe84d0a7"; md5.doc = "721f0b22493711523db52dd8ec245c83"; hasRunfiles = true; version = "0.1"; }; "handout" = { stripPrefix = 0; - md5.run = "14231c571f0ba0a884fea0ec99fde979"; + md5.run = "0b715049b435e82c3c6729e520eb2c29"; md5.doc = "73c583b071d42c7172ab9d666f9650c0"; hasRunfiles = true; version = "1.2.0"; }; "hands" = { stripPrefix = 0; - md5.run = "435e12f51a5f322bea9126ce7d10e145"; + md5.run = "5bba758b437857fa8a7bb2a7052b92f4"; hasRunfiles = true; }; "hanging" = { stripPrefix = 0; - md5.run = "cb9974b6057296d620287c1adc31b220"; + md5.run = "1ef6468b7e810b641fec0f7e90873e0f"; md5.doc = "33abd3b75b53278e8e5b4bec598c5037"; md5.source = "13c3ae79418f3266dd455475e1c208ac"; hasRunfiles = true; @@ -11437,7 +11437,7 @@ tl: { # no indentation }; "hanoi" = { stripPrefix = 0; - md5.run = "c5337f23b6321fb22aff6dadbf52b29e"; + md5.run = "a52963e4758631dacdd7a48ffbe3d0bb"; hasRunfiles = true; version = "20120101"; }; @@ -11449,14 +11449,14 @@ tl: { # no indentation }; "har2nat" = { stripPrefix = 0; - md5.run = "61f0ba442daee94256137ab3c2df0500"; + md5.run = "ebffd005d32617078de71a1f773d3544"; md5.doc = "cf502dac5a5ad2226f3f279b59128d89"; hasRunfiles = true; version = "1.0"; }; "hardwrap" = { stripPrefix = 0; - md5.run = "6eeff459b4f93b11625560ad0efb9204"; + md5.run = "895f0833284f78c47229f2416ede6fb6"; md5.doc = "06903bbce9917f391afab0a8f337a480"; md5.source = "552f8bb7bec5fa3211f6024eacee43d6"; hasRunfiles = true; @@ -11464,27 +11464,27 @@ tl: { # no indentation }; "harmony" = { stripPrefix = 0; - md5.run = "31ea56ca9e7529819e21a9507ed80b09"; + md5.run = "e65754320ff59f5ca7738e8a6a59481e"; md5.doc = "23b7a7351a3c6a0f14895d921a4028d8"; hasRunfiles = true; }; "harnon-cv" = { stripPrefix = 0; - md5.run = "6260adcf2e7cfaf4a37835c47a5d3df0"; + md5.run = "b8171b4caec8754ad8a4acd11d57d161"; md5.doc = "6e92f9dcc470e2efcdd5f686343e58bd"; hasRunfiles = true; version = "1.0"; }; "harpoon" = { stripPrefix = 0; - md5.run = "b83c21b237cccecd8c04dde578834e2b"; + md5.run = "6b422308437596d11c63e405a9e3d9c5"; md5.doc = "5393bb21c5942bfd74aa33a07a041bc1"; hasRunfiles = true; version = "1.0"; }; "harvard" = { stripPrefix = 0; - md5.run = "8e4b2f9cea35cfae1eee7e7de207e527"; + md5.run = "49105a0ad8e76307b9297e3c33686056"; md5.doc = "37ce414c4c7d23d6884261c08788f4cb"; md5.source = "a13a80b91103b31f36b9020f0ed8eda0"; hasRunfiles = true; @@ -11492,14 +11492,14 @@ tl: { # no indentation }; "harveyballs" = { stripPrefix = 0; - md5.run = "cd38f897f90eedfcd8a678278c2233d0"; + md5.run = "dd35155bea8800dfdfe257d7afa296e4"; md5.doc = "f9629a6820d8bdd76dff6d9f3e5feab5"; hasRunfiles = true; version = "1.1"; }; "harvmac" = { stripPrefix = 0; - md5.run = "396b003b9745cce03b48441f661ac4a4"; + md5.run = "2cd1389f7be0bc3381a7f1e9566972a4"; md5.doc = "97bc13493ac803d25e795f4a1ac61b17"; hasRunfiles = true; }; @@ -11520,21 +11520,21 @@ tl: { # no indentation }; "havannah" = { stripPrefix = 0; - md5.run = "ebaa32dda6d928e6f45d39d7f39b6516"; + md5.run = "6a3b1c5e95b6da772fa6c16b7d6ef895"; md5.doc = "b8e66b3eb1e3656b13d5161708b71798"; md5.source = "4bdada69198c61343f8ce50f42990f4c"; hasRunfiles = true; }; "hc" = { stripPrefix = 0; - md5.run = "dca0aff11990d9cca563d7164f1715d2"; + md5.run = "2dfd9f3c094166095a4dc90e2238f7de"; md5.doc = "ca152243389fd0bb5c74926e8aba2205"; md5.source = "30ba21a2fbe8ca6e7a01c19ef989109c"; hasRunfiles = true; }; "he-she" = { stripPrefix = 0; - md5.run = "a5081ad79e85ca37e612f992c08f0e49"; + md5.run = "3acc1ecdb2c7b1bea7f5f7007ba06fd8"; md5.doc = "1ef1cd8c5cdbd2b3a1c3ee5d26cc78c5"; hasRunfiles = true; version = "1.1"; @@ -11546,62 +11546,62 @@ tl: { # no indentation }; "hep" = { stripPrefix = 0; - md5.run = "f0ad6b7a4ec33d69daa788b2130f35db"; + md5.run = "591f79e7ec1ad02f366a48577c0b8750"; md5.doc = "db02d289e8ec05ccc915ff3f1589b145"; hasRunfiles = true; version = "1.0"; }; "hepnames" = { stripPrefix = 0; - md5.run = "bb3374a1c400a68ccef79eb91652cd0b"; + md5.run = "df471c79f33756cb30545497655d818d"; md5.doc = "b5d634229381013ed8f1a34fc9d62e37"; hasRunfiles = true; version = "2.0"; }; "hepparticles" = { stripPrefix = 0; - md5.run = "f4f3e28689de9585f6f25477b4b23684"; + md5.run = "1dfd3f79015f2e6c945bd57f04d820e8"; md5.doc = "63bc82f415508a89fed86dafcb3d67ba"; hasRunfiles = true; version = "2.0"; }; "hepthesis" = { stripPrefix = 0; - md5.run = "fd06512442f06b64d40aa6b37cd9fb83"; + md5.run = "f236cd4bdfc465e7e7008b51ff69b709"; md5.doc = "0acecea9e5ad0d2833aa1982a8d26ea8"; hasRunfiles = true; version = "1.5.0"; }; "hepunits" = { stripPrefix = 0; - md5.run = "89e0bfb01cf42a7efbf3e84033e31f72"; + md5.run = "a2999a3421088fe06e105d4097f9fe22"; md5.doc = "cf2e9920b39e14a839ed35f169b5bd39"; hasRunfiles = true; version = "1.1.1"; }; "here" = { stripPrefix = 0; - md5.run = "8bf818b98b1586a9c3275feb1f8c229b"; + md5.run = "06980dee358f9f8f0e6c686f3b0b5778"; md5.doc = "17f98e4383e70a11aa6661ea1f460a0f"; hasRunfiles = true; }; "heuristica" = { stripPrefix = 0; - md5.run = "b31ecd6d2fc1e1d256a0dd678401c957"; + md5.run = "3ee34ed938e7cf288522dc29b708aef0"; md5.doc = "858f0c4944a4052d2241d82031bbbc32"; hasRunfiles = true; version = "1.08"; }; "hexgame" = { stripPrefix = 0; - md5.run = "bb9eb4c1d5aea8e3ad4ce4deab8303ae"; + md5.run = "a568cf0dade60e1bc99c94a7228d0c31"; md5.doc = "0835fbd02058ded73dc378d6512a52f9"; hasRunfiles = true; version = "1.0"; }; "hf-tikz" = { stripPrefix = 0; - md5.run = "c1b11707b4d6dc6b17e8deb2a098ba93"; + md5.run = "d04ba3f6231abd1d5e89ffb66019fdf6"; md5.doc = "65f7288d3da079a2f77c338d32cde782"; md5.source = "daac43711cfa1825d39786f4b4a518e9"; hasRunfiles = true; @@ -11609,13 +11609,13 @@ tl: { # no indentation }; "hfbright" = { stripPrefix = 0; - md5.run = "5aa20a109a66a94d231f399e8562aadc"; + md5.run = "5ad4ea430fa0f40be26f77001ecb1a50"; md5.doc = "719e48d68c5e0d341c4e0a93673d81c2"; hasRunfiles = true; }; "hfoldsty" = { stripPrefix = 0; - md5.run = "a23445c06592801c6feaa4e38366a831"; + md5.run = "9fbe1369989db93c2909a164dc817dae"; md5.doc = "fd1df1765caf66cd9e7653a0b98f1995"; md5.source = "176d173c4fbfaeb88a2a4afa8bbc3e4c"; hasRunfiles = true; @@ -11623,7 +11623,7 @@ tl: { # no indentation }; "hhtensor" = { stripPrefix = 0; - md5.run = "066ea98bac36b4243930f848e3ca9198"; + md5.run = "75e510843b5eb8213600593a95bada66"; md5.doc = "899e1e6ba07f9fafda54a744e1baa0e9"; md5.source = "2c9bd8c5197a59f94a102e6cefcf1c50"; hasRunfiles = true; @@ -11631,7 +11631,7 @@ tl: { # no indentation }; "histogr" = { stripPrefix = 0; - md5.run = "2a5a59234424f221d74f6ecf6f31581b"; + md5.run = "6365cfe0277641d4a726c3afa7d412f6"; md5.doc = "f59a6abf70fdb97b6e9a9cdeddfd03be"; md5.source = "69f70d5ee804e29af271d68d905b5b65"; hasRunfiles = true; @@ -11639,28 +11639,28 @@ tl: { # no indentation }; "historische-zeitschrift" = { stripPrefix = 0; - md5.run = "0c85d8388f0bd25c89f8ca52c1fad493"; + md5.run = "98c6c87a74fe0030aa549529f7515935"; md5.doc = "c9457485e462aa48b430c7309ccc2cc4"; hasRunfiles = true; version = "1.1a"; }; "hitec" = { stripPrefix = 0; - md5.run = "a0c67afccf2ac1d2488ea03870912c39"; + md5.run = "0f4d729536da97444c6d3e102ae40329"; md5.doc = "7c415dd4260f8f036245e554e82e7cd5"; hasRunfiles = true; version = "0.0beta"; }; "hletter" = { stripPrefix = 0; - md5.run = "f36b6278ed02faa7fd3e927e26620348"; + md5.run = "1ec69edaa9804b2181ea448b19ba5f3e"; md5.doc = "93c1e73b83fcfc76308aa69a08f04d3d"; hasRunfiles = true; version = "4.2"; }; "hobby" = { stripPrefix = 0; - md5.run = "dac86a82d4bd451e846f18e2e89d89fd"; + md5.run = "27485af5a4eab9b6e836122a4f62487f"; md5.doc = "33699b13a3f2f2266f6841bd29f82058"; md5.source = "3a473dcea23743c3a6b42d838b0bc7fc"; hasRunfiles = true; @@ -11668,7 +11668,7 @@ tl: { # no indentation }; "hobete" = { stripPrefix = 0; - md5.run = "d94db96b37416198e0bf32afeebdcd92"; + md5.run = "fe07536e50895201460a51d188da7d17"; md5.doc = "8e81da65cc2a8ef01d3ab2493fb49114"; hasRunfiles = true; }; @@ -11680,7 +11680,7 @@ tl: { # no indentation }; "horoscop" = { stripPrefix = 0; - md5.run = "05604895c9b6130eac32f5fdce4d9dbe"; + md5.run = "4bb9aae6f467f99c3c77175db105ee9e"; md5.doc = "98277bd8b2ef137ba4873b7123e51ac2"; md5.source = "01098edcba3bc7384793cd5745985498"; hasRunfiles = true; @@ -11688,7 +11688,7 @@ tl: { # no indentation }; "hpsdiss" = { stripPrefix = 0; - md5.run = "c3538e56fb179533bca01578c5dfc10d"; + md5.run = "7aa2ddd50cc2f288c478206e14d04822"; md5.doc = "16121eb68d655e141e3ba0916bc08302"; md5.source = "b584f757e454f66c76bb6ead784145de"; hasRunfiles = true; @@ -11696,7 +11696,7 @@ tl: { # no indentation }; "hrefhide" = { stripPrefix = 0; - md5.run = "b54a7f8427b595856ef1fba70cd542b8"; + md5.run = "852c13af84bbbd3a1badd6bdfe8202d3"; md5.doc = "c9728dcfd7798f23960916304f70ca63"; md5.source = "bb6d35aa0de3a3b9661810888fe10f22"; hasRunfiles = true; @@ -11712,28 +11712,28 @@ tl: { # no indentation }; "hvfloat" = { stripPrefix = 0; - md5.run = "179bafbde70d4e08f1e9675a72e34126"; + md5.run = "446365b58b2ae37d91d0cf37add25949"; md5.doc = "0dfb18af54ec98f739a4f27cbb12fd8c"; hasRunfiles = true; version = "1.1"; }; "hvindex" = { stripPrefix = 0; - md5.run = "ea3d3eb9c6ca53e278fdef0e6437ba01"; + md5.run = "0927e8f66807cb2ad633275d0009b10b"; md5.doc = "737196416b116eb38214f99b47678b66"; hasRunfiles = true; version = "0.02"; }; "hypdvips" = { stripPrefix = 0; - md5.run = "995bb4b979b1c1500521b1852b7aa3fc"; + md5.run = "969c1887c699ed9a6fb043a5549593a9"; md5.doc = "18086a7545ed08e77c257d49121a15af"; hasRunfiles = true; version = "3.02"; }; "hyper" = { stripPrefix = 0; - md5.run = "73fb9c526f654172d559f659857cb314"; + md5.run = "76fd062833bc397ff4994aabb54c00e4"; md5.doc = "0f0027641d234977f7fdc28982b48c19"; md5.source = "9bbc64e77f0915372a135e45446a1738"; hasRunfiles = true; @@ -11741,7 +11741,7 @@ tl: { # no indentation }; "hypernat" = { stripPrefix = 0; - md5.run = "3f7e750eec52038f5c1a1621e99c447f"; + md5.run = "288cc3e3b93cfeef5323b666a08987f2"; md5.doc = "5062b357698a385461b114d24c24855d"; hasRunfiles = true; version = "1.0b"; @@ -11761,7 +11761,7 @@ tl: { # no indentation }; "hyperxmp" = { stripPrefix = 0; - md5.run = "03e0fe2b979a5e6f070895e3a4a1e3d2"; + md5.run = "4340d107777352fcad5dc1d314840500"; md5.doc = "6d2b19355f717ff1d87e5d9350b8678e"; md5.source = "3652cb3d7537ccda7322f23df6425de4"; hasRunfiles = true; @@ -11785,7 +11785,7 @@ tl: { # no indentation stripPrefix = 0; deps."hyphen-base" = tl."hyphen-base"; deps."hyph-utf8" = tl."hyph-utf8"; - md5.run = "a823251ed74dd235b65c514d7d7a5627"; + md5.run = "27ea421c60760ce5f55f6b0b2c80533f"; hasRunfiles = true; }; "hyphen-arabic" = { @@ -11930,7 +11930,7 @@ tl: { # no indentation stripPrefix = 0; deps."hyphen-base" = tl."hyphen-base"; deps."hyph-utf8" = tl."hyph-utf8"; - md5.run = "80ac174811d5419f9d5a8c2d52fe5985"; + md5.run = "0982be88f551971b169545e01560d0c1"; md5.doc = "8877e91343591730622ad1eb23947073"; hasRunfiles = true; version = "5"; @@ -12131,7 +12131,7 @@ tl: { # no indentation }; "hyphenat" = { stripPrefix = 0; - md5.run = "f7182d69f476d02d061b7d20965fda29"; + md5.run = "f657376841ebfc1d511a9a02ac9e4f62"; md5.doc = "4504cc559b077d68bbe2e0b70885c631"; md5.source = "e6e6f1e681285fc68af8ca4621f46e20"; hasRunfiles = true; @@ -12152,7 +12152,7 @@ tl: { # no indentation }; "ibycus-babel" = { stripPrefix = 0; - md5.run = "8591a8155114c2bca049c4168628e08a"; + md5.run = "ed00d21796cf1988dbef522db0b25197"; md5.doc = "f20183320847b327719883c2c3e213af"; md5.source = "336f872cec9a067da463dc855539df08"; hasRunfiles = true; @@ -12160,14 +12160,14 @@ tl: { # no indentation }; "ibygrk" = { stripPrefix = 0; - md5.run = "63d090e0a70ede42282e359c128af219"; + md5.run = "5d23cb6e753803a568d912a2421f55d0"; md5.doc = "6eda3098cddcd8a56a0c6fb1ecaf5c82"; hasRunfiles = true; version = "4.5"; }; "icsv" = { stripPrefix = 0; - md5.run = "03f402b8c8400a64d8cf6d0a2ab7fefe"; + md5.run = "a60c023ab0af67601a889919a53b7bb6"; md5.doc = "28000c0bc9602a73923033861e21d50a"; md5.source = "784229ba3216909679c1286e47b499d8"; hasRunfiles = true; @@ -12175,14 +12175,14 @@ tl: { # no indentation }; "idxcmds" = { stripPrefix = 0; - md5.run = "78bd05490605df4ac4b355f5fcc04e3f"; + md5.run = "416f54b839d2da75e5e543a3063b2286"; md5.doc = "9d6e16f3d016584d35e779091ebfa0e4"; hasRunfiles = true; version = "0.2b"; }; "idxlayout" = { stripPrefix = 0; - md5.run = "b330e53e654825dfe16cc30bd66929b7"; + md5.run = "00c0319c705c1e64f75bce8a00a323e5"; md5.doc = "45ccc485ae0b1e5a6c42f08ace415de8"; md5.source = "6b078f7a9f59b88291e2d4860a5cd9c5"; hasRunfiles = true; @@ -12190,14 +12190,14 @@ tl: { # no indentation }; "ieeepes" = { stripPrefix = 0; - md5.run = "53cf899a9ed247f34b54b257c3475c63"; + md5.run = "6d2a981a47b53b54588ee434ecc07c10"; md5.doc = "895a604e640120c528f49aa86550b313"; hasRunfiles = true; version = "4.0"; }; "ifetex" = { stripPrefix = 0; - md5.run = "91af302a36b58112e6b2e4405ed82f6b"; + md5.run = "a7ef02f64d8bbb09bb5de905cba16357"; md5.doc = "cb14e7e3406c31439efe13efee9fe6dd"; md5.source = "80586c2932e131fb919438cdd1a0ddea"; hasRunfiles = true; @@ -12213,14 +12213,14 @@ tl: { # no indentation }; "ifmslide" = { stripPrefix = 0; - md5.run = "00629c3de7bcaf330c479e3552485112"; + md5.run = "456263a9f029a13abdd3a4922711a7c7"; md5.doc = "d25ae9e5a6dc19924e60ea84caebb96a"; hasRunfiles = true; version = "0.47"; }; "ifmtarg" = { stripPrefix = 0; - md5.run = "d339020b7bd3f61f2828eb45a2fbd81a"; + md5.run = "599943d6ebc427883aacf92fecc4ed6f"; md5.doc = "dd349ed70e0b853a1de8f62899b748d3"; md5.source = "c38890faa20a423f02da98aebcf7ddbf"; hasRunfiles = true; @@ -12228,7 +12228,7 @@ tl: { # no indentation }; "ifnextok" = { stripPrefix = 0; - md5.run = "4f25d33f8e6e85ffa9057a8060184ae2"; + md5.run = "4f397e76f9085d8ed2e53f91cb974a7b"; md5.doc = "7cc1aff564fcd16bac9cd8e12533119c"; md5.source = "4e089908a4413423542156343651dd05"; hasRunfiles = true; @@ -12236,7 +12236,7 @@ tl: { # no indentation }; "ifoddpage" = { stripPrefix = 0; - md5.run = "4709d3665cd0a46ce1ca310f6622f3a4"; + md5.run = "7e9704e1750276d2691227b001a4d7e8"; md5.doc = "65ed2d29a44605076a871a5de2e7a899"; md5.source = "6bc8e90ef02816d106a799cfca79eb3e"; hasRunfiles = true; @@ -12244,7 +12244,7 @@ tl: { # no indentation }; "ifplatform" = { stripPrefix = 0; - md5.run = "9eae8102c160dd0a9c511ad2905ae586"; + md5.run = "c878159f0e66123b38e15b665c0e8d42"; md5.doc = "20424d2ee55535eb17ef084fadb32f74"; md5.source = "2fa073c6aab3ac55cbdd2970594f1d73"; hasRunfiles = true; @@ -12252,7 +12252,7 @@ tl: { # no indentation }; "ifsym" = { stripPrefix = 0; - md5.run = "58243300c47aa95d51eafa6cf2b51565"; + md5.run = "e6e5782c674287d802bd0665c674c577"; md5.doc = "21ffe7b66d1916e9e34773e5d2df6bad"; hasRunfiles = true; }; @@ -12265,7 +12265,7 @@ tl: { # no indentation }; "ifthenx" = { stripPrefix = 0; - md5.run = "e86add30f0f53eb094c852ba042ba63e"; + md5.run = "f42b3f096a4fa1be9ffc4d456c6f853a"; md5.doc = "e10bf0f50d7c8479b4ef77b1c05c5f18"; hasRunfiles = true; version = "0.1a"; @@ -12280,7 +12280,7 @@ tl: { # no indentation }; "iitem" = { stripPrefix = 0; - md5.run = "565ddd95ff8fa4bfba4b99634578c55c"; + md5.run = "5c24d3368e7d94c22bc35fe29bb3928b"; md5.doc = "11ba4ff89fa797b0cb13806d1ec60f2f"; md5.source = "d216b928d3ac5a1271f7032ec6f7f7ec"; hasRunfiles = true; @@ -12288,7 +12288,7 @@ tl: { # no indentation }; "ijmart" = { stripPrefix = 0; - md5.run = "6edf5da0d43cfda532fde76769ba181b"; + md5.run = "7c7c6482140edc813f1834c4dab2e576"; md5.doc = "fddc874b0748dbc369f8c781ea2c7719"; md5.source = "bea9c9a5f8121a4768e9dafba66cc6d4"; hasRunfiles = true; @@ -12296,27 +12296,27 @@ tl: { # no indentation }; "ijqc" = { stripPrefix = 0; - md5.run = "29b4b13a16b9b209e022269fbb4eda0f"; + md5.run = "8e2b78865a67b208b126900b6ffeca75"; md5.doc = "9f55d647e04f8259a8bf5bace42681e0"; hasRunfiles = true; version = "1.2"; }; "imac" = { stripPrefix = 0; - md5.run = "adbdf597d3b3eb669d1cac6651ec99f9"; + md5.run = "2957bd0cdf3cfa6382be72c85c934506"; md5.doc = "068a15ab401a6be563063b2c908cf169"; hasRunfiles = true; }; "image-gallery" = { stripPrefix = 0; - md5.run = "5c7378a3715f03af54497536e17c9848"; + md5.run = "539dc2dc7b421246e55b116cdd25d476"; md5.doc = "6d090795a7eeb7f72dbe2fee903bc7a0"; hasRunfiles = true; version = "v1.0j"; }; "imakeidx" = { stripPrefix = 0; - md5.run = "010cb652d88b1a8fdcc92e8ee124ef05"; + md5.run = "d5c01ac8cf6344a9de35891b900f031c"; md5.doc = "ee6733b5f936f63bc4d1e2de185737b4"; md5.source = "12ea8b628f485855295aa1fd079520d6"; hasRunfiles = true; @@ -12347,21 +12347,21 @@ tl: { # no indentation }; "import" = { stripPrefix = 0; - md5.run = "2b5874022ff4e9c9488457a7ca557786"; + md5.run = "32e12d765c5dad607e5d355d7b1a117b"; md5.doc = "846083bf653576ae75c1da755d716e96"; hasRunfiles = true; version = "5.1"; }; "imsproc" = { stripPrefix = 0; - md5.run = "fee32842d2553b37784f7537db6ab178"; + md5.run = "ca2e4de6cec5d92e74e86cd5f98d453e"; md5.doc = "baa9a94334941904ff7495ec2bb1bf09"; hasRunfiles = true; version = "0.1"; }; "imtekda" = { stripPrefix = 0; - md5.run = "ff5c4ba6396ef3f302643680e4be0a89"; + md5.run = "9f729dac1b766cc307b214024f05923d"; md5.doc = "402e1184fba5e6302bf0456cb5cb498c"; md5.source = "2ea8961878b3b6de106724280c5f99c6"; hasRunfiles = true; @@ -12369,14 +12369,14 @@ tl: { # no indentation }; "incgraph" = { stripPrefix = 0; - md5.run = "34e73fad43f25e2b23709213c58cff53"; + md5.run = "6a036af232ebf130fd7e0bceea2d4858"; md5.doc = "cde839ef10ddde0d1587f8f86fc4be8f"; hasRunfiles = true; version = "1.12"; }; "inconsolata" = { stripPrefix = 0; - md5.run = "bc05ffdf9f18ab61d8d5972023c0ff02"; + md5.run = "40ea9f65895093fbde95821dc91fc3b1"; md5.doc = "c85d398a2897a0d9d6072795a221076b"; hasRunfiles = true; version = "1.05"; @@ -12391,7 +12391,7 @@ tl: { # no indentation }; "indextools" = { stripPrefix = 0; - md5.run = "195c024bf22d31d5589dc6622e23f4db"; + md5.run = "120b30053d18043bf95f4e09f64afdee"; md5.doc = "c1825849cf748982a2ab428da0e9c58e"; md5.source = "fdaf54f9732474a6b8fa8116bb10aac8"; hasRunfiles = true; @@ -12399,19 +12399,19 @@ tl: { # no indentation }; "initials" = { stripPrefix = 0; - md5.run = "99f6b31ee92c196049d49743fd1d593f"; + md5.run = "917e72865a10042a02ac7f2210ff30b7"; md5.doc = "f8b24f3387347d96082ff8cedc44bdd0"; hasRunfiles = true; }; "inlinebib" = { stripPrefix = 0; - md5.run = "9c14d9ec51d0a023596890e285a3163c"; + md5.run = "27cd23ef1b5d84b3e2b55c075f017151"; md5.doc = "49f77c2a9d344cba2bf2795ed5b08b7e"; hasRunfiles = true; }; "inlinedef" = { stripPrefix = 0; - md5.run = "458b098640ce265859af0e5d872fecaa"; + md5.run = "b0ea4de217be35c4fee7fa5b64efca80"; md5.doc = "a3bd22a04b8b1a29cb2b86fa39f61017"; md5.source = "27206d4958ba37d7dfb9c7cb13d0b662"; hasRunfiles = true; @@ -12419,7 +12419,7 @@ tl: { # no indentation }; "inputtrc" = { stripPrefix = 0; - md5.run = "9caa914344189e52d1be3041671ee6aa"; + md5.run = "0a714e5c75848b44151d972b50e9daa5"; md5.doc = "91f285c3b6256d336b09720087fda361"; md5.source = "fa9bc25e5f724cdab4af8d02c4d662c3"; hasRunfiles = true; @@ -12427,7 +12427,7 @@ tl: { # no indentation }; "insbox" = { stripPrefix = 0; - md5.run = "0c787035a35db6c40e28ef8e6e09ee39"; + md5.run = "6541e9c0a7e870936d9bf0f910577ece"; md5.doc = "4f7533138f7e7b7f9fa6e7af3e365572"; hasRunfiles = true; version = "2.2"; @@ -12440,7 +12440,7 @@ tl: { # no indentation }; "interactiveworkbook" = { stripPrefix = 0; - md5.run = "290acd6ce1661ce692bc63fb5fd6cb36"; + md5.run = "f3f06a05faa2ba35fa61c12a31919d60"; md5.doc = "966a86f151d6a5008bafedd5a2566893"; hasRunfiles = true; }; @@ -12453,7 +12453,7 @@ tl: { # no indentation }; "interfaces" = { stripPrefix = 0; - md5.run = "1da2541b0b874e89b1c6034e6944fb2b"; + md5.run = "db9671bd08989be2bba7727795761a19"; md5.doc = "7304ed6f85a8ca2eab6b254c491b9cfa"; md5.source = "cd27e3d4b31d53b9c80cf59910374d42"; hasRunfiles = true; @@ -12481,7 +12481,7 @@ tl: { # no indentation }; "inversepath" = { stripPrefix = 0; - md5.run = "bf8058ef2a245b5333a32d6d2fb50fd5"; + md5.run = "8a66daf19534033314a1781718ccc2bc"; md5.doc = "7960975efdf5082d270860c650335a52"; md5.source = "ec735c5d5df5e52a37e30ca2221ca10d"; hasRunfiles = true; @@ -12489,7 +12489,7 @@ tl: { # no indentation }; "invoice" = { stripPrefix = 0; - md5.run = "484cd828246bb1f5ca04b51100dc5043"; + md5.run = "7750f5942e5c708c43a1679e7c754cb0"; md5.doc = "4168c7f3f07546e8c900d6ce78603b7b"; hasRunfiles = true; }; @@ -12503,27 +12503,27 @@ tl: { # no indentation }; "iopart-num" = { stripPrefix = 0; - md5.run = "dc80e07d686c875f8b2db725d54713d9"; + md5.run = "ff9d5591af572ce45887ae744595ec5c"; md5.doc = "4bcaf6e0d4b908bab61c3ffff3f50097"; hasRunfiles = true; version = "2.1"; }; "ipaex" = { stripPrefix = 0; - md5.run = "991583b4e259c9e15245816bccc02b9d"; + md5.run = "ac777938421a678bf022e291abcc1cae"; md5.doc = "1b4f7ec23162e8b619af94626ae7aa06"; hasRunfiles = true; }; "ipaex-type1" = { stripPrefix = 0; - md5.run = "75b82daad09ac7c2d26c0b6389227b55"; + md5.run = "800b11b8938385c40568699716d2d13c"; md5.doc = "21d473818104b910d0b0545e33107b71"; hasRunfiles = true; version = "0.3b"; }; "iso" = { stripPrefix = 0; - md5.run = "dd4dd5647eca6a596c0e855430b06dd5"; + md5.run = "184e0884cfad94b62326b8cd76e9e98f"; md5.doc = "0841fbe4a868f697ef9b46e0778446ac"; md5.source = "4ade41d235e11586ccad73c11ad66ab6"; hasRunfiles = true; @@ -12531,7 +12531,7 @@ tl: { # no indentation }; "iso10303" = { stripPrefix = 0; - md5.run = "22e8e5e15973099ebfbb6b2a66bd2b3c"; + md5.run = "7e44415553b3b49ea4d8ded37f1e2215"; md5.doc = "4073b0200231aacf2f1655eabb6e14c7"; md5.source = "dd01ec001bd069978208aa9aa684d8b1"; hasRunfiles = true; @@ -12547,7 +12547,7 @@ tl: { # no indentation }; "isodoc" = { stripPrefix = 0; - md5.run = "8a7a6cf53ef3ad3141308e884bb41782"; + md5.run = "0754263daa5228e8c52224d19653c9df"; md5.doc = "de1f6cb547a1a0c3d8fee9bd2d70d03d"; md5.source = "1d7011ddaa99fe92a2530e7aa33fa450"; hasRunfiles = true; @@ -12562,21 +12562,21 @@ tl: { # no indentation }; "isonums" = { stripPrefix = 0; - md5.run = "6e4b258e5d7ff9da035620f016891c16"; + md5.run = "a2ea9dc9a03bb7a1e4edcabb5cd956ab"; md5.doc = "f7f0ebb64fd2cb352afb58af1d60977b"; hasRunfiles = true; version = "1.0"; }; "isorot" = { stripPrefix = 0; - md5.run = "0b1fe3a554a694e5d7b0cfe43c3db387"; + md5.run = "3e56259e67cf9357a2175c0d56fe9bb9"; md5.doc = "b658102ed687a3e7a101382ecc36dd3d"; md5.source = "4d312512d63e58ac27d36ca5147485ac"; hasRunfiles = true; }; "isotope" = { stripPrefix = 0; - md5.run = "a722dc8070947c5c942cede47c151332"; + md5.run = "3543c019390ac0a4a5d0a0a8fecdf1de"; md5.doc = "5b73bc957db61a752cf6d79c9cc1414e"; md5.source = "a897555f6c0a74b28486407b018466ec"; hasRunfiles = true; @@ -12584,7 +12584,7 @@ tl: { # no indentation }; "issuulinks" = { stripPrefix = 0; - md5.run = "8781cca6ae981906ad6795f788d300f7"; + md5.run = "44f1c735e41647be76ab0c183b84cc63"; md5.doc = "29da7e232c2ec468c466d7e2608e81d0"; md5.source = "e3e20f742d8e6051d6d59e00131c5468"; hasRunfiles = true; @@ -12600,21 +12600,21 @@ tl: { # no indentation }; "iwhdp" = { stripPrefix = 0; - md5.run = "f64e1da30036a8cb3ec4227d08899e56"; + md5.run = "b2499e6ca73b5d5818a8429a1195f2b9"; md5.doc = "65733bc8607de6096d95af14adb75458"; hasRunfiles = true; version = "0.31"; }; "iwona" = { stripPrefix = 0; - md5.run = "46a770683bd8f1bd9574a9095b219f1e"; + md5.run = "c7f4d3e2341850b919a7950523eae4da"; md5.doc = "af7fb49a478d2ced3e241f7d7d343b26"; hasRunfiles = true; version = "0.995b"; }; "jablantile" = { stripPrefix = 0; - md5.run = "b917369c15b0e5a516cdd15e5fd8c17a"; + md5.run = "0e3c711a533efcd3250e5e770649ad7a"; md5.doc = "6a01f6884142970b899e654d2d73613b"; hasRunfiles = true; }; @@ -12623,7 +12623,7 @@ tl: { # no indentation deps."passivetex" = tl."passivetex"; deps."pdftex" = tl."pdftex"; deps."tex" = tl."tex"; - md5.run = "80c7e9e3a1d2c1fe7d7b813832d5ee5c"; + md5.run = "d5a2fcacb3808378612edc09b3b7bc73"; md5.doc = "f55aec8830d4ab23a3b3b7eef0a95c22"; md5.source = "c24fbca417ffc444437ce0ffc1f678dc"; hasRunfiles = true; @@ -12631,14 +12631,14 @@ tl: { # no indentation }; "jamtimes" = { stripPrefix = 0; - md5.run = "eb99b2d0aa43aa75a0a23139f26384f5"; + md5.run = "c4b4bd4a9e5c4e882506561401fe909b"; md5.doc = "8abf36166fa9f5b1776d61d408633d52"; hasRunfiles = true; version = "1.12"; }; "japanese" = { stripPrefix = 0; - md5.run = "ad9aff67f13fbf5b8dcf9ff9006ed36b"; + md5.run = "e3bdda6c742a5e2b49bb9b2674fa2f37"; md5.doc = "6f177eed9fbced4c8581672ed785f92e"; md5.source = "4460e5eaac0edd018beda8ae24d5cfec"; hasRunfiles = true; @@ -12646,7 +12646,7 @@ tl: { # no indentation }; "japanese-otf" = { stripPrefix = 0; - md5.run = "d3003ba15d8dfc6dced0f822d7b9692b"; + md5.run = "59e7cc2167785dff9b8833579f9e81f8"; md5.doc = "f6e5d0f5368c53905d6b713e85045211"; md5.source = "ecbbeaf7023d6106adb21460c7a675bf"; hasRunfiles = true; @@ -12655,14 +12655,14 @@ tl: { # no indentation "japanese-otf-uptex" = { stripPrefix = 0; deps."japanese-otf" = tl."japanese-otf"; - md5.run = "e4f68140cb74b7811e201345943a3b34"; + md5.run = "675946dc04aedd23bb2321f80588d6f1"; md5.doc = "417483a11e0e4ae6191a62938b025bf2"; md5.source = "daa3acb8a701e0a83c5d900c389c0959"; hasRunfiles = true; version = "0.16"; }; "jfontmaps" = { - md5.run = "8844befd2971f8cc2540d60fd609761a"; + md5.run = "a2d1a94bacc764e7d062f7aa3c2ee2d8"; md5.doc = "09527b430d1a7131f226a6e09473e0b2"; md5.source = "1e55594e87e410b36405070af260a155"; hasRunfiles = true; @@ -12676,14 +12676,14 @@ tl: { # no indentation }; "jlabels" = { stripPrefix = 0; - md5.run = "8d50675c55a091ac75e38ad4b31770c0"; + md5.run = "b4749bba2032cd74f83addccc54a2880"; md5.doc = "8c71ac156b77887779930f69799d666a"; hasRunfiles = true; version = "2011-06-05"; }; "jmlr" = { stripPrefix = 0; - md5.run = "4443740d6dbbe9b0df07d91f98483a21"; + md5.run = "a2bbca368795e4ddc8f46239b898e67f"; md5.doc = "9f161c3818d86b2864e6f11e40a3a8f1"; md5.source = "ba6f356a75e22cb80fc31ba850ddbcd3"; hasRunfiles = true; @@ -12696,14 +12696,14 @@ tl: { # no indentation }; "jneurosci" = { stripPrefix = 0; - md5.run = "4ec73988d91f1bdf8764272681880dc9"; + md5.run = "0537b424d7d61127e108d0c0263b12f0"; md5.doc = "78084f3cc2ee283a842a3de14ac742fc"; hasRunfiles = true; version = "1.00"; }; "jpsj" = { stripPrefix = 0; - md5.run = "812f3046d16969b57b1cca7d284a87a7"; + md5.run = "55fb2bad29bbe2efc0869442bd332d76"; md5.doc = "6875be47cb955d3896f05e886278cb1d"; hasRunfiles = true; version = "1.2.2"; @@ -12716,35 +12716,35 @@ tl: { # no indentation }; "jsclasses" = { stripPrefix = 0; - md5.run = "59e0716528209b55d346c2b40c66dc8d"; + md5.run = "34c8984fdf3a5c44624758cac88be2f5"; md5.doc = "c7ec24f577a69f8b6342ed8a3efc2980"; md5.source = "c0691935f574281e8ea927a9302514e7"; hasRunfiles = true; }; "jslectureplanner" = { stripPrefix = 0; - md5.run = "392688981ef1110b11a6000d0ffd8938"; + md5.run = "46c4ea790d900dae09ea74fd37291935"; md5.doc = "e1d14a0971dce312335dc1662d8cfbcf"; hasRunfiles = true; version = "1.0.1"; }; "jumplines" = { stripPrefix = 0; - md5.run = "b0cdb58855405e4253e8d5f9ec84733d"; + md5.run = "2d0e9172b06e6b8c549ae3fa41cfd608"; md5.doc = "9d0e41a6b56d3c83bde11a8711c5476a"; hasRunfiles = true; version = "0.1"; }; "junicode" = { stripPrefix = 0; - md5.run = "a7481c948214ea592f2936a22c6bea57"; + md5.run = "5c7ce3eeb6d9ecd8787232d94a501169"; md5.doc = "0d1d6fc22cf56accd54cd6e3380c0e1a"; hasRunfiles = true; version = "0.7.7"; }; "jura" = { stripPrefix = 0; - md5.run = "bff9f880e173cb67548f80814f56c211"; + md5.run = "b070b8f10e4d155d083b0fd916e27e30"; md5.doc = "abf6a95a37c11734a8f69fac28bbfa95"; md5.source = "954f5bc3b7d14a52e62c0d160cb35c47"; hasRunfiles = true; @@ -12752,14 +12752,14 @@ tl: { # no indentation }; "juraabbrev" = { stripPrefix = 0; - md5.run = "6d246a7a842ed1b22ab2d18e842404b0"; + md5.run = "04fb7859949770e0d1b0e4654e044542"; md5.doc = "cee2316afe103b84f9914604999c5926"; md5.source = "dabd4448c1103ccc8de736697676e0ea"; hasRunfiles = true; }; "jurabib" = { stripPrefix = 0; - md5.run = "fef953771da443d3047e8a1e3f5f12cd"; + md5.run = "0d45d81418bc5ebcf758618e32ad6c72"; md5.doc = "9a71b8b596b5a2f32f07b9e6d0318b02"; md5.source = "583377b42c45921af681a996707a57c9"; hasRunfiles = true; @@ -12767,14 +12767,14 @@ tl: { # no indentation }; "juramisc" = { stripPrefix = 0; - md5.run = "244fcd1acdefd6e0ae21f8a286dbfd4f"; + md5.run = "40558babf0122f02710d104d8505fa04"; md5.doc = "2af71bf7461051bc9862eb857d9f8d5d"; hasRunfiles = true; version = "0.91"; }; "jurarsp" = { stripPrefix = 0; - md5.run = "e4d85e1f452cbf8b099ddd4a4c73750f"; + md5.run = "3f35557b40ec50d34257df9bbd5874cb"; md5.doc = "e2cdea0284f662dca98fd0a06f7e0c27"; md5.source = "6630e96d27a4e2cfbdfb94019a06828d"; hasRunfiles = true; @@ -12782,7 +12782,7 @@ tl: { # no indentation }; "jvlisting" = { stripPrefix = 0; - md5.run = "667cfc69e1ca74e6250f82e008fa9264"; + md5.run = "157ea63677403e4aaeb729afe0ab8d87"; md5.doc = "9c0286389c644bc3415ea3243327cebb"; md5.source = "2981526789570d2c94dfa136d05f5be5"; hasRunfiles = true; @@ -12790,7 +12790,7 @@ tl: { # no indentation }; "kantlipsum" = { stripPrefix = 0; - md5.run = "036651eaa0493fa7fe395fc7ee499699"; + md5.run = "0f20904f85d559cc83e8528d0a1c8bb5"; md5.doc = "7e038f5177bde2d7ef126ee12fcff59d"; md5.source = "75507933a3a451bee736673ae4f3a221"; hasRunfiles = true; @@ -12798,7 +12798,7 @@ tl: { # no indentation }; "karnaugh" = { stripPrefix = 0; - md5.run = "1f38b9fe8b3c4da43fcc406119663c4b"; + md5.run = "1faa09ccd58d4f2ba8152d4a15f6fb53"; md5.doc = "946a3126bd6e445cd2f86f60cb1288d5"; hasRunfiles = true; }; @@ -12811,7 +12811,7 @@ tl: { # no indentation }; "kdgdocs" = { stripPrefix = 0; - md5.run = "f56c20b764bf6abfebbb6f475c2d41ee"; + md5.run = "65cc808bb37973579e463b531b563fae"; md5.doc = "67c6b8f2b5ff3e71dbd9d5cd098bb765"; md5.source = "5fe3141aa5d830be4860a5f218379fda"; hasRunfiles = true; @@ -12819,13 +12819,13 @@ tl: { # no indentation }; "kerkis" = { stripPrefix = 0; - md5.run = "4856f29f863e54488249cb33825ba3fc"; + md5.run = "5645503a95b7518da7254c9c0f64e35a"; md5.doc = "2f364b6e316c44497b89c7646cf17e30"; hasRunfiles = true; }; "kerntest" = { stripPrefix = 0; - md5.run = "c8c99148ae4c28227f4d79c3430d9eca"; + md5.run = "5052567cddc250224fedc9e6ee8f3dda"; md5.doc = "9334d3f8ba7d3f4ea2a8e9d5f1f15c2d"; md5.source = "6df7d2b9c643b67a00242fd5dc36c753"; hasRunfiles = true; @@ -12833,7 +12833,7 @@ tl: { # no indentation }; "keycommand" = { stripPrefix = 0; - md5.run = "6c9cdf7de720477bce755d46cd2d37af"; + md5.run = "4d5ea3a9c1127f8f40981b3eff12d77c"; md5.doc = "cac91928862bb38e348c9fa81ab8a7f1"; md5.source = "f95efe9a30112f08aa63199411065441"; hasRunfiles = true; @@ -12841,54 +12841,54 @@ tl: { # no indentation }; "keyreader" = { stripPrefix = 0; - md5.run = "7d2db80400d017c0d930578da29815a4"; + md5.run = "6da261fc0a689b9a7de068754992f9f9"; md5.doc = "f9a2c47183ed268b9902c861022bedd9"; hasRunfiles = true; version = "0.5b"; }; "keystroke" = { stripPrefix = 0; - md5.run = "4b3ada84cc417c232f990c6f2946534d"; + md5.run = "12adb90f5797208940a5565e33835977"; md5.doc = "f0436f84e95e71b0f36cc203798d0129"; hasRunfiles = true; version = "v1.6"; }; "keyval2e" = { stripPrefix = 0; - md5.run = "78a7bd9e95c6d3b50e73dfe049664692"; + md5.run = "0e9752b75f1045290c1e51aa85f07165"; md5.doc = "d3dcd14c9029fc8533c98d7b82e92391"; hasRunfiles = true; version = "0.0.2"; }; "kix" = { stripPrefix = 0; - md5.run = "87a2d11c6dee69967f61c44d51e4861c"; + md5.run = "7a9844a92ef216646fd99531c33b7413"; md5.doc = "22f9c15aa894b86d3135b388b6825610"; hasRunfiles = true; }; "kixfont" = { stripPrefix = 0; - md5.run = "531f0bf987f677199c7c05b9c333e8f4"; + md5.run = "840317631ea21cfd81d7fd6d3b1d6dbb"; md5.doc = "0d7d96a5af8d301b46a2fcf7ee7ef8f5"; hasRunfiles = true; }; "kluwer" = { stripPrefix = 0; - md5.run = "0bcfa69e306fd438eab8daffa86bd382"; + md5.run = "f29bc724ee26429814df032d66821135"; md5.doc = "051a312dd4b30f503d4cd29dd1e64d41"; md5.source = "81e8722d27b7e2a157cda3a1b5d9f895"; hasRunfiles = true; }; "knitting" = { stripPrefix = 0; - md5.run = "de752e47877754ed838ba09b6bf41efa"; + md5.run = "87414561c5eff406a8edee07d9ee31f1"; md5.doc = "8af3bdd770553b6d10d0d9fb45c5e29b"; hasRunfiles = true; version = "2.0"; }; "knittingpattern" = { stripPrefix = 0; - md5.run = "321a4865d7eefd266b7b43b43212c2b0"; + md5.run = "bc6824450d36506e6824433bca251e81"; md5.doc = "46323aa687107b7471c06568f895b7f8"; hasRunfiles = true; }; @@ -12910,12 +12910,12 @@ tl: { # no indentation }; "knuthotherfonts" = { stripPrefix = 0; - md5.run = "b02ab0b8e5af055b3f870a6a1a8c5565"; + md5.run = "123182f6cbc559ee4acb399699ac42a9"; hasRunfiles = true; }; "koma-moderncvclassic" = { stripPrefix = 0; - md5.run = "14cfe8e30109424128c4e3e1c3b16dd6"; + md5.run = "17370afb2c7b5b386c328d849cf7c937"; md5.doc = "bc1325bc10ce28c4b607b72c84b5772e"; hasRunfiles = true; version = "v0.5"; @@ -12933,14 +12933,14 @@ tl: { # no indentation }; "koma-script-sfs" = { stripPrefix = 0; - md5.run = "1416040179611bf226e2c811e80124f9"; + md5.run = "264ed6d805d8f72840cdab1d2295b8f7"; md5.doc = "cf2b3d474caba5aa23c75688307f69e4"; hasRunfiles = true; version = "1.0"; }; "komacv" = { stripPrefix = 0; - md5.run = "c577c74f0105bec17bea0f5d4b92cc07"; + md5.run = "b165711618ce303afba76f091264b955"; md5.doc = "023626738b553f4ce243b1d576acf8eb"; md5.source = "acf64bea09af5a3834ee80022e11b04f"; hasRunfiles = true; @@ -12950,28 +12950,28 @@ tl: { # no indentation stripPrefix = 0; deps."memoir" = tl."memoir"; deps."kotex-utf" = tl."kotex-utf"; - md5.run = "b91c41ab206307b86d628ef5dad5f292"; + md5.run = "976def76714ef6a782e620cd8b41f840"; md5.doc = "d9833eaa85865fa551556cdae414df19"; hasRunfiles = true; version = "2.1.0"; }; "kotex-plain" = { stripPrefix = 0; - md5.run = "4a56245781ac904c6d4b4a3af3c0e6b3"; + md5.run = "448961c51d4865c6857270b41ac2d74c"; md5.doc = "3b0d436c78548c7271e19f4486f59aeb"; hasRunfiles = true; }; "kotex-utf" = { stripPrefix = 0; deps."cjk-ko" = tl."cjk-ko"; - md5.run = "dc9a6638ecfef5c954fedd70bde407d6"; + md5.run = "a29bc42f992cb5e8bfb221a8e970a881"; md5.doc = "b0860c449b3fa40148d104a65309f520"; hasRunfiles = true; version = "2.0.1"; }; "kotex-utils" = { deps."kotex-utf" = tl."kotex-utf"; - md5.run = "a0c132f18ce1ee5eee58a46d33bfb4df"; + md5.run = "9f39e97edafb7871aee5801cb54a351d"; md5.doc = "b2248edb12c6df7aeed47393bd44b835"; hasRunfiles = true; version = "2.0.1"; @@ -12983,20 +12983,20 @@ tl: { # no indentation }; "kpfonts" = { stripPrefix = 0; - md5.run = "ef69bb3a764bbb14f61755d470356473"; + md5.run = "be9f25f79e5146f700a845dc2951fee1"; md5.doc = "9c111443f44369d4ced9b6fece378780"; hasRunfiles = true; version = "3.31"; }; "ksfh_nat" = { stripPrefix = 0; - md5.run = "01948ef3f05b4bd9a3b79578f752dde8"; + md5.run = "5a7409b2af00a16aa50584d0e983fad3"; hasRunfiles = true; version = "1.1"; }; "ktv-texdata" = { stripPrefix = 0; - md5.run = "0e9e1796f23af6320c6115c4876fc244"; + md5.run = "6ea240293899ecb2f74cee6d91a452bd"; md5.doc = "27e4e40a67d93a2791cbd52a0a4169b6"; md5.source = "5993ab704eb6f72ceb8b92bedf2cb5ec"; hasRunfiles = true; @@ -13004,7 +13004,7 @@ tl: { # no indentation }; "kurier" = { stripPrefix = 0; - md5.run = "0fa419f5b363239a47e1aaee5d2a7462"; + md5.run = "5db8ebd0f7e24b281b42c8eee2725562"; md5.doc = "ca884945662f8fccc4e4da7d665d890a"; hasRunfiles = true; version = "0.995b"; @@ -13047,7 +13047,7 @@ tl: { # no indentation }; "l3build" = { stripPrefix = 0; - md5.run = "6f4b2af7d969639eddf80bbfa43e25a0"; + md5.run = "5969f390b8e02146ee833ce3c7e6dfd1"; md5.doc = "44020e339dac5dd45e57b1f6acafee43"; md5.source = "bd5d1003076c678404488d6b7397088b"; hasRunfiles = true; @@ -13079,14 +13079,14 @@ tl: { # no indentation }; "labbook" = { stripPrefix = 0; - md5.run = "ec84dc0f58d4af6267031476c4a43e4f"; + md5.run = "eb77b332511bd5c81ab8318d43e868bb"; md5.doc = "ffc062ab5e0c7515fcf1be66f9a04ad8"; md5.source = "abc4597c1e67d384582dfdf663268fd6"; hasRunfiles = true; }; "labelcas" = { stripPrefix = 0; - md5.run = "8ac54c26257d0723d6136367fb64799c"; + md5.run = "1f9a85b5978c23aaba0c5b7bee64c385"; md5.doc = "4038541757d2fe0d2e68e2b6fb8353bd"; md5.source = "95ea8525397d0079cc635ef5654defbe"; hasRunfiles = true; @@ -13094,7 +13094,7 @@ tl: { # no indentation }; "labels" = { stripPrefix = 0; - md5.run = "2efeb346ee512aa3d1ce1581c022fdd0"; + md5.run = "049254e7a9ad70025b2b11da805c9963"; md5.doc = "b517b01e0f4210fe5170d29116b13637"; md5.source = "068deaa68f8151d1c1595345a1f30c56"; hasRunfiles = true; @@ -13102,7 +13102,7 @@ tl: { # no indentation }; "labyrinth" = { stripPrefix = 0; - md5.run = "cab7d097480d2d352a6c72406ad95a0e"; + md5.run = "facbff0d200bf42512ca7380d34b7d6f"; md5.doc = "5957e4168aab08ef0eedc0661509f242"; hasRunfiles = true; version = "1.0"; @@ -13114,18 +13114,18 @@ tl: { # no indentation }; "lambda" = { stripPrefix = 0; - md5.run = "b91cca465370386720b35c640decc46c"; + md5.run = "d796b03b71a70e807c58bcc312001719"; hasRunfiles = true; }; "lambda-lists" = { stripPrefix = 0; - md5.run = "57068e3e82c653df79f88e21c3f859f7"; + md5.run = "db49ffd81f0d69ba970edd686d28b464"; md5.doc = "f37740ba19cd4237e9e26d42d16a74bc"; hasRunfiles = true; }; "langcode" = { stripPrefix = 0; - md5.run = "09c992c19c76e2c8fb032a03a9ee38a6"; + md5.run = "c7d7e3168aa05abb1de10a9fba078c48"; md5.doc = "8931cfbf3b80a4a9748e44f7e7179d04"; md5.source = "463e2117fe7d1d9207c0e8315b84adbe"; hasRunfiles = true; @@ -13133,14 +13133,14 @@ tl: { # no indentation }; "lapdf" = { stripPrefix = 0; - md5.run = "866fda837d4482066b8b3be8c2b61741"; + md5.run = "47f5b091b801edb1a365c454315964b3"; md5.doc = "66d682665bb39cf5cea14f06d3f32fda"; hasRunfiles = true; version = "1.1"; }; "lastpackage" = { stripPrefix = 0; - md5.run = "0ed56cf7cbb0fef5a7bc255743b6c79f"; + md5.run = "512deb82510bee62e9507fbd6638770a"; md5.doc = "8811d362a6f4453f93c30e20ddea151e"; md5.source = "ab44b56bd538aad6a57a6d66973adfaa"; hasRunfiles = true; @@ -13148,7 +13148,7 @@ tl: { # no indentation }; "lastpage" = { stripPrefix = 0; - md5.run = "ada3b026e2b95f5f767f258f9cdd3fa2"; + md5.run = "3c133a17250306dceec19202d3823bd7"; md5.doc = "89f139e8f5ee063f1a7920d5fdf23720"; md5.source = "5fc81d934b4c31e02e4d93f1ff953682"; hasRunfiles = true; @@ -13212,7 +13212,7 @@ tl: { # no indentation }; "latex-make" = { stripPrefix = 0; - md5.run = "78f0393710cd12b8e571057b69c3317c"; + md5.run = "89c2ba0852381806b77d3e13c64a4a1b"; md5.doc = "e4c185a6ec63ee274398ab17e5c7681c"; md5.source = "8ca545c2e4052e761c1f38ee9da65380"; hasRunfiles = true; @@ -13314,7 +13314,7 @@ tl: { # no indentation }; "latexdemo" = { stripPrefix = 0; - md5.run = "985d4372886a559c052c1c67514c6ed8"; + md5.run = "c8393c51ad1ad4a4cc1cfe98cb05b051"; md5.doc = "bc4b9948ec7e9598c0e5fe22ea148a59"; md5.source = "2375b13428a066c6dde981243c388d51"; hasRunfiles = true; @@ -13368,7 +13368,7 @@ tl: { # no indentation }; "lato" = { stripPrefix = 0; - md5.run = "43ba67cd4056514f597a8a867bc85b1d"; + md5.run = "a2ab614ec40e10503fa0e7c7802ee9ec"; md5.doc = "7f306f2a16a78b4e580a2d93fe7aaca2"; md5.source = "a9393e6828fb28c75f583c8500625e6e"; hasRunfiles = true; @@ -13384,7 +13384,7 @@ tl: { # no indentation }; "layouts" = { stripPrefix = 0; - md5.run = "10b3d40eaadf4903489d4084ec18c2cb"; + md5.run = "6f33829d8e54312157210cdc67ea801c"; md5.doc = "13baff87b584b79ab5162ec68555a68f"; md5.source = "4d193b38f0df6e23a95a30c74b49086c"; hasRunfiles = true; @@ -13392,14 +13392,14 @@ tl: { # no indentation }; "lazylist" = { stripPrefix = 0; - md5.run = "f3436d20ecb18768aea348dddba1e31e"; + md5.run = "8a2d543c002ad7b4170ed6a616d941b1"; md5.doc = "413539e103ddf8a33ce7949125b69506"; hasRunfiles = true; version = "1.0a"; }; "lcd" = { stripPrefix = 0; - md5.run = "ba96a755215fcfcf86cab32aaf318e6b"; + md5.run = "596d95ca5c747f0c0e412a7ed834830c"; md5.doc = "618bb6c3bcebd820ef12326b47b50150"; md5.source = "a6cbb54381854f168e24cf62ece583f3"; hasRunfiles = true; @@ -13413,7 +13413,7 @@ tl: { # no indentation }; "lcg" = { stripPrefix = 0; - md5.run = "85da76d431937da692baa5e80e9f1915"; + md5.run = "076489b982d6bc84ddc07279abf9cf78"; md5.doc = "b9caa3c0486f29278762acac18f7e2bf"; md5.source = "9445ab139d4af30b4478787c560273da"; hasRunfiles = true; @@ -13429,7 +13429,7 @@ tl: { # no indentation }; "leading" = { stripPrefix = 0; - md5.run = "744fe1589826f1987b5ba3f4a501d173"; + md5.run = "9e8045186e098040c3e3f1380c18384b"; md5.doc = "b3d1c6b3f8927c4d2fca3991994bab8b"; md5.source = "a73f63acba993ea0acbf56009012c2fa"; hasRunfiles = true; @@ -13437,14 +13437,14 @@ tl: { # no indentation }; "leadsheets" = { stripPrefix = 0; - md5.run = "803f1a336b1e2804304d72fc3d067901"; + md5.run = "bf511ffffd10007ed431bd2def19f50d"; md5.doc = "70a1058f6a0ef643b22c9e6b196c87a9"; hasRunfiles = true; version = "0.1"; }; "leaflet" = { stripPrefix = 0; - md5.run = "2df2a50368f52b6516c0afb81b84c327"; + md5.run = "3e9aac91b0609201c063cc8420761da2"; md5.doc = "f8c4a0268de9694604b8a6652335b158"; md5.source = "20882039d6ef438d79fecf077c00d2cc"; hasRunfiles = true; @@ -13452,13 +13452,13 @@ tl: { # no indentation }; "lecturer" = { stripPrefix = 0; - md5.run = "0ae516b3d9847e97328472b13767e0ae"; + md5.run = "36090aeb85005f9bb96fa9698a59ec44"; md5.doc = "e216b2ee331b6c06e2896ac0aa9ed574"; hasRunfiles = true; }; "ledmac" = { stripPrefix = 0; - md5.run = "6646801d4fc94cbba73a6e3c2b9ff88e"; + md5.run = "b43ebfa163dcc17c9f2b05f3b8ed7429"; md5.doc = "dd72a7857b1ec812eec28561536b2b25"; md5.source = "d5281c57efb20590791dfc00ec5ae2cb"; hasRunfiles = true; @@ -13466,14 +13466,14 @@ tl: { # no indentation }; "leftidx" = { stripPrefix = 0; - md5.run = "dca71275c11501b96923f11d33b03553"; + md5.run = "6bf3df9cea1f3823a01a1f9448f4cd43"; md5.doc = "30f2b8c98ab3c2d72eb91a7865bd8201"; md5.source = "7655f240707a931a046c49316e6fdd79"; hasRunfiles = true; }; "leipzig" = { stripPrefix = 0; - md5.run = "594a92d05f5a879bb05a106437ebbe98"; + md5.run = "15659209c6b5b14c3c2c38c002d9d3f3"; md5.doc = "20f504dc22a68103ad376b449c5c4b25"; md5.source = "d52879599bcbcc6b5ce60a5580066a1b"; hasRunfiles = true; @@ -13481,7 +13481,7 @@ tl: { # no indentation }; "lengthconvert" = { stripPrefix = 0; - md5.run = "668459096390067a9355fcf52b930ee0"; + md5.run = "58ba2c46278e38d96d13a8feb586cf5b"; md5.doc = "2c8c267ffa4fa2903d0ce9d45f4daedd"; md5.source = "fac3ef07aea1f988fed20159bbb1e7c6"; hasRunfiles = true; @@ -13489,14 +13489,14 @@ tl: { # no indentation }; "lettre" = { stripPrefix = 0; - md5.run = "e8ce21938f1b4723703ab124129c40cc"; + md5.run = "a3ce482770d11590bee4a9ad7806254d"; md5.doc = "ab216db27da8ca88123fff943f9463d6"; hasRunfiles = true; version = "2.353"; }; "lettrine" = { stripPrefix = 0; - md5.run = "5e97742d0baae97039f072daa587f9c4"; + md5.run = "95f79408def03ebc348eacd9dbb04633"; md5.doc = "81f99c19090c6682b4a2cc54faf5067b"; md5.source = "e41f8c5c96049091c754e8eb05858136"; hasRunfiles = true; @@ -13504,41 +13504,41 @@ tl: { # no indentation }; "levy" = { stripPrefix = 0; - md5.run = "ec6a0e1b5c69ca8c3250874cb1c03a83"; + md5.run = "b070ab001a965e347439c3b5a7a1f8ac"; md5.doc = "48a762e0a451e87b1c615c7cdbd9690f"; hasRunfiles = true; }; "lewis" = { stripPrefix = 0; - md5.run = "42a0242be259873c3e0455cbd437cdfd"; + md5.run = "d214bf155174db10ae8c36a27eb1d496"; md5.doc = "95b0529f756e8c1eabf2103e943988be"; hasRunfiles = true; version = "0.1"; }; "lexikon" = { stripPrefix = 0; - md5.run = "5f8103640fee87d12e03dea29c11ab70"; + md5.run = "1b0964f6a89d4c2abd2700687459db1e"; md5.doc = "a34e15f268bc03f1351b033f8ab2be66"; hasRunfiles = true; version = "1.0c"; }; "lexref" = { stripPrefix = 0; - md5.run = "73d0c68aa975cdfe3bc44d96691a5f75"; + md5.run = "877ff13770ff764aa4adc4df997e138a"; md5.doc = "39d7fb280ef156a17314e2acc3d75493"; hasRunfiles = true; version = "1.1a"; }; "lfb" = { stripPrefix = 0; - md5.run = "e57f872b67a6eb7919a48e5aecde2e26"; + md5.run = "57c4e54b4d57075eb883b336565ea7dc"; md5.doc = "5be65ca3bbadbffec47e1a67839c745c"; hasRunfiles = true; version = "1.0"; }; "lgreek" = { stripPrefix = 0; - md5.run = "13ed77e45753f8b9fd2744b55b6f8be2"; + md5.run = "d98a0c132e9f1f2bc02258ce77ac955b"; md5.doc = "98e25556f4cd3c2ca3fb22eec9035802"; hasRunfiles = true; }; @@ -13559,7 +13559,7 @@ tl: { # no indentation }; "lhelp" = { stripPrefix = 0; - md5.run = "8e7a2ef7b29af134122bdb7dae6d392a"; + md5.run = "0ecf3cfd2d739d9472fe6eb1bc1b9123"; md5.doc = "a3787ad2413ed3a202639d294687e497"; md5.source = "8c379e584238742a1fb306a386e651ad"; hasRunfiles = true; @@ -13567,14 +13567,14 @@ tl: { # no indentation }; "libertine" = { stripPrefix = 0; - md5.run = "6c8392e8856f2f82733399ae16c10407"; + md5.run = "548a1ceef08dd7540a8bdfb6b7334f92"; md5.doc = "07a2591ec474cc34eb144e385fcc9144"; hasRunfiles = true; version = "5.3.0"; }; "libgreek" = { stripPrefix = 0; - md5.run = "364a7893734318ebf591aa4b11f744bd"; + md5.run = "0c03420c1bde79fb2c06936f98f68f46"; md5.doc = "2891142f4fd592b04dca0621c4f0bdfd"; md5.source = "3f8b4016cc41285e52a5afaca3bba37e"; hasRunfiles = true; @@ -13582,33 +13582,33 @@ tl: { # no indentation }; "librarian" = { stripPrefix = 0; - md5.run = "8144521b794f6deec3eadb01015b9944"; + md5.run = "cff4b2b635abe399539eceac8e5387ac"; md5.doc = "4e05e06571e53f5ef3894ec81a07d91a"; hasRunfiles = true; version = "1.0"; }; "librebaskerville" = { stripPrefix = 0; - md5.run = "7abf1e1baad2bd92e0f23930f13acae6"; + md5.run = "3ba25ee7cd499c198f8cc293ad4d178c"; md5.doc = "fb7c7181e6a61ff06311d66cd9773c16"; hasRunfiles = true; }; "librecaslon" = { stripPrefix = 0; - md5.run = "91e526a93af2811cf4db001f79eee342"; + md5.run = "556b4e4a276b18de5ad40a8d1a15a22c"; md5.doc = "1378afba972d0158151e8d2c646a14e6"; hasRunfiles = true; }; "libris" = { stripPrefix = 0; - md5.run = "3afd833e4a1543a3ee8e70800702cef0"; + md5.run = "ee533fdda7239ed9fe1ad01aec3a78ce"; md5.doc = "85bd4f38a86fb17313dfcf180b8aa325"; md5.source = "74286200df4ef494a73821fca5333451"; hasRunfiles = true; version = "1.007"; }; "lilyglyphs" = { - md5.run = "b7bc61209211be4234394fed77e54d87"; + md5.run = "56e14239cfa0def8e60f270c6d78729e"; md5.doc = "6fed026d55bba99638a8e4e7c4200978"; md5.source = "0ca83ba9cdd91fda6d256d2337cca3c9"; hasRunfiles = true; @@ -13616,20 +13616,20 @@ tl: { # no indentation }; "limap" = { stripPrefix = 0; - md5.run = "82594b32ed8a99a92784949b33b8282a"; + md5.run = "742a6ba44bced455fdb5839cb6251de4"; md5.source = "f01a33dc5de30ea1c4bb9efdbc713ceb"; hasRunfiles = true; }; "linearA" = { stripPrefix = 0; - md5.run = "3213fd077af724a2792b5b38733e5d20"; + md5.run = "729c40d2ed3b67b3395a9ecc008aaf1a"; md5.doc = "841af5d7e679ca8a841188bf9d7e2934"; md5.source = "8c71c3d0f0b8097250e8292c3f5ae6bd"; hasRunfiles = true; }; "linegoal" = { stripPrefix = 0; - md5.run = "d05cbaac186947b1c3ab4024d67c9585"; + md5.run = "17b432a10e20d9de7714a4bd8d1923da"; md5.doc = "95675d0714965fcd905eaad738eb1a01"; md5.source = "098dc19ef8248d87089eaf9604616f80"; hasRunfiles = true; @@ -13645,14 +13645,14 @@ tl: { # no indentation }; "linguex" = { stripPrefix = 0; - md5.run = "0003795e666ebf03dea81039f318326b"; + md5.run = "bf8383c98d22ba4402fe68a7c4ebdf8c"; md5.doc = "52a4d7ec517bb22556597f7bb87c2e71"; hasRunfiles = true; version = "4.3"; }; "lipsum" = { stripPrefix = 0; - md5.run = "d04c97ce441f2c84d4e4554bb98dc242"; + md5.run = "d3ffa51631c90cb6f9bbe35af26aca41"; md5.doc = "4f04cc2b7db3909d1ff130c95ba6dee1"; md5.source = "99eb731fa5f914d4dc6e7e86612d4f7f"; hasRunfiles = true; @@ -13660,13 +13660,13 @@ tl: { # no indentation }; "lisp-on-tex" = { stripPrefix = 0; - md5.run = "4e435dbe7bb8a85e3998615894fb6b08"; + md5.run = "ff82ee7b6296fd7c59acb8d4a905588e"; md5.doc = "37f27b6249af2f60db0bf5f985082523"; hasRunfiles = true; version = "1.3"; }; "listbib" = { - md5.run = "689e66b63e05dd01f39c5f9b8508a6bb"; + md5.run = "65fdb8df2c04c4e60aae61bef5f29e79"; md5.doc = "2cf3a186163742361ec084316b0189d8"; md5.source = "cc90d0c24194a76cee650ab670aa3a6a"; hasRunfiles = true; @@ -13674,7 +13674,7 @@ tl: { # no indentation }; "listing" = { stripPrefix = 0; - md5.run = "d475e9e0d35109dc255e3f02faf9de3c"; + md5.run = "1f73a338b6f332d0734c3ca183a86ffc"; md5.doc = "ca7322cd67fefe704a8d72b2866ae143"; hasRunfiles = true; version = "1.2"; @@ -13696,7 +13696,7 @@ tl: { # no indentation }; "listlbls" = { stripPrefix = 0; - md5.run = "82d7ab40f5fe2c5c6fe221ffa21ac789"; + md5.run = "9870c91d6a055a6fb0cc3da26dfc1e2b"; md5.doc = "108a218fb1796bb4a66b805423682113"; md5.source = "c71f274cd30923eeddb744fcfb633912"; hasRunfiles = true; @@ -13704,14 +13704,14 @@ tl: { # no indentation }; "listliketab" = { stripPrefix = 0; - md5.run = "ea5340f6489e5f8a782e8f82d9aaae0f"; + md5.run = "ccfa8ca2711b636ad9e0a9b7bae02a81"; md5.doc = "836bf85308fa1dad7ab807baa6149882"; md5.source = "3f47725a6139a63f82790342624caec4"; hasRunfiles = true; }; "listofsymbols" = { stripPrefix = 0; - md5.run = "3d33860716b7cf359a9b7e2225071f74"; + md5.run = "f4e3d2f7b14e31b46777f99790831dda"; md5.doc = "19c7eb841bb05c028c53e1067ca29f8d"; md5.source = "10f233b006b39af6bb3f2cc7c048cc76"; hasRunfiles = true; @@ -13725,7 +13725,7 @@ tl: { # no indentation }; "liturg" = { stripPrefix = 0; - md5.run = "7fa29d260b91304b40f0d8d7ef820a0a"; + md5.run = "bda5230f723f9df1e9e17758a1080183"; md5.doc = "aa59fdc774d885b28fc0712c4ba80a56"; md5.source = "d924b8386eb4b4953042105c77ff77c1"; hasRunfiles = true; @@ -13733,7 +13733,7 @@ tl: { # no indentation }; "lkproof" = { stripPrefix = 0; - md5.run = "5c7e10ce00cef03f160adc7a1bca4b83"; + md5.run = "d0066e711b9270177856863d0f82c363"; md5.doc = "b8f76ee4a85f4a8c8455ccb78121b90e"; hasRunfiles = true; version = "3.1"; @@ -13755,7 +13755,7 @@ tl: { # no indentation }; "lmake" = { stripPrefix = 0; - md5.run = "648ac91d837384e25c0cf43743a28f3f"; + md5.run = "1fc87056b9db3c3812e05ef11a8e634d"; md5.doc = "bd8a07d578caf458c331e08c5dd34640"; md5.source = "eaf69b747ce8404b58b1fcc3324a1769"; hasRunfiles = true; @@ -13763,13 +13763,13 @@ tl: { # no indentation }; "lobster2" = { stripPrefix = 0; - md5.run = "98acc876bb4c87358d3871b52472073f"; + md5.run = "b9544814030b4fbdc106e6fb60bf35ce"; md5.doc = "dd28989dcb5d5450eb2a5e7314632d07"; hasRunfiles = true; }; "locality" = { stripPrefix = 0; - md5.run = "49e44f61cb5861c08ede99c4e056bac0"; + md5.run = "2fa0ff6f8859d1e1b29b7cb26173a9b0"; md5.doc = "73cfd7a1ed8f5dca79bc8415143a8db9"; md5.source = "31a6773fdf9ddd1f702e710a81368165"; hasRunfiles = true; @@ -13777,14 +13777,14 @@ tl: { # no indentation }; "localloc" = { stripPrefix = 0; - md5.run = "5acd4d9b3fdc1936153f448e15513373"; + md5.run = "7f32c95b3ebfd1f42f925ddb5a79f2e4"; md5.doc = "bba7498fde0eaac22893bd52b5524425"; md5.source = "2cd348af354fe62358a6378eb0f0b934"; hasRunfiles = true; }; "logbox" = { stripPrefix = 0; - md5.run = "7caeac03832ee26c300ab509dfe24883"; + md5.run = "d580706fd5493178008633cf57f2a2d9"; md5.doc = "e7be608645b25f0d230db102d4c1ffb0"; md5.source = "1a97586c9ab17169a9fa631d5f04de52"; hasRunfiles = true; @@ -13792,7 +13792,7 @@ tl: { # no indentation }; "logical-markup-utils" = { stripPrefix = 0; - md5.run = "15cade39e6de407e19cf047fec1fbf7b"; + md5.run = "a0c98994210d33faf226f3b1c1e32d6b"; md5.doc = "e75f29865436bfc4170479e4225d22b0"; hasRunfiles = true; }; @@ -13805,14 +13805,14 @@ tl: { # no indentation }; "logicpuzzle" = { stripPrefix = 0; - md5.run = "9513623700b13dfe92ab50d10af007a1"; + md5.run = "f62e712e31db7cc1ad4965b767b76fb0"; md5.doc = "bdeb3c6f9e46bc36ffc4e3d31f1b2e5f"; hasRunfiles = true; version = "2.5"; }; "logpap" = { stripPrefix = 0; - md5.run = "adb54a367f86d16ee6b234c0ec0e585d"; + md5.run = "d1f72b420640bb644ceeb6165d3e0284"; md5.doc = "d7d4665bc12383a55dc6774a0d9f22c1"; md5.source = "5eab297b80b27a64f5ee6730abe6597b"; hasRunfiles = true; @@ -13820,20 +13820,20 @@ tl: { # no indentation }; "logreq" = { stripPrefix = 0; - md5.run = "93946c88ede0dc16280a75477014f6e2"; + md5.run = "1d88db8f23916e47eb8b6b03c7d3e6aa"; md5.doc = "90180645c1f28f5fa9d6346b3efc72b2"; hasRunfiles = true; version = "1.0"; }; "lollipop" = { - md5.run = "dd8032a8fc5f1515c3c9ee0e032b6ca9"; + md5.run = "436207d3a337037ac2fbaddf9529aabe"; md5.doc = "364add43de99a4f7aaac1b6602c69868"; hasRunfiles = true; version = "1.03"; }; "longfigure" = { stripPrefix = 0; - md5.run = "e9b9a8a3296b88bb600c2b9f1c23087c"; + md5.run = "117e0d2f355c4dca95712ad3f3967b07"; md5.doc = "3264e3ec865160b8ca2e333b8a299844"; md5.source = "f6370461696d68e0829bf2da44bcf15a"; hasRunfiles = true; @@ -13841,7 +13841,7 @@ tl: { # no indentation }; "longnamefilelist" = { stripPrefix = 0; - md5.run = "e95646841c4a289824400f4acc5159ab"; + md5.run = "d6bfbb08b9fcbb7639c06e73b69b0745"; md5.doc = "0a08b05bd55eb2e9cf43743f1eae2e91"; md5.source = "684bbdafa6752a084b6f89c802590976"; hasRunfiles = true; @@ -13849,7 +13849,7 @@ tl: { # no indentation }; "loops" = { stripPrefix = 0; - md5.run = "f15cd180e5a1d1b047951b24d291be71"; + md5.run = "8fd6289d26205931713c1cb98e1b20ac"; md5.doc = "cbac4b81307a69194a16322e6d47d7ba"; hasRunfiles = true; version = "1.3"; @@ -13862,7 +13862,7 @@ tl: { # no indentation }; "lpic" = { stripPrefix = 0; - md5.run = "315deb42e64528d50bd158aca06c58b0"; + md5.run = "f716d9b2f6d8709ae97abb72916efc5d"; md5.doc = "e2df54c13be0a9a27b2f6665fc1ef62c"; hasRunfiles = true; version = "0.8"; @@ -13877,7 +13877,7 @@ tl: { # no indentation }; "lps" = { stripPrefix = 0; - md5.run = "963778904b59210fc8764a23b96c8790"; + md5.run = "b769dbc90e95ba6bc54d90868704c138"; md5.doc = "e3cb51f44039312818ca2e17faead9d8"; md5.source = "ff781beca3f45c926c5c67c26fdc6c86"; hasRunfiles = true; @@ -13885,7 +13885,7 @@ tl: { # no indentation }; "lsc" = { stripPrefix = 0; - md5.run = "74c964b764e2027572b8d76d13efc7e2"; + md5.run = "4875ed1cafa4eb60827d438d962f4663"; md5.doc = "84c3d4dd4c44c1805cd93e4e6388d097"; hasRunfiles = true; }; @@ -14022,7 +14022,7 @@ tl: { # no indentation }; "lstaddons" = { stripPrefix = 0; - md5.run = "54466b16c1d63192a1be079ec6287118"; + md5.run = "61501177743fff16edf609d62743c3c0"; md5.doc = "43f70469545e6358421fe786858da8e5"; md5.source = "5ee7f8564079a4f1fd032db436dbf43b"; hasRunfiles = true; @@ -14030,28 +14030,28 @@ tl: { # no indentation }; "lt3graph" = { stripPrefix = 0; - md5.run = "41bbc9dbea1d85a95f0b4c52fdaefd97"; + md5.run = "59e293da163648137f8b4658a3b18e90"; md5.doc = "24df07d27826654e578892c5fadde952"; hasRunfiles = true; version = "0.1.4"; }; "ltablex" = { stripPrefix = 0; - md5.run = "9f5f1d01e35619eeed1b4e7bc4a5116d"; + md5.run = "e24b7ee5ab31b75ee0acea94b03a50d6"; md5.doc = "620078a1a3a4dee5f7a3f37af0583e4e"; hasRunfiles = true; version = "1.1"; }; "ltabptch" = { stripPrefix = 0; - md5.run = "521f483cbf05aa0fd5a70f8047f4248a"; + md5.run = "1d4e4e6e835a455bddd3f98ddcffea00"; md5.doc = "dc109e8f186b3d30452703ca53b45484"; hasRunfiles = true; version = "1.74d"; }; "ltxdockit" = { stripPrefix = 0; - md5.run = "d41abca51ac1e07870636666932d8e0e"; + md5.run = "5c2a0040288942d43baaac2c1a2ad86c"; md5.doc = "952a4025d4c937c49cc269b8655645e3"; hasRunfiles = true; version = "1.2d"; @@ -14070,7 +14070,7 @@ tl: { # no indentation }; "ltxindex" = { stripPrefix = 0; - md5.run = "ad3de753eee10122fbcd120b0a06ecde"; + md5.run = "61893d1889a9b5b43b25d6ab457621f9"; md5.doc = "6afabd3a66f1963e15f3fb52ed4542ca"; md5.source = "769c7d8a7190dd32724e714a6d7083ac"; hasRunfiles = true; @@ -14078,7 +14078,7 @@ tl: { # no indentation }; "ltxkeys" = { stripPrefix = 0; - md5.run = "eb0d3a61213e598410b896f5defe9f36"; + md5.run = "929693eeddac4829617dcd3649e50d02"; md5.doc = "724b41dbf6a543c264d8196bfc228aac"; hasRunfiles = true; version = "0.0.3c"; @@ -14090,7 +14090,7 @@ tl: { # no indentation }; "ltxnew" = { stripPrefix = 0; - md5.run = "ecbbcb0301537001a0769e928663a2dd"; + md5.run = "0f4dda6685236030d52b4628b9f8694d"; md5.doc = "913e36585469b7d5f154dedee69bf3c9"; md5.source = "ab2a8d8564fcfa681f4374d908f78657"; hasRunfiles = true; @@ -14098,7 +14098,7 @@ tl: { # no indentation }; "ltxtools" = { stripPrefix = 0; - md5.run = "f79a94f3bb63a40dbee369c5da819c42"; + md5.run = "833e126eba86c3a18d6c09501988ca54"; md5.doc = "c96e9290f1ce28ba889e2571d1409f4e"; hasRunfiles = true; version = "0.0.1a"; @@ -14242,7 +14242,7 @@ tl: { # no indentation }; "luatexja" = { stripPrefix = 0; - md5.run = "56f66b8319ba81ab7732109b699b3ca5"; + md5.run = "56331bfa4971a57e5b9895b09a788c01"; md5.doc = "cfde6bbbb1fe5563149f80f92b44d791"; md5.source = "988d52011890b21a97c371d041a2489d"; hasRunfiles = true; @@ -14280,7 +14280,7 @@ tl: { # no indentation }; "lxfonts" = { stripPrefix = 0; - md5.run = "f081b69f4b3cdc80dd17d3c68b2b577e"; + md5.run = "7d1fa45115b962293e2dbb85f8889804"; md5.doc = "34fc057b147cf4ed4e3c1f030100f05e"; md5.source = "120eb22fa82bd597210c7f9f469d0cf7"; hasRunfiles = true; @@ -14293,7 +14293,7 @@ tl: { # no indentation hasRunfiles = true; }; "m-tx" = { - md5.run = "0f1f7ece2ed61a8f6fa78eb17e605f50"; + md5.run = "10a412670eb40aacc9e744c9c131f39c"; md5.doc = "c1d1152fc7787378ac074c2ffcbe3661"; hasRunfiles = true; version = "0.60d"; @@ -14306,7 +14306,7 @@ tl: { # no indentation }; "macroswap" = { stripPrefix = 0; - md5.run = "1586f0e593f3bc61d2ed3a62020d2574"; + md5.run = "2425eb3387c11d75baff69395bbac43e"; md5.doc = "a796159e5e576149bfc9d4c753df136e"; md5.source = "9a884432e823e592813a86bd45ccb67a"; hasRunfiles = true; @@ -14321,21 +14321,21 @@ tl: { # no indentation }; "magaz" = { stripPrefix = 0; - md5.run = "abd267839efdc1f67b5e46f237299566"; + md5.run = "19263588c68ad20fedc574530412905f"; md5.doc = "d5479a988e9081c63edcd2ec3c7473e0"; hasRunfiles = true; version = "0.4"; }; "mailing" = { stripPrefix = 0; - md5.run = "1cea987e55dbba9dc863fa0811bcb2ea"; + md5.run = "0b5b551238361a2963ff82b14213e5a4"; md5.doc = "d1066378400618a7c4194406ec50b473"; md5.source = "7383a8149f2552ede35d693b6417b7cb"; hasRunfiles = true; }; "mailmerge" = { stripPrefix = 0; - md5.run = "34b54febb05251268566550f1da89962"; + md5.run = "66adbfea7ff8a1787a85af137120b2b4"; md5.doc = "2209b9eab4a1b414abb19a60566af528"; md5.source = "6ecea4f753187989376ac717ba14bbad"; hasRunfiles = true; @@ -14343,14 +14343,14 @@ tl: { # no indentation }; "makebarcode" = { stripPrefix = 0; - md5.run = "6295064410c6ca9709c14418e145edca"; + md5.run = "e7f0543f9996144aa085fb26d45f43fd"; md5.doc = "7dfab19f2017399319d4ea230ee0725f"; hasRunfiles = true; version = "1.0"; }; "makebox" = { stripPrefix = 0; - md5.run = "8de02e07cd2da61dd9b9eacd52524c99"; + md5.run = "401724388d02c1865b5932272f369a43"; md5.doc = "6dd8cc931dcc879c244306ddd3252205"; md5.source = "a51805fcdd5dfbe7cfd36701d3c75592"; hasRunfiles = true; @@ -14358,7 +14358,7 @@ tl: { # no indentation }; "makecell" = { stripPrefix = 0; - md5.run = "f1ed4d3a93a6628e72546f77a34d0355"; + md5.run = "6517d967beaebf019e58e8faeabb900e"; md5.doc = "5e7f77b4a7121a891f4c5fc085dffa70"; md5.source = "2f3bd3bc7a52466ce90a1ae11d1292ad"; hasRunfiles = true; @@ -14366,7 +14366,7 @@ tl: { # no indentation }; "makecirc" = { stripPrefix = 0; - md5.run = "fe4eca79e20a84a9f741dcdace864e08"; + md5.run = "416e57fb3280700fb6b3b2ee3c32aa5f"; md5.doc = "0f84d31247c00ac2a08a44d9d7056335"; hasRunfiles = true; }; @@ -14379,7 +14379,7 @@ tl: { # no indentation }; "makedtx" = { stripPrefix = 0; - md5.run = "7d6ccc9ea59e9b012b62e7e9a5023d04"; + md5.run = "c2aff4e326d5f6bbfba492ace51fc480"; md5.doc = "b10f672d2c6bdf54c68ae3972ebbf051"; md5.source = "0893715aecd1a8668fe99382db2ad063"; hasRunfiles = true; @@ -14387,7 +14387,7 @@ tl: { # no indentation }; "makeglos" = { stripPrefix = 0; - md5.run = "f929b3a241a59452ff2972e083c38967"; + md5.run = "83f7118ead58ecafda16c237a6e5b2f9"; md5.doc = "1bed803bf7ed82c780d6dca49c9407af"; hasRunfiles = true; }; @@ -14399,7 +14399,7 @@ tl: { # no indentation }; "makeplot" = { stripPrefix = 0; - md5.run = "8db772a8949343294d574a162754b674"; + md5.run = "8088a9f7be70cb87cc9a51f86c975f02"; md5.doc = "4ce416591d22c7221e82d8805c52cc51"; md5.source = "660d475f0bed9a8bbb97ba9c813cae89"; hasRunfiles = true; @@ -14407,7 +14407,7 @@ tl: { # no indentation }; "makeshape" = { stripPrefix = 0; - md5.run = "df5bfbc52e99881b995c17449b174116"; + md5.run = "fc662780c1b152d5b16c5c923c6564cc"; md5.doc = "80428547483927c442d6f1e6552db3eb"; md5.source = "a9c1d98eaa8888ec2a1c60fa357fa544"; hasRunfiles = true; @@ -14415,7 +14415,7 @@ tl: { # no indentation }; "mandi" = { stripPrefix = 0; - md5.run = "deb8b53596b55c619ad5b490eb3f9ef0"; + md5.run = "6ef4665527417d920bfce5550b089fa2"; md5.doc = "3745bef7374328c5755129c59ded65a6"; md5.source = "aa29f1300be35b917920f32d1ba48055"; hasRunfiles = true; @@ -14423,7 +14423,7 @@ tl: { # no indentation }; "manfnt" = { stripPrefix = 0; - md5.run = "3622f733381d3fdb8b18f86ce8328777"; + md5.run = "b174775d6524f12a78dd69d71a88bd47"; md5.source = "bf776dc3f46ee2a082702e3394a08f6b"; hasRunfiles = true; }; @@ -14434,7 +14434,7 @@ tl: { # no indentation }; "manuscript" = { stripPrefix = 0; - md5.run = "642e86d00a464e811a84a86a01801830"; + md5.run = "5eeb90f244bb4a9172809faaa1a3a9e8"; md5.doc = "b0026355d87d483d65d52eca0064e7aa"; md5.source = "0b77e980933a2d62a42a2ae5c1c76366"; hasRunfiles = true; @@ -14442,7 +14442,7 @@ tl: { # no indentation }; "margbib" = { stripPrefix = 0; - md5.run = "7826d92c04c8b70695dea19c1c50c1d2"; + md5.run = "ae46207154753cf61061e8a906c01a1a"; md5.doc = "4e9cacdae7d9d5205937699774a2e1b5"; md5.source = "2b4b5da244bcecd84370c4377a048414"; hasRunfiles = true; @@ -14450,7 +14450,7 @@ tl: { # no indentation }; "marginfix" = { stripPrefix = 0; - md5.run = "3e341959373ccd3c8e638843a86c5615"; + md5.run = "bd6d22a8ea0ee4465cbc1dba0428fac2"; md5.doc = "b5845fe04c1acee165eddc3aff0fc456"; md5.source = "f74da3f9836e1004815e674e6447c5c2"; hasRunfiles = true; @@ -14458,7 +14458,7 @@ tl: { # no indentation }; "marginnote" = { stripPrefix = 0; - md5.run = "3b5cc88650d10edb247847c505e422b3"; + md5.run = "a3b5fca7ef464c5a15bf0bc2ab6d2317"; md5.doc = "e337e4c91e4d70e12fb0c19e8127cb6a"; md5.source = "e9de6d5a491f01b608a0868809785833"; hasRunfiles = true; @@ -14474,7 +14474,7 @@ tl: { # no indentation }; "matc3" = { stripPrefix = 0; - md5.run = "00251475340e3e2e1ccb782b61172ebe"; + md5.run = "4e1f6230ffc45b722f01f4cdff1312d9"; md5.doc = "4c3adda16285949b701aeea2bee2e8ef"; md5.source = "b41a239a69e22bda63fd21dbfaa14d17"; hasRunfiles = true; @@ -14482,7 +14482,7 @@ tl: { # no indentation }; "matc3mem" = { stripPrefix = 0; - md5.run = "415fe253ba4b3f074ccd76aa454039f1"; + md5.run = "e4ef073fa5216cd9615ba161cde1dd46"; md5.doc = "05ee3f9e3f2b5f637640937fc65a8940"; md5.source = "df9a78d181ad8a2e78e6199f247f1572"; hasRunfiles = true; @@ -14501,27 +14501,27 @@ tl: { # no indentation }; "mathabx" = { stripPrefix = 0; - md5.run = "b9892cd4ffbaddac5042a37edd29e839"; + md5.run = "b45e2875bf25854c801fb88b45eb51ec"; md5.doc = "b23ae993de115d8169e0cddc2794707a"; hasRunfiles = true; }; "mathabx-type1" = { stripPrefix = 0; deps."mathabx" = tl."mathabx"; - md5.run = "02eb05b1044171d776d3a24232618bd3"; + md5.run = "62db91f48ee1fe6084b621e5aecd099d"; md5.doc = "053f67fce8ade7b6d8d306dd38c6c602"; hasRunfiles = true; }; "mathalfa" = { stripPrefix = 0; - md5.run = "d2cc96331cb4206e72a341446df2e895"; + md5.run = "e5156da1eceaac2311a9d9a5a6611b0a"; md5.doc = "5c005d65dfa062904370db818ea8c2e2"; hasRunfiles = true; version = "1.07"; }; "mathastext" = { stripPrefix = 0; - md5.run = "5cfe03651116b89c2a76e37eb15ce448"; + md5.run = "4a83edc673369496c7cf60dcacac46ab"; md5.doc = "dbdb09a765f5e5ec5eaf3744f9e3029c"; md5.source = "5f2c1e8d9cb825075be13cbd0bc0e211"; hasRunfiles = true; @@ -14537,14 +14537,14 @@ tl: { # no indentation }; "mathdesign" = { stripPrefix = 0; - md5.run = "3cf6409434a0f10addba10e415f996b1"; + md5.run = "0350985c7b2dd12c78423941f26e5f7a"; md5.doc = "7ed16ff9d3e3427fcf5a0ca14d48889d"; hasRunfiles = true; version = "2.31"; }; "mathdots" = { stripPrefix = 0; - md5.run = "75f83cb12cce51ac386672920a29a478"; + md5.run = "b2c21cca4238211790a40cd06ec479ac"; md5.doc = "430ea671fc09c4b4611f41973c352e79"; md5.source = "3261a4d575a92195db65318725fc0e0d"; hasRunfiles = true; @@ -14552,7 +14552,7 @@ tl: { # no indentation }; "mathexam" = { stripPrefix = 0; - md5.run = "c4d56a8d0da79201022a1135b88244f3"; + md5.run = "310cf51486a61376de2b40e41c4b76f0"; md5.doc = "7d7a32ce87be05d762641b335c2c0282"; md5.source = "6239aa3b45bd11a7a7a44f08a3c473cd"; hasRunfiles = true; @@ -14574,7 +14574,7 @@ tl: { # no indentation version = "0.2"; }; "mathspic" = { - md5.run = "7aa594b228bd0d41ee0fc62948f9108b"; + md5.run = "bd98fa82c3917e10df1468991709cd6e"; md5.doc = "71aaed6fbcbb6ed3aaf3a3bab97f843d"; hasRunfiles = true; version = "1.13"; @@ -14589,7 +14589,7 @@ tl: { # no indentation }; "matlab-prettifier" = { stripPrefix = 0; - md5.run = "5f1e22b08a36b06b7f02eee071132b87"; + md5.run = "c7d821dac3e1441527f68351e14fcf96"; md5.doc = "5c9600d9df747f2f8ece970e55876bfd"; md5.source = "dbd3c906650dc482668c0111cf51cd20"; hasRunfiles = true; @@ -14605,20 +14605,20 @@ tl: { # no indentation }; "maybemath" = { stripPrefix = 0; - md5.run = "9fa309f7733b4350d453fb7a2bbee3fd"; + md5.run = "0c0c65296c8275f9ce46ac6b33006e41"; md5.doc = "6783ac1a32abdc755120fae0e5b81638"; hasRunfiles = true; }; "mbenotes" = { stripPrefix = 0; - md5.run = "522837aba06d6955759d08ae7504548b"; + md5.run = "86ac4a9e1a5a29f1adccc21d311fcc0e"; md5.doc = "b2c8eb3ea9c4351edd9b9e6c1b4f47eb"; hasRunfiles = true; version = "2"; }; "mcaption" = { stripPrefix = 0; - md5.run = "b8331678f33ed4eab59da56a79f4cdeb"; + md5.run = "3c3bad5ac1f7cd4c931642fb06fa9352"; md5.doc = "216d0f801500d4bd5a72dc0813677d1d"; md5.source = "ac34b51c2df6f7b031adaef99d8da88b"; hasRunfiles = true; @@ -14626,13 +14626,13 @@ tl: { # no indentation }; "mceinleger" = { stripPrefix = 0; - md5.run = "14a76d8d0de4f50a73943f9bc25455bd"; + md5.run = "ead356302376889f99db2d643d7450fd"; md5.doc = "68f612a9a9051a79fab6a0f287560eed"; hasRunfiles = true; }; "mcite" = { stripPrefix = 0; - md5.run = "5bc862a9ca1ce1914abfe56cfdf5d02a"; + md5.run = "922f9625d02a1f1a015050f527797b18"; md5.doc = "6cabc25833def78c71528f4a6ee75998"; md5.source = "2fa5f87336002232a9041f5f7c388300"; hasRunfiles = true; @@ -14640,14 +14640,14 @@ tl: { # no indentation }; "mciteplus" = { stripPrefix = 0; - md5.run = "8b41a2f379ac4e2444b7a27b795799ba"; + md5.run = "eb8177568bbd5ff503a76db4082e433a"; md5.doc = "02ef2e472780cb9f07830a732526a5ae"; hasRunfiles = true; version = "1.2"; }; "mcmthesis" = { stripPrefix = 0; - md5.run = "44a33ca37beb2980733759480a938f1d"; + md5.run = "eea7dda5cacbcd4ac9a456e19888ca79"; md5.doc = "2d6d953a30701b552cf2878e85dc4a85"; md5.source = "7e6a9e27de034d344b70a87fe3ba952f"; hasRunfiles = true; @@ -14655,7 +14655,7 @@ tl: { # no indentation }; "mdframed" = { stripPrefix = 0; - md5.run = "a6ed75b3c5350ab217bfa4d0452ba0b9"; + md5.run = "055de53d47e9e778d39455de4ecf7bf3"; md5.doc = "d19cf1e82828ae4ed0e5010700215268"; md5.source = "70fb8e2f1cec3eba727971a64b4a23b4"; hasRunfiles = true; @@ -14663,14 +14663,14 @@ tl: { # no indentation }; "mdputu" = { stripPrefix = 0; - md5.run = "db814f3bc2118ecc0d196b3d740f690b"; + md5.run = "c36590100f250868b993fdc4c0f0caec"; md5.doc = "34b101ac773ebbaa9a26505eb9ad8039"; hasRunfiles = true; version = "1.2"; }; "mdsymbol" = { stripPrefix = 0; - md5.run = "275731a1571a14fa6c6622d7c4018c17"; + md5.run = "70c5c8d3a8846320f688e94a1d0dac02"; md5.doc = "1c25aaa7d8913afbc9588f8ddcc0a9a9"; md5.source = "91828cd508a7efa9908bd79e8315f256"; hasRunfiles = true; @@ -14686,7 +14686,7 @@ tl: { # no indentation }; "media9" = { stripPrefix = 0; - md5.run = "e054cad34ffaa8f71592c2aa10dbe20e"; + md5.run = "5288b58687b1e7b94fe3c4e926f78a2f"; md5.doc = "0e5785b86eb51910da2aa227db0fe0ac"; md5.source = "d1da106685b48d5eebb09ae87a282be1"; hasRunfiles = true; @@ -14694,7 +14694,7 @@ tl: { # no indentation }; "meetingmins" = { stripPrefix = 0; - md5.run = "0e0117a300817323e393036d5de41537"; + md5.run = "e196796aa7593edbdcfb167e7525af33"; md5.doc = "b2050cee23e22b47fdf698fb78c31493"; md5.source = "817f9215e2ee5ee16481e334b34288b7"; hasRunfiles = true; @@ -14707,7 +14707,7 @@ tl: { # no indentation }; "memexsupp" = { stripPrefix = 0; - md5.run = "8dfd5128629273cc82d5d84ed034d06c"; + md5.run = "880db55bcaa833f7d5895fc98862c405"; md5.doc = "6b4606f22942e8dff29eb0d4b2f9f086"; hasRunfiles = true; version = "0.1"; @@ -14722,7 +14722,7 @@ tl: { # no indentation }; "memory" = { stripPrefix = 0; - md5.run = "aefdeff6132113c43b1d8a05792459a3"; + md5.run = "47a3cbd1ad8c218f808518acced3f180"; md5.doc = "59a1259431f94caa984b3e58e910020f"; md5.source = "54b3ecab2fa8de553c500dfe11c7be98"; hasRunfiles = true; @@ -14730,7 +14730,7 @@ tl: { # no indentation }; "mentis" = { stripPrefix = 0; - md5.run = "fc6e0c3d2d13387f6c314a7d3a78a397"; + md5.run = "287dab43377b8e5b5962bfd56a533540"; md5.doc = "7d7ca152efad31baa210d4d94f4c61cd"; md5.source = "300c8f2ceae4d5eabb0346d57d1deae4"; hasRunfiles = true; @@ -14738,7 +14738,7 @@ tl: { # no indentation }; "menu" = { stripPrefix = 0; - md5.run = "d5f1e6f4b531c6586314796d2adfc252"; + md5.run = "f50bfad5d67ddb0eecac3182bee6db0a"; md5.doc = "a77d0f3377d8fa751b4afff19153e545"; md5.source = "c7d0da3d869f5f8068c71d621c6bf629"; hasRunfiles = true; @@ -14746,7 +14746,7 @@ tl: { # no indentation }; "menukeys" = { stripPrefix = 0; - md5.run = "b4408b86740d1ef9bc87d78cd7b4e114"; + md5.run = "8a4472a462ff9602ca8b2bf615afc173"; md5.doc = "a6fcf40a6f52e490969a6a64a74841ca"; md5.source = "218ea946e7930d894d5cc5773a9bec0c"; hasRunfiles = true; @@ -14754,7 +14754,7 @@ tl: { # no indentation }; "merriweather" = { stripPrefix = 0; - md5.run = "e0989396bd29dada17463a7d9a8bf04a"; + md5.run = "ab1ce81245ab8ab601da362c251f264f"; md5.doc = "d32451271eb4c8bc0575b67e2047480e"; hasRunfiles = true; }; @@ -14813,7 +14813,7 @@ tl: { # no indentation }; "metatex" = { stripPrefix = 0; - md5.run = "77d88d43c4a494f7ed112d8323846667"; + md5.run = "8668dca27a1d216b5148c71eb7922b3e"; md5.doc = "df10087d608168ee7c36d70878782851"; hasRunfiles = true; version = "1.1"; @@ -14827,7 +14827,7 @@ tl: { # no indentation }; "method" = { stripPrefix = 0; - md5.run = "d7f398162c3c5801834d3ec5ef33cc1b"; + md5.run = "50287901ae441b7d9a6641aa83b0d657"; md5.doc = "74f942dd254d57d7899279916cac6692"; md5.source = "0e468b16984a46c6d420b60539dce8b7"; hasRunfiles = true; @@ -14835,7 +14835,7 @@ tl: { # no indentation }; "metre" = { stripPrefix = 0; - md5.run = "822cb475f24698314e56067fffb9d056"; + md5.run = "fb07f50e91366356c800016b7759ee7d"; md5.doc = "1fc5bdee790845265a5a4e339fe7314f"; md5.source = "68de1a909aa79682e5f1ad6951a4b68c"; hasRunfiles = true; @@ -14843,7 +14843,7 @@ tl: { # no indentation }; "metrix" = { stripPrefix = 0; - md5.run = "9fbb26a6a17c8d7c5d1cd7f955d9a329"; + md5.run = "22e50f05363fcdc477fe03f45e528c53"; md5.doc = "37b9cec30cfa4b96465aa8a9e57ec10b"; md5.source = "e3600d39621eb7646db847601a45be85"; hasRunfiles = true; @@ -14906,7 +14906,7 @@ tl: { # no indentation }; "mftinc" = { stripPrefix = 0; - md5.run = "e1419d379ab8a8b785ce50d278e02805"; + md5.run = "db5331fe17de41ac6e8eb260e42c53f5"; md5.doc = "198a2e9c7bf83c31f7cda947fa7f4733"; md5.source = "eda9ba670a1b88ac9d2495ae9b94fcd6"; hasRunfiles = true; @@ -14919,7 +14919,7 @@ tl: { # no indentation }; "mhchem" = { stripPrefix = 0; - md5.run = "6f3b8f3560544423c42287090fbd31a8"; + md5.run = "ce28c00f8c05198d95534adebae1707d"; md5.doc = "4a971994c5f1658341387dc84b3cbe3c"; hasRunfiles = true; }; @@ -14946,13 +14946,13 @@ tl: { # no indentation }; "midnight" = { stripPrefix = 0; - md5.run = "da0d8763e2b279bd0b4d8f43bf01defb"; + md5.run = "362499d59c98850b2805aa8d48679c7b"; md5.doc = "7b92b2010386b1082a7e4d001c302f4d"; hasRunfiles = true; }; "midpage" = { stripPrefix = 0; - md5.run = "9ca49a5a8afe9af5c45e9a8488181610"; + md5.run = "17ca3f890cfde7128c881ce3f5415472"; md5.doc = "9b735c54e8968815b209157daec9a708"; hasRunfiles = true; version = "1.1a"; @@ -14964,7 +14964,7 @@ tl: { # no indentation }; "miller" = { stripPrefix = 0; - md5.run = "6c961cfca96dab2d3aa7ad2c6a62003e"; + md5.run = "39d73eb9fd1c39a3909fd76c55c5da61"; md5.doc = "ed9c9724c1253c2e3a81adaae1c8f2ae"; md5.source = "63cf8664dff57042e64daecc9f35c857"; hasRunfiles = true; @@ -14972,7 +14972,7 @@ tl: { # no indentation }; "minibox" = { stripPrefix = 0; - md5.run = "bbc8a5096bc343f664cd1c17886adfac"; + md5.run = "221ee040cbb561d84c1abf739d24eb1b"; md5.doc = "d968c542f7800399a563fc523380a662"; md5.source = "421f735ac32b3fb5e6ae9fe3cbebcc04"; hasRunfiles = true; @@ -14980,7 +14980,7 @@ tl: { # no indentation }; "minifp" = { stripPrefix = 0; - md5.run = "5f59a03829e56a5e91fc5256726dcb52"; + md5.run = "8ebe7c3986d1b0165d4702758a6f9286"; md5.doc = "249a1d2734b49afebe32fadeb7a28046"; md5.source = "0c3fb21739782f3c2b2203a9a41355c9"; hasRunfiles = true; @@ -14988,7 +14988,7 @@ tl: { # no indentation }; "minipage-marginpar" = { stripPrefix = 0; - md5.run = "c7de0e549c95722abd6834c48e686fe7"; + md5.run = "e417193710672d2af9ed990761dd7c55"; md5.doc = "9b7580b0e2794130329db58df1638b25"; md5.source = "854156e3dbcc8cdd267c4b4c90e7d97d"; hasRunfiles = true; @@ -14996,13 +14996,13 @@ tl: { # no indentation }; "miniplot" = { stripPrefix = 0; - md5.run = "106de04b34118ecdca0b653d8c39daec"; + md5.run = "4f3dd746c9213c354e7a957f5d79ff4f"; md5.doc = "2cb2b4f353b73c6b7846431e449c6621"; hasRunfiles = true; }; "minitoc" = { stripPrefix = 0; - md5.run = "654e7ddbf723bc5008b65aa4ac8434c6"; + md5.run = "c28e75354487d6f5bbda88c76a47981e"; md5.doc = "366d02dd82fefcee157b0dbc429c57ed"; md5.source = "bab8792892ee928bd0ce1af1acd9973e"; hasRunfiles = true; @@ -15010,14 +15010,14 @@ tl: { # no indentation }; "minorrevision" = { stripPrefix = 0; - md5.run = "3842c070785e95ae1b52ca5e33b30b88"; + md5.run = "91bbf459bdb5982442e3face99cde756"; md5.doc = "7099607e26f2bc2f30752d41dc993d6b"; hasRunfiles = true; version = "1.1"; }; "minted" = { stripPrefix = 0; - md5.run = "017fbfe849f7f0e5814d7947887a8eec"; + md5.run = "5499940dd47a0c46f5607219fcf26687"; md5.doc = "23b3ce74c11eeb1018d3762bb1ed7e14"; md5.source = "5c861e0e13da8349aed40443beec4de0"; hasRunfiles = true; @@ -15025,20 +15025,20 @@ tl: { # no indentation }; "mintspirit" = { stripPrefix = 0; - md5.run = "deadbaef9fbb863943305554dac5dbfc"; + md5.run = "85753f15c4c8735090c850dfbc044971"; md5.doc = "4dff12c300b9efba39153e9e739275d8"; hasRunfiles = true; }; "minutes" = { stripPrefix = 0; - md5.run = "df167135a08787f3200d62376221c416"; + md5.run = "a88367c0b5ef603bb05dfad3fb8418d3"; md5.doc = "2dd5e5c6503bfcf2f4dcc789e3d00af3"; md5.source = "1ac01187d975b0f6ef46e757fc898beb"; hasRunfiles = true; version = "1.8d"; }; "mkgrkindex" = { - md5.run = "29740a48ddee9babb0e3b07158318829"; + md5.run = "2b31df31524f2de5b4ddaca47c6b0697"; md5.doc = "86c33db7c9f578bb13acad6ffc572a8d"; hasRunfiles = true; version = "2.0"; @@ -15058,20 +15058,20 @@ tl: { # no indentation version = "1.2"; }; "mkpic" = { - md5.run = "0be781af3c7dc46b524b78d1d3a45170"; + md5.run = "95a2f65161372b80a5eed0b15bbe56db"; md5.doc = "f8fe95f59d5c846bf92b4c933b61e49f"; hasRunfiles = true; version = "1.02"; }; "mla-paper" = { stripPrefix = 0; - md5.run = "3e633d7775c736023d3ba5595be483ee"; + md5.run = "52ed7618d3a80eebec9b65ad1f3f5c23"; md5.doc = "207b0b31d1d56dfc5a34ac1a8fd733dd"; hasRunfiles = true; }; "mlist" = { stripPrefix = 0; - md5.run = "a3f84f2b4a0004923d42117eed3a6969"; + md5.run = "b4ed4d0652c0829b618550172458fbfb"; md5.doc = "7e44beb0fb14f3e541c8e684299647e8"; md5.source = "72e2bcc0b3f17172880e01f4524c8579"; hasRunfiles = true; @@ -15079,21 +15079,21 @@ tl: { # no indentation }; "mltex" = { deps."latex" = tl."latex"; - md5.run = "0cfd1775f00a1e4bc10bee999ba2f374"; + md5.run = "93703f481e76f66ea147949dda3fe277"; md5.doc = "a9e72b09a985034474105518b5c88dae"; hasRunfiles = true; version = "2.2"; }; "mmap" = { stripPrefix = 0; - md5.run = "698336689abc815fea2a72ee64c55c73"; + md5.run = "1c172477bcdbb2c6723bde2861971ec6"; md5.doc = "5418c8c137ed0e6d085dbe046eceb8bd"; hasRunfiles = true; version = "1.03"; }; "mnotes" = { stripPrefix = 0; - md5.run = "8e09d2401814d9b0c7065a4fb78db549"; + md5.run = "8123e39a8d833793426e0eb12678b5da"; md5.doc = "aba52408267721d81b01b9b690a5ee75"; md5.source = "0e730e7175fd98b63f2fa7c5e00e8bf9"; hasRunfiles = true; @@ -15101,7 +15101,7 @@ tl: { # no indentation }; "mnsymbol" = { stripPrefix = 0; - md5.run = "5b6f1a171450f48d2e4bbe7f68d87e04"; + md5.run = "377a47f87c222c5b8adafb25f606eb77"; md5.doc = "44c305a6b3e78a2f7f3aa083e1270edc"; md5.source = "788a9ee97daa1e45a3920ba9efe622d8"; hasRunfiles = true; @@ -15124,14 +15124,14 @@ tl: { # no indentation }; "modiagram" = { stripPrefix = 0; - md5.run = "e67457a799a39d8ba60aa90078e2c908"; + md5.run = "655b3d7f5429800853bb2ab53307e04d"; md5.doc = "413dc67be22ac5acbb2c71d7e14347c0"; hasRunfiles = true; version = "0.2d"; }; "modref" = { stripPrefix = 0; - md5.run = "352533750cc3fd5de1b71d1b64dce42f"; + md5.run = "8dc45c4f2a5da9380dae5d64d7cab147"; md5.doc = "bf5f7770d1a3b8e84b9234a99630228b"; md5.source = "4113d32315c0f73064ad2ae64539c179"; hasRunfiles = true; @@ -15139,7 +15139,7 @@ tl: { # no indentation }; "modroman" = { stripPrefix = 0; - md5.run = "258615eba3d052ed685fa0ff00851bed"; + md5.run = "612501d1596b66697d0d6f02d3951227"; md5.doc = "b418f2755066a4b44a918622c3dcc1a2"; md5.source = "aa08b861fbd1acc24806de9d1cdf7e91"; hasRunfiles = true; @@ -15155,7 +15155,7 @@ tl: { # no indentation }; "monofill" = { stripPrefix = 0; - md5.run = "f6690707a20dbee97fc9687ab8e02119"; + md5.run = "7e345c7a092deefddd24cf6da55fb422"; md5.doc = "f457ce348b4cb6cf56c997275f1316c8"; md5.source = "dae74f4e65180408f9e0279d56d9cf7d"; hasRunfiles = true; @@ -15171,14 +15171,14 @@ tl: { # no indentation }; "moreenum" = { stripPrefix = 0; - md5.run = "7a054d9b9ef593195f6d91df9bd0d5f5"; + md5.run = "56813726db34ef58b3f008011ba50e8c"; md5.doc = "7107e13a13a7f8d1f22d4df7ee16556e"; hasRunfiles = true; version = "1.03"; }; "morefloats" = { stripPrefix = 0; - md5.run = "86f04f63748e1e9546238fd8dd3dd51e"; + md5.run = "105f147117b0f9e1cd4f9c0a909ebdce"; md5.doc = "12981a871c80b13fb5d5d35658007321"; md5.source = "548800f96bdfedcb78a987b297c26c7b"; hasRunfiles = true; @@ -15186,14 +15186,14 @@ tl: { # no indentation }; "morehype" = { stripPrefix = 0; - md5.run = "b146e7029e7db37c889a2fab36a843f6"; + md5.run = "be1fc0b28c50289d6f155bd98b8114e1"; md5.doc = "255ce273fddc8b1f974530ec2e748864"; md5.source = "c2edd649867af0d2764d42fc9e6db283"; hasRunfiles = true; }; "moresize" = { stripPrefix = 0; - md5.run = "827267c9ad4ac5c27ad2fbf9783c6eb9"; + md5.run = "6ea934e890024d34377228425683c4a1"; md5.doc = "329db02dcc0acc1a8408c847c6299f43"; md5.source = "849c6e3a56b274984b77331421563d48"; hasRunfiles = true; @@ -15201,7 +15201,7 @@ tl: { # no indentation }; "moreverb" = { stripPrefix = 0; - md5.run = "f9fa1088bb99753f49283250a6b61e19"; + md5.run = "376c2562f874ba2cea5b99e14d759056"; md5.doc = "c9bc0d07305003bf4e46eb9d7021b4f3"; md5.source = "3a1c90df4d965d65a76c7aa5b041f3d4"; hasRunfiles = true; @@ -15209,7 +15209,7 @@ tl: { # no indentation }; "morewrites" = { stripPrefix = 0; - md5.run = "24132779f8776897446aa827cdae55bf"; + md5.run = "446e4d8939f4979d24f03597d0ab840e"; md5.doc = "4e218e683909bd93fe0115ef9d2413fa"; md5.source = "db80f66bef54474ef130bc809fc2d178"; hasRunfiles = true; @@ -15217,7 +15217,7 @@ tl: { # no indentation }; "movie15" = { stripPrefix = 0; - md5.run = "e3d10853a279f7c0f512c5f257a1dc95"; + md5.run = "e6c226c12246824b4666b9de9f92caa2"; md5.doc = "95239f64f31e88cf1d7b42dd34b9e93f"; hasRunfiles = true; }; @@ -15230,7 +15230,7 @@ tl: { # no indentation }; "mparhack" = { stripPrefix = 0; - md5.run = "895ebca974949cb93e8003a2058811e7"; + md5.run = "bcf16236d7ca44d177d8b93cf5f6fb0a"; md5.doc = "78557941ee9f56f163034e5508653158"; md5.source = "61e4ae1f2437c7d23a4783eaba07fe05"; hasRunfiles = true; @@ -15278,14 +15278,14 @@ tl: { # no indentation }; "msc" = { stripPrefix = 0; - md5.run = "0df749ee9bde0837d652d7227d8a4f9e"; + md5.run = "c5e581217e5883ee720d3a0c3efa6555"; md5.doc = "8743475759c3e43601b2970121cb1337"; hasRunfiles = true; version = "1.16"; }; "msg" = { stripPrefix = 0; - md5.run = "5807a463e8c8bd9146016bc087ef5663"; + md5.run = "1a3471423419e8ef6faddec880a41a25"; md5.doc = "0b1dcf1a3361b5bf052339a1ee80bc62"; md5.source = "d324dfb6036f084c3b576059a5bdd1c4"; hasRunfiles = true; @@ -15293,20 +15293,20 @@ tl: { # no indentation }; "mslapa" = { stripPrefix = 0; - md5.run = "9e41fc926cea24ff8ba4ba065b74b64a"; + md5.run = "5e4c4b8f407422702196467a46855132"; md5.doc = "eb7c43d531a3838e63c310e9563a4e2c"; hasRunfiles = true; }; "msu-thesis" = { stripPrefix = 0; - md5.run = "960b84122e5521c5703a4f4fce21445e"; + md5.run = "90960708def0e781088646db7b3c394e"; md5.doc = "0cf5239196efac6fec3410fc6726a359"; hasRunfiles = true; version = "2.5"; }; "mtgreek" = { stripPrefix = 0; - md5.run = "63f28a7b8d8ed355327a6b613c5f6c6e"; + md5.run = "70a21be86d2b0eca2cdbd4941af240d5"; md5.doc = "1cba8e360ff1188a7b0e5da7e06ccf66"; md5.source = "f8f0727996aec616fb7fb61a839f6de2"; hasRunfiles = true; @@ -15314,20 +15314,20 @@ tl: { # no indentation }; "mugsthesis" = { stripPrefix = 0; - md5.run = "cbf022943e48d359f15abbb75bdbb8e5"; + md5.run = "c6b6ac28dd72872bb0acd6e9a1fe5cfb"; md5.doc = "fe50739d11d423fbc48e8431cb03b5f1"; md5.source = "ef23abcb00064033cf2e9ebf90a99a8a"; hasRunfiles = true; }; "multenum" = { stripPrefix = 0; - md5.run = "2cebdf957ce1566f5873006f06f1f704"; + md5.run = "79b093af2481b98a6ad541f2e4aca8bf"; md5.doc = "99fc422c8828ec285cebb0896deb555c"; hasRunfiles = true; }; "multibbl" = { stripPrefix = 0; - md5.run = "058918d2cb4b70fbced4e024b05e0e05"; + md5.run = "4ca630aa7cdc4c7d22043041b2568345"; md5.doc = "ebedaec70944d0504126538c55ba9525"; md5.source = "44acf71f1ce12f832242e96d9e5a5452"; hasRunfiles = true; @@ -15342,7 +15342,7 @@ tl: { # no indentation version = "1.4"; }; "multibibliography" = { - md5.run = "ef424b17a477e12dc6c24ed4c1b68427"; + md5.run = "ad50d1fc9988f6c16aa8c4cf13b2f90c"; md5.doc = "912caabbdbe7eb4763d3da53ff1667d4"; md5.source = "32d9772c555aa96d5d43d25345125046"; hasRunfiles = true; @@ -15350,7 +15350,7 @@ tl: { # no indentation }; "multicap" = { stripPrefix = 0; - md5.run = "34b3202a93ca2a535409de12bb36a1f8"; + md5.run = "2d94e1a1b64eef06ffa3cff66e07a38c"; md5.doc = "89434ad8667bdd34cb35d197749e830c"; md5.source = "2a46bdaec1b37f91dea6b5eebcf0fffc"; hasRunfiles = true; @@ -15365,7 +15365,7 @@ tl: { # no indentation }; "multienv" = { stripPrefix = 0; - md5.run = "0ebe1a32236f35ef3221779bf462008f"; + md5.run = "d71fa141dd2035ec73ff94c2f61b547d"; md5.doc = "a52124df4cceed3ade85c273c86329cf"; md5.source = "eda4c2e2a76bfd4b9c859269a1a7559e"; hasRunfiles = true; @@ -15373,7 +15373,7 @@ tl: { # no indentation }; "multiexpand" = { stripPrefix = 0; - md5.run = "7b4b64ad414abd5c9659bab63d88a807"; + md5.run = "7e56cd4968101c4d5374c56c5de9c32e"; md5.doc = "b17514e0cfc29bc9445108811d4578d0"; md5.source = "892dc617d88ea2ebe0754d8d0cc85e0a"; hasRunfiles = true; @@ -15396,19 +15396,19 @@ tl: { # no indentation }; "munich" = { stripPrefix = 0; - md5.run = "643e6e1aeb20d3eead793a375aca4bc4"; + md5.run = "821f5ad09b9363a9d99dabed66e36df0"; md5.doc = "fde07a2a14d1608739edf2d778321701"; hasRunfiles = true; }; "musixguit" = { stripPrefix = 0; - md5.run = "1eb56d1645582d9f3d284aa1a288dfce"; + md5.run = "cec5a4c27b4479f6c4ad53c4314f298b"; md5.doc = "3f6081ba8cc39a79e0101a2e4a4861fe"; hasRunfiles = true; version = "1.2.2"; }; "musixtex" = { - md5.run = "f3b2e068d62af0e76e0fa270820e8b48"; + md5.run = "47194545e08616934d66a7c27d7c59ef"; md5.doc = "7233d05187298ed2c2c6ad94ab0321fa"; md5.source = "e2a3c3772491490d78cfbc917db7a9d0"; hasRunfiles = true; @@ -15416,13 +15416,13 @@ tl: { # no indentation }; "musixtex-fonts" = { stripPrefix = 0; - md5.run = "46d4a701bdd7651363b71f65939c69bb"; + md5.run = "a9c5ef34af60606a20e361e9f4878de0"; md5.doc = "d95b8fd17d3f97725b6e43bb0903de3f"; hasRunfiles = true; }; "musuos" = { stripPrefix = 0; - md5.run = "5dcf103902b174f9b651994094177394"; + md5.run = "3c98f01e3950c171c7de8df761aabd29"; md5.doc = "d8064c506734a329c4f3c1fb519c5780"; md5.source = "50018da9fef0b84ad95a7707c31f6927"; hasRunfiles = true; @@ -15430,13 +15430,13 @@ tl: { # no indentation }; "muthesis" = { stripPrefix = 0; - md5.run = "d3347912dc22eca41cde5f4c0213470c"; + md5.run = "541df0252fad46e2c34dfa1e3cc1ec30"; md5.doc = "461b72cf66d1e959939efad57497f883"; hasRunfiles = true; }; "mversion" = { stripPrefix = 0; - md5.run = "8b26ec669676762e033a53cd3109f8c3"; + md5.run = "5c54b0ff9927d6b693b46b4064034e57"; md5.doc = "b3548f840c0d8b9bd3c4b8a063730150"; md5.source = "130c869e0b18ab6af846c67acf73ad2b"; hasRunfiles = true; @@ -15452,7 +15452,7 @@ tl: { # no indentation }; "mwe" = { stripPrefix = 0; - md5.run = "3e05d8b90c8f5dd70ad2abf47243be12"; + md5.run = "aa5297700a4eaef9923a4db4302ea5db"; md5.doc = "2943ebcf99c40f33ca3be40797e4e62d"; md5.source = "921fc7ad466ebf0d4f265c091bed2569"; hasRunfiles = true; @@ -15460,27 +15460,27 @@ tl: { # no indentation }; "mweights" = { stripPrefix = 0; - md5.run = "4243bb900381e1afcb4f14b32840e56a"; + md5.run = "04451cffb6c7810b7ac142bdb7419252"; md5.doc = "1db01e390be604b9f6911e156decf8bd"; hasRunfiles = true; }; "mxedruli" = { stripPrefix = 0; - md5.run = "fd138dfa9f3204012a15753f120b3c35"; + md5.run = "444b6624cbf7bb3845559b8a789fcb3b"; md5.doc = "270bea0ba964310a821cd314e5ed5aa1"; hasRunfiles = true; version = "3.3c"; }; "mychemistry" = { stripPrefix = 0; - md5.run = "866bae8b240e626570d8f818b781625f"; + md5.run = "9def5c11145aab62ba678808e078a8be"; md5.doc = "26c57818684835f9e4d9131bfc17b494"; hasRunfiles = true; version = "1.99b"; }; "mycv" = { stripPrefix = 0; - md5.run = "517a7371c69f4d7e0129707b8292cfd0"; + md5.run = "a7ea6f02eccf40caaacbc566b4bb92ea"; md5.doc = "979c7bc4d0fa645c9f1f6f454fbc92da"; md5.source = "d27584aa9e7fbd710fc9f93b2a404033"; hasRunfiles = true; @@ -15488,7 +15488,7 @@ tl: { # no indentation }; "mylatexformat" = { stripPrefix = 0; - md5.run = "a11e0d2b24f3ef7189bd408067906002"; + md5.run = "4ad1d0bfd3c13d19f051f55a15130c99"; md5.doc = "5fcb30beb8b066c092fa812d4e41770d"; md5.source = "6db0a13873fd467be9d6835e51fd54f1"; hasRunfiles = true; @@ -15496,7 +15496,7 @@ tl: { # no indentation }; "nag" = { stripPrefix = 0; - md5.run = "bd77afdb179a0c6889c38b3fe5781139"; + md5.run = "2b5735cd4257de56f6a93d968c7df361"; md5.doc = "9c033be252f414f449263be68e2daf4b"; md5.source = "030ed4ee0dab7cc6cba63042362a8e15"; hasRunfiles = true; @@ -15504,7 +15504,7 @@ tl: { # no indentation }; "nameauth" = { stripPrefix = 0; - md5.run = "7674c035beb68b4bcb9a13ea0c13b03a"; + md5.run = "386dea16b0bae4cf207777042376ae3d"; md5.doc = "e51e96f1a0a482e6724b683982d48f39"; md5.source = "c27c24c54c78919e93519f4cd3fc9f3c"; hasRunfiles = true; @@ -15512,14 +15512,14 @@ tl: { # no indentation }; "namespc" = { stripPrefix = 0; - md5.run = "3d517a272a5de9b2c39faadc0adff020"; + md5.run = "43d8aa8f6b7d58e5db8b72c480abd4fa"; md5.doc = "8941e3167fe1e64e07fd11b4b8fb27fe"; md5.source = "8eee15b3d179c2e1a007b93f642fd656"; hasRunfiles = true; }; "nanumtype1" = { stripPrefix = 0; - md5.run = "4a5da489d7794bc6164ae194c6052975"; + md5.run = "533905ad94467e1c7cdabdb1e1131497"; md5.doc = "50731bd33fe2c2d81f992e38f6572978"; hasRunfiles = true; version = "3.0"; @@ -15547,28 +15547,28 @@ tl: { # no indentation }; "nature" = { stripPrefix = 0; - md5.run = "c302b0e0f5075c9b13ebacdff88a0d77"; + md5.run = "d70fc65ebd1d47e46e6f0a5ac66419f6"; md5.doc = "c0904ed4afeaed48b327c97ab7cf0ae3"; hasRunfiles = true; version = "1.0"; }; "navigator" = { stripPrefix = 0; - md5.run = "9fe2920a1e421610418b3ba65f124191"; + md5.run = "8f992e9d40c3f288235cd3cd0723a880"; md5.doc = "9fe3f41efdbd556afdfa317e1e515da5"; hasRunfiles = true; version = "1.0"; }; "ncclatex" = { stripPrefix = 0; - md5.run = "3c024ebfdfd5bc1df410bbc4b698d882"; + md5.run = "3ce759b41f459466fbc2ba5e87e8cc63"; md5.doc = "e14f5e4296166ff9cb3526f417e94f4f"; hasRunfiles = true; version = "1.5"; }; "ncctools" = { stripPrefix = 0; - md5.run = "be075d9d0a265e9d08381bb53a4e988a"; + md5.run = "b8b3fe47a17f5bbbf6db2126102f9db7"; md5.doc = "f28cf755a7a5d8b470c8f77089d80029"; md5.source = "a1460479825dc8ec89d38d5afb9f626d"; hasRunfiles = true; @@ -15581,7 +15581,7 @@ tl: { # no indentation }; "nddiss" = { stripPrefix = 0; - md5.run = "a2a0f69410ae028c8b3ab3d6870b3ffa"; + md5.run = "3fd9dee884532d443752d654fbec0d66"; md5.doc = "0b8a79ba88998a877811f893cea700e1"; md5.source = "870458a1237f3eb40eee05045ba9994b"; hasRunfiles = true; @@ -15589,13 +15589,13 @@ tl: { # no indentation }; "ndsu-thesis" = { stripPrefix = 0; - md5.run = "52401c97c80c1801d6c24de5f925feed"; + md5.run = "3c52392580308fbf2553a3767cc0d48e"; md5.doc = "b645ab457224982197690fcc98bc3d76"; hasRunfiles = true; }; "needspace" = { stripPrefix = 0; - md5.run = "a8685e48b7eef0cad8a9cfa6ba7aed54"; + md5.run = "bda8ab93e34228e953ac58b6bf38155e"; md5.doc = "3f25d1a5d17249f2ee27fca8688b3aa4"; md5.source = "0ecaebe6ecbda4d9c0d83ff4c6618ce2"; hasRunfiles = true; @@ -15603,12 +15603,12 @@ tl: { # no indentation }; "nestquot" = { stripPrefix = 0; - md5.run = "36bbeacf1077cc8dd0499c9a844753ec"; + md5.run = "161a1027b3d2a52ef243386584930b0c"; hasRunfiles = true; }; "neuralnetwork" = { stripPrefix = 0; - md5.run = "88986bad0f0c9d303d1d9f038e308d65"; + md5.run = "4f0776021e56bfb96be4f005b328c69c"; md5.doc = "43d369dad5dfdf56f0672f578cd056b1"; hasRunfiles = true; version = "1.0"; @@ -15621,14 +15621,14 @@ tl: { # no indentation }; "newenviron" = { stripPrefix = 0; - md5.run = "29c8bc31592c509e6c840b8df48af42b"; + md5.run = "5934eb8377ecf3dad30ce39e0cd1bc3a"; md5.doc = "5596a912e4dff803a43ac98e0583c75e"; hasRunfiles = true; version = "1.0"; }; "newfile" = { stripPrefix = 0; - md5.run = "d365595edc7eb919fc2fb3854d4d4031"; + md5.run = "673fd2ad1809bb614d33d4d917bc846d"; md5.doc = "0a14955717a0b2ac0d9f9322500b200b"; md5.source = "938386dcc1ca397330f134e2bc7a7b03"; hasRunfiles = true; @@ -15636,7 +15636,7 @@ tl: { # no indentation }; "newlfm" = { stripPrefix = 0; - md5.run = "0f657882dd67c8a4902f90cfeb2b265d"; + md5.run = "99a82d2ac4b5aeabbe9eb106468b9387"; md5.doc = "029494c2fb4e673ef084fa631ee04ae3"; md5.source = "16393a69965deeab885b3465593c3d80"; hasRunfiles = true; @@ -15644,7 +15644,7 @@ tl: { # no indentation }; "newpx" = { stripPrefix = 0; - md5.run = "f0eb59f24f9198c42602d6f46ad0aada"; + md5.run = "4b9b7cf271bcbdc6c6ac422f0fe431c5"; md5.doc = "0cf821d10425b9312ae99b46fd88dc72"; hasRunfiles = true; version = "1.232"; @@ -15657,7 +15657,7 @@ tl: { # no indentation }; "newspaper" = { stripPrefix = 0; - md5.run = "d010fa58f83d44d950886533d2bc4f27"; + md5.run = "06a2c244e4dc2dd90a3edf60e0d8f0de"; md5.doc = "fc9d894df34b3d0fe2c3b339a809d1fe"; md5.source = "42b42e3ed6cea39e4b43f2f2c7723ef3"; hasRunfiles = true; @@ -15665,28 +15665,28 @@ tl: { # no indentation }; "newtx" = { stripPrefix = 0; - md5.run = "f80fb2305679e7ecf5157eaf71878788"; + md5.run = "a0411bf4cabdf551cd9d316d02ff2a89"; md5.doc = "9b383184a9bcf0876faa80301b67a8e0"; hasRunfiles = true; version = "1.434"; }; "newtxsf" = { stripPrefix = 0; - md5.run = "4802817720fc56ad81ee467d883dba7a"; + md5.run = "c46cb6c45c1d1e17075aaaeb18c00fe1"; md5.doc = "0677f08a00f4dfc3dc910dbadf679390"; hasRunfiles = true; version = "1.02"; }; "newtxtt" = { stripPrefix = 0; - md5.run = "bc186846357a1745a8fb466f53207352"; + md5.run = "282ac9ba4a9db392a8cde30728c8584b"; md5.doc = "50d5386c517e47e0dd4f3651550972fe"; hasRunfiles = true; version = "1.051"; }; "newunicodechar" = { stripPrefix = 0; - md5.run = "b4e5a63f3fbfd6d67c883de67f34f5d7"; + md5.run = "0467c2fd61241cb2ef280d3123712e21"; md5.doc = "0847ecc877036c48a631d1388956117c"; md5.source = "8cce33969a7da04b079b7655d4f9aa4f"; hasRunfiles = true; @@ -15694,7 +15694,7 @@ tl: { # no indentation }; "newvbtm" = { stripPrefix = 0; - md5.run = "939a4ea929f072edd656c402a1c01e3b"; + md5.run = "962adb673b055eeccea431890462f4ab"; md5.doc = "de7dd0aafe6e3ba7ba18686b3bf0e2b2"; md5.source = "7055ddd123be7321cf9339d3c891d363"; hasRunfiles = true; @@ -15702,7 +15702,7 @@ tl: { # no indentation }; "newverbs" = { stripPrefix = 0; - md5.run = "dafb1262e0d3ab77f5f4ddb76c8f7945"; + md5.run = "5d4c99b28b242ee6f7c3d7eb57894356"; md5.doc = "d147d26fbaafb44a93696ef58092c171"; md5.source = "c6fc3bf0387482e429db80de7fb94626"; hasRunfiles = true; @@ -15710,20 +15710,20 @@ tl: { # no indentation }; "nextpage" = { stripPrefix = 0; - md5.run = "580648af06f9bff053c003460bbae727"; + md5.run = "8af8a785e31427eb3f75f7378afe34f5"; hasRunfiles = true; version = "1.1a"; }; "nfssext-cfr" = { stripPrefix = 0; - md5.run = "543435677d49bc9fde358b0bbf79defc"; + md5.run = "111474510391a970bc258380be053e87"; md5.doc = "5de6ca082b4db70361ace67d24775384"; hasRunfiles = true; version = "1.2"; }; "nicefilelist" = { stripPrefix = 0; - md5.run = "59b9270d4bec80b4cab4d200e54f5bc6"; + md5.run = "345770a70f0c48c241a52a39cd20fd46"; md5.doc = "212d3c7b01964d72184123f61bb945f1"; md5.source = "5e0424b80e508027b206480aa3b38227"; hasRunfiles = true; @@ -15731,7 +15731,7 @@ tl: { # no indentation }; "niceframe" = { stripPrefix = 0; - md5.run = "e3c7080f68b7ad03b51faba18bf4a2c5"; + md5.run = "fdbea1b5f680bbcfa909f76b42d1cf16"; md5.doc = "1ff776ffc05b49ff8b10edfae7ee0d06"; md5.source = "e3be369a9a14918eae3b2724f9de834d"; hasRunfiles = true; @@ -15739,7 +15739,7 @@ tl: { # no indentation }; "nicetext" = { stripPrefix = 0; - md5.run = "8698db41869310662912d32aa2f71f5d"; + md5.run = "4b8af80b0a615032a77fe1ae60c0f98f"; md5.doc = "e05e60bf85497b84505b4763e5dc4f5c"; md5.source = "684e707980c87076b1aabc0c61082b4b"; hasRunfiles = true; @@ -15747,13 +15747,13 @@ tl: { # no indentation }; "nih" = { stripPrefix = 0; - md5.run = "172f31f8e4a96afbc951000ef2a5b161"; + md5.run = "922d764d2e86c854125f5aa3940b4f56"; md5.doc = "d42f475729dd2919316ecc831b0b7644"; hasRunfiles = true; }; "nkarta" = { stripPrefix = 0; - md5.run = "dabdeab5f111a17b3fbbd1ecd56753ff"; + md5.run = "a57b7587105c1ada6b74d9049956f3c2"; md5.doc = "61daed033bd4712a5e9a748977eb6cf9"; md5.source = "f345427fe99a53b1be29c6785a4c7618"; hasRunfiles = true; @@ -15761,28 +15761,28 @@ tl: { # no indentation }; "nlctdoc" = { stripPrefix = 0; - md5.run = "141834e32438a36bc45d39df21db0580"; + md5.run = "5084e65daadc94b92ad2c64b4e14e92e"; md5.doc = "5db9bf048603c11ed9055bafd9556b74"; hasRunfiles = true; version = "1.04"; }; "noconflict" = { stripPrefix = 0; - md5.run = "66b526578a37d9c79d05dbae26fd88f8"; + md5.run = "ce17d95656e19e6bbfb8e5c1a0c6f426"; md5.doc = "88e3d4ba90af94c3ab2e5b0e22e8fd61"; hasRunfiles = true; version = "1.0"; }; "noindentafter" = { stripPrefix = 0; - md5.run = "61a2f182829457b4fb172118f9499d11"; + md5.run = "c6bbece407aaa5617da93a6c52d967df"; md5.doc = "f13cc364d23500fe6a96017b4ce2faac"; hasRunfiles = true; version = "0.2.2"; }; "noitcrul" = { stripPrefix = 0; - md5.run = "25840b7368b7d04a2e0a677435f9f7e1"; + md5.run = "c7b5675a4a68efa45cb76bd4decad8bd"; md5.doc = "3ec5314deed63bf2b2c61407da606f12"; md5.source = "571ec23c978dffa6e5bd0185b22e8b88"; hasRunfiles = true; @@ -15790,14 +15790,14 @@ tl: { # no indentation }; "nolbreaks" = { stripPrefix = 0; - md5.run = "8ce327772288cf31570f5a935616471c"; + md5.run = "f77c79407d678dd4f15fecfca8d4abb7"; md5.doc = "182658e6305baae500cdf706e5615611"; hasRunfiles = true; version = "1.2"; }; "nomencl" = { stripPrefix = 0; - md5.run = "9b3fba2fda4f5092dc4d0d812a0e9870"; + md5.run = "9168113c10c88e187f1350abae7a02f5"; md5.doc = "af17438ec3c7f8c0af38f6849fb130be"; md5.source = "d983cca139c34d02659233b077ec18c3"; hasRunfiles = true; @@ -15805,7 +15805,7 @@ tl: { # no indentation }; "nomentbl" = { stripPrefix = 0; - md5.run = "741dc8f5f4b83e793858ec1de698cfc4"; + md5.run = "c72851e902902124d7747f5c7aeed1f4"; md5.doc = "b55834a8a6b30e8f7144cf36d21a3db8"; md5.source = "121dda770c3d6125e08946de21c5e7b3"; hasRunfiles = true; @@ -15813,7 +15813,7 @@ tl: { # no indentation }; "nonfloat" = { stripPrefix = 0; - md5.run = "75d5ece3255291ee26e55ba088fc995d"; + md5.run = "929e6b282f0e58fa5944f9381c8de91c"; md5.doc = "e2e1381730379580b9ceb48b4d792645"; md5.source = "d1927f3f114e875d67a17dffed5dfb03"; hasRunfiles = true; @@ -15821,7 +15821,7 @@ tl: { # no indentation }; "nonumonpart" = { stripPrefix = 0; - md5.run = "078d490edf9a3b401d27f868204000ab"; + md5.run = "19bfea61b30687031629b4e251419f17"; md5.doc = "c9caa33b2d9c48284f934604165ac257"; md5.source = "f2d76aa69ed3bbffbc25d7898afcd8b0"; hasRunfiles = true; @@ -15829,20 +15829,20 @@ tl: { # no indentation }; "nopageno" = { stripPrefix = 0; - md5.run = "61ada955f4f4572a4f225d85a412728c"; + md5.run = "3487bc9e9e5d655d36a7743e78145a89"; md5.doc = "c38ea9eec163cbcffd164d81ff35ccb0"; hasRunfiles = true; }; "norasi-c90" = { stripPrefix = 0; deps."fonts-tlwg" = tl."fonts-tlwg"; - md5.run = "cc87f0c2c1cb16338b8211d500ac7f0d"; + md5.run = "5177ca1fb86be125febe65638c863764"; md5.source = "ab52ec6cde99e5ae6aaba8f642bd8e3c"; hasRunfiles = true; }; "nostarch" = { stripPrefix = 0; - md5.run = "2ebb0f05ba2d4423cb577e9b20016312"; + md5.run = "f0eae608ed2754358e38ac6cd1cd10e2"; md5.doc = "064c8eb29c3dc7582e32583904979348"; md5.source = "1c1754e4cae3874f5862df2173f4daa7"; hasRunfiles = true; @@ -15850,7 +15850,7 @@ tl: { # no indentation }; "notes" = { stripPrefix = 0; - md5.run = "039adffacdcacab6c103da8ca5e0c363"; + md5.run = "7d904e127e3bc06c496ff36d3a036fc5"; md5.doc = "f075196bc99fa4c0e0c0645553a273c0"; md5.source = "37a025dac9db78e50f328f922637f9b7"; hasRunfiles = true; @@ -15858,7 +15858,7 @@ tl: { # no indentation }; "notes2bib" = { stripPrefix = 0; - md5.run = "c8490f0ef2cfd871c5c25ae43b8a0934"; + md5.run = "d7d33c8e029873825296a7e2188b442f"; md5.doc = "855643a9fab625d43f3d67c4d9db6dbe"; md5.source = "630be60d59295254a540b63d98eea5ee"; hasRunfiles = true; @@ -15866,13 +15866,13 @@ tl: { # no indentation }; "notoccite" = { stripPrefix = 0; - md5.run = "779cf403c2828394b1b0978310f37c2c"; + md5.run = "7dab60a632257ccb7c98d8bd508bc93c"; md5.doc = "0f48806ad08b55f12ab5f8de04ac813a"; hasRunfiles = true; }; "nowidow" = { stripPrefix = 0; - md5.run = "8b4adbad9291b4cd9659b68dbbffc0a8"; + md5.run = "520c821b52f74dd49acd644b641c5f11"; md5.doc = "71ad2c308a1bfb2df6af16e53c1b655f"; md5.source = "cef60ece5131e39d8c79c25b1a77d0c2"; hasRunfiles = true; @@ -15880,14 +15880,14 @@ tl: { # no indentation }; "nox" = { stripPrefix = 0; - md5.run = "6b8ea5f41bed753d47d070a3ad026582"; + md5.run = "088f6b65fa109287c23e8e054bcbffea"; md5.doc = "86c3214f1687a775f78bfdcfe7c2911c"; hasRunfiles = true; version = "1.0"; }; "nrc" = { stripPrefix = 0; - md5.run = "4d0373eae510528bca57337eebaa66bf"; + md5.run = "207ab03be2202d0b65c3b8bb6d0c30bb"; md5.doc = "e731b3e56871b60501bfb8383600e53b"; md5.source = "880b8fde7225148047f68988c3286e5d"; hasRunfiles = true; @@ -15903,7 +15903,7 @@ tl: { # no indentation }; "ntheorem" = { stripPrefix = 0; - md5.run = "2f5946cbb6dfa76a3dd72051280859ec"; + md5.run = "97d8e9dac65044ffdef87371922b7a30"; md5.doc = "5955d023b22452b8eae635e7d0f3450e"; md5.source = "d35b74178a550707826e26d108c0bd17"; hasRunfiles = true; @@ -15917,34 +15917,34 @@ tl: { # no indentation }; "nuc" = { stripPrefix = 0; - md5.run = "a610d56524d49593cc04c97586c61d67"; + md5.run = "2a42551159e7115e50f5998895c5831f"; md5.doc = "f06a6f1b346c3f8b7e7575cfd870d368"; hasRunfiles = true; version = "0.1"; }; "numberedblock" = { stripPrefix = 0; - md5.run = "cbb105def799af1c8d2ec22dc02f9880"; + md5.run = "f329a6f68cb7c37e544a97b394f95ad0"; md5.doc = "63fd34bf5121ad33c5c50213f18b56cd"; hasRunfiles = true; version = "1.10"; }; "numericplots" = { stripPrefix = 0; - md5.run = "d5a9d91d2873bf875eb749cfea436db1"; + md5.run = "575187a7b1541e935846313e408d0e2f"; md5.doc = "e8b65c9d1b1beef847b08007f11ea9cb"; hasRunfiles = true; version = "2.0.2"; }; "numname" = { stripPrefix = 0; - md5.run = "a5739895f14d921c874c14c064b76c13"; + md5.run = "c1bddf6651b4a3c3b6398a723a8b5570"; md5.doc = "3a113e5d7b08cd862d0a64712ba46fd4"; hasRunfiles = true; }; "numprint" = { stripPrefix = 0; - md5.run = "3464f0a4be4174dac2c9030a327122ae"; + md5.run = "a5b4006493893b569a7935e75abe6fe8"; md5.doc = "8a8c9a056fae8d1db6008b1eeef66ac0"; md5.source = "33ea16bb64867a8da1d6da055054711e"; hasRunfiles = true; @@ -15959,28 +15959,28 @@ tl: { # no indentation }; "objectz" = { stripPrefix = 0; - md5.run = "3dbeceb033d8b242bda0759ce80030a5"; + md5.run = "91651b180f3b0d4d8bb38bbc6279cb9c"; md5.doc = "2e15dafff2ec1bd1af81e57e0179aa30"; md5.source = "dd5a1505cc494bc5297727aecb1f5d46"; hasRunfiles = true; }; "obnov" = { stripPrefix = 0; - md5.run = "6b6acd57b97f5fa454f6e323bc23119c"; + md5.run = "dadd65534bdeddec9a1d0b836a8bdf46"; md5.doc = "69ea6b9f0ad0a062681863034ca7cb5c"; hasRunfiles = true; version = "0.11"; }; "ocg-p" = { stripPrefix = 0; - md5.run = "07a1697c4aaca6093d17d4d79e32e313"; + md5.run = "bc8abf5d8009b8f700db37847021a3a8"; md5.doc = "e9b0b6c01e1f19a31926baec539fd8a7"; hasRunfiles = true; version = "0.4"; }; "ocgx" = { stripPrefix = 0; - md5.run = "51e1dbe1ed0d6e9797e636bf24a46d5f"; + md5.run = "0df8256d99eb2bb06580b4d39ed8c763"; md5.doc = "84d8beb3ad84f99c62eabd83ccdb7a51"; md5.source = "c59c8d27cced0b55952a44108237d434"; hasRunfiles = true; @@ -15988,32 +15988,32 @@ tl: { # no indentation }; "ocherokee" = { stripPrefix = 0; - md5.run = "ab874ce181abadac1f9886ae11aa269c"; + md5.run = "9200f9505768672d94dfa518e2c3b7da"; md5.doc = "ae205578e922bc80c633ff5f389cfc6a"; hasRunfiles = true; }; "ocr-b" = { stripPrefix = 0; - md5.run = "13aa3196be961f17a8047b2bd7801a84"; + md5.run = "700831bbbc9b846e9e07707680ee807f"; md5.doc = "833032037c74750ecb8b88bcb7135d62"; hasRunfiles = true; }; "ocr-b-outline" = { stripPrefix = 0; - md5.run = "8f59d0935969b6ff98de486698757a40"; + md5.run = "8d2357d4dc7edb1c0640256d557ba9dc"; md5.doc = "0877b1cd96607643cfc6131dd560e615"; md5.source = "47bf84a76f666ae0a3ba9ae14c084638"; hasRunfiles = true; }; "ocr-latex" = { stripPrefix = 0; - md5.run = "4763f13ad9e28b439dbf5b45ae2ed6bd"; + md5.run = "590b1dfa738677d50123f5e6d4613426"; md5.doc = "8288a3fba159a66836e93cd02b858a8b"; hasRunfiles = true; }; "octavo" = { stripPrefix = 0; - md5.run = "2f5b9977ce9add38b95843442cd0b6b6"; + md5.run = "fac5383ed846f82c64978413410b2baf"; md5.doc = "dba7bdf5dae5eac81a046d26c7a6bfad"; md5.source = "c18d61cd82f8b1c51e505e510dd027c8"; hasRunfiles = true; @@ -16028,33 +16028,33 @@ tl: { # no indentation }; "ofs" = { stripPrefix = 0; - md5.run = "fe3f021edc905e58bfd020b909a189c3"; + md5.run = "bddaa9bf11acfe4afa6b2c4f6d7f01ad"; md5.doc = "c2411a3c38f012be063e8d96b5d38421"; hasRunfiles = true; }; "ogham" = { stripPrefix = 0; - md5.run = "c39e41b1c0c71335ca0f17ab96f5f594"; + md5.run = "970d96ae5f38105fe81d1fbf9bf44bd9"; md5.doc = "a6898685b3c0f6afa608ac4b9bd9c131"; hasRunfiles = true; }; "oinuit" = { stripPrefix = 0; - md5.run = "387838fa29c6c910dd1b5b3a5e18e3b7"; + md5.run = "8b4caa4a3029823b0bf70ef277717730"; md5.doc = "d3e01bfec386540b8c75bca6b0cd57d8"; md5.source = "7546205b5f084c3cb0e6cc12eae03624"; hasRunfiles = true; }; "oldlatin" = { stripPrefix = 0; - md5.run = "1394929e2f0374d1c151e860eacc1394"; + md5.run = "b42120d9c423f1e7ff98ea852917dab1"; md5.doc = "9c9495302bbcd11c97d0df84e7ea2f33"; hasRunfiles = true; version = "1.00"; }; "oldstandard" = { stripPrefix = 0; - md5.run = "84bd8fba37d459cd00c3e92c1d7d0d68"; + md5.run = "521ab04f7cd998b748c630cf71054715"; md5.doc = "c2069f5868cc7ed7d41f106909a561ea"; md5.source = "f8ed183669c8571ef7fd05fb0db61faa"; hasRunfiles = true; @@ -16062,7 +16062,7 @@ tl: { # no indentation }; "oldstyle" = { stripPrefix = 0; - md5.run = "c19060d83192457af4472647a5cc994f"; + md5.run = "589b2f0c96300a2c74a6d696658890a9"; md5.doc = "50e03e7699f2468bf0110ba2ae6f9425"; md5.source = "f4e3d752ef918e68fcc68b5520ef0d26"; hasRunfiles = true; @@ -16070,7 +16070,7 @@ tl: { # no indentation }; "omega" = { stripPrefix = 0; - md5.run = "a9091762df13b22d4da8ee496fd56e56"; + md5.run = "1437d93b5519ade471c9bc65a44d78a9"; md5.doc = "0c51ee885c1b0ed532d75fa9eee1ece0"; hasRunfiles = true; }; @@ -16080,7 +16080,7 @@ tl: { # no indentation }; "onlyamsmath" = { stripPrefix = 0; - md5.run = "4926abf40af2ac727254cf7ceb6caaf6"; + md5.run = "db2873b58840bfb58edd17cb28f1ff69"; md5.doc = "7a211fd2f60348bb5912cf35eed5721a"; md5.source = "c21754c2eb218cdd938535e69b43a108"; hasRunfiles = true; @@ -16088,14 +16088,14 @@ tl: { # no indentation }; "onrannual" = { stripPrefix = 0; - md5.run = "f2fb8d760309efb8c25a508188d9141b"; + md5.run = "1f5310979874a699c93bc0feb9849bfc"; md5.doc = "5cf56f561085db5ce0edb950bd989617"; hasRunfiles = true; version = "1.1"; }; "opcit" = { stripPrefix = 0; - md5.run = "8624292244de2e324d2cce70b2bbe796"; + md5.run = "5170f97fcd4e161db6eba7a06935e904"; md5.doc = "f91f9a532f905e8d2097edbca4884631"; md5.source = "1f6e36132255311d69aded3dd746d286"; hasRunfiles = true; @@ -16103,7 +16103,7 @@ tl: { # no indentation }; "opensans" = { stripPrefix = 0; - md5.run = "e9e527d40ae3243d3ed73ca5565b6498"; + md5.run = "11b24ad0d44d44ab3b34c473d66750eb"; md5.doc = "f0a592ab208c728e952469897e2a51f9"; md5.source = "64553db9022064c166a43b0e1939a1b6"; hasRunfiles = true; @@ -16111,14 +16111,14 @@ tl: { # no indentation }; "opteng" = { stripPrefix = 0; - md5.run = "03e97a1dcea1e57495f00ef7781f0c7c"; + md5.run = "fa6e8a1ab1b6375c03f9cd64c707c1ab"; md5.doc = "6e60ad32bdbd8b52eca8c3edcbbd0775"; hasRunfiles = true; version = "1.0"; }; "optional" = { stripPrefix = 0; - md5.run = "51cd548765895c16b2ab418723cbd2f2"; + md5.run = "12140e5530fa6752fadeae0c7aaf29ec"; md5.doc = "9f1d0e05930e9e510e37d02706ad78f7"; hasRunfiles = true; version = "2.2b"; @@ -16133,13 +16133,13 @@ tl: { # no indentation }; "orkhun" = { stripPrefix = 0; - md5.run = "46ebed7361656f7aaf201f9756290d5b"; + md5.run = "91d0144eb429e96a97ffa07128038f28"; md5.doc = "f2a4cf27398d638c6377ee5de6e0b74d"; hasRunfiles = true; }; "oscola" = { stripPrefix = 0; - md5.run = "7d6c6ef97abf688dd05ceff82accc1ab"; + md5.run = "4df7c110458055f52590634fb4fa63e6"; md5.doc = "0eb7ba67a9a2d41e7ab5dd8e9bc01743"; hasRunfiles = true; version = "1.4"; @@ -16152,20 +16152,20 @@ tl: { # no indentation }; "othello" = { stripPrefix = 0; - md5.run = "736551398913e2c9955ef3eef0547ca5"; + md5.run = "7cf1d4eefebde3e8605605c76cc47618"; md5.doc = "ad33b62181ac9758b9b5af9e48c69e1d"; hasRunfiles = true; }; "othelloboard" = { stripPrefix = 0; - md5.run = "4d73345993e3537a80ac9d94d15f1a7a"; + md5.run = "6f5ffa5d4329fb72ae7b1d0a51422a30"; md5.doc = "84c20e0a57d943e6a5d24984d7a8f606"; hasRunfiles = true; version = "1.2"; }; "otibet" = { stripPrefix = 0; - md5.run = "4f4e32c2b2c2607de13d914cd9ed54b8"; + md5.run = "e81e0333f481a51db55b8eddd474cd80"; md5.doc = "7e7c93bd44f9756cba69ed2d2b58f59d"; md5.source = "b6e4f66c80de5333bcd477a5c0d2e0b1"; hasRunfiles = true; @@ -16178,27 +16178,27 @@ tl: { # no indentation }; "outline" = { stripPrefix = 0; - md5.run = "9e5d30afe1a7f2ce912f954f9a0f14af"; + md5.run = "8cd1a4bb8d89a576aa9ff6212aec7649"; md5.doc = "64a68c069266b3ac2d54c540ebb90050"; hasRunfiles = true; }; "outliner" = { stripPrefix = 0; - md5.run = "51b5a4cbed5647e574d6e3a4858d9f2c"; + md5.run = "f41624c7ba04c5b485ccd8a564896fa3"; md5.doc = "dbf1a7cab4e4a395fd34f7dc3edcc2db"; hasRunfiles = true; version = "0.94"; }; "outlines" = { stripPrefix = 0; - md5.run = "6f4a6ec468ca617d134c1449cbcbc718"; + md5.run = "29bb06697bb4f17e88ca2ce232a1f7d5"; md5.doc = "709f47f6396ccf4f3ac416d10b3eaa8a"; hasRunfiles = true; version = "1.1"; }; "overlock" = { stripPrefix = 0; - md5.run = "e921a45153928a38b33e81849fe0eef8"; + md5.run = "72220d669a0fc2f6db1880bb55ccbd44"; md5.doc = "499f445e150e87e8ac83b4fae7419eec"; hasRunfiles = true; }; @@ -16211,14 +16211,14 @@ tl: { # no indentation }; "pacioli" = { stripPrefix = 0; - md5.run = "3d9b80844ea9470878a1a38ad057e7b4"; + md5.run = "113add7fb6041af7fc4cddc71af46f56"; md5.doc = "3d4c379a6dd33b970fa511fe0f7ac537"; md5.source = "fe10c61c01e2298d190dcba61bc48fb4"; hasRunfiles = true; }; "pagecolor" = { stripPrefix = 0; - md5.run = "6b249e27983845e47a60742ab1762341"; + md5.run = "44fe9453789b71c53bec2821bd428078"; md5.doc = "18346735ec8ad7d9281ee42b1f46e391"; md5.source = "466a43049cfb272b0461219e1c08a341"; hasRunfiles = true; @@ -16226,7 +16226,7 @@ tl: { # no indentation }; "pagecont" = { stripPrefix = 0; - md5.run = "b461c554785f5a71bd905f70c5e677b8"; + md5.run = "ff3b12aa0f4409737f179e0940dc0d83"; md5.doc = "24914f945b8c9042b3d04e4886c7e8f8"; md5.source = "59b5224eb0a314cc99f79594ebebed84"; hasRunfiles = true; @@ -16234,7 +16234,7 @@ tl: { # no indentation }; "pagenote" = { stripPrefix = 0; - md5.run = "3dd19e70e5c0dc0adab8e981e1559724"; + md5.run = "72417954772dac969985df17a1588963"; md5.doc = "dfdde616e7bc4a356aaf2a2375790c06"; md5.source = "1cd455d7e8b5e407792eddc668fd66ad"; hasRunfiles = true; @@ -16242,14 +16242,14 @@ tl: { # no indentation }; "pagerange" = { stripPrefix = 0; - md5.run = "3040be2c1260df2c8acc83b823484146"; + md5.run = "312d12d068e1b2082b836912349a691b"; md5.doc = "2323b9cd11cb23490c539b630c80e3d6"; hasRunfiles = true; version = "0.5"; }; "pageslts" = { stripPrefix = 0; - md5.run = "2bd37a6e03f993e12b9c23331ab6d9d0"; + md5.run = "bf92a47bce2868dedb52551b89ef16b6"; md5.doc = "801263cfef51c39313c670cbb58a9e76"; md5.source = "9ad1b73fcf2153299989fbba44459039"; hasRunfiles = true; @@ -16262,7 +16262,7 @@ tl: { # no indentation }; "paper" = { stripPrefix = 0; - md5.run = "a4f89f51fccb64e8183d140615a8b332"; + md5.run = "19b8fb06fe5b7f1b81d628c606e452b4"; md5.doc = "ed56f17533894ca9a8c43dc5811355b0"; md5.source = "2a813fd1b9ece253c32c33297378ecba"; hasRunfiles = true; @@ -16270,14 +16270,14 @@ tl: { # no indentation }; "papercdcase" = { stripPrefix = 0; - md5.run = "dd3c805e2348864a225b637c0d73a8ab"; + md5.run = "357ab06eda99f7254e7eaf7142246a11"; md5.doc = "273ff4203e053f4ec5aa3d512bc4b980"; md5.source = "fdc1bcb5ac4643eeacb7caac3ba5e3ce"; hasRunfiles = true; }; "papermas" = { stripPrefix = 0; - md5.run = "4c6e0b75cd93547dbf1e52538251a743"; + md5.run = "04c51f95dab3fa5b0304e2262b1e9fbd"; md5.doc = "577c9bbecd19a696a5716a119e509a8c"; md5.source = "a80794b0ed77065faee5ce51ec4c23f7"; hasRunfiles = true; @@ -16285,7 +16285,7 @@ tl: { # no indentation }; "papertex" = { stripPrefix = 0; - md5.run = "81d74ae591579161da6edce92b0e8583"; + md5.run = "d8e010f923d8f407c38fc0165dd00fa5"; md5.doc = "7cf3b8b626f946381f1c4f3056682102"; md5.source = "81aa82e12fe33f4ff9109511360872d7"; hasRunfiles = true; @@ -16293,7 +16293,7 @@ tl: { # no indentation }; "paracol" = { stripPrefix = 0; - md5.run = "0436aa95b445bf2c78247a7bbf705664"; + md5.run = "f412f6e4be4f0b81920235986c207839"; md5.doc = "b5aa37876a6beaca62c3af19c1ee9de6"; md5.source = "d2ab5c4bc0fb0f646a918ecc8d61a47c"; hasRunfiles = true; @@ -16301,7 +16301,7 @@ tl: { # no indentation }; "paralist" = { stripPrefix = 0; - md5.run = "474bc203f54a7b7ba39205efac6ac5dc"; + md5.run = "9269c43a93a71925c90564ce604f1ba8"; md5.doc = "e3e40d33e080f04c3405490dae718b88"; md5.source = "eb54fece61d77875dd5aecf54c2c5824"; hasRunfiles = true; @@ -16309,20 +16309,20 @@ tl: { # no indentation }; "parallel" = { stripPrefix = 0; - md5.run = "336251cb36522c9046fdcb5377d08080"; + md5.run = "5372feb01f4b9195cb51d578ef23d794"; md5.doc = "82139281465ac5d6481d5846c875429e"; md5.source = "f796c567a2ab208f4e0933d3cbbb0ce0"; hasRunfiles = true; }; "paratype" = { stripPrefix = 0; - md5.run = "3ad252ebdae08eb49fced995eb975ed4"; + md5.run = "4fd1e0d1776d1d3677d59542f67294d2"; md5.doc = "a55a27cc54459e6798c1c78433aca514"; hasRunfiles = true; }; "paresse" = { stripPrefix = 0; - md5.run = "5b391e15ca58c62dc63fbd98246f84e8"; + md5.run = "492476c2909434342ba5b6fa815fc357"; md5.doc = "6fde9a2917df52efed06b9241235c76c"; md5.source = "aec29caf81bc2913a5a65d7c319fd4b2"; hasRunfiles = true; @@ -16330,21 +16330,21 @@ tl: { # no indentation }; "parnotes" = { stripPrefix = 0; - md5.run = "8470ee38f068524743ed90971cc130a2"; + md5.run = "25801efc7333c356696c143f7fe91a09"; md5.doc = "c679eb508abc9a81364ede1911d7f474"; hasRunfiles = true; version = "1"; }; "parrun" = { stripPrefix = 0; - md5.run = "86bb9811dfc5a766302291498cbe8912"; + md5.run = "8dbe8e5a0c91d06851877d6ed4f90059"; md5.doc = "eb2ef21dc055bccfb86cff2ae4c6d3c5"; md5.source = "0ee3b8af2df9a14d96648ec12e5544d2"; hasRunfiles = true; }; "parselines" = { stripPrefix = 0; - md5.run = "d362099cb2b99dde57cab9c360ab5383"; + md5.run = "a0aec2238dc06caf63bb408f976fb30c"; md5.doc = "c79d9b3847d56f99cc552740e632202b"; md5.source = "0398ecb00f96c1a301f0ed574c1a504d"; hasRunfiles = true; @@ -16359,35 +16359,35 @@ tl: { # no indentation }; "pas-cours" = { stripPrefix = 0; - md5.run = "6761a4c4c92e5804aad7a6dbe1f82112"; + md5.run = "9984e52b5a27eb1152bcae7d02f85cf8"; md5.doc = "75ea666f53c4ec3c79419ea05f974e29"; hasRunfiles = true; version = "1.09d"; }; "pas-crosswords" = { stripPrefix = 0; - md5.run = "f24c023df3b5e363ee45cf58ca886b09"; + md5.run = "cc9c184cca7eed80230092cf72fc11b6"; md5.doc = "3fda6744a8fee8ba4a29b20e5dbd579e"; hasRunfiles = true; version = "1.03"; }; "pas-cv" = { stripPrefix = 0; - md5.run = "73613ea9367b9702e6a2388679bc7826"; + md5.run = "2cd1172f73bd28932d83167bf3467b83"; md5.doc = "5e8daa1d8c95f05df00fd5a1d6a4a64d"; hasRunfiles = true; version = "2.01"; }; "pas-tableur" = { stripPrefix = 0; - md5.run = "ca444c8331e97af0cf9ca10bdea6b9ed"; + md5.run = "b40413a573ece61d87939c788d374510"; md5.doc = "a8f0da0caa7e9202050e584d1cf5c6ba"; hasRunfiles = true; version = "2.00"; }; "passivetex" = { stripPrefix = 0; - md5.run = "934036b38c922335b73d3579283045cd"; + md5.run = "02a7a64e3e2b39f882a6103a21e6f406"; hasRunfiles = true; }; "patch" = { @@ -16397,7 +16397,7 @@ tl: { # no indentation }; "patchcmd" = { stripPrefix = 0; - md5.run = "14bff6af236ebfd88c5c6b08ed5b8ef8"; + md5.run = "8a8c517b967210377746db448d209754"; md5.doc = "f0479991f14352fc005a082236eb0f64"; md5.source = "f12b4fd5f15827bacf4ffc2af880f431"; hasRunfiles = true; @@ -16423,7 +16423,7 @@ tl: { # no indentation }; "pauldoc" = { stripPrefix = 0; - md5.run = "263b8435bbb7156266bf63aed3430abe"; + md5.run = "bae0704ba2bf61adcb2d9fcf7a1467ba"; md5.doc = "2aa0d8dfbbd7bf7dfec825abc429d58f"; md5.source = "c4b7a0a66fd8070558f8d77a0aa50b2e"; hasRunfiles = true; @@ -16431,14 +16431,14 @@ tl: { # no indentation }; "pawpict" = { stripPrefix = 0; - md5.run = "a3090cf544eb160913c81ea11a9867f1"; + md5.run = "77eeebb11f7c064c5585134cb98067c3"; md5.doc = "1dd482da6d1740b6bff5814bede164f3"; md5.source = "98096c0553c6d5c6311cc143956ee2f3"; hasRunfiles = true; version = "1.0"; }; "pax" = { - md5.run = "11be87dd501229e042886f7fb2e6d031"; + md5.run = "b4b9b3d4be53065f4126d0d37357f048"; md5.doc = "22090d6c0fba7985f84a6965fbbe7c0e"; md5.source = "7599c147dd5ccdc851ec03b08c46ff09"; hasRunfiles = true; @@ -16446,14 +16446,14 @@ tl: { # no indentation }; "pb-diagram" = { stripPrefix = 0; - md5.run = "beb2167419163b398b83be58a415468b"; + md5.run = "34452e564a096659322d5cedb4cedcef"; md5.doc = "a6caa3401946735067029cf74b9323a8"; hasRunfiles = true; version = "5.0"; }; "pbox" = { stripPrefix = 0; - md5.run = "c7aadfb82215ed375099665859ae49b2"; + md5.run = "c74c02b9a29a16012e0723715f67a371"; md5.doc = "a8708a9c4d830fc1aab8c9526fde8fc7"; md5.source = "2b017f5c3655d8e3b00cdf9f4f43f0fb"; hasRunfiles = true; @@ -16461,7 +16461,7 @@ tl: { # no indentation }; "pbsheet" = { stripPrefix = 0; - md5.run = "ddb4c25accbdfc2a94b955e75a9deb5c"; + md5.run = "b2c81a22a96709aae516439857833a80"; md5.doc = "c9b589fc86f0bd6aabf6b3310e75c82b"; md5.source = "665ec33f2fd7413f510752b81a55e6f3"; hasRunfiles = true; @@ -16469,14 +16469,14 @@ tl: { # no indentation }; "pdf-trans" = { stripPrefix = 0; - md5.run = "61efaaad422c007925255eeaf9f28cb7"; + md5.run = "687b3c14ab27f372683fbf43b6e87fd1"; md5.doc = "b8e3ecaeb7a8878ff2755e2a1dea6f8f"; hasRunfiles = true; version = "2.4"; }; "pdf14" = { stripPrefix = 0; - md5.run = "5a28a0dd2f6a70c7566a64aa94d0350e"; + md5.run = "fc4d303f8d450affa6802dee2739ab9a"; md5.doc = "3ccf786e976dd1749d039e7fb9950988"; md5.source = "0eacc457d3ee491739499b461b7033c3"; hasRunfiles = true; @@ -16484,14 +16484,14 @@ tl: { # no indentation }; "pdfcomment" = { stripPrefix = 0; - md5.run = "d67acc1619b915e25db01146fe33fdf0"; + md5.run = "091c131662c3c9b4640841b9b76f8677"; md5.doc = "8c08127b9ccaa3f3b6b4e8f85653b9fb"; hasRunfiles = true; version = "v2.3a"; }; "pdfcprot" = { stripPrefix = 0; - md5.run = "eda25044636ed9e62068f527db1c9d6d"; + md5.run = "870cd511d96a5a9823f944d522430119"; md5.doc = "de5b1ae6340fedb6b7bfccea5966afdb"; md5.source = "476b108a8b5057406153bf5157f732ab"; hasRunfiles = true; @@ -16511,7 +16511,7 @@ tl: { # no indentation }; "pdfmarginpar" = { stripPrefix = 0; - md5.run = "c4295f0dcd95cf9035ed96efe72ade35"; + md5.run = "9417dce33b65ca56bcdb16c394f90cd4"; md5.doc = "41a007af2415867cf5771528bf4eca07"; hasRunfiles = true; version = "0.92"; @@ -16527,20 +16527,20 @@ tl: { # no indentation }; "pdfscreen" = { stripPrefix = 0; - md5.run = "6fc2d8cad3baab2b0843ac2bae945b9a"; + md5.run = "3088c8ef7ae2b17485933b0984ba0f9a"; md5.doc = "f2b66d4b57f496455f6c1e5238a07b74"; hasRunfiles = true; version = "1.5"; }; "pdfslide" = { stripPrefix = 0; - md5.run = "54a6af6c94427719b1de8c72337a5614"; + md5.run = "35c09b9b16f32b5be2af17d4ad1899ee"; md5.doc = "0f27f873bad3034b57b0c05d38a8e2e9"; hasRunfiles = true; }; "pdfsync" = { stripPrefix = 0; - md5.run = "6325ba15e93e324fc66ee8ade0c3ddda"; + md5.run = "59c727568ae871b81cc4ce8198b2b466"; md5.doc = "25e14e5d6c25a8d625cdcfbbf7d58819"; hasRunfiles = true; }; @@ -16565,27 +16565,27 @@ tl: { # no indentation }; "pdftricks" = { stripPrefix = 0; - md5.run = "7d3d6195849abb6a0a602c0baceca2ad"; + md5.run = "5ec0c4bdea215ab4b37ca5af1cbbc41e"; md5.doc = "3c743b200df7afb5a7d58e3e54a410b9"; hasRunfiles = true; version = "1.16"; }; "pdftricks2" = { stripPrefix = 0; - md5.run = "e8e3fc122ee31e3d9319ef7a06661cd6"; + md5.run = "14addb836b35428c4d227c4d9011b973"; md5.doc = "13dc2ebc4010251fb15569105cca501e"; hasRunfiles = true; version = "1.01"; }; "pdfwin" = { stripPrefix = 0; - md5.run = "19c0885059f2a5c803096789b0e461fb"; + md5.run = "5d8d49881fdecd49ba04b281576ef088"; md5.doc = "10a7b42e6e96deb4ec9709baa7ac4f78"; hasRunfiles = true; }; "pdfx" = { stripPrefix = 0; - md5.run = "f4ab06fdd4d3a1d1228c924224ab6ec5"; + md5.run = "544a96b42ea21e97fe49091c923d0696"; md5.doc = "9a7a7a78a54dbaa666915e7552f397e9"; md5.source = "1cbc6f55da233a52f2741b76aab4b774"; hasRunfiles = true; @@ -16593,20 +16593,20 @@ tl: { # no indentation }; "pecha" = { stripPrefix = 0; - md5.run = "145e15ea47e1c3acb4ad6928020db1f2"; + md5.run = "8b2a447c3cd845880c90e44374d2c8ab"; md5.doc = "4e855b2219a77b9bcfe89e0c58bf2420"; hasRunfiles = true; version = "0.1"; }; "pedigree-perl" = { - md5.run = "4f0434f39f4d9ea3d772bbc20773bb3b"; + md5.run = "de5425058b3b6d409c0f2652e72aa915"; md5.doc = "8faf16a68c301f7e458691b609781b21"; hasRunfiles = true; version = "1.0"; }; "perception" = { stripPrefix = 0; - md5.run = "d2caec5409e3f9bd8413e28572cd02ac"; + md5.run = "cc8447f1e4f9ee501ed429939f26472a"; md5.doc = "b9041904e24884f648227837bef30275"; hasRunfiles = true; }; @@ -16618,7 +16618,7 @@ tl: { # no indentation version = "2.0"; }; "perltex" = { - md5.run = "935dd8593f83762bf349bbd4600e1f39"; + md5.run = "512622421831a08605bf95158478b219"; md5.doc = "7370ca7b0fe380e349fd0e62b5e2510f"; md5.source = "f4a64a32454b01069e16a6a031682c64"; hasRunfiles = true; @@ -16626,28 +16626,28 @@ tl: { # no indentation }; "permute" = { stripPrefix = 0; - md5.run = "e886603f7e36dacd85c6e61835f7cd3d"; + md5.run = "981a676e0275ae4396087b3079c086b9"; md5.doc = "9caa1862d4e32a9be1a765aab526abb2"; md5.source = "073e2afc5eae240e271fd01a56d0c892"; hasRunfiles = true; }; "persian-bib" = { stripPrefix = 0; - md5.run = "cfc658a44a614bd409f5b4006f12c013"; + md5.run = "e8e07420041ee7edcb25a20f2b759913"; md5.doc = "a96e129cfb531d90c338db2c28d5a3e6"; hasRunfiles = true; version = "0.8"; }; "petiteannonce" = { stripPrefix = 0; - md5.run = "cff924076669747c34ec53ab5676f45a"; + md5.run = "a487d0a8875c436e8f43caff24010656"; md5.doc = "f44ecd21138175fe496fa8650199bd08"; hasRunfiles = true; version = "1.0001"; }; "petri-nets" = { stripPrefix = 0; - md5.run = "b6b943b51383ff37f9088f1a6dca1f66"; + md5.run = "5784db7c2889aeb99fbd1f927dbc4191"; md5.doc = "de0864b593104d63a7d328a409424d2b"; hasRunfiles = true; }; @@ -16669,7 +16669,7 @@ tl: { # no indentation }; "pgf-blur" = { stripPrefix = 0; - md5.run = "10b3d4ab21aa5d09d10a66e054b50484"; + md5.run = "8c22d953f664ba6a6175cba6fe600480"; md5.doc = "3b8a22d89532e2dd9be6e0fe3937da29"; md5.source = "dfafb01dd7503f6aed11de4ae8f0dd4a"; hasRunfiles = true; @@ -16677,28 +16677,28 @@ tl: { # no indentation }; "pgf-soroban" = { stripPrefix = 0; - md5.run = "0d125df611a3d5f6aebabb5a358c6f93"; + md5.run = "3c0ffeb4db63c7af23fc62417c1f099c"; md5.doc = "3578f266cf0b308668011349bdde116e"; hasRunfiles = true; version = "1.1"; }; "pgf-umlcd" = { stripPrefix = 0; - md5.run = "46ced80bb8af7504419255e85c4dc39b"; + md5.run = "06a81254ddca23b2f022a6c1cabc047c"; md5.doc = "d79a5f3bac6b6e461f7ad22f7e6ae796"; hasRunfiles = true; version = "0.2.1.1"; }; "pgf-umlsd" = { stripPrefix = 0; - md5.run = "91f2531889dcf3292b4c5fa6326e2856"; + md5.run = "676d850bffb51767e36fe887f5d2477e"; md5.doc = "33c8a02ddaadd789db8b22d3bf03d30c"; hasRunfiles = true; version = "0.7"; }; "pgfgantt" = { stripPrefix = 0; - md5.run = "2d816c18b2924d175dd3f0170d0049bd"; + md5.run = "ea83b02f2e80201edb65ba96805abd17"; md5.doc = "0579c451e0af106f1c6b4ce525c2217b"; md5.source = "9adeb0a652feaf93787ab0347ce189bc"; hasRunfiles = true; @@ -16706,14 +16706,14 @@ tl: { # no indentation }; "pgfkeyx" = { stripPrefix = 0; - md5.run = "6f0fa283fd46ead985f2d9f94e1ee67b"; + md5.run = "15b1101d6f55b88b3d2bbeb1794442a9"; md5.doc = "5ee9b32cd4638a7f4495c73187bc1390"; hasRunfiles = true; version = "0.0.1"; }; "pgfmolbio" = { stripPrefix = 0; - md5.run = "385ec8f77f665a93f23515c47da14ff1"; + md5.run = "99d5d2735329c71107a710c5654f2fa9"; md5.doc = "6f79d2e89073f813f124dc44f3986598"; md5.source = "660ffb01cad140e6441f9048fefd7609"; hasRunfiles = true; @@ -16721,7 +16721,7 @@ tl: { # no indentation }; "pgfopts" = { stripPrefix = 0; - md5.run = "15e069eeb0f59f50e3c4c1a284cf36c8"; + md5.run = "b87daaf9476cafe6180bb77318aed812"; md5.doc = "1276365df1ea29b698509a83b0f27967"; md5.source = "c66ba3d3675476ef445e8979dbdc3686"; hasRunfiles = true; @@ -16729,7 +16729,7 @@ tl: { # no indentation }; "pgfplots" = { stripPrefix = 0; - md5.run = "55de15540437212313af6c2f3357467b"; + md5.run = "508d69dd954b50968eae38cec281bf80"; md5.doc = "757b982a6ccba8fae616fc0c9cdb20e2"; md5.source = "00f541042a3c4b4f3eb236f15e833c24"; hasRunfiles = true; @@ -16737,7 +16737,7 @@ tl: { # no indentation }; "phaistos" = { stripPrefix = 0; - md5.run = "2465e099948127257202c2ee2142670e"; + md5.run = "b41491ee7ea56b2ca213ebdd422d7d1a"; md5.doc = "175be0e7c3468277c573d87458efec61"; md5.source = "6d9f9645254c1fc39760ab4aa9b1a8b4"; hasRunfiles = true; @@ -16745,7 +16745,7 @@ tl: { # no indentation }; "philex" = { stripPrefix = 0; - md5.run = "db0fa412f31b9f0bac55d76dc35c66d1"; + md5.run = "011c419c6ece14e95a0e0314bdf967f7"; md5.doc = "7426a828f27d0d49b72aa5b810865efd"; hasRunfiles = true; version = "1.3"; @@ -16760,7 +16760,7 @@ tl: { # no indentation }; "philosophersimprint" = { stripPrefix = 0; - md5.run = "3c868ac94082106faca0a9e65e82bb7d"; + md5.run = "b01051ba740ce0a16845d954eb32425a"; md5.doc = "ecb5dc03361c6039d159334b54131871"; md5.source = "5914b09e67c78b174071265b1605f05e"; hasRunfiles = true; @@ -16768,48 +16768,48 @@ tl: { # no indentation }; "phonetic" = { stripPrefix = 0; - md5.run = "8e681f6d057a7b9cfb26a6df562aaf05"; + md5.run = "0fb2bc0c52126a5cfbec0e6a620f500d"; md5.doc = "127062b879854b665db4bde013db7558"; hasRunfiles = true; }; "phonrule" = { stripPrefix = 0; - md5.run = "3aa96af993ee8aa9480e26596bb8fdfc"; + md5.run = "f93bbf047cde46a29886a915c405664e"; md5.doc = "85dbf469579eb37c7a374bf1b1485318"; hasRunfiles = true; version = "1.0.0"; }; "photo" = { stripPrefix = 0; - md5.run = "3f6737e66557d9edb65fb16b36727b1c"; + md5.run = "cb0b4642c7cd265711df21c89209a018"; md5.doc = "cc570a26f1674c6c1dd76968161fb5d9"; md5.source = "7a81fc5081b08e13dced922ba0e3ac44"; hasRunfiles = true; }; "physics" = { stripPrefix = 0; - md5.run = "40ff1b25541b37c9d81eff8dcaa02889"; + md5.run = "7596935983451807c070a63a80d7d6a7"; md5.doc = "b265701e0af669b1cdefca4c9912ae47"; hasRunfiles = true; version = "1.3"; }; "piano" = { stripPrefix = 0; - md5.run = "f3281663d7640eb565e53d0e1465d336"; + md5.run = "aa99eecadd849975cce5e4f0a0cae88b"; md5.doc = "6a619193ff5815eaacf9e6d08c0a3be7"; hasRunfiles = true; version = "1.0"; }; "picinpar" = { stripPrefix = 0; - md5.run = "70e23afa403b71306022361cdb86672d"; + md5.run = "8f25dff3184c82070fef9c5981c8076b"; md5.doc = "f9217837ac22f893a0033bf81a759b97"; hasRunfiles = true; version = "1.2a"; }; "pict2e" = { stripPrefix = 0; - md5.run = "38beea819a2f409d12ea6138140cd1bb"; + md5.run = "871cc2baa28ed13923d156c7e7897555"; md5.doc = "8c8e375bbc6add0f545f494fd7756768"; md5.source = "9eb4b15be8cdb804906b7155e424a9db"; hasRunfiles = true; @@ -16817,14 +16817,14 @@ tl: { # no indentation }; "pictex" = { stripPrefix = 0; - md5.run = "bfa05c6b41dd88e7977b06f77cfd7165"; + md5.run = "c4d6468aa047f2666422caa7a8200dac"; md5.doc = "a6b6a61198e6bb4e7c5f7d646e1bdd92"; hasRunfiles = true; version = "1.1"; }; "pictex2" = { stripPrefix = 0; - md5.run = "1fa06bd22d64493b688982303ac0ff78"; + md5.run = "037440131d9c3153df70617b37509604"; hasRunfiles = true; }; "pictexsum" = { @@ -16841,20 +16841,20 @@ tl: { # no indentation }; "piff" = { stripPrefix = 0; - md5.run = "2c0c54cd0d64e64828c76de4f173f92b"; + md5.run = "790d47ef96fcf78fe5c3b03520c22e5d"; md5.doc = "4a77afa54b094aad3feaba55422af47e"; hasRunfiles = true; }; "pigpen" = { stripPrefix = 0; - md5.run = "59358c8e75213b85077f9ee9151f77d5"; + md5.run = "3b6f4c7588086c72eae286c5838c29bc"; md5.doc = "a1b3589ce8b03d80363168c5030cbf5c"; hasRunfiles = true; version = "0.2"; }; "pinlabel" = { stripPrefix = 0; - md5.run = "5dba5cc64af179ffb10b8e45ea5bdd30"; + md5.run = "1a1c71336320c8f71168ea4fda1c793c"; md5.doc = "46dd0739f35763aca7725f073559c268"; hasRunfiles = true; version = "1.2"; @@ -16867,7 +16867,7 @@ tl: { # no indentation }; "pittetd" = { stripPrefix = 0; - md5.run = "089ab26bba2db072b871c84f1cb8544f"; + md5.run = "e2f2693441fbdda0967703e8b0b32e42"; md5.doc = "94a315c36946ea7b356e169e95feee07"; md5.source = "f90310ca6449847876f1e52210b1809f"; hasRunfiles = true; @@ -16887,14 +16887,14 @@ tl: { # no indentation }; "pkgloader" = { stripPrefix = 0; - md5.run = "d4e6a0f00ae35b76c381bc281b4fa282"; + md5.run = "a1c3991f197e3969d7f89bffcf27e895"; md5.doc = "3e0026b852f4e3ad72a9aac0f8c73732"; hasRunfiles = true; version = "0.5.0"; }; "pkuthss" = { stripPrefix = 0; - md5.run = "09ee4d034f121ab87f652d495cc61c96"; + md5.run = "30497417e382520d06d201635fa6b055"; md5.doc = "158af4437e3a06f94075a7380a2a3e60"; hasRunfiles = true; version = "1.5.4"; @@ -16939,7 +16939,7 @@ tl: { # no indentation }; "plainpkg" = { stripPrefix = 0; - md5.run = "8ed5775a036c40d45a98f658afe5bb3c"; + md5.run = "25a8fbd6f0bfdd41b69202db1ccda8c7"; md5.doc = "e0f08a409ae07e605c11c27560199cd7"; md5.source = "9ab47995e4b9f7d13fe92e027fbf1cf5"; hasRunfiles = true; @@ -16947,35 +16947,35 @@ tl: { # no indentation }; "plantslabels" = { stripPrefix = 0; - md5.run = "6f28836fc88cd770927cec04f3a6e8fb"; + md5.run = "f56a20376cacdcea67f1e0efa87294b7"; md5.doc = "392f7d5e857d933bf39460a0d30c039e"; hasRunfiles = true; version = "1.0"; }; "plari" = { stripPrefix = 0; - md5.run = "8d9ac3a9af7c70a604f5ece4e05d75bb"; + md5.run = "531e4aff498318ba57eaa8b8c6956613"; md5.doc = "108962842bc3b5bbd0b8f6fd3d614299"; md5.source = "d532fe14f048db6e5f7a899fbc99804e"; hasRunfiles = true; }; "plates" = { stripPrefix = 0; - md5.run = "b9ce5d1c96c3cf2cc917378b484be789"; + md5.run = "a6c21616404efc334506df8bb5c1a9cd"; md5.doc = "a75c1561597342ab55987427a6b8d9a8"; hasRunfiles = true; version = "0.1"; }; "play" = { stripPrefix = 0; - md5.run = "a835511ec5eed313d40d69a5d130c556"; + md5.run = "6767dc1a399a4def1ef4414f27872076"; md5.doc = "69684f101487dcc762ec66ec62e87237"; md5.source = "b509c920a589c74aa51ed8004bbf13bd"; hasRunfiles = true; }; "playfair" = { stripPrefix = 0; - md5.run = "21828bbb0dd92338b1099784be317f5d"; + md5.run = "f3a3a26969c65339755c8fdcd89ea4e2"; md5.doc = "283d78ca4791100164fb695861650361"; hasRunfiles = true; }; @@ -17002,7 +17002,7 @@ tl: { # no indentation }; "plweb" = { stripPrefix = 0; - md5.run = "c84e63a8c053556f84bfc3de021b344a"; + md5.run = "fa768d6b44abcbec32de540895e7e60b"; md5.doc = "2ccc8d017c351fe9314837c55a13c151"; md5.source = "2508e891cc3ace45a2b712019b411d2e"; hasRunfiles = true; @@ -17010,32 +17010,32 @@ tl: { # no indentation }; "pmgraph" = { stripPrefix = 0; - md5.run = "d04b485db70bfd491dacef9b6d7d3593"; + md5.run = "4af5434587c93ac0f2f0f5089d8660fb"; md5.doc = "5f048b32a2d3d1428fe62eed45477808"; hasRunfiles = true; version = "1.0"; }; "pmx" = { - md5.run = "be24fa74e0548ae48983c429b0fd0198"; + md5.run = "8f6e4370050ced294ca268caab6abab8"; md5.doc = "1b354e213035823e5505e2f00b965bf4"; hasRunfiles = true; version = "2.7.0"; }; "pmxchords" = { - md5.run = "a4c8734182f1ca93715e08c5736c6aa7"; + md5.run = "c620718ba1530b16dc78062dd66f2a6e"; md5.doc = "1b6e96fc89d205600808e39acbc61b40"; hasRunfiles = true; version = "2.0.1"; }; "pnas2009" = { stripPrefix = 0; - md5.run = "a8af5e0b2c8847895f5a6051e793fa9e"; + md5.run = "a5b33744cff8b0c20a37d5a679f5468b"; hasRunfiles = true; version = "1.0"; }; "poemscol" = { stripPrefix = 0; - md5.run = "db21e7e78d0affecf6416c1b4aadb737"; + md5.run = "b236c513eeaaad880f69c7e15a09951d"; md5.doc = "ef03b9fe47b000ea3e4d4ae50bfaff26"; md5.source = "42418dee7b6bc9ad1b85d839c797d2fe"; hasRunfiles = true; @@ -17043,7 +17043,7 @@ tl: { # no indentation }; "poetrytex" = { stripPrefix = 0; - md5.run = "ea91d444f60a55a48641e9fb9264e7f9"; + md5.run = "90868dd10497f9be33964a7c5713425d"; md5.doc = "d4e231a0b71d951641b9ea7dd3d2a686"; md5.source = "b27468f2c60a2bdc7964ab9cc704ebc1"; hasRunfiles = true; @@ -17061,7 +17061,7 @@ tl: { # no indentation }; "poltawski" = { stripPrefix = 0; - md5.run = "64f06a81f3872fc514036f114272b049"; + md5.run = "f873eb837986c5c7df560de504aaedf3"; md5.doc = "a46b04b22375aae653ec2d5c87329803"; hasRunfiles = true; version = "1.101"; @@ -17081,7 +17081,7 @@ tl: { # no indentation }; "polynom" = { stripPrefix = 0; - md5.run = "0b71447acb0536a46b6509951e76a72e"; + md5.run = "10868f36203646c6c5dda453fc2993b6"; md5.doc = "89695d8972b41cd3e659753973eca918"; md5.source = "348d6581b6732b901d01433c4f6b8ca1"; hasRunfiles = true; @@ -17089,7 +17089,7 @@ tl: { # no indentation }; "polynomial" = { stripPrefix = 0; - md5.run = "fd392e5c74446a0c8cc022005e183a2b"; + md5.run = "3d8ad16434f4e4321245cb19a3fb35e9"; md5.doc = "f5fb4c51e43533910c6f1de22020395c"; md5.source = "f2e24481becee07fafdd9d5f6be57025"; hasRunfiles = true; @@ -17097,7 +17097,7 @@ tl: { # no indentation }; "polytable" = { stripPrefix = 0; - md5.run = "34e83b55e2b82c62a0f9fbdc42341084"; + md5.run = "d1eda503fb526b0de0b49ab8a959b9d9"; md5.doc = "169005041f9537684475ad0d7564436a"; md5.source = "d56fbf861631dc19f0ec1ea9a51db09a"; hasRunfiles = true; @@ -17105,13 +17105,13 @@ tl: { # no indentation }; "postcards" = { stripPrefix = 0; - md5.run = "4fc10aa6fd207a79f0bf0b66e52c4763"; + md5.run = "41bb161ab2d6be6e8b834853a613da10"; md5.doc = "83750323d80dbbff6f5cc98ec352f1ef"; hasRunfiles = true; }; "poster-mac" = { stripPrefix = 0; - md5.run = "3fac99dcdb3ebd137c98741065011726"; + md5.run = "968ffed021ec49c9d59064f45c7263bd"; md5.doc = "97452ce758c611952863d35ef228f7d4"; hasRunfiles = true; version = "1.1"; @@ -17126,14 +17126,14 @@ tl: { # no indentation }; "powerdot-FUBerlin" = { stripPrefix = 0; - md5.run = "f7f3d1d414d0b7966471d541a6a3555b"; + md5.run = "431ed110f2790095b9c0f0363b331ffa"; md5.doc = "c6bbf99e76f4d888dd1fdd4dcc4836cb"; hasRunfiles = true; version = "0.01"; }; "ppr-prv" = { stripPrefix = 0; - md5.run = "4cd515027c795afbaef09aba2f3fff25"; + md5.run = "b86574bee1f0d4c0f27f6b0a9f88c1ae"; md5.doc = "8fad2bcc163de6ffafb68d890e53c165"; md5.source = "041053078181086a02e3c0add65e3a66"; hasRunfiles = true; @@ -17141,7 +17141,7 @@ tl: { # no indentation }; "pracjourn" = { stripPrefix = 0; - md5.run = "523dfdad7c1d98e02954e4a4601421f9"; + md5.run = "e1a3acca381d76481986630e8b4b40d5"; md5.doc = "cca5035a0d6d73ad1bf57ef340623dee"; md5.source = "596154b28963dee8353f26b6601c3983"; hasRunfiles = true; @@ -17157,7 +17157,7 @@ tl: { # no indentation }; "prerex" = { stripPrefix = 0; - md5.run = "a4de996845cd0af39f363de10f1c548b"; + md5.run = "2afb3a5f6dec64cfe0670439933dd477"; md5.doc = "05a57420dac8cacfd236f1b46f7aacf2"; hasRunfiles = true; }; @@ -17180,7 +17180,7 @@ tl: { # no indentation }; "pressrelease" = { stripPrefix = 0; - md5.run = "bb443662baadb345baffd4cdfd399ce4"; + md5.run = "6d87a4182570d538fbf9b1155e649e91"; md5.doc = "837c58264dee055bc013370f131bfd5a"; md5.source = "b9cafc1dcaced94ed1dff1f3367da1f6"; hasRunfiles = true; @@ -17188,7 +17188,7 @@ tl: { # no indentation }; "prettyref" = { stripPrefix = 0; - md5.run = "78bdd0db6229a1168c2e229db0a5ccb8"; + md5.run = "1bdd903cabf514b034f128aced65b407"; md5.doc = "e7eb53d55565a8b4d5846fef35a1582e"; md5.source = "2ac1831de0517bc04c901e0217cc58ca"; hasRunfiles = true; @@ -17196,7 +17196,7 @@ tl: { # no indentation }; "preview" = { stripPrefix = 0; - md5.run = "d3c7912c9ab385c48337e9b9b00d26c3"; + md5.run = "814711eb33e97f018eba58cea5a66a54"; md5.doc = "3c2c11a1a8bb62358888ef4d4d35c317"; md5.source = "677274fb2e69ac101560c6e4f4862537"; hasRunfiles = true; @@ -17210,7 +17210,7 @@ tl: { # no indentation }; "printlen" = { stripPrefix = 0; - md5.run = "c1101bd6c7fc691511ca973a6f0cf1a3"; + md5.run = "99544f5542c300a0a8d70e22b7865538"; md5.doc = "41e395efce811a674cae2db75655856d"; hasRunfiles = true; version = "1.1a"; @@ -17224,7 +17224,7 @@ tl: { # no indentation }; "probsoln" = { stripPrefix = 0; - md5.run = "69d71e24696d316a553cbebb0b69d184"; + md5.run = "7df17e65108da8e16014e74c3e6e87e0"; md5.doc = "bbc4437a12776e370f5a388c40082a26"; md5.source = "d93314e8b7040b2378ce067b7bd56f7b"; hasRunfiles = true; @@ -17232,19 +17232,19 @@ tl: { # no indentation }; "procIAGssymp" = { stripPrefix = 0; - md5.run = "329fd276dd5a88489f18374dd54d0651"; + md5.run = "d73b1514f7721200edc3daaac482bb48"; md5.doc = "4ed8e9d57f2a044bdef245e4bccef21a"; hasRunfiles = true; }; "prodint" = { stripPrefix = 0; - md5.run = "6c96a1c9ed60d7dd774c340cf286b1d0"; + md5.run = "9a1715ca250cbcbc97336085936426d1"; md5.doc = "bb9d836a63a3f120961a9ff4de04f414"; hasRunfiles = true; }; "productbox" = { stripPrefix = 0; - md5.run = "21dc223876cc9e033390c80439aff8f8"; + md5.run = "154d6868f5801db38673185a6565dac7"; md5.doc = "b55f90ab39e2b333c8d3661f33d57d04"; md5.source = "84efc5001e766a91c2c5c814ac9b97f2"; hasRunfiles = true; @@ -17252,56 +17252,56 @@ tl: { # no indentation }; "program" = { stripPrefix = 0; - md5.run = "324d8492d762454ba359fae47611fc25"; + md5.run = "7d63c4a712f36ad4f51d4dfd96c6d1b7"; md5.doc = "fc811faf3eb415133d957d9924508c4b"; hasRunfiles = true; version = "3.3.12"; }; "progress" = { stripPrefix = 0; - md5.run = "f920bb8d0afc49484241214257ca5a66"; + md5.run = "48dd92b98fed42cd9544dac66b3f783f"; md5.doc = "5db46f06e4825596ad7c493bab44f089"; hasRunfiles = true; version = "1.10"; }; "progressbar" = { stripPrefix = 0; - md5.run = "bc269d524d72c0c171a9ee250d28c861"; + md5.run = "f974b81b223773c7e44e31724a835d9e"; md5.doc = "c1a8c4a77cd2366186b335e0af596df8"; hasRunfiles = true; version = "v1.0b-4"; }; "properties" = { stripPrefix = 0; - md5.run = "bf58da266cf708e26b17fe15171a8884"; + md5.run = "87c6139700db90f34835c2530b466ff8"; md5.doc = "48db56562df3e0641b10e1e07de3e9e5"; hasRunfiles = true; version = "0.2"; }; "proposal" = { stripPrefix = 0; - md5.run = "46572e6026207954508e19bf89b16f90"; + md5.run = "ebe274f40f4df9d8d512461e8397965e"; md5.doc = "f80b68531498b41777ebef8478785c2e"; md5.source = "1eb4bfefb7f34f1bdd1d75c74dff5f9d"; hasRunfiles = true; }; "prosper" = { stripPrefix = 0; - md5.run = "a8ab05ee266d0c0e72c002c4ac17828d"; + md5.run = "fd6517543157fecc99e92f2b38924f3c"; md5.doc = "4db59665c85f01eb379aa626573fefc5"; hasRunfiles = true; version = "1.0h"; }; "protex" = { stripPrefix = 0; - md5.run = "d01139946c287b08529a3bb4cefe899c"; + md5.run = "1a2389a489d4e4b459d4614d4bebf201"; md5.doc = "b9900c5bbc915e01fe8ecd6754417e1b"; hasRunfiles = true; version = "1.5"; }; "protocol" = { stripPrefix = 0; - md5.run = "fcf2b34224a8c9b29c132acc209bf315"; + md5.run = "b378d566090de7d645167db33fb3ed30"; md5.doc = "9aac53e4d15e4f2bded76711bb284152"; md5.source = "338eac912408e6e6f65f74e4c0a175db"; hasRunfiles = true; @@ -17320,14 +17320,14 @@ tl: { # no indentation }; "psbao" = { stripPrefix = 0; - md5.run = "d8839d9c9c53e64e52df93c46cdd09ca"; + md5.run = "83b55732c04012d435f65a6406746ae7"; md5.doc = "58810f65d9e4b1f114e74220ef82afe3"; hasRunfiles = true; version = "0.17"; }; "pseudocode" = { stripPrefix = 0; - md5.run = "d98432c3fa685ed110a80e97e68db942"; + md5.run = "7d9012ba758680b9c894afa6e9280ef8"; md5.doc = "61902548c4483e81780396fe33a75886"; hasRunfiles = true; }; @@ -17346,7 +17346,7 @@ tl: { # no indentation }; "psfragx" = { stripPrefix = 0; - md5.run = "a5c21914fe02d772b5d142a3d6b9c2b3"; + md5.run = "71da804f0064bbb712b4ef307be30ee0"; md5.doc = "a15ba29ba2a7172b2fdc239730346199"; md5.source = "a6e57b94fef5774081615a68eb89ef24"; hasRunfiles = true; @@ -17354,14 +17354,14 @@ tl: { # no indentation }; "psgo" = { stripPrefix = 0; - md5.run = "60da952b14cff5ef1fd91e37e0ee6ef0"; + md5.run = "559334034b5bd7cc91cb0add3c5cabbc"; md5.doc = "44cd850163a3cff65c43e6f7c6755a56"; hasRunfiles = true; version = "0.17"; }; "psizzl" = { stripPrefix = 0; - md5.run = "986ab79b1a3949dff66b23f805058f75"; + md5.run = "17172515b21c8819d3f602c1ff2c41eb"; md5.doc = "bbe30e2a8d3bae68f32d82bb9fc2e515"; md5.source = "5df9b581aa58f822a7ce852b2a4297dd"; hasRunfiles = true; @@ -17391,14 +17391,14 @@ tl: { # no indentation }; "pst-2dplot" = { stripPrefix = 0; - md5.run = "605cc0e154b97a7ce88ac14e06c81142"; + md5.run = "6bf93e9c55ac1214b50fe74e91465009"; md5.doc = "7fa50fb4abda963b15b3da04f1d177c2"; hasRunfiles = true; version = "1.5"; }; "pst-3d" = { stripPrefix = 0; - md5.run = "c73d6e94f4b1af190a60e35efb158bf9"; + md5.run = "99f7cf63a62e466c88a5d64a5277080a"; md5.doc = "8c36d81f7fbed643b76a9898387de54a"; md5.source = "fdf1c23f58babe394cede44d560e9f36"; hasRunfiles = true; @@ -17406,14 +17406,14 @@ tl: { # no indentation }; "pst-3dplot" = { stripPrefix = 0; - md5.run = "74d348465b55560da1deb99b4d0043d6"; + md5.run = "1a4a943f044f000728b72caf9f179384"; md5.doc = "87add51fecfd05c51de84687b78b835b"; hasRunfiles = true; version = "2.01"; }; "pst-abspos" = { stripPrefix = 0; - md5.run = "403b3ddb0b34cfaa1bb93467f3785ffa"; + md5.run = "c87387fbf47f614fa993d4557bdb4884"; md5.doc = "2298412c6c532ec76760da49ce22bc5c"; md5.source = "69dff2f918eb567437bdeaadf3b9194d"; hasRunfiles = true; @@ -17421,7 +17421,7 @@ tl: { # no indentation }; "pst-am" = { stripPrefix = 0; - md5.run = "a709dc9daa4c31383ad8091353d23c14"; + md5.run = "2967320b68b87dec1d1e61c8cb0949e5"; md5.doc = "e49fc9932186fb17374500c7c26aa310"; md5.source = "946e9efb54b7f9b50ed04fbcf9bad3b4"; hasRunfiles = true; @@ -17429,14 +17429,14 @@ tl: { # no indentation }; "pst-asr" = { stripPrefix = 0; - md5.run = "2e7b724107b0bc954c08773845aa6ffc"; + md5.run = "5bd894a93a9011354a5485057e195e1f"; md5.doc = "9b6fc10aa89b8f6e484321afe8c7ce4c"; hasRunfiles = true; version = "1.3"; }; "pst-bar" = { stripPrefix = 0; - md5.run = "3228a3c9a523382c5714a96fe27fc653"; + md5.run = "9d31cbda15171808c62d600df9c0fbd9"; md5.doc = "1611157d3d8e2efd6f572c22cca30555"; md5.source = "6ca845ee4e2033288d9a93bd04233221"; hasRunfiles = true; @@ -17444,14 +17444,14 @@ tl: { # no indentation }; "pst-barcode" = { stripPrefix = 0; - md5.run = "5dcd00ab320bd1911592f01fe4b2a5d4"; + md5.run = "94af5cedb3969b9a0215c8a8212ae9c1"; md5.doc = "e6537b25ab3bea58942ca2db49a28819"; hasRunfiles = true; version = "0.12"; }; "pst-bezier" = { stripPrefix = 0; - md5.run = "238742513c416feecbc3f4e4d07cd03c"; + md5.run = "06dabd83d3e0beb957d121ea8cbfe476"; md5.doc = "7ef726c454f79c35416e30359c9c5cea"; md5.source = "a7fc11306171dd5e6efef0d5336796d1"; hasRunfiles = true; @@ -17459,7 +17459,7 @@ tl: { # no indentation }; "pst-blur" = { stripPrefix = 0; - md5.run = "c27a3ea15a87bd844047a8fcf4d98e57"; + md5.run = "bf66bcfb6c73e7cfdfbd3ae913507b02"; md5.doc = "3bf95b8e7e4a964f4b8db58091907bd9"; md5.source = "3b8048737a3a4d4e5e0a73066a988535"; hasRunfiles = true; @@ -17467,28 +17467,28 @@ tl: { # no indentation }; "pst-bspline" = { stripPrefix = 0; - md5.run = "b5c21dac3d52a32c90f04956fd488f7d"; + md5.run = "d94639751ca7736125adf1207f1bf07c"; md5.doc = "cdf56067a5b1ddd8e410f0d7046250b3"; hasRunfiles = true; version = "1.61"; }; "pst-calendar" = { stripPrefix = 0; - md5.run = "83c1bc852e4c7458efeee3873525db9a"; + md5.run = "80eb2d08a7990940a3bf8fd8c2274040"; md5.doc = "9b08ba0b0b885d9f6ef2d6c2e23c4b8c"; hasRunfiles = true; version = "0.47"; }; "pst-circ" = { stripPrefix = 0; - md5.run = "a13405a07b00f1255921a9c78e366592"; + md5.run = "b05f4a1ade9a153073a821de4bd250c4"; md5.doc = "5b3d052919f4d56898adfbe451a9b241"; hasRunfiles = true; version = "2.12a"; }; "pst-coil" = { stripPrefix = 0; - md5.run = "e79ab8a6306f6ae5c425294a4954ea38"; + md5.run = "547bf474255654df3c1a62098c943062"; md5.doc = "f5845e88e81031abf293022af1b051ac"; md5.source = "0ed4f867232d5d0c2f46cc97415298e7"; hasRunfiles = true; @@ -17496,14 +17496,14 @@ tl: { # no indentation }; "pst-cox" = { stripPrefix = 0; - md5.run = "c29a805c7b3214133fd291786b2acfa3"; + md5.run = "648f30629532970c6639a8443cf90388"; md5.doc = "1254397af006446831cf18d12696380d"; hasRunfiles = true; version = "0.98_Beta"; }; "pst-dbicons" = { stripPrefix = 0; - md5.run = "b14a76bfefe8c08094e62131b2ce8cd3"; + md5.run = "f0c43c19d49f0b0a2a673532d5e9ae9a"; md5.doc = "48665f5d42f61abed3983e397143899a"; md5.source = "5edd0b8bc2318418c61504cc71dc5471"; hasRunfiles = true; @@ -17511,7 +17511,7 @@ tl: { # no indentation }; "pst-diffraction" = { stripPrefix = 0; - md5.run = "e933da8b170cb5bc6676f2b6432d4121"; + md5.run = "4a13911a4b8f1841324c1670f9d05da6"; md5.doc = "5b18317b280ebcea253e59c2bfe047d7"; md5.source = "2ad5b79d3f85358263e39fb271afbe07"; hasRunfiles = true; @@ -17519,7 +17519,7 @@ tl: { # no indentation }; "pst-electricfield" = { stripPrefix = 0; - md5.run = "245ffd2fe7a536a7f84a88e4cf423131"; + md5.run = "f8e7e91afe8ed96808bf4b4ba2705c6e"; md5.doc = "170f6a95a877ce3056c11c15c5c9324f"; md5.source = "781f120167d264ee8d7a06e2bf71e1a3"; hasRunfiles = true; @@ -17527,7 +17527,7 @@ tl: { # no indentation }; "pst-eps" = { stripPrefix = 0; - md5.run = "9f507d1160e4ae4c62e11b2c745bbac4"; + md5.run = "93cabd5e6158e2d6563f8f63e1daee4f"; md5.doc = "70ab45eaba5f9229484746cbd77d52e4"; md5.source = "03db9ec1d34e794881c1cd5c0f36bbf9"; hasRunfiles = true; @@ -17535,7 +17535,7 @@ tl: { # no indentation }; "pst-eucl" = { stripPrefix = 0; - md5.run = "382605a16f9d253e0470ab0359bf17e9"; + md5.run = "51403effe1138e2a83d0016c43d3352d"; md5.doc = "4456328c920a71808373c7547b3dd030"; hasRunfiles = true; version = "1.51"; @@ -17548,14 +17548,14 @@ tl: { # no indentation }; "pst-exa" = { stripPrefix = 0; - md5.run = "5d353c34557a4c9ebb1368474261018b"; + md5.run = "0ee7991bf3702527f95a4beba95df4e8"; md5.doc = "efcb93f1342a9155d7769ab29d489453"; hasRunfiles = true; version = "0.05"; }; "pst-fill" = { stripPrefix = 0; - md5.run = "e2ba4f1a3fa30746896e1465b8e50042"; + md5.run = "12d052025de810d79d32ee2ab1deca28"; md5.doc = "7f99356b6da24347735517f5ab7aea83"; md5.source = "54489f2f2fa0e8086af7b253d374e277"; hasRunfiles = true; @@ -17563,7 +17563,7 @@ tl: { # no indentation }; "pst-fit" = { stripPrefix = 0; - md5.run = "d12471e324976aac8fe53a5b35b0abde"; + md5.run = "a7d3598eb7a16187f4030ac8ac07fedf"; md5.doc = "c65e97631dafa0ce6018fd3d853731d5"; md5.source = "5332bbb86936dfdfda85740f3a95434c"; hasRunfiles = true; @@ -17571,7 +17571,7 @@ tl: { # no indentation }; "pst-fr3d" = { stripPrefix = 0; - md5.run = "83bfe24b82495a7478d6b6aeb1aa6fdb"; + md5.run = "2f7eade3e726f1b49e83d963a3978aef"; md5.doc = "afc832d9ccb48fb48bddb038b8d9824c"; md5.source = "ea0c0881ffd985a13058da4dece267b6"; hasRunfiles = true; @@ -17579,14 +17579,14 @@ tl: { # no indentation }; "pst-fractal" = { stripPrefix = 0; - md5.run = "1271480eb22a55720fdfdd8b28bee718"; + md5.run = "70a8b46ae0ae564f490dbbe69d97adf6"; md5.doc = "46f2d5a169a4ee0068a79e28484c6eb2"; hasRunfiles = true; version = "0.06"; }; "pst-fun" = { stripPrefix = 0; - md5.run = "9808aebc72cb23dacf3eb680b2ad6571"; + md5.run = "9f687fe3039fb1d37617deb61cdefbb2"; md5.doc = "6e6d7555bba3bd2706fb6a78b9b512c5"; md5.source = "c56a3b7042a3ec1d22d6028c7e45caa8"; hasRunfiles = true; @@ -17594,34 +17594,34 @@ tl: { # no indentation }; "pst-func" = { stripPrefix = 0; - md5.run = "a6e1648d0c2a8f8ba8b4c40850e3db7c"; + md5.run = "e19fb151367a401d22037f31576e22e2"; md5.doc = "abe003c902bc22df7f05602e1618e803"; hasRunfiles = true; version = "0.81"; }; "pst-gantt" = { stripPrefix = 0; - md5.run = "b0beec616ac1dd1a028ba75a56f8116b"; + md5.run = "2d56ed416a0da900d7c5ddcaf9ea4400"; md5.doc = "aac07bca8ede4451b04d349b56296f11"; hasRunfiles = true; version = "0.22a"; }; "pst-geo" = { stripPrefix = 0; - md5.run = "44700a985645c6ea83bf0a4187ca5a02"; + md5.run = "86a6302855984140e0c7754d7cbd9fdd"; md5.doc = "ed8aff5c1a863ea497b71bc72ca89894"; hasRunfiles = true; version = "2.03"; }; "pst-ghsb" = { stripPrefix = 0; - md5.run = "386f5ee0347c3dc52ed034d6a92061b9"; + md5.run = "6fce031d93603cf26154ae6a512b5af8"; md5.doc = "cb7cfe1a6581692f676c41793481f435"; hasRunfiles = true; }; "pst-gr3d" = { stripPrefix = 0; - md5.run = "fc097aaf7e61656ac7f01c91d8387dfe"; + md5.run = "2280b0cf0a41e746b56fac0766aa68db"; md5.doc = "bb408a1256a282645e50b8da7da4a195"; md5.source = "c49448fb755feab0b37371d0e37bd8ad"; hasRunfiles = true; @@ -17629,28 +17629,28 @@ tl: { # no indentation }; "pst-grad" = { stripPrefix = 0; - md5.run = "3b556f006bac11dc5b231ff530f2f419"; + md5.run = "aa08b698abacd4ad43f3a151fd1d22be"; md5.doc = "5812568f638332e224336f9125cb25dd"; hasRunfiles = true; version = "1.06"; }; "pst-graphicx" = { stripPrefix = 0; - md5.run = "dc1ee60efb9d8843896f18b4934afddb"; + md5.run = "6e627210e12292cabd0205d271c80ab3"; md5.doc = "49570961728c8a4a70d41c9db9bd7291"; hasRunfiles = true; version = "0.02"; }; "pst-infixplot" = { stripPrefix = 0; - md5.run = "bd10de88454f35f67db8080c0aa61024"; + md5.run = "4523fe25733038e9ca589b754d909e65"; md5.doc = "47e0dea5b95b9704147e43dbbf236c21"; hasRunfiles = true; version = "0.11"; }; "pst-intersect" = { stripPrefix = 0; - md5.run = "5bbd623250519bec1ec38e29c987fc30"; + md5.run = "6ad2870e07b542044d503cfef4dd89e1"; md5.doc = "51695106fb8ff989cf7c3c46fea596c5"; md5.source = "82404e476a2ec3ac71f593b8d0291414"; hasRunfiles = true; @@ -17658,35 +17658,35 @@ tl: { # no indentation }; "pst-jtree" = { stripPrefix = 0; - md5.run = "05922edc1540caa2e650cde1f583117e"; + md5.run = "ae72237a0fb4000cf7419a0084c8f52b"; md5.doc = "09892add3c67a367cc73cfd4b2489cfc"; hasRunfiles = true; version = "2.6"; }; "pst-knot" = { stripPrefix = 0; - md5.run = "0e55019373b7b97e6773608fe4c3d7ea"; + md5.run = "aafb05de6b8e205b4ed6f389e016be34"; md5.doc = "5f8eb4e0e3334ff84b94b470a47e2f5a"; hasRunfiles = true; version = "0.2"; }; "pst-labo" = { stripPrefix = 0; - md5.run = "577fa280b0782d44e634463bfb9a54ef"; + md5.run = "10d9d412459cec6802adc43e5985c290"; md5.doc = "52381f37992538a4fd129a78bf1f9d57"; hasRunfiles = true; version = "2.03"; }; "pst-layout" = { stripPrefix = 0; - md5.run = "aca20d4b29c7e963e156c4c2d5adeb14"; + md5.run = "8e7d0316f34c7edadbeb36b3a78cb722"; md5.doc = "81d2c2b38bf8709faa9f2daee99d85e8"; hasRunfiles = true; version = ".95"; }; "pst-lens" = { stripPrefix = 0; - md5.run = "240ce91ac60b9d37ad24a62e0d27b5c5"; + md5.run = "433e871d4b1eff4c25ba93060386717b"; md5.doc = "78136acc9e69faac0b53594caeb16022"; md5.source = "410384863cd179fdf3171806f7a09229"; hasRunfiles = true; @@ -17694,7 +17694,7 @@ tl: { # no indentation }; "pst-light3d" = { stripPrefix = 0; - md5.run = "b47b0f9ecfa63e238ad1e6f04831ffaf"; + md5.run = "e8574991553390e5c452028c7a92c0ae"; md5.doc = "f441e55d2e3b3d83b034c9e481c2071c"; md5.source = "56b75eea2b2dc476aa0e8c0bcb3d6155"; hasRunfiles = true; @@ -17702,7 +17702,7 @@ tl: { # no indentation }; "pst-magneticfield" = { stripPrefix = 0; - md5.run = "d4ce85d81497c3bb68fb0ae2d1e0018c"; + md5.run = "ece45a0753ae5e567372156d256e092a"; md5.doc = "7952cac07b2a47340cebe22d8eee5692"; md5.source = "0473c4ec8964b3d4e8e017d341d525ed"; hasRunfiles = true; @@ -17710,28 +17710,28 @@ tl: { # no indentation }; "pst-math" = { stripPrefix = 0; - md5.run = "b9be4fd6b8f06550eba93e2d8ec5e9aa"; + md5.run = "f93c43da96f451425523df72e7d5214d"; md5.doc = "83280730c2b08ce583aac712cd5eaeb7"; hasRunfiles = true; version = "0.63"; }; "pst-mirror" = { stripPrefix = 0; - md5.run = "6f4a6cad1f1d4cb30b94040d1b4ba230"; + md5.run = "f580f49bf0ebe4e8cd2a80fa6ec57ebb"; md5.doc = "5d3d0f0d74f3be256f307a76e61e18a2"; hasRunfiles = true; version = "1.01"; }; "pst-node" = { stripPrefix = 0; - md5.run = "d34545fe85457edc3701a692a8028b63"; + md5.run = "87ae0b61eac87c0a05d96aba26a67c6e"; md5.doc = "abe2dd8f40bdf3b1825beb97ec353a5f"; hasRunfiles = true; version = "1.35"; }; "pst-ob3d" = { stripPrefix = 0; - md5.run = "112d1dca4e1c923a4d155b7a7bdea977"; + md5.run = "7c9ba0bce982bcf205e0067e1e4dadf0"; md5.doc = "6dca7a034ebd5d24716a0ab535cf042d"; md5.source = "11dcfc5f8673ccece06617105021fdec"; hasRunfiles = true; @@ -17739,14 +17739,14 @@ tl: { # no indentation }; "pst-ode" = { stripPrefix = 0; - md5.run = "69fc9942fc377c9cc0fef9ad5b4e0a77"; + md5.run = "a817220105cfc4ba91679fa5d55f0479"; md5.doc = "fdb060f3b80e9021b2639069c7f505e5"; hasRunfiles = true; version = "0.7"; }; "pst-optexp" = { stripPrefix = 0; - md5.run = "8b818bcd09ee44cd3a652192e5f47846"; + md5.run = "2afeebd9699e97431577c9d38dbbc1b1"; md5.doc = "909f01c387af20a2522641d6d2b03c9d"; md5.source = "e8870f5c755214022032db77bfdf840a"; hasRunfiles = true; @@ -17754,7 +17754,7 @@ tl: { # no indentation }; "pst-optic" = { stripPrefix = 0; - md5.run = "4904efdb19869a9d1034ee6a0b5353ea"; + md5.run = "b25ed46aac2c14fd13286b9c41f66a56"; md5.doc = "493b2d027b245f68af253faadf2cb719"; md5.source = "6b4b7ce17ba7adeb1972522a9f9789be"; hasRunfiles = true; @@ -17762,28 +17762,28 @@ tl: { # no indentation }; "pst-osci" = { stripPrefix = 0; - md5.run = "4f16563d08fa45bf4dcf91cefe0d832b"; + md5.run = "0aaedf42eed60cf425748bfb6f6a0dd0"; md5.doc = "7729c2ae0f7552cd49f49b5b2be473e0"; hasRunfiles = true; version = "2.82"; }; "pst-ovl" = { stripPrefix = 0; - md5.run = "127a49f4ecfaf321058eb0905d320257"; + md5.run = "f05f970727c595b4c7def8b805bb0309"; md5.doc = "3d1ca773e9e3c4b6038b4a653be4af91"; hasRunfiles = true; version = "0.06"; }; "pst-pad" = { stripPrefix = 0; - md5.run = "07c806eed67143a298815a5d8c1e7719"; + md5.run = "a9ce3479a00fd6a70b3ddd435ce359ae"; md5.doc = "96f1c4d5e77a6708494d1c0a2d9c975d"; md5.source = "c651c0ae5d389be55d05a3103bcbc228"; hasRunfiles = true; version = "0.3b"; }; "pst-pdf" = { - md5.run = "13f891f82d07d67dc2b3c0c7f3a2667b"; + md5.run = "d65ab23b8f3ca1ee19d7e86bb875d303"; md5.doc = "e96ec03e57f4caa56b7019defde3fac3"; md5.source = "a759a1135e5796b44cd6c9423856d7f3"; hasRunfiles = true; @@ -17791,7 +17791,7 @@ tl: { # no indentation }; "pst-pdgr" = { stripPrefix = 0; - md5.run = "9e71b6fd036d2225bcb5da541bc0540c"; + md5.run = "ad61e8e23436206683937762091e6ab5"; md5.doc = "60098413b91d17c09291868744e51a98"; md5.source = "37fd694635abd84b2dd9c2e77b4fbc34"; hasRunfiles = true; @@ -17799,14 +17799,14 @@ tl: { # no indentation }; "pst-perspective" = { stripPrefix = 0; - md5.run = "0cacbefd5e6b391deedb02d6b5f88e75"; + md5.run = "d8651b2b70e7245ccaa50954f61d2948"; md5.doc = "b6a966132a216b24530c5c4a36914bd5"; hasRunfiles = true; version = "1.04"; }; "pst-platon" = { stripPrefix = 0; - md5.run = "27cfc02b79396925ffe67bc819c99d8a"; + md5.run = "a3a1f703a35943df7a9eec78ec197582"; md5.doc = "8fef936c142768d75b4db265de2f6083"; md5.source = "b552a3cb183b0a6cd3a07a8a17cee5bd"; hasRunfiles = true; @@ -17814,21 +17814,21 @@ tl: { # no indentation }; "pst-plot" = { stripPrefix = 0; - md5.run = "e94811af0d82a8b3c41a499ca16b62ee"; + md5.run = "e6828ce687ffd68a81d1f59a9dcbecc3"; md5.doc = "7e0e16938833189dbd32675591b35f1f"; hasRunfiles = true; version = "1.70"; }; "pst-poly" = { stripPrefix = 0; - md5.run = "524e82578460573f317f0ab9e548ab46"; + md5.run = "590db54e5c0053918d6bd0c68c814c1e"; md5.doc = "b40e06571163e8d3cffa30a993f34eb8"; hasRunfiles = true; version = "1.63"; }; "pst-pulley" = { stripPrefix = 0; - md5.run = "2ae115899f6b8bc6bdf1d732ab3bedbc"; + md5.run = "b2b5a593c9534748c443c5243c5bedfb"; md5.doc = "2b1fa8681dcd992236418d1ea8d05b4f"; md5.source = "0a6bd01375bfa75d96c6fe5d1d9e49f7"; hasRunfiles = true; @@ -17836,13 +17836,13 @@ tl: { # no indentation }; "pst-qtree" = { stripPrefix = 0; - md5.run = "16fec4e6b74957b58b28cefb7d0b714b"; + md5.run = "7e5e02530fcae0df1caeac8792ab93d3"; md5.doc = "78c80534392c46fc8d5d9b4316e7de85"; hasRunfiles = true; }; "pst-rubans" = { stripPrefix = 0; - md5.run = "fe0170a8a677acaa8695b4255c490ca4"; + md5.run = "c3016f7203843d438540c0ba9f44ae05"; md5.doc = "40c00344b86b995670891408c9c7ff96"; md5.source = "ff4ae8d57051266e0eaf878254c7b439"; hasRunfiles = true; @@ -17850,14 +17850,14 @@ tl: { # no indentation }; "pst-sigsys" = { stripPrefix = 0; - md5.run = "e8d504069fb9ddcf467b513c60696c68"; + md5.run = "f19d60f3369264ee82727b0200c43821"; md5.doc = "6289963de9348ca25c98fce7c1054994"; hasRunfiles = true; version = "1.4"; }; "pst-slpe" = { stripPrefix = 0; - md5.run = "324619caf3828571e6a7b42dcabd8dca"; + md5.run = "98047f962c79bb523571dccee128bb3c"; md5.doc = "b13f8b64862dbc05f7c7ac538d2d1709"; md5.source = "16ef5f8c8782790f6a4518c5ef5e259d"; hasRunfiles = true; @@ -17865,7 +17865,7 @@ tl: { # no indentation }; "pst-solarsystem" = { stripPrefix = 0; - md5.run = "39be05b6062ed1bf5a4559a98749160e"; + md5.run = "7f0476e714b3166a600bbb447684ea8b"; md5.doc = "cef564bb71957c271fb4e55719198856"; md5.source = "c9ac0bf0ac60c895a35fb985b4cecdcf"; hasRunfiles = true; @@ -17873,14 +17873,14 @@ tl: { # no indentation }; "pst-solides3d" = { stripPrefix = 0; - md5.run = "836b7e72e070c906c3ff8bc877eb8287"; + md5.run = "1ff07166da67c5125921439950a3d8a4"; md5.doc = "7da1f3876223d46d0c472da38a7d9397"; hasRunfiles = true; version = "4.28"; }; "pst-soroban" = { stripPrefix = 0; - md5.run = "ffd88f3734c4f9e0ab8a3b098b2a8c6a"; + md5.run = "e59620980939b15c5b3504438cf4e120"; md5.doc = "153dc9c7571c8d8b02a04a3e942650e2"; md5.source = "512148efe7d83b6fa00e3c270928195c"; hasRunfiles = true; @@ -17888,21 +17888,21 @@ tl: { # no indentation }; "pst-spectra" = { stripPrefix = 0; - md5.run = "95aeaeda6efc20bb4b0bdf080e1447c4"; + md5.run = "aadfb38cf04e1e90e0399bf45b4e70b2"; md5.doc = "29dc201dec4b9ad4bf218468c5ddff4c"; hasRunfiles = true; version = "0.91"; }; "pst-spirograph" = { stripPrefix = 0; - md5.run = "18a221fea33b361d4ef5fc98d42497b3"; + md5.run = "32b63eeebab44d50775cb4aa8888d9f5"; md5.doc = "3809bb020f3bf2d6f690f66d62e10e1b"; hasRunfiles = true; version = "0.41"; }; "pst-stru" = { stripPrefix = 0; - md5.run = "9639bd996130168dcb83a078051185f0"; + md5.run = "0a5eba24480483f6d091a553b192528c"; md5.doc = "7bdcf93dec1efbb070c33a7b123253cc"; hasRunfiles = true; version = "0.12"; @@ -17915,7 +17915,7 @@ tl: { # no indentation }; "pst-text" = { stripPrefix = 0; - md5.run = "fb9cecf3adca601d1e0d6b53cdc03f8a"; + md5.run = "df55959c53a6c0594821e9de40cd510e"; md5.doc = "536774ef7a4fd0523737175334eaa7ca"; md5.source = "185fea7bbe07e89efbce36c61b310170"; hasRunfiles = true; @@ -17923,7 +17923,7 @@ tl: { # no indentation }; "pst-thick" = { stripPrefix = 0; - md5.run = "7b53d9b8ad080f980f4c9e842d11874b"; + md5.run = "aa41f80f7c8aaa53bd47de6c9e3a412c"; md5.doc = "22ba19540b5b0c6a5dcc84ff684d4fd7"; md5.source = "47bc5c32ceb362dd1b09b52514cac517"; hasRunfiles = true; @@ -17931,14 +17931,14 @@ tl: { # no indentation }; "pst-tools" = { stripPrefix = 0; - md5.run = "d5786e8591e3b73055f1b2fd66c43114"; + md5.run = "7ef0e4fe063529c18ca1d4d528181589"; md5.doc = "34476a970dd5e45481801a13e0dc769b"; hasRunfiles = true; version = "0.05"; }; "pst-tree" = { stripPrefix = 0; - md5.run = "39535f873d0d43e02d2281368cb81383"; + md5.run = "8431a7f45de75aea79f5f15929df93d5"; md5.doc = "98276930f3713655ef209270e0b037d4"; md5.source = "8669c96153481a3da4e9a1b945113a01"; hasRunfiles = true; @@ -17946,7 +17946,7 @@ tl: { # no indentation }; "pst-tvz" = { stripPrefix = 0; - md5.run = "6e0eb361b706da0c68e66a1c7d4fb3c2"; + md5.run = "1184b5eaec4b963ba12d79fba81aa3c9"; md5.doc = "9ced326bd2c5216e349fd6cdff6cd39f"; md5.source = "df645600af38aa0eb2c2219c08441703"; hasRunfiles = true; @@ -17955,7 +17955,7 @@ tl: { # no indentation "pst-uml" = { stripPrefix = 0; deps."multido" = tl."multido"; - md5.run = "d1583565a6c6976ae6d7db6c44ea23c2"; + md5.run = "63f79225dc975830db5b3d0b964d17f5"; md5.doc = "bad81d1d973fd6c614a2bf8c694f85ca"; md5.source = "e0891f31bf303acb2f3e7677104cefb3"; hasRunfiles = true; @@ -17963,35 +17963,35 @@ tl: { # no indentation }; "pst-vectorian" = { stripPrefix = 0; - md5.run = "0d063a72ba8b57d40a5a73aeae9f6e5b"; + md5.run = "5110d3127acee731a07a3c93da6ef09c"; md5.doc = "32686ecdd50cd8d05b67d357912dae02"; hasRunfiles = true; version = "0.4"; }; "pst-vowel" = { stripPrefix = 0; - md5.run = "b41c439a41f9a67fb3ee83c295810567"; + md5.run = "c78a21842adff61528c1920e0fbbc2ec"; md5.doc = "deb5980b4b19ee6f8b6810e2e14113c5"; hasRunfiles = true; version = "1.0"; }; "pst-vue3d" = { stripPrefix = 0; - md5.run = "26b153fec0ccda0ba2f95e697688f8e5"; + md5.run = "7e4855f3c68c834527a9ac5d9347ef34"; md5.doc = "0d5fa76404e7e5c18c1e40e7c5314e9d"; md5.source = "599991809dee9590383a1576ae5fe370"; hasRunfiles = true; version = "1.24"; }; "pst2pdf" = { - md5.run = "ebd93cdbc90d9000faf628941d8610c9"; + md5.run = "eea9bf8d738c1c7f17a6f650d86a82e1"; md5.doc = "4e9a218258f2497419e7562fbcbe0eb4"; hasRunfiles = true; version = "0.16"; }; "pstool" = { stripPrefix = 0; - md5.run = "2890cec52df29587228ebb1cd63feccd"; + md5.run = "302910df87c7f76e1b4a21d9109c3b0a"; md5.doc = "9468b8ac1fba18350fbd2bc3222e4eba"; md5.source = "6a1093eefd8261b718c52b178a08eb6d"; hasRunfiles = true; @@ -18005,14 +18005,14 @@ tl: { # no indentation }; "pstricks" = { stripPrefix = 0; - md5.run = "b849ff662127ea691decf67e015f4a77"; + md5.run = "95a8e4ae42b3d19174fbfa806f891141"; md5.doc = "2deb855e9377bda5e5a9846709de5fe2"; hasRunfiles = true; version = "2.60"; }; "pstricks-add" = { stripPrefix = 0; - md5.run = "30405824bf5c8d675998699c4ba11185"; + md5.run = "07c7c3c6321bc586e8a21d76992802ee"; md5.doc = "086ded5554d850e4694936240f6aea5e"; hasRunfiles = true; version = "3.77"; @@ -18035,7 +18035,7 @@ tl: { # no indentation }; "psu-thesis" = { stripPrefix = 0; - md5.run = "6c55e018268be5444c326680c95aab3f"; + md5.run = "effa7334fd5f72087d182a5803db5050"; md5.doc = "c92bd588d9d8e23bc846487d1a41b0fe"; hasRunfiles = true; version = "1.1"; @@ -18054,13 +18054,13 @@ tl: { # no indentation deps."ipaex" = tl."ipaex"; deps."japanese" = tl."japanese"; deps."japanese-otf" = tl."japanese-otf"; - md5.run = "7fd9f5f866af652fbdb6395bc1530e51"; + md5.run = "dd8c1149ff9fac73844790aef91fc74a"; md5.doc = "6bc9c4646dc097c93bbc9f6b10a3cc48"; md5.source = "a3f8aa21ca9ba09e1703ae35f9c5f3ae"; hasRunfiles = true; }; "ptex2pdf" = { - md5.run = "55352cb2ba945a3a7ca4f180d6804fa8"; + md5.run = "93c11713532938e4a09cb3b1b55884e4"; md5.doc = "6cf4e6136f12c63f1872dd582651f2ee"; hasRunfiles = true; version = "0.6"; @@ -18074,27 +18074,27 @@ tl: { # no indentation }; "ptptex" = { stripPrefix = 0; - md5.run = "9bf9ab93de396284f030d216e3969297"; + md5.run = "cf26ebd6f4913e5596e744649fc26a51"; md5.doc = "ec421efce41aa1e0171519bff8e247e8"; hasRunfiles = true; version = "0.91"; }; "punk" = { stripPrefix = 0; - md5.run = "ca6e98a8af565c5346f4575440e23b99"; + md5.run = "37614127ad864ff2af7805ce29987f78"; md5.doc = "3a650e9ade3d51a8b73a83d6ae1e3cce"; hasRunfiles = true; }; "punk-latex" = { stripPrefix = 0; - md5.run = "cf5b80492be1e83ac61bd10293389739"; + md5.run = "b8fbb00e693c62f48ff994eb45427119"; md5.doc = "42ece48644ec03255e48146881a5b633"; hasRunfiles = true; version = "1.1"; }; "punknova" = { stripPrefix = 0; - md5.run = "08584ac753d4393cacbe735a7febfd96"; + md5.run = "a152abaa223bee66fb028bb2522aff28"; md5.doc = "c572640cef98a0f576df671f102650d9"; hasRunfiles = true; version = "1.003"; @@ -18107,14 +18107,14 @@ tl: { # no indentation }; "pxbase" = { stripPrefix = 0; - md5.run = "ad2ace61927cae705ac405086d4f2f39"; + md5.run = "d92a9cbeceb03f45d3a4341def3e5e3c"; md5.doc = "27c606fa9cfba9b07eb89cf7411e7cba"; hasRunfiles = true; version = "0.5"; }; "pxchfon" = { stripPrefix = 0; - md5.run = "10b993ba1246b76e34ad23abc4ce72a6"; + md5.run = "a971f013078d0171ee3663c1cc5c58b8"; md5.doc = "120f3a852ffbfe2386869e4b36f33d8e"; md5.source = "b3d003ace1e86812631e411196ebe33d"; hasRunfiles = true; @@ -18122,7 +18122,7 @@ tl: { # no indentation }; "pxcjkcat" = { stripPrefix = 0; - md5.run = "8f2dbc5a6d06648094f1d55c2109caca"; + md5.run = "c38a7360f02b94dc195a330f741f97ca"; md5.doc = "7f9aec5421a1556e7f14320a2f130f37"; hasRunfiles = true; version = "1.0"; @@ -18135,7 +18135,7 @@ tl: { # no indentation }; "pxgreeks" = { stripPrefix = 0; - md5.run = "88d4298afe1d14f8e7fa928fe3e3cdc6"; + md5.run = "f7aa9f4a269eb7aeab4a759edad88eb1"; md5.doc = "685e60ca5c1cec3367b5966871af8fff"; md5.source = "552d463c32fac95ce2f9140840a96d65"; hasRunfiles = true; @@ -18143,41 +18143,41 @@ tl: { # no indentation }; "pxjahyper" = { stripPrefix = 0; - md5.run = "338a682894a5eeff2b893b0d1b4296b7"; + md5.run = "c817c78436c73a48933984a44741d472"; md5.doc = "c06fec6676e851005188e2901db7ea6e"; hasRunfiles = true; version = "0.3"; }; "pxpgfmark" = { stripPrefix = 0; - md5.run = "60dd0ab3238533932f99abefcbaa3caf"; + md5.run = "41450a51b43adfb82caeca962f230188"; md5.doc = "6d599e400dfab94f5780fe8c96f69516"; hasRunfiles = true; version = "0.2"; }; "pxrubrica" = { stripPrefix = 0; - md5.run = "989b146c473f94180dca2c67c85c5ae3"; + md5.run = "baa688ffe73bd7d932bd90eee031dbe7"; md5.doc = "b17388df58ba21a1f641785f463073b4"; md5.source = "48ad82892ebed2318b1bc6159caaa8a2"; hasRunfiles = true; }; "pxtxalfa" = { stripPrefix = 0; - md5.run = "b0abd47827d9d14c3e623a2e54b53723"; + md5.run = "fd090ff96c49304dfbfcf83eec111f31"; md5.doc = "e616355fd5854fcb21528a7c5d54a8a3"; hasRunfiles = true; version = "1"; }; "pygmentex" = { - md5.run = "807c3d0fb267c909aae4480d17d92bc9"; + md5.run = "9d269819bd391726a0c9b71aa5411e77"; md5.doc = "f1b25f315908507dbddc491448e3ccda"; hasRunfiles = true; version = "0.8"; }; "python" = { stripPrefix = 0; - md5.run = "8c9574ed1930f1aaad5f19110174657d"; + md5.run = "c642036e1c3d497d6e4200bd52caac47"; md5.doc = "17b11e87b593a0c6fe0d8d93a33257a6"; hasRunfiles = true; version = "0.21"; @@ -18191,14 +18191,14 @@ tl: { # no indentation }; "qcircuit" = { stripPrefix = 0; - md5.run = "4ac932dd78449ca2d5cda709ecc6533a"; + md5.run = "a1cbb0034ecf22d9db3e9d4b0bfa7a42"; md5.doc = "3829b06ef06ace2350e0b8c6cff8a2e4"; hasRunfiles = true; version = "2.0"; }; "qcm" = { stripPrefix = 0; - md5.run = "13736ccd938ad9002b08706b86e9e11a"; + md5.run = "1261a4f29456c85ad717fb0faf7b3362"; md5.doc = "6d7e06069ba8cfb81899c0b4d4a1ba33"; md5.source = "3cc03b41ac9cd4f850d410169f68be58"; hasRunfiles = true; @@ -18206,7 +18206,7 @@ tl: { # no indentation }; "qobitree" = { stripPrefix = 0; - md5.run = "07f591d08355541519c50d85ecea3328"; + md5.run = "feea5d5915cd230daa42c7e1f41eaa4a"; md5.doc = "013de327efeaf0a2c93ed995bfebd8cc"; hasRunfiles = true; }; @@ -18218,7 +18218,7 @@ tl: { # no indentation }; "qrcode" = { stripPrefix = 0; - md5.run = "c5cae680b1b209a063db20442105bca5"; + md5.run = "404e11a06e6ba8fd7df6e1b69fe140b5"; md5.doc = "3e13102edf7312cacb4353cf81a1095a"; md5.source = "ccb6c9d372ff5419c62a2f4bb1efbede"; hasRunfiles = true; @@ -18226,34 +18226,34 @@ tl: { # no indentation }; "qstest" = { stripPrefix = 0; - md5.run = "67e44dd248b6061fe8b7826e324541a7"; + md5.run = "e9d49cfb44ce5c338540d4dee657c51c"; md5.doc = "103ffbbb7d3911a90941b9588a43e760"; md5.source = "b0c0dbef69740ad448e3b9c7b1070a04"; hasRunfiles = true; }; "qsymbols" = { stripPrefix = 0; - md5.run = "bbb45ec4fcfc372860f356454efa5c47"; + md5.run = "2f5210754e76b028f91fa7818974a8cb"; md5.doc = "55c24990765a7b414d9f3f3041bb0771"; md5.source = "591bb23a6f95c19f868d2d09b8cf01dd"; hasRunfiles = true; }; "qtree" = { stripPrefix = 0; - md5.run = "e0ea5820c28835529d7471b8c7f30657"; + md5.run = "16cfdb9858d43d1cc10d6699ea57d3d7"; md5.doc = "89e9dbe34ebf63f895818778670f2d8b"; hasRunfiles = true; version = "3.1b"; }; "quattrocento" = { stripPrefix = 0; - md5.run = "e64a029ef32cd87c2a2ec7ee4c5290b8"; + md5.run = "9b760843a55d4e9061eb9b3d7880af9f"; md5.doc = "db8dc10ad258b47923f1c7d3def22409"; hasRunfiles = true; }; "quotchap" = { stripPrefix = 0; - md5.run = "0f5a6c10a34b15c0f8ec80fa100ae24f"; + md5.run = "74eb3326943becf03afe5d26dc93e7d2"; md5.doc = "5b53e3e0b422f1c43388418f85d85758"; md5.source = "84bb41f2e5d0dc7d09aa92a3892a76bf"; hasRunfiles = true; @@ -18261,7 +18261,7 @@ tl: { # no indentation }; "quoting" = { stripPrefix = 0; - md5.run = "76c31cbcfbcb90a87a9b98255d7be245"; + md5.run = "a10dede87c1117233bbf8538a3140f4e"; md5.doc = "2810526fa5a17888119b9fa67a30b45b"; md5.source = "a5e06d546bf5c6f7ee46e012cb8e855e"; hasRunfiles = true; @@ -18269,7 +18269,7 @@ tl: { # no indentation }; "quotmark" = { stripPrefix = 0; - md5.run = "5bd6381841ac17b396c0bc435ffd35c1"; + md5.run = "6a89a5ff6ee855c241e8ec60ae64446a"; md5.doc = "46b376f2f5cb0553014717ddf5e59a81"; md5.source = "72f0fe12817dc818fb6ad8f3d33c4732"; hasRunfiles = true; @@ -18284,14 +18284,14 @@ tl: { # no indentation }; "raleway" = { stripPrefix = 0; - md5.run = "32d681b9e9b071a081778f1ea48848c2"; + md5.run = "d08b491196c4336e8e2bb711f04e32a8"; md5.doc = "bf1e96ad7475aae56809e8700f962fd9"; hasRunfiles = true; version = "1.2"; }; "ran_toks" = { stripPrefix = 0; - md5.run = "0f2437ac85c092b5d9688764b57ea2fc"; + md5.run = "44f8da99e7a4eba7d64987c3374deb99"; md5.doc = "3f4a4076249e9aa1bdb59aac929b5b43"; md5.source = "9e9882e4844fbb1da90d11a32a93f35b"; hasRunfiles = true; @@ -18299,7 +18299,7 @@ tl: { # no indentation }; "randbild" = { stripPrefix = 0; - md5.run = "ea4d5e1d7af933b2a65c98ae05e0f481"; + md5.run = "dda1d74f74a95f2492cdfd9f9ae0e472"; md5.doc = "cd60719626b2c646a66026a3eea86fea"; md5.source = "2188cbbc1f79f2ebf41bf4a067427c84"; hasRunfiles = true; @@ -18307,7 +18307,7 @@ tl: { # no indentation }; "randomwalk" = { stripPrefix = 0; - md5.run = "55299b132519a0cf6aa428e7961fdb08"; + md5.run = "94746941c85a3ea8089d7d785245b290"; md5.doc = "aeb845d4d71891207e3659ff16939e3f"; md5.source = "6a79642c5805af5aa649d6638fdffdd9"; hasRunfiles = true; @@ -18315,13 +18315,13 @@ tl: { # no indentation }; "randtext" = { stripPrefix = 0; - md5.run = "d866fe49b9be768ce1b6a23e3d89ad6c"; + md5.run = "47c58821905d291034a76fc6caad3b76"; md5.doc = "35e2955bc269c373ca3882aa8249cb82"; hasRunfiles = true; }; "rccol" = { stripPrefix = 0; - md5.run = "d8b5583acc3ca319795e80297fb6a7be"; + md5.run = "de204c0ef57fc2a8f136128e35499fff"; md5.doc = "9753ee0d939357b452a1863a12ccbf0e"; md5.source = "3be4d7a6d5cb25dea72656f4aa36ac97"; hasRunfiles = true; @@ -18336,7 +18336,7 @@ tl: { # no indentation }; "rcs-multi" = { stripPrefix = 0; - md5.run = "00967a90ae088ad580fd48c50efa0ad1"; + md5.run = "193d1ac49daf1cd213109c9b89472f7c"; md5.doc = "1183ae15c36360bf7dbffe9bee4f7da8"; md5.source = "102f6a1a3eb1a5f391905bf9b0f0a8a2"; hasRunfiles = true; @@ -18344,7 +18344,7 @@ tl: { # no indentation }; "rcsinfo" = { stripPrefix = 0; - md5.run = "f141e2c7ed979dca13da8c5cc07f149f"; + md5.run = "1d4c1592e7ee4d64bfd67d736a2419b1"; md5.doc = "d70a5c3d3e650b1eefa31085b7f23451"; md5.source = "364d8cfa034e4de0339a4a5cefa73bb1"; hasRunfiles = true; @@ -18352,14 +18352,14 @@ tl: { # no indentation }; "readarray" = { stripPrefix = 0; - md5.run = "c6ece8c72cb425c6ebc2760d7215873a"; + md5.run = "67ff4e4b436395281576028047cfea9a"; md5.doc = "31c1e98dea9ff8a3624454727a5c9e11"; hasRunfiles = true; version = "1.2"; }; "realboxes" = { stripPrefix = 0; - md5.run = "4da476e2ad0c7790c4f0a0486cc5115a"; + md5.run = "02d908d6f057710c14db77b63cc70b1b"; md5.doc = "e9f85e02ea1404d75a7d7d6e1fcfe87f"; md5.source = "aad4b4074926d589ae260fac83b840f8"; hasRunfiles = true; @@ -18382,14 +18382,14 @@ tl: { # no indentation }; "recipe" = { stripPrefix = 0; - md5.run = "f2b3485f691ca56b9a70a4497d44edcb"; + md5.run = "831f0627f85469d5977ca1adb5cd5e68"; md5.doc = "8538b629c793df22556159254feed2dc"; hasRunfiles = true; version = "0.9"; }; "recipecard" = { stripPrefix = 0; - md5.run = "dea7ff77cbd296bc3ad414e897bbac0c"; + md5.run = "fca0c6b09b5615f465a6eb231b12b2cc"; md5.doc = "24f1ae908a286786789a25b844479f5b"; md5.source = "b111a67c3d17b2ed7c3077d59515435a"; hasRunfiles = true; @@ -18397,33 +18397,33 @@ tl: { # no indentation }; "rectopma" = { stripPrefix = 0; - md5.run = "1df51e6d560fc6dbecf5a65238259e4c"; + md5.run = "8013c67862474c86537bba58a4093204"; md5.doc = "4a1bf9808c79eb0c9da517181e781bf6"; hasRunfiles = true; }; "recycle" = { stripPrefix = 0; - md5.run = "0ee3028127e59bc833f5b9cd9ddd33af"; + md5.run = "8692965ef94fde20e67883cb994bb48f"; md5.doc = "c42a2a2962e963edc15dea2745ef0c96"; hasRunfiles = true; }; "refcheck" = { stripPrefix = 0; - md5.run = "e50077d0c28848ba3a6b703cd42d8df5"; + md5.run = "8e89c3e733b229e244c561418d65a8d1"; md5.doc = "426e0615f964811c4e24b9ffaba1fd53"; hasRunfiles = true; version = "1.9.1"; }; "refenums" = { stripPrefix = 0; - md5.run = "4ae595816c349630a80b1730ab875a5c"; + md5.run = "23472a687b8e8702ea7715c802f111b8"; md5.doc = "45b259481332da30751fc62e3ddc470a"; hasRunfiles = true; version = "1.1.1"; }; "reflectgraphics" = { stripPrefix = 0; - md5.run = "26acf539f31c9ceb0be226c1ae49fa62"; + md5.run = "50a07596e4725e85209b3f23dfdc45e1"; md5.doc = "92919126872ba7f99a67a07b6c6aa632"; md5.source = "63ea7fb81944d434e2bb50dc396d687f"; hasRunfiles = true; @@ -18431,7 +18431,7 @@ tl: { # no indentation }; "refman" = { stripPrefix = 0; - md5.run = "d775faa4c7e4ef04c142701c9aa1afcd"; + md5.run = "24fcf3c661a9705f48b364117d3271c0"; md5.doc = "3a7fcf21dcc482745cbefe848465d50c"; md5.source = "6982ed09df7f46a1d36f951a0f072636"; hasRunfiles = true; @@ -18439,7 +18439,7 @@ tl: { # no indentation }; "refstyle" = { stripPrefix = 0; - md5.run = "f60c6b3bc857344763b054c611312893"; + md5.run = "b8427b41e7cf2991489c2bd8bc2f3798"; md5.doc = "1f0a0f2d02e4876a9c8768fb96fcb4f2"; md5.source = "b286e199de1459b3b636d5632d3af3dc"; hasRunfiles = true; @@ -18447,7 +18447,7 @@ tl: { # no indentation }; "regcount" = { stripPrefix = 0; - md5.run = "59ded1e8d3daddfb4496c2f707def0e2"; + md5.run = "fcba8da4c341ec3801a6e2029a05cbd4"; md5.doc = "9b08affdcb6584eddad1ab6ead627a6a"; md5.source = "98fa813182f0c7b5752a4798932b801c"; hasRunfiles = true; @@ -18455,7 +18455,7 @@ tl: { # no indentation }; "regexpatch" = { stripPrefix = 0; - md5.run = "dd1fc3b8e7007e3a7cb2c4e8b9cee925"; + md5.run = "b8b6a743046d8ffd3635087dd7baaa94"; md5.doc = "c743857fbdfda0c5935acafc6d158c77"; md5.source = "dd6397f4716a6f58075192f02791d15b"; hasRunfiles = true; @@ -18463,7 +18463,7 @@ tl: { # no indentation }; "register" = { stripPrefix = 0; - md5.run = "0b0fc82fa2a743733eed9419d89d3bd5"; + md5.run = "9372ebb824121ab9fa13343ce80b082d"; md5.doc = "10dc15880a3993f3aea1fc714bf253f4"; md5.source = "df5e5849d88091e560191fea2654d2cf"; hasRunfiles = true; @@ -18471,7 +18471,7 @@ tl: { # no indentation }; "regstats" = { stripPrefix = 0; - md5.run = "f86623afa973f4619b19dacff97227a2"; + md5.run = "8ccc9b823405fd22a16d3d02f7796319"; md5.doc = "6e6ac71dd508da9f0d69323aa0bab2aa"; md5.source = "2c0139c6f34339f43584e007fefd98b6"; hasRunfiles = true; @@ -18479,7 +18479,7 @@ tl: { # no indentation }; "relenc" = { stripPrefix = 0; - md5.run = "13328aabe8fb558735bceec82b30a477"; + md5.run = "eac5cae22c9364dd2fb74071a2a2af7c"; md5.doc = "489db21ea45db372d2eff2df6facc352"; md5.source = "a63344022d5093b7a744ba8ac7f79b18"; hasRunfiles = true; @@ -18493,14 +18493,14 @@ tl: { # no indentation }; "reotex" = { stripPrefix = 0; - md5.run = "891c56c54ef6f41e249cd3f1d8806bfb"; + md5.run = "7dd1c4fa59e18000c1c8595814f9a01a"; md5.doc = "35dab0a97341aec9652d2d98fbf52bf4"; hasRunfiles = true; version = "1.1"; }; "repeatindex" = { stripPrefix = 0; - md5.run = "43a98edde8cccd3c3732b392bcf8ffa3"; + md5.run = "973b46a26371add0e3f37dbe7145471f"; md5.doc = "c4f872cd53970cd8ac0ef2c394c9f70c"; hasRunfiles = true; version = "0.01"; @@ -18514,7 +18514,7 @@ tl: { # no indentation }; "repltext" = { stripPrefix = 0; - md5.run = "14332f171204a45586ad569f33c153b0"; + md5.run = "23ae2fbd907761a5ab6e042de5ff1919"; md5.doc = "8a53086bf8964ed1c6141ea90296e98c"; md5.source = "37ed4cbe11d02ba0abbb072442f3a90f"; hasRunfiles = true; @@ -18522,7 +18522,7 @@ tl: { # no indentation }; "resphilosophica" = { stripPrefix = 0; - md5.run = "d8de3bda1aa115d0fc36ff4c89e20fb4"; + md5.run = "ea1f371394a6aeb42e686dcfa1b00c75"; md5.doc = "ed5d85f25a8b15c8dab0dac2e0957380"; md5.source = "0e23264a723c0bc30f7e59afd0d5bf13"; hasRunfiles = true; @@ -18530,7 +18530,7 @@ tl: { # no indentation }; "resumecls" = { stripPrefix = 0; - md5.run = "565ee90e7631fa917a46f381cd4c6e95"; + md5.run = "2d7ac13fe2e50a49b5f7d9b5eb5897fa"; md5.doc = "b173c72003949c91a8425e315880657e"; md5.source = "2323f4eda2580e8c665d84855033061a"; hasRunfiles = true; @@ -18557,7 +18557,7 @@ tl: { # no indentation }; "revtex4" = { stripPrefix = 0; - md5.run = "01bd9122616122c5e9154f45c0ad2d2a"; + md5.run = "5ed78d44cbd2ce2d054851967491ab46"; md5.doc = "ec565374d0aadafb1b4fdb89c475151b"; md5.source = "3e2b160cc67ad3cbc267cf8223682d5e"; hasRunfiles = true; @@ -18571,7 +18571,7 @@ tl: { # no indentation }; "rjlparshap" = { stripPrefix = 0; - md5.run = "1c4180a5abbfcee64f7f67a4405ba517"; + md5.run = "8383fed5e1ded78de750fc614fc6c43f"; md5.doc = "746e4dc4303cf291b1865f99268fe17b"; md5.source = "7a91ab5c445afab9bdc894b2add47779"; hasRunfiles = true; @@ -18579,26 +18579,26 @@ tl: { # no indentation }; "rlepsf" = { stripPrefix = 0; - md5.run = "fa3f3eb48296646c1ac01da3d1f79e4b"; + md5.run = "fa0e8b286f09e9fd08a10bc377d6f2ff"; md5.doc = "f688af1edbdee0869a57bacad1984b4e"; hasRunfiles = true; }; "rmpage" = { stripPrefix = 0; - md5.run = "5b8b2644f695df1d83697bb6c4f188b6"; + md5.run = "2e1eb02262407b840b0bf455393571df"; md5.doc = "52906f6471c6206c695d9e185f618210"; hasRunfiles = true; version = "0.92"; }; "roboto" = { stripPrefix = 0; - md5.run = "5420f25ecc137cc13cae71d992e2a498"; + md5.run = "dbe9da97403ecbe1e7008f33fa5f4110"; md5.doc = "3e2f77e4c8a628a9cef33cca4c90301d"; hasRunfiles = true; }; "robustcommand" = { stripPrefix = 0; - md5.run = "c86d32dc1c61d0bebfcf6df849282bf2"; + md5.run = "15d54e3a3b11645ce65cd35f92ad942f"; md5.doc = "e9fc9f7e4a8a85635921345f02e8f565"; md5.source = "410156a2002189fcce2b6e6167c637a5"; hasRunfiles = true; @@ -18606,7 +18606,7 @@ tl: { # no indentation }; "robustindex" = { stripPrefix = 0; - md5.run = "4c87121f7a15472542fa1b1f0c40d8e1"; + md5.run = "a000812ab421eb3c1dbb723ad4cad909"; md5.doc = "6aeecf20f244479addf4715942fa71b5"; hasRunfiles = true; }; @@ -18618,7 +18618,7 @@ tl: { # no indentation }; "romanbar" = { stripPrefix = 0; - md5.run = "c1a232d01eda17df481447367d7e3f74"; + md5.run = "2880db2d9ba39c46d7a44f69b49aa974"; md5.doc = "94d6d01e293420bbc98519edaaeb77fb"; md5.source = "dbd9e55eeb40330233f96b1cf065bac1"; hasRunfiles = true; @@ -18626,7 +18626,7 @@ tl: { # no indentation }; "romanbarpagenumber" = { stripPrefix = 0; - md5.run = "721aa9f6c9d13841370bd57d4a499d9c"; + md5.run = "3f75d90b61cdb58f3ac86e0bd065a589"; md5.doc = "ed929fbfe7fefd3afea5244048b29f31"; md5.source = "2970058f65dc37ae0b834861c4a6f9a9"; hasRunfiles = true; @@ -18634,7 +18634,7 @@ tl: { # no indentation }; "romande" = { stripPrefix = 0; - md5.run = "22d6e13b9f493498130c42124c8cad13"; + md5.run = "d4954eeda28865840cb6575606b21c67"; md5.doc = "1bcc9beb2ed2e8f7c2e25e4fecb16ad9"; md5.source = "842c825a6bdf335fbc85735b4a7b9a05"; hasRunfiles = true; @@ -18642,13 +18642,13 @@ tl: { # no indentation }; "romanneg" = { stripPrefix = 0; - md5.run = "42822e0804eba7929733eae31a4e7a24"; + md5.run = "e0170f03dc813e50da61bfa4db6324af"; md5.doc = "cf56d51d491cd1459767489a8bcdeb53"; hasRunfiles = true; }; "romannum" = { stripPrefix = 0; - md5.run = "f6d110cdecdd7521e2cbfa3d42a48234"; + md5.run = "c58a633cb92cebc6da53621da4c9d1ea"; md5.doc = "d7b0da2fc50f41735ca0fe2528f70e7e"; md5.source = "cda8d439c06c84be9b565eee95239f4a"; hasRunfiles = true; @@ -18664,7 +18664,7 @@ tl: { # no indentation }; "rotfloat" = { stripPrefix = 0; - md5.run = "ccbd0dabb93eb820d7f6797ba986972f"; + md5.run = "1b908c6039082af6ebe839b3fac61277"; md5.doc = "9a19270ffbebe186ff3d3e7eee473183"; md5.source = "342eafd22590cc0d68d3cdbf50dcce51"; hasRunfiles = true; @@ -18672,21 +18672,21 @@ tl: { # no indentation }; "rotpages" = { stripPrefix = 0; - md5.run = "aa8bde9fb3141967ac6e578d5a9339df"; + md5.run = "8b36b4fd7d614f8223c8b0fea0d0153b"; md5.doc = "10af53f3d34e779df7aa71612797dba4"; hasRunfiles = true; version = "3.0"; }; "roundbox" = { stripPrefix = 0; - md5.run = "4a20a047abd507eeadc60665e591372e"; + md5.run = "812564f30ecb13cbb53bfcf1580b5b58"; md5.doc = "17df88e81ea90527b4d773d4e2e3e6c8"; hasRunfiles = true; version = "0.2"; }; "rrgtrees" = { stripPrefix = 0; - md5.run = "31ae17c4ae4aa91683b9a506abef41d5"; + md5.run = "1b6a5131a175b2cef6acd2068a708878"; md5.doc = "94c99d2aacc278fb845476a66f50b534"; md5.source = "0a42b368c3dc1e0ec7a4ba24d6a8e2e2"; hasRunfiles = true; @@ -18694,7 +18694,7 @@ tl: { # no indentation }; "rsc" = { stripPrefix = 0; - md5.run = "815b1fc898de34c8b31ab1ec6149cb20"; + md5.run = "55bcbb1b3ad87667b2ad490ef8f8b60a"; md5.doc = "22d14fbcd79caf92b54d134a8c594222"; md5.source = "1480327703a329295d263a7ecb59e7d0"; hasRunfiles = true; @@ -18708,20 +18708,20 @@ tl: { # no indentation }; "rsfso" = { stripPrefix = 0; - md5.run = "b7896cf1c27449dea5e73864c0194999"; + md5.run = "3f31385bd875dad1402bb5075ff2058c"; md5.doc = "5cb68c1f31ea00e0da97343b1a3f6150"; hasRunfiles = true; version = "1.01"; }; "rterface" = { stripPrefix = 0; - md5.run = "205a96532733f3769379f50f6b3d38fb"; + md5.run = "6b8f25b429ac141053b91d751e724170"; md5.doc = "fc17bb4db6efce3288dfcbf70f4649b0"; hasRunfiles = true; }; "rtkinenc" = { stripPrefix = 0; - md5.run = "ef8f9c2e88e31440cd61227fb7ed963a"; + md5.run = "cb0875132f3e6f632bbdbbb9bf788b06"; md5.doc = "bf064b98165643eb71786e0391b86128"; md5.source = "6ae10825309cb358b830a7ef6ccd36a9"; hasRunfiles = true; @@ -18729,12 +18729,12 @@ tl: { # no indentation }; "rtklage" = { stripPrefix = 0; - md5.run = "ad3d99210f4128da50cc2068c545e541"; + md5.run = "da9df23b49b73fee92d77b1df9ded1b0"; md5.doc = "2c4abb1ddb8ebe7b290b0808c3332291"; hasRunfiles = true; }; "rubik" = { - md5.run = "90594fdc486712160d56415104ec60ab"; + md5.run = "24c345df9563c69182ab52a9c2e854cc"; md5.doc = "0a15b1d8bf312a62f2e415cbe4562756"; md5.source = "893107f68c5f2ce7c5a6697ef8ef60ed"; hasRunfiles = true; @@ -18749,7 +18749,7 @@ tl: { # no indentation }; "rulercompass" = { stripPrefix = 0; - md5.run = "6644c7c64e099cf9831329dff036460e"; + md5.run = "b95103bd860e13166f784f56feba0f91"; md5.doc = "efeb8a56aac4146691274acaeaa6d755"; md5.source = "39a4206491a3112415b7c6e38e86ce8d"; hasRunfiles = true; @@ -18763,7 +18763,7 @@ tl: { # no indentation }; "rviewport" = { stripPrefix = 0; - md5.run = "361785e5e42fb592b26d873bab69545e"; + md5.run = "375255ae2f37626fb682ad6c53e5e8b7"; md5.doc = "1b3eacd890b920e439402ac5c309ffed"; md5.source = "a2e1a8733176ee1f0eb3b10ab7e6e6b2"; hasRunfiles = true; @@ -18771,14 +18771,14 @@ tl: { # no indentation }; "rvwrite" = { stripPrefix = 0; - md5.run = "15b8746f5329a96adab0b3619d65149f"; + md5.run = "9417be7c576745e69eed46c5ddbbefde"; md5.doc = "2429d6ba6044064502737c30ae0adc9c"; hasRunfiles = true; version = "1.2"; }; "ryethesis" = { stripPrefix = 0; - md5.run = "d09128059bc98fb1c637f6f68b3c8c2a"; + md5.run = "3b040034ad3a99d4341598abb4f6b64f"; md5.doc = "b60fb1769e8d11a4b5f6b65ec20df37d"; md5.source = "b6439e2511c171e5b2fd2091b6bd2a64"; hasRunfiles = true; @@ -18786,14 +18786,14 @@ tl: { # no indentation }; "sa-tikz" = { stripPrefix = 0; - md5.run = "2b9d8ef40bb932de492318f878a91256"; + md5.run = "60fa3ddc9d22daec92e81adc99c96595"; md5.doc = "bc1425974637b836d28b04267dab740f"; hasRunfiles = true; version = "0.7a"; }; "sageep" = { stripPrefix = 0; - md5.run = "623a8c63a5a491b48ebf7914fb2c52cc"; + md5.run = "0bed04116f67646dcab97fc12cc4e8ff"; md5.doc = "bfca58e12b96a75bf3348a6b412dd264"; md5.source = "a41c23b8608da377021796d01e13db0c"; hasRunfiles = true; @@ -18801,14 +18801,14 @@ tl: { # no indentation }; "sanskrit" = { stripPrefix = 0; - md5.run = "fb4f2c998f002c1fb13d10625bbb6235"; + md5.run = "f9a1387e5f909f8307e0453e9334df4c"; md5.doc = "670eff29f75854948ebf7f57c8249651"; md5.source = "52f83ccb84abb2a4ab1cd29a47896e46"; hasRunfiles = true; }; "sanskrit-t1" = { stripPrefix = 0; - md5.run = "708ea56acf93b6155641a872e1d01c06"; + md5.run = "32af9cc628f23ebff19a7c1633cae299"; md5.doc = "17e515a370efc0e1bfb5f284e5d06082"; hasRunfiles = true; }; @@ -18821,54 +18821,54 @@ tl: { # no indentation }; "sansmathaccent" = { stripPrefix = 0; - md5.run = "f230f499b5cda68634eb41202590f479"; + md5.run = "1edd396f6e3c0c53a57c15f8a5edd563"; md5.doc = "110a1adb8d28a1d698d0dd79f3a3a8b5"; hasRunfiles = true; }; "sansmathfonts" = { stripPrefix = 0; - md5.run = "50ae5f8d155d3804028f9a445870e9f8"; + md5.run = "a5d8f6a5573e317e918a18acfb5e5611"; md5.doc = "925586609aa365fe429779f506034bde"; hasRunfiles = true; version = "1"; }; "sapthesis" = { stripPrefix = 0; - md5.run = "45da0f17cd16e1f206c2f0e7a94eab6a"; + md5.run = "eef5e14badae599b515ba09f8497c057"; md5.doc = "9db12f0fdf583cd7f433c68432c612e0"; hasRunfiles = true; version = "3.7"; }; "sasnrdisplay" = { stripPrefix = 0; - md5.run = "eebb9b6c5e544f206194e4eac9e951f5"; + md5.run = "a50cb15358a4efcb1a8b2ba712c381c2"; md5.doc = "8d55b658cf7d51bbf7525e36fdbec25e"; hasRunfiles = true; version = "0.93"; }; "sauerj" = { stripPrefix = 0; - md5.run = "eaf876c06657d5c18ebc9290614bc9fa"; + md5.run = "80569cff7bd9f69c358cad331f776c2f"; md5.doc = "890daf6f1979121387a406f0c65e5756"; md5.source = "23b0f80269f371fb6b0fc07b02b312a3"; hasRunfiles = true; }; "sauter" = { stripPrefix = 0; - md5.run = "a7504c0dca3359337052d1cb236db8af"; + md5.run = "978b2889d14934ae7741e718509dbfea"; hasRunfiles = true; version = "2.4"; }; "sauterfonts" = { stripPrefix = 0; - md5.run = "a5a8208f6f8641d58b358930af23ccff"; + md5.run = "dc4ae2ecddcf21d275aa4b2195d2f477"; md5.doc = "d2bfafec9379b6e7ee4f2cda84a7b7fd"; md5.source = "73475b084b5b6a72475131f9e4017b59"; hasRunfiles = true; }; "savefnmark" = { stripPrefix = 0; - md5.run = "3fc968185e1e211a47d0fb439c089ecd"; + md5.run = "338baad6bfb7cfe651752a09f0b81be6"; md5.doc = "aac2e8dda8680ed42c9492b71db73c96"; md5.source = "95a7472a46b141481ed0388bb690a7e1"; hasRunfiles = true; @@ -18876,13 +18876,13 @@ tl: { # no indentation }; "savesym" = { stripPrefix = 0; - md5.run = "ae0ba7e674a41c243fc47676e387836c"; + md5.run = "3a0c4510fbd8ae23bfc2f132406198b0"; hasRunfiles = true; version = "1.2"; }; "savetrees" = { stripPrefix = 0; - md5.run = "eaafd4169b3bf6fa291fb8a0bfdf1f5e"; + md5.run = "b3e008e8613c9f50fc63b0617df4dc69"; md5.doc = "9f89694f205c9a7ef04d728ad45ef763"; md5.source = "d439ce564186fe38f83c41c9507fb27f"; hasRunfiles = true; @@ -18890,7 +18890,7 @@ tl: { # no indentation }; "scale" = { stripPrefix = 0; - md5.run = "409be6ba5ee1d5ef1458c1ed8be8bf93"; + md5.run = "cdcc522f9e3d458c8b69ae94fd276be5"; md5.doc = "f7f792ae52d95902f559d62142c54e45"; md5.source = "d2c299a44044c5c954acdccd3bc0fc32"; hasRunfiles = true; @@ -18898,7 +18898,7 @@ tl: { # no indentation }; "scalebar" = { stripPrefix = 0; - md5.run = "b522376c3dd5e46af5a02d3f49c33476"; + md5.run = "0690344826435071174d53ae601de81f"; md5.doc = "14db02325e0ef0025bef7ed500d8f23d"; md5.source = "fd717bbd08d98caa54a235dddcadcf2f"; hasRunfiles = true; @@ -18906,28 +18906,28 @@ tl: { # no indentation }; "scalerel" = { stripPrefix = 0; - md5.run = "17813582e8d0255dbcb1d051ab617b2a"; + md5.run = "f10c083554502990b2ef5d81ad831172"; md5.doc = "c670b5b8c3aa82d0157fe17d971b176e"; hasRunfiles = true; version = "1.7"; }; "scanpages" = { stripPrefix = 0; - md5.run = "3f60d1bd5bf240447907535676078a43"; + md5.run = "3bfd3b71fd3dbbf4d06f1715975d0bd7"; md5.doc = "fcd73ca0011c1d5ecfd3f40d864f2287"; hasRunfiles = true; version = "1.03"; }; "schemabloc" = { stripPrefix = 0; - md5.run = "79270e7e45e7301f6953f7cf0c48caa2"; + md5.run = "4645d01fa8d96ba3028cdf04fe862f7e"; md5.doc = "28799b2199f98f9995e0b482593a2719"; hasRunfiles = true; version = "1.5"; }; "schemata" = { stripPrefix = 0; - md5.run = "f6b8eab2b8b08cd9fccdcf731c4d9eae"; + md5.run = "61c783f87eadd5989f41695d26fcf59c"; md5.doc = "155199f40103192d8e4b77d76d3992b5"; md5.source = "1694dc26d1a31e16805062185477249d"; hasRunfiles = true; @@ -19225,7 +19225,7 @@ tl: { # no indentation }; "schule" = { stripPrefix = 0; - md5.run = "b7301b2830d98343d3f00d6db9775dc3"; + md5.run = "6a4d0aa82dc04c8618cd027ff39d1bde"; md5.doc = "0dffdb1e43cb0dcb4293e01efc8acadc"; md5.source = "ba572d56ae531f74de26fd73197e7608"; hasRunfiles = true; @@ -19233,14 +19233,14 @@ tl: { # no indentation }; "schulschriften" = { stripPrefix = 0; - md5.run = "90a7e0765364ebac0771461011a2ea35"; + md5.run = "43b165ea60afd42e8e3a48b809366562"; md5.doc = "b015856c8282a8185f7d9e371c296705"; hasRunfiles = true; version = "4"; }; "schwalbe-chess" = { stripPrefix = 0; - md5.run = "5e1dcb6c224550d127fcc6b03b533b5c"; + md5.run = "33d112eb129cc7ac9b36fb8e5bf05d0a"; md5.doc = "63cd816a5bf4418f6dd53c6bd4f9986f"; md5.source = "e7b408e1f6be3f5b8100a2f0d42beea6"; hasRunfiles = true; @@ -19248,14 +19248,14 @@ tl: { # no indentation }; "sciposter" = { stripPrefix = 0; - md5.run = "653915a843f0ae647906a67f90fbf046"; + md5.run = "9ead6d5c6c8dfcad597440137f662e0b"; md5.doc = "78c8a1b1e650cec93ae250532269e4f8"; hasRunfiles = true; version = "1.18"; }; "sclang-prettifier" = { stripPrefix = 0; - md5.run = "a7c509363459ac8cf9aa1109088e84cc"; + md5.run = "ed5f08432ba52e51ad1138159112c015"; md5.doc = "27f50d2eb22405df28053200976aa026"; md5.source = "f3ff86dd1e2dfd2237757c2403f5a11f"; hasRunfiles = true; @@ -19263,7 +19263,7 @@ tl: { # no indentation }; "screenplay" = { stripPrefix = 0; - md5.run = "8ee775120a7400779346f0684dfa9067"; + md5.run = "c3febc1f90fa1c2639d459bdc193d31e"; md5.doc = "81e56c308349c4ceb3d60009460179e2"; md5.source = "3118fc921baa89875802a33df09e0434"; hasRunfiles = true; @@ -19271,7 +19271,7 @@ tl: { # no indentation }; "scrjrnl" = { stripPrefix = 0; - md5.run = "65081be9ce5c08b133573b72cbd32a22"; + md5.run = "7fffc157fc5899949ebd428fe8e086c1"; md5.doc = "ab2d7ae38661436bbeb29371ef4b77ff"; md5.source = "7b4c5244f624770806ee5e17c87f9c30"; hasRunfiles = true; @@ -19279,14 +19279,14 @@ tl: { # no indentation }; "sdrt" = { stripPrefix = 0; - md5.run = "b1cbfc7407bf39d2802b365e174861b0"; + md5.run = "bfd8469caef45f92339782bc7f2432ae"; md5.doc = "9c79f9dd65505a3dd73c129619c4fd5f"; hasRunfiles = true; version = "1.0"; }; "sduthesis" = { stripPrefix = 0; - md5.run = "8bc3f61c9e91f7c3c8802e4572a13492"; + md5.run = "fbe07347ad81b36961f2d67568d5be95"; md5.doc = "7ca96dd7541a89454acef9dac71452b6"; md5.source = "6fae167d66f176175ce7781b7232518d"; hasRunfiles = true; @@ -19294,7 +19294,7 @@ tl: { # no indentation }; "secdot" = { stripPrefix = 0; - md5.run = "9a69686ef80871b734de4409f644741c"; + md5.run = "f465f0415f6b61597ff9bd2da3070f1f"; md5.doc = "fac8b6d1162e851a6a3ea3caf1224736"; hasRunfiles = true; version = "1.0"; @@ -19307,14 +19307,14 @@ tl: { # no indentation }; "sectionbox" = { stripPrefix = 0; - md5.run = "157c55dc4a79c3b0cc25739edfeeafc8"; + md5.run = "98c782787c44e9a2cfa24e0a903b5a59"; md5.doc = "ff4341267e88400aa4058127f3122966"; hasRunfiles = true; version = "1.01"; }; "sectsty" = { stripPrefix = 0; - md5.run = "6749427a01fe766df01f87f57ab1d5d7"; + md5.run = "f7de58665edf03c05714479bc890064d"; md5.doc = "7952eb5c96b4e930a8c3b8e96d24f462"; md5.source = "79ef100b9db6827e34574979982af662"; hasRunfiles = true; @@ -19322,7 +19322,7 @@ tl: { # no indentation }; "seealso" = { stripPrefix = 0; - md5.run = "5e5462daac8f8f94140414d7b90aefd4"; + md5.run = "52d04ae5af5fbfb7ee61456c45cbd8ab"; md5.doc = "eba577342b96e5d8a02d012dd6ca098d"; md5.source = "4b06c41fa987d13c94abc791af724f75"; hasRunfiles = true; @@ -19334,7 +19334,7 @@ tl: { # no indentation }; "selectp" = { stripPrefix = 0; - md5.run = "b7d161e69d68487f2176c1533b2f661e"; + md5.run = "24a7637bf2db1f37cb7aa236be6738e4"; md5.doc = "2f86d445bb934afa7a03b4ce82a690d6"; hasRunfiles = true; version = "1.0"; @@ -19348,7 +19348,7 @@ tl: { # no indentation }; "semantic" = { stripPrefix = 0; - md5.run = "ebaa7b8b1ab5ab28a549c7dd961474e6"; + md5.run = "e2a537fa19c83ecbb7cdbb08640033dc"; md5.doc = "1326f8bfa3abf65d9f41815cf09d521d"; md5.source = "d11e45e2bc43ba8b9f66a8aaf61cceeb"; hasRunfiles = true; @@ -19356,7 +19356,7 @@ tl: { # no indentation }; "semaphor" = { stripPrefix = 0; - md5.run = "d2f244ebe7e6ec65228718b809d035d3"; + md5.run = "69b85b6aa790bf9861c3cc619cbbee51"; md5.doc = "0647e24441cbbd19a13bc03dd7f7ccb4"; hasRunfiles = true; }; @@ -19369,7 +19369,7 @@ tl: { # no indentation }; "semioneside" = { stripPrefix = 0; - md5.run = "e1d57695b284c8fa5c7cdb8604949f50"; + md5.run = "90487dbd7e01ce344ce8c8462d18006b"; md5.doc = "592663a427c0d66a4cdd09eec2f20b5f"; md5.source = "4c0527dc33f3c4f71ccbb4fe08e06ddc"; hasRunfiles = true; @@ -19377,7 +19377,7 @@ tl: { # no indentation }; "sepfootnotes" = { stripPrefix = 0; - md5.run = "54f23b2a4ccb7177d0c3c9341c33785a"; + md5.run = "0874e5194dd58f003ffd1a7da817e863"; md5.doc = "38e50f24570d7fbfcca5717edca4dcf8"; hasRunfiles = true; version = "0.3b"; @@ -19391,7 +19391,7 @@ tl: { # no indentation }; "seqsplit" = { stripPrefix = 0; - md5.run = "7b07c6debd16395814d17cc8dbee0553"; + md5.run = "600e145d41c634342d8858ca7f1f15e0"; md5.doc = "2a409fd0eb09c58612b09efe6ac901ed"; md5.source = "54b86b4a1f27ebba9d873ba1770bb6d5"; hasRunfiles = true; @@ -19431,7 +19431,7 @@ tl: { # no indentation }; "setdeck" = { stripPrefix = 0; - md5.run = "4eaf1f0a8b86e7d18fbb69d31cfa88c7"; + md5.run = "4dd23ce0f1bf3681d5e539f7b310ef26"; md5.doc = "56153920ff475dd12c0f2c3a1f32582b"; hasRunfiles = true; version = "0.1"; @@ -19445,7 +19445,7 @@ tl: { # no indentation }; "seuthesis" = { stripPrefix = 0; - md5.run = "29c938871ee42cc68711089568147db3"; + md5.run = "fef6b6a76c091067e277a7f4e3fc6b52"; md5.doc = "0548483c3270a42d98f074e2cd0eeb7b"; md5.source = "e8385edd4e9b64248ecd2733f812e0c8"; hasRunfiles = true; @@ -19453,7 +19453,7 @@ tl: { # no indentation }; "sf298" = { stripPrefix = 0; - md5.run = "cb39b1e283ff9a8d67e485ddd8abbae2"; + md5.run = "5100fab6dc3417aaf5986fa13b29d2b9"; md5.doc = "7f44ebb3ed0a09335991287dc5c134bc"; md5.source = "3c9863b2d858ffe405e210785888d21c"; hasRunfiles = true; @@ -19461,7 +19461,7 @@ tl: { # no indentation }; "sffms" = { stripPrefix = 0; - md5.run = "ee874ab04333db031c3a9447ddefec17"; + md5.run = "a2bb582b6c539c59fa9a5366e8fc37eb"; md5.doc = "3ec65c039aa64387312e25c302a6ddc4"; md5.source = "a2a6391d1d6bc83e8d834bd2fbf4953e"; hasRunfiles = true; @@ -19469,73 +19469,73 @@ tl: { # no indentation }; "sfg" = { stripPrefix = 0; - md5.run = "5bc00f64d4077e317019521f653e9a11"; + md5.run = "8552fe68556be1da6f5d004661dc8b33"; md5.doc = "f98be72c92af06cf9c5d89e88b8c3c3d"; hasRunfiles = true; version = "0.91"; }; "sfmath" = { stripPrefix = 0; - md5.run = "1cbb5bd150d7fb9d4ae1ddb12622a15a"; + md5.run = "a8b5fc6b74038be678ee62f9a3c04285"; hasRunfiles = true; version = "0.8"; }; "sgame" = { stripPrefix = 0; - md5.run = "5040afded5c6b9a551a5c8e113f1746d"; + md5.run = "93a36ddfb871cfc04b059889c4754986"; md5.doc = "150f7d6c9a2158839a84fa1932287643"; hasRunfiles = true; version = "2.15"; }; "shade" = { stripPrefix = 0; - md5.run = "c9a24afb16af88e8fac0b138396037a0"; + md5.run = "219419fe320a023e15904706373d4158"; md5.doc = "d0594341deca998d89a667486dd4a04e"; hasRunfiles = true; version = "1"; }; "shadethm" = { stripPrefix = 0; - md5.run = "c1ee1a44b8b0cea8f00d103a81a5e6e9"; + md5.run = "0ee98022fc8a3a739ad8038552a461bf"; md5.doc = "d28fdea2e941840f0b1cc18fcb1e0b59"; hasRunfiles = true; }; "shadow" = { stripPrefix = 0; - md5.run = "8cfb2ea6c210a98cc555654fc1ea9aec"; + md5.run = "b59a42c8d003a5498f96db69ae076667"; md5.doc = "e3dcbc662360ccc40816d615665acc37"; hasRunfiles = true; }; "shadowtext" = { stripPrefix = 0; - md5.run = "8d36ec22495f649bef2d6755fc67727d"; + md5.run = "afcea479cf15696ee5bd659c7fba74ca"; md5.doc = "2e786063cbc3cd168b557d3963c6ed4e"; hasRunfiles = true; version = "0.3"; }; "shapepar" = { stripPrefix = 0; - md5.run = "6e81515eadcbf300d6d4e9a9e1ad34ca"; + md5.run = "be176fcb8969999e8096bfa056cd7db7"; md5.doc = "4a7c23b5b35cad79d6be18712fb307bd"; hasRunfiles = true; version = "2.2"; }; "shdoc" = { stripPrefix = 0; - md5.run = "573ddff817d956c3a39e99158ba494a2"; + md5.run = "f6cb878560310b8f08e75b390cba4eff"; md5.doc = "c55871d827e134a77ab34733af7b19f1"; hasRunfiles = true; }; "shipunov" = { stripPrefix = 0; - md5.run = "594fee17dfcfe3edf98bf0fd04dce8c0"; + md5.run = "91be9651ac46f2889405c7792f251798"; md5.doc = "de49f99979ed34d37a92d060fb6f6bf8"; hasRunfiles = true; version = "1.1"; }; "shorttoc" = { stripPrefix = 0; - md5.run = "7f108eecbec8fd36d381e74c2094d322"; + md5.run = "dfa9469acf02b696ae9a66bf5bd172a5"; md5.doc = "dc440192bc745c2e6a80fac58205fd2d"; md5.source = "0a79f20546bad674ebf402e6d431476c"; hasRunfiles = true; @@ -19543,7 +19543,7 @@ tl: { # no indentation }; "show2e" = { stripPrefix = 0; - md5.run = "0f6a89533113d7ca243c3d00bedae9f8"; + md5.run = "b45192e64b4d785474d4bfca5780cf14"; md5.doc = "1ea06e4a406afc41038c14166e1feebc"; md5.source = "da8fef80d3aedda7e85490a5179f55a7"; hasRunfiles = true; @@ -19551,7 +19551,7 @@ tl: { # no indentation }; "showcharinbox" = { stripPrefix = 0; - md5.run = "11fc245b6e89e9d04cb232f15654ed76"; + md5.run = "f558ebe6f887d6e1e411626c806e61c1"; md5.doc = "240bc85b14bd4e3bf9d60d03b9fbc532"; md5.source = "13304ffedb88c2dedb1943751df49ea2"; hasRunfiles = true; @@ -19559,14 +19559,14 @@ tl: { # no indentation }; "showdim" = { stripPrefix = 0; - md5.run = "071df4487cfd7aafb51decff5b02c30d"; + md5.run = "8582c745b9c803cf0584ce82bce42afd"; md5.doc = "2148000fd74eb73b92f8faf0ede8685f"; hasRunfiles = true; version = "1.2"; }; "showexpl" = { stripPrefix = 0; - md5.run = "776fba450e071a12f5bcf80a5963d99e"; + md5.run = "d06b6464bb36d165bc2375d9fc601d53"; md5.doc = "be0e760cdd6266c358d4eb00dbb4cce9"; md5.source = "16971d641a847d5614a057bcb33d3191"; hasRunfiles = true; @@ -19581,7 +19581,7 @@ tl: { # no indentation }; "showlabels" = { stripPrefix = 0; - md5.run = "204f21b00fccda16ea8fba8ea7ec7a54"; + md5.run = "3b5870281794a0b3d78db95e81085136"; md5.doc = "b8bf46671b34972efc0e556f1c6237a5"; md5.source = "06832ca9cd6635f4374761b132dbaa62"; hasRunfiles = true; @@ -19589,7 +19589,7 @@ tl: { # no indentation }; "showtags" = { stripPrefix = 0; - md5.run = "7711381884f5c9271ff8893970ecac0f"; + md5.run = "35532448b2c5bcfe0019d14f1d624e57"; md5.doc = "70f9b8f1dae01b25a4a287fb358f751d"; hasRunfiles = true; version = "1.05"; @@ -19612,7 +19612,7 @@ tl: { # no indentation }; "sidenotes" = { stripPrefix = 0; - md5.run = "3d46bce946226a1f6feef39b75626343"; + md5.run = "546f817f588e9af4a9c3bddd2b743d44"; md5.doc = "ecd9c5514280f1aada25bfe36627afe3"; md5.source = "b2358da4387d9495a5633a67b608c44a"; hasRunfiles = true; @@ -19620,13 +19620,13 @@ tl: { # no indentation }; "sides" = { stripPrefix = 0; - md5.run = "40b87088721148892779253ce0d44728"; + md5.run = "f2cbfc68faaa41598f4e5993a1ec432d"; md5.doc = "d4d3f1774564f87fa30469af5ba3a5a9"; hasRunfiles = true; }; "silence" = { stripPrefix = 0; - md5.run = "b1df525f79f8606250a261b77a69f02c"; + md5.run = "b68c088382e4fefff5e8af90e6a72536"; md5.doc = "bf587b3790fdba142d9ca6f6076d29f7"; md5.source = "3347fd71e1b4d4b00499f294c4928078"; hasRunfiles = true; @@ -19634,7 +19634,7 @@ tl: { # no indentation }; "simplecd" = { stripPrefix = 0; - md5.run = "2269a4aa8930a2a3afccbc64780d57f9"; + md5.run = "7c8f56e351f959322ae0af18095f12d9"; md5.doc = "449d5b347627cbce62f2014106cb3066"; md5.source = "72fa75919c3eb5bd710e9f1d0df91beb"; hasRunfiles = true; @@ -19642,7 +19642,7 @@ tl: { # no indentation }; "simplecv" = { stripPrefix = 0; - md5.run = "ff41f4e93de90965a2b9ea1fefe49ffa"; + md5.run = "0743a7261915e13e4ce4bb64e2c02db8"; md5.doc = "bef24f24c3de4a590a171f0e4c74b511"; md5.source = "e8070856d6c3ffcd723cfc40539fdc61"; hasRunfiles = true; @@ -19650,7 +19650,7 @@ tl: { # no indentation }; "simplewick" = { stripPrefix = 0; - md5.run = "46d82e6b04fc1ca4a64d956a3bf087d7"; + md5.run = "501f985f535e7377071b6bbc689f6408"; md5.doc = "fb30a3b53a71f2225ca2712e82fdf679"; md5.source = "67a00568dba3d63bd5e0a4bc7674f3e7"; hasRunfiles = true; @@ -19663,14 +19663,14 @@ tl: { # no indentation }; "simurgh" = { stripPrefix = 0; - md5.run = "58b6da868779f350fe730810a2b875b3"; + md5.run = "d482c3d7f36106469fe33ef5b9d67550"; md5.doc = "0097d44b15536fb7b397d5074c49eb5c"; hasRunfiles = true; version = "0.01b"; }; "sitem" = { stripPrefix = 0; - md5.run = "3b1b60f3842c7183cecb6a63d9665685"; + md5.run = "063b252c460b551b6b7ed7535729995e"; md5.doc = "36ec6326bc5f84529e9d3e8042b2c476"; md5.source = "ab795c4aea6fd622b74627bb6b85163f"; hasRunfiles = true; @@ -19678,7 +19678,7 @@ tl: { # no indentation }; "siunitx" = { stripPrefix = 0; - md5.run = "7af4b5e3ac55a1e7008da48dbec8b9e8"; + md5.run = "8e21f00f7349a5b330de0696f5bd4102"; md5.doc = "b5f4a8cd430b9ee569db26dc654bb841"; md5.source = "4ea9885f0e1403ec85b59e727b2050e8"; hasRunfiles = true; @@ -19686,7 +19686,7 @@ tl: { # no indentation }; "skak" = { stripPrefix = 0; - md5.run = "05a1450f36ca16e419ea4042d18ec34f"; + md5.run = "2666d2ba24210232f977a93c84c2c765"; md5.doc = "38a97247fbc8705cedc1e0890fb3bffa"; hasRunfiles = true; version = "1.5.2"; @@ -19699,7 +19699,7 @@ tl: { # no indentation }; "skb" = { stripPrefix = 0; - md5.run = "483339872257699c65de9de085cad104"; + md5.run = "e31a4c2e80dde787d69478ee50885af0"; md5.doc = "f8d86fe2f234268bca2dd9c55aa265dc"; md5.source = "b8463a5ea228e47a1619d899231172ee"; hasRunfiles = true; @@ -19707,7 +19707,7 @@ tl: { # no indentation }; "skdoc" = { stripPrefix = 0; - md5.run = "59f95d6d565c885f48cf68a44a0e1392"; + md5.run = "ae6f8c8632b0131f2051697cf59d4d06"; md5.doc = "aca4fa0c9178d463ead6196e9f6155b6"; md5.source = "03691b9da92741d2e6657230cd22b2ff"; hasRunfiles = true; @@ -19715,14 +19715,14 @@ tl: { # no indentation }; "skeycommand" = { stripPrefix = 0; - md5.run = "8c512b4c1df44dbbcf762a0f891fecda"; + md5.run = "adc3b91b39292cf31503ae314b508268"; md5.doc = "824afc099a24d6d73f56686cb9d2bd2e"; hasRunfiles = true; version = "0.4"; }; "skeyval" = { stripPrefix = 0; - md5.run = "5792357a07c2f384c98cfaae7f7a8c06"; + md5.run = "bafd73f8e56ab8d0ea5939303fcf810e"; md5.doc = "057de913ae9d9c0537f20818374ee717"; hasRunfiles = true; version = "1.3"; @@ -19737,7 +19737,7 @@ tl: { # no indentation }; "skrapport" = { stripPrefix = 0; - md5.run = "ff565a6933294d311ee3c679b13a7f19"; + md5.run = "485c7b0f10c6db871da6ecd399cb0eb4"; md5.doc = "7285f9ab89c9c4d3cc4bf8ec4cc3e457"; md5.source = "3b9c0044a9c8ac2ed5391a978bdabe05"; hasRunfiles = true; @@ -19745,14 +19745,14 @@ tl: { # no indentation }; "skull" = { stripPrefix = 0; - md5.run = "7149cc390ca27fc9bf3797f24e317de6"; + md5.run = "ad28d5dc3ee011b9395d5bdf654657f1"; md5.source = "6962b2c34e76b7ea87d27b770a704fe6"; hasRunfiles = true; version = "0.1"; }; "slantsc" = { stripPrefix = 0; - md5.run = "e31a4dc6519a375055da5baeb2fed71b"; + md5.run = "9de91e176afa830a580dce2522ef9924"; md5.doc = "22c349694197d1027f58d9092a5edb04"; md5.source = "af29fd673a2d23910837fa19a23db3c1"; hasRunfiles = true; @@ -19767,13 +19767,13 @@ tl: { # no indentation }; "smalltableof" = { stripPrefix = 0; - md5.run = "1949ba1157ba04cdcfed4e631b4a3430"; + md5.run = "dc6c644e9c474f3f41ec9e5e6436e1d3"; md5.doc = "c170033f3c8a0a4c6fe8a71dc57a7575"; hasRunfiles = true; }; "smartdiagram" = { stripPrefix = 0; - md5.run = "717f44b3210278d7332a4a2f0d21f645"; + md5.run = "5a3e5ee5312ea5140c5e47778aa353a6"; md5.doc = "8ecb75a851cc05d887bd3ca48d4f58ca"; md5.source = "23078155309d119bdb46d9e1e583d649"; hasRunfiles = true; @@ -19781,14 +19781,14 @@ tl: { # no indentation }; "smartref" = { stripPrefix = 0; - md5.run = "e8fa372e13a6e46e48fc69e02e0c6ed2"; + md5.run = "8c1ba7fbb726094aea893800d53dc736"; md5.doc = "0897c309e74ffaaf48d8cc6e22e5cafb"; hasRunfiles = true; version = "1.9"; }; "snapshot" = { stripPrefix = 0; - md5.run = "97018ab678f735cef7b3d6ea4454f354"; + md5.run = "edb8f1ab9713888b63dcacbfd184d757"; md5.doc = "7438a2384aae2b12ecd4d9f80290e273"; md5.source = "44f9306cfa94fb2535d21697a9fa191a"; hasRunfiles = true; @@ -19796,14 +19796,14 @@ tl: { # no indentation }; "snotez" = { stripPrefix = 0; - md5.run = "4a83466262decb73d27d7cab627a43f0"; + md5.run = "b76192893e59092605410bf4a477a253"; md5.doc = "4114795768816303dd881c436852488d"; hasRunfiles = true; version = "0.3"; }; "songbook" = { stripPrefix = 0; - md5.run = "fe23c746e5ec1db715b891cf9fbd5221"; + md5.run = "dfca0d5091ebd68da0a41196a0c4a2b9"; md5.doc = "57be191d8a209b782c265ad3a136fd59"; md5.source = "d774ffaf1d16b9fff77216dff8bcade3"; hasRunfiles = true; @@ -19811,7 +19811,7 @@ tl: { # no indentation }; "songs" = { stripPrefix = 0; - md5.run = "46527af8435387b84db657d0b73d5561"; + md5.run = "f405ade9c9fc6a163fe0043c3e0c580a"; md5.doc = "9e3ff1dc860a512fb8a8a0b2c2a706eb"; md5.source = "2482669b0640e93956f1efe45d145198"; hasRunfiles = true; @@ -19819,20 +19819,20 @@ tl: { # no indentation }; "sort-by-letters" = { stripPrefix = 0; - md5.run = "a709ff966e22316caa958919c2c5695c"; + md5.run = "e50b19a5b15c5fa7727c234054b5dde2"; md5.doc = "5a82b2d96ad117f55cb910d18b72647e"; hasRunfiles = true; }; "soton" = { stripPrefix = 0; - md5.run = "78fb70a9ee9cc58c698ef49e3e442869"; + md5.run = "5fea04ce0f64be1febee38b9b8a4614d"; md5.doc = "05851ad66241015b817b31d4a0fc36d6"; hasRunfiles = true; version = "0.1"; }; "soul" = { stripPrefix = 0; - md5.run = "456d5584a6966359a67880ca9f9516aa"; + md5.run = "0c006ff9d097d13a251a1a7aeb893efe"; md5.doc = "29c27e3e7c40efe3f1aa12b08b5dfed2"; md5.source = "6568034f024052bcf9ad924cc80ebd54"; hasRunfiles = true; @@ -19840,14 +19840,14 @@ tl: { # no indentation }; "sourcecodepro" = { stripPrefix = 0; - md5.run = "b99038a2ab9ac30998da1340a7a66b56"; + md5.run = "176f752235a843e2a3ad3be08399a0e1"; md5.doc = "9e5211c21015e82aa091bf8290bc09dd"; hasRunfiles = true; version = "2.3"; }; "sourcesanspro" = { stripPrefix = 0; - md5.run = "291b19edb680e632a0d90203665c2194"; + md5.run = "417e395eaa697e926ace242b13d19eb5"; md5.doc = "4b37059e90ab327fe44ab5831470329e"; hasRunfiles = true; version = "2.4"; @@ -19868,14 +19868,14 @@ tl: { # no indentation }; "sparklines" = { stripPrefix = 0; - md5.run = "0fe125ac930812bde9f28a24ad6fb524"; + md5.run = "1bd4e9fd85194ea7a0d4d8089658af7a"; md5.doc = "9dc5a7bc728bbea0097e7793473a38a8"; hasRunfiles = true; version = "1.6"; }; "spath3" = { stripPrefix = 0; - md5.run = "3543786a4dc89d061c9d54c2ef6f070a"; + md5.run = "d031c1fd5427c5c637aca67c1bceeea4"; md5.doc = "8e67ab28c168aa84d9cdeb887b3db841"; md5.source = "f7db5f12de6bfd6e71b383b1aa56fb5c"; hasRunfiles = true; @@ -19890,20 +19890,20 @@ tl: { # no indentation }; "sphack" = { stripPrefix = 0; - md5.run = "a94d6e144952c4ae86372597ae24022b"; + md5.run = "ecb40af4ce94b98b77ab2027cb03a7ea"; md5.doc = "fc5b483b45e1acc382c90e00948e84c5"; hasRunfiles = true; }; "sphdthesis" = { stripPrefix = 0; - md5.run = "b87e37c20a01537b56269c1a03af60e2"; + md5.run = "147db3bb729cda7a3513415ad607c5c9"; md5.doc = "1b467a2a0f8eedbb73848e763b06f4db"; hasRunfiles = true; version = "1.0"; }; "spie" = { stripPrefix = 0; - md5.run = "50a3702da88e4c028a67fcd970d8e01d"; + md5.run = "9b4e2ce3db09082384f8301c0fd2cd3e"; md5.doc = "ce6b218c2a5673b90ea76bee05371565"; hasRunfiles = true; version = "3.25"; @@ -19918,14 +19918,14 @@ tl: { # no indentation }; "splitbib" = { stripPrefix = 0; - md5.run = "cf330fabce8b3f07ce6c6be78354d656"; + md5.run = "d4f401bad8ae002a3045d0048fb578a6"; md5.doc = "47faabdd87aa60042de3afae4d9f8eab"; md5.source = "177196374409b917eebbfb0ccea35d8d"; hasRunfiles = true; version = "1.17"; }; "splitindex" = { - md5.run = "331b6002d1bc2204fc7f22d819a42296"; + md5.run = "09f178387c258cf1d17d4a92acf4587c"; md5.doc = "2418c2df0150fffda70705af49ca4376"; md5.source = "85d9d0e0ce49840966551e0435f554af"; hasRunfiles = true; @@ -19933,7 +19933,7 @@ tl: { # no indentation }; "spot" = { stripPrefix = 0; - md5.run = "7181cfeb026cc7943a1710c656f2630f"; + md5.run = "f3ef9ddd265b2b3f908b223ea9a0a44a"; md5.doc = "dece36cffd7a4794965b4616ef11cead"; md5.source = "902f14284cc4ea8bb14ef7dd26d511aa"; hasRunfiles = true; @@ -19941,21 +19941,21 @@ tl: { # no indentation }; "spotcolor" = { stripPrefix = 0; - md5.run = "b2dec6d698b989aa3f24171005c96abb"; + md5.run = "3142a315085a290ac5bf1427ad21a856"; md5.doc = "cfe601b56df02bfbbbe25e7f8619c00b"; hasRunfiles = true; version = "1.2"; }; "spreadtab" = { stripPrefix = 0; - md5.run = "86a6ac2d48b2aad675225e05ad9b4ea3"; + md5.run = "10ceb847e68b92fcdcf21a746b813fda"; md5.doc = "e71660b1a0d3b8ac5001dc95350aa790"; hasRunfiles = true; version = "0.4c"; }; "spverbatim" = { stripPrefix = 0; - md5.run = "8474006d0d5b074bfa1b964e9aa15999"; + md5.run = "2e89cdd742c2a33f6edcfc241edc4203"; md5.doc = "5773baadfdb76173d09ffb5cfa9d59c9"; md5.source = "3f804bef69500b62690bf40cb81aff10"; hasRunfiles = true; @@ -19963,7 +19963,7 @@ tl: { # no indentation }; "sr-vorl" = { stripPrefix = 0; - md5.run = "12ee0070267dc06cbe3b4730ea1c6b0c"; + md5.run = "af301b9d8a2bc36e9b92406df380018b"; md5.doc = "a7aabb899c62789f107a624742335d07"; md5.source = "e66c4d22c933160d0542a49a5791a976"; hasRunfiles = true; @@ -19971,13 +19971,13 @@ tl: { # no indentation }; "srbook-mem" = { stripPrefix = 0; - md5.run = "fa21deab4f2c97f869dbf5dffda51918"; + md5.run = "ed3be978804fb45774c5efe9e9874644"; md5.doc = "27d71cdedd500701e67b3865065dfa2a"; hasRunfiles = true; }; "srcltx" = { stripPrefix = 0; - md5.run = "71ca31a89daa7f968477a570ee60c11b"; + md5.run = "af4f8f4cc93e5ed2e5db225fbd97a2d7"; md5.doc = "949dd5a926c442771a14ffcaec437b50"; md5.source = "c4ed4d255c36bc37d96c2e33dbbc7e2a"; hasRunfiles = true; @@ -19985,7 +19985,7 @@ tl: { # no indentation }; "sseq" = { stripPrefix = 0; - md5.run = "6f7ac1b36120469c81af6099ed993dc2"; + md5.run = "407cbd8b7d555338f1528d85c93a1c30"; md5.doc = "94ab4ce5886cf45b5f31525f1c55dea6"; md5.source = "9a15a039afbb0fcbe64629c7010d5f6a"; hasRunfiles = true; @@ -19993,33 +19993,33 @@ tl: { # no indentation }; "sslides" = { stripPrefix = 0; - md5.run = "6e3bb5bcbbf6cd1f95ebc82849202b56"; + md5.run = "d2bdc3221479f34fa455b7520e597f0b"; md5.doc = "2799117a019ba9ce7c86117649042d39"; hasRunfiles = true; }; "stack" = { stripPrefix = 0; - md5.run = "e5bf425fcc50e74324602c9a7f343fc3"; + md5.run = "57586447de717d195b5e20f6ed1dbb84"; md5.source = "01700cc1b937fdc9deae3bd65d33d9e9"; hasRunfiles = true; version = "1.00"; }; "stackengine" = { stripPrefix = 0; - md5.run = "820a6b1440b758aa6fe55bed9cccc189"; + md5.run = "b7103e145aff01b008ab5a0d3c3de482"; md5.doc = "585615d7360f8b552f9001866040ab65"; hasRunfiles = true; version = "3.24"; }; "stage" = { stripPrefix = 0; - md5.run = "2f50fc2ede7e51854be9281607e6bf59"; + md5.run = "e3bec19d3f2bd5c265548aa07ea3f8fd"; md5.doc = "e8e00cf1aef4555245722f9682dbaf55"; hasRunfiles = true; }; "standalone" = { stripPrefix = 0; - md5.run = "563c3e031647e6eeb1cac2ed875ceb98"; + md5.run = "e6818c8e42e7d7e3bc4f9ab67078ac60"; md5.doc = "1edd18f31ae5b8fd878e5cff8e77c7f2"; md5.source = "b358d24f4d901a8938a1b6ed3c0661ef"; hasRunfiles = true; @@ -20027,14 +20027,14 @@ tl: { # no indentation }; "starfont" = { stripPrefix = 0; - md5.run = "54c877dc7bf33126d2552ff0f8604a2a"; + md5.run = "d2e37a4f5d1210b7a1e9d4c24f559e32"; md5.doc = "14f5d5cfdd2944a3ab0da458c9ae7e64"; hasRunfiles = true; version = "1.2"; }; "startex" = { stripPrefix = 0; - md5.run = "433d7152d9e658930cf68778757990ed"; + md5.run = "79b254ed9e2de4afe48b480cc8997935"; md5.doc = "f94879b0509a6fe6ba5ad918df2b0c74"; md5.source = "a7bcd1dd7020c461d6a4880c976fa6ac"; hasRunfiles = true; @@ -20056,7 +20056,7 @@ tl: { # no indentation }; "statistik" = { stripPrefix = 0; - md5.run = "663f78b95e4df46445ae31a84aa3e163"; + md5.run = "319335358f65e55f67b9b8174e94c1f5"; md5.doc = "52c9259167490bef801e209e679b6997"; md5.source = "55fe62c91cac9b9d80e929b2ed9e8f3f"; hasRunfiles = true; @@ -20064,14 +20064,14 @@ tl: { # no indentation }; "staves" = { stripPrefix = 0; - md5.run = "aa4438ff789d994026a927247ecf4b00"; + md5.run = "9d4dc7585aa2a104052cb92e02d88108"; md5.doc = "23fdb905272dd2846d502118e560051d"; md5.source = "6a66b0f665f4512894e4db48559a4fc3"; hasRunfiles = true; }; "stdclsdv" = { stripPrefix = 0; - md5.run = "2c0b1676bcaa0f18949f5ed10b0b3ac8"; + md5.run = "bd98360fb3be895e40812f0b66029659"; md5.doc = "fb1f027d723218a87bd95d3f797dd072"; md5.source = "a102dc79bf4b044ebdd7954aee55672b"; hasRunfiles = true; @@ -20079,7 +20079,7 @@ tl: { # no indentation }; "stdpage" = { stripPrefix = 0; - md5.run = "ec126d135f15d77b4b33ace36d20c829"; + md5.run = "f6b02663da297f2fb00ec069c88c0e74"; md5.doc = "7ee454f299a760fce3161c6f796da100"; md5.source = "66ac429d8cd8fb2c41cc711029157c09"; hasRunfiles = true; @@ -20087,7 +20087,7 @@ tl: { # no indentation }; "steinmetz" = { stripPrefix = 0; - md5.run = "c56caecb04617874e6b5101b3b9f39fb"; + md5.run = "e52b069d2e07e574c8def4775f12461f"; md5.doc = "f314f8548104ac9b027a7bbb67e19c53"; md5.source = "fb3595a040f3fa0a2e21734efa7e9cb5"; hasRunfiles = true; @@ -20095,7 +20095,7 @@ tl: { # no indentation }; "stellenbosch" = { stripPrefix = 0; - md5.run = "efe122dfcf8d108a5243430cf40b82be"; + md5.run = "f12d48457b6d6f6988a0bd08a3864abb"; md5.doc = "3eddb61ddbb6c9b18cc11cbeb0ee9a1d"; md5.source = "b5c599d28130cc954320e4a678d9aff2"; hasRunfiles = true; @@ -20103,7 +20103,7 @@ tl: { # no indentation }; "stex" = { stripPrefix = 0; - md5.run = "88d443bc5c466a71a15fc9c7d2b7bbbb"; + md5.run = "40e5fc97ccabf9e8ef7ff42772666813"; md5.doc = "f483ce9c9453744e8379d06bf56f773c"; md5.source = "2f7b75aec065bccde96bd9c302192872"; hasRunfiles = true; @@ -20111,7 +20111,7 @@ tl: { # no indentation }; "stix" = { stripPrefix = 0; - md5.run = "0924ea54a41196222a17a937b8324210"; + md5.run = "d46510b7387a1f583d6606ea5aad3c61"; md5.doc = "305adaadf73ee34c5bb2548e502b9b99"; md5.source = "3bfba0ed7125f2f64ed487d12c3a2e52"; hasRunfiles = true; @@ -20126,7 +20126,7 @@ tl: { # no indentation }; "storebox" = { stripPrefix = 0; - md5.run = "4bc3749ba10e593b4fa9ecf34fedbabf"; + md5.run = "50ba673345870b888f351c38930a238b"; md5.doc = "ec2b1ffec5a05852f9671d264b04cb2e"; md5.source = "f0d2b614732e091932592fecf7c4a0a6"; hasRunfiles = true; @@ -20134,14 +20134,14 @@ tl: { # no indentation }; "storecmd" = { stripPrefix = 0; - md5.run = "0b650556bd51bc29ca27ff079701b984"; + md5.run = "b80efb392a0048e6f15c95084fd3361a"; md5.doc = "201c29bbd96ef0e9a22352b69a48099a"; hasRunfiles = true; version = "0.0.2"; }; "stringstrings" = { stripPrefix = 0; - md5.run = "c0271c1c57f875a6c63f920c0ad48c6a"; + md5.run = "bb564a3b8e6e81fde1d9b2ef6bed665c"; md5.doc = "764ba901e4b570c169c6c646d61151c0"; md5.source = "0f03fb298a2f8b24611d47ebff210e92"; hasRunfiles = true; @@ -20149,7 +20149,7 @@ tl: { # no indentation }; "struktex" = { stripPrefix = 0; - md5.run = "ffc453bde58813513be2c248c17fc247"; + md5.run = "48417d1b5036dcbc18c883e2e592cd1a"; md5.doc = "a72db273e7b11f7ca356281e4d8b0994"; md5.source = "6a8997c34b1163a763c0c9b25a5bd44c"; hasRunfiles = true; @@ -20157,7 +20157,7 @@ tl: { # no indentation }; "sttools" = { stripPrefix = 0; - md5.run = "97df2032962b91a45623a46f04df5d28"; + md5.run = "daa90f0041ca31c25a6c894ad44e1417"; md5.doc = "1d5b7e2a93929ce1897c5cbeea69b564"; md5.source = "95937f7397fd814fd073bacb9672465f"; hasRunfiles = true; @@ -20165,7 +20165,7 @@ tl: { # no indentation }; "stubs" = { stripPrefix = 0; - md5.run = "ee9967bc59eec967e50ac3fb041fe972"; + md5.run = "4b0ff1c016c3d1fc8d9b47dbcef2dd49"; md5.doc = "70f9d65de0d4615a58136d63fcf00bad"; hasRunfiles = true; version = "0.1.1"; @@ -20184,7 +20184,7 @@ tl: { # no indentation }; "subdepth" = { stripPrefix = 0; - md5.run = "3a0383ac7c626bf274f3798c15bd9970"; + md5.run = "b8ce92a37d85d4ca89184f73c7848a51"; md5.doc = "ad141e0b384f00a9403a00d133de7973"; md5.source = "b27ccb4066ab4187840086415e3efd43"; hasRunfiles = true; @@ -20192,7 +20192,7 @@ tl: { # no indentation }; "subeqn" = { stripPrefix = 0; - md5.run = "0a0fa90d83fe49203c97223dd997941f"; + md5.run = "f80cfb310adc0189ed0a48647b56f1b7"; md5.doc = "6ffba779c9ffeea899ad5db6fb35dab1"; md5.source = "d8775e36b16044160292c20c4d072403"; hasRunfiles = true; @@ -20200,7 +20200,7 @@ tl: { # no indentation }; "subeqnarray" = { stripPrefix = 0; - md5.run = "e817447e56100a7f535db5991b5a0dc7"; + md5.run = "50a508f12a43bb6a93b62d4482898fdd"; md5.doc = "85ccb877458e18bfc2775bf412659b1d"; md5.source = "a91e44797a5b138654af5a2a02436a5b"; hasRunfiles = true; @@ -20216,7 +20216,7 @@ tl: { # no indentation }; "subfigmat" = { stripPrefix = 0; - md5.run = "c919e6e42f450357b0e6790c65c332dd"; + md5.run = "64071e22a36d8f21dcc0da8be8ebe3ce"; md5.doc = "ef7e0c6acaef65cfad7bdd6ec5b86c3c"; hasRunfiles = true; version = "1.0"; @@ -20231,7 +20231,7 @@ tl: { # no indentation }; "subfiles" = { stripPrefix = 0; - md5.run = "2516c12411b0088381857680507a5c39"; + md5.run = "41408266ccd3dd9f3875b3ea1d57bdb7"; md5.doc = "dd0da58c699f1c95ea97ce303b5bd0ef"; md5.source = "862ed9533f1772a9fde9bc6a48dd4dd3"; hasRunfiles = true; @@ -20239,7 +20239,7 @@ tl: { # no indentation }; "subfloat" = { stripPrefix = 0; - md5.run = "ec97340656b1c075b039f9721cbc3538"; + md5.run = "a65bf4b1f591581c77c76ccd50c890a9"; md5.doc = "be025f3f80590b113453e4482d9cc306"; md5.source = "0bb18264341331ab7e3708903b5fb130"; hasRunfiles = true; @@ -20247,21 +20247,21 @@ tl: { # no indentation }; "substances" = { stripPrefix = 0; - md5.run = "a7185f640a5a8fde99d006c8567cf3a1"; + md5.run = "b37d10f0a95981f9929c756a7c93fa7b"; md5.doc = "47290f8f40ada5d7cb975168040d4389"; hasRunfiles = true; version = "0.1"; }; "substitutefont" = { stripPrefix = 0; - md5.run = "1899699d629c1576ad13a78068a23028"; + md5.run = "7177131644e6e6d9c6424b3143cbc1ce"; md5.doc = "aa129cb22971134dc7af85df4633f1d4"; hasRunfiles = true; version = "0.1.4"; }; "substr" = { stripPrefix = 0; - md5.run = "5daf0788c9b4dae3282151a067275028"; + md5.run = "af250019e8ba2b3464b4d2875dac2ab9"; md5.doc = "769315d6eed4b381035a392c3c19da3a"; hasRunfiles = true; version = "1.2"; @@ -20275,7 +20275,7 @@ tl: { # no indentation }; "sudoku" = { stripPrefix = 0; - md5.run = "8f2b397933f8f1c5194e12baa1491111"; + md5.run = "4acf036653d9d47ab1d59f7930992c1f"; md5.doc = "2da75afe51eb1d1284cad250c24ed54d"; md5.source = "c6a454f6f936cec1ff68b99e9402ca4b"; hasRunfiles = true; @@ -20283,7 +20283,7 @@ tl: { # no indentation }; "sudokubundle" = { stripPrefix = 0; - md5.run = "bca6a170ff49160306c4333350beb81e"; + md5.run = "4179ac42558c08ae40ff3d83539c37e3"; md5.doc = "a056c36d7efa80331be1d9f5228079a4"; md5.source = "dbd95f1ebe657836e2bfbcafc6a9a0d1"; hasRunfiles = true; @@ -20291,7 +20291,7 @@ tl: { # no indentation }; "suftesi" = { stripPrefix = 0; - md5.run = "ffbf04354318c05f1c6c50577776f680"; + md5.run = "dcab7897383537a0aa5573fe0339554d"; md5.doc = "706b74be82120cf93cc60d6433f0d840"; md5.source = "da6365a04313295706b0c4c16e6bff32"; hasRunfiles = true; @@ -20299,20 +20299,20 @@ tl: { # no indentation }; "sugconf" = { stripPrefix = 0; - md5.run = "3cb15dc48514544a3a7e9d9e31bfcca6"; + md5.run = "fa2ddf6fff27a7a531ba29857bfe145c"; md5.doc = "dcfddd128aba5ae1e71567026a00c931"; hasRunfiles = true; }; "superiors" = { stripPrefix = 0; - md5.run = "3a8f418097930ecd165a92cf7d65ae27"; + md5.run = "b5e15e4b3b4a135745c46f90ab56a330"; md5.doc = "d35caacda66edbabf0b63f155c1dd49d"; hasRunfiles = true; version = "1.05"; }; "supertabular" = { stripPrefix = 0; - md5.run = "6be58f5a7888110ae371d7428b65daae"; + md5.run = "3b1c85e40103b1a08d2c60d1f09c48e9"; md5.doc = "2577a70455efea1cfb80e560f9d04976"; md5.source = "b907e08d8266e15fe0ef99d3cfeeca7a"; hasRunfiles = true; @@ -20326,7 +20326,7 @@ tl: { # no indentation }; "svg" = { stripPrefix = 0; - md5.run = "010bb02649b491f1daf49dad0d4139d1"; + md5.run = "74600d7fd00a6c65188375334b527997"; md5.doc = "8007b1f3c75d3137e81e764ce431d1e3"; md5.source = "8c6582bdfd141fb5e115aeef80dc7625"; hasRunfiles = true; @@ -20339,21 +20339,21 @@ tl: { # no indentation }; "svgcolor" = { stripPrefix = 0; - md5.run = "e19dc6ea837a380c2611b3e5fe6e1aa1"; + md5.run = "c6b417aced986d1ebc61bf6a980c339d"; md5.doc = "fea3025e85b156e07405407819670db8"; hasRunfiles = true; version = "1.0"; }; "svn" = { stripPrefix = 0; - md5.run = "cfd9cf364f4a87c0072e6fd943b6e6ec"; + md5.run = "03c3ffd1162300a1c32921fcef2e7afb"; md5.doc = "43d06f5158d01e9e2f57b3424d9efeda"; md5.source = "4842f8c98654264492c64c5584472291"; hasRunfiles = true; version = "43"; }; "svn-multi" = { - md5.run = "95397dbd812fb7704fed3a923ff5ee64"; + md5.run = "9fb4907bb14c3f819e5c22434d0f9c70"; md5.doc = "5a061d64b61410596c58dd1ccb80028a"; md5.source = "ff089c8af836ada8ee3c40b3050efa6c"; hasRunfiles = true; @@ -20361,7 +20361,7 @@ tl: { # no indentation }; "svn-prov" = { stripPrefix = 0; - md5.run = "2eefcf8b960c5d7c1a3b245e73bc22bb"; + md5.run = "d80f9b5d1d8d28eaf8ced4bfb9003d08"; md5.doc = "98c58cabd1c2ecf4925fe3843de08173"; md5.source = "ce784feb2d3fd5bd173332a9d7c12d24"; hasRunfiles = true; @@ -20369,7 +20369,7 @@ tl: { # no indentation }; "svninfo" = { stripPrefix = 0; - md5.run = "a3b9012aff6e2a9fa2d9177d616971e7"; + md5.run = "e306953ff6263248d08e188e5e8b21ed"; md5.doc = "d191f99e80d7dcef7431ff4a32686686"; md5.source = "d919954e4cdad1084ade4b537b67510b"; hasRunfiles = true; @@ -20383,7 +20383,7 @@ tl: { # no indentation }; "swimgraf" = { stripPrefix = 0; - md5.run = "4eef32d1160c7ce39ab8b8f708a968f7"; + md5.run = "3bc190d214decbdc6a89b37802e689d2"; md5.doc = "3b9b9017b5f05b58b95414f84ea5344f"; hasRunfiles = true; }; @@ -20419,13 +20419,13 @@ tl: { # no indentation }; "syntax" = { stripPrefix = 0; - md5.run = "24fbd02bb68c480ceb59a4e3c8cc3b3c"; + md5.run = "c953450ab18edb2c34518aef4b74cf10"; md5.doc = "829b93ab6e174073ba6c95707b34442d"; hasRunfiles = true; }; "syntrace" = { stripPrefix = 0; - md5.run = "15ae5637c60f215aa3ec3ed8daea852d"; + md5.run = "b7d2628eff4309e609905ac27462acc1"; md5.doc = "4e97f4c3d341944d89f4bf93d4a2cbc6"; md5.source = "a7c72776c1efc0c1b03bf5dcc2df8edb"; hasRunfiles = true; @@ -20433,7 +20433,7 @@ tl: { # no indentation }; "synttree" = { stripPrefix = 0; - md5.run = "8f3c774bb784d51a150eed87562c469b"; + md5.run = "306eb4388bb5c6f90f7ff86c417be491"; md5.doc = "144884091a2e7c0dc188e8717405d396"; md5.source = "e846afc9aa8059ae2511ea02caf77698"; hasRunfiles = true; @@ -20441,14 +20441,14 @@ tl: { # no indentation }; "systeme" = { stripPrefix = 0; - md5.run = "8d174bf02619e7fb0b03ff9388d358d3"; + md5.run = "1adfb80247adb8985939e1352087c7f9"; md5.doc = "9b4c2a20a15c080cc66191ec5a8f0d97"; hasRunfiles = true; version = "0.3"; }; "t-angles" = { stripPrefix = 0; - md5.run = "f802f9c6e599d193b52ddcc02d2eb4d3"; + md5.run = "e6d6e4f86718563f8ce647cc0f02947a"; md5.doc = "e6092b1ebc24a7c149009192618dffef"; hasRunfiles = true; }; @@ -20465,7 +20465,7 @@ tl: { # no indentation }; "tabfigures" = { stripPrefix = 0; - md5.run = "31e233f952728070879919fc64e99b76"; + md5.run = "2a585067900a35f913b0728c2ae468c5"; md5.doc = "a82035652f376f4ea5045fbb53be452c"; md5.source = "22a09708c5c0d2830eb2263b1d7c6413"; hasRunfiles = true; @@ -20473,13 +20473,13 @@ tl: { # no indentation }; "tableaux" = { stripPrefix = 0; - md5.run = "358a4708956cd59ac9378cfb8ca77da1"; + md5.run = "cadfdac37eca673c3149abea1a7fa184"; md5.doc = "1a4def52819c9d70cc9390b39496dd56"; hasRunfiles = true; }; "tablefootnote" = { stripPrefix = 0; - md5.run = "da0275d5c7813c0e0c472dfab83b5d0b"; + md5.run = "fa31608607172664d564cc52d3442123"; md5.doc = "a7a1cc5674ced2805b2806306cae9791"; md5.source = "56644f22f9455d6086fc657943607059"; hasRunfiles = true; @@ -20487,7 +20487,7 @@ tl: { # no indentation }; "tableof" = { stripPrefix = 0; - md5.run = "bea783e35b04ea73873f16a9c4c5f953"; + md5.run = "00e3d464c2b36711a2d120081331b5cd"; md5.doc = "729debe7b5faa598d679c43617bcad09"; md5.source = "6006e87eb7a03f98909b3e62dc8f5a96"; hasRunfiles = true; @@ -20495,14 +20495,14 @@ tl: { # no indentation }; "tablestyles" = { stripPrefix = 0; - md5.run = "fb41b03ebd52c6ac5aab9784b53777b2"; + md5.run = "7730db0559be31ee29cca1962f4c3470"; md5.doc = "6f3911f907041a9bcdcbe73baa253f4b"; md5.source = "8e59dca0541a4585f48c35fd41398dd4"; hasRunfiles = true; }; "tablists" = { stripPrefix = 0; - md5.run = "9c65bb5e0e04839d6a0fdb9c0b92c04c"; + md5.run = "24fdb9becaade22855d760a94097f209"; md5.doc = "963b7409f7142bcdd0859abbba91e541"; md5.source = "421312bd7bf77947013c98c23f1179e9"; hasRunfiles = true; @@ -20517,40 +20517,40 @@ tl: { # no indentation }; "tabls" = { stripPrefix = 0; - md5.run = "b7bbe1b5008f089f2269c4cee3c0ffdc"; + md5.run = "c4351a05898c7caad947e148426ad504"; md5.doc = "12846375e98f96fa1f483c40dfb898df"; hasRunfiles = true; version = "3.5"; }; "tabriz-thesis" = { stripPrefix = 0; - md5.run = "a8026b626fac520710df1d76a3a3912b"; + md5.run = "dbb782197af7c097eba4a6a4398b4028"; md5.doc = "1f9ac9d6e407668f76f80df946f3adfd"; hasRunfiles = true; version = "1.1"; }; "tabstackengine" = { stripPrefix = 0; - md5.run = "f06326420086c91a4ad8f2e6baf09f2d"; + md5.run = "9897acef754b028e66308c2e56bb7ac5"; md5.doc = "de75c8b4d764b380b2c2243f66ac3444"; hasRunfiles = true; version = "1.10"; }; "tabto-generic" = { stripPrefix = 0; - md5.run = "e9478ed1b7f1f3e39808845a670f054e"; + md5.run = "e40f626ab3cdcd71130ad1c02fb60491"; hasRunfiles = true; }; "tabto-ltx" = { stripPrefix = 0; - md5.run = "72e9f5dddee02bfb93461f6b042d1e35"; + md5.run = "a75c0ef8a20ce750fd4f33f3a07be112"; md5.doc = "b9597f829950b8826fbbd44e1bb0cda0"; hasRunfiles = true; version = "1.3"; }; "tabu" = { stripPrefix = 0; - md5.run = "c0ddc6e88f7a0a066a973a40ccf69404"; + md5.run = "42637301da8a4c03d96479af4bdc434b"; md5.doc = "b7577254f85760bd2f8f377d225e7d38"; md5.source = "9db6c038ab99887d3cabcd301e09ff0c"; hasRunfiles = true; @@ -20558,7 +20558,7 @@ tl: { # no indentation }; "tabularborder" = { stripPrefix = 0; - md5.run = "7142ce2ec4a4aa9200fc665b2ce48fcc"; + md5.run = "da52cba7df0fe5ac124b87499a0acd0b"; md5.doc = "bc1e0d12d1a31c8f08c94b458ee6be2a"; md5.source = "7c36e5f512564ecb1b29856e05e56886"; hasRunfiles = true; @@ -20566,14 +20566,14 @@ tl: { # no indentation }; "tabularcalc" = { stripPrefix = 0; - md5.run = "f73717f99965902bb137e75293245b36"; + md5.run = "eb1bc337cdf4ad2bf72d5ffe418b73ee"; md5.doc = "dcf3bdcc78859895a99c00cee3f65c55"; hasRunfiles = true; version = "0.2"; }; "tabularew" = { stripPrefix = 0; - md5.run = "574c96fae33a628d3006582694705db8"; + md5.run = "8319a4ae0ead8c25c1527191039eb148"; md5.doc = "bc9763b09bad5aead40aba8087cfca46"; md5.source = "7fbc7e7c90f63670a073a1fd18757dab"; hasRunfiles = true; @@ -20587,7 +20587,7 @@ tl: { # no indentation }; "tabulary" = { stripPrefix = 0; - md5.run = "53863460ac9c9664a9ba8213ee7b1545"; + md5.run = "e6e54ea1df9fce48dfa33bbf1f328905"; md5.doc = "6296a54505891a8d94fd313e0970a234"; md5.source = "c4f34fb6a84df6d3cb437c836fe74db7"; hasRunfiles = true; @@ -20603,13 +20603,13 @@ tl: { # no indentation }; "tagging" = { stripPrefix = 0; - md5.run = "8c3004970250d6625d485eede9232e9d"; + md5.run = "ecc3f6f5d0971cfe469d5842a17c0476"; md5.doc = "ca26eb81290ae89d2f66d783603edbed"; hasRunfiles = true; }; "talk" = { stripPrefix = 0; - md5.run = "02b19b51d3197799b40902eedf5b7e07"; + md5.run = "d4d766e2f5c05e2d24c3dde722469766"; md5.doc = "ba3385cfc589fb03a80c1ec1726e3927"; md5.source = "c4c627eca90f13062584875143f5ba30"; hasRunfiles = true; @@ -20617,7 +20617,7 @@ tl: { # no indentation }; "tamefloats" = { stripPrefix = 0; - md5.run = "115e06096e466ba6f2d8ebafa9f96d73"; + md5.run = "3ae6536019dbcf9741fbcfd445bc9ea6"; md5.doc = "9f04ee13675e8c7cd509c46e51b776db"; hasRunfiles = true; version = "v0.42"; @@ -20637,21 +20637,21 @@ tl: { # no indentation }; "tapir" = { stripPrefix = 0; - md5.run = "d10ee101f600b69a7769fa47f528235c"; + md5.run = "5e662d2dbf5dbe5ee43978102b13ed0a"; md5.doc = "76078306a9ab242b67b8799c8d75e3b6"; hasRunfiles = true; version = "0.2"; }; "tasks" = { stripPrefix = 0; - md5.run = "cbb9def64876887bbbde2eeef485c513"; + md5.run = "2b76e81b4207e4cd1a2d842841fbd091"; md5.doc = "dd68a6b248bbd0bc7545c24623a224f6"; hasRunfiles = true; version = "0.10a"; }; "tcldoc" = { stripPrefix = 0; - md5.run = "394225935de1658e83330f35695bd91c"; + md5.run = "6b1b46ba6d54aabf522c192efb751d13"; md5.doc = "68504c96adf52ae73015d678296fb292"; md5.source = "f8d2eecba8c3402284b5a0608762bfee"; hasRunfiles = true; @@ -20659,14 +20659,14 @@ tl: { # no indentation }; "tcolorbox" = { stripPrefix = 0; - md5.run = "21354bf13ada83592b1459fad6f02fc6"; + md5.run = "67f451c806da22629cdd15c5d3c70096"; md5.doc = "81835ba1227e12f77ec5e0eb0ad7b37e"; hasRunfiles = true; version = "3.50"; }; "tdclock" = { stripPrefix = 0; - md5.run = "a4122ecdc8e7ad364f7100286d54e86b"; + md5.run = "e38ef77e602ad2c39453119ed2d4ef27"; md5.doc = "05f8603d440a987409e6863029a1e2f0"; hasRunfiles = true; version = "v2.5"; @@ -20687,14 +20687,14 @@ tl: { # no indentation }; "technics" = { stripPrefix = 0; - md5.run = "59cfa39d15a9d0fba43d8f5817bcb1a2"; + md5.run = "93b051ac927aba9254b97a7eb33d18b7"; md5.doc = "983b701bd5d62c1c1fe76999850c929f"; hasRunfiles = true; version = "1.0"; }; "ted" = { stripPrefix = 0; - md5.run = "7186290f04978f0c030ee0bb1c73bd04"; + md5.run = "56ce780c33d1bd746a7bbfa6e4d40f6b"; md5.doc = "35473e006792b6b520e5711c5b0ec755"; md5.source = "51efe90aa713a7bf16880fd262d2f80c"; hasRunfiles = true; @@ -20712,14 +20712,14 @@ tl: { # no indentation }; "templatetools" = { stripPrefix = 0; - md5.run = "a6a374f3ce8f9b393a6fa402f4bed1ea"; + md5.run = "67d5a08809b0c2ce928aad1f15a4d2f5"; md5.doc = "b8cea094abaefbe1186ed50b81991c2f"; md5.source = "75a38a1c40ed8286910bf671677c14c5"; hasRunfiles = true; }; "tengwarscript" = { stripPrefix = 0; - md5.run = "0db828d08c1763677fbd7f029b1a7868"; + md5.run = "9f403d8cf82a1ec263e5fc94fee07e86"; md5.doc = "d168f485ea2c2417a2c0c0fafd7b6a6f"; md5.source = "12f61f7b919e92a4cd4819dd168b7d22"; hasRunfiles = true; @@ -20735,7 +20735,7 @@ tl: { # no indentation }; "termcal" = { stripPrefix = 0; - md5.run = "4bde245fd5d92ad6f95fe011a2e6d508"; + md5.run = "6c825919438e4fb8cc3335b5d847c359"; md5.doc = "683bbcc42fc558c765f1e3dc37aba848"; md5.source = "39b52675463be16cc309c3954900fa2b"; hasRunfiles = true; @@ -20743,7 +20743,7 @@ tl: { # no indentation }; "termlist" = { stripPrefix = 0; - md5.run = "3b692808f1aabd251ecc22539d3dcdc6"; + md5.run = "7cac70002ae3661f6f7c3f2e33cef7b8"; md5.doc = "8a82e2f44c944b33e91ef5b9fadc0ca1"; md5.source = "3b2d2bb2d7e1b4ab5493a1cb507f1559"; hasRunfiles = true; @@ -20751,7 +20751,7 @@ tl: { # no indentation }; "testhyphens" = { stripPrefix = 0; - md5.run = "09d03cd347f3f292dfc3bc896d0f6eea"; + md5.run = "605ec76da4bf2162ae486f8235681681"; md5.doc = "666a3caf96728d6f6ca92cb8e5cfdcc7"; md5.source = "93b8d3ac68032622867a0689a422e6dd"; hasRunfiles = true; @@ -20765,7 +20765,7 @@ tl: { # no indentation }; "teubner" = { stripPrefix = 0; - md5.run = "bc17e1c7f501d3f02a7f6053dd9f661b"; + md5.run = "bdf51bdf264bfecad8e50ab823dbaa29"; md5.doc = "3ce57a9b7ac314867c99ddb089e3a5c9"; md5.source = "75fd38e847517cc5f21d015cb52d097a"; hasRunfiles = true; @@ -20805,7 +20805,7 @@ tl: { # no indentation }; "tex-label" = { stripPrefix = 0; - md5.run = "65fb543e9fbadce20bce13c9b324ac7b"; + md5.run = "a22da2539f03b7a54b81cab9ddafa515"; md5.doc = "867cb64d894256d43b22216baba91bc3"; md5.source = "eef239310e620be97cf413519829482e"; hasRunfiles = true; @@ -20840,7 +20840,7 @@ tl: { # no indentation }; "texapi" = { stripPrefix = 0; - md5.run = "0f52652a2c03b673819792daab24aa3f"; + md5.run = "e2be05403cf05680afaceb0bfda5036b"; md5.doc = "eb9caf1f3cdf9f2bc7750d8efba0805d"; hasRunfiles = true; version = "1.04"; @@ -20888,7 +20888,7 @@ tl: { # no indentation }; "texdraw" = { stripPrefix = 0; - md5.run = "86fc55285ffc1992edf6ab365fa77e3d"; + md5.run = "7f06093306ba9e241e934e1906bedb75"; md5.doc = "787fd4ac0b1bf38ec27c3577ea7d0594"; hasRunfiles = true; }; @@ -20899,13 +20899,13 @@ tl: { # no indentation }; "texilikechaps" = { stripPrefix = 0; - md5.run = "3ccdd03d7de6c792a4070b36a60c40ec"; + md5.run = "5bf25e97f8a8f415efd55bd8b681eecc"; hasRunfiles = true; version = "1.0a"; }; "texilikecover" = { stripPrefix = 0; - md5.run = "502700300afdaf2ff7346b24c9efe489"; + md5.run = "e84a45860a6094d15096d40cd656b225"; hasRunfiles = true; version = "0.1"; }; @@ -20992,13 +20992,13 @@ tl: { # no indentation }; "texlogos" = { stripPrefix = 0; - md5.run = "3ad1f7bbeffcc5cc7ffd47543333fad9"; + md5.run = "7a3e95174180a745a76e00abd93be491"; hasRunfiles = true; version = "1.3.1"; }; "texmate" = { stripPrefix = 0; - md5.run = "fe632bb7fafa6f44becf64cf09822c1a"; + md5.run = "690283030a27051c7bca51e17530fb23"; md5.doc = "9864003fa1dc054eb50c4896109334de"; md5.source = "d7cc68322cf46dd633801311c98cd77f"; hasRunfiles = true; @@ -21006,7 +21006,7 @@ tl: { # no indentation }; "texments" = { stripPrefix = 0; - md5.run = "76cdba2e477a891561d366e4244f9d7b"; + md5.run = "c7daa05f334819c2dcc58049570eb0b0"; md5.doc = "aebf18a9a3dddbd75f01f24b4138cb28"; md5.source = "dd02403d32ce9a778dbe0f4c51d734f5"; hasRunfiles = true; @@ -21015,7 +21015,7 @@ tl: { # no indentation "texpower" = { stripPrefix = 0; deps."tpslifonts" = tl."tpslifonts"; - md5.run = "8a124d475307b45c9750c518a15be600"; + md5.run = "ea7a106525f976acf6208751894988f6"; md5.doc = "739b90cc5c951a1a9ce091bfc5fc4499"; md5.source = "503d51032a545fb521729315de6b1c07"; hasRunfiles = true; @@ -21023,7 +21023,7 @@ tl: { # no indentation }; "texshade" = { stripPrefix = 0; - md5.run = "b23548c66cdcce15320366e558ccfb86"; + md5.run = "ba8255911ffa8994d5836b894b750f0e"; md5.doc = "14eedff76a945683a7bc0f12b82bf6ed"; md5.source = "5e96667b7e96d66fc071b472fbb6ba22"; hasRunfiles = true; @@ -21031,7 +21031,7 @@ tl: { # no indentation }; "texsis" = { deps."tex" = tl."tex"; - md5.run = "64bf99f00a3a66e20bf24acec87bbc59"; + md5.run = "d9f8464567cce8f2a5349f98884bcf4d"; md5.doc = "2b1a1ac53c48a8c39cc51793449cfdb6"; hasRunfiles = true; version = "2.18"; @@ -21045,7 +21045,7 @@ tl: { # no indentation }; "textfit" = { stripPrefix = 0; - md5.run = "779241be0bb27f98a95549df05c84ef5"; + md5.run = "26ca82200747d87a01eed08910fbdbe3"; md5.doc = "d751751a59416bf54a677373ef07165c"; md5.source = "6c64d63ff8cd0c29f9e31aeee2466eb6"; hasRunfiles = true; @@ -21053,7 +21053,7 @@ tl: { # no indentation }; "textglos" = { stripPrefix = 0; - md5.run = "90fe3428a23ee6b50b1b09ac40ed4550"; + md5.run = "7bf0535901180fc88b5419fed39845b7"; md5.doc = "2d2ec71def0b16fc98430e449254fce0"; md5.source = "d26a61e43b0bba47b493b821fbed4dff"; hasRunfiles = true; @@ -21061,7 +21061,7 @@ tl: { # no indentation }; "textgreek" = { stripPrefix = 0; - md5.run = "1da2ec03ef1c15daeb8c84f91680d49c"; + md5.run = "73fafd55d9257a162262844752e8c793"; md5.doc = "66805f49e80d213f5ebb995db47ce357"; md5.source = "d954c9e261b814cad05e6305f26935bb"; hasRunfiles = true; @@ -21069,7 +21069,7 @@ tl: { # no indentation }; "textmerg" = { stripPrefix = 0; - md5.run = "a1c072b97fedbcc2e3050833cda233db"; + md5.run = "65c5f8e52e993711274d36566e0e179d"; md5.doc = "c95a8452f82d7b75fab60cc1e9819c77"; md5.source = "dcfff384dad57ff7037852bf12812dd5"; hasRunfiles = true; @@ -21077,7 +21077,7 @@ tl: { # no indentation }; "textopo" = { stripPrefix = 0; - md5.run = "e61ac2430386e05c1ec4dccb74610e26"; + md5.run = "437d787e19147fb2dfb2ba62cb11b2ca"; md5.doc = "58489562bd046c6c2fe167e53fa9aea8"; md5.source = "dc6e64d81c537409972a35b17cf40f81"; hasRunfiles = true; @@ -21092,7 +21092,7 @@ tl: { # no indentation }; "textpos" = { stripPrefix = 0; - md5.run = "b29897c882b2777298fc7c37e9ba6aa7"; + md5.run = "90373b5e365682d040c5204392796c22"; md5.doc = "0712b43364527c62d3a2eb2856b3a16d"; md5.source = "87bc2f487f76f053ee693df727dc6d77"; hasRunfiles = true; @@ -21109,7 +21109,7 @@ tl: { # no indentation }; "tfrupee" = { stripPrefix = 0; - md5.run = "c08d4b3582d5bf484dc1a22c35592a23"; + md5.run = "bca4920888bc783801c42b01d3e80537"; md5.doc = "fa3a8218fb8d4841c689bfbf9924069b"; md5.source = "80157b72b03cafc30e8d3af0ee519785"; hasRunfiles = true; @@ -21117,7 +21117,7 @@ tl: { # no indentation }; "thalie" = { stripPrefix = 0; - md5.run = "13537226fe97cb4c36ac23841bbcec03"; + md5.run = "c6ca22fed9405f9a4adfaff10d722c8f"; md5.doc = "72d98b7cafcfbf7ef316cc24d2231afc"; md5.source = "3368d8b6ebe00c8b898818caf51e1c80"; hasRunfiles = true; @@ -21125,13 +21125,13 @@ tl: { # no indentation }; "theoremref" = { stripPrefix = 0; - md5.run = "256e1fbfe03743ae923b76bca20d5dae"; + md5.run = "a5e0fea3645e8f92708d8ab7c3023d85"; md5.doc = "28a4a43748de494ad855df34d78bdc2e"; hasRunfiles = true; }; "thesis-ekf" = { stripPrefix = 0; - md5.run = "52463d2bbc192aafd9331c37c505a109"; + md5.run = "24ac123bd650536efe439ec6ebc3f056"; md5.doc = "bc6e054101f96dc11a3ea344f384a4b8"; md5.source = "34f0a73f0ea45295f6bea69980a1f920"; hasRunfiles = true; @@ -21139,7 +21139,7 @@ tl: { # no indentation }; "thesis-titlepage-fhac" = { stripPrefix = 0; - md5.run = "8bec5ec30a541b44e8fb46f0364710b9"; + md5.run = "2cc5796616c8c2756b1b6f187a01fc15"; md5.doc = "97d092f287cbb93afcaf41257f41d8b5"; md5.source = "6dd1e6d2a4990261a4bf313bd65d87f5"; hasRunfiles = true; @@ -21147,7 +21147,7 @@ tl: { # no indentation }; "thinsp" = { stripPrefix = 0; - md5.run = "caf0965c5c07fb3e9b83dfc24dd1a9e0"; + md5.run = "b6cf8e64a9d5467266283e156d5da9e2"; md5.doc = "bca75d83747aba10883d62f84fb1688d"; hasRunfiles = true; version = "0.1"; @@ -21161,7 +21161,7 @@ tl: { # no indentation }; "thmtools" = { stripPrefix = 0; - md5.run = "9c7dd87b9120ea6bd7fa2382d740f3a9"; + md5.run = "b063f726e90ed55f21c01ddcd7d7347e"; md5.doc = "b37c0345e1ebcf4fb6536c2bae5ca066"; md5.source = "1945a08e5c0cdb3810c20f427e7f7521"; hasRunfiles = true; @@ -21169,7 +21169,7 @@ tl: { # no indentation }; "threadcol" = { stripPrefix = 0; - md5.run = "1f5513399e31076e38d0fbf5c79924e8"; + md5.run = "128aa38d686e065795ed0a6bcab4345f"; md5.doc = "2cda3eefbdee987c6290609d5c7237fa"; md5.source = "afe97280e850c8a3ce6904e86e2b6437"; hasRunfiles = true; @@ -21184,20 +21184,20 @@ tl: { # no indentation }; "threeparttable" = { stripPrefix = 0; - md5.run = "5ccc7f5fc5cca62b3a21fae1e7d6e7b8"; + md5.run = "aaebb3485b33c133822fa6f1cfb9a4db"; md5.doc = "f77192b2ad4aa86d41db58e224bcb528"; hasRunfiles = true; }; "threeparttablex" = { stripPrefix = 0; - md5.run = "211fa2d738775ab1ea0281743bf9220b"; + md5.run = "e207e3f9044090b3c8418ba6d16f2de2"; md5.doc = "220d86b042df71805e15fd226383487d"; hasRunfiles = true; version = "0.3"; }; "thumb" = { stripPrefix = 0; - md5.run = "b27a0e98cc28a6324f00c2cdfdb85a8f"; + md5.run = "19fc026bf855827b3bec154ab7eafa9d"; md5.doc = "18bf33c0bd6eae1567c52409196cd6f7"; md5.source = "31f4cfd1a5187778d4d17a3fee475986"; hasRunfiles = true; @@ -21211,7 +21211,7 @@ tl: { # no indentation }; "thumbs" = { stripPrefix = 0; - md5.run = "261a5fbe21e38213f89ae1580b9c1f2d"; + md5.run = "07ee3f933c900f081995aff007b01660"; md5.doc = "878f1eaafc6ae261e12d2dee5e6bf0c5"; md5.source = "8b65cddcfbb689924e7ab47a71995bf4"; hasRunfiles = true; @@ -21219,14 +21219,14 @@ tl: { # no indentation }; "thumby" = { stripPrefix = 0; - md5.run = "17f827a8b1ef72f912a6fcebc756ac1b"; + md5.run = "83a12850f7a761f8f651a0de6ffce912"; md5.doc = "2402123c8d53706c47fe8da78d9b887d"; hasRunfiles = true; version = "0.1"; }; "thuthesis" = { stripPrefix = 0; - md5.run = "71fd6e2b104f5bd63281f834363b4e53"; + md5.run = "c2d1d2bcb589d0ca6d135825c41ac569"; md5.doc = "4817697fb43a4050707ca5d4f1a83342"; md5.source = "39b01f99f38818063c97d6c9e7ad6090"; hasRunfiles = true; @@ -21234,14 +21234,14 @@ tl: { # no indentation }; "ticket" = { stripPrefix = 0; - md5.run = "e30b964a509b2c8af02632bb6a293e44"; + md5.run = "54716fd70e7c6d3c8b620ece8b1867ea"; md5.doc = "e8a8464774728f28f611338dfc976079"; hasRunfiles = true; version = "0.4b"; }; "ticollege" = { stripPrefix = 0; - md5.run = "f52daf6c9b60de8f4ff6a93272cd24e7"; + md5.run = "cd4bb11db0f61e8e5ba4dbf6c62cf34e"; md5.doc = "abe45eb85dc240c024f8c4397344e136"; hasRunfiles = true; version = "1.0"; @@ -21254,7 +21254,7 @@ tl: { # no indentation }; "tikz-3dplot" = { stripPrefix = 0; - md5.run = "ec05b4574fe47990c54ec35b0d2e5034"; + md5.run = "002d9dec511bfe0fcb4d5f90e0e7d437"; md5.doc = "efca4ef76aae57b30d4e0e0f596ecc35"; hasRunfiles = true; }; @@ -21266,49 +21266,49 @@ tl: { # no indentation }; "tikz-cd" = { stripPrefix = 0; - md5.run = "7fa43babfc84f2e965334b22c1bdbd2c"; + md5.run = "3cc3c2584a0267bc0c05c6d79d69197b"; md5.doc = "32bc537b8d1ddcf2298950b9035ee8c5"; hasRunfiles = true; version = "0.9e"; }; "tikz-dependency" = { stripPrefix = 0; - md5.run = "12b4d1ad32b89352cf29950e15cc30f7"; + md5.run = "7f657d94c2826f2c9068e04f601ed5c5"; md5.doc = "d21f3668e8f8d1d9c4b5ade303b81cc2"; hasRunfiles = true; version = "1.1"; }; "tikz-dimline" = { stripPrefix = 0; - md5.run = "fef91d693ba1d59afde7edfab587d9aa"; + md5.run = "f02f776bbf01052f4d033e076045f5b8"; md5.doc = "8ed9d2690032476b0f1cd47af20b689c"; hasRunfiles = true; version = "1.0"; }; "tikz-inet" = { stripPrefix = 0; - md5.run = "66e127b5d75e28cbc326a581b37fb588"; + md5.run = "2d2e2b0800249d03b8786c14d2817976"; md5.doc = "2ade860bff7d8dc8c660abd82a40cefb"; hasRunfiles = true; version = "0.1"; }; "tikz-opm" = { stripPrefix = 0; - md5.run = "e0b405b7ac1685b1cbd387cdbd78ed30"; + md5.run = "0f684690ef2112d8b1ee1ddc8a6da021"; md5.doc = "bbf04f488f5669ae5799fa7494f3ab58"; hasRunfiles = true; version = "0.1.1"; }; "tikz-palattice" = { stripPrefix = 0; - md5.run = "f8600dcdabfe6fac46e6163cd4a17c42"; + md5.run = "c36812b6093cfd01268012ed24e54735"; md5.doc = "b2d7f72e8f26dee2dc521e665ccfdbb3"; hasRunfiles = true; version = "2.21"; }; "tikz-qtree" = { stripPrefix = 0; - md5.run = "1329ed27a685ab643f6f10c04dedfbfb"; + md5.run = "9f96fbc60291500af9c9116202245e7d"; md5.doc = "4d8756d421fe070119d2d2657f584a27"; hasRunfiles = true; version = "1.2"; @@ -21316,7 +21316,7 @@ tl: { # no indentation "tikz-timing" = { stripPrefix = 0; deps."svn-prov" = tl."svn-prov"; - md5.run = "e8d2a754a3dfd22ef124ebec79d8fc0e"; + md5.run = "a4a12430788ce710d1f6c58676dc7192"; md5.doc = "8e771eacd58ebfe736d45f1921c005e1"; md5.source = "37fc065cffea6f0e85f488de9c5de5f7"; hasRunfiles = true; @@ -21324,7 +21324,7 @@ tl: { # no indentation }; "tikzinclude" = { stripPrefix = 0; - md5.run = "2853cd7bac095f63e867a7e67b137d6e"; + md5.run = "2f783f18ee96c51a0a3ebc753a0d16b5"; md5.doc = "eeb6a60fa945b7d37f910c394c72c13c"; md5.source = "08993903d0545fc1c3df7a977a53d6d4"; hasRunfiles = true; @@ -21332,7 +21332,7 @@ tl: { # no indentation }; "tikzmark" = { stripPrefix = 0; - md5.run = "ecdd89709a67e2d7187feae51aff50ef"; + md5.run = "1dd63af59d0bd0bdad347918e5ae7ed5"; md5.doc = "bb523a07344b7bb658bf863c982c05dc"; md5.source = "ab007a504e60f4c813e671d4c8b09531"; hasRunfiles = true; @@ -21340,13 +21340,13 @@ tl: { # no indentation }; "tikzorbital" = { stripPrefix = 0; - md5.run = "5b82b2d73e81009767d7ea35934f8aa1"; + md5.run = "025f667cd0c7ff61c116c13e2da2d726"; md5.doc = "1d20e30f82ba219ccdfa1eb8ddd49921"; hasRunfiles = true; }; "tikzpagenodes" = { stripPrefix = 0; - md5.run = "8561b21ad3213a506f37ed1e4c1c88e7"; + md5.run = "7fe6e8aca16e387890ca8c1b33236c4e"; md5.doc = "1af67fd956cb4eb48923ca5783a7a587"; md5.source = "51388f50b6d3979cf89209130bb1a3dd"; hasRunfiles = true; @@ -21354,7 +21354,7 @@ tl: { # no indentation }; "tikzpfeile" = { stripPrefix = 0; - md5.run = "7c3fc0922d3c177e14040710044fa431"; + md5.run = "5fbb65b3b9543e3966b09ae687f37490"; md5.doc = "17d8c05fe2448ca1e0dba64c9d4b9df2"; md5.source = "6e11b2a1ae31ee40cfe2450b7140298d"; hasRunfiles = true; @@ -21362,7 +21362,7 @@ tl: { # no indentation }; "tikzposter" = { stripPrefix = 0; - md5.run = "b5b981f2495d3c1489e2876f58ab9950"; + md5.run = "52020a093d1f064e80f02e3e40cd201f"; md5.doc = "1d48c8b277e26a44897a4ce2f0a73822"; md5.source = "3d58c03e5ee2cf3a308b043657cb808d"; hasRunfiles = true; @@ -21370,7 +21370,7 @@ tl: { # no indentation }; "tikzscale" = { stripPrefix = 0; - md5.run = "d6ca1bb5574cdd632fdbc40e1e7e5848"; + md5.run = "71ef8e2d59c6d0fa5e9b59fa62e59eaa"; md5.doc = "1e58b455bb12a884268b65df1447ec3e"; md5.source = "9bd4baba2c2f90ac41097d056cb1265c"; hasRunfiles = true; @@ -21378,7 +21378,7 @@ tl: { # no indentation }; "tikzsymbols" = { stripPrefix = 0; - md5.run = "8884beb5cca47c63d7ad382b7aa450b9"; + md5.run = "2d60ee4198ea89c5722404420fabbe5b"; md5.doc = "8eb6df0da9bec13925ca023f1ea2920d"; md5.source = "5c4a5e5b08c6b00fc73f4696e5337920"; hasRunfiles = true; @@ -21396,7 +21396,7 @@ tl: { # no indentation }; "timing-diagrams" = { stripPrefix = 0; - md5.run = "c367fdce2fbd1f2f54af74319a12a768"; + md5.run = "fd8fdee591e938caf1437b20cd0bb296"; md5.doc = "4b2372b2fa4fe0c4acedfaffdd7fb32a"; hasRunfiles = true; }; @@ -21421,14 +21421,14 @@ tl: { # no indentation }; "titlecaps" = { stripPrefix = 0; - md5.run = "e8308e201607cc9c84cf192849310fde"; + md5.run = "680dbdc546e9c3e490eb336a2519c394"; md5.doc = "91cce0222f5db49563c12f136567ec24"; hasRunfiles = true; version = "1.2"; }; "titlefoot" = { stripPrefix = 0; - md5.run = "f50750dacd8f236f6e5618e4204c6e24"; + md5.run = "5473a7550043644e3af386f59cd915fd"; hasRunfiles = true; }; "titlepages" = { @@ -21439,14 +21439,14 @@ tl: { # no indentation }; "titlepic" = { stripPrefix = 0; - md5.run = "213e1569db191590ce646f225aa4b731"; + md5.run = "90d3e931881083871e3f7182588eceea"; md5.doc = "454fbf84ca1b929996ddcd23182522da"; hasRunfiles = true; version = "1.1"; }; "titleref" = { stripPrefix = 0; - md5.run = "0100e82548d9975871300f267b57c4bd"; + md5.run = "028b8b867c9d01a1fda2d6aef35484cf"; md5.doc = "15cb44ed57aee2018e63581fc5ea87ab"; hasRunfiles = true; version = "3.1"; @@ -21460,7 +21460,7 @@ tl: { # no indentation }; "titling" = { stripPrefix = 0; - md5.run = "c2ce1556af35b60db028b3c3f33b507d"; + md5.run = "f2cd3fa73d9341a1fb0256cd52ba8d9d"; md5.doc = "3abb604e88c9673d1e1ef00be393c14a"; md5.source = "54f982d76d56ef1acc0192f3602cbe31"; hasRunfiles = true; @@ -21468,70 +21468,70 @@ tl: { # no indentation }; "tkz-base" = { stripPrefix = 0; - md5.run = "4fcbec71760758b9cf5269f27e755366"; + md5.run = "b0bf9b99d59a91b6b677c165156329ae"; md5.doc = "029a4bd55ae907d41251ec6691dbb42b"; hasRunfiles = true; version = "1.16"; }; "tkz-berge" = { stripPrefix = 0; - md5.run = "bb311c3f311383713c350fd38be1a848"; + md5.run = "ea9baa8d469bcd23f01029a25278ecae"; md5.doc = "b8c7a82ba63f978317538530fac14bc8"; hasRunfiles = true; version = "1.00c"; }; "tkz-doc" = { stripPrefix = 0; - md5.run = "61163fd37437c69293f85855f52d0e77"; + md5.run = "e86c32451010e72d16e7ad531bf1f724"; md5.doc = "ec101f70913dd150ad270a682ae77153"; hasRunfiles = true; version = "1.1c"; }; "tkz-euclide" = { stripPrefix = 0; - md5.run = "c3602b5552e8a0f57c0d9dfd0188e2b6"; + md5.run = "8bb31ed1ef09b32391edf33be91a0c7e"; md5.doc = "fe8253ac538b150dc0b7839aa9c161a3"; hasRunfiles = true; version = "1.16c"; }; "tkz-fct" = { stripPrefix = 0; - md5.run = "e2ea1f0286c0b0596c9cab4b8c1dba39"; + md5.run = "ee48a6daaeaa88ef35de8c3c2ecbdfdc"; md5.doc = "907cefc5addce3a62ccf84acb885e03c"; hasRunfiles = true; version = "1.16c"; }; "tkz-graph" = { stripPrefix = 0; - md5.run = "21fded9dacac7d3ee99f6d0ae7966fa6"; + md5.run = "fd043bb3b589dd356ee0c0413eeb2524"; md5.doc = "8f9532f19833620ba67e21400566cf77"; hasRunfiles = true; version = "1.00"; }; "tkz-kiviat" = { stripPrefix = 0; - md5.run = "ee1766c68af1f51b7b7f1493dcee09d9"; + md5.run = "b56a5464de4bd48742a7a2528739dbde"; md5.doc = "275338659a4e0ac9ef80935fbd370649"; hasRunfiles = true; version = "0.1"; }; "tkz-linknodes" = { stripPrefix = 0; - md5.run = "e163bf103dbff549854caa9593e073a9"; + md5.run = "2b93c88266748970f7960c99cce071ef"; md5.doc = "e88fa9d725677312f31863ce3221184e"; hasRunfiles = true; version = "1.0c"; }; "tkz-orm" = { stripPrefix = 0; - md5.run = "fd9b69d5cf2caa54ac610620e62d4143"; + md5.run = "44cd3b6b552a3d887aa20863453b8351"; md5.doc = "d274b4bcd882cfa4ea3dfb09c4f7df41"; hasRunfiles = true; version = "0.1"; }; "tkz-tab" = { stripPrefix = 0; - md5.run = "ede76eb40e391c265de9791a29e8d4b8"; + md5.run = "da867a1e4f197064bc07ece7ec03d998"; md5.doc = "f29707aa1177dacad20f46653b9d937f"; hasRunfiles = true; version = "1.3c"; @@ -21543,7 +21543,7 @@ tl: { # no indentation }; "tocbibind" = { stripPrefix = 0; - md5.run = "bf1ac7fba8f8eb0b98829a9a6a387938"; + md5.run = "d1306da66733c957d39f28d76f85fbc8"; md5.doc = "456511a37ee5ee746f2907a76c77df4f"; md5.source = "92965a70e5eb24530c356e8e5d10bcb5"; hasRunfiles = true; @@ -21551,7 +21551,7 @@ tl: { # no indentation }; "tocloft" = { stripPrefix = 0; - md5.run = "79b0f7e0b3d35206cb8fa5ad91805ec9"; + md5.run = "a71dad916a45e69de24657c1c5e7e701"; md5.doc = "810a7fd262c6a64d883f5fe9ab214385"; md5.source = "2b43f574ec26619d9a7b20bca84ff8eb"; hasRunfiles = true; @@ -21559,7 +21559,7 @@ tl: { # no indentation }; "tocvsec2" = { stripPrefix = 0; - md5.run = "7ade4b278298e614d81ff5f946c61356"; + md5.run = "60a028dcd5d86d4fcc3ea921f2a6a453"; md5.doc = "245bae4131f379dd134e5f03171edef4"; md5.source = "78316d91e889bc8061084a6f52666eb2"; hasRunfiles = true; @@ -21567,7 +21567,7 @@ tl: { # no indentation }; "todo" = { stripPrefix = 0; - md5.run = "f47f9b34e45b838f841082f8673e5f1b"; + md5.run = "8e7979546585ebe9bce36141b34ee6ed"; md5.doc = "05e587d7cbe9aae1424e480a9bb10203"; md5.source = "e5c33b7ef45552f5485f1b0c03066e74"; hasRunfiles = true; @@ -21575,7 +21575,7 @@ tl: { # no indentation }; "todonotes" = { stripPrefix = 0; - md5.run = "b8d7eecb40a0d6d32a2408368610b5ce"; + md5.run = "9aee8036bd0d1b6ac5bfd80eb396a3c0"; md5.doc = "429e553d3143cfe3e83f5bf025bc9861"; md5.source = "631600018a1b95405607e28e55e3e429"; hasRunfiles = true; @@ -21583,14 +21583,14 @@ tl: { # no indentation }; "tokenizer" = { stripPrefix = 0; - md5.run = "f6427476758c620b94305329e8d837d0"; + md5.run = "7c70f7086fb379ec0e12ab3d2ddaf366"; md5.doc = "ca386143d6c1fc570eafb41e3bc0ca6f"; hasRunfiles = true; version = "1.1.0"; }; "toolbox" = { stripPrefix = 0; - md5.run = "524c7be29a2efb007802704dab94417a"; + md5.run = "5ae171bc828887f0e7377715d39b9775"; md5.doc = "d3dde4db1d3bd2c85baa2415e370558d"; md5.source = "ab490aa7c2ccdf9d6421f10d040f2d32"; hasRunfiles = true; @@ -21605,13 +21605,13 @@ tl: { # no indentation }; "topfloat" = { stripPrefix = 0; - md5.run = "5e577933aaa631da01e018d7bff0225d"; + md5.run = "41787fbd7fe7477f8e9081599149e4f7"; md5.doc = "b200145994943672ad5ff2ce99471a4b"; hasRunfiles = true; }; "toptesi" = { stripPrefix = 0; - md5.run = "99f4f7ef873291d454932d4b49b2ab35"; + md5.run = "8c70e15c2ef60967171769f052364882"; md5.doc = "a872a430462664b6517f2014b79f94d0"; md5.source = "d468a72b13f85f1436357a8cefe77108"; hasRunfiles = true; @@ -21619,7 +21619,7 @@ tl: { # no indentation }; "totcount" = { stripPrefix = 0; - md5.run = "d91c82f05c9578f34457f3ead1649cca"; + md5.run = "a65209b0f0b439d784dfe32053bc9287"; md5.doc = "55b6fea47b0e1e654d7a73d3f2f4e9b1"; md5.source = "3a4142841e7d84f521036660ca84cd2c"; hasRunfiles = true; @@ -21627,7 +21627,7 @@ tl: { # no indentation }; "totpages" = { stripPrefix = 0; - md5.run = "bcb7df51d6b96b77652fb4e82c4d8bff"; + md5.run = "64e4e8ed967a7f69b1ab6ec44c44168d"; md5.doc = "c1ffb9c7b33ca8f4ccf94da0e828b7e3"; md5.source = "b7378a6f495b2b4ebd41f8373886b24a"; hasRunfiles = true; @@ -21640,7 +21640,7 @@ tl: { # no indentation }; "tpslifonts" = { stripPrefix = 0; - md5.run = "cc400b513170b986159904c84dfccd87"; + md5.run = "6941a6fd300deafd8ecca21d1d63bbdb"; md5.doc = "14c924b1b763a3ff51a6fe4442cbbef4"; md5.source = "9deb1422228299f962f7dc6fd356f2c3"; hasRunfiles = true; @@ -21648,7 +21648,7 @@ tl: { # no indentation }; "tqft" = { stripPrefix = 0; - md5.run = "67bd3ce2fa69836f49d074324d6d1be1"; + md5.run = "2a67d2126897602e95343a87473b861d"; md5.doc = "1b65af7bcb9203bd8c490f25f23e4cc0"; md5.source = "4493eb6e8041a97f62aacc59327beb31"; hasRunfiles = true; @@ -21656,7 +21656,7 @@ tl: { # no indentation }; "tracklang" = { stripPrefix = 0; - md5.run = "01203c4ce81f6a1d0e17cf5a25825691"; + md5.run = "39ebf51f366b927e4e3e248e4a09d433"; md5.doc = "0e5d9b27a0ccf78a87a1e227e46179c3"; md5.source = "72f64d7241d7235e433ead3f454d0233"; hasRunfiles = true; @@ -21664,7 +21664,7 @@ tl: { # no indentation }; "trajan" = { stripPrefix = 0; - md5.run = "db0e85d7c8da98c3b77c523c86b1395c"; + md5.run = "f46dcb0d48037d73f77ea1b58be578fd"; md5.doc = "c15f52db829822221b5f9db5474aef73"; md5.source = "24a4e6226a3bd631ad4a54670f354836"; hasRunfiles = true; @@ -21672,7 +21672,7 @@ tl: { # no indentation }; "tram" = { stripPrefix = 0; - md5.run = "80494ad5fc1fbac666bf378ccf62469f"; + md5.run = "58d6aca3729e7f4191c622dda67abdc0"; md5.doc = "3668b1f57bda2f51f9a043e0aa80b3e9"; hasRunfiles = true; version = "0.2"; @@ -21740,14 +21740,14 @@ tl: { # no indentation }; "translations" = { stripPrefix = 0; - md5.run = "3da052c4781805f4d97548f3df5819c0"; + md5.run = "d3e51c83670de473e3c881551611d727"; md5.doc = "eee7c71b20d423e1e1431b8e55af93fd"; hasRunfiles = true; version = "1.2a"; }; "tree-dvips" = { stripPrefix = 0; - md5.run = "b75c2b0b429871ae031fad9240bca84b"; + md5.run = "bc262c2b65435dca8c8fe9f33bae9842"; md5.doc = "f0d7accb6791b5f85a7138c885ddd9c2"; hasRunfiles = true; version = ".91"; @@ -21760,7 +21760,7 @@ tl: { # no indentation }; "trfsigns" = { stripPrefix = 0; - md5.run = "b31966930dee5958c76a33e08ad9573e"; + md5.run = "af314741381edcc9b0a8031478fb7629"; md5.doc = "44a0bd2c1a40fad6e14173f2b5bdc15d"; md5.source = "a6c10fb6e3e7038dcdbf1b8edd5cb6fe"; hasRunfiles = true; @@ -21768,7 +21768,7 @@ tl: { # no indentation }; "trimspaces" = { stripPrefix = 0; - md5.run = "926d82bb73592d5019651252e1f033b3"; + md5.run = "047aa2ae415d9a249b73ea595b6929e7"; md5.doc = "1a17f095d08bb6ffea8c5034b1a85565"; md5.source = "c041fe5c3bd72df4c6909148a711814d"; hasRunfiles = true; @@ -21776,7 +21776,7 @@ tl: { # no indentation }; "trivfloat" = { stripPrefix = 0; - md5.run = "3d0434082598cb98bb003aaecc194434"; + md5.run = "260b4a624c75d0bdeaaebd791fc8f242"; md5.doc = "fccca1cd0514ea882d5b32674a963f00"; md5.source = "5ca56853b93dbbf461e96296a28471c4"; hasRunfiles = true; @@ -21784,7 +21784,7 @@ tl: { # no indentation }; "trsym" = { stripPrefix = 0; - md5.run = "ca356dbc8ac1796fbbf5483be087568d"; + md5.run = "f9a181ebde9c05e207e827ddb8d51ca8"; md5.doc = "d8754a3f26969341b59754a3d33260f1"; md5.source = "71cf3636405b3ac45f431f6b16267a2b"; hasRunfiles = true; @@ -21792,14 +21792,14 @@ tl: { # no indentation }; "truncate" = { stripPrefix = 0; - md5.run = "958778e0f4ba37e881b06958aa888795"; + md5.run = "fac54f8198746909a2021ba12e61edae"; md5.doc = "b2b15f77844d735706b446f3a8132146"; hasRunfiles = true; version = "3.6"; }; "tsemlines" = { stripPrefix = 0; - md5.run = "48520997c214b6c3797d8a77dd092405"; + md5.run = "a26962a26432c57017efd0c3c94f3c77"; hasRunfiles = true; version = "1.0"; }; @@ -21810,7 +21810,7 @@ tl: { # no indentation }; "tucv" = { stripPrefix = 0; - md5.run = "cfae0c29e5d569eb03848dd0e60c74b9"; + md5.run = "826036dfe981d6aac30e1a86e88838e9"; md5.doc = "25184e58e618125e00fe961cd02dd787"; md5.source = "2dd00ac087da574dff20c32a20e81b9c"; hasRunfiles = true; @@ -21818,7 +21818,7 @@ tl: { # no indentation }; "tudscr" = { stripPrefix = 0; - md5.run = "38166e6931d2edbd2336d79d6bb2270a"; + md5.run = "f2af963f12a0651e985afb8e2377451a"; md5.doc = "31a9e22c9763cd276dd005c1be9ec539"; md5.source = "0e7c55e0f2691c409a0bfa76659bd959"; hasRunfiles = true; @@ -21832,7 +21832,7 @@ tl: { # no indentation deps."paralist" = tl."paralist"; deps."sauerj" = tl."sauerj"; deps."placeins" = tl."placeins"; - md5.run = "22caeb7293e1ddc6a7955a87567c86a0"; + md5.run = "9aacf680f0d31cb0b12da04f1c7b452e"; md5.doc = "fcbd268b3344bdc2e239c97a619effa0"; md5.source = "2d593157b3dc673a0a9b22d45a3221df"; hasRunfiles = true; @@ -21840,7 +21840,7 @@ tl: { # no indentation }; "tugboat" = { stripPrefix = 0; - md5.run = "d14202f8d71655b6f151f3dbc6de731f"; + md5.run = "ebbe97288a7f36047014ab5f813b1eeb"; md5.doc = "ce5538b7cff5e09f06db4990ff513608"; md5.source = "04415b1b41cc1c4df268762559dcfff7"; hasRunfiles = true; @@ -21848,28 +21848,28 @@ tl: { # no indentation }; "tugboat-plain" = { stripPrefix = 0; - md5.run = "15e13546eec361a2dc18d86994e7f231"; + md5.run = "d15adca236f6d3cd02e4c8109999a0f4"; md5.doc = "6ce6bd687014b27ce201c95c666da9f0"; hasRunfiles = true; version = "1.21"; }; "tui" = { stripPrefix = 0; - md5.run = "7a02e96a9ee23e4d56fff9647d3a0728"; + md5.run = "ca0627ef149e24f9c3ccfbd0e4ddb754"; md5.doc = "3c927880b92c14f0940bbe22c3bb804d"; hasRunfiles = true; version = "1.9"; }; "turabian" = { stripPrefix = 0; - md5.run = "62bddcc4b8f2c558c63f6d7cb4a4d783"; + md5.run = "d76934cac91a1f35e7555f513913792b"; md5.doc = "15a965feec4f8e6701595c54b664fefc"; hasRunfiles = true; version = "0.1.0"; }; "turabian-formatting" = { stripPrefix = 0; - md5.run = "9fb0319ea75c9de9f755172b00f1b900"; + md5.run = "da33fa9c595c4738b94554ec06980125"; md5.doc = "3f623a2d1b01580868a98b5dcd98422a"; hasRunfiles = true; }; @@ -21891,20 +21891,20 @@ tl: { # no indentation }; "turnthepage" = { stripPrefix = 0; - md5.run = "09bbcbb12082da6bb3c33d5f84c6d433"; + md5.run = "44de269e652fd4249994fd2d57d82afc"; md5.doc = "0a962faf760f02a3969331ab09900fc6"; hasRunfiles = true; version = "1.3a"; }; "twoinone" = { stripPrefix = 0; - md5.run = "dfd4e163a5f9feffba4593eab7eccc39"; + md5.run = "3b61191692a56f50841cb19a056479f8"; md5.doc = "049849a2aeeea0efb5d8de1bbe1d4a33"; hasRunfiles = true; }; "twoup" = { stripPrefix = 0; - md5.run = "1b449fe98ee8777c6dca2d3aaff8dd49"; + md5.run = "62fd2eb894418d5193d42ab72ca173dd"; md5.doc = "9b7102368ed25689c40479a5e637e294"; md5.source = "d24be5c831795f04ecfae7b2855d4925"; hasRunfiles = true; @@ -21918,7 +21918,7 @@ tl: { # no indentation }; "txfontsb" = { stripPrefix = 0; - md5.run = "c4f5cf0ded37b3678edcc3e52ed6a4a5"; + md5.run = "a2194dc29a48762d96f37fd1d853f6bc"; md5.doc = "dcf945dc6fc3cd2447d4fe1ee98e5164"; md5.source = "4b8d2eb6ad6250576234e87f6594c1a0"; hasRunfiles = true; @@ -21926,7 +21926,7 @@ tl: { # no indentation }; "txgreeks" = { stripPrefix = 0; - md5.run = "446097f479591f0025e59acc2a13bdd9"; + md5.run = "3dc6154f87872a317f0421c837a90fb9"; md5.doc = "36211500072212c39761671c75cb445a"; md5.source = "f8ba7253fa732d2d563d625b6b8f8834"; hasRunfiles = true; @@ -21934,14 +21934,14 @@ tl: { # no indentation }; "type1cm" = { stripPrefix = 0; - md5.run = "9251c1165e22f423fb233326f2fbbb71"; + md5.run = "9a5759c4aaaade1fe18315a03f9a23fc"; md5.doc = "d951dca0367e061fda23feef9182e083"; md5.source = "d17def09d72f3a0862970e648bf07683"; hasRunfiles = true; }; "typeface" = { stripPrefix = 0; - md5.run = "21b276cd9cf520e2e66a94e81526079d"; + md5.run = "d6cbc992d0fe0f9de90c6e88b5fed5b1"; md5.doc = "70a33868d4a90f40dcc81de645a410f8"; md5.source = "3498c2e52b11a04ba492e7dfa230b7fa"; hasRunfiles = true; @@ -21962,7 +21962,7 @@ tl: { # no indentation }; "typogrid" = { stripPrefix = 0; - md5.run = "573fb5187581e0118e17f23f9616e899"; + md5.run = "9ea7700b2fe086b0c57c84ed1460b149"; md5.doc = "00018639a1b379b7ace9d956de1a42ef"; md5.source = "3e0851cd7a8247e9ff4886609a8e080a"; hasRunfiles = true; @@ -21970,7 +21970,7 @@ tl: { # no indentation }; "uaclasses" = { stripPrefix = 0; - md5.run = "df1d1af1a7680d88c54a61ef7c2f018d"; + md5.run = "ff5115260e7de8638fb8b46fb8134f56"; md5.doc = "5c60d194390e69f2db894a70168b3cc0"; md5.source = "748c643e076b37625667e0395409b767"; hasRunfiles = true; @@ -21985,20 +21985,20 @@ tl: { # no indentation }; "uafthesis" = { stripPrefix = 0; - md5.run = "61a0577d75ee9d1e66f81dd5f29c60f2"; + md5.run = "b6cd4523f5f602fade0c52b565cbdb6c"; md5.doc = "e1462f4a117b1b6d20026185f61952f9"; hasRunfiles = true; version = "12.12"; }; "ucbthesis" = { stripPrefix = 0; - md5.run = "6cc11a9cf92f88971006244d9780de3e"; + md5.run = "c537e2b7d604276de3a04421fedf1c30"; md5.doc = "ea07c3a11363061703304238bfcc4af0"; hasRunfiles = true; }; "ucdavisthesis" = { stripPrefix = 0; - md5.run = "efeb503373ea464a12b8fac9fccffef9"; + md5.run = "1210ec060ff65753b076be0c8d09446b"; md5.doc = "41a3550280be2a82a28766e63fdd0315"; md5.source = "33c65c9f6a2764730c2be0e6a7041d11"; hasRunfiles = true; @@ -22013,14 +22013,14 @@ tl: { # no indentation }; "ucs" = { stripPrefix = 0; - md5.run = "5c604f1a85c4b83431d8bdf0f765623a"; + md5.run = "84273e80badc0d8a81138edf754becf5"; md5.doc = "187355fe5fab13f1af213b941565f737"; hasRunfiles = true; version = "2.2"; }; "ucthesis" = { stripPrefix = 0; - md5.run = "84b423add0cb7997879c180bb58dae6b"; + md5.run = "f25e2c5fd17351e50e1df4b680ea1441"; md5.doc = "cc1743a32925be430ffb357253a25eb5"; hasRunfiles = true; version = "3.2"; @@ -22035,27 +22035,27 @@ tl: { # no indentation }; "uebungsblatt" = { stripPrefix = 0; - md5.run = "76ca7d8e5dc3f3df523fd54f66f69488"; + md5.run = "457833fb4f5e0240c3197b3be3f30fc6"; md5.doc = "8015cf3a12bdb78ffa719d665f99a6c4"; hasRunfiles = true; version = "1.5.0"; }; "uestcthesis" = { stripPrefix = 0; - md5.run = "bc0f14ca205e081b8f4f0327b93ffe3e"; + md5.run = "b951884bccc824707960dffb7fd325ac"; md5.doc = "8461ab89376885ad719955875ddfaa67"; hasRunfiles = true; version = "1.1.0"; }; "uhc" = { stripPrefix = 0; - md5.run = "662605bbd7d6432c6fe53e1c2199e51e"; + md5.run = "cf3fc15f58864207167ab5fb1da6bb34"; md5.doc = "47017845f3a4ded264764dcd6542ffab"; hasRunfiles = true; }; "uiucredborder" = { stripPrefix = 0; - md5.run = "c6d31f6a17e53d73aaaf9f7d30e6ae3e"; + md5.run = "cdcda2e7076d980e104d54adc40f27c1"; md5.doc = "7c821786de8a29bcf8cf9d4ad61940c0"; md5.source = "46760e25d3ae18fca60adb6897f7cf1b"; hasRunfiles = true; @@ -22063,7 +22063,7 @@ tl: { # no indentation }; "uiucthesis" = { stripPrefix = 0; - md5.run = "8f8c6f95422657f0aa74b740d05fc56f"; + md5.run = "ca8d967a41c2d635416a19573326f567"; md5.doc = "2c3ac6cfa89cbf31e17143ccb95cf5a7"; md5.source = "4f82bc844130c5da886dac95e1aea22e"; hasRunfiles = true; @@ -22082,7 +22082,7 @@ tl: { # no indentation hasRunfiles = true; }; "ulqda" = { - md5.run = "046d123b39013b9e1be106038bd7152d"; + md5.run = "b50b104a1bdb0843b9a9041e4bf0e24d"; md5.doc = "00223acae11a89a5bd52462a54da1b26"; md5.source = "99191eb4b066b65d73c0b4cd44dec0e6"; hasRunfiles = true; @@ -22090,7 +22090,7 @@ tl: { # no indentation }; "ulthese" = { stripPrefix = 0; - md5.run = "b83b01b01b50e042966aec32543fb350"; + md5.run = "773c1a44001cec0c76afbc821a8cc637"; md5.doc = "936aa02131278523a93809b0ff3a9d53"; md5.source = "e378cc87358159802e2da40b8025785a"; hasRunfiles = true; @@ -22098,14 +22098,14 @@ tl: { # no indentation }; "umich-thesis" = { stripPrefix = 0; - md5.run = "c422a8645fd0c61a00328185f74bb0db"; + md5.run = "caa69ddc6e4f2665b22d87762de8b525"; md5.doc = "e3c460e52e19fa6f88795d5e0114e80b"; hasRunfiles = true; version = "1.20"; }; "uml" = { stripPrefix = 0; - md5.run = "fde2005e8d5a5b6a2898dc4405def1d4"; + md5.run = "88f429591a281486d0f73d07ec416d4c"; md5.doc = "4bea17f59543afd470611bb18226f235"; md5.source = "1b80a3dda3528d3b21eb758a9f61e52a"; hasRunfiles = true; @@ -22121,21 +22121,21 @@ tl: { # no indentation }; "umoline" = { stripPrefix = 0; - md5.run = "f2e8967c6f3baa9bab48d9773567d013"; + md5.run = "eb9a5a8f85744402577764729292bcfa"; md5.doc = "4b5788576d41fc4a1e645048d3470e33"; md5.source = "0ff7aa60df6278a7463290b1fd9e0593"; hasRunfiles = true; }; "umthesis" = { stripPrefix = 0; - md5.run = "26cc0551a464fafb5a3c82a547afc244"; + md5.run = "34c427966a950a7dd020af159b647fff"; md5.doc = "c25379551265cea34e5f19a9677538cd"; hasRunfiles = true; version = "0.2"; }; "umtypewriter" = { stripPrefix = 0; - md5.run = "6fbad42c23ce4d491681181c494d0f9b"; + md5.run = "47eef400920a4434b078f347c23647ab"; hasRunfiles = true; version = "001.002"; }; @@ -22147,14 +22147,14 @@ tl: { # no indentation }; "unamthesis" = { stripPrefix = 0; - md5.run = "24d8aa24b57efc6d7b0107ff5cc45a67"; + md5.run = "fa4c72feb1300d16514673ffadcf0e2c"; md5.doc = "06a4a62cefe696848f81de5b2c8bd8bf"; hasRunfiles = true; version = "2.02"; }; "underlin" = { stripPrefix = 0; - md5.run = "2ff58053e68769acc355d06eda41f238"; + md5.run = "c274608b99721fc2977d34ff4a9ff653"; md5.doc = "cb3a77a89f96e944076c117421cb616d"; md5.source = "0b661627dc5cbb4d7eb9dc9a55be0080"; hasRunfiles = true; @@ -22162,7 +22162,7 @@ tl: { # no indentation }; "underoverlap" = { stripPrefix = 0; - md5.run = "81335138211d0d2aa0db559d603a773a"; + md5.run = "f3589d920b6ce1b869a60ea3cab45b9d"; md5.doc = "c93611115274bb20fbe3145da628ec9f"; hasRunfiles = true; version = "0.0.1-r1"; @@ -22175,7 +22175,7 @@ tl: { # no indentation }; "undolabl" = { stripPrefix = 0; - md5.run = "07e612f75c538ac384f87f2e6cb03aa2"; + md5.run = "8b7a338009d69dbec633fb98b9778ca2"; md5.doc = "bd5d5eca5b301d7ea84881985075fbd3"; md5.source = "84ca0ad8e1abaa8b84edbff17b746b25"; hasRunfiles = true; @@ -22183,14 +22183,14 @@ tl: { # no indentation }; "uni-wtal-ger" = { stripPrefix = 0; - md5.run = "580b8b96e99e4151c678606cddf01160"; + md5.run = "433bcf608bc0c1c5a0dcbd2e4073a11a"; md5.doc = "4565652226b042b94ef2811b98df3f58"; hasRunfiles = true; version = "0.2"; }; "uni-wtal-lin" = { stripPrefix = 0; - md5.run = "547169a62387af3ae9b022c6d8cc07be"; + md5.run = "49f1f67c84592e327dd5a145add18dde"; md5.doc = "8ff5146e16c5d9d112e4025d2f8d4091"; hasRunfiles = true; version = "0.2"; @@ -22213,7 +22213,7 @@ tl: { # no indentation }; "units" = { stripPrefix = 0; - md5.run = "9d5b5aeed342919b1c0de108025f86ec"; + md5.run = "78c09eba6ac063866ccbd680c1f46475"; md5.doc = "c99308665596668a220c6047711e6976"; md5.source = "a84073a3e68d85d1a781280d4da036c5"; hasRunfiles = true; @@ -22221,7 +22221,7 @@ tl: { # no indentation }; "unitsdef" = { stripPrefix = 0; - md5.run = "8039ff073ab2242a58ba164991eea396"; + md5.run = "6c452f45f72dbc49802a4995b63f8523"; md5.doc = "0293771ab9c779bbff1269c67587d2bb"; md5.source = "95bd8b00d7998652274a6abaa945fb63"; hasRunfiles = true; @@ -22229,7 +22229,7 @@ tl: { # no indentation }; "universa" = { stripPrefix = 0; - md5.run = "ecc85bfeb7688d172ff94caaa37dce8b"; + md5.run = "9a770bc499a8aa35032567aa75cf3bf2"; md5.doc = "2eafed5c1d7fd3eeccd27b88da740168"; md5.source = "de4ff7650c1806425d51739f267a547c"; hasRunfiles = true; @@ -22237,13 +22237,13 @@ tl: { # no indentation }; "universalis" = { stripPrefix = 0; - md5.run = "41f327c53c8faf29a63705f02477631f"; + md5.run = "2d7a904c7de4c5adace7bff89b42ec87"; md5.doc = "44b8a6726268b451412f00238ea70adb"; hasRunfiles = true; }; "unravel" = { stripPrefix = 0; - md5.run = "643efbbbad041a4597ffba03dc020b53"; + md5.run = "ccc4afc0687648e9532bc766e3eae2ba"; md5.doc = "91e3be3569814d1cb437cbaf0b324516"; md5.source = "2fcc853918226724f0383d42ac847efb"; hasRunfiles = true; @@ -22251,14 +22251,14 @@ tl: { # no indentation }; "unswcover" = { stripPrefix = 0; - md5.run = "0ba3dc26e8bfa0cd021f51a49314d2c0"; + md5.run = "eccdcdce7ed56658007fbc0af4dbb981"; md5.doc = "64598e5a74949dd38c6ca1d55bbf80f3"; hasRunfiles = true; version = "1.0"; }; "uothesis" = { stripPrefix = 0; - md5.run = "c7d4a603889b0bc6b6bf622cf310e8f4"; + md5.run = "6384cc424a4d68926e675240283b0b31"; md5.doc = "f2ad566025001d889d13f1893ca3c0c5"; md5.source = "0c8ecafcf1b917105fdd0471feeca32a"; hasRunfiles = true; @@ -22266,27 +22266,27 @@ tl: { # no indentation }; "uowthesis" = { stripPrefix = 0; - md5.run = "15c8880deccc13d9662682eeab379e1b"; + md5.run = "2df20419b64b1f97b21452b60146123d"; md5.doc = "7cee9f705a9acaaa85aff14c9b61f250"; hasRunfiles = true; version = "1.0a"; }; "uowthesistitlepage" = { stripPrefix = 0; - md5.run = "fd07f502dc016ed531e05e32bf663fb0"; + md5.run = "238d99f3766af1f9be40b9f20ba44624"; md5.doc = "c3ec7a878b58bba95f87640cc1fe7bbd"; hasRunfiles = true; version = "2.0"; }; "upca" = { stripPrefix = 0; - md5.run = "e2c6dee4ae8ad9fedadc93d7c8d40512"; + md5.run = "0907e83e756f1625a99ed09f5a5270a9"; md5.doc = "24c4f8d4d4bc5426cad192d68ed29373"; hasRunfiles = true; }; "upmethodology" = { stripPrefix = 0; - md5.run = "9be5a9fc4ebfe797452a44d6b337fe92"; + md5.run = "8650227068dc546eba8e3fbc2be73425"; md5.doc = "19ebab98a8527c0bf46f1ca3cdb57a1d"; hasRunfiles = true; }; @@ -22306,7 +22306,7 @@ tl: { # no indentation deps."ipaex" = tl."ipaex"; deps."japanese" = tl."japanese"; deps."japanese-otf" = tl."japanese-otf"; - md5.run = "2c00e444c6caebc1237f0b9f02298ba0"; + md5.run = "795b606940a8a0eb7455e64a82e9b10a"; md5.doc = "b97d4d7b3bbc094382045b9100f779ae"; md5.source = "ca117a21311685b175b4db7374a6d88f"; hasRunfiles = true; @@ -22314,14 +22314,14 @@ tl: { # no indentation }; "urcls" = { stripPrefix = 0; - md5.run = "7311cc1a1008f74a00e2d19f34b70ca0"; + md5.run = "11498fbdd4a803b5d9af3a039d65a2ca"; md5.doc = "dc71d6a16b3f1829fcf63a91be24231e"; hasRunfiles = true; version = "1.0"; }; "uri" = { stripPrefix = 0; - md5.run = "9a6f279c55e95dd1e4b4b25225c7d1e7"; + md5.run = "05593fc132578343ee2f1b639ea5c9d5"; md5.doc = "8bac1919d3471db70cddded7959bf22f"; md5.source = "135c30111ef034bf63c2d0b4969b3a38"; hasRunfiles = true; @@ -22335,7 +22335,7 @@ tl: { # no indentation version = "3.4"; }; "urlbst" = { - md5.run = "af6f3f36295260b63a8ee8bcdf8cf2d5"; + md5.run = "8155d195c230b624a78797c13e21869d"; md5.doc = "5a3a54f226250d2ed8d5b510f5ac03c7"; md5.source = "eabd256c5ef4085d4625888d6847b79f"; hasRunfiles = true; @@ -22343,14 +22343,14 @@ tl: { # no indentation }; "urwchancal" = { stripPrefix = 0; - md5.run = "0bf1c59f047e13156bc38e5a48cc0fe5"; + md5.run = "7eda8899353aef3f4579c908ae064c33"; md5.doc = "552d8ca6778b260e78a4e2d58cea0cb9"; hasRunfiles = true; version = "1"; }; "usebib" = { stripPrefix = 0; - md5.run = "965ba1da4c53fc8775540020f781498a"; + md5.run = "ed588b2698307d704fb766a5c613309e"; md5.doc = "2a3b316f11f818bcd71e948f81570793"; md5.source = "6f2f7345892aeece20db1fbc27d2e909"; hasRunfiles = true; @@ -22358,7 +22358,7 @@ tl: { # no indentation }; "ushort" = { stripPrefix = 0; - md5.run = "063c085470547bc8f2a4a579e7acaa5e"; + md5.run = "d441026dd51961998d6ef6313043fe05"; md5.doc = "bf59f470f0e88bab211a0843c6c22448"; md5.source = "7b6614d4d151f1651f53d3978d611b13"; hasRunfiles = true; @@ -22366,14 +22366,14 @@ tl: { # no indentation }; "uspatent" = { stripPrefix = 0; - md5.run = "654f62b42e1d7d6068d425bd59a38296"; + md5.run = "d3a90dd347a3c6514f303225c5888156"; md5.doc = "de93979bfb9c0b61aa96b6b27760e45a"; hasRunfiles = true; version = "1.0"; }; "ut-thesis" = { stripPrefix = 0; - md5.run = "97bba8acd763f108193d1b1396d2126d"; + md5.run = "82fb6c96f4173c08392a0489995d2732"; md5.doc = "6739cd9fe9795d184d5a7ba29ac7a2f5"; hasRunfiles = true; version = "2.0"; @@ -22392,26 +22392,26 @@ tl: { # no indentation }; "uwmslide" = { stripPrefix = 0; - md5.run = "d82d55d5d478d62c088ed48dab1d45e6"; + md5.run = "5977f5696bcbd898871cc03752fd6c98"; md5.doc = "b7f110ba6739cf5f09f4a6af733f9a6f"; hasRunfiles = true; }; "uwthesis" = { stripPrefix = 0; - md5.run = "5ad263dac29a08603d657bbcc5483fa4"; + md5.run = "a652f0c58a251f7cb4a73cb3d2293599"; md5.doc = "8f95c0000965212ee55f98f7a8b8507e"; hasRunfiles = true; version = "6.13"; }; "vak" = { stripPrefix = 0; - md5.run = "8b451613fd792a9d939b3128c168caa9"; + md5.run = "18b78a332f2195367b344cddf5408174"; md5.doc = "25bed99114e91b661fd3ea780d6f722d"; hasRunfiles = true; }; "vancouver" = { stripPrefix = 0; - md5.run = "ac8f1da3119c3d8c27baac608b10d5af"; + md5.run = "5f75c43a37a576dc0b56a3094124b461"; md5.doc = "d460b09b24b01348d18127ec884086df"; hasRunfiles = true; }; @@ -22424,7 +22424,7 @@ tl: { # no indentation }; "varindex" = { stripPrefix = 0; - md5.run = "77ad8546f7dd060a8f219a08c9b9f81f"; + md5.run = "5e2d08f8aebab0641d9fefb8b00d9967"; md5.doc = "23f9642eeb4811beebb38c235a29bbf8"; md5.source = "27aa2ce603dbdf02083c2667fa8a4965"; hasRunfiles = true; @@ -22438,28 +22438,28 @@ tl: { # no indentation }; "varsfromjobname" = { stripPrefix = 0; - md5.run = "ad51186a44541cdaf1cce84c33f7a2bb"; + md5.run = "8954338c3c1b618bd6e1cf696b7fe295"; md5.doc = "38f47797f5fc3251ffabc144fdbe0b75"; hasRunfiles = true; version = "0.5"; }; "varwidth" = { stripPrefix = 0; - md5.run = "d21c0ff1feccf98d94001fa1beb0e6b3"; + md5.run = "46630dd7c65a36e394894283aa07db74"; md5.doc = "53572fa63013474b96277b8b0ef4640a"; hasRunfiles = true; version = "0.92"; }; "vaucanson-g" = { stripPrefix = 0; - md5.run = "95d4a2973a4ffa8af937365e0b0af65c"; + md5.run = "924b60cb7380308ae65afc6cf8fb4093"; md5.doc = "a73c023bf032a8a18764325ec8e70f81"; hasRunfiles = true; version = "0.4"; }; "vdmlisting" = { stripPrefix = 0; - md5.run = "eb930c81f5a129831d7ca0d68fa1ecf9"; + md5.run = "b8ea8372d088d8c315b392e1cccf3e8b"; md5.doc = "1528b613d5425e83e0dc4a354af17e56"; hasRunfiles = true; version = "1.0"; @@ -22467,7 +22467,7 @@ tl: { # no indentation "velthuis" = { stripPrefix = 0; deps."xetex-devanagari" = tl."xetex-devanagari"; - md5.run = "18b54d4588f090859c3793d7dc535456"; + md5.run = "6470cf6fcb3a45bd41b96027837b22ea"; md5.doc = "388f9bae6dd533bbde6d39d0d48d9a98"; hasRunfiles = true; version = "2.15.1"; @@ -22480,7 +22480,7 @@ tl: { # no indentation }; "venndiagram" = { stripPrefix = 0; - md5.run = "e6eaae6e8d14fce0da8c57993bfe8c0a"; + md5.run = "021aa7f15c0201f7f157622a12463c11"; md5.doc = "5e1528451e3458ee8cead9fd2f3c1eb0"; md5.source = "821602420b1c568be9764f68f2f286c1"; hasRunfiles = true; @@ -22488,7 +22488,7 @@ tl: { # no indentation }; "venturisadf" = { stripPrefix = 0; - md5.run = "e660596fa3574be8835ef94203809966"; + md5.run = "606087e57c9331ce6d05375f95a2228a"; md5.doc = "9c9668b0b8008cc8ef04d8122c70e234"; md5.source = "52d7b3abe7645d00a47b7628a3a7ca9b"; hasRunfiles = true; @@ -22496,42 +22496,42 @@ tl: { # no indentation }; "verbasef" = { stripPrefix = 0; - md5.run = "355853f4ccc2c1fa9e8876a92033e83f"; + md5.run = "af4dda06f381585ebb5c92e0bc7a96b8"; md5.doc = "e07eed454d0ca66c1f832f7433d2fc1d"; hasRunfiles = true; version = "1.1"; }; "verbatimbox" = { stripPrefix = 0; - md5.run = "b99ea9278518b73f82641dc2f8da76eb"; + md5.run = "8601914beeb7dcb54b1f212cd16c538b"; md5.doc = "e9364c09ebea80a711b758e66f42b4a7"; hasRunfiles = true; version = "3.13"; }; "verbatimcopy" = { stripPrefix = 0; - md5.run = "b012b4a3f40439dd3790253ab9d968d2"; + md5.run = "51790f37576fdea63791657e204b8fb1"; md5.doc = "b5af8cc1ae57eced257c388de0a66480"; hasRunfiles = true; version = "0.06"; }; "verbdef" = { stripPrefix = 0; - md5.run = "c27db410f995aa03eb3b7c7f6b0012a7"; + md5.run = "47b5f6028861e6490e361964b7cb7230"; md5.doc = "575fb47899e96da8e5d295ace3cfbff0"; hasRunfiles = true; version = "0.2"; }; "verbments" = { stripPrefix = 0; - md5.run = "9cfe6fbde12595d630377259a2e1cd71"; + md5.run = "d5f8d463de6c0589fe02f29e7f12fd8d"; md5.doc = "6142354b79cb4b2358218cacce5a4b9d"; hasRunfiles = true; version = "1.2"; }; "verse" = { stripPrefix = 0; - md5.run = "1e17cdca83b2fbaec7186a2589f55845"; + md5.run = "6fe288a80132dc10e13df7fdcb7dd1d1"; md5.doc = "0738dfdb52a6b7dfeae2dc86318ff9e6"; md5.source = "40881f93f0c4fa4ba83e3f8c359aee38"; hasRunfiles = true; @@ -22539,21 +22539,21 @@ tl: { # no indentation }; "version" = { stripPrefix = 0; - md5.run = "0a901ff41acad1bef96804e588ba8abb"; + md5.run = "481878bbf458010751b932fce0c94ec7"; md5.doc = "1996302464dfcd65cc2faa4e869cf093"; hasRunfiles = true; version = "2.0"; }; "versions" = { stripPrefix = 0; - md5.run = "0cf4e37d16b71fd951fdc25a396316a5"; + md5.run = "d35d14bb848dd575a1e4c86f3bd94417"; md5.doc = "0aec35e9422585f009c2d9e8c5aeb0d6"; hasRunfiles = true; version = "0.55"; }; "versonotes" = { stripPrefix = 0; - md5.run = "dbc50d228504d554c399b65562506eb6"; + md5.run = "9946c9c8a446f68996dfb2f3d01ab147"; md5.doc = "607a02963c76d4a9350f53d4c2b180c9"; md5.source = "d94c89ccc936b0572c5f5761c59d4c4e"; hasRunfiles = true; @@ -22561,7 +22561,7 @@ tl: { # no indentation }; "vertbars" = { stripPrefix = 0; - md5.run = "3964526fd40e9e4b0bd90289284dd6b4"; + md5.run = "593a10bd698a06c9260a5334a4a60841"; md5.doc = "a729a8e298a84487647754fba5635df6"; md5.source = "f622e96bf91fede17585cd0c418110ad"; hasRunfiles = true; @@ -22569,7 +22569,7 @@ tl: { # no indentation }; "vgrid" = { stripPrefix = 0; - md5.run = "438c36607e0b209c7f2c34e3ec2376d2"; + md5.run = "0d7ca5848da0d12af0e33b0c2cf1a71f"; md5.doc = "4bf899b275315063b6bd4f5c7f2f8cf3"; md5.source = "83adde4de33ca4413dd4a71c08a90410"; hasRunfiles = true; @@ -22577,7 +22577,7 @@ tl: { # no indentation }; "vhistory" = { stripPrefix = 0; - md5.run = "a7a38aef9a6179c7612dec5cafbd6223"; + md5.run = "2beb0cd8a56b52820190ea7b7bd187e7"; md5.doc = "6569584ecdf66aad4e550735911aba68"; hasRunfiles = true; version = "1.6.1"; @@ -22593,7 +22593,7 @@ tl: { # no indentation }; "vmargin" = { stripPrefix = 0; - md5.run = "4c460d4871f406cdee2ad368da2b9817"; + md5.run = "d70f3c3911c3f82ba62a5be664bdc5fb"; md5.doc = "71d06ed694256d57123c0b50acd53eb0"; md5.source = "2e6f15a5c5bcf3beb0a1a517010f3edb"; hasRunfiles = true; @@ -22601,7 +22601,7 @@ tl: { # no indentation }; "vntex" = { stripPrefix = 0; - md5.run = "44dae7265202816fbc3d62a8bb0dd26e"; + md5.run = "e67f3e34b51e888f95985e347f88bb10"; md5.doc = "8eefe00f4ade36ed3bf00c12d29c675c"; md5.source = "f51a0c60d4d1635896d5d1db9705fa40"; hasRunfiles = true; @@ -22609,14 +22609,14 @@ tl: { # no indentation }; "vocaltract" = { stripPrefix = 0; - md5.run = "8db47b054ca544890c4459e40b29e674"; + md5.run = "8310406d6b0539a1a795672949163c2a"; md5.doc = "76bd461766bd184c55b371efd81590c3"; hasRunfiles = true; version = "1"; }; "volumes" = { stripPrefix = 0; - md5.run = "7a24310a8b08ab65dffbebe1ff5d89bb"; + md5.run = "35b4235902c47fa44d80108d47b96f5c"; md5.doc = "b9c1839ffa00674631f94ec5252ffac5"; md5.source = "39bceafce89c4906bde5c92aa546be01"; hasRunfiles = true; @@ -22635,21 +22635,21 @@ tl: { # no indentation version = "2.47"; }; "vpe" = { - md5.run = "24ac5f7b203b83ff6be88c09aa1e9def"; + md5.run = "66efcbf2a262780e8a9dee10ef448dc7"; md5.doc = "3c43353bfe9271f1294cdfa3f07838c1"; hasRunfiles = true; version = "0.2"; }; "vruler" = { stripPrefix = 0; - md5.run = "ff04f6c1c7e527df4927b6217ca80cdd"; + md5.run = "fe41cf175e1cf540c63d85a8566d8460"; md5.doc = "37ae0b6558fd6b5b79732cdff022be0e"; hasRunfiles = true; version = "2.3"; }; "vwcol" = { stripPrefix = 0; - md5.run = "86e2772f57525256517cda2c95202af6"; + md5.run = "69385caeef3c8b4d61d3a691e7a0feb8"; md5.doc = "223f1b36f6a4db5f56fc7f5ebc0e17e1"; md5.source = "d27ac828652cfda387c3695316cbab12"; hasRunfiles = true; @@ -22657,27 +22657,27 @@ tl: { # no indentation }; "wadalab" = { stripPrefix = 0; - md5.run = "cfb1b6323a6718b6af7b8eafdc15cc4c"; + md5.run = "c99f959f307e7145d83d205d1a64043d"; md5.doc = "c13c2169249b9ad299668eca0c9ab91e"; hasRunfiles = true; }; "wallpaper" = { stripPrefix = 0; - md5.run = "101a0f40c5e71a17b2a7ca776476a9bb"; + md5.run = "9968e306d13568bb7c649a00036fbb5c"; md5.doc = "47c65ccf671bffc7068e57ce6ca24e42"; hasRunfiles = true; version = "1.10"; }; "warning" = { stripPrefix = 0; - md5.run = "7028ee0a47f0f734b32a1b436edc9288"; + md5.run = "a25432ecbec0dacc7f80044ec10ecde9"; md5.doc = "0a84414723f7f8efe716eaf4d54829bc"; hasRunfiles = true; version = "0.01"; }; "warpcol" = { stripPrefix = 0; - md5.run = "0c06d037bac7df2fd80f25fb960c1aed"; + md5.run = "837d56f87d74edb169adda84f56b4fe4"; md5.doc = "d39d31d7670df6a9499e055cdfbdf0a7"; md5.source = "e0a09ecc13a47254abd9910fd1eed41f"; hasRunfiles = true; @@ -22685,7 +22685,7 @@ tl: { # no indentation }; "was" = { stripPrefix = 0; - md5.run = "4702c6b62180b5646c6039a857de1a7f"; + md5.run = "4235f8515a6140bb78e6146824f1389f"; md5.doc = "e382a7ae8caa22de0492baca8eea54d9"; md5.source = "ce499e4566ddb95527d4dd8903ea934a"; hasRunfiles = true; @@ -22724,7 +22724,7 @@ tl: { # no indentation }; "widetable" = { stripPrefix = 0; - md5.run = "9d69cb76c2d4265ed34f26daaa735244"; + md5.run = "85ff7934dbb53b0795aa1ab30908517c"; md5.doc = "01e10acdee4b8a5e83271e3981e3cd3f"; md5.source = "65585c51d1c524924cb0887aaa84fc7c"; hasRunfiles = true; @@ -22732,26 +22732,26 @@ tl: { # no indentation }; "williams" = { stripPrefix = 0; - md5.run = "dbffa89fd9cc42a0dc42d2a456db6ad6"; + md5.run = "1101dcde0b7c96d0a65a3d92ff89769f"; md5.doc = "a33c9ace13343383e6aa642d56c5ba1b"; hasRunfiles = true; }; "withargs" = { stripPrefix = 0; - md5.run = "6c172a19004ce6556b1ae352d3930a52"; + md5.run = "5744e6d1d957265e7d5e84a2548c3cfd"; md5.doc = "ce055a5ff50e874078bf305dcc7e88ba"; hasRunfiles = true; version = "0.0.2"; }; "wnri" = { stripPrefix = 0; - md5.run = "dbf65dced6ec10433dcf662b8c98c6e6"; + md5.run = "ca7d9b407e97f627fc076360f1bb83e5"; md5.doc = "92b22905eb32c6489401483c64f0b5e8"; hasRunfiles = true; }; "wnri-latex" = { stripPrefix = 0; - md5.run = "a442b09c3a5ca783baecbcfc69203c56"; + md5.run = "bb9f51e77e4a5899651d8be784a048b4"; md5.doc = "1ccf4137ecdc926eaf1a53141d8bccb6"; md5.source = "e73d02252beea13407fd4b4d15f9ddb7"; hasRunfiles = true; @@ -22759,7 +22759,7 @@ tl: { # no indentation }; "wordlike" = { stripPrefix = 0; - md5.run = "3f63a4cd04a6f6a9d1cd12d02bee2689"; + md5.run = "c861b9be02c7465323a54b12cff4ef0d"; md5.doc = "cf387d5cbad0dbb880a64d6043cc5861"; md5.source = "249984a8b1c717a5b46034346cf0dfeb"; hasRunfiles = true; @@ -22774,7 +22774,7 @@ tl: { # no indentation }; "wsemclassic" = { stripPrefix = 0; - md5.run = "01bb6b6cc2c264a2162552096e8494bc"; + md5.run = "12f1b22bac7a6cf467c43e69c0639bff"; md5.doc = "9f2ffbd7e9e11a0143f02e1b0b1a2d16"; md5.source = "3916ea90e355a9dee14c6f4928e68cd4"; hasRunfiles = true; @@ -22782,13 +22782,13 @@ tl: { # no indentation }; "wsuipa" = { stripPrefix = 0; - md5.run = "f3552a51a151f9323045ede1bb6030f7"; + md5.run = "9a258973a23c65758ad4fe33f68cce5d"; md5.doc = "271c318812f4bc100e274c56efa431e5"; hasRunfiles = true; }; "xargs" = { stripPrefix = 0; - md5.run = "3232ff801279f04db7a3302b5f0f5aa0"; + md5.run = "83dc28f3dd34921a255747b08cc66d42"; md5.doc = "a0721f161b35516c40715218220d7bc7"; md5.source = "3ebaf1cdaf88598ce445d1e6550294d7"; hasRunfiles = true; @@ -22796,14 +22796,14 @@ tl: { # no indentation }; "xcharter" = { stripPrefix = 0; - md5.run = "79b1889116f71935ccaf51033cc41e22"; + md5.run = "fc1ac1cf98f0fdc288e9f9b6a349f93a"; md5.doc = "bca95a053ffeff2a4ff0c29f0d091e70"; hasRunfiles = true; version = "1.074"; }; "xcite" = { stripPrefix = 0; - md5.run = "5a54ec4370b238b504f869c41ef03e35"; + md5.run = "9a5d7143b0f784e14f760262a0a93ee7"; md5.doc = "a63fa4312575df866c452ca4ebff6fb3"; md5.source = "5482f160e31b5b67700f9c0b45153780"; hasRunfiles = true; @@ -22811,7 +22811,7 @@ tl: { # no indentation }; "xcjk2uni" = { stripPrefix = 0; - md5.run = "c820b6d4a4cd616ef58941893a3fdcaa"; + md5.run = "e9bf375120d3ceaa9bce5f8e211c44cf"; md5.doc = "1d9b648b4de7fb8418455448678276cf"; md5.source = "864ed73046af956feda41c424e82e0bf"; hasRunfiles = true; @@ -22827,7 +22827,7 @@ tl: { # no indentation }; "xcolor-solarized" = { stripPrefix = 0; - md5.run = "549a779e172c67a1a02c936810ff9810"; + md5.run = "43d6516aa1f8ad0f98969715ca453f54"; md5.doc = "033cec93c74301071d15b8bb4753bfd5"; md5.source = "0c374de12ec7cd88a6297d6dd8e0505f"; hasRunfiles = true; @@ -22835,14 +22835,14 @@ tl: { # no indentation }; "xcomment" = { stripPrefix = 0; - md5.run = "c2a5511eac2c5acaae6b94905596e3e7"; + md5.run = "c7b03436c2f210c1c90c47ba559fb7fe"; md5.doc = "433ccc6463c070149ad78600d9ef1afc"; hasRunfiles = true; version = "1.3"; }; "xcookybooky" = { stripPrefix = 0; - md5.run = "3b4df02efbc0450e8d8a66c255882cdb"; + md5.run = "9aba8527e1046ff1c40ef06baa6a793a"; md5.doc = "0ea0221c530e321bd305e45b67a8e628"; md5.source = "2d1ddae23ee3e73306eb4d051f4887a3"; hasRunfiles = true; @@ -22850,7 +22850,7 @@ tl: { # no indentation }; "xdoc" = { stripPrefix = 0; - md5.run = "f602cb7655efa4cb56ca0906e2df223f"; + md5.run = "cd9aae8da5676d117dfa896f181a7287"; md5.doc = "ac81e3e164ef177f1c6e9a5901006486"; md5.source = "27808814dd544b2df4e6fc303ec6269c"; hasRunfiles = true; @@ -22927,7 +22927,7 @@ tl: { # no indentation }; "xetex-devanagari" = { stripPrefix = 0; - md5.run = "4d79a99ed70ea997e46883ab948b38f9"; + md5.run = "2b6f2f492f5b6145af564ad3d8cb5b00"; md5.doc = "4440f3c31984c3c06271938c21723f10"; hasRunfiles = true; version = "0.5"; @@ -22984,7 +22984,7 @@ tl: { # no indentation }; "xfor" = { stripPrefix = 0; - md5.run = "096a353e7d51559e3f7ac7656c0fea8a"; + md5.run = "093995024da5d79d53e1f6d0c96b4210"; md5.doc = "ad7cc62b6a6c99b7b864a1678bd4ae37"; md5.source = "0d3d347b5d3b4b409d6226e53c781d24"; hasRunfiles = true; @@ -22992,7 +22992,7 @@ tl: { # no indentation }; "xgreek" = { stripPrefix = 0; - md5.run = "48ac13470afb846bdd5b248848bb504d"; + md5.run = "693033b13cae51db9e9f044e3c9eaf8c"; md5.doc = "6c0b46303e65196b64f533e8bc871fd9"; md5.source = "298b114efd9e381a798c2eb1c75e3fe5"; hasRunfiles = true; @@ -23000,14 +23000,14 @@ tl: { # no indentation }; "xhfill" = { stripPrefix = 0; - md5.run = "abf8af94741eb5c7dccbba536ac42ef2"; + md5.run = "cf5355f7bcb72ec665b640ae13431ed3"; md5.doc = "9ebea5cafd40dc2056826d0bc82f4e6f"; hasRunfiles = true; version = "1.01"; }; "xifthen" = { stripPrefix = 0; - md5.run = "de4f4312e5c1a9c2dda90cf81a104a14"; + md5.run = "5f240da6325bc3e9329a2db4d4d5032d"; md5.doc = "b30a87ab9f17321be94094931b0c5a8a"; hasRunfiles = true; version = "1.3"; @@ -23025,7 +23025,7 @@ tl: { # no indentation }; "xint" = { stripPrefix = 0; - md5.run = "de1f9c22306d9efc0c30f2dde6fcc786"; + md5.run = "7f835cd8ddee0bdef070916dd152d389"; md5.doc = "693676a26a0832fcd5a5f43b3b9c9b92"; md5.source = "33966de7b4cf474d170a6f27ed2bf439"; hasRunfiles = true; @@ -23033,7 +23033,7 @@ tl: { # no indentation }; "xits" = { stripPrefix = 0; - md5.run = "1c6751d86458547e956bbb7277863461"; + md5.run = "5466033a90abed0e3d79faceea85416a"; md5.doc = "9b67e36d9f3a0ab3be2f64aa80d01460"; md5.source = "b5fe26c32678a7e2da75c66c923bb6ba"; hasRunfiles = true; @@ -23049,7 +23049,7 @@ tl: { # no indentation }; "xlop" = { stripPrefix = 0; - md5.run = "c5068c5340e2e9abc179422dc4835797"; + md5.run = "f15adbe3c408513bf981a0dafe363525"; md5.doc = "6307117b653f131da8131555722a871f"; md5.source = "ae5d13a373f19ccb49cc485e003bb641"; hasRunfiles = true; @@ -23069,19 +23069,19 @@ tl: { # no indentation deps."pdftex" = tl."pdftex"; deps."tex" = tl."tex"; deps."xmltexconfig" = tl."xmltexconfig"; - md5.run = "cf20e768dbf3392fc8655d53b677ec74"; + md5.run = "72e9f34035d249e0fd5caa4a1252c5bc"; md5.doc = "ae0581add33351c5098a161a37c0507d"; hasRunfiles = true; version = "0.8"; }; "xmltexconfig" = { stripPrefix = 0; - md5.run = "cea4bdefa29b014d371a026a3db63e4f"; + md5.run = "396b7a8f368dca0f212f70fe7b5fa102"; hasRunfiles = true; }; "xmpincl" = { stripPrefix = 0; - md5.run = "c5305bf77e77ae5978647a11b1bf5399"; + md5.run = "a25e57610ddaa43f95d7ef40ce640cb2"; md5.doc = "08b4ca1438bb7e16f518e7e1b3236e96"; md5.source = "6c1274e472a44e28effcc868dbe0dced"; hasRunfiles = true; @@ -23089,21 +23089,21 @@ tl: { # no indentation }; "xnewcommand" = { stripPrefix = 0; - md5.run = "498e9b88cf1408b95879fde3e237d002"; + md5.run = "a0afbcf50f55c4ad1aa20bba536db818"; md5.doc = "5003faa97362961b4f23f9be577aaea3"; hasRunfiles = true; version = "1.2"; }; "xoptarg" = { stripPrefix = 0; - md5.run = "8c9a763b4d75e36e26ac255d53733c2a"; + md5.run = "6826defef48828168546970595254152"; md5.doc = "8d456afd25f041c9eabf27d456466c22"; hasRunfiles = true; version = "1.0"; }; "xpatch" = { stripPrefix = 0; - md5.run = "3c51bbc6888770b774a7e22aa1ed7604"; + md5.run = "144b908757965f15529c1fab732805de"; md5.doc = "963bff7713574313ca7effeaaff081d1"; md5.source = "80bea387b556e7b793ec29c6ac1887a3"; hasRunfiles = true; @@ -23111,7 +23111,7 @@ tl: { # no indentation }; "xpeek" = { stripPrefix = 0; - md5.run = "644158e02487ad403f962233f9d6f36b"; + md5.run = "eaaa67cb002829ca61363128c1083654"; md5.doc = "4bca5ee48fbb841e832076c9879ad446"; md5.source = "f5b94f79db0cb1d1ce6cae5cbd701d66"; hasRunfiles = true; @@ -23119,7 +23119,7 @@ tl: { # no indentation }; "xpicture" = { stripPrefix = 0; - md5.run = "fd37a129123ffea72484c6e788b9951f"; + md5.run = "3844f943edbd03d2f80b60c17fcf5a48"; md5.doc = "e873ee3cde580f5ac6ac8140b5297210"; md5.source = "ecca09fe997e82d162dc527ca0a7a3bb"; hasRunfiles = true; @@ -23127,7 +23127,7 @@ tl: { # no indentation }; "xpinyin" = { stripPrefix = 0; - md5.run = "533e530c330d5060e49a7e7fded3f9bb"; + md5.run = "8534060cf4284208d04c4e0f51ea3dcc"; md5.doc = "f798ae0817bcb689aa7fc70ea58aeacc"; md5.source = "5f0a35abe8b128d5fda87f83b22f2099"; hasRunfiles = true; @@ -23135,14 +23135,14 @@ tl: { # no indentation }; "xprintlen" = { stripPrefix = 0; - md5.run = "227871395966f29aa10bd6bfc4a947e6"; + md5.run = "bc9686d5f6d2a819027edef0e3642350"; md5.doc = "7bcd424af141681380999f4e628c9c9c"; hasRunfiles = true; version = "1.0"; }; "xpunctuate" = { stripPrefix = 0; - md5.run = "42154fea3805fdd0740bc234862266ab"; + md5.run = "c8a8f71182003a9de219fa2d4c52eec1"; md5.doc = "21e92ebda1b0a847d51f879d0e8a88c0"; md5.source = "a12e090d79eaaba005f977d0dafb9247"; hasRunfiles = true; @@ -23150,14 +23150,14 @@ tl: { # no indentation }; "xq" = { stripPrefix = 0; - md5.run = "0be9878cffbc8bac352b7b827cd0444a"; + md5.run = "248dfdd8e8452d545c3761925c0c6382"; md5.doc = "fbb4794c7859407e82833b7e14b5999d"; hasRunfiles = true; version = "0.4"; }; "xskak" = { stripPrefix = 0; - md5.run = "172a346faa2dae1f0b017d7defd4e8f6"; + md5.run = "0f605ae93b85dbe3a673082cc77ef3c2"; md5.doc = "bcfb4fd6f22ea7d5caa9356f8f66e8ca"; md5.source = "6c7ed9b78982d88e21c86c46bb78cabc"; hasRunfiles = true; @@ -23165,14 +23165,14 @@ tl: { # no indentation }; "xstring" = { stripPrefix = 0; - md5.run = "b296655c7866af8d7579a2d5c95db773"; + md5.run = "b41172d584663392fd441e0aad2eb71f"; md5.doc = "7a75eba5be4df8811d9ab46a0a2ad00f"; hasRunfiles = true; version = "1.7c"; }; "xtab" = { stripPrefix = 0; - md5.run = "5e0042cbcfb01479212ceb6e54f11b05"; + md5.run = "56559832795c71771b733ddb9b9bf7eb"; md5.doc = "0897babd402a4d0e1f2017b1d8389c85"; md5.source = "8ad1ea2c0886d8fce4134e11dc477e72"; hasRunfiles = true; @@ -23188,21 +23188,21 @@ tl: { # no indentation }; "xwatermark" = { stripPrefix = 0; - md5.run = "80a6d82f580962014a9b1c3a56cf798d"; + md5.run = "b2174757ba1d49583610ad3abe287ce0"; md5.doc = "d1d22bc2c6c6fc29d9db520111732ed4"; hasRunfiles = true; version = "1.5.2d"; }; "xyling" = { stripPrefix = 0; - md5.run = "2a3ea13b38b301af64c5e13b28e64179"; + md5.run = "bef9af583bdaf63ad87811ca15229263"; md5.doc = "a578015fc0c27821e6ae3cb38e40615c"; hasRunfiles = true; version = "1.1"; }; "xymtex" = { stripPrefix = 0; - md5.run = "c78a517a9493702381cf6275d6c06fcb"; + md5.run = "3e1cc83fa8aef38d1354dd31dc59f706"; md5.doc = "b6e7a59c2ba772b48dae3b524bbae25c"; md5.source = "139328908fda8da8e27b8d5d2e0868db"; hasRunfiles = true; @@ -23210,7 +23210,7 @@ tl: { # no indentation }; "xypic" = { stripPrefix = 0; - md5.run = "5783717dd8dcd3cb2799dcf57caaa5ba"; + md5.run = "8537b7b1016240a6435805e81890a91b"; md5.doc = "f56581a7253f0c30e18f1da21b2659ed"; hasRunfiles = true; version = "3.8.9"; @@ -23222,21 +23222,21 @@ tl: { # no indentation }; "xytree" = { stripPrefix = 0; - md5.run = "b81455fd2a5aa8d3106ebb86665cfd16"; + md5.run = "1e10caec5dbdf33cce0ff43d90b019f7"; md5.doc = "f4f4b1035b3f0ee8ca9018914717bf95"; hasRunfiles = true; version = "1.5"; }; "yafoot" = { stripPrefix = 0; - md5.run = "8224ce05f8b865edb148f90b1bc9af90"; + md5.run = "f7fc1c0abf645997d3bd171aca9e9a14"; md5.doc = "f2f4e75f5c14563fe3940e689cf615c0"; md5.source = "0c7ad6c0fdd8da81edd23a19423caa5e"; hasRunfiles = true; }; "yagusylo" = { stripPrefix = 0; - md5.run = "395d91bfa2f5edf7729a00064eaef8cf"; + md5.run = "9a8e6c69b539635d6e33e39281d0641d"; md5.doc = "9a313302fc0c21aee7494abb12610c88"; md5.source = "e2ffe9bb679ac4ed583ba2e72140b0a4"; hasRunfiles = true; @@ -23244,13 +23244,13 @@ tl: { # no indentation }; "yannisgr" = { stripPrefix = 0; - md5.run = "54fa71c2c7f8d6176ce3ffecff0830af"; + md5.run = "e341e50c803d4f9507dd02a5283779ff"; md5.doc = "48973501c421f6cff5bf9b989b2f7e6b"; hasRunfiles = true; }; "yathesis" = { stripPrefix = 0; - md5.run = "92517b5106da3bc97daf18e8bab42c53"; + md5.run = "914de08b77af83873fb470fec9628dc0"; md5.doc = "2ac6d091ffe00f1361c4ea7e59826b73"; md5.source = "492e3297e3c117d8f40dc3f3b0b333bc"; hasRunfiles = true; @@ -23258,14 +23258,14 @@ tl: { # no indentation }; "yax" = { stripPrefix = 0; - md5.run = "df2a552dbd48b53d1459a7e38b5f744a"; + md5.run = "57fcb631c1c124f68df10baed731c1a4"; md5.doc = "87f56f0e4ba9b1dd5338c7cfa4bbafad"; hasRunfiles = true; version = "1.03"; }; "ydoc" = { stripPrefix = 0; - md5.run = "2dbc2dcda4d49c136f7bf13a3cb746c0"; + md5.run = "5043018fece8894f139dedfa6a1ccd69"; md5.doc = "8fa57688e80f5cce925a5ae9803518fe"; md5.source = "66d4d3442b0aba327f4b438821155722"; hasRunfiles = true; @@ -23273,7 +23273,7 @@ tl: { # no indentation }; "yfonts" = { stripPrefix = 0; - md5.run = "0de171ffc29aecbf344ef0ab82591189"; + md5.run = "ec1286429a5e79e94174b25aef6bd05d"; md5.doc = "27185c4859ee74bfc502e57ca3e8ed0e"; md5.source = "5a20a618105d1813246d62c51f596e53"; hasRunfiles = true; @@ -23281,7 +23281,7 @@ tl: { # no indentation }; "yfonts-t1" = { stripPrefix = 0; - md5.run = "76dd7fee63c74941ad92c3d5a0b2ad0e"; + md5.run = "17db91757277f814e15f092f0c837cd1"; md5.doc = "0455bbba7b9424d67332716ce44a8a1a"; hasRunfiles = true; version = "1.0"; @@ -23296,7 +23296,7 @@ tl: { # no indentation }; "york-thesis" = { stripPrefix = 0; - md5.run = "4a125b3f06d324557a54521b48beb255"; + md5.run = "b1dab4414a7d8c2d21bc1882fd2fc2b6"; md5.doc = "5f284fc55b269abc1962b31d6c5fcb5e"; md5.source = "b57c23a76c7079a4044e46059da16d8b"; hasRunfiles = true; @@ -23304,14 +23304,14 @@ tl: { # no indentation }; "youngtab" = { stripPrefix = 0; - md5.run = "61691bd963cc00574d4a3bb4dd716f7b"; + md5.run = "49b98ace12fc90236407d6bf2cf1298c"; md5.doc = "aa029b61768b6e130f1288ad1562005d"; md5.source = "d74a1965cb2c1f68d497231f9a80e8c0"; hasRunfiles = true; version = "1.1"; }; "yplan" = { - md5.run = "363df9fdd6b6be005aa90762065104f7"; + md5.run = "20adc185c07a697e3ca05fbabeac8ee0"; md5.doc = "82dcf6cdc54e11fa26a532fe0c92ee0b"; hasRunfiles = true; }; @@ -23335,13 +23335,13 @@ tl: { # no indentation }; "zed-csp" = { stripPrefix = 0; - md5.run = "a066ae722b2a64200be53b7b53611279"; + md5.run = "a3115ac3a6eb9722d11de277fdfde630"; md5.doc = "fd801bfeee058e0267b8711e9316a313"; hasRunfiles = true; }; "zhmetrics" = { stripPrefix = 0; - md5.run = "838ffa3de359419390392e1c9e76aabd"; + md5.run = "d3c470b849f865bb69b6b28871740840"; md5.doc = "663ee8897991dc4b1557b2fe5244bc66"; md5.source = "e03d6b48771945d32bc3d3e569ff1a9e"; hasRunfiles = true; @@ -23349,7 +23349,7 @@ tl: { # no indentation }; "zhnumber" = { stripPrefix = 0; - md5.run = "3cf29921e8b801f9e9ea90e86a176ec0"; + md5.run = "0ba877d96fdb7dbae3e641dcc781fd66"; md5.doc = "dfebea3c4f30bc2ac8d114981c5518b0"; md5.source = "32fa76cc8224d95ae4a91863c80c1319"; hasRunfiles = true; @@ -23357,7 +23357,7 @@ tl: { # no indentation }; "zhspacing" = { stripPrefix = 0; - md5.run = "87917ad44dcd06a5c433b30dd7223139"; + md5.run = "573ffa627ab4557cf9edab81b5f6ba79"; md5.doc = "e57a36d314172ad6b0cd4c243dd2779b"; hasRunfiles = true; version = "2012-03-14"; @@ -23371,41 +23371,41 @@ tl: { # no indentation }; "zlmtt" = { stripPrefix = 0; - md5.run = "b4696ca48a4b41f3e61037829867cf6a"; + md5.run = "f15656aecbf2c0ed7480aaa4475270c9"; md5.doc = "dfd6e83ab65c6645785e55b055bb98d6"; hasRunfiles = true; version = "1.01"; }; "zwgetfdate" = { stripPrefix = 0; - md5.run = "c7e5a4bc462ba59b310ce68abfeb271d"; + md5.run = "3bdf3fa4a451fd12a6b3843f8b33cec5"; md5.doc = "5f2565048289296e66d24e4f48720c08"; hasRunfiles = true; }; "zwpagelayout" = { stripPrefix = 0; - md5.run = "5b273978efcada6130e74711b57f35e7"; + md5.run = "5879481185e104d07f3074931e268e3c"; md5.doc = "fc248a28f1a809207770e0cbd02bc0f9"; hasRunfiles = true; version = "1.4d"; }; "zxjafbfont" = { stripPrefix = 0; - md5.run = "b22e2a35ed793f6d93361f584dbc596f"; + md5.run = "df547890e73406d9b7b9bc5daf6c58e4"; md5.doc = "774a4265e53bb63408cc300838c6d291"; hasRunfiles = true; version = "0.2"; }; "zxjafont" = { stripPrefix = 0; - md5.run = "170d01a20906b531ca7b7fc6732934ee"; + md5.run = "1836172bd31aeec1a9aa091d46e3a9da"; md5.doc = "f1a5b0a5897e9d56d7e03c64e7dcd9ee"; hasRunfiles = true; version = "0.2"; }; "zxjatype" = { stripPrefix = 0; - md5.run = "901fe4f3e38bdc9879310ddf867ae1a5"; + md5.run = "47640fd10c4c094655a766b545e0482d"; md5.doc = "15f8561f988757b80d1b103df0e867e9"; hasRunfiles = true; version = "0.6"; diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix index 209b5663ad5..d8c8341cb5a 100644 --- a/pkgs/top-level/aliases.nix +++ b/pkgs/top-level/aliases.nix @@ -96,6 +96,7 @@ doNotDisplayTwice rec { system_config_printer = system-config-printer; # added 2016-01-03 telepathy_qt5 = qt5.telepathy; # added 2015-12-19 tftp_hpa = tftp-hpa; # added 2015-04-03 + usb_modeswitch = usb-modeswitch; # added 2016-05-10 vimbWrapper = vimb; # added 2015-01 vimprobable2Wrapper = vimprobable2; # added 2015-01 virtviewer = virt-viewer; # added 2015-12-24 diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 949b96aa00a..009d452274d 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1052,6 +1052,7 @@ in collectd = callPackage ../tools/system/collectd { rabbitmq-c = rabbitmq-c_0_4; libmysql = mysql.lib; + libsigrok = libsigrok-0-3-0; # not compatible with >= 0.4.0 yet }; colormake = callPackage ../development/tools/build-managers/colormake { }; @@ -1068,7 +1069,8 @@ in "unionfs-fuse" = callPackage ../tools/filesystems/unionfs-fuse { }; - usb_modeswitch = callPackage ../development/tools/misc/usb-modeswitch { }; + usb-modeswitch = callPackage ../development/tools/misc/usb-modeswitch { }; + usb-modeswitch-data = callPackage ../development/tools/misc/usb-modeswitch/data.nix { }; anthy = callPackage ../tools/inputmethods/anthy { }; @@ -1891,6 +1893,8 @@ in pixz = callPackage ../tools/compression/pixz { }; + pxattr = callPackage ../tools/archivers/pxattr { }; + pxz = callPackage ../tools/compression/pxz { }; hans = callPackage ../tools/networking/hans { }; @@ -2139,6 +2143,8 @@ in less = callPackage ../tools/misc/less { }; + lesspipe = callPackage ../tools/misc/lesspipe { }; + liquidsoap = callPackage ../tools/audio/liquidsoap/full.nix { }; lnav = callPackage ../tools/misc/lnav { }; @@ -2569,6 +2575,8 @@ in noip = callPackage ../tools/networking/noip { }; + milu = callPackage ../applications/misc/milu { }; + mpack = callPackage ../tools/networking/mpack { }; pa_applet = callPackage ../tools/audio/pa-applet { }; @@ -4422,8 +4430,10 @@ in overrides = config.haskellPackageOverrides or (self: super: {}); }; - inherit (self.haskellPackages) ghc cabal-install; + inherit (self.haskellPackages) ghc; + cabal-install = haskell.lib.disableSharedExecutables haskellPackages.cabal-install; + stack = haskell.lib.overrideCabal haskellPackages.stack (drv: { enableSharedExecutables = false; isLibrary = false; @@ -5231,6 +5241,8 @@ in scala_2_11 = callPackage ../development/compilers/scala { }; scala = scala_2_11; + scalafmt = callPackage ../development/tools/scalafmt { }; + sdcc = callPackage ../development/compilers/sdcc { boost = boost159; }; smlnjBootstrap = callPackage ../development/compilers/smlnj/bootstrap.nix { }; @@ -5988,6 +6000,11 @@ in libcxxabi = llvmPackages.libcxxabi; libsigrok = callPackage ../development/tools/libsigrok { }; + # old version: + libsigrok-0-3-0 = libsigrok.override { + version = "0.3.0"; + sha256 = "0l3h7zvn3w4c1b9dgvl3hirc4aj1csfkgbk87jkpl7bgl03nk4j3"; + }; libsigrokdecode = callPackage ../development/tools/libsigrokdecode { }; @@ -9064,6 +9081,8 @@ in tinyxml-2 = callPackage ../development/libraries/tinyxml-2 { }; + tivodecode = callPackage ../applications/video/tivodecode { }; + tk = tk-8_6; tk-8_6 = callPackage ../development/libraries/tk/8.6.nix { }; @@ -9079,6 +9098,8 @@ in tremor = callPackage ../development/libraries/tremor { }; + udns = callPackage ../development/libraries/udns { }; + uid_wrapper = callPackage ../development/libraries/uid_wrapper { }; unibilium = callPackage ../development/libraries/unibilium { }; @@ -11660,6 +11681,8 @@ in xhtml1 = callPackage ../data/sgml+xml/schemas/xml-dtd/xhtml1 { }; + xits-math = callPackage ../data/fonts/xits-math { }; + xkeyboard_config = xorg.xkeyboardconfig; xlsx2csv = pythonPackages.xlsx2csv; @@ -12241,8 +12264,6 @@ in darcsum = callPackage ../applications/editors/emacs-modes/darcsum { }; - dash = callPackage ../applications/editors/emacs-modes/dash { }; - # ecb = callPackage ../applications/editors/emacs-modes/ecb { }; emacsClangCompleteAsync = callPackage ../applications/editors/emacs-modes/emacs-clang-complete-async { }; @@ -12259,8 +12280,6 @@ in ess = callPackage ../applications/editors/emacs-modes/ess { }; - flycheck = callPackage ../applications/editors/emacs-modes/flycheck { }; - flymakeCursor = callPackage ../applications/editors/emacs-modes/flymake-cursor { }; gh = callPackage ../applications/editors/emacs-modes/gh { }; @@ -12269,8 +12288,6 @@ in gist = callPackage ../applications/editors/emacs-modes/gist { }; - gitModes = callPackage ../applications/editors/emacs-modes/git-modes { }; - haskellMode = callPackage ../applications/editors/emacs-modes/haskell { }; hsc3Mode = callPackage ../applications/editors/emacs-modes/hsc3 { }; @@ -12299,8 +12316,6 @@ in loremIpsum = callPackage ../applications/editors/emacs-modes/lorem-ipsum { }; - magit = callPackage ../applications/editors/emacs-modes/magit { }; - markdownMode = callPackage ../applications/editors/emacs-modes/markdown-mode { }; maudeMode = callPackage ../applications/editors/emacs-modes/maude { }; @@ -12323,8 +12338,6 @@ in org2blog = callPackage ../applications/editors/emacs-modes/org2blog { }; - pcache = callPackage ../applications/editors/emacs-modes/pcache { }; - phpMode = callPackage ../applications/editors/emacs-modes/php { }; prologMode = callPackage ../applications/editors/emacs-modes/prolog { }; @@ -12353,8 +12366,6 @@ in rudel = callPackage ../applications/editors/emacs-modes/rudel { }; - s = callPackage ../applications/editors/emacs-modes/s { }; - sbtMode = callPackage ../applications/editors/emacs-modes/sbt-mode { }; scalaMode1 = callPackage ../applications/editors/emacs-modes/scala-mode/v1.nix { }; @@ -12370,8 +12381,6 @@ in writeGood = callPackage ../applications/editors/emacs-modes/writegood { }; - xmlRpc = callPackage ../applications/editors/emacs-modes/xml-rpc { }; - cask = callPackage ../applications/editors/emacs-modes/cask { }; }; @@ -12453,6 +12462,8 @@ in fetchmail = callPackage ../applications/misc/fetchmail { }; + flacon = callPackage ../applications/audio/flacon { }; + fldigi = callPackage ../applications/audio/fldigi { }; fluidsynth = callPackage ../applications/audio/fluidsynth { @@ -13920,6 +13931,8 @@ in slrn = callPackage ../applications/networking/newsreaders/slrn { }; + sniproxy = callPackage ../applications/networking/sniproxy { }; + sooperlooper = callPackage ../applications/audio/sooperlooper { }; sorcer = callPackage ../applications/audio/sorcer { }; diff --git a/pkgs/top-level/dotnet-packages.nix b/pkgs/top-level/dotnet-packages.nix index 38dc513ff83..e8273f35cde 100644 --- a/pkgs/top-level/dotnet-packages.nix +++ b/pkgs/top-level/dotnet-packages.nix @@ -95,13 +95,29 @@ let self = dotnetPackages // overrides; dotnetPackages = with self; { outputFiles = [ "lib/net40/*" ]; }; - NUnit = fetchNuGet { + NUnit3 = fetchNuGet { + baseName = "NUnit"; + version = "3.0.1"; + sha256 = "1g3j3kvg9vrapb1vjgq65nvn1vg7bzm66w7yjnaip1iww1yn1b0p"; + outputFiles = [ "lib/*" ]; + }; + + NUnit2 = fetchNuGet { baseName = "NUnit"; version = "2.6.4"; sha256 = "1acwsm7p93b1hzfb83ia33145x0w6fvdsfjm9xflsisljxpdx35y"; outputFiles = [ "lib/*" ]; }; + NUnit = NUnit2; + + NUnitConsole = fetchNuGet { + baseName = "NUnit.Console"; + version = "3.0.1"; + sha256 = "154bqwm2n95syv8nwd67qh8qsv0b0h5zap60sk64z3kd3a9ffi5p"; + outputFiles = [ "tools/*" ]; + }; + MaxMindDb = fetchNuGet { baseName = "MaxMind.Db"; version = "1.1.0.0"; @@ -146,8 +162,8 @@ let self = dotnetPackages // overrides; dotnetPackages = with self; { SharpFont = fetchNuGet { baseName = "SharpFont"; - version = "3.0.1"; - sha256 = "1g639i8mbxc6qm0xqsf4mc0shv8nwdaidllka2xxwyksbq54skhs"; + version = "3.1.0"; + sha256 = "137y514i4zi0i0qsx7nv4ibl4kifbr8xr23rqdkwf7yxf88jjmh2"; outputFiles = [ "lib/*" "config/*" ]; }; @@ -167,8 +183,8 @@ let self = dotnetPackages // overrides; dotnetPackages = with self; { MonoNat = fetchNuGet { baseName = "Mono.Nat"; - version = "1.2.21"; - sha256 = "011xhmjrx6w5h110fcp40l95k3qj1gkzz3axgbfy0s8haf5hsf7s"; + version = "1.2.24"; + sha256 = "0vfkach11kkcd9rcqz3s38m70d5spyb21gl99iqnkljxj5555wjs"; outputFiles = [ "lib/*" ]; }; diff --git a/pkgs/top-level/emacs-packages.nix b/pkgs/top-level/emacs-packages.nix index 3407a92e6a0..426a2a4185b 100644 --- a/pkgs/top-level/emacs-packages.nix +++ b/pkgs/top-level/emacs-packages.nix @@ -59,6 +59,10 @@ let inherit lib; }; + orgPackages = import ../applications/editors/emacs-modes/org-packages.nix { + inherit fetchurl lib stdenv texinfo; + }; + emacsWithPackages = import ../build-support/emacs/wrapper.nix { inherit lib lndir makeWrapper stdenv; }; @@ -761,20 +765,6 @@ let }; }; - # Deprecated in favor of git-commit - git-commit-mode = melpaBuild rec { - pname = "git-commit-mode"; - version = "1.0.0"; - src = fetchFromGitHub { - owner = "magit"; - repo = "git-modes"; - rev = version; - sha256 = "12a1xs3w2dp1a55qhc01dwjkavklgfqnn3yw85dhi4jdz8r8j7m0"; - }; - files = [ "git-commit-mode.el" ]; - meta = git-commit.meta; - }; - git-gutter = melpaBuild rec { pname = "git-gutter"; version = "20150930"; @@ -793,20 +783,6 @@ let #TODO git-gutter-fringe - # Deprecated in favor of git-rebase - git-rebase-mode = melpaBuild rec { - pname = "git-rebase-mode"; - version = "1.0.0"; - src = fetchFromGitHub { - owner = "magit"; - repo = "git-modes"; - rev = version; - sha256 = "12a1xs3w2dp1a55qhc01dwjkavklgfqnn3yw85dhi4jdz8r8j7m0"; - }; - files = [ "git-rebase-mode.el" ]; - meta = git-rebase.meta; - }; - git-timemachine = melpaBuild rec { pname = "git-timemachine"; version = "2.3"; @@ -1134,85 +1110,6 @@ let }; }; - magit = melpaBuild rec { - pname = "magit"; - version = "2.3.1"; - src = fetchFromGitHub { - owner = pname; - repo = pname; - rev = version; - sha256 = "01x9kahr3szzc00wlfrihl4x28yrq065fq4rpzx9dxiksayk24pd"; - }; - packageRequires = [ dash git-commit magit-popup with-editor ]; - fileSpecs = [ "lisp/magit-utils.el" - "lisp/magit-section.el" - "lisp/magit-git.el" - "lisp/magit-mode.el" - "lisp/magit-process.el" - "lisp/magit-core.el" - "lisp/magit-diff.el" - "lisp/magit-wip.el" - "lisp/magit-apply.el" - "lisp/magit-log.el" - "lisp/magit.el" - "lisp/magit-sequence.el" - "lisp/magit-commit.el" - "lisp/magit-remote.el" - "lisp/magit-bisect.el" - "lisp/magit-stash.el" - "lisp/magit-blame.el" - "lisp/magit-ediff.el" - "lisp/magit-extras.el" - "Documentation/magit.texi" - "Documentation/AUTHORS.md" - "COPYING" - ]; - meta = { - description = "Emacs interface for Git that aspires to be a complete Git porcelain"; - license = gpl3Plus; - }; - }; - git-commit = melpaBuild rec { - pname = "git-commit"; - version = magit.version; - src = magit.src; - packageRequires = [ dash with-editor ]; - fileSpecs = [ "lisp/git-commit.el" ]; - meta = magit.meta // { - description = "Emacs mode for editig Git commit messages"; - }; - }; - git-rebase = melpaBuild rec { - pname = "git-rebase"; - version = magit.version; - src = magit.src; - packageRequires = [ dash with-editor magit ]; - fileSpecs = [ "lisp/git-rebase.el" ]; - meta = magit.meta // { - description = "Emacs major-mode which makes editing rebase scripts more fun"; - }; - }; - magit-popup = melpaBuild rec { - pname = "magit-popup"; - version = magit.version; - src = magit.src; - packageRequires = [ dash with-editor ]; - fileSpecs = [ "Documentation/magit-popup.texi" "lisp/magit-popup.el" ]; - meta = magit.meta // { - description = "Infix arguments with feedback in a buffer library for Emacs"; - }; - }; - with-editor = melpaBuild rec { - pname = "with-editor"; - version = magit.version; - src = magit.src; - packageRequires = [ async dash ]; - fileSpecs = [ "Documentation/with-editor.texi" "lisp/with-editor.el" ]; - meta = magit.meta // { - description = "Use the Emacsclient as EDITOR of child processes library for Emacs"; - }; - }; - markdown-toc = melpaBuild rec { pname = "markdown-toc"; version = "0.0.8"; @@ -1299,19 +1196,6 @@ let }; }; - org-plus-contrib = elpaBuild rec { - pname = "org-plus-contrib"; - version = "20150406"; - src = fetchurl { - url = "http://orgmode.org/elpa/${pname}-${version}.tar"; - sha256 = "1ny2myg4rm75ab2gl5rqrwy7h53q0vv18df8gk3zv13kljj76c6i"; - }; - meta = { - description = "Notes, TODO lists, projects, and authoring in plain-text with Emacs"; - license = gpl3Plus; - }; - }; - org-trello = melpaBuild rec { pname = "org-trello"; version = "0.7.5"; @@ -1843,5 +1727,6 @@ in // melpaPackages self // elpaPackages self // melpaStablePackages self + // orgPackages self // packagesFun self ) diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index e040af2d359..fca74bcdcc4 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -745,6 +745,22 @@ let sha256 = "1rmm1ky7irqypqjkk6qcd2n0xkzpaggdxql9dp9i9qci5rvvwwd4"; }; + ethereum = buildFromGitHub rec { + name = "ethereum"; + rev = "v1.4.1"; + goPackagePath = "github.com/ethereum/go-ethereum"; + owner = "ethereum"; + repo = "go-ethereum"; + sha256 = "0z6yzkk72g41dzqa52fizxqxqh349y1m9s3byfh9ixq5xy5fnjn3"; + preBuild = "export GOPATH=$GOPATH:$NIX_BUILD_TOP/go/src/${goPackagePath}/Godeps/_workspace"; + postBuild = "rm $NIX_BUILD_TOP/go/bin/*test"; + meta = with stdenv.lib; { + homepage = "https://ethereum.github.io/go-ethereum/"; + description = "Official golang implementation of the Ethereum protocol"; + license = with licenses; [ lgpl3 gpl3 ]; + }; + }; + exercism = buildFromGitHub { rev = "v2.2.1"; name = "exercism"; diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index 3d136486d2a..497cccf386d 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -2661,10 +2661,10 @@ let self = _self // overrides; _self = with self; { }; CryptX = buildPerlPackage rec { - name = "CryptX-0.031"; + name = "CryptX-0.032"; src = fetchurl { url = "mirror://cpan/authors/id/M/MI/MIK/${name}.tar.gz"; - sha256 = "7221a7a824ae07377f7e97c6daafff47524c46204c9b8ff58420a13fc2c104f1"; + sha256 = "46892112056ca3929e26cd3512cd4560c5beea7548a8632b79f2fe11f4b220c0"; }; propagatedBuildInputs = [ JSONMaybeXS ]; meta = { @@ -2922,6 +2922,14 @@ let self = _self // overrides; _self = with self; { }; }; + DataUniqid = buildPerlPackage rec { + name = "Data-Uniqid-0.12"; + src = fetchurl { + url = "mirror://cpan/authors/id/M/MW/MWX/${name}.tar.gz"; + sha256 = "b6919ba49b9fe98bfdf3e8accae7b9b7f78dc9e71ebbd0b7fef7a45d99324ccb"; + }; + }; + DataUUID = buildPerlPackage rec { name = "Data-UUID-1.220"; src = fetchurl { @@ -6661,6 +6669,21 @@ let self = _self // overrides; _self = with self; { }; }; + JSONWebToken = buildPerlModule rec { + name = "JSON-WebToken-0.10"; + src = fetchurl { + url = "mirror://cpan/authors/id/X/XA/XAICRON/${name}.tar.gz"; + sha256 = "77c182a98528f1714d82afc548d5b3b4dc93e67069128bb9b9413f24cf07248b"; + }; + buildInputs = [ TestMockGuard TestRequires ]; + propagatedBuildInputs = [ JSON ]; + meta = { + homepage = https://github.com/xaicron/p5-JSON-WebToken; + description = "JSON Web Token (JWT) implementation"; + license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; + }; + }; + JSONXS = buildPerlPackage { name = "JSON-XS-2.34"; src = fetchurl { @@ -10281,10 +10304,10 @@ let self = _self // overrides; _self = with self; { }; Readonly = buildPerlModule rec { - name = "Readonly-2.01"; + name = "Readonly-2.04"; src = fetchurl { url = "mirror://cpan/authors/id/S/SA/SANKO/${name}.tar.gz"; - sha256 = "ec7076c6851b6d3338e959645cd995343241f5b20000ffc29519faf28f6b482e"; + sha256 = "2221243758afde3b3238d1325b9c32bf1b4d0b4d11065920c03408b2645c93b6"; }; buildInputs = [ ModuleBuildTiny ]; meta = { @@ -12067,6 +12090,20 @@ let self = _self // overrides; _self = with self; { }; }; + TestMockGuard = buildPerlModule rec { + name = "Test-Mock-Guard-0.10"; + src = fetchurl { + url = "mirror://cpan/authors/id/X/XA/XAICRON/${name}.tar.gz"; + sha256 = "7f228a63f8d6ceb92aa784080a13e85073121b2835eca06d794f9709950dbd3d"; + }; + propagatedBuildInputs = [ ClassLoad ]; + meta = { + homepage = https://github.com/zigorou/p5-test-mock-guard; + description = "Simple mock test library using RAII"; + license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; + }; + }; + TestMockModule = buildPerlModule { name = "Test-MockModule-0.11"; src = fetchurl { diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 297dfae477c..e1b7a3f0cdd 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -267,31 +267,7 @@ in modules // { ]; buildInputs = with self; [ nose ]; - - sourceRoot = "letsencrypt-v${version}-src/acme"; - }; - - # Maintained for simp_le compatibility - acme_0_1 = buildPythonPackage rec { - version = "0.1.0"; - - name = "acme-${version}"; - - src = pkgs.fetchFromGitHub { - owner = "letsencrypt"; - repo = "letsencrypt"; - rev = "v${version}"; - sha256 = "1f7406nnybsdbwxf7r9qjf6hzkfd7cg6qp8l9l7hrzwscsq5hicj"; - }; - - propagatedBuildInputs = with self; [ - cryptography pyasn1 pyopenssl pyRFC3339 pytz requests2 six werkzeug mock - ndg-httpsclient - ]; - - buildInputs = with self; [ nose ]; - - sourceRoot = "letsencrypt-v${version}-src/acme"; + postUnpack = "sourceRoot=\${sourceRoot}/acme"; }; acme-tiny = buildPythonPackage rec { @@ -1810,10 +1786,10 @@ in modules // { }; buttersink = buildPythonPackage rec { - name = "buttersink-0.6.7"; + name = "buttersink-0.6.8"; src = pkgs.fetchurl { - sha256 = "1azd0g0p9qk9wp344jmvqp4wk5f3wpsz3lb750xvnmd7qzf6v377"; + sha256 = "04gc63kfcqkw4qba5rijqk01xiphf04yk7hky9180ii64v2ip0j3"; url = "mirror://pypi/b/buttersink/${name}.tar.gz"; }; @@ -1943,6 +1919,30 @@ in modules // { doCheck = false; # lazy packager }; + cx_Freeze = buildPythonPackage rec { + name = "cx_freeze-${version}"; + version = "4.3.4"; + + # build failures + disabled = isPyPy || isPy35; + + # timestamp need to come after 1980 for zipfiles and nix store is set to epoch + prePatch = '' + substituteInPlace cx_Freeze/freezer.py --replace "os.stat(module.file).st_mtime" "time.time()" + ''; + + src = pkgs.fetchurl { + url = "mirror://pypi/c/cx_Freeze/cx_Freeze-${version}.tar.gz"; + sha256 = "1qhv0gq3ggr06k8cvzphma29zfqdajkx2yfzbw89s4vy23xbpis0"; + }; + + meta = { + description = "A set of scripts and modules for freezing Python scripts into executables"; + homepage = "http://cx-freeze.sourceforge.net/"; + license = licenses.psfl; + }; + }; + cvxopt = buildPythonPackage rec { name = "${pname}-${version}"; pname = "cvxopt"; @@ -4254,6 +4254,28 @@ in modules // { description = "pytest plugin with mechanisms for caching across test runs"; }; }; + + pytestdjango = buildPythonPackage rec { + name = "pytest-django-${version}"; + version = "2.9.1"; + + src = pkgs.fetchurl { + url = "mirror://pypi/p/pytest-django/${name}.tar.gz"; + sha256 = "1mmc7zsz3dlhs6sx4sppkj1vgshabi362r1a8b8wpj1qfximpqcb"; + }; + + # doing this to allow depending packages to find + # pytest's binaries + pytest = self.pytest; + + propagatedBuildInputs = with self; [ django pytest setuptools_scm_18 ]; + + meta = { + description = "py.test plugin for testing of Django applications"; + homepage = http://pytest-django.readthedocs.org/en/latest/; + license = licenses.bsd3; + }; + }; pytestflakes = buildPythonPackage rec { name = "pytest-flakes-${version}"; @@ -4815,11 +4837,11 @@ in modules // { decorator = buildPythonPackage rec { name = "decorator-${version}"; - version = "4.0.6"; + version = "4.0.9"; src = pkgs.fetchurl { url = "mirror://pypi/d/decorator/${name}.tar.gz"; - sha256 = "1c6254597777fd003da2e8fb503c3dbf3d9e8f8d55f054709c0e65be3467209c"; + sha256 = "1a5vwhflfd9sh3rfb40xlyipldgdzfff6brman57hqv3661jw0lh"; }; meta = { @@ -5431,6 +5453,19 @@ in modules // { }; }); + entrypoints = buildPythonPackage rec { + name = "entrypoints"; + version = "0.2.1"; + format = "wheel"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/a5/2d/26548d66d58f7775cb332fcf3f864987c05f5e3f800b0b22b9919dacf653/entrypoints-0.2.1-py2.py3-none-any.whl"; + sha256 = "112n36dllmls19j5k6bwcnsm6y2789lxzkjl1n9yir7gkm0dmzzw"; + }; + + propagatedBuildInputs = with self; [ configparser ]; + }; + evdev = buildPythonPackage rec { version = "0.4.7"; @@ -10730,12 +10765,12 @@ in modules // { }; ipykernel = buildPythonPackage rec { - version = "4.3.0"; + version = "4.3.1"; name = "ipykernel-${version}"; src = pkgs.fetchurl { url = "mirror://pypi/i/ipykernel/${name}.tar.gz"; - sha256 = "1av769gbzfm1zy9p94wicwwwxmyc7s7zk1ginq16x0wc69hwc57j"; + sha256 = "0gycnxzq3nnmh6xlc24n3b4qc28gli0lw4a9yg2yzm74lgmd66c2"; }; buildInputs = with self; [ nose ] ++ optionals isPy27 [mock]; @@ -10760,12 +10795,12 @@ in modules // { }; ipyparallel = buildPythonPackage rec { - version = "5.0.0"; + version = "5.0.1"; name = "ipyparallel-${version}"; src = pkgs.fetchurl { url = "mirror://pypi/i/ipyparallel/${name}.tar.gz"; - sha256 = "ffa7e2e29fdc4844b3c1721f46b42eee5a1abe5cbb851ccf79d0f4f89b9fe21a"; + sha256 = "1cpydbm1k02y5m4grp0c1z5lbgkpp5f4xp3j5v49g9lmd70ikqs8"; }; buildInputs = with self; [ nose ]; @@ -11123,12 +11158,12 @@ in modules // { }; jupyter_client = buildPythonPackage rec { - version = "4.1.1"; + version = "4.2.2"; name = "jupyter_client-${version}"; src = pkgs.fetchurl { url = "mirror://pypi/j/jupyter_client/${name}.tar.gz"; - sha256 = "ff1ef5c6c3031a62db46ec6329867b4cb1595e6102a7819b3b5252b0c524bdb8"; + sha256 = "052a02p38byp3n95k8cwidid05gc5cx44qinzsdzs605zw757z1z"; }; buildInputs = with self; [ nose ]; @@ -11150,12 +11185,12 @@ in modules // { }; jupyter_core = buildPythonPackage rec { - version = "4.0.6"; + version = "4.1.0"; name = "jupyter_core-${version}"; src = pkgs.fetchurl { url = "mirror://pypi/j/jupyter_core/${name}.tar.gz"; - sha256 = "96a68a3b1d018ff7776270b26b7cb0cfd7a18a53ef2061421daff435707d198c"; + sha256 = "04xxqa2m8yjpzxb2szbym6ngycyrmhymyy2vp2s6vi9kkikz0shl"; }; buildInputs = with self; [ pytest mock ]; @@ -11203,6 +11238,22 @@ in modules // { }; }; + kerberos = buildPythonPackage rec { + name = "kerberos-1.2.4"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/k/kerberos/${name}.tar.gz"; + sha256 = "11q9jhzdl88jh8jgn7cycq034m36g2ncxds7mr3vqkngpcirkx6n"; + }; + + buildInputs = [ pkgs.kerberos ]; + + meta = { + description = "Kerberos high-level interface"; + homepage = https://pypi.python.org/pypi/kerberos; + license = licenses.asl20; + }; + }; keyring = buildPythonPackage rec { name = "keyring-8.4.1"; @@ -12140,11 +12191,13 @@ in modules // { mitmproxy = buildPythonPackage rec { baseName = "mitmproxy"; name = "${baseName}-${version}"; - version = "0.14.0"; + version = "0.14"; - src = pkgs.fetchurl { - url = "${meta.homepage}/download/${name}.tar.gz"; - sha256 = "0mbd3m8x9a5v9skvzayjwaccn5kpgjb5p7hal5rrrcj69d8xrz6f"; + src = pkgs.fetchFromGitHub { + owner = "mitmproxy"; + repo = "mitmproxy"; + rev = "v${version}"; + sha256 = "1zxw4yviryy0v53vhccgqb7f5d3fga16dy9kp1xwp6b59w0fcc2g"; }; propagatedBuildInputs = with self; [ @@ -12776,17 +12829,17 @@ in modules // { }; nbconvert = buildPythonPackage rec { - version = "4.1.0"; + version = "4.2.0"; name = "nbconvert-${version}"; src = pkgs.fetchurl { url = "mirror://pypi/n/nbconvert/${name}.tar.gz"; - sha256 = "e0296e45293dd127d028f678e3b6aba3f1db3283a134178bdb49eea402d4cf1c"; + sha256 = "1ik3k1s8dnqcc6hcrzi1wwy6f5kxfz8rnyahvpy984kl49snv52m"; }; buildInputs = with self; [nose ipykernel ]; - propagatedBuildInputs = with self; [mistune jinja2 pygments traitlets jupyter_core nbformat ipykernel tornado jupyter_client]; + propagatedBuildInputs = with self; [ entrypoints mistune jinja2 pygments traitlets jupyter_core nbformat ipykernel tornado jupyter_client]; checkPhase = '' nosetests -v @@ -13202,12 +13255,12 @@ in modules // { }; notebook = buildPythonPackage rec { - version = "4.1.0"; + version = "4.2.0"; name = "notebook-${version}"; src = pkgs.fetchurl { url = "mirror://pypi/n/notebook/${name}.tar.gz"; - sha256 = "b597437ba33538221008e21fea71cd01eda9da1515ca3963d7c74e44f4b03d90"; + sha256 = "113d0548ky0fwa7h950ijkwi1cnpc46l9cdmjr3kjj3vqwb4j371"; }; LC_ALL = "en_US.UTF-8"; @@ -15255,11 +15308,11 @@ in modules // { parsedatetime = buildPythonPackage rec { name = "parsedatetime-${version}"; - version = "1.4"; + version = "1.5"; src = pkgs.fetchurl { url = "mirror://pypi/p/parsedatetime/${name}.tar.gz"; - sha256 = "09bfcd8f3c239c75e77b3ff05d782ab2c1aed0892f250ce2adf948d4308fe9dc"; + sha256 = "1as0mm4ql3z0324nc9bys2s1ngh507i317p16b79rx86wlmvx9ix"; }; }; @@ -19853,6 +19906,19 @@ in modules // { }; }; + setuptools_scm_18 = self.setuptools_scm.override rec { + name = "setuptools_scm-${version}"; + version = "1.8.0"; + + # tests fail: ImportError: cannot import name 'find_files' + disabled = isPy35; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/s/setuptools_scm/${name}.tar.bz2"; + sha256 = "00p60v2yfqy1r58pjcx9wy6dvqd7wkpfs5z1dzwf7y75c1g3dgyx"; + }; + }; + setuptoolsDarcs = buildPythonPackage rec { name = "setuptools_darcs-${version}"; version = "1.2.11"; @@ -20930,6 +20996,27 @@ in modules // { }; }); + Pweave = buildPythonPackage (rec { + name = "Pweave-0.25"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/f6/2f/e9735b04747ae5ef29d64e0b215fb0e11f1c89826097ac17342efebbbb84/Pweave-0.25.tar.gz"; + sha256 = "1isqjz66c7vxdaqfwpkspki9p4054dsfx7pznwz28ik634hnj3qw"; + }; + + buildInputs = with self; [ mock pkgs.glibcLocales ]; + + propagatedBuildInputs = with self; [ + matplotlib + ]; + + meta = { + description = "Scientific reports with embedded python computations with reST, LaTeX or markdown"; + homepage = http://mpastell.com/pweave/ ; + license = licenses.bsd3; + }; + }); + spyder = callPackage ../applications/science/spyder { rope = if isPy3k then null else self.rope; }; @@ -21688,12 +21775,12 @@ in modules // { }; traitlets = buildPythonPackage rec { - version = "4.1.0"; + version = "4.2.1"; name = "traitlets-${version}"; src = pkgs.fetchurl { url = "mirror://pypi/t/traitlets/${name}.tar.gz"; - sha256 = "440e38dfa5d2a26c086d4b427cfb7aed17d0a2dca78bce90c33354da2592af5b"; + sha256 = "1h0aryjiqz2f3ykcjb34k5wz6bmzyp5cll7r4k08yfvji4ya7svn"; }; buildInputs = with self; [ nose mock ]; diff --git a/pkgs/top-level/release.nix b/pkgs/top-level/release.nix index 8b246c5340f..e933b96d134 100644 --- a/pkgs/top-level/release.nix +++ b/pkgs/top-level/release.nix @@ -259,7 +259,10 @@ let perlPackages = { }; - pythonPackages = { }; + pythonPackages = { + pandas = unix; + scikitlearn = unix; + }; python2Packages = { }; python27Packages = { }; python3Packages = { };