Merge remote-tracking branch 'upstream/staging' into staging-fix

+3633 -1931
+1 -1
maintainers/scripts/luarocks-packages.csv
··· 75 75 mpack,,,,,, 76 76 moonscript,,,,,,arobyn 77 77 nvim-client,https://github.com/neovim/lua-client.git,,,,, 78 - penlight,https://github.com/Tieske/Penlight.git,,,,, 78 + penlight,https://github.com/lunarmodules/Penlight.git,,,,,alerque 79 79 plenary.nvim,https://github.com/nvim-lua/plenary.nvim.git,,,,lua5_1, 80 80 rapidjson,https://github.com/xpol/lua-rapidjson.git,,,,, 81 81 readline,,,,,,
+74
nixos/doc/manual/development/building-parts.chapter.md
··· 1 + # Building Specific Parts of NixOS {#sec-building-parts} 2 + 3 + With the command `nix-build`, you can build specific parts of your NixOS 4 + configuration. This is done as follows: 5 + 6 + ```ShellSession 7 + $ cd /path/to/nixpkgs/nixos 8 + $ nix-build -A config.option 9 + ``` 10 + 11 + where `option` is a NixOS option with type "derivation" (i.e. something 12 + that can be built). Attributes of interest include: 13 + 14 + `system.build.toplevel` 15 + 16 + : The top-level option that builds the entire NixOS system. Everything 17 + else in your configuration is indirectly pulled in by this option. 18 + This is what `nixos-rebuild` builds and what `/run/current-system` 19 + points to afterwards. 20 + 21 + A shortcut to build this is: 22 + 23 + ```ShellSession 24 + $ nix-build -A system 25 + ``` 26 + 27 + `system.build.manual.manualHTML` 28 + 29 + : The NixOS manual. 30 + 31 + `system.build.etc` 32 + 33 + : A tree of symlinks that form the static parts of `/etc`. 34 + 35 + `system.build.initialRamdisk` , `system.build.kernel` 36 + 37 + : The initial ramdisk and kernel of the system. This allows a quick 38 + way to test whether the kernel and the initial ramdisk boot 39 + correctly, by using QEMU's `-kernel` and `-initrd` options: 40 + 41 + ```ShellSession 42 + $ nix-build -A config.system.build.initialRamdisk -o initrd 43 + $ nix-build -A config.system.build.kernel -o kernel 44 + $ qemu-system-x86_64 -kernel ./kernel/bzImage -initrd ./initrd/initrd -hda /dev/null 45 + ``` 46 + 47 + `system.build.nixos-rebuild` , `system.build.nixos-install` , `system.build.nixos-generate-config` 48 + 49 + : These build the corresponding NixOS commands. 50 + 51 + `systemd.units.unit-name.unit` 52 + 53 + : This builds the unit with the specified name. Note that since unit 54 + names contain dots (e.g. `httpd.service`), you need to put them 55 + between quotes, like this: 56 + 57 + ```ShellSession 58 + $ nix-build -A 'config.systemd.units."httpd.service".unit' 59 + ``` 60 + 61 + You can also test individual units, without rebuilding the whole 62 + system, by putting them in `/run/systemd/system`: 63 + 64 + ```ShellSession 65 + $ cp $(nix-build -A 'config.systemd.units."httpd.service".unit')/httpd.service \ 66 + /run/systemd/system/tmp-httpd.service 67 + # systemctl daemon-reload 68 + # systemctl start tmp-httpd.service 69 + ``` 70 + 71 + Note that the unit must not have the same name as any unit in 72 + `/etc/systemd/system` since those take precedence over 73 + `/run/systemd/system`. That's why the unit is installed as 74 + `tmp-httpd.service` here.
-121
nixos/doc/manual/development/building-parts.xml
··· 1 - <chapter xmlns="http://docbook.org/ns/docbook" 2 - xmlns:xlink="http://www.w3.org/1999/xlink" 3 - xmlns:xi="http://www.w3.org/2001/XInclude" 4 - version="5.0" 5 - xml:id="sec-building-parts"> 6 - <title>Building Specific Parts of NixOS</title> 7 - <para> 8 - With the command <command>nix-build</command>, you can build specific parts 9 - of your NixOS configuration. This is done as follows: 10 - <screen> 11 - <prompt>$ </prompt>cd <replaceable>/path/to/nixpkgs/nixos</replaceable> 12 - <prompt>$ </prompt>nix-build -A config.<replaceable>option</replaceable></screen> 13 - where <replaceable>option</replaceable> is a NixOS option with type 14 - “derivation” (i.e. something that can be built). Attributes of interest 15 - include: 16 - <variablelist> 17 - <varlistentry> 18 - <term> 19 - <varname>system.build.toplevel</varname> 20 - </term> 21 - <listitem> 22 - <para> 23 - The top-level option that builds the entire NixOS system. Everything else 24 - in your configuration is indirectly pulled in by this option. This is 25 - what <command>nixos-rebuild</command> builds and what 26 - <filename>/run/current-system</filename> points to afterwards. 27 - </para> 28 - <para> 29 - A shortcut to build this is: 30 - <screen> 31 - <prompt>$ </prompt>nix-build -A system</screen> 32 - </para> 33 - </listitem> 34 - </varlistentry> 35 - <varlistentry> 36 - <term> 37 - <varname>system.build.manual.manualHTML</varname> 38 - </term> 39 - <listitem> 40 - <para> 41 - The NixOS manual. 42 - </para> 43 - </listitem> 44 - </varlistentry> 45 - <varlistentry> 46 - <term> 47 - <varname>system.build.etc</varname> 48 - </term> 49 - <listitem> 50 - <para> 51 - A tree of symlinks that form the static parts of 52 - <filename>/etc</filename>. 53 - </para> 54 - </listitem> 55 - </varlistentry> 56 - <varlistentry> 57 - <term> 58 - <varname>system.build.initialRamdisk</varname> 59 - </term> 60 - <term> 61 - <varname>system.build.kernel</varname> 62 - </term> 63 - <listitem> 64 - <para> 65 - The initial ramdisk and kernel of the system. This allows a quick way to 66 - test whether the kernel and the initial ramdisk boot correctly, by using 67 - QEMU’s <option>-kernel</option> and <option>-initrd</option> options: 68 - <screen> 69 - <prompt>$ </prompt>nix-build -A config.system.build.initialRamdisk -o initrd 70 - <prompt>$ </prompt>nix-build -A config.system.build.kernel -o kernel 71 - <prompt>$ </prompt>qemu-system-x86_64 -kernel ./kernel/bzImage -initrd ./initrd/initrd -hda /dev/null 72 - </screen> 73 - </para> 74 - </listitem> 75 - </varlistentry> 76 - <varlistentry> 77 - <term> 78 - <varname>system.build.nixos-rebuild</varname> 79 - </term> 80 - <term> 81 - <varname>system.build.nixos-install</varname> 82 - </term> 83 - <term> 84 - <varname>system.build.nixos-generate-config</varname> 85 - </term> 86 - <listitem> 87 - <para> 88 - These build the corresponding NixOS commands. 89 - </para> 90 - </listitem> 91 - </varlistentry> 92 - <varlistentry> 93 - <term> 94 - <varname>systemd.units.<replaceable>unit-name</replaceable>.unit</varname> 95 - </term> 96 - <listitem> 97 - <para> 98 - This builds the unit with the specified name. Note that since unit names 99 - contain dots (e.g. <literal>httpd.service</literal>), you need to put 100 - them between quotes, like this: 101 - <screen> 102 - <prompt>$ </prompt>nix-build -A 'config.systemd.units."httpd.service".unit' 103 - </screen> 104 - You can also test individual units, without rebuilding the whole system, 105 - by putting them in <filename>/run/systemd/system</filename>: 106 - <screen> 107 - <prompt>$ </prompt>cp $(nix-build -A 'config.systemd.units."httpd.service".unit')/httpd.service \ 108 - /run/systemd/system/tmp-httpd.service 109 - <prompt># </prompt>systemctl daemon-reload 110 - <prompt># </prompt>systemctl start tmp-httpd.service 111 - </screen> 112 - Note that the unit must not have the same name as any unit in 113 - <filename>/etc/systemd/system</filename> since those take precedence over 114 - <filename>/run/systemd/system</filename>. That’s why the unit is 115 - installed as <filename>tmp-httpd.service</filename> here. 116 - </para> 117 - </listitem> 118 - </varlistentry> 119 - </variablelist> 120 - </para> 121 - </chapter>
+4 -4
nixos/doc/manual/development/development.xml
··· 9 9 This chapter describes how you can modify and extend NixOS. 10 10 </para> 11 11 </partintro> 12 - <xi:include href="sources.xml" /> 12 + <xi:include href="../from_md/development/sources.chapter.xml" /> 13 13 <xi:include href="writing-modules.xml" /> 14 - <xi:include href="building-parts.xml" /> 15 - <xi:include href="writing-documentation.xml" /> 14 + <xi:include href="../from_md/development/building-parts.chapter.xml" /> 15 + <xi:include href="../from_md/development/writing-documentation.chapter.xml" /> 16 16 <xi:include href="../from_md/development/building-nixos.chapter.xml" /> 17 17 <xi:include href="nixos-tests.xml" /> 18 - <xi:include href="testing-installer.xml" /> 18 + <xi:include href="../from_md/development/testing-installer.chapter.xml" /> 19 19 </part>
+77
nixos/doc/manual/development/sources.chapter.md
··· 1 + # Getting the Sources {#sec-getting-sources} 2 + 3 + By default, NixOS's `nixos-rebuild` command uses the NixOS and Nixpkgs 4 + sources provided by the `nixos` channel (kept in 5 + `/nix/var/nix/profiles/per-user/root/channels/nixos`). To modify NixOS, 6 + however, you should check out the latest sources from Git. This is as 7 + follows: 8 + 9 + ```ShellSession 10 + $ git clone https://github.com/NixOS/nixpkgs 11 + $ cd nixpkgs 12 + $ git remote update origin 13 + ``` 14 + 15 + This will check out the latest Nixpkgs sources to `./nixpkgs` the NixOS 16 + sources to `./nixpkgs/nixos`. (The NixOS source tree lives in a 17 + subdirectory of the Nixpkgs repository.) The `nixpkgs` repository has 18 + branches that correspond to each Nixpkgs/NixOS channel (see 19 + [](#sec-upgrading) for more information about channels). Thus, the 20 + Git branch `origin/nixos-17.03` will contain the latest built and tested 21 + version available in the `nixos-17.03` channel. 22 + 23 + It's often inconvenient to develop directly on the master branch, since 24 + if somebody has just committed (say) a change to GCC, then the binary 25 + cache may not have caught up yet and you'll have to rebuild everything 26 + from source. So you may want to create a local branch based on your 27 + current NixOS version: 28 + 29 + ```ShellSession 30 + $ nixos-version 31 + 17.09pre104379.6e0b727 (Hummingbird) 32 + 33 + $ git checkout -b local 6e0b727 34 + ``` 35 + 36 + Or, to base your local branch on the latest version available in a NixOS 37 + channel: 38 + 39 + ```ShellSession 40 + $ git remote update origin 41 + $ git checkout -b local origin/nixos-17.03 42 + ``` 43 + 44 + (Replace `nixos-17.03` with the name of the channel you want to use.) 45 + You can use `git merge` or `git 46 + rebase` to keep your local branch in sync with the channel, e.g. 47 + 48 + ```ShellSession 49 + $ git remote update origin 50 + $ git merge origin/nixos-17.03 51 + ``` 52 + 53 + You can use `git cherry-pick` to copy commits from your local branch to 54 + the upstream branch. 55 + 56 + If you want to rebuild your system using your (modified) sources, you 57 + need to tell `nixos-rebuild` about them using the `-I` flag: 58 + 59 + ```ShellSession 60 + # nixos-rebuild switch -I nixpkgs=/my/sources/nixpkgs 61 + ``` 62 + 63 + If you want `nix-env` to use the expressions in `/my/sources`, use 64 + `nix-env -f 65 + /my/sources/nixpkgs`, or change the default by adding a symlink in 66 + `~/.nix-defexpr`: 67 + 68 + ```ShellSession 69 + $ ln -s /my/sources/nixpkgs ~/.nix-defexpr/nixpkgs 70 + ``` 71 + 72 + You may want to delete the symlink `~/.nix-defexpr/channels_root` to 73 + prevent root's NixOS channel from clashing with your own tree (this may 74 + break the command-not-found utility though). If you want to go back to 75 + the default state, you may just remove the `~/.nix-defexpr` directory 76 + completely, log out and log in again and it should have been recreated 77 + with a link to the root channels.
-85
nixos/doc/manual/development/sources.xml
··· 1 - <chapter xmlns="http://docbook.org/ns/docbook" 2 - xmlns:xlink="http://www.w3.org/1999/xlink" 3 - xmlns:xi="http://www.w3.org/2001/XInclude" 4 - version="5.0" 5 - xml:id="sec-getting-sources"> 6 - <title>Getting the Sources</title> 7 - <para> 8 - By default, NixOS’s <command>nixos-rebuild</command> command uses the NixOS 9 - and Nixpkgs sources provided by the <literal>nixos</literal> channel (kept in 10 - <filename>/nix/var/nix/profiles/per-user/root/channels/nixos</filename>). To 11 - modify NixOS, however, you should check out the latest sources from Git. This 12 - is as follows: 13 - <screen> 14 - <prompt>$ </prompt>git clone https://github.com/NixOS/nixpkgs 15 - <prompt>$ </prompt>cd nixpkgs 16 - <prompt>$ </prompt>git remote update origin 17 - </screen> 18 - This will check out the latest Nixpkgs sources to 19 - <filename>./nixpkgs</filename> the NixOS sources to 20 - <filename>./nixpkgs/nixos</filename>. (The NixOS source tree lives in a 21 - subdirectory of the Nixpkgs repository.) The 22 - <literal>nixpkgs</literal> repository has branches that correspond 23 - to each Nixpkgs/NixOS channel (see <xref linkend="sec-upgrading"/> for more 24 - information about channels). Thus, the Git branch 25 - <literal>origin/nixos-17.03</literal> will contain the latest built and 26 - tested version available in the <literal>nixos-17.03</literal> channel. 27 - </para> 28 - <para> 29 - It’s often inconvenient to develop directly on the master branch, since if 30 - somebody has just committed (say) a change to GCC, then the binary cache may 31 - not have caught up yet and you’ll have to rebuild everything from source. 32 - So you may want to create a local branch based on your current NixOS version: 33 - <screen> 34 - <prompt>$ </prompt>nixos-version 35 - 17.09pre104379.6e0b727 (Hummingbird) 36 - 37 - <prompt>$ </prompt>git checkout -b local 6e0b727 38 - </screen> 39 - Or, to base your local branch on the latest version available in a NixOS 40 - channel: 41 - <screen> 42 - <prompt>$ </prompt>git remote update origin 43 - <prompt>$ </prompt>git checkout -b local origin/nixos-17.03 44 - </screen> 45 - (Replace <literal>nixos-17.03</literal> with the name of the channel you want 46 - to use.) You can use <command>git merge</command> or <command>git 47 - rebase</command> to keep your local branch in sync with the channel, e.g. 48 - <screen> 49 - <prompt>$ </prompt>git remote update origin 50 - <prompt>$ </prompt>git merge origin/nixos-17.03 51 - </screen> 52 - You can use <command>git cherry-pick</command> to copy commits from your 53 - local branch to the upstream branch. 54 - </para> 55 - <para> 56 - If you want to rebuild your system using your (modified) sources, you need to 57 - tell <command>nixos-rebuild</command> about them using the 58 - <option>-I</option> flag: 59 - <screen> 60 - <prompt># </prompt>nixos-rebuild switch -I nixpkgs=<replaceable>/my/sources</replaceable>/nixpkgs 61 - </screen> 62 - </para> 63 - <para> 64 - If you want <command>nix-env</command> to use the expressions in 65 - <replaceable>/my/sources</replaceable>, use <command>nix-env -f 66 - <replaceable>/my/sources</replaceable>/nixpkgs</command>, or change the 67 - default by adding a symlink in <filename>~/.nix-defexpr</filename>: 68 - <screen> 69 - <prompt>$ </prompt>ln -s <replaceable>/my/sources</replaceable>/nixpkgs ~/.nix-defexpr/nixpkgs 70 - </screen> 71 - You may want to delete the symlink 72 - <filename>~/.nix-defexpr/channels_root</filename> to prevent root’s NixOS 73 - channel from clashing with your own tree (this may break the 74 - command-not-found utility though). If you want to go back to the default 75 - state, you may just remove the <filename>~/.nix-defexpr</filename> directory 76 - completely, log out and log in again and it should have been recreated with a 77 - link to the root channels. 78 - </para> 79 - <!-- FIXME: not sure what this means. 80 - <para>You should not pass the base directory 81 - <filename><replaceable>/my/sources</replaceable></filename> 82 - to <command>nix-env</command>, as it will break after interpreting expressions 83 - in <filename>nixos/</filename> as packages.</para> 84 - --> 85 - </chapter>
+18
nixos/doc/manual/development/testing-installer.chapter.md
··· 1 + # Testing the Installer {#ch-testing-installer} 2 + 3 + Building, burning, and booting from an installation CD is rather 4 + tedious, so here is a quick way to see if the installer works properly: 5 + 6 + ```ShellSession 7 + # mount -t tmpfs none /mnt 8 + # nixos-generate-config --root /mnt 9 + $ nix-build '<nixpkgs/nixos>' -A config.system.build.nixos-install 10 + # ./result/bin/nixos-install 11 + ``` 12 + 13 + To start a login shell in the new NixOS installation in `/mnt`: 14 + 15 + ```ShellSession 16 + $ nix-build '<nixpkgs/nixos>' -A config.system.build.nixos-enter 17 + # ./result/bin/nixos-enter 18 + ```
-22
nixos/doc/manual/development/testing-installer.xml
··· 1 - <chapter xmlns="http://docbook.org/ns/docbook" 2 - xmlns:xlink="http://www.w3.org/1999/xlink" 3 - xmlns:xi="http://www.w3.org/2001/XInclude" 4 - version="5.0" 5 - xml:id="ch-testing-installer"> 6 - <title>Testing the Installer</title> 7 - <para> 8 - Building, burning, and booting from an installation CD is rather tedious, so 9 - here is a quick way to see if the installer works properly: 10 - <screen> 11 - <prompt># </prompt>mount -t tmpfs none /mnt 12 - <prompt># </prompt>nixos-generate-config --root /mnt 13 - <prompt>$ </prompt>nix-build '&lt;nixpkgs/nixos>' -A config.system.build.nixos-install 14 - <prompt># </prompt>./result/bin/nixos-install</screen> 15 - To start a login shell in the new NixOS installation in 16 - <filename>/mnt</filename>: 17 - <screen> 18 - <prompt>$ </prompt>nix-build '&lt;nixpkgs/nixos>' -A config.system.build.nixos-enter 19 - <prompt># </prompt>./result/bin/nixos-enter 20 - </screen> 21 - </para> 22 - </chapter>
+93
nixos/doc/manual/development/writing-documentation.chapter.md
··· 1 + # Writing NixOS Documentation {#sec-writing-documentation} 2 + 3 + As NixOS grows, so too does the need for a catalogue and explanation of 4 + its extensive functionality. Collecting pertinent information from 5 + disparate sources and presenting it in an accessible style would be a 6 + worthy contribution to the project. 7 + 8 + ## Building the Manual {#sec-writing-docs-building-the-manual} 9 + 10 + The DocBook sources of the [](#book-nixos-manual) are in the 11 + [`nixos/doc/manual`](https://github.com/NixOS/nixpkgs/tree/master/nixos/doc/manual) 12 + subdirectory of the Nixpkgs repository. 13 + 14 + You can quickly validate your edits with `make`: 15 + 16 + ```ShellSession 17 + $ cd /path/to/nixpkgs/nixos/doc/manual 18 + $ nix-shell 19 + nix-shell$ make 20 + ``` 21 + 22 + Once you are done making modifications to the manual, it\'s important to 23 + build it before committing. You can do that as follows: 24 + 25 + ```ShellSession 26 + nix-build nixos/release.nix -A manual.x86_64-linux 27 + ``` 28 + 29 + When this command successfully finishes, it will tell you where the 30 + manual got generated. The HTML will be accessible through the `result` 31 + symlink at `./result/share/doc/nixos/index.html`. 32 + 33 + ## Editing DocBook XML {#sec-writing-docs-editing-docbook-xml} 34 + 35 + For general information on how to write in DocBook, see [DocBook 5: The 36 + Definitive Guide](http://www.docbook.org/tdg5/en/html/docbook.html). 37 + 38 + Emacs nXML Mode is very helpful for editing DocBook XML because it 39 + validates the document as you write, and precisely locates errors. To 40 + use it, see [](#sec-emacs-docbook-xml). 41 + 42 + [Pandoc](http://pandoc.org) can generate DocBook XML from a multitude of 43 + formats, which makes a good starting point. Here is an example of Pandoc 44 + invocation to convert GitHub-Flavoured MarkDown to DocBook 5 XML: 45 + 46 + ```ShellSession 47 + pandoc -f markdown_github -t docbook5 docs.md -o my-section.md 48 + ``` 49 + 50 + Pandoc can also quickly convert a single `section.xml` to HTML, which is 51 + helpful when drafting. 52 + 53 + Sometimes writing valid DocBook is simply too difficult. In this case, 54 + submit your documentation updates in a [GitHub 55 + Issue](https://github.com/NixOS/nixpkgs/issues/new) and someone will 56 + handle the conversion to XML for you. 57 + 58 + ## Creating a Topic {#sec-writing-docs-creating-a-topic} 59 + 60 + You can use an existing topic as a basis for the new topic or create a 61 + topic from scratch. 62 + 63 + Keep the following guidelines in mind when you create and add a topic: 64 + 65 + - The NixOS [`book`](http://www.docbook.org/tdg5/en/html/book.html) 66 + element is in `nixos/doc/manual/manual.xml`. It includes several 67 + [`parts`](http://www.docbook.org/tdg5/en/html/book.html) which are in 68 + subdirectories. 69 + 70 + - Store the topic file in the same directory as the `part` to which it 71 + belongs. If your topic is about configuring a NixOS module, then the 72 + XML file can be stored alongside the module definition `nix` file. 73 + 74 + - If you include multiple words in the file name, separate the words 75 + with a dash. For example: `ipv6-config.xml`. 76 + 77 + - Make sure that the `xml:id` value is unique. You can use abbreviations 78 + if the ID is too long. For example: `nixos-config`. 79 + 80 + - Determine whether your topic is a chapter or a section. If you are 81 + unsure, open an existing topic file and check whether the main 82 + element is chapter or section. 83 + 84 + ## Adding a Topic to the Book {#sec-writing-docs-adding-a-topic} 85 + 86 + Open the parent XML file and add an `xi:include` element to the list of 87 + chapters with the file name of the topic that you created. If you 88 + created a `section`, you add the file to the `chapter` file. If you created 89 + a `chapter`, you add the file to the `part` file. 90 + 91 + If the topic is about configuring a NixOS module, it can be 92 + automatically included in the manual by using the `meta.doc` attribute. 93 + See [](#sec-meta-attributes) for an explanation.
-150
nixos/doc/manual/development/writing-documentation.xml
··· 1 - <chapter xmlns="http://docbook.org/ns/docbook" 2 - xmlns:xlink="http://www.w3.org/1999/xlink" 3 - xmlns:xi="http://www.w3.org/2001/XInclude" 4 - version="5.0" 5 - xml:id="sec-writing-documentation"> 6 - <title>Writing NixOS Documentation</title> 7 - <para> 8 - As NixOS grows, so too does the need for a catalogue and explanation of its 9 - extensive functionality. Collecting pertinent information from disparate 10 - sources and presenting it in an accessible style would be a worthy 11 - contribution to the project. 12 - </para> 13 - <section xml:id="sec-writing-docs-building-the-manual"> 14 - <title>Building the Manual</title> 15 - 16 - <para> 17 - The DocBook sources of the <xref linkend="book-nixos-manual"/> are in the 18 - <link xlink:href="https://github.com/NixOS/nixpkgs/tree/master/nixos/doc/manual"><filename>nixos/doc/manual</filename></link> 19 - subdirectory of the Nixpkgs repository. 20 - </para> 21 - 22 - <para> 23 - You can quickly validate your edits with <command>make</command>: 24 - </para> 25 - 26 - <screen> 27 - <prompt>$ </prompt>cd /path/to/nixpkgs/nixos/doc/manual 28 - <prompt>$ </prompt>nix-shell 29 - <prompt>nix-shell$ </prompt>make 30 - </screen> 31 - 32 - <para> 33 - Once you are done making modifications to the manual, it's important to 34 - build it before committing. You can do that as follows: 35 - </para> 36 - 37 - <screen>nix-build nixos/release.nix -A manual.x86_64-linux</screen> 38 - 39 - <para> 40 - When this command successfully finishes, it will tell you where the manual 41 - got generated. The HTML will be accessible through the 42 - <filename>result</filename> symlink at 43 - <filename>./result/share/doc/nixos/index.html</filename>. 44 - </para> 45 - </section> 46 - <section xml:id="sec-writing-docs-editing-docbook-xml"> 47 - <title>Editing DocBook XML</title> 48 - 49 - <para> 50 - For general information on how to write in DocBook, see 51 - <link xlink:href="http://www.docbook.org/tdg5/en/html/docbook.html"> DocBook 52 - 5: The Definitive Guide</link>. 53 - </para> 54 - 55 - <para> 56 - Emacs nXML Mode is very helpful for editing DocBook XML because it validates 57 - the document as you write, and precisely locates errors. To use it, see 58 - <xref linkend="sec-emacs-docbook-xml"/>. 59 - </para> 60 - 61 - <para> 62 - <link xlink:href="http://pandoc.org">Pandoc</link> can generate DocBook XML 63 - from a multitude of formats, which makes a good starting point. 64 - <example xml:id="ex-pandoc-xml-conv"> 65 - <title>Pandoc invocation to convert GitHub-Flavoured MarkDown to DocBook 5 XML</title> 66 - <screen>pandoc -f markdown_github -t docbook5 docs.md -o my-section.md</screen> 67 - </example> 68 - Pandoc can also quickly convert a single <filename>section.xml</filename> to 69 - HTML, which is helpful when drafting. 70 - </para> 71 - 72 - <para> 73 - Sometimes writing valid DocBook is simply too difficult. In this case, 74 - submit your documentation updates in a 75 - <link 76 - xlink:href="https://github.com/NixOS/nixpkgs/issues/new">GitHub 77 - Issue</link> and someone will handle the conversion to XML for you. 78 - </para> 79 - </section> 80 - <section xml:id="sec-writing-docs-creating-a-topic"> 81 - <title>Creating a Topic</title> 82 - 83 - <para> 84 - You can use an existing topic as a basis for the new topic or create a topic 85 - from scratch. 86 - </para> 87 - 88 - <para> 89 - Keep the following guidelines in mind when you create and add a topic: 90 - <itemizedlist> 91 - <listitem> 92 - <para> 93 - The NixOS 94 - <link xlink:href="http://www.docbook.org/tdg5/en/html/book.html"><tag>book</tag></link> 95 - element is in <filename>nixos/doc/manual/manual.xml</filename>. It 96 - includes several 97 - <link xlink:href="http://www.docbook.org/tdg5/en/html/book.html"><tag>part</tag>s</link> 98 - which are in subdirectories. 99 - </para> 100 - </listitem> 101 - <listitem> 102 - <para> 103 - Store the topic file in the same directory as the <tag>part</tag> to 104 - which it belongs. If your topic is about configuring a NixOS module, then 105 - the XML file can be stored alongside the module definition 106 - <filename>nix</filename> file. 107 - </para> 108 - </listitem> 109 - <listitem> 110 - <para> 111 - If you include multiple words in the file name, separate the words with a 112 - dash. For example: <filename>ipv6-config.xml</filename>. 113 - </para> 114 - </listitem> 115 - <listitem> 116 - <para> 117 - Make sure that the <tag>xml:id</tag> value is unique. You can use 118 - abbreviations if the ID is too long. For example: 119 - <varname>nixos-config</varname>. 120 - </para> 121 - </listitem> 122 - <listitem> 123 - <para> 124 - Determine whether your topic is a chapter or a section. If you are 125 - unsure, open an existing topic file and check whether the main element is 126 - chapter or section. 127 - </para> 128 - </listitem> 129 - </itemizedlist> 130 - </para> 131 - </section> 132 - <section xml:id="sec-writing-docs-adding-a-topic"> 133 - <title>Adding a Topic to the Book</title> 134 - 135 - <para> 136 - Open the parent XML file and add an <varname>xi:include</varname> element to 137 - the list of chapters with the file name of the topic that you created. If 138 - you created a <tag>section</tag>, you add the file to the <tag>chapter</tag> 139 - file. If you created a <tag>chapter</tag>, you add the file to the 140 - <tag>part</tag> file. 141 - </para> 142 - 143 - <para> 144 - If the topic is about configuring a NixOS module, it can be automatically 145 - included in the manual by using the <varname>meta.doc</varname> attribute. 146 - See <xref 147 - linkend="sec-meta-attributes"/> for an explanation. 148 - </para> 149 - </section> 150 - </chapter>
+124
nixos/doc/manual/from_md/development/building-parts.chapter.xml
··· 1 + <chapter xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="sec-building-parts"> 2 + <title>Building Specific Parts of NixOS</title> 3 + <para> 4 + With the command <literal>nix-build</literal>, you can build 5 + specific parts of your NixOS configuration. This is done as follows: 6 + </para> 7 + <programlisting> 8 + $ cd /path/to/nixpkgs/nixos 9 + $ nix-build -A config.option 10 + </programlisting> 11 + <para> 12 + where <literal>option</literal> is a NixOS option with type 13 + <quote>derivation</quote> (i.e. something that can be built). 14 + Attributes of interest include: 15 + </para> 16 + <variablelist> 17 + <varlistentry> 18 + <term> 19 + <literal>system.build.toplevel</literal> 20 + </term> 21 + <listitem> 22 + <para> 23 + The top-level option that builds the entire NixOS system. 24 + Everything else in your configuration is indirectly pulled in 25 + by this option. This is what <literal>nixos-rebuild</literal> 26 + builds and what <literal>/run/current-system</literal> points 27 + to afterwards. 28 + </para> 29 + <para> 30 + A shortcut to build this is: 31 + </para> 32 + <programlisting> 33 + $ nix-build -A system 34 + </programlisting> 35 + </listitem> 36 + </varlistentry> 37 + <varlistentry> 38 + <term> 39 + <literal>system.build.manual.manualHTML</literal> 40 + </term> 41 + <listitem> 42 + <para> 43 + The NixOS manual. 44 + </para> 45 + </listitem> 46 + </varlistentry> 47 + <varlistentry> 48 + <term> 49 + <literal>system.build.etc</literal> 50 + </term> 51 + <listitem> 52 + <para> 53 + A tree of symlinks that form the static parts of 54 + <literal>/etc</literal>. 55 + </para> 56 + </listitem> 57 + </varlistentry> 58 + <varlistentry> 59 + <term> 60 + <literal>system.build.initialRamdisk</literal> , 61 + <literal>system.build.kernel</literal> 62 + </term> 63 + <listitem> 64 + <para> 65 + The initial ramdisk and kernel of the system. This allows a 66 + quick way to test whether the kernel and the initial ramdisk 67 + boot correctly, by using QEMU’s <literal>-kernel</literal> and 68 + <literal>-initrd</literal> options: 69 + </para> 70 + <programlisting> 71 + $ nix-build -A config.system.build.initialRamdisk -o initrd 72 + $ nix-build -A config.system.build.kernel -o kernel 73 + $ qemu-system-x86_64 -kernel ./kernel/bzImage -initrd ./initrd/initrd -hda /dev/null 74 + </programlisting> 75 + </listitem> 76 + </varlistentry> 77 + <varlistentry> 78 + <term> 79 + <literal>system.build.nixos-rebuild</literal> , 80 + <literal>system.build.nixos-install</literal> , 81 + <literal>system.build.nixos-generate-config</literal> 82 + </term> 83 + <listitem> 84 + <para> 85 + These build the corresponding NixOS commands. 86 + </para> 87 + </listitem> 88 + </varlistentry> 89 + <varlistentry> 90 + <term> 91 + <literal>systemd.units.unit-name.unit</literal> 92 + </term> 93 + <listitem> 94 + <para> 95 + This builds the unit with the specified name. Note that since 96 + unit names contain dots (e.g. 97 + <literal>httpd.service</literal>), you need to put them 98 + between quotes, like this: 99 + </para> 100 + <programlisting> 101 + $ nix-build -A 'config.systemd.units.&quot;httpd.service&quot;.unit' 102 + </programlisting> 103 + <para> 104 + You can also test individual units, without rebuilding the 105 + whole system, by putting them in 106 + <literal>/run/systemd/system</literal>: 107 + </para> 108 + <programlisting> 109 + $ cp $(nix-build -A 'config.systemd.units.&quot;httpd.service&quot;.unit')/httpd.service \ 110 + /run/systemd/system/tmp-httpd.service 111 + # systemctl daemon-reload 112 + # systemctl start tmp-httpd.service 113 + </programlisting> 114 + <para> 115 + Note that the unit must not have the same name as any unit in 116 + <literal>/etc/systemd/system</literal> since those take 117 + precedence over <literal>/run/systemd/system</literal>. That’s 118 + why the unit is installed as 119 + <literal>tmp-httpd.service</literal> here. 120 + </para> 121 + </listitem> 122 + </varlistentry> 123 + </variablelist> 124 + </chapter>
+90
nixos/doc/manual/from_md/development/sources.chapter.xml
··· 1 + <chapter xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="sec-getting-sources"> 2 + <title>Getting the Sources</title> 3 + <para> 4 + By default, NixOS’s <literal>nixos-rebuild</literal> command uses 5 + the NixOS and Nixpkgs sources provided by the 6 + <literal>nixos</literal> channel (kept in 7 + <literal>/nix/var/nix/profiles/per-user/root/channels/nixos</literal>). 8 + To modify NixOS, however, you should check out the latest sources 9 + from Git. This is as follows: 10 + </para> 11 + <programlisting> 12 + $ git clone https://github.com/NixOS/nixpkgs 13 + $ cd nixpkgs 14 + $ git remote update origin 15 + </programlisting> 16 + <para> 17 + This will check out the latest Nixpkgs sources to 18 + <literal>./nixpkgs</literal> the NixOS sources to 19 + <literal>./nixpkgs/nixos</literal>. (The NixOS source tree lives in 20 + a subdirectory of the Nixpkgs repository.) The 21 + <literal>nixpkgs</literal> repository has branches that correspond 22 + to each Nixpkgs/NixOS channel (see <xref linkend="sec-upgrading" /> 23 + for more information about channels). Thus, the Git branch 24 + <literal>origin/nixos-17.03</literal> will contain the latest built 25 + and tested version available in the <literal>nixos-17.03</literal> 26 + channel. 27 + </para> 28 + <para> 29 + It’s often inconvenient to develop directly on the master branch, 30 + since if somebody has just committed (say) a change to GCC, then the 31 + binary cache may not have caught up yet and you’ll have to rebuild 32 + everything from source. So you may want to create a local branch 33 + based on your current NixOS version: 34 + </para> 35 + <programlisting> 36 + $ nixos-version 37 + 17.09pre104379.6e0b727 (Hummingbird) 38 + 39 + $ git checkout -b local 6e0b727 40 + </programlisting> 41 + <para> 42 + Or, to base your local branch on the latest version available in a 43 + NixOS channel: 44 + </para> 45 + <programlisting> 46 + $ git remote update origin 47 + $ git checkout -b local origin/nixos-17.03 48 + </programlisting> 49 + <para> 50 + (Replace <literal>nixos-17.03</literal> with the name of the channel 51 + you want to use.) You can use <literal>git merge</literal> or 52 + <literal>git rebase</literal> to keep your local branch in sync with 53 + the channel, e.g. 54 + </para> 55 + <programlisting> 56 + $ git remote update origin 57 + $ git merge origin/nixos-17.03 58 + </programlisting> 59 + <para> 60 + You can use <literal>git cherry-pick</literal> to copy commits from 61 + your local branch to the upstream branch. 62 + </para> 63 + <para> 64 + If you want to rebuild your system using your (modified) sources, 65 + you need to tell <literal>nixos-rebuild</literal> about them using 66 + the <literal>-I</literal> flag: 67 + </para> 68 + <programlisting> 69 + # nixos-rebuild switch -I nixpkgs=/my/sources/nixpkgs 70 + </programlisting> 71 + <para> 72 + If you want <literal>nix-env</literal> to use the expressions in 73 + <literal>/my/sources</literal>, use 74 + <literal>nix-env -f /my/sources/nixpkgs</literal>, or change the 75 + default by adding a symlink in <literal>~/.nix-defexpr</literal>: 76 + </para> 77 + <programlisting> 78 + $ ln -s /my/sources/nixpkgs ~/.nix-defexpr/nixpkgs 79 + </programlisting> 80 + <para> 81 + You may want to delete the symlink 82 + <literal>~/.nix-defexpr/channels_root</literal> to prevent root’s 83 + NixOS channel from clashing with your own tree (this may break the 84 + command-not-found utility though). If you want to go back to the 85 + default state, you may just remove the 86 + <literal>~/.nix-defexpr</literal> directory completely, log out and 87 + log in again and it should have been recreated with a link to the 88 + root channels. 89 + </para> 90 + </chapter>
+22
nixos/doc/manual/from_md/development/testing-installer.chapter.xml
··· 1 + <chapter xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="ch-testing-installer"> 2 + <title>Testing the Installer</title> 3 + <para> 4 + Building, burning, and booting from an installation CD is rather 5 + tedious, so here is a quick way to see if the installer works 6 + properly: 7 + </para> 8 + <programlisting> 9 + # mount -t tmpfs none /mnt 10 + # nixos-generate-config --root /mnt 11 + $ nix-build '&lt;nixpkgs/nixos&gt;' -A config.system.build.nixos-install 12 + # ./result/bin/nixos-install 13 + </programlisting> 14 + <para> 15 + To start a login shell in the new NixOS installation in 16 + <literal>/mnt</literal>: 17 + </para> 18 + <programlisting> 19 + $ nix-build '&lt;nixpkgs/nixos&gt;' -A config.system.build.nixos-enter 20 + # ./result/bin/nixos-enter 21 + </programlisting> 22 + </chapter>
+144
nixos/doc/manual/from_md/development/writing-documentation.chapter.xml
··· 1 + <chapter xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="sec-writing-documentation"> 2 + <title>Writing NixOS Documentation</title> 3 + <para> 4 + As NixOS grows, so too does the need for a catalogue and explanation 5 + of its extensive functionality. Collecting pertinent information 6 + from disparate sources and presenting it in an accessible style 7 + would be a worthy contribution to the project. 8 + </para> 9 + <section xml:id="sec-writing-docs-building-the-manual"> 10 + <title>Building the Manual</title> 11 + <para> 12 + The DocBook sources of the <xref linkend="book-nixos-manual" /> 13 + are in the 14 + <link xlink:href="https://github.com/NixOS/nixpkgs/tree/master/nixos/doc/manual"><literal>nixos/doc/manual</literal></link> 15 + subdirectory of the Nixpkgs repository. 16 + </para> 17 + <para> 18 + You can quickly validate your edits with <literal>make</literal>: 19 + </para> 20 + <programlisting> 21 + $ cd /path/to/nixpkgs/nixos/doc/manual 22 + $ nix-shell 23 + nix-shell$ make 24 + </programlisting> 25 + <para> 26 + Once you are done making modifications to the manual, it's 27 + important to build it before committing. You can do that as 28 + follows: 29 + </para> 30 + <programlisting> 31 + nix-build nixos/release.nix -A manual.x86_64-linux 32 + </programlisting> 33 + <para> 34 + When this command successfully finishes, it will tell you where 35 + the manual got generated. The HTML will be accessible through the 36 + <literal>result</literal> symlink at 37 + <literal>./result/share/doc/nixos/index.html</literal>. 38 + </para> 39 + </section> 40 + <section xml:id="sec-writing-docs-editing-docbook-xml"> 41 + <title>Editing DocBook XML</title> 42 + <para> 43 + For general information on how to write in DocBook, see 44 + <link xlink:href="http://www.docbook.org/tdg5/en/html/docbook.html">DocBook 45 + 5: The Definitive Guide</link>. 46 + </para> 47 + <para> 48 + Emacs nXML Mode is very helpful for editing DocBook XML because it 49 + validates the document as you write, and precisely locates errors. 50 + To use it, see <xref linkend="sec-emacs-docbook-xml" />. 51 + </para> 52 + <para> 53 + <link xlink:href="http://pandoc.org">Pandoc</link> can generate 54 + DocBook XML from a multitude of formats, which makes a good 55 + starting point. Here is an example of Pandoc invocation to convert 56 + GitHub-Flavoured MarkDown to DocBook 5 XML: 57 + </para> 58 + <programlisting> 59 + pandoc -f markdown_github -t docbook5 docs.md -o my-section.md 60 + </programlisting> 61 + <para> 62 + Pandoc can also quickly convert a single 63 + <literal>section.xml</literal> to HTML, which is helpful when 64 + drafting. 65 + </para> 66 + <para> 67 + Sometimes writing valid DocBook is simply too difficult. In this 68 + case, submit your documentation updates in a 69 + <link xlink:href="https://github.com/NixOS/nixpkgs/issues/new">GitHub 70 + Issue</link> and someone will handle the conversion to XML for 71 + you. 72 + </para> 73 + </section> 74 + <section xml:id="sec-writing-docs-creating-a-topic"> 75 + <title>Creating a Topic</title> 76 + <para> 77 + You can use an existing topic as a basis for the new topic or 78 + create a topic from scratch. 79 + </para> 80 + <para> 81 + Keep the following guidelines in mind when you create and add a 82 + topic: 83 + </para> 84 + <itemizedlist> 85 + <listitem> 86 + <para> 87 + The NixOS 88 + <link xlink:href="http://www.docbook.org/tdg5/en/html/book.html"><literal>book</literal></link> 89 + element is in <literal>nixos/doc/manual/manual.xml</literal>. 90 + It includes several 91 + <link xlink:href="http://www.docbook.org/tdg5/en/html/book.html"><literal>parts</literal></link> 92 + which are in subdirectories. 93 + </para> 94 + </listitem> 95 + <listitem> 96 + <para> 97 + Store the topic file in the same directory as the 98 + <literal>part</literal> to which it belongs. If your topic is 99 + about configuring a NixOS module, then the XML file can be 100 + stored alongside the module definition <literal>nix</literal> 101 + file. 102 + </para> 103 + </listitem> 104 + <listitem> 105 + <para> 106 + If you include multiple words in the file name, separate the 107 + words with a dash. For example: 108 + <literal>ipv6-config.xml</literal>. 109 + </para> 110 + </listitem> 111 + <listitem> 112 + <para> 113 + Make sure that the <literal>xml:id</literal> value is unique. 114 + You can use abbreviations if the ID is too long. For example: 115 + <literal>nixos-config</literal>. 116 + </para> 117 + </listitem> 118 + <listitem> 119 + <para> 120 + Determine whether your topic is a chapter or a section. If you 121 + are unsure, open an existing topic file and check whether the 122 + main element is chapter or section. 123 + </para> 124 + </listitem> 125 + </itemizedlist> 126 + </section> 127 + <section xml:id="sec-writing-docs-adding-a-topic"> 128 + <title>Adding a Topic to the Book</title> 129 + <para> 130 + Open the parent XML file and add an <literal>xi:include</literal> 131 + element to the list of chapters with the file name of the topic 132 + that you created. If you created a <literal>section</literal>, you 133 + add the file to the <literal>chapter</literal> file. If you 134 + created a <literal>chapter</literal>, you add the file to the 135 + <literal>part</literal> file. 136 + </para> 137 + <para> 138 + If the topic is about configuring a NixOS module, it can be 139 + automatically included in the manual by using the 140 + <literal>meta.doc</literal> attribute. See 141 + <xref linkend="sec-meta-attributes" /> for an explanation. 142 + </para> 143 + </section> 144 + </chapter>
+20 -10
nixos/modules/misc/documentation.nix
··· 120 120 ''; 121 121 }; 122 122 123 + man.manualPages = mkOption { 124 + type = types.path; 125 + default = pkgs.buildEnv { 126 + name = "man-paths"; 127 + paths = config.environment.systemPackages; 128 + pathsToLink = [ "/share/man" ]; 129 + extraOutputsToInstall = ["man"]; 130 + ignoreCollisions = true; 131 + }; 132 + defaultText = "all man pages in config.environment.systemPackages"; 133 + description = '' 134 + The manual pages to generate caches for if <option>generateCaches</option> 135 + is enabled. Must be a path to a directory with man pages under 136 + <literal>/share/man</literal>; see the source for an example. 137 + Advanced users can make this a content-addressed derivation to save a few rebuilds. 138 + ''; 139 + }; 140 + 123 141 info.enable = mkOption { 124 142 type = types.bool; 125 143 default = true; ··· 207 225 environment.extraOutputsToInstall = [ "man" ] ++ optional cfg.dev.enable "devman"; 208 226 environment.etc."man_db.conf".text = 209 227 let 210 - manualPages = pkgs.buildEnv { 211 - name = "man-paths"; 212 - paths = config.environment.systemPackages; 213 - pathsToLink = [ "/share/man" ]; 214 - extraOutputsToInstall = ["man"]; 215 - ignoreCollisions = true; 216 - }; 217 - manualCache = pkgs.runCommandLocal "man-cache" { } 218 - '' 219 - echo "MANDB_MAP ${manualPages}/share/man $out" > man.conf 228 + manualCache = pkgs.runCommandLocal "man-cache" { } '' 229 + echo "MANDB_MAP ${cfg.man.manualPages}/share/man $out" > man.conf 220 230 ${pkgs.man-db}/bin/mandb -C man.conf -psc >/dev/null 2>&1 221 231 ''; 222 232 in
+2 -1
nixos/modules/programs/environment.nix
··· 18 18 19 19 environment.variables = 20 20 { NIXPKGS_CONFIG = "/etc/nix/nixpkgs-config.nix"; 21 - PAGER = mkDefault "less -R"; 21 + PAGER = mkDefault "less"; 22 + LESS = mkDefault "-R"; 22 23 EDITOR = mkDefault "nano"; 23 24 XDG_CONFIG_DIRS = [ "/etc/xdg" ]; # needs to be before profile-relative paths to allow changes through environment.etc 24 25 };
+7 -1
nixos/modules/services/misc/nix-ssh-serve.nix
··· 4 4 let cfg = config.nix.sshServe; 5 5 command = 6 6 if cfg.protocol == "ssh" 7 - then "nix-store --serve" 7 + then "nix-store --serve ${lib.optionalString cfg.write "--write"}" 8 8 else "nix-daemon --stdio"; 9 9 in { 10 10 options = { ··· 15 15 type = types.bool; 16 16 default = false; 17 17 description = "Whether to enable serving the Nix store as a remote store via SSH."; 18 + }; 19 + 20 + write = mkOption { 21 + type = types.bool; 22 + default = false; 23 + description = "Whether to enable writing to the Nix store as a remote store via SSH. Note: the sshServe user is named nix-ssh and is not a trusted-user. nix-ssh should be added to the nix.trustedUsers option in most use cases, such as allowing remote building of derivations."; 18 24 }; 19 25 20 26 keys = mkOption {
+13 -9
nixos/modules/services/networking/gnunet.nix
··· 6 6 7 7 cfg = config.services.gnunet; 8 8 9 - homeDir = "/var/lib/gnunet"; 9 + stateDir = "/var/lib/gnunet"; 10 10 11 - configFile = with cfg; pkgs.writeText "gnunetd.conf" 11 + configFile = with cfg; 12 12 '' 13 13 [PATHS] 14 - SERVICEHOME = ${homeDir} 14 + GNUNET_HOME = ${stateDir} 15 + GNUNET_RUNTIME_DIR = /run/gnunet 16 + GNUNET_USER_RUNTIME_DIR = /run/gnunet 17 + GNUNET_DATA_HOME = ${stateDir}/data 15 18 16 19 [ats] 17 20 WAN_QUOTA_IN = ${toString load.maxNetDownBandwidth} b ··· 137 140 users.users.gnunet = { 138 141 group = "gnunet"; 139 142 description = "GNUnet User"; 140 - home = homeDir; 141 - createHome = true; 142 143 uid = config.ids.uids.gnunet; 143 144 }; 144 145 ··· 148 149 # so install them globally. 149 150 environment.systemPackages = [ cfg.package ]; 150 151 152 + environment.etc."gnunet.conf".text = configFile; 153 + 151 154 systemd.services.gnunet = { 152 155 description = "GNUnet"; 153 156 after = [ "network.target" ]; 154 157 wantedBy = [ "multi-user.target" ]; 158 + restartTriggers = [ configFile ]; 155 159 path = [ cfg.package pkgs.miniupnpc ]; 156 - environment.TMPDIR = "/tmp"; 157 - serviceConfig.PrivateTmp = true; 158 - serviceConfig.ExecStart = "${cfg.package}/lib/gnunet/libexec/gnunet-service-arm -c ${configFile}"; 160 + serviceConfig.ExecStart = "${cfg.package}/lib/gnunet/libexec/gnunet-service-arm -c /etc/gnunet.conf"; 159 161 serviceConfig.User = "gnunet"; 160 162 serviceConfig.UMask = "0007"; 161 - serviceConfig.WorkingDirectory = homeDir; 163 + serviceConfig.WorkingDirectory = stateDir; 164 + serviceConfig.RuntimeDirectory = "gnunet"; 165 + serviceConfig.StateDirectory = "gnunet"; 162 166 }; 163 167 164 168 };
+78 -18
pkgs/applications/editors/emacs/elisp-packages/elpa-generated.nix
··· 234 234 elpaBuild { 235 235 pname = "auctex"; 236 236 ename = "auctex"; 237 - version = "13.0.13"; 237 + version = "13.0.14"; 238 238 src = fetchurl { 239 - url = "https://elpa.gnu.org/packages/auctex-13.0.13.tar"; 240 - sha256 = "06cb9jphqd0nysc60b4x24zmdryljb168cw66adl7b2x7sdzpkmn"; 239 + url = "https://elpa.gnu.org/packages/auctex-13.0.14.tar"; 240 + sha256 = "1gmqdcg9s6xf8kvzh1j27nbimakd5cy8pwsn0il19l026kxjimr8"; 241 241 }; 242 242 packageRequires = [ emacs ]; 243 243 meta = { ··· 707 707 license = lib.licenses.free; 708 708 }; 709 709 }) {}; 710 + crdt = callPackage ({ elpaBuild, fetchurl, lib }: 711 + elpaBuild { 712 + pname = "crdt"; 713 + ename = "crdt"; 714 + version = "0.1.4"; 715 + src = fetchurl { 716 + url = "https://elpa.gnu.org/packages/crdt-0.1.4.tar"; 717 + sha256 = "1qqfjvkajwhdhz0jhqixdn68l1rl02pn2fmxizzsv0as20v0ay0r"; 718 + }; 719 + packageRequires = []; 720 + meta = { 721 + homepage = "https://elpa.gnu.org/packages/crdt.html"; 722 + license = lib.licenses.free; 723 + }; 724 + }) {}; 710 725 crisp = callPackage ({ elpaBuild, fetchurl, lib }: 711 726 elpaBuild { 712 727 pname = "crisp"; ··· 726 741 elpaBuild { 727 742 pname = "csharp-mode"; 728 743 ename = "csharp-mode"; 729 - version = "1.0.0"; 744 + version = "1.0.2"; 730 745 src = fetchurl { 731 - url = "https://elpa.gnu.org/packages/csharp-mode-1.0.0.tar"; 732 - sha256 = "0vhm443fkcjsj95r4rs9r0mz9vzfk92883nxhyi35d3jaf112gm1"; 746 + url = "https://elpa.gnu.org/packages/csharp-mode-1.0.2.tar"; 747 + sha256 = "1xddnd6g6qz3xnzl6dmd38qvzvm32acdyhmm27hfdpqcbg6isfad"; 733 748 }; 734 749 packageRequires = [ emacs ]; 735 750 meta = { ··· 786 801 elpaBuild { 787 802 pname = "dash"; 788 803 ename = "dash"; 789 - version = "2.19.0"; 804 + version = "2.19.1"; 790 805 src = fetchurl { 791 - url = "https://elpa.gnu.org/packages/dash-2.19.0.tar"; 792 - sha256 = "0qszjs60xxqjiqf5f2bgmnbx5jiqii4ghcydwg500za0n2j0f5sx"; 806 + url = "https://elpa.gnu.org/packages/dash-2.19.1.tar"; 807 + sha256 = "0c11lm7wpgmqk8zbdcpmyas12ylml5yhp99mj9h1wqqw0p33xaiw"; 793 808 }; 794 809 packageRequires = [ emacs ]; 795 810 meta = { ··· 1026 1041 elpaBuild { 1027 1042 pname = "ebdb"; 1028 1043 ename = "ebdb"; 1029 - version = "0.8.2"; 1044 + version = "0.8.4"; 1030 1045 src = fetchurl { 1031 - url = "https://elpa.gnu.org/packages/ebdb-0.8.2.tar"; 1032 - sha256 = "1idwih5v287q9vdhsnr1bsibdv4h61vmy3b82svf2x9aik1a7vir"; 1046 + url = "https://elpa.gnu.org/packages/ebdb-0.8.4.tar"; 1047 + sha256 = "0n811af83fqpzq9513gf240gnz7qkwrjw07qs4sra4069q0pwnjr"; 1033 1048 }; 1034 1049 packageRequires = [ emacs seq ]; 1035 1050 meta = { ··· 1217 1232 packageRequires = [ cl-lib nadvice seq ]; 1218 1233 meta = { 1219 1234 homepage = "https://elpa.gnu.org/packages/emms.html"; 1235 + license = lib.licenses.free; 1236 + }; 1237 + }) {}; 1238 + engrave-faces = callPackage ({ elpaBuild, emacs, fetchurl, lib }: 1239 + elpaBuild { 1240 + pname = "engrave-faces"; 1241 + ename = "engrave-faces"; 1242 + version = "0.2.0"; 1243 + src = fetchurl { 1244 + url = "https://elpa.gnu.org/packages/engrave-faces-0.2.0.tar"; 1245 + sha256 = "1d0hsfg3wvwbs82gjyvfjvy1sszcm7qa50bch1b6jy05kbc543ip"; 1246 + }; 1247 + packageRequires = [ emacs ]; 1248 + meta = { 1249 + homepage = "https://elpa.gnu.org/packages/engrave-faces.html"; 1220 1250 license = lib.licenses.free; 1221 1251 }; 1222 1252 }) {}; ··· 3752 3782 license = lib.licenses.free; 3753 3783 }; 3754 3784 }) {}; 3785 + taxy = callPackage ({ elpaBuild, emacs, fetchurl, lib }: 3786 + elpaBuild { 3787 + pname = "taxy"; 3788 + ename = "taxy"; 3789 + version = "0.4"; 3790 + src = fetchurl { 3791 + url = "https://elpa.gnu.org/packages/taxy-0.4.tar"; 3792 + sha256 = "1iy1761v2q0i020x8ch4z3vljx2v62pcy5bifxq8gw5qx0115576"; 3793 + }; 3794 + packageRequires = [ emacs ]; 3795 + meta = { 3796 + homepage = "https://elpa.gnu.org/packages/taxy.html"; 3797 + license = lib.licenses.free; 3798 + }; 3799 + }) {}; 3755 3800 temp-buffer-browse = callPackage ({ elpaBuild, emacs, fetchurl, lib }: 3756 3801 elpaBuild { 3757 3802 pname = "temp-buffer-browse"; ··· 3820 3865 elpaBuild { 3821 3866 pname = "tramp"; 3822 3867 ename = "tramp"; 3823 - version = "2.5.1.1"; 3868 + version = "2.5.1.2"; 3824 3869 src = fetchurl { 3825 - url = "https://elpa.gnu.org/packages/tramp-2.5.1.1.tar"; 3826 - sha256 = "0v3rvvhjcnyvg6l4vyxz6513mxzvv9n0skkmr62ry8yi5x9wnqp1"; 3870 + url = "https://elpa.gnu.org/packages/tramp-2.5.1.2.tar"; 3871 + sha256 = "0p8m8prxrvrr455ahb626c1dry04m80y017h16ngr4i5ais0r85g"; 3827 3872 }; 3828 3873 packageRequires = [ emacs ]; 3829 3874 meta = { ··· 3987 4032 packageRequires = [ emacs ]; 3988 4033 meta = { 3989 4034 homepage = "https://elpa.gnu.org/packages/valign.html"; 4035 + license = lib.licenses.free; 4036 + }; 4037 + }) {}; 4038 + vc-backup = callPackage ({ elpaBuild, fetchurl, lib }: 4039 + elpaBuild { 4040 + pname = "vc-backup"; 4041 + ename = "vc-backup"; 4042 + version = "1.0.0"; 4043 + src = fetchurl { 4044 + url = "https://elpa.gnu.org/packages/vc-backup-1.0.0.tar"; 4045 + sha256 = "0vcrbb4s1rzar9q882kfcslycxvycp61923sg82i29b7yd0yrgdr"; 4046 + }; 4047 + packageRequires = []; 4048 + meta = { 4049 + homepage = "https://elpa.gnu.org/packages/vc-backup.html"; 3990 4050 license = lib.licenses.free; 3991 4051 }; 3992 4052 }) {}; ··· 4379 4439 elpaBuild { 4380 4440 pname = "xref"; 4381 4441 ename = "xref"; 4382 - version = "1.1.0"; 4442 + version = "1.2.2"; 4383 4443 src = fetchurl { 4384 - url = "https://elpa.gnu.org/packages/xref-1.1.0.tar"; 4385 - sha256 = "1s7pwk09bry4nqr4bc78a3mbwyrxagai2gpsd49x47czy2x7m3ax"; 4444 + url = "https://elpa.gnu.org/packages/xref-1.2.2.tar"; 4445 + sha256 = "14kdy8blhs6lwg349l9lmv0bbpybgi9nsg2iic3v87j4jyi41ljm"; 4386 4446 }; 4387 4447 packageRequires = [ emacs ]; 4388 4448 meta = {
+1 -1
pkgs/applications/editors/emacs/elisp-packages/elpa-packages.nix
··· 6 6 7 7 1. Run `./update-elpa`. 8 8 2. Check for evaluation errors: 9 - `nix-instantiate ../../../../../ -A emacs.pkgs.elpaPackages`. 9 + env NIXPKGS_ALLOW_BROKEN=1 nix-instantiate ../../../../../ -A emacs.pkgs.elpaPackages 10 10 3. Run `git commit -m "elpa-packages $(date -Idate)" -- elpa-generated.nix` 11 11 12 12 ## Update from overlay
+886 -4
pkgs/applications/editors/emacs/elisp-packages/nongnu-generated.nix
··· 1 1 { callPackage }: 2 2 { 3 - caml = callPackage ({ elpaBuild, fetchurl, lib }: 3 + apache-mode = callPackage ({ elpaBuild, fetchurl, lib }: 4 + elpaBuild { 5 + pname = "apache-mode"; 6 + ename = "apache-mode"; 7 + version = "2.2.0"; 8 + src = fetchurl { 9 + url = "https://elpa.nongnu.org/nongnu/apache-mode-2.2.0.tar"; 10 + sha256 = "022s7rw7ary1cx3riszzvb7wi0y078vixkcyggjdg5j2ckjpc8gb"; 11 + }; 12 + packageRequires = []; 13 + meta = { 14 + homepage = "https://elpa.gnu.org/packages/apache-mode.html"; 15 + license = lib.licenses.free; 16 + }; 17 + }) {}; 18 + arduino-mode = callPackage ({ elpaBuild, emacs, fetchurl, lib, spinner }: 19 + elpaBuild { 20 + pname = "arduino-mode"; 21 + ename = "arduino-mode"; 22 + version = "1.3.0"; 23 + src = fetchurl { 24 + url = "https://elpa.nongnu.org/nongnu/arduino-mode-1.3.0.tar"; 25 + sha256 = "1270mbjgj0kmmjqqblwaipmd2667yp31mgspib3c5d7d6acs1bfx"; 26 + }; 27 + packageRequires = [ emacs spinner ]; 28 + meta = { 29 + homepage = "https://elpa.gnu.org/packages/arduino-mode.html"; 30 + license = lib.licenses.free; 31 + }; 32 + }) {}; 33 + bison-mode = callPackage ({ elpaBuild, fetchurl, lib }: 34 + elpaBuild { 35 + pname = "bison-mode"; 36 + ename = "bison-mode"; 37 + version = "0.4"; 38 + src = fetchurl { 39 + url = "https://elpa.nongnu.org/nongnu/bison-mode-0.4.tar"; 40 + sha256 = "19n9kz1ycjpxngd3clzr8lzrnnw19l8sfvlx1yqn35hk7017z7ab"; 41 + }; 42 + packageRequires = []; 43 + meta = { 44 + homepage = "https://elpa.gnu.org/packages/bison-mode.html"; 45 + license = lib.licenses.free; 46 + }; 47 + }) {}; 48 + caml = callPackage ({ cl-lib ? null, elpaBuild, emacs, fetchurl, lib }: 4 49 elpaBuild { 5 50 pname = "caml"; 6 51 ename = "caml"; 52 + version = "4.8"; 53 + src = fetchurl { 54 + url = "https://elpa.nongnu.org/nongnu/caml-4.8.tar"; 55 + sha256 = "02wzjdd1ig8ajy65rf87zaysfddjbhyswifwlcs52ly7p84q72wk"; 56 + }; 57 + packageRequires = [ cl-lib emacs ]; 58 + meta = { 59 + homepage = "https://elpa.gnu.org/packages/caml.html"; 60 + license = lib.licenses.free; 61 + }; 62 + }) {}; 63 + clojure-mode = callPackage ({ elpaBuild, emacs, fetchurl, lib }: 64 + elpaBuild { 65 + pname = "clojure-mode"; 66 + ename = "clojure-mode"; 67 + version = "5.13.0"; 68 + src = fetchurl { 69 + url = "https://elpa.nongnu.org/nongnu/clojure-mode-5.13.0.tar"; 70 + sha256 = "16xll0sp7mqzwldfsihp7j3dlm6ps1l1awi122ff8w7xph7b0wfh"; 71 + }; 72 + packageRequires = [ emacs ]; 73 + meta = { 74 + homepage = "https://elpa.gnu.org/packages/clojure-mode.html"; 75 + license = lib.licenses.free; 76 + }; 77 + }) {}; 78 + crux = callPackage ({ elpaBuild, fetchurl, lib, seq }: 79 + elpaBuild { 80 + pname = "crux"; 81 + ename = "crux"; 82 + version = "0.4.0"; 83 + src = fetchurl { 84 + url = "https://elpa.nongnu.org/nongnu/crux-0.4.0.tar"; 85 + sha256 = "01yg54s2l3zr4h7h3nw408bqzrr4yds9rfgc575b76006v5d3ciy"; 86 + }; 87 + packageRequires = [ seq ]; 88 + meta = { 89 + homepage = "https://elpa.gnu.org/packages/crux.html"; 90 + license = lib.licenses.free; 91 + }; 92 + }) {}; 93 + d-mode = callPackage ({ elpaBuild, emacs, fetchurl, lib }: 94 + elpaBuild { 95 + pname = "d-mode"; 96 + ename = "d-mode"; 97 + version = "202003130913"; 98 + src = fetchurl { 99 + url = "https://elpa.nongnu.org/nongnu/d-mode-202003130913.tar"; 100 + sha256 = "1pad0ib8l1zkjmh97n1pkwph1xdbcqidnicm3nwmcbmbi61lddsx"; 101 + }; 102 + packageRequires = [ emacs ]; 103 + meta = { 104 + homepage = "https://elpa.gnu.org/packages/d-mode.html"; 105 + license = lib.licenses.free; 106 + }; 107 + }) {}; 108 + dart-mode = callPackage ({ elpaBuild, emacs, fetchurl, lib }: 109 + elpaBuild { 110 + pname = "dart-mode"; 111 + ename = "dart-mode"; 112 + version = "1.0.7"; 113 + src = fetchurl { 114 + url = "https://elpa.nongnu.org/nongnu/dart-mode-1.0.7.tar"; 115 + sha256 = "13n0fmnxgnq8vjw0n5vwgdgfm5lznvrm3xkak4snkdw7w3rd3a20"; 116 + }; 117 + packageRequires = [ emacs ]; 118 + meta = { 119 + homepage = "https://elpa.gnu.org/packages/dart-mode.html"; 120 + license = lib.licenses.free; 121 + }; 122 + }) {}; 123 + editorconfig = callPackage ({ cl-lib ? null 124 + , elpaBuild 125 + , emacs 126 + , fetchurl 127 + , lib 128 + , nadvice }: 129 + elpaBuild { 130 + pname = "editorconfig"; 131 + ename = "editorconfig"; 132 + version = "0.8.2"; 133 + src = fetchurl { 134 + url = "https://elpa.nongnu.org/nongnu/editorconfig-0.8.2.tar"; 135 + sha256 = "1ff8hwyzb249lf78j023sbibgfmimmk6mxkjmcnqqnk1jafprk02"; 136 + }; 137 + packageRequires = [ cl-lib emacs nadvice ]; 138 + meta = { 139 + homepage = "https://elpa.gnu.org/packages/editorconfig.html"; 140 + license = lib.licenses.free; 141 + }; 142 + }) {}; 143 + evil = callPackage ({ elpaBuild, fetchurl, lib }: 144 + elpaBuild { 145 + pname = "evil"; 146 + ename = "evil"; 147 + version = "1.14.0"; 148 + src = fetchurl { 149 + url = "https://elpa.nongnu.org/nongnu/evil-1.14.0.tar"; 150 + sha256 = "11hzx3ya1119kr8dwlg264biixiqgvi7zwxxksql0a9hqp57rdpx"; 151 + }; 152 + packageRequires = []; 153 + meta = { 154 + homepage = "https://elpa.gnu.org/packages/evil.html"; 155 + license = lib.licenses.free; 156 + }; 157 + }) {}; 158 + geiser = callPackage ({ elpaBuild, emacs, fetchurl, lib }: 159 + elpaBuild { 160 + pname = "geiser"; 161 + ename = "geiser"; 162 + version = "0.16"; 163 + src = fetchurl { 164 + url = "https://elpa.nongnu.org/nongnu/geiser-0.16.tar"; 165 + sha256 = "1mhngb1ik3qsc3w466cs61rbz3nn08ag29m5vfbd6adk60xmhnfk"; 166 + }; 167 + packageRequires = [ emacs ]; 168 + meta = { 169 + homepage = "https://elpa.gnu.org/packages/geiser.html"; 170 + license = lib.licenses.free; 171 + }; 172 + }) {}; 173 + geiser-chez = callPackage ({ elpaBuild, emacs, fetchurl, geiser, lib }: 174 + elpaBuild { 175 + pname = "geiser-chez"; 176 + ename = "geiser-chez"; 177 + version = "0.16"; 178 + src = fetchurl { 179 + url = "https://elpa.nongnu.org/nongnu/geiser-chez-0.16.tar"; 180 + sha256 = "016b7n5rv7fyrw4lqcprhhf2rai5vvmmc8a13l4w3a30rwcgm7cd"; 181 + }; 182 + packageRequires = [ emacs geiser ]; 183 + meta = { 184 + homepage = "https://elpa.gnu.org/packages/geiser-chez.html"; 185 + license = lib.licenses.free; 186 + }; 187 + }) {}; 188 + geiser-chibi = callPackage ({ elpaBuild, emacs, fetchurl, geiser, lib }: 189 + elpaBuild { 190 + pname = "geiser-chibi"; 191 + ename = "geiser-chibi"; 192 + version = "0.16"; 193 + src = fetchurl { 194 + url = "https://elpa.nongnu.org/nongnu/geiser-chibi-0.16.tar"; 195 + sha256 = "0j9dgg2q01ya6yawpfc15ywrfykd5gzbh118k1x4mghfkfnqn1zi"; 196 + }; 197 + packageRequires = [ emacs geiser ]; 198 + meta = { 199 + homepage = "https://elpa.gnu.org/packages/geiser-chibi.html"; 200 + license = lib.licenses.free; 201 + }; 202 + }) {}; 203 + geiser-chicken = callPackage ({ elpaBuild, emacs, fetchurl, geiser, lib }: 204 + elpaBuild { 205 + pname = "geiser-chicken"; 206 + ename = "geiser-chicken"; 207 + version = "0.16"; 208 + src = fetchurl { 209 + url = "https://elpa.nongnu.org/nongnu/geiser-chicken-0.16.tar"; 210 + sha256 = "1zmb8c86akrd5f1v59s4xkbpgsqbdcbc6d5f9h6kxa55ylc4dn6a"; 211 + }; 212 + packageRequires = [ emacs geiser ]; 213 + meta = { 214 + homepage = "https://elpa.gnu.org/packages/geiser-chicken.html"; 215 + license = lib.licenses.free; 216 + }; 217 + }) {}; 218 + geiser-gambit = callPackage ({ elpaBuild, emacs, fetchurl, geiser, lib }: 219 + elpaBuild { 220 + pname = "geiser-gambit"; 221 + ename = "geiser-gambit"; 222 + version = "0.16"; 223 + src = fetchurl { 224 + url = "https://elpa.nongnu.org/nongnu/geiser-gambit-0.16.tar"; 225 + sha256 = "0bc38qlqj7a3cnrcnqrb6m3jvjh2ia5iby9i50vcn0jbs52rfsnz"; 226 + }; 227 + packageRequires = [ emacs geiser ]; 228 + meta = { 229 + homepage = "https://elpa.gnu.org/packages/geiser-gambit.html"; 230 + license = lib.licenses.free; 231 + }; 232 + }) {}; 233 + geiser-gauche = callPackage ({ elpaBuild, emacs, fetchurl, geiser, lib }: 234 + elpaBuild { 235 + pname = "geiser-gauche"; 236 + ename = "geiser-gauche"; 237 + version = "0.0.2"; 238 + src = fetchurl { 239 + url = "https://elpa.nongnu.org/nongnu/geiser-gauche-0.0.2.tar"; 240 + sha256 = "0wd0yddasryy36ms5ghf0gs8wf80sgdxci2hd8k0fvnyi7c3wnj5"; 241 + }; 242 + packageRequires = [ emacs geiser ]; 243 + meta = { 244 + homepage = "https://elpa.gnu.org/packages/geiser-gauche.html"; 245 + license = lib.licenses.free; 246 + }; 247 + }) {}; 248 + geiser-guile = callPackage ({ elpaBuild, emacs, fetchurl, geiser, lib }: 249 + elpaBuild { 250 + pname = "geiser-guile"; 251 + ename = "geiser-guile"; 252 + version = "0.17"; 253 + src = fetchurl { 254 + url = "https://elpa.nongnu.org/nongnu/geiser-guile-0.17.tar"; 255 + sha256 = "0g4982rfxjp08qi6nxz73lsbdwf388fx511394yw4s7ml6v1m4kd"; 256 + }; 257 + packageRequires = [ emacs geiser ]; 258 + meta = { 259 + homepage = "https://elpa.gnu.org/packages/geiser-guile.html"; 260 + license = lib.licenses.free; 261 + }; 262 + }) {}; 263 + geiser-kawa = callPackage ({ elpaBuild, emacs, fetchurl, geiser, lib }: 264 + elpaBuild { 265 + pname = "geiser-kawa"; 266 + ename = "geiser-kawa"; 267 + version = "0.0.1"; 268 + src = fetchurl { 269 + url = "https://elpa.nongnu.org/nongnu/geiser-kawa-0.0.1.tar"; 270 + sha256 = "1qh4qr406ahk4k8g46nzkiic1fidhni0a5zv4i84cdypv1c4473p"; 271 + }; 272 + packageRequires = [ emacs geiser ]; 273 + meta = { 274 + homepage = "https://elpa.gnu.org/packages/geiser-kawa.html"; 275 + license = lib.licenses.free; 276 + }; 277 + }) {}; 278 + geiser-mit = callPackage ({ elpaBuild, emacs, fetchurl, geiser, lib }: 279 + elpaBuild { 280 + pname = "geiser-mit"; 281 + ename = "geiser-mit"; 282 + version = "0.13"; 283 + src = fetchurl { 284 + url = "https://elpa.nongnu.org/nongnu/geiser-mit-0.13.tar"; 285 + sha256 = "1y2cgrcvdp358x7lpcz8x8nw5g1y4h03d9gbkbd6k85643cwrkbi"; 286 + }; 287 + packageRequires = [ emacs geiser ]; 288 + meta = { 289 + homepage = "https://elpa.gnu.org/packages/geiser-mit.html"; 290 + license = lib.licenses.free; 291 + }; 292 + }) {}; 293 + geiser-racket = callPackage ({ elpaBuild, emacs, fetchurl, geiser, lib }: 294 + elpaBuild { 295 + pname = "geiser-racket"; 296 + ename = "geiser-racket"; 297 + version = "0.16"; 298 + src = fetchurl { 299 + url = "https://elpa.nongnu.org/nongnu/geiser-racket-0.16.tar"; 300 + sha256 = "0lf2lbgpl8pvx7yhiydb7j5hk3kdx34zvhva4zqnzya6zf30w257"; 301 + }; 302 + packageRequires = [ emacs geiser ]; 303 + meta = { 304 + homepage = "https://elpa.gnu.org/packages/geiser-racket.html"; 305 + license = lib.licenses.free; 306 + }; 307 + }) {}; 308 + geiser-stklos = callPackage ({ elpaBuild, emacs, fetchurl, geiser, lib }: 309 + elpaBuild { 310 + pname = "geiser-stklos"; 311 + ename = "geiser-stklos"; 312 + version = "1.3"; 313 + src = fetchurl { 314 + url = "https://elpa.nongnu.org/nongnu/geiser-stklos-1.3.tar"; 315 + sha256 = "1wkhnkdhdrhrh0vipgnlmyimi859za6jhf2ldpwfmk8r2aj8ywan"; 316 + }; 317 + packageRequires = [ emacs geiser ]; 318 + meta = { 319 + homepage = "https://elpa.gnu.org/packages/geiser-stklos.html"; 320 + license = lib.licenses.free; 321 + }; 322 + }) {}; 323 + git-commit = callPackage ({ dash 324 + , elpaBuild 325 + , emacs 326 + , fetchurl 327 + , lib 328 + , transient 329 + , with-editor }: 330 + elpaBuild { 331 + pname = "git-commit"; 332 + ename = "git-commit"; 333 + version = "3.2.1"; 334 + src = fetchurl { 335 + url = "https://elpa.nongnu.org/nongnu/git-commit-3.2.1.tar"; 336 + sha256 = "1jndc8ppj4r2s62idabygj4q0qbpk4gwifn8jrd6pa61d7dlvp28"; 337 + }; 338 + packageRequires = [ dash emacs transient with-editor ]; 339 + meta = { 340 + homepage = "https://elpa.gnu.org/packages/git-commit.html"; 341 + license = lib.licenses.free; 342 + }; 343 + }) {}; 344 + gnuplot = callPackage ({ elpaBuild, emacs, fetchurl, lib }: 345 + elpaBuild { 346 + pname = "gnuplot"; 347 + ename = "gnuplot"; 348 + version = "0.8.0"; 349 + src = fetchurl { 350 + url = "https://elpa.nongnu.org/nongnu/gnuplot-0.8.0.tar"; 351 + sha256 = "1f27y18ivcdwlkgr3ql4qcbgzdp6vk1bkw2wlryrclpydbb1nya3"; 352 + }; 353 + packageRequires = [ emacs ]; 354 + meta = { 355 + homepage = "https://elpa.gnu.org/packages/gnuplot.html"; 356 + license = lib.licenses.free; 357 + }; 358 + }) {}; 359 + go-mode = callPackage ({ elpaBuild, fetchurl, lib }: 360 + elpaBuild { 361 + pname = "go-mode"; 362 + ename = "go-mode"; 363 + version = "1.5.0"; 364 + src = fetchurl { 365 + url = "https://elpa.nongnu.org/nongnu/go-mode-1.5.0.tar"; 366 + sha256 = "0v4lw5dkijajpxyigin4cd5q4ldrabljaz65zr5f7mgqn5sizj3q"; 367 + }; 368 + packageRequires = []; 369 + meta = { 370 + homepage = "https://elpa.gnu.org/packages/go-mode.html"; 371 + license = lib.licenses.free; 372 + }; 373 + }) {}; 374 + goto-chg = callPackage ({ elpaBuild, emacs, fetchurl, lib }: 375 + elpaBuild { 376 + pname = "goto-chg"; 377 + ename = "goto-chg"; 378 + version = "1.7.4"; 379 + src = fetchurl { 380 + url = "https://elpa.nongnu.org/nongnu/goto-chg-1.7.4.tar"; 381 + sha256 = "1sg2gp48b83gq0j821lk241lwyxkhqr6w5d1apbnkm3qf08qjwba"; 382 + }; 383 + packageRequires = [ emacs ]; 384 + meta = { 385 + homepage = "https://elpa.gnu.org/packages/goto-chg.html"; 386 + license = lib.licenses.free; 387 + }; 388 + }) {}; 389 + guru-mode = callPackage ({ elpaBuild, fetchurl, lib }: 390 + elpaBuild { 391 + pname = "guru-mode"; 392 + ename = "guru-mode"; 393 + version = "1.0"; 394 + src = fetchurl { 395 + url = "https://elpa.nongnu.org/nongnu/guru-mode-1.0.tar"; 396 + sha256 = "18vz80yc7nv6dgyyxmlxslwim7qpb1dx2y5382c2wbdqp0icg41g"; 397 + }; 398 + packageRequires = []; 399 + meta = { 400 + homepage = "https://elpa.gnu.org/packages/guru-mode.html"; 401 + license = lib.licenses.free; 402 + }; 403 + }) {}; 404 + haskell-mode = callPackage ({ elpaBuild, fetchurl, lib }: 405 + elpaBuild { 406 + pname = "haskell-mode"; 407 + ename = "haskell-mode"; 7 408 version = "4.7.1"; 8 409 src = fetchurl { 9 - url = "https://elpa.nongnu.org/nongnu/caml-4.7.1.tar"; 10 - sha256 = "1bv2fscy7zg7r1hyg4rpvh3991vmhy4zid7bv1qbhxa95m9c49j3"; 410 + url = "https://elpa.nongnu.org/nongnu/haskell-mode-4.7.1.tar"; 411 + sha256 = "07x7440xi8dkv1zpzwi7p96jy3zd6pdv1mhs066l8bp325516wyb"; 412 + }; 413 + packageRequires = []; 414 + meta = { 415 + homepage = "https://elpa.gnu.org/packages/haskell-mode.html"; 416 + license = lib.licenses.free; 417 + }; 418 + }) {}; 419 + highlight-parentheses = callPackage ({ elpaBuild 420 + , emacs 421 + , fetchurl 422 + , lib }: 423 + elpaBuild { 424 + pname = "highlight-parentheses"; 425 + ename = "highlight-parentheses"; 426 + version = "2.1.0"; 427 + src = fetchurl { 428 + url = "https://elpa.nongnu.org/nongnu/highlight-parentheses-2.1.0.tar"; 429 + sha256 = "1rsixbvglar0k0x24xkxw80sx9i85q48jdzx6wbyjz2clz974ja5"; 430 + }; 431 + packageRequires = [ emacs ]; 432 + meta = { 433 + homepage = "https://elpa.gnu.org/packages/highlight-parentheses.html"; 434 + license = lib.licenses.free; 435 + }; 436 + }) {}; 437 + htmlize = callPackage ({ elpaBuild, fetchurl, lib }: 438 + elpaBuild { 439 + pname = "htmlize"; 440 + ename = "htmlize"; 441 + version = "1.57"; 442 + src = fetchurl { 443 + url = "https://elpa.nongnu.org/nongnu/htmlize-1.57.tar"; 444 + sha256 = "1k4maqkcicvpl4yxkx6ha98x36ppcfdp2clcdg4fjx945yamx80s"; 11 445 }; 12 446 packageRequires = []; 13 447 meta = { 14 - homepage = "https://elpa.gnu.org/packages/caml.html"; 448 + homepage = "https://elpa.gnu.org/packages/htmlize.html"; 449 + license = lib.licenses.free; 450 + }; 451 + }) {}; 452 + idris-mode = callPackage ({ cl-lib ? null 453 + , elpaBuild 454 + , emacs 455 + , fetchurl 456 + , lib 457 + , prop-menu }: 458 + elpaBuild { 459 + pname = "idris-mode"; 460 + ename = "idris-mode"; 461 + version = "0.9.18"; 462 + src = fetchurl { 463 + url = "https://elpa.nongnu.org/nongnu/idris-mode-0.9.18.tar"; 464 + sha256 = "1z4wsqzxsmn1vdqp44b32m4wzs4bbnsyzv09v9ggr4l4h2j4c3x5"; 465 + }; 466 + packageRequires = [ cl-lib emacs prop-menu ]; 467 + meta = { 468 + homepage = "https://elpa.gnu.org/packages/idris-mode.html"; 469 + license = lib.licenses.free; 470 + }; 471 + }) {}; 472 + inf-clojure = callPackage ({ clojure-mode 473 + , elpaBuild 474 + , emacs 475 + , fetchurl 476 + , lib }: 477 + elpaBuild { 478 + pname = "inf-clojure"; 479 + ename = "inf-clojure"; 480 + version = "3.1.0"; 481 + src = fetchurl { 482 + url = "https://elpa.nongnu.org/nongnu/inf-clojure-3.1.0.tar"; 483 + sha256 = "0jw6rzplicbv2l7si46naspzp5lqwj20b1nmfs9zal58z1gx6zjk"; 484 + }; 485 + packageRequires = [ clojure-mode emacs ]; 486 + meta = { 487 + homepage = "https://elpa.gnu.org/packages/inf-clojure.html"; 488 + license = lib.licenses.free; 489 + }; 490 + }) {}; 491 + j-mode = callPackage ({ elpaBuild, fetchurl, lib }: 492 + elpaBuild { 493 + pname = "j-mode"; 494 + ename = "j-mode"; 495 + version = "1.1.1"; 496 + src = fetchurl { 497 + url = "https://elpa.nongnu.org/nongnu/j-mode-1.1.1.tar"; 498 + sha256 = "0l0l71z5i725dnw4l9w2cfjhrijwx9z8mgyf2dfcbly1cl2nvnx2"; 499 + }; 500 + packageRequires = []; 501 + meta = { 502 + homepage = "https://elpa.gnu.org/packages/j-mode.html"; 503 + license = lib.licenses.free; 504 + }; 505 + }) {}; 506 + julia-mode = callPackage ({ elpaBuild, emacs, fetchurl, lib }: 507 + elpaBuild { 508 + pname = "julia-mode"; 509 + ename = "julia-mode"; 510 + version = "0.4"; 511 + src = fetchurl { 512 + url = "https://elpa.nongnu.org/nongnu/julia-mode-0.4.tar"; 513 + sha256 = "1qi6z6007q2jgcb96iy34m87jsg9ss3jhzlnl2cl8dn26yqmdky4"; 514 + }; 515 + packageRequires = [ emacs ]; 516 + meta = { 517 + homepage = "https://elpa.gnu.org/packages/julia-mode.html"; 518 + license = lib.licenses.free; 519 + }; 520 + }) {}; 521 + lua-mode = callPackage ({ elpaBuild, emacs, fetchurl, lib }: 522 + elpaBuild { 523 + pname = "lua-mode"; 524 + ename = "lua-mode"; 525 + version = "20210802"; 526 + src = fetchurl { 527 + url = "https://elpa.nongnu.org/nongnu/lua-mode-20210802.tar"; 528 + sha256 = "1yarwai9a0w4yywd0ajdkif4g26z98zw91lg1z78qw0k61qjmnh6"; 529 + }; 530 + packageRequires = [ emacs ]; 531 + meta = { 532 + homepage = "https://elpa.gnu.org/packages/lua-mode.html"; 533 + license = lib.licenses.free; 534 + }; 535 + }) {}; 536 + macrostep = callPackage ({ cl-lib ? null, elpaBuild, fetchurl, lib }: 537 + elpaBuild { 538 + pname = "macrostep"; 539 + ename = "macrostep"; 540 + version = "0.9"; 541 + src = fetchurl { 542 + url = "https://elpa.nongnu.org/nongnu/macrostep-0.9.tar"; 543 + sha256 = "10crvq9xww4nvrswqq888y9ah3fl4prj0ha865aqbyrhhbpg18gd"; 544 + }; 545 + packageRequires = [ cl-lib ]; 546 + meta = { 547 + homepage = "https://elpa.gnu.org/packages/macrostep.html"; 548 + license = lib.licenses.free; 549 + }; 550 + }) {}; 551 + magit = callPackage ({ dash 552 + , elpaBuild 553 + , emacs 554 + , fetchurl 555 + , git-commit 556 + , lib 557 + , magit-section 558 + , transient 559 + , with-editor }: 560 + elpaBuild { 561 + pname = "magit"; 562 + ename = "magit"; 563 + version = "3.2.1"; 564 + src = fetchurl { 565 + url = "https://elpa.nongnu.org/nongnu/magit-3.2.1.tar"; 566 + sha256 = "0yyf16605bp5q8jl2vbljxx04ja0ljvs775dnnawlc3mvn13zd9n"; 567 + }; 568 + packageRequires = [ 569 + dash 570 + emacs 571 + git-commit 572 + magit-section 573 + transient 574 + with-editor 575 + ]; 576 + meta = { 577 + homepage = "https://elpa.gnu.org/packages/magit.html"; 578 + license = lib.licenses.free; 579 + }; 580 + }) {}; 581 + magit-section = callPackage ({ dash, elpaBuild, emacs, fetchurl, lib }: 582 + elpaBuild { 583 + pname = "magit-section"; 584 + ename = "magit-section"; 585 + version = "3.2.1"; 586 + src = fetchurl { 587 + url = "https://elpa.nongnu.org/nongnu/magit-section-3.2.1.tar"; 588 + sha256 = "1ppinys8rfa38ac8grcx16hlaw33p03pif4ya6bbw280kq8c73rv"; 589 + }; 590 + packageRequires = [ dash emacs ]; 591 + meta = { 592 + homepage = "https://elpa.gnu.org/packages/magit-section.html"; 15 593 license = lib.licenses.free; 16 594 }; 17 595 }) {}; ··· 30 608 license = lib.licenses.free; 31 609 }; 32 610 }) {}; 611 + multiple-cursors = callPackage ({ elpaBuild, fetchurl, lib }: 612 + elpaBuild { 613 + pname = "multiple-cursors"; 614 + ename = "multiple-cursors"; 615 + version = "1.4.0"; 616 + src = fetchurl { 617 + url = "https://elpa.nongnu.org/nongnu/multiple-cursors-1.4.0.tar"; 618 + sha256 = "0f7rk8vw42bgdf5yb4qpnrc3bxvbaafmdqd7kiiqnj5m029yr14f"; 619 + }; 620 + packageRequires = []; 621 + meta = { 622 + homepage = "https://elpa.gnu.org/packages/multiple-cursors.html"; 623 + license = lib.licenses.free; 624 + }; 625 + }) {}; 626 + nasm-mode = callPackage ({ elpaBuild, emacs, fetchurl, lib }: 627 + elpaBuild { 628 + pname = "nasm-mode"; 629 + ename = "nasm-mode"; 630 + version = "1.1.1"; 631 + src = fetchurl { 632 + url = "https://elpa.nongnu.org/nongnu/nasm-mode-1.1.1.tar"; 633 + sha256 = "1smndl3mbiaaphy173zc405zg4wv0mv041vzy11fr74r5w4p232j"; 634 + }; 635 + packageRequires = [ emacs ]; 636 + meta = { 637 + homepage = "https://elpa.gnu.org/packages/nasm-mode.html"; 638 + license = lib.licenses.free; 639 + }; 640 + }) {}; 641 + nginx-mode = callPackage ({ elpaBuild, fetchurl, lib }: 642 + elpaBuild { 643 + pname = "nginx-mode"; 644 + ename = "nginx-mode"; 645 + version = "1.1.9"; 646 + src = fetchurl { 647 + url = "https://elpa.nongnu.org/nongnu/nginx-mode-1.1.9.tar"; 648 + sha256 = "04jy0zx058hj37ab2n6wwbbwyycsbsb2fj8s4a5f1is2in35nqy0"; 649 + }; 650 + packageRequires = []; 651 + meta = { 652 + homepage = "https://elpa.gnu.org/packages/nginx-mode.html"; 653 + license = lib.licenses.free; 654 + }; 655 + }) {}; 33 656 org-contrib = callPackage ({ elpaBuild, emacs, fetchurl, lib, org }: 34 657 elpaBuild { 35 658 pname = "org-contrib"; ··· 45 668 license = lib.licenses.free; 46 669 }; 47 670 }) {}; 671 + php-mode = callPackage ({ elpaBuild, emacs, fetchurl, lib }: 672 + elpaBuild { 673 + pname = "php-mode"; 674 + ename = "php-mode"; 675 + version = "1.24.0"; 676 + src = fetchurl { 677 + url = "https://elpa.nongnu.org/nongnu/php-mode-1.24.0.tar"; 678 + sha256 = "158850zdmz5irjy6cjai1i8j7qs1vwp95a2dli9f341lbpv2jvzp"; 679 + }; 680 + packageRequires = [ emacs ]; 681 + meta = { 682 + homepage = "https://elpa.gnu.org/packages/php-mode.html"; 683 + license = lib.licenses.free; 684 + }; 685 + }) {}; 686 + projectile = callPackage ({ elpaBuild, emacs, fetchurl, lib }: 687 + elpaBuild { 688 + pname = "projectile"; 689 + ename = "projectile"; 690 + version = "2.5.0"; 691 + src = fetchurl { 692 + url = "https://elpa.nongnu.org/nongnu/projectile-2.5.0.tar"; 693 + sha256 = "09gsm6xbqj3357vlshs1w7ygfm004gpgs0pqrvwl6xmccxpqzmi0"; 694 + }; 695 + packageRequires = [ emacs ]; 696 + meta = { 697 + homepage = "https://elpa.gnu.org/packages/projectile.html"; 698 + license = lib.licenses.free; 699 + }; 700 + }) {}; 701 + prop-menu = callPackage ({ cl-lib ? null, elpaBuild, emacs, fetchurl, lib }: 702 + elpaBuild { 703 + pname = "prop-menu"; 704 + ename = "prop-menu"; 705 + version = "0.1.2"; 706 + src = fetchurl { 707 + url = "https://elpa.nongnu.org/nongnu/prop-menu-0.1.2.tar"; 708 + sha256 = "1csx5aycl478v4hia6lyrdb32hs1haf9n39ngfrbx9ysp7gkj0va"; 709 + }; 710 + packageRequires = [ cl-lib emacs ]; 711 + meta = { 712 + homepage = "https://elpa.gnu.org/packages/prop-menu.html"; 713 + license = lib.licenses.free; 714 + }; 715 + }) {}; 48 716 request = callPackage ({ elpaBuild, emacs, fetchurl, lib }: 49 717 elpaBuild { 50 718 pname = "request"; ··· 60 728 license = lib.licenses.free; 61 729 }; 62 730 }) {}; 731 + rubocop = callPackage ({ elpaBuild, emacs, fetchurl, lib }: 732 + elpaBuild { 733 + pname = "rubocop"; 734 + ename = "rubocop"; 735 + version = "0.6.0"; 736 + src = fetchurl { 737 + url = "https://elpa.nongnu.org/nongnu/rubocop-0.6.0.tar"; 738 + sha256 = "1gw30ya6xyi359k9fihjx75h7ahs067i9bvkyla0rbhmc5xdz6ww"; 739 + }; 740 + packageRequires = [ emacs ]; 741 + meta = { 742 + homepage = "https://elpa.gnu.org/packages/rubocop.html"; 743 + license = lib.licenses.free; 744 + }; 745 + }) {}; 746 + rust-mode = callPackage ({ elpaBuild, emacs, fetchurl, lib }: 747 + elpaBuild { 748 + pname = "rust-mode"; 749 + ename = "rust-mode"; 750 + version = "0.5.0"; 751 + src = fetchurl { 752 + url = "https://elpa.nongnu.org/nongnu/rust-mode-0.5.0.tar"; 753 + sha256 = "03z1nsq1s3awaczirlxixq4gwhz9bf1x5zwd5xfb88ay4kzcmjwc"; 754 + }; 755 + packageRequires = [ emacs ]; 756 + meta = { 757 + homepage = "https://elpa.gnu.org/packages/rust-mode.html"; 758 + license = lib.licenses.free; 759 + }; 760 + }) {}; 761 + sass-mode = callPackage ({ cl-lib ? null 762 + , elpaBuild 763 + , fetchurl 764 + , haml-mode 765 + , lib }: 766 + elpaBuild { 767 + pname = "sass-mode"; 768 + ename = "sass-mode"; 769 + version = "3.0.16"; 770 + src = fetchurl { 771 + url = "https://elpa.nongnu.org/nongnu/sass-mode-3.0.16.tar"; 772 + sha256 = "1nkp7cvsc2dbxkfv346hwsly34nhv1hhc8lgcs470xzdxi908p61"; 773 + }; 774 + packageRequires = [ cl-lib haml-mode ]; 775 + meta = { 776 + homepage = "https://elpa.gnu.org/packages/sass-mode.html"; 777 + license = lib.licenses.free; 778 + }; 779 + }) {}; 780 + scala-mode = callPackage ({ elpaBuild, fetchurl, lib }: 781 + elpaBuild { 782 + pname = "scala-mode"; 783 + ename = "scala-mode"; 784 + version = "0.23"; 785 + src = fetchurl { 786 + url = "https://elpa.nongnu.org/nongnu/scala-mode-0.23.tar"; 787 + sha256 = "0dmyh5x519f5b9h034a1yjgmr1ai8pd22a032x31zgdkwl2xyrfd"; 788 + }; 789 + packageRequires = []; 790 + meta = { 791 + homepage = "https://elpa.gnu.org/packages/scala-mode.html"; 792 + license = lib.licenses.free; 793 + }; 794 + }) {}; 795 + slime = callPackage ({ cl-lib ? null, elpaBuild, fetchurl, lib, macrostep }: 796 + elpaBuild { 797 + pname = "slime"; 798 + ename = "slime"; 799 + version = "2.26.1"; 800 + src = fetchurl { 801 + url = "https://elpa.nongnu.org/nongnu/slime-2.26.1.tar"; 802 + sha256 = "0f7absmq0nnhhq0i8nfgn2862ydvwlqyzhcq4s6m91mn72d7dw5i"; 803 + }; 804 + packageRequires = [ cl-lib macrostep ]; 805 + meta = { 806 + homepage = "https://elpa.gnu.org/packages/slime.html"; 807 + license = lib.licenses.free; 808 + }; 809 + }) {}; 63 810 sly = callPackage ({ elpaBuild, emacs, fetchurl, lib }: 64 811 elpaBuild { 65 812 pname = "sly"; ··· 75 822 license = lib.licenses.free; 76 823 }; 77 824 }) {}; 825 + smartparens = callPackage ({ elpaBuild, fetchurl, lib }: 826 + elpaBuild { 827 + pname = "smartparens"; 828 + ename = "smartparens"; 829 + version = "4.7.1"; 830 + src = fetchurl { 831 + url = "https://elpa.nongnu.org/nongnu/smartparens-4.7.1.tar"; 832 + sha256 = "0si9wb7j760c4vdv7p049bgppppw5crrh50038bsh8sghq2gdld8"; 833 + }; 834 + packageRequires = []; 835 + meta = { 836 + homepage = "https://elpa.gnu.org/packages/smartparens.html"; 837 + license = lib.licenses.free; 838 + }; 839 + }) {}; 840 + swift-mode = callPackage ({ elpaBuild, emacs, fetchurl, lib, seq }: 841 + elpaBuild { 842 + pname = "swift-mode"; 843 + ename = "swift-mode"; 844 + version = "8.3.0"; 845 + src = fetchurl { 846 + url = "https://elpa.nongnu.org/nongnu/swift-mode-8.3.0.tar"; 847 + sha256 = "1bsyv0dl7c2m3f690g7fij7g4937skxjin456vfrgbzb219pdkcs"; 848 + }; 849 + packageRequires = [ emacs seq ]; 850 + meta = { 851 + homepage = "https://elpa.gnu.org/packages/swift-mode.html"; 852 + license = lib.licenses.free; 853 + }; 854 + }) {}; 855 + systemd = callPackage ({ elpaBuild, emacs, fetchurl, lib }: 856 + elpaBuild { 857 + pname = "systemd"; 858 + ename = "systemd"; 859 + version = "1.6"; 860 + src = fetchurl { 861 + url = "https://elpa.nongnu.org/nongnu/systemd-1.6.tar"; 862 + sha256 = "1khfnx2qmg1i4m6axyya0xbzr3c9j136b8pzmqdnd6jamxh43wcg"; 863 + }; 864 + packageRequires = [ emacs ]; 865 + meta = { 866 + homepage = "https://elpa.gnu.org/packages/systemd.html"; 867 + license = lib.licenses.free; 868 + }; 869 + }) {}; 78 870 tuareg = callPackage ({ caml, elpaBuild, emacs, fetchurl, lib }: 79 871 elpaBuild { 80 872 pname = "tuareg"; ··· 87 879 packageRequires = [ caml emacs ]; 88 880 meta = { 89 881 homepage = "https://elpa.gnu.org/packages/tuareg.html"; 882 + license = lib.licenses.free; 883 + }; 884 + }) {}; 885 + web-mode = callPackage ({ elpaBuild, emacs, fetchurl, lib }: 886 + elpaBuild { 887 + pname = "web-mode"; 888 + ename = "web-mode"; 889 + version = "17.0.4"; 890 + src = fetchurl { 891 + url = "https://elpa.nongnu.org/nongnu/web-mode-17.0.4.tar"; 892 + sha256 = "0ji40fcw3y2n4dw0cklbvsybv04wmfqfnqnykgp05aai388rp3j1"; 893 + }; 894 + packageRequires = [ emacs ]; 895 + meta = { 896 + homepage = "https://elpa.gnu.org/packages/web-mode.html"; 897 + license = lib.licenses.free; 898 + }; 899 + }) {}; 900 + wgrep = callPackage ({ elpaBuild, fetchurl, lib }: 901 + elpaBuild { 902 + pname = "wgrep"; 903 + ename = "wgrep"; 904 + version = "2.3.3"; 905 + src = fetchurl { 906 + url = "https://elpa.nongnu.org/nongnu/wgrep-2.3.3.tar"; 907 + sha256 = "12w9vsawqnd0rvsahx8vdiabds8rl1zkpmspmcqn28jprbql734r"; 908 + }; 909 + packageRequires = []; 910 + meta = { 911 + homepage = "https://elpa.gnu.org/packages/wgrep.html"; 912 + license = lib.licenses.free; 913 + }; 914 + }) {}; 915 + with-editor = callPackage ({ elpaBuild, emacs, fetchurl, lib }: 916 + elpaBuild { 917 + pname = "with-editor"; 918 + ename = "with-editor"; 919 + version = "3.0.4"; 920 + src = fetchurl { 921 + url = "https://elpa.nongnu.org/nongnu/with-editor-3.0.4.tar"; 922 + sha256 = "032i954rzn8sg1qp6vjhz6j8j1fl6mpvhfnmd3va8k9q9m27k4an"; 923 + }; 924 + packageRequires = [ emacs ]; 925 + meta = { 926 + homepage = "https://elpa.gnu.org/packages/with-editor.html"; 927 + license = lib.licenses.free; 928 + }; 929 + }) {}; 930 + yaml-mode = callPackage ({ elpaBuild, emacs, fetchurl, lib }: 931 + elpaBuild { 932 + pname = "yaml-mode"; 933 + ename = "yaml-mode"; 934 + version = "0.0.15"; 935 + src = fetchurl { 936 + url = "https://elpa.nongnu.org/nongnu/yaml-mode-0.0.15.tar"; 937 + sha256 = "19r2kc894dd59f0r3q4gx52iw5cwj5gi1jjkmi8r9y0dya50rzfx"; 938 + }; 939 + packageRequires = [ emacs ]; 940 + meta = { 941 + homepage = "https://elpa.gnu.org/packages/yaml-mode.html"; 942 + license = lib.licenses.free; 943 + }; 944 + }) {}; 945 + yasnippet-snippets = callPackage ({ elpaBuild, fetchurl, lib, yasnippet }: 946 + elpaBuild { 947 + pname = "yasnippet-snippets"; 948 + ename = "yasnippet-snippets"; 949 + version = "0.2"; 950 + src = fetchurl { 951 + url = "https://elpa.nongnu.org/nongnu/yasnippet-snippets-0.2.tar"; 952 + sha256 = "1xhlx2n2sdpcc82cba9r7nbd0gwi7m821p7vk0vnw84dhwy863ic"; 953 + }; 954 + packageRequires = [ yasnippet ]; 955 + meta = { 956 + homepage = "https://elpa.gnu.org/packages/yasnippet-snippets.html"; 957 + license = lib.licenses.free; 958 + }; 959 + }) {}; 960 + zig-mode = callPackage ({ elpaBuild, emacs, fetchurl, lib }: 961 + elpaBuild { 962 + pname = "zig-mode"; 963 + ename = "zig-mode"; 964 + version = "0.0.8"; 965 + src = fetchurl { 966 + url = "https://elpa.nongnu.org/nongnu/zig-mode-0.0.8.tar"; 967 + sha256 = "1v9qpc86n9zg765cy93365hj942z0gndkz6grjl2pk31087n3axy"; 968 + }; 969 + packageRequires = [ emacs ]; 970 + meta = { 971 + homepage = "https://elpa.gnu.org/packages/zig-mode.html"; 90 972 license = lib.licenses.free; 91 973 }; 92 974 }) {};
+3 -2
pkgs/applications/editors/emacs/elisp-packages/nongnu-packages.nix
··· 5 5 To update the list of packages from nongnu (ELPA), 6 6 7 7 1. Run `./update-nongnu`. 8 - 2. Check for evaluation errors: `nix-instantiate ../../../../.. -A emacs.pkgs.nongnuPackages`. 9 - 3. Run `git commit -m "org-packages $(date -Idate)" -- nongnu-generated.nix` 8 + 2. Check for evaluation errors: 9 + env NIXPKGS_ALLOW_BROKEN=1 nix-instantiate ../../../../.. -A emacs.pkgs.nongnuPackages 10 + 3. Run `git commit -m "nongnu-packages $(date -Idate)" -- nongnu-generated.nix` 10 11 11 12 */ 12 13
+6 -6
pkgs/applications/editors/emacs/elisp-packages/org-generated.nix
··· 4 4 elpaBuild { 5 5 pname = "org"; 6 6 ename = "org"; 7 - version = "20210823"; 7 + version = "20210906"; 8 8 src = fetchurl { 9 - url = "https://orgmode.org/elpa/org-20210823.tar"; 10 - sha256 = "0yd2ydkkfy9lmlnb0lpsm8ywbk88sq9n4i7dasfzslv7czgccyh7"; 9 + url = "https://orgmode.org/elpa/org-20210906.tar"; 10 + sha256 = "04aqniwix4w0iap38dsdskndknhw9k6apkmkrc79yfs3c4jcsszq"; 11 11 }; 12 12 packageRequires = []; 13 13 meta = { ··· 19 19 elpaBuild { 20 20 pname = "org-plus-contrib"; 21 21 ename = "org-plus-contrib"; 22 - version = "20210823"; 22 + version = "20210906"; 23 23 src = fetchurl { 24 - url = "https://orgmode.org/elpa/org-plus-contrib-20210823.tar"; 25 - sha256 = "17lyhsi22wg3l3j4k67glvq9p12r3nlc7fs6ka5jr2xrvfypb5aj"; 24 + url = "https://orgmode.org/elpa/org-plus-contrib-20210906.tar"; 25 + sha256 = "1v0yy92x8shwp36qfyzmvk8ayz9amkdis967gqacq5jxcyq7mhbn"; 26 26 }; 27 27 packageRequires = []; 28 28 meta = {
+2 -1
pkgs/applications/editors/emacs/elisp-packages/org-packages.nix
··· 5 5 To update the list of packages from Org (ELPA), 6 6 7 7 1. Run `./update-org`. 8 - 2. Check for evaluation errors: `nix-instantiate ../../../../.. -A emacs.pkgs.orgPackages`. 8 + 2. Check for evaluation errors: 9 + env NIXPKGS_ALLOW_BROKEN=1 nix-instantiate ../../../../.. -A emacs.pkgs.orgPackages 9 10 3. Run `git commit -m "org-packages $(date -Idate)" -- org-generated.nix` 10 11 11 12 */
+1339 -1192
pkgs/applications/editors/emacs/elisp-packages/recipes-archive-melpa.json
··· 213 213 "repo": "ymarco/auto-activating-snippets", 214 214 "unstable": { 215 215 "version": [ 216 - 20210605, 217 - 1143 216 + 20210903, 217 + 1912 218 218 ], 219 - "commit": "118ed7fc948b6d91eea727df35a1639521bf5fdb", 220 - "sha256": "0qnsyvvb0knarvd4lvnzazf8y756iwx435zswym5lwsw5v847l8d" 219 + "commit": "1699bec4d244a1f62af29fe4eb8b79b6d2fccf7d", 220 + "sha256": "1mr0qpw7cfy1hwd2fxki01570cw8n0ix1ix27s3yzc2r8cqv6cri" 221 221 }, 222 222 "stable": { 223 223 "version": [ ··· 1051 1051 "version": [ 1052 1052 2, 1053 1053 4, 1054 - 1 1054 + 2 1055 1055 ], 1056 1056 "deps": [ 1057 1057 "ac-php-core", 1058 1058 "auto-complete", 1059 1059 "yasnippet" 1060 1060 ], 1061 - "commit": "9770c95bf2df93d9cb0f200723b03b3d9a480640", 1062 - "sha256": "188z1i209z61nwfcgffgp90rdcsnl75izxpqv4x1vbaay5fvg33f" 1061 + "commit": "e29075f810af73f6bf7803eebf15d96bffee7154", 1062 + "sha256": "08vfdp7q6x5fk2nn5dl884cyysxrl2gw8f16g7wqvf7v24jmx71d" 1063 1063 } 1064 1064 }, 1065 1065 { ··· 1088 1088 "version": [ 1089 1089 2, 1090 1090 4, 1091 - 1 1091 + 2 1092 1092 ], 1093 1093 "deps": [ 1094 1094 "dash", ··· 1098 1098 "s", 1099 1099 "xcscope" 1100 1100 ], 1101 - "commit": "9770c95bf2df93d9cb0f200723b03b3d9a480640", 1102 - "sha256": "188z1i209z61nwfcgffgp90rdcsnl75izxpqv4x1vbaay5fvg33f" 1101 + "commit": "e29075f810af73f6bf7803eebf15d96bffee7154", 1102 + "sha256": "08vfdp7q6x5fk2nn5dl884cyysxrl2gw8f16g7wqvf7v24jmx71d" 1103 1103 } 1104 1104 }, 1105 1105 { ··· 1296 1296 "repo": "tam17aki/ace-isearch", 1297 1297 "unstable": { 1298 1298 "version": [ 1299 - 20200912, 1300 - 754 1299 + 20210830, 1300 + 746 1301 1301 ], 1302 - "commit": "422aaa50b6452c2399682782cbf23168ed4357c6", 1303 - "sha256": "1gx106znzb6wq72yixq3z8arj1hhh215yy3324shvjwgqkyc3xi8" 1302 + "commit": "8439136206a42e41ef95af923e0dc3bbd4fa306c", 1303 + "sha256": "00mqd02l3fx5jicjwm27xwmr98l3f8v08q4jfxdzh1cjqpi8c5pp" 1304 1304 }, 1305 1305 "stable": { 1306 1306 "version": [ ··· 1489 1489 "repo": "cute-jumper/ace-pinyin", 1490 1490 "unstable": { 1491 1491 "version": [ 1492 - 20210806, 1493 - 316 1492 + 20210827, 1493 + 355 1494 1494 ], 1495 1495 "deps": [ 1496 1496 "avy", 1497 1497 "pinyinlib" 1498 1498 ], 1499 - "commit": "4dc565807a9b74ba637122f746d1614c60f92af8", 1500 - "sha256": "1q1s2xwa4wb0h3r255j9wy37yzim6fa1kl42gnxlg5zwgcb2la9w" 1499 + "commit": "47662c0b05775ba353464b44c0f1a037c85e746e", 1500 + "sha256": "0qidfljvjqwyi5xvgr6hli45k1d4w8g5zn2mssyv9xzrslcigdzv" 1501 1501 }, 1502 1502 "stable": { 1503 1503 "version": [ ··· 1955 1955 "repo": "agda/agda", 1956 1956 "unstable": { 1957 1957 "version": [ 1958 - 20210809, 1959 - 721 1958 + 20210903, 1959 + 1114 1960 1960 ], 1961 1961 "deps": [ 1962 1962 "annotation", 1963 1963 "eri" 1964 1964 ], 1965 - "commit": "2bab72d99ae3330cbf3a94450a647158838a1d1b", 1966 - "sha256": "1xb1rawj2hl12xmpn9xk2zw69wpvx2ssd3wj4k32dhgi2vcg2rck" 1965 + "commit": "731f300deac14e10792a0bbf22c86cbe0c9c7e4b", 1966 + "sha256": "1fgqk0xvfxaqj737b62ngnqivd8fhp5pakwbh2zvvdl76frkbsmv" 1967 1967 }, 1968 1968 "stable": { 1969 1969 "version": [ ··· 2344 2344 "deps": [ 2345 2345 "flycheck" 2346 2346 ], 2347 - "commit": "95a31c4232e71047a64956976622969df9226381", 2348 - "sha256": "09rhs337cnb24blf9qcxc3hgg8s9h4rsyiwpnkqd2by4kkhdyign" 2347 + "commit": "59aac2167ca623358ddbb800abe5912194137f74", 2348 + "sha256": "17vn4hxkvd1nkn7gjjg867rjd5r0qsb7qlf2fh75pikk806x5sa8" 2349 2349 }, 2350 2350 "stable": { 2351 2351 "version": [ ··· 2452 2452 "repo": "domtronn/all-the-icons.el", 2453 2453 "unstable": { 2454 2454 "version": [ 2455 - 20210817, 2456 - 2252 2455 + 20210831, 2456 + 1317 2457 2457 ], 2458 - "commit": "b43d2b32f6de83c0dc7792a957f64e8444e59beb", 2459 - "sha256": "066kldj7wz6s1qdvkxifv2zx0wimxncgh11r0pchfrji4b0h6pyh" 2458 + "commit": "c0d288a41faea2ecb7e8dd947486764a2ee17ec9", 2459 + "sha256": "1r1905irz9rh05qzmzk1cbdnk4667ax8wm71r1prv8dnx8nq05kp" 2460 2460 }, 2461 2461 "stable": { 2462 2462 "version": [ ··· 3246 3246 20200914, 3247 3247 644 3248 3248 ], 3249 - "commit": "2bab72d99ae3330cbf3a94450a647158838a1d1b", 3250 - "sha256": "1xb1rawj2hl12xmpn9xk2zw69wpvx2ssd3wj4k32dhgi2vcg2rck" 3249 + "commit": "731f300deac14e10792a0bbf22c86cbe0c9c7e4b", 3250 + "sha256": "1fgqk0xvfxaqj737b62ngnqivd8fhp5pakwbh2zvvdl76frkbsmv" 3251 3251 }, 3252 3252 "stable": { 3253 3253 "version": [ ··· 3567 3567 "repo": "dieter-wilhelm/apdl-mode", 3568 3568 "unstable": { 3569 3569 "version": [ 3570 - 20210819, 3571 - 2136 3570 + 20210828, 3571 + 1913 3572 3572 ], 3573 - "commit": "9e80feb61a173d776495f8a36545b966acac21f2", 3574 - "sha256": "00wihhzn779rqmhb41n1f2wd69cfcqq5z86l5hmcyx7lhn0nykyj" 3573 + "commit": "f1d4bef95c3be736c15f0d9b41037ba02933acf1", 3574 + "sha256": "1a6s7zcz176845fp38n1ilpqkgzzpq3miwg7cpymrcdnp3kxvc0n" 3575 3575 }, 3576 3576 "stable": { 3577 3577 "version": [ ··· 4133 4133 20210823, 4134 4134 528 4135 4135 ], 4136 - "commit": "d834cd90fe6f1d87dab86b637d23958241cadac3", 4137 - "sha256": "00n9w9qh84fp60swcpccimch4lq0rcwqm7aqjym5hqmkc1ncz2bp" 4136 + "commit": "5d365ffc6a2c2041657eaa5d762c395ea748c8d7", 4137 + "sha256": "0fn2dyj43ag7abh7x2m4qcn7ij1kp65d3vqlkcri780fv4wp7mc4" 4138 4138 }, 4139 4139 "stable": { 4140 4140 "version": [ ··· 5561 5561 "avy", 5562 5562 "embark" 5563 5563 ], 5564 - "commit": "ca517fdabd182b0b905d0ef0cb380facb6697670", 5565 - "sha256": "1pb6rarb86x9bl064jqick3d7znl0a7ibx27yx30nivi5plrkb3j" 5564 + "commit": "d21277a638827623ab84e9e6341312a2da5062ab", 5565 + "sha256": "12kl6a4y46vldxc25s7npm0748j4hj8g0vvnhfnxy8iq8q2m2i3j" 5566 5566 }, 5567 5567 "stable": { 5568 5568 "version": [ ··· 6712 6712 } 6713 6713 }, 6714 6714 { 6715 - "ename": "bento", 6716 - "commit": "aad104fd26adb419c5da1e3472807244794e8949", 6717 - "sha256": "0a7yaikvaxxk8wmr7f9darpwb4r17rkzxcxaagfypn8n5kswddj4", 6718 - "fetcher": "github", 6719 - "repo": "returntocorp/bento-emacs", 6720 - "unstable": { 6721 - "version": [ 6722 - 20191024, 6723 - 2123 6724 - ], 6725 - "deps": [ 6726 - "f", 6727 - "flycheck" 6728 - ], 6729 - "commit": "31546a03475fc2b3ffd3159fe1beda55f7762224", 6730 - "sha256": "0ny0bably9h4ak2fr01z4a80mp9kjalzhw232a92n8dvmz4b7mq7" 6731 - }, 6732 - "stable": { 6733 - "version": [ 6734 - 0, 6735 - 1, 6736 - 0 6737 - ], 6738 - "deps": [ 6739 - "f", 6740 - "flycheck" 6741 - ], 6742 - "commit": "116839c7d50342e62a2832715ba850d8bf04362e", 6743 - "sha256": "0gxqy2l1a4pddh4pdci2nyflmv76rhl8wx3zmh5j0aqk5ahh1ln5" 6744 - } 6745 - }, 6746 - { 6747 6715 "ename": "berrys-theme", 6748 6716 "commit": "d7043d5fcdf995a6278c8a92aa451ce4b58694b3", 6749 6717 "sha256": "1fn2n7li6fs9zibjzp07y6wdn3a64nsib8d23l7sl7jyzib6vbqa", ··· 7067 7035 "repo": "bdarcus/bibtex-actions", 7068 7036 "unstable": { 7069 7037 "version": [ 7070 - 20210825, 7071 - 1743 7038 + 20210903, 7039 + 1125 7072 7040 ], 7073 7041 "deps": [ 7074 7042 "bibtex-completion", 7075 7043 "parsebib" 7076 7044 ], 7077 - "commit": "f4d9af720d3854ce0e746312061372ae30e2cc97", 7078 - "sha256": "0lynllvkyy9svi9c5gsqs5vyp0fgyq43a83drf67x0x14lfhdr1a" 7045 + "commit": "3af0fd5f4255e8c6ffd104cdfa6ab56f522fecc6", 7046 + "sha256": "0x7q3rp92w2698pllnjbn1x7bai8jmnrk72f02i4wjkdm1jwb2jk" 7079 7047 }, 7080 7048 "stable": { 7081 7049 "version": [ ··· 7961 7929 "repo": "jyp/boon", 7962 7930 "unstable": { 7963 7931 "version": [ 7964 - 20210518, 7965 - 1244 7932 + 20210831, 7933 + 1634 7966 7934 ], 7967 7935 "deps": [ 7968 7936 "dash", 7969 7937 "expand-region", 7970 - "multiple-cursors", 7971 - "pcre2el" 7938 + "multiple-cursors" 7972 7939 ], 7973 - "commit": "db1cbdcdfb3ea246d0d0090534d998f7c9c19f4f", 7974 - "sha256": "1saij86j2br814lp7yl4qpy2kaywdxlv08wxph464npx1rykykk3" 7940 + "commit": "05ccaad63d01688b86b7e44955815f97fc011ec1", 7941 + "sha256": "03fy4kwy6vka4w2hmfb6h68hxcm4gslknpdlxq4s8szww7a19cc8" 7975 7942 }, 7976 7943 "stable": { 7977 7944 "version": [ 7978 7945 1, 7979 - 1 7946 + 2 7980 7947 ], 7981 7948 "deps": [ 7982 7949 "dash", 7983 7950 "expand-region", 7984 7951 "multiple-cursors" 7985 7952 ], 7986 - "commit": "270ae67b3136ac355d2aed5b4690ae28edaf7c29", 7987 - "sha256": "1ss9bjs34q41pa0g0nbdzd8fwpjcbd2239rdlx5aykfv9v0b8j77" 7953 + "commit": "d31550b3336d706b57df0e43bedf3e95a615ce0d", 7954 + "sha256": "18il2licf8pgfcrpx2bk55gpf8f537kb9cxqz83jldkhiyry74il" 7988 7955 } 7989 7956 }, 7990 7957 { ··· 8002 7969 "epkg", 8003 7970 "magit" 8004 7971 ], 8005 - "commit": "018d5334b4c9af297799f0644e09946a13d55edd", 8006 - "sha256": "03h5cgsk3wxpw6g946ia0dbzazlbpip93zhirjh7vxcqp4wwyvcf" 7972 + "commit": "0ff7d7e469d75c26caed8d50ca80299cc4a77b88", 7973 + "sha256": "0jsk7dqminrx5l4npxv6ssyll07287ffzbpsim8d76phv279hdc9" 8007 7974 }, 8008 7975 "stable": { 8009 7976 "version": [ ··· 8602 8569 "repo": "countvajhula/buffer-ring", 8603 8570 "unstable": { 8604 8571 "version": [ 8605 - 20210707, 8606 - 1745 8572 + 20210904, 8573 + 211 8607 8574 ], 8608 8575 "deps": [ 8609 8576 "dynaring", 8610 8577 "ht", 8611 8578 "s" 8612 8579 ], 8613 - "commit": "25c44a39742b21122e1e2adf1f6c5828148cd3ee", 8614 - "sha256": "130304bmlz46z6g56bsr745zfb8mxw5kzkslb8vdz7hvcp75wfc4" 8580 + "commit": "7bc51345993ee83dc721a1e00cd0b998782b16da", 8581 + "sha256": "1ybdpz8cqfklia0m23c4l0dk6ng8jadxdji7z4ms8nkb35y2ykbn" 8615 8582 }, 8616 8583 "stable": { 8617 8584 "version": [ ··· 9790 9757 20210707, 9791 9758 2310 9792 9759 ], 9793 - "commit": "86ae7e69e2d07d5dfe9eac66c2b359d098c682a3", 9794 - "sha256": "0kvadcjrrj60p3ijbz6f51f2ziapig06zzmkycaahailhf9v1s0b" 9760 + "commit": "7cce94fc97d042134e5c7f96a3b9a509340fae1f", 9761 + "sha256": "0rq26qic7w8gninvg7jdkxpn8jv0ih215bijai2vsd66ca1ic6w1" 9795 9762 }, 9796 9763 "stable": { 9797 9764 "version": [ ··· 9950 9917 "repo": "cask/cask", 9951 9918 "unstable": { 9952 9919 "version": [ 9953 - 20210801, 9954 - 1509 9920 + 20210903, 9921 + 1216 9955 9922 ], 9956 9923 "deps": [ 9957 9924 "ansi", ··· 9962 9929 "s", 9963 9930 "shut-up" 9964 9931 ], 9965 - "commit": "09c3851c118d2e850314e7f3b9efa786932a145b", 9966 - "sha256": "1fdnphlg9ip9cwvl1cxjhvlvgd9hxd5c466r79hrzq81vzn076cg" 9932 + "commit": "7b637efa35148dca5e6de10d0beba72168762f1c", 9933 + "sha256": "0sv08984k5lpcb56hs09pjwi54nzq232a6gwzikqxs2mylqdaic5" 9967 9934 }, 9968 9935 "stable": { 9969 9936 "version": [ ··· 10351 10318 "cl-lib", 10352 10319 "powerline" 10353 10320 ], 10354 - "commit": "9c7c936e4e1de6f4f4095d70e43c9ae738d05086", 10355 - "sha256": "0h0v3yiz9qis99l83x588b94va13jzanfwacmgvq29ygp0a87n65" 10321 + "commit": "8b4249c40581368faf7bb8e06f86b9eee199c3c6", 10322 + "sha256": "185q3iplgycmq6zyyjn3aqq1gylvbb7r8zd1q9km2xl1fzg94jxi" 10356 10323 }, 10357 10324 "stable": { 10358 10325 "version": [ ··· 10479 10446 20171115, 10480 10447 2108 10481 10448 ], 10482 - "commit": "90bf324af47e6c607a4d7312a1c69701c2b180fb", 10483 - "sha256": "0s3sdvv3r93bz62sk7bk6bdrj5gx6qb9mqd7fd1gkcrryhwb05np" 10449 + "commit": "8c6b2b326ce7b454b31450d093776b9d0bfbcb19", 10450 + "sha256": "1pc5szlb06y27ivwgk76im72x0gq8gcn1p14gw0r3qx9krnj1vla" 10484 10451 }, 10485 10452 "stable": { 10486 10453 "version": [ ··· 11126 11093 "url": "https://tildegit.org/contrapunctus/chronometrist.git", 11127 11094 "unstable": { 11128 11095 "version": [ 11129 - 20210707, 11130 - 2147 11096 + 20210905, 11097 + 1942 11131 11098 ], 11132 11099 "deps": [ 11133 11100 "dash", 11134 11101 "seq", 11135 11102 "ts" 11136 11103 ], 11137 - "commit": "524ba9592fc7095209e380392915b376f75bec00", 11138 - "sha256": "07fclq7dllz4nsrx51j4vrds1ciylxhkp9g945vc7xk6bi8syl4d" 11104 + "commit": "d673f00e5a43f8ac276b89c85622dcdf4cbd8148", 11105 + "sha256": "0cppwh15wb4kkhmqpi5cndvvyqlb6jjfj634cxlhkkvwbr0rmnjv" 11139 11106 }, 11140 11107 "stable": { 11141 11108 "version": [ ··· 11192 11159 "url": "https://tildegit.org/contrapunctus/chronometrist.git", 11193 11160 "unstable": { 11194 11161 "version": [ 11195 - 20210617, 11196 - 1707 11162 + 20210904, 11163 + 1359 11197 11164 ], 11198 11165 "deps": [ 11199 11166 "chronometrist" 11200 11167 ], 11201 - "commit": "524ba9592fc7095209e380392915b376f75bec00", 11202 - "sha256": "07fclq7dllz4nsrx51j4vrds1ciylxhkp9g945vc7xk6bi8syl4d" 11168 + "commit": "d673f00e5a43f8ac276b89c85622dcdf4cbd8148", 11169 + "sha256": "0cppwh15wb4kkhmqpi5cndvvyqlb6jjfj634cxlhkkvwbr0rmnjv" 11203 11170 }, 11204 11171 "stable": { 11205 11172 "version": [ ··· 11270 11237 "repo": "clojure-emacs/cider", 11271 11238 "unstable": { 11272 11239 "version": [ 11273 - 20210825, 11274 - 1937 11240 + 20210902, 11241 + 1412 11275 11242 ], 11276 11243 "deps": [ 11277 11244 "clojure-mode", ··· 11282 11249 "sesman", 11283 11250 "spinner" 11284 11251 ], 11285 - "commit": "fd5232d03f62c2304daebbdbdf99f6ad860fa702", 11286 - "sha256": "1aj289145kza226xlg2zqi8m9wfrpr05xx6b6dvv1g9508jhxvw6" 11252 + "commit": "76dea32c7757949a708d27d1f8707782edad5650", 11253 + "sha256": "080kcbqiiikna4r6c9a1q0hnrlkpmzz4xixgrp54ld7nzp59ls48" 11287 11254 }, 11288 11255 "stable": { 11289 11256 "version": [ ··· 11552 11519 "repo": "andras-simonyi/citeproc-el", 11553 11520 "unstable": { 11554 11521 "version": [ 11555 - 20210822, 11556 - 1949 11522 + 20210904, 11523 + 1235 11557 11524 ], 11558 11525 "deps": [ 11559 11526 "dash", ··· 11564 11531 "s", 11565 11532 "string-inflection" 11566 11533 ], 11567 - "commit": "299e52b2dda37960d609efa78c40e255001d163a", 11568 - "sha256": "0dqnyff2vfncw3ais2ml7k7lsdsrwjvw3kpynw9mb5si88sxh24b" 11534 + "commit": "7908e48a82dc615cc643d03e63107dcbf499caf8", 11535 + "sha256": "05900z5j1px6rnm1xby5krhz1j6rb4fqfhdzra31zs3zj063bq8j" 11569 11536 }, 11570 11537 "stable": { 11571 11538 "version": [ ··· 11631 11598 "repo": "universal-ctags/citre", 11632 11599 "unstable": { 11633 11600 "version": [ 11634 - 20210823, 11635 - 1603 11601 + 20210902, 11602 + 751 11636 11603 ], 11637 - "commit": "9a0dcc5dad0b0796c8febba1470db49b3e845f2b", 11638 - "sha256": "13zl0bxnxqm6cq71lj02d906mpmmd1xpwji3d23fvy80nkxzrm86" 11604 + "commit": "09b618f73c47abebcd26c8fc8484a5816c36ab6f", 11605 + "sha256": "1ib748is5983fzgjpbdnki9x3s232gdw58af93jhw34kmakrlgac" 11639 11606 }, 11640 11607 "stable": { 11641 11608 "version": [ ··· 11649 11616 }, 11650 11617 { 11651 11618 "ename": "cl-format", 11652 - "commit": "855ea20024b606314f8590129259747cac0bcc97", 11653 - "sha256": "09jwy0fgaz2f04dvcdns6w859s6izvrkp8ib4lws3x8kx8z918fy", 11654 - "fetcher": "github", 11655 - "repo": "alvinfrancis/cl-format", 11619 + "commit": "f62ceac846a4fb4ff380a799fb3aa7e52a097025", 11620 + "sha256": "14xpzp8jiaqdqybkijcm78gq298n32qf4lglq0i23sqfj68yw87j", 11621 + "fetcher": "gitlab", 11622 + "repo": "akater/elisp-cl-format", 11656 11623 "unstable": { 11657 11624 "version": [ 11658 - 20210824, 11659 - 2016 11625 + 20210831, 11626 + 530 11660 11627 ], 11661 - "commit": "a391d7696bea972ad9a968426e712feddc284ef4", 11662 - "sha256": "191jkjka1pv2ssggk138gni38ckbndjlk344px3r1p0mnv3gmfaq" 11628 + "commit": "ad1a4fb6bc91e65ea90bcf6792cc5a1be5380f9d", 11629 + "sha256": "10z53j111wvgy0fbnxm3mpc9an75dblvy5zkq9733vjliycbbgv4" 11663 11630 }, 11664 11631 "stable": { 11665 11632 "version": [ 11666 11633 1, 11667 - 1 11634 + 2 11668 11635 ], 11669 - "commit": "4380cb8009c47cc6d9098b383082b93b1aefa460", 11670 - "sha256": "108s96viral3s62a77jfgvjam08hdk97frfmxjg3xpp2ifccjs7h" 11636 + "commit": "ad1a4fb6bc91e65ea90bcf6792cc5a1be5380f9d", 11637 + "sha256": "10z53j111wvgy0fbnxm3mpc9an75dblvy5zkq9733vjliycbbgv4" 11671 11638 } 11672 11639 }, 11673 11640 { ··· 12580 12547 20210104, 12581 12548 1831 12582 12549 ], 12583 - "commit": "e0a34750f8b7a014d021fbde0e860de5a5073473", 12584 - "sha256": "16nmp6arjdgd9s1jj2cnj5dak0sf5ass2w894d6xdqhk9mz8g1gi" 12550 + "commit": "86ee38d75678d68bb1a79b9fa443b42723b09f23", 12551 + "sha256": "1lqkaar17d4jvabhfwir6s47a618a3bhh18m3xvv08ryjw0nc3d2" 12585 12552 }, 12586 12553 "stable": { 12587 12554 "version": [ ··· 12742 12709 "repo": "astoff/code-cells.el", 12743 12710 "unstable": { 12744 12711 "version": [ 12745 - 20210612, 12746 - 755 12712 + 20210902, 12713 + 740 12747 12714 ], 12748 - "commit": "1bd650391a6fe84eb267f2534a0750ea1b5549f4", 12749 - "sha256": "0r0gp0i0mkfw035qrhpbjw3vdlyiffc5b9zmsmq93wcqvn459154" 12715 + "commit": "4e973e01220ad7a3e2d0d50a9c5192a9385e0ede", 12716 + "sha256": "0vqradjcflvajd5i069vlkynd6kyyfvmip39xr5bhrb4my07z1wb" 12750 12717 } 12751 12718 }, 12752 12719 { ··· 12919 12886 ], 12920 12887 "commit": "9efab90fe4e6f29464af14e0d8fd1e20c0147b80", 12921 12888 "sha256": "0xnrh6v4s2s3fgvw0v9fl48dlk4r2p6axp7xf41gzb1ai81yczhv" 12922 - } 12923 - }, 12924 - { 12925 - "ename": "colemak-evil", 12926 - "commit": "0f0750a3f9537782ee61d6e56c51ce7b86def12e", 12927 - "sha256": "1bfzs5px1k6g3cnwjdaq2m78bbnfy3lxhjzkcch7zdv3nyacwl5z", 12928 - "fetcher": "github", 12929 - "repo": "patbl/colemak-evil", 12930 - "unstable": { 12931 - "version": [ 12932 - 20200326, 12933 - 2359 12934 - ], 12935 - "deps": [ 12936 - "evil" 12937 - ], 12938 - "commit": "981bdcb1a48c6d9139493abe7e25fabe126e43c3", 12939 - "sha256": "0dqyqaqr71z4mipb4g5jxdw96lzb108fd5w4wi27023hfll3j1hc" 12940 12889 } 12941 12890 }, 12942 12891 { ··· 13501 13450 "repo": "ddoherty03/commify", 13502 13451 "unstable": { 13503 13452 "version": [ 13504 - 20200921, 13505 - 2002 13453 + 20210904, 13454 + 1106 13506 13455 ], 13507 13456 "deps": [ 13508 13457 "s" 13509 13458 ], 13510 - "commit": "b1c1a06e488208ef653e0d86c97b746fd6d2bbc2", 13511 - "sha256": "1q843ay7zkci2xdavia6wkj06acn83a198ykpxl0xbl5wihdd6w2" 13459 + "commit": "d6656bd3a909917a51ba033a11d4ab5f5fe55f83", 13460 + "sha256": "1zbk2nc1qnryapsj68hlqmkn0ab7llzpmnls6y3s2656lxcn2b0k" 13512 13461 } 13513 13462 }, 13514 13463 { ··· 13549 13498 "repo": "company-mode/company-mode", 13550 13499 "unstable": { 13551 13500 "version": [ 13552 - 20210825, 13553 - 1508 13501 + 20210826, 13502 + 2148 13554 13503 ], 13555 - "commit": "c7234a9df0b1a624ae0633d3a7d08f92109ff85a", 13556 - "sha256": "0i5xvi21gmqk2abpll761cz6g0g2i7s2gy63hvi2y3ac611fww2z" 13504 + "commit": "faf897296faed0b3342e1c325fc05727029ce7fe", 13505 + "sha256": "11qxc7gq97z9k1j63zrf4fh485qnapcz4qzjzyffwk8svl48gh0g" 13557 13506 }, 13558 13507 "stable": { 13559 13508 "version": [ ··· 14659 14608 "version": [ 14660 14609 2, 14661 14610 4, 14662 - 1 14611 + 2 14663 14612 ], 14664 14613 "deps": [ 14665 14614 "ac-php-core", 14666 14615 "cl-lib", 14667 14616 "company" 14668 14617 ], 14669 - "commit": "9770c95bf2df93d9cb0f200723b03b3d9a480640", 14670 - "sha256": "188z1i209z61nwfcgffgp90rdcsnl75izxpqv4x1vbaay5fvg33f" 14618 + "commit": "e29075f810af73f6bf7803eebf15d96bffee7154", 14619 + "sha256": "08vfdp7q6x5fk2nn5dl884cyysxrl2gw8f16g7wqvf7v24jmx71d" 14671 14620 } 14672 14621 }, 14673 14622 { ··· 15779 15728 "repo": "minad/consult", 15780 15729 "unstable": { 15781 15730 "version": [ 15782 - 20210818, 15783 - 1128 15731 + 20210905, 15732 + 1657 15784 15733 ], 15785 - "commit": "105a1ac50169382368a36ed53d7af908d02ffa07", 15786 - "sha256": "01kx3zg858bqyajglamxn319qabycnabzj73kl4x7sd55p2yi179" 15734 + "commit": "c89fd0a1299f8bd6a123427c6ce48239702dfe84", 15735 + "sha256": "0425syvnw592kwmci87lwqvgxf9bvl8v6cmzdf4g3kkhva2y0sym" 15787 15736 }, 15788 15737 "stable": { 15789 15738 "version": [ ··· 15821 15770 "repo": "mohkale/consult-eglot", 15822 15771 "unstable": { 15823 15772 "version": [ 15824 - 20210822, 15825 - 1829 15773 + 20210905, 15774 + 1830 15826 15775 ], 15827 15776 "deps": [ 15828 15777 "consult", 15829 15778 "eglot" 15830 15779 ], 15831 - "commit": "a6aeb6fa078cc7ea6537793868f606b55ac63088", 15832 - "sha256": "11cwz2259i6fj4xckcvx8q8h3sgwxddjkddgiv7406d88m6ma72m" 15780 + "commit": "28a09cc839a9010df1a00a55528697ab34e1b259", 15781 + "sha256": "0vfr9cj2xzkpias7p25bl1yjbykg1lpphmn4a3p3sdmyh32zjy2s" 15833 15782 }, 15834 15783 "stable": { 15835 15784 "version": [ ··· 16329 16278 "ivy", 16330 16279 "swiper" 16331 16280 ], 16332 - "commit": "7cdde66c95d5205287e88010bc7a3a978c931db0", 16333 - "sha256": "0pvgh4krym43vcyiq4bsjl63gg795jlqh6kaa6llsv1awvywfqww" 16281 + "commit": "6a8e5611f32cf7cc77c2c6974dc2d3a18f32d5a5", 16282 + "sha256": "0mwrvcnpl7cr8ynhx8ilmlbjqmggxccwa6w8k15j5i640chl19xh" 16334 16283 }, 16335 16284 "stable": { 16336 16285 "version": [ ··· 17499 17448 "repo": "emacs-csharp/csharp-mode", 17500 17449 "unstable": { 17501 17450 "version": [ 17502 - 20210821, 17503 - 1939 17451 + 20210826, 17452 + 421 17504 17453 ], 17505 - "commit": "45fee1a8ae2595a57ecdfbd7ba708c488652173f", 17506 - "sha256": "0nl3jsrp7b280h8mw54gcxc8jbn4jgbsp5qc05d41k20akfskwx8" 17454 + "commit": "fe8a68e9849fc7617e0c870cacd6599b8a797638", 17455 + "sha256": "1pry7p51qc0q4jpcsi60nxb9q7pkkc2gh1340mvbk62jj5f4qbbj" 17507 17456 }, 17508 17457 "stable": { 17509 17458 "version": [ 17510 17459 1, 17511 17460 0, 17512 - 1 17461 + 2 17513 17462 ], 17514 - "commit": "45fee1a8ae2595a57ecdfbd7ba708c488652173f", 17515 - "sha256": "0nl3jsrp7b280h8mw54gcxc8jbn4jgbsp5qc05d41k20akfskwx8" 17463 + "commit": "723a4ab2581b11f84d23f421faa06103864d2bc8", 17464 + "sha256": "1gdr1y8q93xr5vlx6jj95js6rmmsspq2bn870igbaijwwsn0sf7g" 17516 17465 } 17517 17466 }, 17518 17467 { ··· 18195 18144 20190111, 18196 18145 2150 18197 18146 ], 18198 - "commit": "8af0271186cc642436306274564986888d5e64c8", 18199 - "sha256": "0mffl15acpqv3n2hi73nav8jidr74lbps5mhl8vg5c6h3qm2y54l" 18147 + "commit": "2b52df4d75d185f7ac8b4230529e7fc2428a3605", 18148 + "sha256": "0ykzj10pcn3yfwxl8ydl2vj6mvk5gbwzs2zzagsn3zv29y7wqj0a" 18200 18149 }, 18201 18150 "stable": { 18202 18151 "version": [ ··· 18403 18352 "repo": "emacs-lsp/dap-mode", 18404 18353 "unstable": { 18405 18354 "version": [ 18406 - 20210812, 18407 - 619 18355 + 20210904, 18356 + 2033 18408 18357 ], 18409 18358 "deps": [ 18410 18359 "bui", ··· 18416 18365 "posframe", 18417 18366 "s" 18418 18367 ], 18419 - "commit": "8ec7e98986ea46e3c36b7ecbdf9a6562c90c7632", 18420 - "sha256": "01lh0yy3zi87cjma2m1wch0ks45b0v6d05anxqsrpn4bladp8plg" 18368 + "commit": "3c4bb901bbcd4f8f58178075dc2422550a7f2834", 18369 + "sha256": "1zczmcv8562lachkvcwy6njn7zkgny08iznpmrx821wr8mh52wnn" 18421 18370 }, 18422 18371 "stable": { 18423 18372 "version": [ 18424 18373 0, 18425 - 6 18374 + 7 18426 18375 ], 18427 18376 "deps": [ 18428 18377 "bui", 18429 18378 "dash", 18430 - "dash-functional", 18431 18379 "f", 18380 + "ht", 18432 18381 "lsp-mode", 18433 18382 "lsp-treemacs", 18434 18383 "posframe", 18435 18384 "s" 18436 18385 ], 18437 - "commit": "35db94e81c592246675f300aaca4a70966b8a5fc", 18438 - "sha256": "1d4hdydfk86d4slibigyhwng8wx3vzyap8hp5iv0h7wr6868m4iv" 18386 + "commit": "3c4bb901bbcd4f8f58178075dc2422550a7f2834", 18387 + "sha256": "1zczmcv8562lachkvcwy6njn7zkgny08iznpmrx821wr8mh52wnn" 18439 18388 } 18440 18389 }, 18441 18390 { ··· 18604 18553 "repo": "bradyt/dart-mode", 18605 18554 "unstable": { 18606 18555 "version": [ 18607 - 20210301, 18556 + 20210830, 18608 18557 0 18609 18558 ], 18610 - "commit": "43975c92080e307c4bc14a4773a61195d2062fd9", 18611 - "sha256": "0zpjrq3cra6q6pd52skm11wj0j75v8cnamv504hlq4rgd87vkz2p" 18559 + "commit": "3bac14200f9f8f8fcebc383087572da5c3823c34", 18560 + "sha256": "1vql8m4nj0brmv58b6lkbhykik8n6j4i7d3nylcls78y7ihc2cz8" 18612 18561 }, 18613 18562 "stable": { 18614 18563 "version": [ 18615 18564 1, 18616 18565 0, 18617 - 5 18618 - ], 18619 - "deps": [ 18620 - "cl-lib", 18621 - "dash", 18622 - "flycheck", 18623 - "s" 18566 + 7 18624 18567 ], 18625 - "commit": "d414a5faf22f7fafbb0a8208b88cecd6324704bf", 18626 - "sha256": "1qmdlwjmmqyyb65sqvfpygifai5m0llc815vp0jqwp8ldd8ls172" 18568 + "commit": "3bac14200f9f8f8fcebc383087572da5c3823c34", 18569 + "sha256": "1vql8m4nj0brmv58b6lkbhykik8n6j4i7d3nylcls78y7ihc2cz8" 18627 18570 } 18628 18571 }, 18629 18572 { ··· 18670 18613 "repo": "magnars/dash.el", 18671 18614 "unstable": { 18672 18615 "version": [ 18673 - 20210708, 18674 - 2009 18616 + 20210826, 18617 + 1149 18675 18618 ], 18676 - "commit": "2675596b9ac1c4b9d47b93e227f06f8ec6755ec6", 18677 - "sha256": "0wycrcl79mv253vzf2y92qz9i52mi5xa82f9i4rgnqa02f2m633h" 18619 + "commit": "39d067b9fbb2db65fc7a6938bfb21489ad990cb4", 18620 + "sha256": "0z6f8y1m9amhg427iz1d4xcyr6n0kj5w7kmiz134p320ixsdnzd8" 18678 18621 }, 18679 18622 "stable": { 18680 18623 "version": [ 18681 18624 2, 18682 18625 19, 18683 - 0 18626 + 1 18684 18627 ], 18685 - "commit": "2675596b9ac1c4b9d47b93e227f06f8ec6755ec6", 18686 - "sha256": "0wycrcl79mv253vzf2y92qz9i52mi5xa82f9i4rgnqa02f2m633h" 18628 + "commit": "39d067b9fbb2db65fc7a6938bfb21489ad990cb4", 18629 + "sha256": "0z6f8y1m9amhg427iz1d4xcyr6n0kj5w7kmiz134p320ixsdnzd8" 18687 18630 } 18688 18631 }, 18689 18632 { ··· 18724 18667 "repo": "dash-docs-el/dash-docs", 18725 18668 "unstable": { 18726 18669 "version": [ 18727 - 20200516, 18728 - 1943 18670 + 20210830, 18671 + 926 18729 18672 ], 18730 18673 "deps": [ 18731 18674 "async", 18732 18675 "cl-lib" 18733 18676 ], 18734 - "commit": "dafc8fc9f1ddb2e4e39e0b8d066c42d5d7ce8d06", 18735 - "sha256": "0n6d3mm43gj16v8kjjradcfik93wb89dsqnfcbskb28bvcamafid" 18677 + "commit": "29848b6b347ac520f7646c200ed2ec36cea3feda", 18678 + "sha256": "06yp1p0ir67vb2rpva6wvk3vyfxzl0bmrixikawwk6l2bph2z1x3" 18736 18679 } 18737 18680 }, 18738 18681 { ··· 18749 18692 "deps": [ 18750 18693 "dash" 18751 18694 ], 18752 - "commit": "2675596b9ac1c4b9d47b93e227f06f8ec6755ec6", 18753 - "sha256": "0wycrcl79mv253vzf2y92qz9i52mi5xa82f9i4rgnqa02f2m633h" 18695 + "commit": "39d067b9fbb2db65fc7a6938bfb21489ad990cb4", 18696 + "sha256": "0z6f8y1m9amhg427iz1d4xcyr6n0kj5w7kmiz134p320ixsdnzd8" 18754 18697 }, 18755 18698 "stable": { 18756 18699 "version": [ 18757 18700 2, 18758 18701 19, 18759 - 0 18702 + 1 18760 18703 ], 18761 18704 "deps": [ 18762 18705 "dash" 18763 18706 ], 18764 - "commit": "2675596b9ac1c4b9d47b93e227f06f8ec6755ec6", 18765 - "sha256": "0wycrcl79mv253vzf2y92qz9i52mi5xa82f9i4rgnqa02f2m633h" 18707 + "commit": "39d067b9fbb2db65fc7a6938bfb21489ad990cb4", 18708 + "sha256": "0z6f8y1m9amhg427iz1d4xcyr6n0kj5w7kmiz134p320ixsdnzd8" 18766 18709 } 18767 18710 }, 18768 18711 { ··· 18773 18716 "repo": "emacs-dashboard/emacs-dashboard", 18774 18717 "unstable": { 18775 18718 "version": [ 18776 - 20210815, 18777 - 445 18719 + 20210827, 18720 + 239 18778 18721 ], 18779 - "commit": "3926b1b756fb0be5f84776f578a05d31a244d5d4", 18780 - "sha256": "146bddpj6w70i1579bh3qdx0lphyfq2zhlhal5mmbcalrd6c785h" 18722 + "commit": "f7287f026103a44cf290fe737b6b9d841eddcaca", 18723 + "sha256": "184pa120is5jk71174bna61yii2pmdkj1m6r7v16pzvqg5zqbsgj" 18781 18724 }, 18782 18725 "stable": { 18783 18726 "version": [ ··· 19159 19102 "repo": "Wilfred/deadgrep", 19160 19103 "unstable": { 19161 19104 "version": [ 19162 - 20210510, 19163 - 416 19105 + 20210830, 19106 + 656 19164 19107 ], 19165 19108 "deps": [ 19166 19109 "dash", 19167 19110 "s", 19168 19111 "spinner" 19169 19112 ], 19170 - "commit": "341331918cc83b6cabf7ae91e8dba5b0de57b285", 19171 - "sha256": "15x0v6s67wz7bql5z57xy2wbklc8b6nb166yswdzfdvrv5301ri1" 19113 + "commit": "4ec21e644ef482a913c64f068ec8d602eedac1c6", 19114 + "sha256": "1ipjdwnf6c9qdwg4klkf6g06jj4lgap75ms5yq6a0gg2075d84jk" 19172 19115 }, 19173 19116 "stable": { 19174 19117 "version": [ ··· 19777 19720 "repo": "astoff/devdocs.el", 19778 19721 "unstable": { 19779 19722 "version": [ 19780 - 20210818, 19781 - 1622 19723 + 20210904, 19724 + 1759 19782 19725 ], 19783 - "commit": "19f897f03296fba882a7697d438f0e13529718ad", 19784 - "sha256": "0vygmqb7xwlmsl9in0qxnfrl0gjkjaxxg9xnxg55y55k1sf4wlbc" 19726 + "commit": "df9cec79ed6e7147a71fcad84835b928375047a7", 19727 + "sha256": "08zl01vchv6vdixqk021iwjvfbk125vh2ww59mr36cs8ibd887va" 19785 19728 } 19786 19729 }, 19787 19730 { ··· 20009 19952 "repo": "dgutov/diff-hl", 20010 19953 "unstable": { 20011 19954 "version": [ 20012 - 20210811, 20013 - 28 19955 + 20210831, 19956 + 118 20014 19957 ], 20015 19958 "deps": [ 20016 19959 "cl-lib" 20017 19960 ], 20018 - "commit": "dbd46bf23c2efc466a640a7e398ca39a51c1145e", 20019 - "sha256": "003ks20f0n1w5h8vzsqknzbddrfih036is6q1n43zgqdnh3mlzld" 19961 + "commit": "a682de60187763128d2d0a85f1d168d89877691f", 19962 + "sha256": "1bcswy1mkpp0ly36l65amq4f8gyarm2gmzv8v8h6s96vg433nwkb" 20020 19963 }, 20021 19964 "stable": { 20022 19965 "version": [ ··· 22018 21961 "repo": "Silex/docker.el", 22019 21962 "unstable": { 22020 21963 "version": [ 22021 - 20210804, 22022 - 1308 21964 + 20210829, 21965 + 911 22023 21966 ], 22024 21967 "deps": [ 22025 21968 "dash", ··· 22029 21972 "tablist", 22030 21973 "transient" 22031 21974 ], 22032 - "commit": "a13ff981746fc69b0b0607e55346ef85207d6ea7", 22033 - "sha256": "12b1ha8rk8fs3234qvpbc0sp7qa6lbfpf78fvrv7yb1213kxs133" 21975 + "commit": "f050d64c81575429c3c5562a1c8efddfb1ac22b4", 21976 + "sha256": "1izy99and0jm7dmmgv9zjy4586xzi15dpa789fl2yw6xc7609khy" 22034 21977 }, 22035 21978 "stable": { 22036 21979 "version": [ ··· 22163 22106 "repo": "spotify/dockerfile-mode", 22164 22107 "unstable": { 22165 22108 "version": [ 22166 - 20210404, 22167 - 2224 22109 + 20210828, 22110 + 1805 22168 22111 ], 22169 - "commit": "ad06a41259ff2961d603bf23a3a8fbd22dde2161", 22170 - "sha256": "0p6byqjfzlq3g5ql77zghljj9vmnm9q2ffkjls1rv6q5rdj7p8c1" 22112 + "commit": "628315e2e4ab2f269548126444234caa057b2c75", 22113 + "sha256": "09pd8mfa45fy95mdg52fsafj3d1d5l52rskmw6q5np59dyzwch1b" 22171 22114 }, 22172 22115 "stable": { 22173 22116 "version": [ 22174 22117 1, 22175 - 4 22118 + 5 22176 22119 ], 22177 - "commit": "ed1d04c89cd8b53963f2dcae7cb3a46967e0abbf", 22178 - "sha256": "1ypkihd9si769r6k0lfrv8jq8mjv4gyhiwyi820sayfppvma5rj0" 22120 + "commit": "628315e2e4ab2f269548126444234caa057b2c75", 22121 + "sha256": "09pd8mfa45fy95mdg52fsafj3d1d5l52rskmw6q5np59dyzwch1b" 22179 22122 } 22180 22123 }, 22181 22124 { ··· 22269 22212 "repo": "alphapapa/dogears.el", 22270 22213 "unstable": { 22271 22214 "version": [ 22272 - 20210819, 22273 - 59 22215 + 20210903, 22216 + 514 22274 22217 ], 22275 22218 "deps": [ 22276 22219 "map" 22277 22220 ], 22278 - "commit": "c0fa3f6318c660234e77b108f8486dfc39869071", 22279 - "sha256": "0bafs58xrlwk2f8swykwhvs1wilvbm2593gjmvdrwhy4hwg0n6f2" 22221 + "commit": "00dd88cc53d3a7d6ddeb3c6eea2c2a37d9b610d6", 22222 + "sha256": "196gh32l18laawqypc9l08pmqrs48lj5g4wj2m1vl4c13mff5giz" 22280 22223 } 22281 22224 }, 22282 22225 { ··· 22425 22368 "repo": "elken/doom-modeline-now-playing", 22426 22369 "unstable": { 22427 22370 "version": [ 22428 - 20210202, 22429 - 1948 22371 + 20210831, 22372 + 1442 22430 22373 ], 22431 22374 "deps": [ 22432 22375 "async", 22433 22376 "doom-modeline" 22434 22377 ], 22435 - "commit": "bed9e4da626ede148c7d362188b2e7729e2a8a4f", 22436 - "sha256": "1rz50wyinj9nmz37wam4rsdi5igmvdfp6pwn3rmzqsrdp3j81smv" 22378 + "commit": "ef9158dfdf32e8eb789b69e7394d0bddaa68f42c", 22379 + "sha256": "1namv6qfmf5xxwbhsl5887cp41y8krr7g9vf3dzvi5n924ixlm2l" 22437 22380 } 22438 22381 }, 22439 22382 { ··· 22937 22880 "repo": "dtk01/dtk", 22938 22881 "unstable": { 22939 22882 "version": [ 22940 - 20210227, 22941 - 2121 22883 + 20210906, 22884 + 46 22942 22885 ], 22943 22886 "deps": [ 22944 22887 "cl-lib", ··· 22946 22889 "s", 22947 22890 "seq" 22948 22891 ], 22949 - "commit": "2a2a635e2b1d8243a41df0450e45fc8c75c6674b", 22950 - "sha256": "0kd8lkvaxqaz4ns8mwyczbbjyi68r3gicngnrichwlbl27am1zvm" 22892 + "commit": "1e871c7675e7617ccd1bc7186a15ebe577dac46e", 22893 + "sha256": "0chaffjwbqlrbhf0if817d5ril7xhyzwf72ik3yldyrymwknnbfh" 22951 22894 } 22952 22895 }, 22953 22896 { ··· 23108 23051 20210715, 23109 23052 548 23110 23053 ], 23111 - "commit": "d6e490c24dfb4607080b6a41930bb9d378bc2a43", 23112 - "sha256": "1kq8griallh81wkn91j6kr0gi9y417gakhhfrzzby5gi998lijyb" 23054 + "commit": "fd81ea25790c7134032f1d43df0fc84cbaea979d", 23055 + "sha256": "0qv1pybkx22m5vdf499sl7wrwx6c97wwdl1cxv4ld6cnsjbrx1r6" 23113 23056 }, 23114 23057 "stable": { 23115 23058 "version": [ ··· 23644 23587 } 23645 23588 }, 23646 23589 { 23590 + "ename": "earthfile-mode", 23591 + "commit": "3df5031b52e919ace5b07c588eec343ed35cb416", 23592 + "sha256": "1gcdbfzd0v5rs6wfssh8dgby9rmgyar2zqphh2whjvzqp95axh5g", 23593 + "fetcher": "github", 23594 + "repo": "earthly/earthly-emacs", 23595 + "unstable": { 23596 + "version": [ 23597 + 20210903, 23598 + 230 23599 + ], 23600 + "commit": "16f262dbeec1e0b9f7f3a6a7cbafbed76e39d8d8", 23601 + "sha256": "0j359dvmgkwrwcx24ncg34sfyxmkharpsniszmd7gjl2cq8sjja2" 23602 + } 23603 + }, 23604 + { 23647 23605 "ename": "easy-after-load", 23648 23606 "commit": "384ffc463cc6edb4806f8da68bd251e662718e65", 23649 23607 "sha256": "1mn4hpx82nifphzx71yw3rbixbgis8bhvl3iyxcgcd88n5hqwvys", ··· 23859 23817 "repo": "joostkremers/ebib", 23860 23818 "unstable": { 23861 23819 "version": [ 23862 - 20210809, 23863 - 1349 23820 + 20210902, 23821 + 2151 23864 23822 ], 23865 23823 "deps": [ 23866 23824 "parsebib" 23867 23825 ], 23868 - "commit": "831ffcca35601e169c0778035688c5d17d138b58", 23869 - "sha256": "04kw0akp35r2ibrcav4kaf34d1xs8pckjiygv7h1nqpv6dmrgfq7" 23826 + "commit": "85da632406297f7289b9bdd3803684575cfae886", 23827 + "sha256": "0hbpchpmby54jp5xflj8ckdcpjj9chyhl6fkk7ng6l0rgzxi1z30" 23870 23828 }, 23871 23829 "stable": { 23872 23830 "version": [ ··· 24348 24306 "repo": "editorconfig/editorconfig-emacs", 24349 24307 "unstable": { 24350 24308 "version": [ 24351 - 20210813, 24352 - 1301 24309 + 20210830, 24310 + 1025 24353 24311 ], 24354 24312 "deps": [ 24355 24313 "cl-lib", 24356 24314 "nadvice" 24357 24315 ], 24358 - "commit": "375418d1d63f6ec780876593181b6d39054919da", 24359 - "sha256": "1lqxgc24gr67yhi64i9v4w2dcjhpx99jg1kr25gr2byqkkdldkz0" 24316 + "commit": "2ab86dc9a8ed7a669ca348252d4af46522b5c411", 24317 + "sha256": "1ii93vw55vqik765sm79gvlhlnp9xgqzml2ibwwkrfgz7gip9i0m" 24360 24318 }, 24361 24319 "stable": { 24362 24320 "version": [ ··· 24723 24681 "repo": "joaotavora/eglot", 24724 24682 "unstable": { 24725 24683 "version": [ 24726 - 20210817, 24727 - 912 24684 + 20210905, 24685 + 1905 24728 24686 ], 24729 24687 "deps": [ 24730 24688 "eldoc", ··· 24733 24691 "project", 24734 24692 "xref" 24735 24693 ], 24736 - "commit": "a697084d8dfe29783985f298d38863ea5d59c632", 24737 - "sha256": "10x0jnhdn7565nkp134jmadcdgq36436rvd5zbc8187hc9j90396" 24694 + "commit": "c17bdf6c98d6bf0f1a85f1175556e1038654402f", 24695 + "sha256": "10liic4skqd5qr1zw18k0kx50i2m5pa90vc4yypli5c6bpadsyq4" 24738 24696 }, 24739 24697 "stable": { 24740 24698 "version": [ ··· 25045 25003 20210613, 25046 25004 1418 25047 25005 ], 25048 - "commit": "ec47ecf257bf010cf1f3061e2061c26f78e61540", 25049 - "sha256": "0l7z9dn5gpscvpizj0pvqcn36jhjcr7s1xr4x6fg72alw2bg71dk" 25006 + "commit": "b5a5a405d04f61ec9c5fcb19357a50a4b9e36a25", 25007 + "sha256": "1w6ps78saxdvx64a2y1vvzn11mvb6bw9657zfin0yibh2s91hqrk" 25050 25008 }, 25051 25009 "stable": { 25052 25010 "version": [ ··· 25560 25518 "repo": "davidshepherd7/electric-operator", 25561 25519 "unstable": { 25562 25520 "version": [ 25563 - 20210320, 25564 - 1511 25521 + 20210906, 25522 + 1235 25565 25523 ], 25566 25524 "deps": [ 25567 25525 "dash" 25568 25526 ], 25569 - "commit": "ecc59d313dd9ddfc4d6a2a3c7a9374aaf214e653", 25570 - "sha256": "0qy8s0vqaxkksplasang3n9bqnq7q43lfyd0jl39nynlrg8avhpc" 25527 + "commit": "14def81d88bf4344a335e68007324e3f3ef5c435", 25528 + "sha256": "1p4kpxq8fvdcs5za79c4pzw1g8108kyfl9rcybs0g75fjxk1f2jb" 25571 25529 }, 25572 25530 "stable": { 25573 25531 "version": [ ··· 25850 25808 "repo": "sp1ff/elfeed-score", 25851 25809 "unstable": { 25852 25810 "version": [ 25853 - 20210805, 25854 - 1535 25811 + 20210831, 25812 + 1423 25855 25813 ], 25856 25814 "deps": [ 25857 25815 "elfeed" 25858 25816 ], 25859 - "commit": "53d4154c7d993ea5424535b3f0c4e9e75388e36e", 25860 - "sha256": "0ffv2adqnnyvwc6axxi1j32l36q35iddmcazpczh2js2hzp2gw51" 25817 + "commit": "2c8093e83491b9191115276e649dd87438726348", 25818 + "sha256": "1r77b5vj4klqww7q7flw8h5i9w6y36zv2n7hx36pp1sav6s3a4r9" 25861 25819 }, 25862 25820 "stable": { 25863 25821 "version": [ 25864 25822 0, 25865 25823 8, 25866 - 4 25824 + 6 25867 25825 ], 25868 25826 "deps": [ 25869 25827 "elfeed" 25870 25828 ], 25871 - "commit": "1842f26d7ab520acbc6f491bc8e064af67be7a6b", 25872 - "sha256": "1whf7nxfpb003wk9v15ib4xy1a7dfygdkg7jf3ly5z5l81607ap8" 25829 + "commit": "2c8093e83491b9191115276e649dd87438726348", 25830 + "sha256": "1r77b5vj4klqww7q7flw8h5i9w6y36zv2n7hx36pp1sav6s3a4r9" 25873 25831 } 25874 25832 }, 25875 25833 { ··· 25927 25885 "repo": "TobiasZawada/elgrep", 25928 25886 "unstable": { 25929 25887 "version": [ 25930 - 20210205, 25931 - 733 25888 + 20210829, 25889 + 1619 25932 25890 ], 25933 25891 "deps": [ 25934 25892 "async" 25935 25893 ], 25936 - "commit": "b627cc0f307161e580e9450ad5334687b9406a16", 25937 - "sha256": "17nbjr5dll5n0m52p3isw8gkkza5iqxlhamhv7x61vjd8w72gl3d" 25894 + "commit": "ed1ddf377447a82d643b46f3a72cbf5ecb21fb4b", 25895 + "sha256": "0na0s42ifv260mbv1djn7yqalcsyahsgyqrqf8lvxc1qbiisrzxv" 25938 25896 }, 25939 25897 "stable": { 25940 25898 "version": [ ··· 26406 26364 "repo": "sp1ff/elmpd", 26407 26365 "unstable": { 26408 26366 "version": [ 26409 - 20201107, 26410 - 428 26367 + 20210904, 26368 + 7 26411 26369 ], 26412 - "commit": "0d0456f2b9bfffbe452b6d94b9cd8798c52fc80e", 26413 - "sha256": "00qkkjd397y0mlank1hwqvfhp4m53rs5jpd8gfcyjl53ka9dg587" 26370 + "commit": "c9e413fcb6c526c86e1a64d45c7ea94aceca4e6e", 26371 + "sha256": "1vxdavimnd34ivkx40xnnr472b94yz5l12g9xi4i21p1x0kqqhwp" 26414 26372 }, 26415 26373 "stable": { 26416 26374 "version": [ 26417 26375 0, 26418 - 1, 26419 - 8 26376 + 2, 26377 + 3 26420 26378 ], 26421 - "commit": "1356343300140a77f462e690045584c85bd05c94", 26422 - "sha256": "0iwmn54v78fgch6cx9qp3cpdfqifqs6g36203xwqmkb4kgvwsg7m" 26379 + "commit": "4b42a90610fdb05ac1a2811da5acd55493715795", 26380 + "sha256": "1nj310mnckf5mpqici67jzdydbby50la6g6vq7qdaji0c98c335b" 26423 26381 } 26424 26382 }, 26425 26383 { ··· 27275 27233 "repo": "oantolin/embark", 27276 27234 "unstable": { 27277 27235 "version": [ 27278 - 20210823, 27279 - 1719 27236 + 20210905, 27237 + 1435 27280 27238 ], 27281 - "commit": "ca517fdabd182b0b905d0ef0cb380facb6697670", 27282 - "sha256": "1pb6rarb86x9bl064jqick3d7znl0a7ibx27yx30nivi5plrkb3j" 27239 + "commit": "d21277a638827623ab84e9e6341312a2da5062ab", 27240 + "sha256": "12kl6a4y46vldxc25s7npm0748j4hj8g0vvnhfnxy8iq8q2m2i3j" 27283 27241 }, 27284 27242 "stable": { 27285 27243 "version": [ ··· 27298 27256 "repo": "oantolin/embark", 27299 27257 "unstable": { 27300 27258 "version": [ 27301 - 20210816, 27302 - 1819 27259 + 20210829, 27260 + 1334 27303 27261 ], 27304 27262 "deps": [ 27305 27263 "consult", 27306 27264 "embark" 27307 27265 ], 27308 - "commit": "ca517fdabd182b0b905d0ef0cb380facb6697670", 27309 - "sha256": "1pb6rarb86x9bl064jqick3d7znl0a7ibx27yx30nivi5plrkb3j" 27266 + "commit": "d21277a638827623ab84e9e6341312a2da5062ab", 27267 + "sha256": "12kl6a4y46vldxc25s7npm0748j4hj8g0vvnhfnxy8iq8q2m2i3j" 27310 27268 }, 27311 27269 "stable": { 27312 27270 "version": [ ··· 28388 28346 "deps": [ 28389 28347 "dash" 28390 28348 ], 28391 - "commit": "831fcaced262a9dd650bc80241c8214d57de4cdc", 28392 - "sha256": "1rgkczdz4ppi0h87vbx10h574xfqn1ba09j3cswhvkxm6w1hram4" 28349 + "commit": "f9d741baf42232125663c1d27e01ec04ab0ca85f", 28350 + "sha256": "0cxax1dgznzvfzwy00spqi609q93gxkabcy6jm6009029gmsdhdr" 28393 28351 } 28394 28352 }, 28395 28353 { ··· 28879 28837 20200914, 28880 28838 644 28881 28839 ], 28882 - "commit": "2bab72d99ae3330cbf3a94450a647158838a1d1b", 28883 - "sha256": "1xb1rawj2hl12xmpn9xk2zw69wpvx2ssd3wj4k32dhgi2vcg2rck" 28840 + "commit": "731f300deac14e10792a0bbf22c86cbe0c9c7e4b", 28841 + "sha256": "1fgqk0xvfxaqj737b62ngnqivd8fhp5pakwbh2zvvdl76frkbsmv" 28884 28842 }, 28885 28843 "stable": { 28886 28844 "version": [ ··· 28903 28861 20210315, 28904 28862 1640 28905 28863 ], 28906 - "commit": "988e8112a6db6f5e16380df30f1aa52b1b233662", 28907 - "sha256": "0j3b9cd2hzf2i8lzi2xy39bj2q2fqgcsrsim4viknqsv6awqw04y" 28864 + "commit": "2ef0ca21ddf75c28b6a1ca07d20c33cbdc24e853", 28865 + "sha256": "1dzj8frv80lx34chv94ksm83749l7f8195iy337vcpbvgpzf4arf" 28908 28866 }, 28909 28867 "stable": { 28910 28868 "version": [ 28911 28869 24, 28912 28870 0, 28913 - 5 28871 + 6 28914 28872 ], 28915 - "commit": "a29aeb16660f2a91aaa24c474d57c6ee7754ee0a", 28916 - "sha256": "153kg6351yrkilr4gwg1jh7ifxpz9ar664mz7vdax9sy31q9i771" 28873 + "commit": "163593593441984f8446f513bdc7684ac5fe067e", 28874 + "sha256": "0z01hkzf2y6lz20s2vkn4q874lb6n6j00jkbgk4gg60rhrmq904z" 28917 28875 } 28918 28876 }, 28919 28877 { ··· 29219 29177 "repo": "dieggsy/esh-autosuggest", 29220 29178 "unstable": { 29221 29179 "version": [ 29222 - 20210224, 29223 - 2242 29180 + 20210906, 29181 + 1446 29224 29182 ], 29225 29183 "deps": [ 29226 29184 "company" 29227 29185 ], 29228 - "commit": "30203fc7b8b63a489f34f74ca8b041bf61f4358f", 29229 - "sha256": "0w34m9va83grw5j566i5sdgkz475fhf3hibx9p1m0a92p1mg9v8s" 29186 + "commit": "bf676b137d35553debe32ff134dbec25f3978ae7", 29187 + "sha256": "1m255pgi2zlkjrjr3l8gk76qc5543qnaxqrwgcpb2z9gq51ivfw2" 29230 29188 }, 29231 29189 "stable": { 29232 29190 "version": [ ··· 30360 30318 "repo": "emacs-evil/evil", 30361 30319 "unstable": { 30362 30320 "version": [ 30363 - 20210810, 30364 - 844 30321 + 20210902, 30322 + 2016 30365 30323 ], 30366 30324 "deps": [ 30367 30325 "cl-lib", 30368 30326 "goto-chg" 30369 30327 ], 30370 - "commit": "dceb73603d397f7e42a541976d8ec0711248d38c", 30371 - "sha256": "1jwah95cnlgsdqkk56d0jhshcxydz5w3x5dsxnxckipddrs3ncfm" 30328 + "commit": "82e5becae21b7768ffbb4728bce83dab8751d610", 30329 + "sha256": "1jkijmfr5bvvp7yl3rdyg9yqp2za855hiymbrpy0cvqljddjs0zv" 30372 30330 }, 30373 30331 "stable": { 30374 30332 "version": [ ··· 30562 30520 "repo": "emacs-evil/evil-collection", 30563 30521 "unstable": { 30564 30522 "version": [ 30565 - 20210823, 30566 - 2212 30523 + 20210904, 30524 + 830 30567 30525 ], 30568 30526 "deps": [ 30569 30527 "annalist", 30570 30528 "evil" 30571 30529 ], 30572 - "commit": "0a836facbc1f917c863699eea3eaecc78ac81686", 30573 - "sha256": "0zrg4yj62vfpkffz0219ibwqi1yyadj9aaa6qlyz8z6bjg0d7vjz" 30530 + "commit": "869d056dcab5eb9781824bcd591bf946969b8b41", 30531 + "sha256": "0vm5xncxvnys957pxq6ih6bz65v65aglpjavbf5lypycwjq55iqn" 30574 30532 }, 30575 30533 "stable": { 30576 30534 "version": [ ··· 31888 31846 "deps": [ 31889 31847 "evil" 31890 31848 ], 31891 - "commit": "dceb73603d397f7e42a541976d8ec0711248d38c", 31892 - "sha256": "1jwah95cnlgsdqkk56d0jhshcxydz5w3x5dsxnxckipddrs3ncfm" 31849 + "commit": "82e5becae21b7768ffbb4728bce83dab8751d610", 31850 + "sha256": "1jkijmfr5bvvp7yl3rdyg9yqp2za855hiymbrpy0cvqljddjs0zv" 31893 31851 }, 31894 31852 "stable": { 31895 31853 "version": [ ··· 32073 32031 } 32074 32032 }, 32075 32033 { 32076 - "ename": "evil-textobj-treesitter", 32077 - "commit": "949eb5d82e26e37685c3155b22b329e387f0fd59", 32078 - "sha256": "1mxx6fcj7k1k9gnjgcs316x92jdicsrx6l584vkzx09h7fz2p4da", 32034 + "ename": "evil-textobj-tree-sitter", 32035 + "commit": "fcddf8865ace77c50846d55ac77c615bd8f3af63", 32036 + "sha256": "1zns7rr449m186h8br4xv77n26qjdq4whc2nyil8lmkhixr3q4ny", 32079 32037 "fetcher": "github", 32080 - "repo": "meain/evil-textobj-treesitter", 32038 + "repo": "meain/evil-textobj-tree-sitter", 32081 32039 "unstable": { 32082 32040 "version": [ 32083 - 20210816, 32084 - 355 32041 + 20210904, 32042 + 1350 32085 32043 ], 32086 32044 "deps": [ 32087 32045 "evil", 32088 32046 "tree-sitter" 32089 32047 ], 32090 - "commit": "461195b882b2179a0e6f8efcd37835ab2a0ed5e2", 32091 - "sha256": "1yndxnxx842mhfjqs39i5wz1khm1sha2dr1nhzhi60mz4ywyqyl3" 32048 + "commit": "a315a8832fc170c163be01c31b625b19641ce20a", 32049 + "sha256": "0msg9kpj4sajcszjamb8gqbi9hdhybsg1gdajprzg0p5z09sv863" 32092 32050 } 32093 32051 }, 32094 32052 { ··· 33215 33173 } 33216 33174 }, 33217 33175 { 33218 - "ename": "fakespace", 33219 - "commit": "778dbe1fd1d2ecebb499ad66bc950e586f231c52", 33220 - "sha256": "09dsmrqax4wfcw8fd5jf07bjxm5dizpc2qvjkqwg74j2n352wv27", 33221 - "fetcher": "github", 33222 - "repo": "skeeto/elisp-fakespace", 33223 - "unstable": { 33224 - "version": [ 33225 - 20120818, 33226 - 6 33227 - ], 33228 - "commit": "d1bd1f4b14b2690d7a67f9a52622ec51ed84813a", 33229 - "sha256": "11fm0h9rily5731s137mgv8rdbfqi99s6f36bgr0arwbq3f2j3fs" 33230 - } 33231 - }, 33232 - { 33233 33176 "ename": "fakir", 33234 33177 "commit": "d0a8abd5fd77a14b957f53b5bc8474403cc1e18f", 33235 33178 "sha256": "07bicglgpm6qkcsxwj6rswhx4hgh27rfg8s1cki7g8qcvk2f7b25", ··· 33280 33223 "repo": "jrosdahl/fancy-dabbrev", 33281 33224 "unstable": { 33282 33225 "version": [ 33283 - 20210823, 33284 - 1838 33226 + 20210901, 33227 + 637 33285 33228 ], 33286 33229 "deps": [ 33287 33230 "popup" 33288 33231 ], 33289 - "commit": "f3b05ad56688f2ca13db053e090a1273cf2deed0", 33290 - "sha256": "1hj15wi9jxwjamz345jssx9gd4m9cbdisvmq7mg5vhk89k4h0mvd" 33232 + "commit": "a2e8449e4ceda45adc5ab7b7d2225c2cc3765371", 33233 + "sha256": "165mv9v18fyyha4b27yhardb1k8i30qjchz1lgrfnzv15qv0d7yg" 33291 33234 } 33292 33235 }, 33293 33236 { ··· 33345 33288 "repo": "condy0919/fanyi.el", 33346 33289 "unstable": { 33347 33290 "version": [ 33348 - 20210820, 33349 - 423 33291 + 20210905, 33292 + 1203 33350 33293 ], 33351 33294 "deps": [ 33352 33295 "s" 33353 33296 ], 33354 - "commit": "5f4fd0dbee514bada012ab3ecc9c767b8910828e", 33355 - "sha256": "1lzmhn0bn6qjyq441bp39gq4wd1xvrcygzrfm6v6srywb6s34dm1" 33297 + "commit": "352fc9ae3230e87470fcbb638d623169c2e582f9", 33298 + "sha256": "06w54klzl9781bxmxhx0vhj1yj6ym8i68fb1bry9yhy8r3qamyip" 33356 33299 } 33357 33300 }, 33358 33301 { ··· 34148 34091 } 34149 34092 }, 34150 34093 { 34094 + "ename": "finito", 34095 + "commit": "4b6af066aedc1cc3116d6efe2aeb9ffa375edaae", 34096 + "sha256": "0451nqkz7riqaz5apzxn2ff0mr3484srx9y54hj9vpdmmvp1bfd0", 34097 + "fetcher": "github", 34098 + "repo": "LaurenceWarne/finito.el", 34099 + "unstable": { 34100 + "version": [ 34101 + 20210904, 34102 + 1352 34103 + ], 34104 + "deps": [ 34105 + "async", 34106 + "dash", 34107 + "f", 34108 + "graphql", 34109 + "request", 34110 + "s", 34111 + "transient" 34112 + ], 34113 + "commit": "0895002dfacdaab9010a35c190139384935cb4d0", 34114 + "sha256": "0cg6axjv41da3ryxq2vszhn8f7jslc8ipf8izh1h7ldg2li5kz9c" 34115 + }, 34116 + "stable": { 34117 + "version": [ 34118 + 0, 34119 + 2, 34120 + 0 34121 + ], 34122 + "deps": [ 34123 + "async", 34124 + "dash", 34125 + "f", 34126 + "graphql", 34127 + "request", 34128 + "s", 34129 + "transient" 34130 + ], 34131 + "commit": "bf720fec1fcd46664dce66a667ef77a1c80ef89a", 34132 + "sha256": "0q55ny88rpc2xrnkbpmifb9nnshjlx69mwf6kvxqryljvcjbk69y" 34133 + } 34134 + }, 34135 + { 34151 34136 "ename": "fiplr", 34152 34137 "commit": "7fabdb05de9b8ec18a3a566f99688b50443b6b44", 34153 34138 "sha256": "1a4w0yqdkz477lfyin4lb9k9qkfpx4350kfxmrqx6dj3aadkikca", ··· 34209 34194 } 34210 34195 }, 34211 34196 { 34212 - "ename": "firefox-controller", 34213 - "commit": "70a69c20f8dcf73c878f2172dcc9f1796fdc0408", 34214 - "sha256": "03y96b3l75w9al8ylijnlb8pcfkwddyfnh8xwig1b6k08zxfgal6", 34215 - "fetcher": "github", 34216 - "repo": "cute-jumper/emacs-firefox-controller", 34217 - "unstable": { 34218 - "version": [ 34219 - 20160320, 34220 - 1847 34221 - ], 34222 - "deps": [ 34223 - "cl-lib", 34224 - "moz", 34225 - "popwin" 34226 - ], 34227 - "commit": "a8af8cbf70afaf6b89a26d6ac69af8e92afc181f", 34228 - "sha256": "0icgl88pwizwzkdqsxbwhnc6pdyqsfd7wgjnkvg3206i7hcqwpsp" 34229 - }, 34230 - "stable": { 34231 - "version": [ 34232 - 2, 34233 - 1 34234 - ], 34235 - "deps": [ 34236 - "cl-lib", 34237 - "moz", 34238 - "popwin" 34239 - ], 34240 - "commit": "a8af8cbf70afaf6b89a26d6ac69af8e92afc181f", 34241 - "sha256": "0icgl88pwizwzkdqsxbwhnc6pdyqsfd7wgjnkvg3206i7hcqwpsp" 34242 - } 34243 - }, 34244 - { 34245 34197 "ename": "fireplace", 34246 34198 "commit": "4c1ac52c1cfe7ccf46092c2d299ebbffdc1b7609", 34247 34199 "sha256": "1apcypznq23fc7xgy4xy1c5hvfvjx1xhyq3aaq1lf59v99zchciw", ··· 36090 36042 "repo": "flycheck/flycheck-haskell", 36091 36043 "unstable": { 36092 36044 "version": [ 36093 - 20200927, 36094 - 1603 36045 + 20210829, 36046 + 1143 36095 36047 ], 36096 36048 "deps": [ 36097 36049 "dash", ··· 36100 36052 "let-alist", 36101 36053 "seq" 36102 36054 ], 36103 - "commit": "f04842252babd37c0ac60e069272a3477b538332", 36104 - "sha256": "1icvbc3f8mfpm1p4s7qcvkl5q5p021jjinmbc5js46xgsl3bjkr6" 36055 + "commit": "16b748c033e30216259fa8c9c23616db36750a58", 36056 + "sha256": "08agklr9mw4rxr5mq9c5ynhqsjp5knc7571rnr19iziq33r8srl9" 36105 36057 }, 36106 36058 "stable": { 36107 36059 "version": [ ··· 39334 39286 "repo": "magit/forge", 39335 39287 "unstable": { 39336 39288 "version": [ 39337 - 20210822, 39338 - 840 39289 + 20210906, 39290 + 1234 39339 39291 ], 39340 39292 "deps": [ 39341 39293 "closql", ··· 39348 39300 "transient", 39349 39301 "yaml" 39350 39302 ], 39351 - "commit": "a3e6f8aab16a8213cd389fe79d8c02300d26cab7", 39352 - "sha256": "0n6p63kfibpz4161wb2f6516ncv3h9algxlgdgrd5lsnn0ympr26" 39303 + "commit": "86e18914eac706928e66705418c765f34d077703", 39304 + "sha256": "01i8vb120vn8wmiscyjhk3zl7qk0zrnydkq4d282w9b5sqzrgjpp" 39353 39305 }, 39354 39306 "stable": { 39355 39307 "version": [ ··· 39488 39440 "repo": "larsbrinkhoff/forth-mode", 39489 39441 "unstable": { 39490 39442 "version": [ 39491 - 20210123, 39492 - 900 39443 + 20210829, 39444 + 1824 39493 39445 ], 39494 - "commit": "f44fa6481ffe2b4321d462c3fab78a858f2a8ae9", 39495 - "sha256": "08p9ddxs3ya7an2p485wrw5ywimbgnqrihriyc4aaq963zpssk2c" 39446 + "commit": "38d5152011ee67e0cff9d4a5ddfb1f908e5be013", 39447 + "sha256": "09irbi8z1p2006abl4fnkyfj3c16nzzf55wqighlc2ri2v8bbisb" 39496 39448 } 39497 39449 }, 39498 39450 { ··· 39554 39506 "deps": [ 39555 39507 "seq" 39556 39508 ], 39557 - "commit": "7de7159a58e0594c0120d66af78f65264f61ea5f", 39558 - "sha256": "0y7dd6qq4b95scj7fay4zzhkf0g0x89npylc4v1hz59b1yyylfqy" 39509 + "commit": "60f4dc4f02a8ea222abcd51556163e7861f0fbe8", 39510 + "sha256": "09i4ilwgrnw8ymlzd4rzwnbhwz0c7axrlr2pn0nmzp3v60lhxnl2" 39559 39511 }, 39560 39512 "stable": { 39561 39513 "version": [ ··· 40391 40343 "repo": "10sr/fuzzy-finder-el", 40392 40344 "unstable": { 40393 40345 "version": [ 40394 - 20200909, 40395 - 907 40346 + 20210906, 40347 + 217 40396 40348 ], 40397 - "commit": "c19235a35db076eebb5ad31fb42daf6520620f6d", 40398 - "sha256": "0nwbvgj2z15g88d9mgbc408xhsf3wx8r1ky70cgn7kqfv4wvd25n" 40349 + "commit": "915a281fc8e50df84dcc205f9357e8314d60fa54", 40350 + "sha256": "15b6nbkv8xpvin8i1443s1mnpag5p33asgwpxijrmwp3xm2xkyl6" 40399 40351 }, 40400 40352 "stable": { 40401 40353 "version": [ ··· 40507 40459 "repo": "bling/fzf.el", 40508 40460 "unstable": { 40509 40461 "version": [ 40510 - 20210619, 40511 - 1421 40462 + 20210826, 40463 + 140 40512 40464 ], 40513 - "commit": "c975001725e4b7f58dd9379a64c170f07734af59", 40514 - "sha256": "01d303vbn7vvhl1g1wpmpy90h5vaj3yimzgmhnmswc2qc2s3cnhq" 40465 + "commit": "e045e7ede6a3d5f792cd11efe5e83cf60d8081bb", 40466 + "sha256": "0y4abgwcb28dpnzqcl2dylymnkg1v91nrnpsrly0dp8bf0aiafrq" 40515 40467 }, 40516 40468 "stable": { 40517 40469 "version": [ ··· 40695 40647 "repo": "ahungry/geben", 40696 40648 "unstable": { 40697 40649 "version": [ 40698 - 20170801, 40699 - 1251 40650 + 20210830, 40651 + 422 40700 40652 ], 40701 40653 "deps": [ 40702 40654 "cl-lib" 40703 40655 ], 40704 - "commit": "ec3f5e9376cf1ea5615990bd8c212543d57f033b", 40705 - "sha256": "0860nnarbm76jp40v7p5d2wdnq12p03paiw17g3h5p27wnaj611d" 40656 + "commit": "d3706387ed25b3037338572f3968b4cc2d8825a0", 40657 + "sha256": "05kvg13mknn4xgzik637kgg5qa7qhz3626v2ny2p86lga1pzm3yq" 40706 40658 }, 40707 40659 "stable": { 40708 40660 "version": [ ··· 40775 40727 20210808, 40776 40728 16 40777 40729 ], 40778 - "commit": "77d4c3a91c0acdb16cefa8a3e0efac3435aebdc0", 40779 - "sha256": "07g1zlf9kmfish2wa6m376xba0nv6n4spw8wbmr90a56xj0qpswc" 40730 + "commit": "327ff01e5b9c6e019fdd0cb710a4c19082249345", 40731 + "sha256": "0vis470dhk7adpxr335wq33jv1035sd3vj1cxdq3jsx8biqas4c1" 40780 40732 }, 40781 40733 "stable": { 40782 40734 "version": [ ··· 41082 41034 "url": "https://git.carcosa.net/jmcbray/gemini.el.git", 41083 41035 "unstable": { 41084 41036 "version": [ 41085 - 20210611, 41086 - 1833 41037 + 20210901, 41038 + 1406 41087 41039 ], 41088 - "commit": "97e096ab2400bbe3c0f6d19fb49bd952f2f14e03", 41089 - "sha256": "1l092mhpv8dg00ln4yv040kmha7556klm5bqfdvc9ysjnfiwprkd" 41040 + "commit": "0a02e97cc2ce2ddd97c7624187c7e7b6ab2e9fe7", 41041 + "sha256": "18vd78ya03d3x7aib2x7d3snripi7r5xrkyi7vm2xxzx91fan4rf" 41090 41042 }, 41091 41043 "stable": { 41092 41044 "version": [ ··· 41224 41176 } 41225 41177 }, 41226 41178 { 41179 + "ename": "germanium", 41180 + "commit": "6cc59833eeabaa1bb4347f158e8794683dc3a15e", 41181 + "sha256": "0g5lqdgnv720l0s41ql5jx3gvzckw0fhgdmn3f46hckwpvvhrmah", 41182 + "fetcher": "github", 41183 + "repo": "matsuyoshi30/germanium-el", 41184 + "unstable": { 41185 + "version": [ 41186 + 20210821, 41187 + 1813 41188 + ], 41189 + "commit": "88a14826695b60ac218c2b3beadba0dbd89bcd60", 41190 + "sha256": "1h85zpli5ysbfx6j0ajmkyngmj1nq6qwkx94kl0risamz8lxvk7r" 41191 + } 41192 + }, 41193 + { 41227 41194 "ename": "gerrit", 41228 41195 "commit": "3b966a2476cf10234686e49d808bcbabe0686891", 41229 41196 "sha256": "1ikkd2xjr1n8p43pwycfrsfy9fkib83mf8l0p4bjrjszfcb9ln4v", ··· 41873 41840 "transient", 41874 41841 "with-editor" 41875 41842 ], 41876 - "commit": "5a0cf9aaa9acf53c68c0fe98883c081aa5e29dd3", 41877 - "sha256": "16ihqh9aqjgjs14p5i17bw0wrcc1kpzvj62fn7bk8almdy6ph4dn" 41843 + "commit": "d173de73e96e207d4ba3821e1d720c8d81f6bafb", 41844 + "sha256": "1yq077j2fvmgpji6arlliq00bcs08bhl877fsklhq6j0yif1vz9s" 41878 41845 }, 41879 41846 "stable": { 41880 41847 "version": [ ··· 42085 42052 "repo": "akirak/git-identity.el", 42086 42053 "unstable": { 42087 42054 "version": [ 42088 - 20210730, 42089 - 1037 42055 + 20210905, 42056 + 1208 42090 42057 ], 42091 42058 "deps": [ 42092 42059 "dash", 42093 42060 "f", 42094 42061 "hydra" 42095 42062 ], 42096 - "commit": "07f0846fcc92b6c2fdd61db8aa959effd0e23d9d", 42097 - "sha256": "1bk1cvll02348d7dwq6dzdm0ykbxf63p16jq8j07q148qm07yf0h" 42063 + "commit": "e2620767694d8cd2860b632c47fbe92e20a9ef14", 42064 + "sha256": "1wyfszd9jzg6c7lbl2rw7xpbr6fr4rj70h0jyqnwz081j9w92bb1" 42098 42065 }, 42099 42066 "stable": { 42100 42067 "version": [ 42101 42068 0, 42102 - 1, 42103 - 1 42069 + 2, 42070 + 0 42104 42071 ], 42105 42072 "deps": [ 42106 42073 "dash", 42107 42074 "f", 42108 42075 "hydra" 42109 42076 ], 42110 - "commit": "d5b8dcfc9f93aecfcd9c6fb212742c165d48173f", 42111 - "sha256": "1dblc0vlnkm1b16pgi40yr21wh45larb7818l9q8p9nbpxcjinh2" 42077 + "commit": "e2620767694d8cd2860b632c47fbe92e20a9ef14", 42078 + "sha256": "1wyfszd9jzg6c7lbl2rw7xpbr6fr4rj70h0jyqnwz081j9w92bb1" 42112 42079 } 42113 42080 }, 42114 42081 { ··· 43282 43249 "repo": "lokedhs/gnu-apl-mode", 43283 43250 "unstable": { 43284 43251 "version": [ 43285 - 20200108, 43286 - 1633 43252 + 20210904, 43253 + 509 43287 43254 ], 43288 - "commit": "7f84eb307e9765fadcd1e0a9201ae562724ef1c9", 43289 - "sha256": "0aqlgsl19p2vlagdvahxxhqdcvmr8g7wlziwjvm2pina3lqfw4wc" 43255 + "commit": "c1203e8ff655ba776ecdc49b3420aaed4bd37952", 43256 + "sha256": "1hicrnwn4z0q0v39qdhfwgailgy6fw433gvk70pm779npp2zv90s" 43290 43257 } 43291 43258 }, 43292 43259 { ··· 44776 44743 "magit-popup", 44777 44744 "s" 44778 44745 ], 44779 - "commit": "ec5a4a7c63275875655d0fb57962ccefd68d39e5", 44780 - "sha256": "0zmam6s2vpdl88qd3h863gzy25m0g6bkmzrgib00807sj2i42704" 44746 + "commit": "e49ad93a11f6e0528d1dc2b6d6d4ec2a131636e0", 44747 + "sha256": "0hs2vk9fp860y2fldr6d85hlpizccj0v5a7bjmkirvfnk2w086mv" 44781 44748 }, 44782 44749 "stable": { 44783 44750 "version": [ ··· 44951 44918 20160504, 44952 44919 911 44953 44920 ], 44954 - "commit": "99eaf70720e4a6337fbd5acb68ae45cc1779bdc4", 44955 - "sha256": "1jpfyqnqd8nj0g8xbiw4ar2qzxx3pvhwibr6hdzhyy9mmc4yzdgk" 44921 + "commit": "84f89b68ec8f79bce0b3f5b29af155a85124e3a6", 44922 + "sha256": "1pfaan0chvxpvf1zp3inpx47smm7rb22q4cklhw27n70cqh6qix5" 44956 44923 }, 44957 44924 "stable": { 44958 44925 "version": [ 44959 44926 2, 44960 - 0 44927 + 1 44961 44928 ], 44962 - "commit": "d7b362e6186d263ec3eefc141dbb5b27a8773f24", 44963 - "sha256": "0c1d4cbnlny8gpcd20zr1wxx6ggf28jgh7sgd5r1skpsvjpbfqx2" 44929 + "commit": "99eaf70720e4a6337fbd5acb68ae45cc1779bdc4", 44930 + "sha256": "1jpfyqnqd8nj0g8xbiw4ar2qzxx3pvhwibr6hdzhyy9mmc4yzdgk" 44964 44931 } 44965 44932 }, 44966 44933 { ··· 45504 45471 "repo": "Groovy-Emacs-Modes/groovy-emacs-modes", 45505 45472 "unstable": { 45506 45473 "version": [ 45507 - 20210510, 45508 - 317 45474 + 20210831, 45475 + 1601 45509 45476 ], 45510 45477 "deps": [ 45511 45478 "dash", 45512 45479 "s" 45513 45480 ], 45514 - "commit": "99eaf70720e4a6337fbd5acb68ae45cc1779bdc4", 45515 - "sha256": "1jpfyqnqd8nj0g8xbiw4ar2qzxx3pvhwibr6hdzhyy9mmc4yzdgk" 45481 + "commit": "84f89b68ec8f79bce0b3f5b29af155a85124e3a6", 45482 + "sha256": "1pfaan0chvxpvf1zp3inpx47smm7rb22q4cklhw27n70cqh6qix5" 45516 45483 }, 45517 45484 "stable": { 45518 45485 "version": [ 45519 45486 2, 45520 - 0 45487 + 1 45521 45488 ], 45522 45489 "deps": [ 45490 + "dash", 45523 45491 "s" 45524 45492 ], 45525 - "commit": "d7b362e6186d263ec3eefc141dbb5b27a8773f24", 45526 - "sha256": "0c1d4cbnlny8gpcd20zr1wxx6ggf28jgh7sgd5r1skpsvjpbfqx2" 45493 + "commit": "99eaf70720e4a6337fbd5acb68ae45cc1779bdc4", 45494 + "sha256": "1jpfyqnqd8nj0g8xbiw4ar2qzxx3pvhwibr6hdzhyy9mmc4yzdgk" 45527 45495 } 45528 45496 }, 45529 45497 { ··· 46061 46029 "repo": "hhvm/hack-mode", 46062 46030 "unstable": { 46063 46031 "version": [ 46064 - 20210519, 46065 - 108 46032 + 20210901, 46033 + 2129 46066 46034 ], 46067 46035 "deps": [ 46068 46036 "s" 46069 46037 ], 46070 - "commit": "f9315be69954b95b6a3ceaa37f31a88f8369a59f", 46071 - "sha256": "060cp88snnp9059b382nkfbj8b5p5wm360vjrcrpny08d0dfj7pj" 46038 + "commit": "4c1c2b093970b92f8589b061759288c0deb228c9", 46039 + "sha256": "1lyp42d6j623v78sw9k5awj6188wgbsmpbj1izknisp0cnih90av" 46072 46040 }, 46073 46041 "stable": { 46074 46042 "version": [ 46075 46043 1, 46076 - 1 46044 + 2 46077 46045 ], 46078 46046 "deps": [ 46079 46047 "s" 46080 46048 ], 46081 - "commit": "4e50d9f46b044c0d885af3a486bf6275c121f29e", 46082 - "sha256": "1s06m8bam7wlhqw0gbc443lfrz51mj05pzvbmjzqadqn4240v4jw" 46049 + "commit": "28b6d43bbd8bb81f101ea4e95be2e40260c02ae8", 46050 + "sha256": "0vcv66413i93mi1w7jszkxb47dfjw1ngdwysjlpw5wzl8xkwrcm1" 46083 46051 } 46084 46052 }, 46085 46053 { ··· 46843 46811 "repo": "emacs-helm/helm", 46844 46812 "unstable": { 46845 46813 "version": [ 46846 - 20210822, 46847 - 1700 46814 + 20210906, 46815 + 651 46848 46816 ], 46849 46817 "deps": [ 46850 46818 "async", 46851 46819 "helm-core", 46852 46820 "popup" 46853 46821 ], 46854 - "commit": "64b8def85cab9550db0cff3eebaec09d80793a8c", 46855 - "sha256": "0bv0mb2dmw84jgmjr79r60276xcxw5lszw3k4a70d1fshmsc0sds" 46822 + "commit": "3fe4076076eea8d244793b80a0274de0d685bd9d", 46823 + "sha256": "0kwa2aabbvkr5wyp339ajrkwn4rk6gwq52ly86fskyq0n7263n7b" 46856 46824 }, 46857 46825 "stable": { 46858 46826 "version": [ ··· 47751 47719 "repo": "emacs-helm/helm", 47752 47720 "unstable": { 47753 47721 "version": [ 47754 - 20210822, 47755 - 952 47722 + 20210906, 47723 + 557 47756 47724 ], 47757 47725 "deps": [ 47758 47726 "async" 47759 47727 ], 47760 - "commit": "64b8def85cab9550db0cff3eebaec09d80793a8c", 47761 - "sha256": "0bv0mb2dmw84jgmjr79r60276xcxw5lszw3k4a70d1fshmsc0sds" 47728 + "commit": "3fe4076076eea8d244793b80a0274de0d685bd9d", 47729 + "sha256": "0kwa2aabbvkr5wyp339ajrkwn4rk6gwq52ly86fskyq0n7263n7b" 47762 47730 }, 47763 47731 "stable": { 47764 47732 "version": [ ··· 48059 48027 "dogears", 48060 48028 "helm" 48061 48029 ], 48062 - "commit": "c0fa3f6318c660234e77b108f8486dfc39869071", 48063 - "sha256": "0bafs58xrlwk2f8swykwhvs1wilvbm2593gjmvdrwhy4hwg0n6f2" 48030 + "commit": "00dd88cc53d3a7d6ddeb3c6eea2c2a37d9b610d6", 48031 + "sha256": "196gh32l18laawqypc9l08pmqrs48lj5g4wj2m1vl4c13mff5giz" 48064 48032 } 48065 48033 }, 48066 48034 { ··· 49381 49349 "repo": "emacs-helm/helm-ls-git", 49382 49350 "unstable": { 49383 49351 "version": [ 49384 - 20210729, 49385 - 911 49352 + 20210906, 49353 + 738 49386 49354 ], 49387 49355 "deps": [ 49388 49356 "helm" 49389 49357 ], 49390 - "commit": "d861fb407d72470db41ac458447b92c6d9b00206", 49391 - "sha256": "13hxglh5w70w5y7x4r7rqpa7npj4lfrajjjic8vizn71752cndkg" 49358 + "commit": "178192296acd59c53d933dfa55e8a27b8ce802cb", 49359 + "sha256": "1wrnjzj53n78bll3jlqr7gwlx4x2awxh2zr34y9q02izlgvwwq4z" 49392 49360 }, 49393 49361 "stable": { 49394 49362 "version": [ ··· 51518 51486 "repo": "duncanburke/help-find", 51519 51487 "unstable": { 51520 51488 "version": [ 51521 - 20210822, 51522 - 1704 51489 + 20210826, 51490 + 928 51523 51491 ], 51524 51492 "deps": [ 51525 51493 "dash" 51526 51494 ], 51527 - "commit": "b1d15676c5bc348821256ffa5aaea308f6f28ad4", 51528 - "sha256": "0pz6wxw0p4d5zfz2mb9f7mg6k25iqhik428yia3n77ra80jx8ncr" 51495 + "commit": "576d6505b9e42f50f121b1a6a675f17f03a04406", 51496 + "sha256": "064asvq6hfmrh3fnkm8dnarwmdgfm8f97mjng1bkf13wmnzglhck" 51529 51497 } 51530 51498 }, 51531 51499 { ··· 52587 52555 "repo": "tarsius/hl-todo", 52588 52556 "unstable": { 52589 52557 "version": [ 52590 - 20210615, 52591 - 1505 52558 + 20210828, 52559 + 1225 52592 52560 ], 52593 - "commit": "5ac0076cfeaea57f7c7a59d9d41a34c1bdc4b22e", 52594 - "sha256": "1h3h62rglgwir3jfy6wq9hkwlx6z28cs9dz8jv8xgpk1jsj89whw" 52561 + "commit": "d13a0892645536b970ce130a01ebe5f62e04689f", 52562 + "sha256": "0fw0qwxrc05paq17vdhvvwlzwrl351js8wf4mc5crkhahry9608a" 52595 52563 }, 52596 52564 "stable": { 52597 52565 "version": [ ··· 52981 52949 "deps": [ 52982 52950 "dash" 52983 52951 ], 52984 - "commit": "c9c0593b2bffd6a494f570d707fe8d4e97718da4", 52985 - "sha256": "16baysl5qpcl48gd64g7sq0bpdhjw21az7r7w21gfj12s2njqydf" 52952 + "commit": "d0f03552c30e31193d3dcce7e927ce24b207cbf6", 52953 + "sha256": "0ynf26gaj7n6cg0vgykq80hg21lxlwffwcssk9ppin0rqmc74m06" 52986 52954 }, 52987 52955 "stable": { 52988 52956 "version": [ ··· 53020 52988 "repo": "thanhvg/emacs-howdoyou", 53021 52989 "unstable": { 53022 52990 "version": [ 53023 - 20210816, 53024 - 507 52991 + 20210903, 52992 + 201 53025 52993 ], 53026 52994 "deps": [ 53027 52995 "org", 53028 52996 "promise", 53029 52997 "request" 53030 52998 ], 53031 - "commit": "4f3d70009c1368174355ca7a5eb1259f18ec5f34", 53032 - "sha256": "0j8i6c21jzdc88bvdsbshxgv62wvl95kham5w6kfkrlj0ld8i8yg" 52999 + "commit": "61489045a1b1982d9bcd307fcc5bbd9195133c06", 53000 + "sha256": "0crzd0qyq751rlljs31vxblyvjcyjzfnj2x78rmqp7vj6hyr7xfg" 53033 53001 } 53034 53002 }, 53035 53003 { ··· 53346 53314 "repo": "pnor/huecycle", 53347 53315 "unstable": { 53348 53316 "version": [ 53349 - 20210706, 53350 - 205 53317 + 20210830, 53318 + 340 53351 53319 ], 53352 - "commit": "c343b2085dea11b820d4da6c6183e1102ec08698", 53353 - "sha256": "1bdhm9j2dammw5dzr8gh4wg5pkl7c706jqdwd43my7zsn2ipar24" 53320 + "commit": "a05e32351dcff3e61b5f15800556adfe1939c112", 53321 + "sha256": "1qnid40hmz3yw5jr1i9xr91d57hjh90s98js48nk6m0sjbkkbb4r" 53354 53322 }, 53355 53323 "stable": { 53356 53324 "version": [ ··· 56233 56201 "repo": "dotemacs/ipcalc.el", 56234 56202 "unstable": { 56235 56203 "version": [ 56236 - 20200809, 56237 - 1444 56204 + 20210903, 56205 + 958 56238 56206 ], 56239 56207 "deps": [ 56240 56208 "cl-lib" 56241 56209 ], 56242 - "commit": "58b2b6c90af93ae46c5445b33ee4d1ef4bac1efb", 56243 - "sha256": "0v6ahhixp57p94m0sagidvq95m45bf4lfwszjzsn7a2wcrvap7r9" 56210 + "commit": "8d5af5b8e075f204c1e265174c96587886831996", 56211 + "sha256": "0a7rw26ibhmlnf9jjs6kf610k566mqzjvbd9rlmpwpi8awlfflky" 56244 56212 } 56245 56213 }, 56246 56214 { ··· 56690 56658 "repo": "abo-abo/swiper", 56691 56659 "unstable": { 56692 56660 "version": [ 56693 - 20210730, 56694 - 1743 56661 + 20210903, 56662 + 1814 56695 56663 ], 56696 - "commit": "7cdde66c95d5205287e88010bc7a3a978c931db0", 56697 - "sha256": "0pvgh4krym43vcyiq4bsjl63gg795jlqh6kaa6llsv1awvywfqww" 56664 + "commit": "6a8e5611f32cf7cc77c2c6974dc2d3a18f32d5a5", 56665 + "sha256": "0mwrvcnpl7cr8ynhx8ilmlbjqmggxccwa6w8k15j5i640chl19xh" 56698 56666 }, 56699 56667 "stable": { 56700 56668 "version": [ ··· 56721 56689 "avy", 56722 56690 "ivy" 56723 56691 ], 56724 - "commit": "7cdde66c95d5205287e88010bc7a3a978c931db0", 56725 - "sha256": "0pvgh4krym43vcyiq4bsjl63gg795jlqh6kaa6llsv1awvywfqww" 56692 + "commit": "6a8e5611f32cf7cc77c2c6974dc2d3a18f32d5a5", 56693 + "sha256": "0mwrvcnpl7cr8ynhx8ilmlbjqmggxccwa6w8k15j5i640chl19xh" 56726 56694 }, 56727 56695 "stable": { 56728 56696 "version": [ ··· 57089 57057 "hydra", 57090 57058 "ivy" 57091 57059 ], 57092 - "commit": "7cdde66c95d5205287e88010bc7a3a978c931db0", 57093 - "sha256": "0pvgh4krym43vcyiq4bsjl63gg795jlqh6kaa6llsv1awvywfqww" 57060 + "commit": "6a8e5611f32cf7cc77c2c6974dc2d3a18f32d5a5", 57061 + "sha256": "0mwrvcnpl7cr8ynhx8ilmlbjqmggxccwa6w8k15j5i640chl19xh" 57094 57062 }, 57095 57063 "stable": { 57096 57064 "version": [ ··· 58257 58225 20210615, 58258 58226 41 58259 58227 ], 58260 - "commit": "d7660096e7d49f9b2ebc8924c0f5b39c5ffa8c86", 58261 - "sha256": "1sw1cgykq9i6wdjjlqlw6jrdxnic615k96lbqyir84fizn55qcja" 58228 + "commit": "73aebe62e8adf8e737c9a94361cce45063d05ae4", 58229 + "sha256": "1zagxpz598ssn88mch1mzc2aqa7sx29q7y1ifw4mrglsicgrxlv7" 58262 58230 } 58263 58231 }, 58264 58232 { ··· 58559 58527 20200604, 58560 58528 833 58561 58529 ], 58562 - "commit": "42ad0a99f0114233e2cb317585cb9af494d18a2f", 58563 - "sha256": "1n4w45yv1k7979j42dahhp9356p9bmk6ldybqa0z65k9gz4abkxl" 58530 + "commit": "1af31ba701cf844f938f840ed78867c9a28174b6", 58531 + "sha256": "0zxqvy1vya0f0yrfp622hhf400cm5ygwl7mjdj5scwfk2y852xw1" 58564 58532 }, 58565 58533 "stable": { 58566 58534 "version": [ ··· 58808 58776 "repo": "mooz/js2-mode", 58809 58777 "unstable": { 58810 58778 "version": [ 58811 - 20210712, 58812 - 202 58779 + 20210830, 58780 + 12 58813 58781 ], 58814 58782 "deps": [ 58815 58783 "cl-lib" 58816 58784 ], 58817 - "commit": "6f313c9566d9c8453a91c5ccaa25760978cb9f6d", 58818 - "sha256": "09fxg0ljv2g9rv7n67km7q64w49fcl0gngm68m252nyvk2x28b08" 58785 + "commit": "b913961e410dbfdc52a80d62eb4cfe7a305b4e3e", 58786 + "sha256": "0xxb25a6vixzfxsndyy2mgwbpr4h5pm76fq9ibw7434yc8zjwmrj" 58819 58787 }, 58820 58788 "stable": { 58821 58789 "version": [ ··· 59258 59226 "repo": "JuliaEditorSupport/julia-emacs", 59259 59227 "unstable": { 59260 59228 "version": [ 59261 - 20210824, 59262 - 747 59229 + 20210904, 59230 + 908 59263 59231 ], 59264 - "commit": "a1ba9a03a4b18a0d9536753efee623ab7afca596", 59265 - "sha256": "0czmvm7nm91n9kg5cv6rc5wcw6vwyqfq2fr8lrm4dfzrwvf99204" 59232 + "commit": "06f6fdb94cdd88db7bb40b8f511a386605711408", 59233 + "sha256": "0153zh3vl6qmaw40v0b2kf81x6wfyxwgmc9iwvz4rximra9xxmyg" 59266 59234 }, 59267 59235 "stable": { 59268 59236 "version": [ ··· 59840 59808 20170418, 59841 59809 810 59842 59810 ], 59843 - "commit": "dd11d722b20ae720f29b8aa93a3b1cad87650b33", 59844 - "sha256": "07g0spi9jf48vap76f9rgl61sg3jqy03qdxnmchzwlia8wvcsscb" 59811 + "commit": "fcf0173ce0144e59de97ba8a7808192620e5f8f4", 59812 + "sha256": "1a2s19h4xgss8849lv5yl6g28hazz8k9vgzxyns2wzwc85pnbrhr" 59845 59813 } 59846 59814 }, 59847 59815 { ··· 60710 60678 20210318, 60711 60679 2106 60712 60680 ], 60713 - "commit": "49ef9ff24bf8f545243a30b1e49192d73c1b41f7", 60714 - "sha256": "0hs4d5fw1ic8vvzqiq7skb8ag2rdshmz71m2swl38s1bkhnbjbac" 60681 + "commit": "92ff508dc17831a57a4bb900d7bc218b577e066e", 60682 + "sha256": "1gmkf00mka99griysazipph27xfx42s5jfrrcy3mxwmlzs6zgfd3" 60715 60683 }, 60716 60684 "stable": { 60717 60685 "version": [ ··· 60897 60865 "repo": "Emacs-Kotlin-Mode-Maintainers/kotlin-mode", 60898 60866 "unstable": { 60899 60867 "version": [ 60900 - 20200925, 60901 - 1541 60868 + 20210831, 60869 + 1802 60902 60870 ], 60903 - "commit": "0e4bafb31d1fc2a0a420a521c2723d5526646c0b", 60904 - "sha256": "09inpgwmnnqaakyn4r4xs8kax8b89dw94kvl521x6d43h9zl5i70" 60871 + "commit": "876cc27dc105979a0b59782141785f8e172891e8", 60872 + "sha256": "1vyls3ilypxskhng96z1m8byripmbsghgfalsg4qnmn8lakaq68d" 60905 60873 } 60906 60874 }, 60907 60875 { ··· 61061 61029 "repo": "kubernetes-el/kubernetes-el", 61062 61030 "unstable": { 61063 61031 "version": [ 61064 - 20210825, 61065 - 1458 61032 + 20210830, 61033 + 2219 61066 61034 ], 61067 61035 "deps": [ 61068 61036 "dash", ··· 61071 61039 "transient", 61072 61040 "with-editor" 61073 61041 ], 61074 - "commit": "96d9a6f1ab673a014fa9d84763ab6568ef2b9849", 61075 - "sha256": "06smpnwv5jj335fx2acgh28dlpa2h631l9qwmd3gi47q5x6yyshq" 61042 + "commit": "6cd0e63d302197bed03f1ac74afcd92b6115c9f5", 61043 + "sha256": "02aqkfklm6zxclaw9gdip38qri10iwvnhy9xcby7f6x61m3x26j2" 61076 61044 }, 61077 61045 "stable": { 61078 61046 "version": [ 61079 61047 0, 61080 - 15, 61048 + 17, 61081 61049 0 61082 61050 ], 61083 61051 "deps": [ 61084 61052 "dash", 61085 - "magit", 61086 - "magit-popup" 61053 + "magit-popup", 61054 + "magit-section", 61055 + "transient", 61056 + "with-editor" 61087 61057 ], 61088 - "commit": "ea81874f0490cea310b09c57718aa0e5c83d578b", 61089 - "sha256": "13kra8y8laqk949phxwlw5q0lmv4yc9knql12srdys1hyvhczwx3" 61058 + "commit": "da188a441079b91a66a3fce9bf200e880bc82abd", 61059 + "sha256": "0xxxiqqn8n2a2fa49fijpbg2j7cc92s7vj70dz6hiw0782ql2078" 61090 61060 } 61091 61061 }, 61092 61062 { ··· 61097 61067 "repo": "kubernetes-el/kubernetes-el", 61098 61068 "unstable": { 61099 61069 "version": [ 61100 - 20210825, 61101 - 258 61070 + 20210830, 61071 + 2219 61102 61072 ], 61103 61073 "deps": [ 61104 61074 "evil", 61105 61075 "kubernetes" 61106 61076 ], 61107 - "commit": "96d9a6f1ab673a014fa9d84763ab6568ef2b9849", 61108 - "sha256": "06smpnwv5jj335fx2acgh28dlpa2h631l9qwmd3gi47q5x6yyshq" 61077 + "commit": "6cd0e63d302197bed03f1ac74afcd92b6115c9f5", 61078 + "sha256": "02aqkfklm6zxclaw9gdip38qri10iwvnhy9xcby7f6x61m3x26j2" 61109 61079 }, 61110 61080 "stable": { 61111 61081 "version": [ 61112 61082 0, 61113 - 15, 61083 + 17, 61114 61084 0 61115 61085 ], 61116 61086 "deps": [ 61117 61087 "evil", 61118 61088 "kubernetes" 61119 61089 ], 61120 - "commit": "ea81874f0490cea310b09c57718aa0e5c83d578b", 61121 - "sha256": "13kra8y8laqk949phxwlw5q0lmv4yc9knql12srdys1hyvhczwx3" 61090 + "commit": "da188a441079b91a66a3fce9bf200e880bc82abd", 61091 + "sha256": "0xxxiqqn8n2a2fa49fijpbg2j7cc92s7vj70dz6hiw0782ql2078" 61122 61092 } 61123 61093 }, 61124 61094 { ··· 61129 61099 "repo": "abrochard/kubernetes-helm", 61130 61100 "unstable": { 61131 61101 "version": [ 61132 - 20190201, 61133 - 320 61102 + 20210902, 61103 + 2232 61134 61104 ], 61135 61105 "deps": [ 61136 61106 "yaml-mode" 61137 61107 ], 61138 - "commit": "bdf9280899b5efab6d55ffd96bad716c5f8e75bc", 61139 - "sha256": "05fsxknp2jpmchvz49hpvh8xvkwl70ksar6ccjqrp7nqcn7cvz2j" 61108 + "commit": "95cf92600436f67bd7bfe650763e68635f5ecc8e", 61109 + "sha256": "0k1kk472yianf5sn05hxqfpza5yxm9lmr917wmw3mca17758hsgm" 61140 61110 } 61141 61111 }, 61142 61112 { ··· 61255 61225 "repo": "tecosaur/LaTeX-auto-activating-snippets", 61256 61226 "unstable": { 61257 61227 "version": [ 61258 - 20210819, 61259 - 1935 61228 + 20210826, 61229 + 1017 61260 61230 ], 61261 61231 "deps": [ 61262 61232 "aas", 61263 61233 "auctex", 61264 61234 "yasnippet" 61265 61235 ], 61266 - "commit": "af78f6a6eec6f2f1096ed9b72fc0570458365423", 61267 - "sha256": "1aw534hw7s0iijsyzzf4k496xjrx983whxvy13n7yqdmzqp728fz" 61236 + "commit": "a992e92bf80f5d9e401f916a9e74acce05af4a8e", 61237 + "sha256": "0di6p1wapm714vd8d85d1wwzlh68ikfjw3qpjninbmjrzw2bwqp4" 61268 61238 }, 61269 61239 "stable": { 61270 61240 "version": [ ··· 62087 62057 "repo": "pfitaxel/learn-ocaml.el", 62088 62058 "unstable": { 62089 62059 "version": [ 62090 - 20210820, 62091 - 2243 62060 + 20210831, 62061 + 1906 62092 62062 ], 62093 - "commit": "bcc48c818e34d518a0513e9d2c26fd92b3989c27", 62094 - "sha256": "1bv57ymdfs848347ckcl0c7jxdjzs12hpg7mcdih04yrlbvxrhq1" 62063 + "commit": "db13769ffc821dbcf6daa37f9add46de21ed1a3f", 62064 + "sha256": "1xxhbgyki8nkkjnfzqxllrcfmqlj6sqgvwxvqz7v4j6m40c745m6" 62095 62065 } 62096 62066 }, 62097 62067 { ··· 62541 62511 "repo": "merrickluo/liberime", 62542 62512 "unstable": { 62543 62513 "version": [ 62544 - 20210526, 62545 - 623 62514 + 20210906, 62515 + 626 62546 62516 ], 62547 - "commit": "4a6da0f6ab9b43651f3fcc73412e3480b9403caa", 62548 - "sha256": "04ag7icqqdhz40fi91fx4bxx8j6vw2774gw1fbppbks3sasimyy0" 62517 + "commit": "8291e22cd0990a99cb2f88ca67a9065a157f39af", 62518 + "sha256": "1zr34fsh4l4apdm1jpd9c8863wji5f0g8nwvzgf7bfi6q58bcwzn" 62549 62519 }, 62550 62520 "stable": { 62551 62521 "version": [ ··· 62619 62589 "repo": "jumper047/librera-sync", 62620 62590 "unstable": { 62621 62591 "version": [ 62622 - 20210810, 62623 - 529 62592 + 20210827, 62593 + 2300 62624 62594 ], 62625 62595 "deps": [ 62626 62596 "f" 62627 62597 ], 62628 - "commit": "b36ab4f3d8c9df1ed28d78b7d517e90195c97244", 62629 - "sha256": "0qmpk52j4fq5rp2kmsm9z8i97x6p458h2xvb53kv03r69ncxc595" 62598 + "commit": "b6b97adc08c26b1595249e1c129793100f4ca26e", 62599 + "sha256": "0795vbq794clynxcpqrzjsk8d3qisk71bpambcrbiwikpg051fv3" 62630 62600 } 62631 62601 }, 62632 62602 { ··· 62726 62696 20210303, 62727 62697 1751 62728 62698 ], 62729 - "commit": "c66377f83a7b178b6e6d8bef5c844420c47ecbdd", 62730 - "sha256": "083a97h9ir3qqc39z7dg03k75rg3knza1lzarp6fagxbxl25cprg" 62699 + "commit": "edd5c702a7b94440bd76f7ef16ca58f028d06ef6", 62700 + "sha256": "1ahmrhm2ym4qv26cf6gvfnnkx3h311v4lwdna3bzv2mw3rzfrlq6" 62731 62701 }, 62732 62702 "stable": { 62733 62703 "version": [ 62734 62704 0, 62735 - 23, 62705 + 24, 62736 62706 0 62737 62707 ], 62738 - "commit": "f3a1d941a08443d034a6c2e090b82ca5c28bdd86", 62739 - "sha256": "083a97h9ir3qqc39z7dg03k75rg3knza1lzarp6fagxbxl25cprg" 62708 + "commit": "c351737acfdd778b81a64065d8d20ebb10a006f0", 62709 + "sha256": "1ahmrhm2ym4qv26cf6gvfnnkx3h311v4lwdna3bzv2mw3rzfrlq6" 62740 62710 } 62741 62711 }, 62742 62712 { ··· 62782 62752 20180219, 62783 62753 1024 62784 62754 ], 62785 - "commit": "a52bd2bce9d6fb73dc7fe1e867e3ea804b5abd07", 62786 - "sha256": "18fl0f3j6bfv85pjcf0fggd0k6l6gxwvi19jrp3slzf0mhrlxd8k" 62755 + "commit": "7f51793fa6c037a90a90e47b433cc8a773a3b552", 62756 + "sha256": "0wd493d678587zc10y6hjlmjiacmj3xzw20zzfnvg2qr5nlqpl2g" 62787 62757 }, 62788 62758 "stable": { 62789 62759 "version": [ ··· 63014 62984 20210215, 63015 62985 2206 63016 62986 ], 63017 - "commit": "2b719baf0ccba79e28fcb3c2633c4849d976ac23", 63018 - "sha256": "0rxqam6cgi404m8n45mw73j3jdd2gb3iwpmyyixbv3cxfb7y1b0l" 62987 + "commit": "7330f08dd85ee715096f3596df516877894c6c2f", 62988 + "sha256": "1hlqairbjlrcbzb4r5fjm80znr9hdgny3vgm27dwwxxa340m0r6i" 63019 62989 }, 63020 62990 "stable": { 63021 62991 "version": [ ··· 63091 63061 "repo": "abo-abo/lispy", 63092 63062 "unstable": { 63093 63063 "version": [ 63094 - 20210809, 63095 - 1001 63064 + 20210906, 63065 + 1503 63096 63066 ], 63097 63067 "deps": [ 63098 63068 "ace-window", ··· 63101 63071 "iedit", 63102 63072 "zoutline" 63103 63073 ], 63104 - "commit": "5ef2e8967f1015e3936ee7a5bf3d3c4b93d5c3a7", 63105 - "sha256": "0a5gj6sa49lbn753r6b3xvxxjy2f2c2jv53y79g7mqgr7w6dcx40" 63074 + "commit": "e5d0f949f76df23245e3904463c433d0908e9b7f", 63075 + "sha256": "05qagghksg1m7dd0dijw0xjzn1yqpfb6n7vr759injpa39lswcrh" 63106 63076 }, 63107 63077 "stable": { 63108 63078 "version": [ ··· 64151 64121 20210825, 64152 64122 1323 64153 64123 ], 64154 - "commit": "9127dd0876567c8db306793e9c5e8151b9ab392c", 64155 - "sha256": "00mvvxrbz0qd73a5jqdlfd1s1mxkw63lcyy5mklp5amfrznwp6m6" 64124 + "commit": "71f0b40cdcffdbae84214d3d82c0a8aae154a69f", 64125 + "sha256": "19s5617vx5xm932anyplwcjld0p589lplkvsi4p2g69ximjlmih1" 64156 64126 }, 64157 64127 "stable": { 64158 64128 "version": [ ··· 64172 64142 "repo": "okamsn/loopy", 64173 64143 "unstable": { 64174 64144 "version": [ 64175 - 20210811, 64176 - 244 64145 + 20210906, 64146 + 1614 64177 64147 ], 64178 64148 "deps": [ 64179 - "map" 64149 + "map", 64150 + "seq" 64180 64151 ], 64181 - "commit": "c37b669a12337fa04c3dad96bd52e9ae961f14e8", 64182 - "sha256": "038440d1ki353nkkiphp46z19y9n8q3l4f4fw01wgi21mdai2y7w" 64152 + "commit": "74840299407b23a75bd415903a2157e71e68bd7f", 64153 + "sha256": "0fl8wxv84h9y7vp4rgfa9qarsdhh42qmx7d8mpk3fqmgz8a6fm7m" 64154 + }, 64155 + "stable": { 64156 + "version": [ 64157 + 0, 64158 + 9, 64159 + 1 64160 + ], 64161 + "deps": [ 64162 + "map", 64163 + "seq" 64164 + ], 64165 + "commit": "f75f906397fb95a20ecdb61589d02712de0264fb", 64166 + "sha256": "02za26xsivayqmdbs2fy36vp1jvlvr5zanb19ayglbpakmg8ply2" 64183 64167 } 64184 64168 }, 64185 64169 { ··· 64190 64174 "repo": "okamsn/loopy", 64191 64175 "unstable": { 64192 64176 "version": [ 64193 - 20210810, 64194 - 307 64177 + 20210906, 64178 + 1539 64179 + ], 64180 + "deps": [ 64181 + "dash", 64182 + "loopy" 64183 + ], 64184 + "commit": "74840299407b23a75bd415903a2157e71e68bd7f", 64185 + "sha256": "0fl8wxv84h9y7vp4rgfa9qarsdhh42qmx7d8mpk3fqmgz8a6fm7m" 64186 + }, 64187 + "stable": { 64188 + "version": [ 64189 + 0, 64190 + 9, 64191 + 1 64195 64192 ], 64196 64193 "deps": [ 64197 64194 "dash", 64198 64195 "loopy" 64199 64196 ], 64200 - "commit": "c37b669a12337fa04c3dad96bd52e9ae961f14e8", 64201 - "sha256": "038440d1ki353nkkiphp46z19y9n8q3l4f4fw01wgi21mdai2y7w" 64197 + "commit": "f75f906397fb95a20ecdb61589d02712de0264fb", 64198 + "sha256": "02za26xsivayqmdbs2fy36vp1jvlvr5zanb19ayglbpakmg8ply2" 64202 64199 } 64203 64200 }, 64204 64201 { ··· 64265 64262 "repo": "emacs-lsp/lsp-dart", 64266 64263 "unstable": { 64267 64264 "version": [ 64268 - 20210819, 64269 - 106 64265 + 20210829, 64266 + 27 64270 64267 ], 64271 64268 "deps": [ 64272 64269 "dap-mode", ··· 64274 64271 "dash", 64275 64272 "f", 64276 64273 "lsp-mode", 64277 - "lsp-treemacs", 64278 - "pkg-info" 64274 + "lsp-treemacs" 64279 64275 ], 64280 - "commit": "ac52f45742fa5862611b3af04ac679076f100144", 64281 - "sha256": "13h2qmhlva5i64n2ybgar71mxnrvxzybh6gwb8xv02zjbbdy9im7" 64276 + "commit": "64fb5d93038483abab59751200749ad81698a845", 64277 + "sha256": "19b1y5fd0ik3s96qzma4ym3m2x1720x9z0hjpxx61s4y8wgngnyy" 64282 64278 }, 64283 64279 "stable": { 64284 64280 "version": [ 64285 64281 1, 64286 - 19, 64287 - 2 64282 + 20, 64283 + 0 64288 64284 ], 64289 64285 "deps": [ 64290 64286 "dap-mode", ··· 64292 64288 "dash", 64293 64289 "f", 64294 64290 "lsp-mode", 64295 - "lsp-treemacs", 64296 - "pkg-info" 64291 + "lsp-treemacs" 64297 64292 ], 64298 - "commit": "ac52f45742fa5862611b3af04ac679076f100144", 64299 - "sha256": "13h2qmhlva5i64n2ybgar71mxnrvxzybh6gwb8xv02zjbbdy9im7" 64293 + "commit": "1a839dcdedac47c90b4f82f456fea0a7cacf2940", 64294 + "sha256": "0m1bccpamxvasimdg6pq28lnbwy2v2xnzjradbl93x7c2drsvnik" 64300 64295 } 64301 64296 }, 64302 64297 { ··· 64433 64428 "repo": "emacs-lsp/lsp-ivy", 64434 64429 "unstable": { 64435 64430 "version": [ 64436 - 20210518, 64437 - 2034 64431 + 20210904, 64432 + 2043 64438 64433 ], 64439 64434 "deps": [ 64440 64435 "dash", 64441 64436 "ivy", 64442 64437 "lsp-mode" 64443 64438 ], 64444 - "commit": "bccd86028e669f5a1cad78364775fe7a0741ff93", 64445 - "sha256": "0c1vpriamxnlb8hfnp4cfdkwd4y4gq6zdvhb93gvlf4mh3qmjcd6" 64439 + "commit": "3e87441a625d65ced5a208a0b0442d573596ffa3", 64440 + "sha256": "0nb9ypa8hyx7i38rbywh8hn2i5f9l2l567hvdr9767fk279yr97n" 64446 64441 }, 64447 64442 "stable": { 64448 64443 "version": [ 64449 64444 0, 64450 - 4 64445 + 5 64451 64446 ], 64452 64447 "deps": [ 64453 64448 "dash", 64454 64449 "ivy", 64455 64450 "lsp-mode" 64456 64451 ], 64457 - "commit": "4cdb739fc2bc47f7d4dcad824f9240c70c4cb37d", 64458 - "sha256": "08dpn0vcfdwwysijwdpnnj91m69yw0q464i0wmp51zpj3dyd4kb1" 64452 + "commit": "3e87441a625d65ced5a208a0b0442d573596ffa3", 64453 + "sha256": "0nb9ypa8hyx7i38rbywh8hn2i5f9l2l567hvdr9767fk279yr97n" 64459 64454 } 64460 64455 }, 64461 64456 { ··· 64566 64561 "julia-mode", 64567 64562 "lsp-mode" 64568 64563 ], 64569 - "commit": "d4a7a27d6ac7c6831b4f493dd89f82fa0c75bdf5", 64570 - "sha256": "1rkf2ibjilf023fv68ql4bray8bdnl2biq5zmn1qk5pdp988iq4j" 64564 + "commit": "809da95c05fe668acbae5a35e03082d9b9577728", 64565 + "sha256": "1v3f9hwbnd4vji6say5k9110ac4qbc3gd7hb62pvsbfa7vqd06gi" 64571 64566 }, 64572 64567 "stable": { 64573 64568 "version": [ ··· 64621 64616 "repo": "emacs-languagetool/lsp-ltex", 64622 64617 "unstable": { 64623 64618 "version": [ 64624 - 20210813, 64625 - 916 64619 + 20210826, 64620 + 1034 64626 64621 ], 64627 64622 "deps": [ 64628 64623 "f", 64629 - "lsp-mode" 64624 + "lsp-mode", 64625 + "s" 64630 64626 ], 64631 - "commit": "d9148a65961432b6ea8a4cd20c225f8c188e6dbe", 64632 - "sha256": "0v5q51jxkxmm6pipvq9jf2s33mnrf8679ymx5fg51pk1hv0svcih" 64627 + "commit": "59ecc6db3bcf80568241be2d99bb7ef60c58e502", 64628 + "sha256": "0avl1ifkc106gaznpwli0gqwfbfsxj8zij3sc4vy2d00ppr4173r" 64633 64629 }, 64634 64630 "stable": { 64635 64631 "version": [ 64636 64632 0, 64637 - 1, 64633 + 2, 64638 64634 0 64639 64635 ], 64640 64636 "deps": [ 64641 - "lsp-mode" 64637 + "f", 64638 + "lsp-mode", 64639 + "s" 64642 64640 ], 64643 - "commit": "5546970c7949d498947e4b6a281707feb2aee928", 64644 - "sha256": "0s7v43jmpbjjxvfp9s51kc5d9mk3kf5mwvc4iwbvrzpi0ar4vfdy" 64641 + "commit": "5d25bfdc80da46b4839289164d1c4c3699c8908f", 64642 + "sha256": "1xf1pxbgjql9badcb1wayzv7j117syh488y82m5q061nnpq4lz06" 64645 64643 } 64646 64644 }, 64647 64645 { ··· 64696 64694 "repo": "emacs-lsp/lsp-mode", 64697 64695 "unstable": { 64698 64696 "version": [ 64699 - 20210825, 64700 - 1531 64697 + 20210905, 64698 + 1124 64701 64699 ], 64702 64700 "deps": [ 64703 64701 "dash", ··· 64707 64705 "markdown-mode", 64708 64706 "spinner" 64709 64707 ], 64710 - "commit": "0b4bfd43474b5e317e617834261a2b528e3f8ed4", 64711 - "sha256": "1flzknh7mls1fg4w72iv36k77lrpkaysxdd0z922xqsg6x48znb9" 64708 + "commit": "d9c8ed3a932b568614d9bbf682271cf43bb8ec73", 64709 + "sha256": "0bj87sfadry03lsnlmy4d75za5a2q5p8i981pnz8gvhi154fhz93" 64712 64710 }, 64713 64711 "stable": { 64714 64712 "version": [ 64715 - 7, 64713 + 8, 64716 64714 0, 64717 - 1 64715 + 0 64718 64716 ], 64719 64717 "deps": [ 64720 64718 "dash", 64721 - "dash-functional", 64722 64719 "f", 64723 64720 "ht", 64724 64721 "lv", 64725 64722 "markdown-mode", 64726 64723 "spinner" 64727 64724 ], 64728 - "commit": "4db1151dbf1fe84769433d841e90803448b0b354", 64729 - "sha256": "1z8zm7qr21hvhl6rnbznv2l9drh1pp5y4zkjrx5ac4x77b8i4aaz" 64725 + "commit": "5e0524cc9a4e21c4fe5b35153ad33e7b8a4f9117", 64726 + "sha256": "1a6jc9sxf9b8fj9h8xlv5k546bkzsy8j5nj19cfama389z0bzcsl" 64730 64727 } 64731 64728 }, 64732 64729 { ··· 64959 64956 "repo": "emacs-lsp/lsp-sourcekit", 64960 64957 "unstable": { 64961 64958 "version": [ 64962 - 20210404, 64963 - 1624 64959 + 20210905, 64960 + 2017 64964 64961 ], 64965 64962 "deps": [ 64966 64963 "lsp-mode" 64967 64964 ], 64968 - "commit": "ae4aa8705cc3a27ed86f1e7ee04d5c8f0522d8c0", 64969 - "sha256": "0q3dji9qy0aj7ai43xjcpb4hy6kvscrpr8r5cb9137g34zc0pd9x" 64965 + "commit": "97ff36b228a61e69734c7180f33cc6951b1a600f", 64966 + "sha256": "1pal3mga7nwfcvri1cffsjgcbbhk7wd1icd622qspqgq0zkfs8jd" 64970 64967 } 64971 64968 }, 64972 64969 { ··· 64977 64974 "repo": "merrickluo/lsp-tailwindcss", 64978 64975 "unstable": { 64979 64976 "version": [ 64980 - 20210605, 64981 - 315 64977 + 20210826, 64978 + 1046 64979 + ], 64980 + "deps": [ 64981 + "lsp-mode" 64982 + ], 64983 + "commit": "5250c4305f2334796d65779c7b61442e17d7c69b", 64984 + "sha256": "10xlb3gqlsx9k716mmrvpwlsdn086vr0jiqakcj2f5vixpxj1sxy" 64985 + }, 64986 + "stable": { 64987 + "version": [ 64988 + 0, 64989 + 2 64982 64990 ], 64983 64991 "deps": [ 64984 64992 "lsp-mode" 64985 64993 ], 64986 - "commit": "77ebadcb7decd953c069b421a7ab18188295e4b6", 64987 - "sha256": "0s34djc945zbzykazrd7k8gizbfws3xp8rjdbnplg4996k1c71n1" 64994 + "commit": "5250c4305f2334796d65779c7b61442e17d7c69b", 64995 + "sha256": "10xlb3gqlsx9k716mmrvpwlsdn086vr0jiqakcj2f5vixpxj1sxy" 64988 64996 } 64989 64997 }, 64990 64998 { ··· 64995 65003 "repo": "emacs-lsp/lsp-treemacs", 64996 65004 "unstable": { 64997 65005 "version": [ 64998 - 20210618, 64999 - 1722 65006 + 20210904, 65007 + 2039 65000 65008 ], 65001 65009 "deps": [ 65002 65010 "dash", ··· 65005 65013 "lsp-mode", 65006 65014 "treemacs" 65007 65015 ], 65008 - "commit": "905cc74726438cf06d8ad7cabb2efae75aeb2359", 65009 - "sha256": "0kh8yn80x1fgpcvrgj9bqmlhpnkxqsy57w8m06gws8lhlnrh4yk9" 65016 + "commit": "d82df44d632f331a46eaf1f7a37eb6b1ada0c69b", 65017 + "sha256": "05ivqa5900139jzjhwc3nggwznhm8564dz4ydcxym2ddd63571k0" 65010 65018 }, 65011 65019 "stable": { 65012 65020 "version": [ 65013 65021 0, 65014 - 3 65022 + 4 65015 65023 ], 65016 65024 "deps": [ 65017 65025 "dash", 65018 - "dash-functional", 65019 65026 "f", 65020 65027 "ht", 65021 65028 "lsp-mode", 65022 65029 "treemacs" 65023 65030 ], 65024 - "commit": "08e256c45d2e95b510a98a8b88b0531e8785e519", 65025 - "sha256": "1z9cb7i546pbzvxii6lsj31jq8m70xrzscphl5z71vh93sydyhkb" 65031 + "commit": "d82df44d632f331a46eaf1f7a37eb6b1ada0c69b", 65032 + "sha256": "05ivqa5900139jzjhwc3nggwznhm8564dz4ydcxym2ddd63571k0" 65026 65033 } 65027 65034 }, 65028 65035 { ··· 65033 65040 "repo": "emacs-lsp/lsp-ui", 65034 65041 "unstable": { 65035 65042 "version": [ 65036 - 20210820, 65037 - 1331 65043 + 20210904, 65044 + 2037 65038 65045 ], 65039 65046 "deps": [ 65040 65047 "dash", 65041 65048 "lsp-mode", 65042 65049 "markdown-mode" 65043 65050 ], 65044 - "commit": "5d643fbb0c4ef5fc4ee93d9894bf68388095160a", 65045 - "sha256": "0005kcj9kr76d5cgviyyfjm9mm13ncra08p8s903b50sm2hsxpp8" 65051 + "commit": "b625f3cb5e88559ab99bec58f7a14272edb296bc", 65052 + "sha256": "00yirx6qzlb8fv8rd53zaw93nw72z3br40rb16scdqj1v20qsp47" 65046 65053 }, 65047 65054 "stable": { 65048 65055 "version": [ 65049 - 7, 65056 + 8, 65050 65057 0, 65051 - 1 65058 + 0 65052 65059 ], 65053 65060 "deps": [ 65054 65061 "dash", 65055 - "dash-functional", 65056 65062 "lsp-mode", 65057 65063 "markdown-mode" 65058 65064 ], 65059 - "commit": "449f3a6b80a60d88c4ed300e69d64eb8e875f1c7", 65060 - "sha256": "09dmhhxmfjnzdc5kygwsjf8nwqlnq9rbgrca679s2wy93miqj7vc" 65065 + "commit": "b625f3cb5e88559ab99bec58f7a14272edb296bc", 65066 + "sha256": "00yirx6qzlb8fv8rd53zaw93nw72z3br40rb16scdqj1v20qsp47" 65061 65067 } 65062 65068 }, 65063 65069 { ··· 65260 65266 } 65261 65267 }, 65262 65268 { 65269 + "ename": "lyrics-fetcher", 65270 + "commit": "56073782eb8ef6a9e1391c03473b245be2aff0df", 65271 + "sha256": "1hji68ig1zldry6xrs2p62pcmfa5px9381ic84zhs02c0hsh1piv", 65272 + "fetcher": "github", 65273 + "repo": "SqrtMinusOne/lyrics-fetcher.el", 65274 + "unstable": { 65275 + "version": [ 65276 + 20210828, 65277 + 813 65278 + ], 65279 + "deps": [ 65280 + "emms", 65281 + "f", 65282 + "request" 65283 + ], 65284 + "commit": "4545f5c5609166198b5f6f2e12de7309d294b629", 65285 + "sha256": "135qiprw4r03s1cjkq2hr8i4a6p2aapiz07cw697mhkr3rvvvbam" 65286 + }, 65287 + "stable": { 65288 + "version": [ 65289 + 0, 65290 + 1, 65291 + 4 65292 + ], 65293 + "deps": [ 65294 + "emms", 65295 + "f", 65296 + "request" 65297 + ], 65298 + "commit": "4545f5c5609166198b5f6f2e12de7309d294b629", 65299 + "sha256": "135qiprw4r03s1cjkq2hr8i4a6p2aapiz07cw697mhkr3rvvvbam" 65300 + } 65301 + }, 65302 + { 65263 65303 "ename": "m-buffer", 65264 65304 "commit": "c34d02682e87c9978a3583bd903dcac5da5b41d5", 65265 65305 "sha256": "17smq7wlidsls870hla5b94xq2pwk24b88jvrbbcqw6f5z3ypf94", ··· 65496 65536 "repo": "roadrunner1776/magik", 65497 65537 "unstable": { 65498 65538 "version": [ 65499 - 20210728, 65500 - 1354 65539 + 20210903, 65540 + 1345 65501 65541 ], 65502 - "commit": "d221002128b7954fb5705c37b974223514a9c4f0", 65503 - "sha256": "0h04i2xif8iqlrp85kp3p34snzhfcgqcf65asd1qblh0qlhp37gn" 65542 + "commit": "d5da43b6a49b7b6a0b6b9ed19c13ac5a076b79b2", 65543 + "sha256": "15d4vzr4cww25ic6im9372nl43pdsn8bm9hnpyqjfg3c3axnfp4l" 65504 65544 }, 65505 65545 "stable": { 65506 65546 "version": [ ··· 65520 65560 "repo": "magit/magit", 65521 65561 "unstable": { 65522 65562 "version": [ 65523 - 20210822, 65524 - 529 65563 + 20210906, 65564 + 1023 65525 65565 ], 65526 65566 "deps": [ 65527 65567 "dash", ··· 65530 65570 "transient", 65531 65571 "with-editor" 65532 65572 ], 65533 - "commit": "5a0cf9aaa9acf53c68c0fe98883c081aa5e29dd3", 65534 - "sha256": "16ihqh9aqjgjs14p5i17bw0wrcc1kpzvj62fn7bk8almdy6ph4dn" 65573 + "commit": "d173de73e96e207d4ba3821e1d720c8d81f6bafb", 65574 + "sha256": "1yq077j2fvmgpji6arlliq00bcs08bhl877fsklhq6j0yif1vz9s" 65535 65575 }, 65536 65576 "stable": { 65537 65577 "version": [ ··· 65710 65750 "repo": "emacsorphanage/magit-gerrit", 65711 65751 "unstable": { 65712 65752 "version": [ 65713 - 20210817, 65714 - 1949 65753 + 20210831, 65754 + 1453 65715 65755 ], 65716 65756 "deps": [ 65717 65757 "magit", 65718 65758 "transient" 65719 65759 ], 65720 - "commit": "45ed8559171a6392d305f6626d0a8228341f88b2", 65721 - "sha256": "0ghcxhi7zwk44lyckbs8n4g7ip9ab8n5bgv45r3xv49snnv5glpx" 65760 + "commit": "9104713f6ea918e9faaf25f2cc182c65029db936", 65761 + "sha256": "0sasd9q8a3cisys979djdzidxiwcf6n612gajhrhd6fpssdc3rr1" 65722 65762 }, 65723 65763 "stable": { 65724 65764 "version": [ ··· 65878 65918 "libgit", 65879 65919 "magit" 65880 65920 ], 65881 - "commit": "5a0cf9aaa9acf53c68c0fe98883c081aa5e29dd3", 65882 - "sha256": "16ihqh9aqjgjs14p5i17bw0wrcc1kpzvj62fn7bk8almdy6ph4dn" 65921 + "commit": "d173de73e96e207d4ba3821e1d720c8d81f6bafb", 65922 + "sha256": "1yq077j2fvmgpji6arlliq00bcs08bhl877fsklhq6j0yif1vz9s" 65883 65923 }, 65884 65924 "stable": { 65885 65925 "version": [ ··· 66040 66080 "repo": "magit/magit", 66041 66081 "unstable": { 66042 66082 "version": [ 66043 - 20210819, 66044 - 1119 66083 + 20210829, 66084 + 1849 66045 66085 ], 66046 66086 "deps": [ 66047 66087 "dash" 66048 66088 ], 66049 - "commit": "5a0cf9aaa9acf53c68c0fe98883c081aa5e29dd3", 66050 - "sha256": "16ihqh9aqjgjs14p5i17bw0wrcc1kpzvj62fn7bk8almdy6ph4dn" 66089 + "commit": "d173de73e96e207d4ba3821e1d720c8d81f6bafb", 66090 + "sha256": "1yq077j2fvmgpji6arlliq00bcs08bhl877fsklhq6j0yif1vz9s" 66051 66091 }, 66052 66092 "stable": { 66053 66093 "version": [ ··· 66842 66882 "repo": "minad/marginalia", 66843 66883 "unstable": { 66844 66884 "version": [ 66845 - 20210823, 66846 - 1004 66885 + 20210905, 66886 + 1700 66847 66887 ], 66848 - "commit": "207eb405706f5415dd0daf490925648fd058cc42", 66849 - "sha256": "0sgb4682kz6qyrj4il551yvcz7kbnblh8yxbysjw4psn3aayyam0" 66888 + "commit": "cb1d3ba604dda17d8d44e7355ad76a1651830a30", 66889 + "sha256": "1lvw0vvb7zmpxlvrvzis6j558n00rlg9jkcnnhzsqqjwfvglhqp8" 66850 66890 }, 66851 66891 "stable": { 66852 66892 "version": [ ··· 66962 67002 "repo": "jrblevin/markdown-mode", 66963 67003 "unstable": { 66964 67004 "version": [ 66965 - 20210819, 66966 - 57 67005 + 20210904, 67006 + 733 66967 67007 ], 66968 - "commit": "0839d0709e116584bd070305e4a0d28bd03bc547", 66969 - "sha256": "04xsls7lffvhxif9c5z3ycq80yf0l31z9znmj9m3z132k7rz3bs4" 67008 + "commit": "4810cac10355310ec76cd0946d0af92d595b3b81", 67009 + "sha256": "0yl98mk1qbgwk3qhnkq73njfkrb7hxydk66lax9r2900dnrifhlg" 66970 67010 }, 66971 67011 "stable": { 66972 67012 "version": [ ··· 67036 67076 "repo": "ardumont/markdown-toc", 67037 67077 "unstable": { 67038 67078 "version": [ 67039 - 20210629, 67040 - 931 67079 + 20210905, 67080 + 738 67041 67081 ], 67042 67082 "deps": [ 67043 67083 "dash", 67044 67084 "markdown-mode", 67045 67085 "s" 67046 67086 ], 67047 - "commit": "f78cba9b5761c91058fed3a781bd3fed7f996e1f", 67048 - "sha256": "12dddxa14ppa7gaayify67w4sc6ncbc68wdg4madfqj7s71lnm45" 67087 + "commit": "3d724e518a897343b5ede0b976d6fb46c46bcc01", 67088 + "sha256": "01l48njg0x7gkssvw9nv3yq97866r945izbggx9y3z5ckr1w4hlc" 67049 67089 }, 67050 67090 "stable": { 67051 67091 "version": [ ··· 67282 67322 "repo": "cpaulik/emacs-material-theme", 67283 67323 "unstable": { 67284 67324 "version": [ 67285 - 20201224, 67286 - 916 67325 + 20210904, 67326 + 1226 67287 67327 ], 67288 - "commit": "67a496c937542f6ee7c4a2164d23f0296ef3a645", 67289 - "sha256": "14n0s4yn76b7a0qifabp1lp9g0zq82xwahz1wb5wfyfc3d0px9ck" 67328 + "commit": "6823009bc92f82aa3a90e27e1009f7da8e87b648", 67329 + "sha256": "1c0z2dxfwzgl71xwli3dmyn96xadm5wnhnp5inv5f01mp7iwhf8a" 67290 67330 }, 67291 67331 "stable": { 67292 67332 "version": [ ··· 67906 67946 20210720, 67907 67947 950 67908 67948 ], 67909 - "commit": "5ca4857302c2d2d329fd01d0db6a22fa5922b42a", 67910 - "sha256": "1007z1dr45b588sifb77a7q5g6l0q8mxr4p5scbrbb9f75cpsy9g" 67949 + "commit": "e4791e22986993c36c3f5c91e8dff93494cc232e", 67950 + "sha256": "16hkwzsw3igb9ybcjmbmxhrhgy78m8465fv3vys7w3783w6bzkxx" 67911 67951 }, 67912 67952 "stable": { 67913 67953 "version": [ ··· 67936 67976 "auto-complete", 67937 67977 "merlin" 67938 67978 ], 67939 - "commit": "5ca4857302c2d2d329fd01d0db6a22fa5922b42a", 67940 - "sha256": "1007z1dr45b588sifb77a7q5g6l0q8mxr4p5scbrbb9f75cpsy9g" 67979 + "commit": "e4791e22986993c36c3f5c91e8dff93494cc232e", 67980 + "sha256": "16hkwzsw3igb9ybcjmbmxhrhgy78m8465fv3vys7w3783w6bzkxx" 67941 67981 }, 67942 67982 "stable": { 67943 67983 "version": [ ··· 67970 68010 "company", 67971 68011 "merlin" 67972 68012 ], 67973 - "commit": "5ca4857302c2d2d329fd01d0db6a22fa5922b42a", 67974 - "sha256": "1007z1dr45b588sifb77a7q5g6l0q8mxr4p5scbrbb9f75cpsy9g" 68013 + "commit": "e4791e22986993c36c3f5c91e8dff93494cc232e", 68014 + "sha256": "16hkwzsw3igb9ybcjmbmxhrhgy78m8465fv3vys7w3783w6bzkxx" 67975 68015 }, 67976 68016 "stable": { 67977 68017 "version": [ ··· 68033 68073 "iedit", 68034 68074 "merlin" 68035 68075 ], 68036 - "commit": "5ca4857302c2d2d329fd01d0db6a22fa5922b42a", 68037 - "sha256": "1007z1dr45b588sifb77a7q5g6l0q8mxr4p5scbrbb9f75cpsy9g" 68076 + "commit": "e4791e22986993c36c3f5c91e8dff93494cc232e", 68077 + "sha256": "16hkwzsw3igb9ybcjmbmxhrhgy78m8465fv3vys7w3783w6bzkxx" 68038 68078 }, 68039 68079 "stable": { 68040 68080 "version": [ ··· 68109 68149 } 68110 68150 }, 68111 68151 { 68152 + "ename": "message-view-patch", 68153 + "commit": "93cf8649172e3b4d552e20f4ea27c439a891dfbd", 68154 + "sha256": "1vik1hkv30a379c9lyjw032iing54ykq9pkqyy5zkwk92dkr5mhm", 68155 + "fetcher": "github", 68156 + "repo": "seanfarley/message-view-patch", 68157 + "unstable": { 68158 + "version": [ 68159 + 20210904, 68160 + 2227 68161 + ], 68162 + "deps": [ 68163 + "magit" 68164 + ], 68165 + "commit": "50dd3d92a1794f24b7e375b74e5199c63b54a2d8", 68166 + "sha256": "0l2wpapm0gng4jwicwi6w2sz71v4f2j99faakyh07acyvry1wdbi" 68167 + } 68168 + }, 68169 + { 68112 68170 "ename": "messages-are-flowing", 68113 68171 "commit": "855ea20024b606314f8590129259747cac0bcc97", 68114 68172 "sha256": "0v74b7cjj87kncndxfpfs6dcc4jcl18wpbirffl7dw6mac2anw6m", ··· 68580 68638 20210710, 68581 68639 1941 68582 68640 ], 68583 - "commit": "b07faabfec1b5ba545dc1cb961545cc1e9d78db0", 68584 - "sha256": "0b7znsgvycfx2brk782mi0n8i779n1r7pqwfq7s256rgi4fcyzap" 68641 + "commit": "57a049b9e1ea4a9b65e82fc10c8c7e70a042f636", 68642 + "sha256": "0bhsicy4van5xml8s9if2q7b36fbnzqg7kbg41zknf7nyhzl8pxi" 68585 68643 } 68586 68644 }, 68587 68645 { ··· 68689 68747 ], 68690 68748 "commit": "e8dcddc24d4f2e8d7987336fb58259e3cc78bbcb", 68691 68749 "sha256": "07nbn2pwlp33kr136xsm6lzddhjs538xkz0fbays89psblmy4kwj" 68750 + } 68751 + }, 68752 + { 68753 + "ename": "minibuffer-modifier-keys", 68754 + "commit": "589d2ad3a1d509eda5ba0b04025b6472e8e7cd0b", 68755 + "sha256": "0ijniq92bfsbk68y6g9l9f4aykwydm990mjy5lhkr1dwpn8z7fpy", 68756 + "fetcher": "github", 68757 + "repo": "SpringHan/minibuffer-modifier-keys", 68758 + "unstable": { 68759 + "version": [ 68760 + 20210823, 68761 + 713 68762 + ], 68763 + "commit": "38da548225f51ca7bca22d3e9b0de78e3b9e6cdd", 68764 + "sha256": "14xv0v1j1p67hlccw9a137d7hi62pwzllirdx5ixnd2lc7xfg402" 68692 68765 } 68693 68766 }, 68694 68767 { ··· 69425 69498 "repo": "protesilaos/modus-themes", 69426 69499 "unstable": { 69427 69500 "version": [ 69428 - 20210804, 69429 - 1453 69501 + 20210906, 69502 + 1104 69430 69503 ], 69431 - "commit": "52532a1ac2f3b707e79ba67ada8bf36846e45048", 69432 - "sha256": "1y12c9xjs6liwgwbfvy5w8sm9kn6ww8imqgkji8nncpjy3vp81vs" 69504 + "commit": "a30b42395cdfd8759b71193e2f0804c8e54926ad", 69505 + "sha256": "12d6mg6nx7lirj0cb4r90rcnnzrlmk3165lcmcmxrjj6v7g523yr" 69433 69506 }, 69434 69507 "stable": { 69435 69508 "version": [ ··· 69724 69797 "repo": "jessieh/mood-line", 69725 69798 "unstable": { 69726 69799 "version": [ 69727 - 20200722, 69728 - 2327 69800 + 20210903, 69801 + 1142 69729 69802 ], 69730 - "commit": "64cbd61c3d9ebf8eb7e1b6366279e32382405f90", 69731 - "sha256": "0fh9j9fkgl433nykfzjnzap5labi4sdndfk1nv4f904ij69pmvxb" 69803 + "commit": "34a1304edeb5a71ab22132bef8b4251f41cd1cda", 69804 + "sha256": "1xzyij1knr0z5mihakq17mnhh994jd035g48xvq7qgk4f0r09pih" 69732 69805 }, 69733 69806 "stable": { 69734 69807 "version": [ ··· 69978 70051 } 69979 70052 }, 69980 70053 { 69981 - "ename": "mouse-slider-mode", 69982 - "commit": "8fa747999bb928c3836400a43d8ab63939381673", 69983 - "sha256": "0aqxjm78k7i8c59w6mw9wsfw3rail1pg40ac1dbcjkm62fjbh5hy", 69984 - "fetcher": "github", 69985 - "repo": "skeeto/mouse-slider-mode", 69986 - "unstable": { 69987 - "version": [ 69988 - 20161021, 69989 - 1914 69990 - ], 69991 - "deps": [ 69992 - "cl-lib" 69993 - ], 69994 - "commit": "b3c19cd231edecce76787c5a9bbe5e4046d91f88", 69995 - "sha256": "1qkbrwicp3gaknnmfrajf1qdyhj5s0c09cx62869rp2721p8rqaw" 69996 - } 69997 - }, 69998 - { 69999 70054 "ename": "move-dup", 70000 70055 "commit": "3ea1f7f015a366192492981ff75672fc363c6c18", 70001 70056 "sha256": "0b0lmiisl9yckblwf7619if88qsmbka3bl4qiaqam7fka7psxs7f", ··· 70068 70123 } 70069 70124 }, 70070 70125 { 70071 - "ename": "moz", 70072 - "commit": "6839c5e52364fb32f6d8a351e5c2f21fbd6669a1", 70073 - "sha256": "0ar2xgsi7csjj6fgiamrjwjc58j942dm32j3f3lz21yn2c4pnyxi", 70074 - "fetcher": "github", 70075 - "repo": "bard/mozrepl", 70076 - "unstable": { 70077 - "version": [ 70078 - 20150805, 70079 - 1706 70080 - ], 70081 - "commit": "ab3e79914445039ceb62f7f2dc342358fec3492e", 70082 - "sha256": "1c7dsip5wmlf7x2hziwil5n3igvpnh17d7yg8lsg001y5sjl3mjv" 70083 - }, 70084 - "stable": { 70085 - "version": [ 70086 - 1, 70087 - 1, 70088 - 0 70089 - ], 70090 - "commit": "646208b67e6c9c56d188db1eba999846d518935f", 70091 - "sha256": "13bf5jn1kgqg59j5czlzvajq2fw1rz4h5jqfc7x8w1a067nymf2c" 70092 - } 70093 - }, 70094 - { 70095 - "ename": "moz-controller", 70096 - "commit": "fcc20337594a76a547f696adece121ae592c6917", 70097 - "sha256": "18gca1csl9dfi9995mky8cbgi3xzf1if8pzdjiz5404gzcqk0rfd", 70098 - "fetcher": "github", 70099 - "repo": "RenWenshan/emacs-moz-controller", 70100 - "unstable": { 70101 - "version": [ 70102 - 20151209, 70103 - 206 70104 - ], 70105 - "deps": [ 70106 - "moz" 70107 - ], 70108 - "commit": "46f665c03574fa922de767fc29795e0db4a7c5c6", 70109 - "sha256": "0fssn33ld6xhjlwg1dbrjg8sa0pjmglq0dw792yrmvm4fj0zjph8" 70110 - }, 70111 - "stable": { 70112 - "version": [ 70113 - 1, 70114 - 0 70115 - ], 70116 - "deps": [ 70117 - "moz" 70118 - ], 70119 - "commit": "42fd842039620de7fb122f7e4ffc1ab802ee97c5", 70120 - "sha256": "1w1i1clkjg9mj1g4i2y3xw3hyj8s7h9gr04qgyb9c1q8vh11z8d0" 70121 - } 70122 - }, 70123 - { 70124 70126 "ename": "mozc", 70125 70127 "commit": "30fef77e1d7194ee3c3c1d4775c349a4a9f6af2c", 70126 70128 "sha256": "0nslh4xyqpvzdxcgrd1bzaqcdz77bghizh6n2w6wk46cflir8xba", ··· 70131 70133 20210306, 70132 70134 1053 70133 70135 ], 70134 - "commit": "fed70bc909ef2a67d907d1ac89bbcd042d277da5", 70135 - "sha256": "05jw43ajq404dq62kykw9ryh5kl0lhl9alxyqq3gixpyds3r2205" 70136 + "commit": "7e8beed3ddad4f8d1065cbab52f24c16d31f5898", 70137 + "sha256": "16ahy9myimsjg0csff5b6gpj4vvy1pz6y5rpvhwwg4c6id5wz1fi" 70136 70138 }, 70137 70139 "stable": { 70138 70140 "version": [ ··· 70289 70291 "repo": "sp1ff/mpdmacs", 70290 70292 "unstable": { 70291 70293 "version": [ 70292 - 20201118, 70293 - 350 70294 + 20210904, 70295 + 35 70294 70296 ], 70295 70297 "deps": [ 70296 70298 "elmpd" 70297 70299 ], 70298 - "commit": "174ffbc1e8ef31339867e3d9b29fe8468b636a7c", 70299 - "sha256": "0djpvhgvbijk40p3131nrf87nrsfd02lm1gc4i65l6sl66xxszv8" 70300 + "commit": "334b066dc5bb82d9ccb6cc30d63afed0f7610fe8", 70301 + "sha256": "0pkw79sccsvx845xgd2a2rql6ic7jkzki90xj268czvcgvfy4kn1" 70300 70302 }, 70301 70303 "stable": { 70302 70304 "version": [ 70303 70305 0, 70304 70306 2, 70305 - 0 70307 + 2 70306 70308 ], 70307 70309 "deps": [ 70308 70310 "elmpd" 70309 70311 ], 70310 - "commit": "b81d9464c04bd42509b62d4a3c23f50aed728fc3", 70311 - "sha256": "0kjhkj77x25cvx27gqwpsfn64cf9bi5hv0a2sqp8xzzxaxz2l2hd" 70312 + "commit": "66031a8993a2a704bdfaa9c63ec590dd0c5a2eea", 70313 + "sha256": "0n4b1klaf1jwd8bj9gqjy5p9yabgkgj9zai1cmsbnb4174h0719q" 70312 70314 } 70313 70315 }, 70314 70316 { ··· 71414 71416 "repo": "myTerminal/myterminal-controls", 71415 71417 "unstable": { 71416 71418 "version": [ 71417 - 20190426, 71418 - 421 71419 + 20210904, 71420 + 516 71421 + ], 71422 + "deps": [ 71423 + "cl-lib" 71419 71424 ], 71420 - "commit": "733cdd7ab4f172b6dca09720fc5ae7dbc248c822", 71421 - "sha256": "1z89d3dx77c4v1zz4ngn689ay6m2x04jznnbc6bdqsaanz9znwlz" 71425 + "commit": "c635868e13ee898ec77925d98b36421640e22aa4", 71426 + "sha256": "1y7kkb12m94z8ypnfc02xsbsv30lm6qbk3cri1fd63wjshv7wil2" 71422 71427 }, 71423 71428 "stable": { 71424 71429 "version": [ ··· 72274 72279 "repo": "juergenhoetzel/emacs-nexus", 72275 72280 "unstable": { 72276 72281 "version": [ 72277 - 20140114, 72278 - 1305 72282 + 20210903, 72283 + 1743 72279 72284 ], 72280 - "commit": "c46f499951b90839aa8683779fe43d8f01672a60", 72281 - "sha256": "1xnx6v49i6abzbhq4fl4bp9d0pp9gby40splpcj211xsb8yiry27" 72285 + "commit": "9603fd3d8ef34d4b3dcad3292c4ac743500d4946", 72286 + "sha256": "07bp6vb2d4sf0csnrc52xiib3lzxpd0mzlpjbikpcn17xjm6xjcb" 72282 72287 } 72283 72288 }, 72284 72289 { ··· 72488 72493 "repo": "m-cat/nimbus-theme", 72489 72494 "unstable": { 72490 72495 "version": [ 72491 - 20210318, 72492 - 1654 72496 + 20210830, 72497 + 1619 72493 72498 ], 72494 - "commit": "7e9ad5a617a26641988445503e235c68fa21b611", 72495 - "sha256": "1wy06kphgljlcnl55qx5g8hzcv9bnfrrp22pfsxpyawlrmmgxp1j" 72499 + "commit": "09085ce2b1b7a7c1c9986e6e86b7cf94610fbfb0", 72500 + "sha256": "0aw2pqqfnwcbyh3b8q0lbwl27ilc1w281v78ha9316bvrydhkrdm" 72496 72501 } 72497 72502 }, 72498 72503 { ··· 72605 72610 "repo": "NixOS/nix-mode", 72606 72611 "unstable": { 72607 72612 "version": [ 72608 - 20210809, 72609 - 1724 72613 + 20210830, 72614 + 1610 72610 72615 ], 72611 72616 "deps": [ 72612 - "f" 72617 + "magit-section" 72613 72618 ], 72614 - "commit": "56748ac556d0406cc6c574f7347fe37decd8381e", 72615 - "sha256": "1lgakfj8dar3517rl6k6vxjijkdywq05wg7fjjmnv3a0h8ppjjz4" 72619 + "commit": "8e20de5ba7061d810b08df5557b1fdb60c94b639", 72620 + "sha256": "18kh6sb8rn391krg5a2xsk03am6ni739pw2ash81asnh112zsxzi" 72616 72621 }, 72617 72622 "stable": { 72618 72623 "version": [ ··· 73221 73226 "url": "https://git.notmuchmail.org/git/notmuch", 73222 73227 "unstable": { 73223 73228 "version": [ 73224 - 20210822, 73225 - 1412 73229 + 20210830, 73230 + 2334 73226 73231 ], 73227 - "commit": "84347ffcad24b48390c622e5a96c31c97c094daa", 73228 - "sha256": "1zn9j0sc49g7gj1fx2n1lvgcixcvjcc3kg9jlvzwniygqnncwcw2" 73232 + "commit": "49aa44bb012e8c2412b5447119b78b61842740b8", 73233 + "sha256": "008f86pb2zn3xi9d862c2bz0yzavyrypf6bzc3q275il876x4c9z" 73229 73234 }, 73230 73235 "stable": { 73231 73236 "version": [ 73232 73237 0, 73233 - 32, 73234 - 3 73238 + 33 73235 73239 ], 73236 - "commit": "3f30ee65efec7c35e56af36eaa49af5c2e220d8f", 73237 - "sha256": "005nc800cr7f32w7vdpr1bqh65ffflsm8ss6x010i5c79ndfli4n" 73240 + "commit": "676fcd70ff5aa5d88943a5982a4187cc5699aa4b", 73241 + "sha256": "0wpczv0s0sbdd0p4qhhkw50f5pz5jpx41gaf4c7afc88lwgqr8lv" 73238 73242 } 73239 73243 }, 73240 73244 { ··· 73830 73834 "repo": "rejeep/nvm.el", 73831 73835 "unstable": { 73832 73836 "version": [ 73833 - 20210217, 73834 - 744 73837 + 20210826, 73838 + 1000 73835 73839 ], 73836 73840 "deps": [ 73837 73841 "dash", 73838 73842 "f", 73839 73843 "s" 73840 73844 ], 73841 - "commit": "6f47fac1bc42526a7474488f560d064c08f8dd6e", 73842 - "sha256": "01rfgxkahpx17q8k72hxibysysv8pgx6bfy5gbc6finm3f7ak6ia" 73845 + "commit": "c214762fd6f539ec3e1fd8198cefbdb4b428b19c", 73846 + "sha256": "0xcb2k98ka7lks7k0mk9inmjpyz03v8aq64a24pj635xp54x3iah" 73843 73847 }, 73844 73848 "stable": { 73845 73849 "version": [ ··· 75101 75105 20210617, 75102 75106 1726 75103 75107 ], 75104 - "commit": "25ac57f10acae37f21ab3b0959d8c9b3125c4e3e", 75105 - "sha256": "0c4cvny8anx4p1i136vl881g6dsy0mrd02xzbgv860g9ix5nzvsx" 75108 + "commit": "b78f73f9c3a689be73dd6061f3898c8b998048cb", 75109 + "sha256": "0ma9ysizvnwlzb4d1dzfd8n5948gq6zy897526dwwfdj105fsmdi" 75106 75110 }, 75107 75111 "stable": { 75108 75112 "version": [ ··· 75295 75299 "repo": "oer/oer-reveal", 75296 75300 "unstable": { 75297 75301 "version": [ 75298 - 20210819, 75299 - 850 75302 + 20210827, 75303 + 934 75300 75304 ], 75301 75305 "deps": [ 75302 75306 "org-re-reveal" 75303 75307 ], 75304 - "commit": "aa1db964a25f99df945c308fba983de6f044aa8e", 75305 - "sha256": "05b3sc2kmmqc82ahky09ilkf6gj2alanpki7ixfa06lydhfg5iby" 75308 + "commit": "7d29876e3385ad0477e95d9863b868e9d0aafcc7", 75309 + "sha256": "049k35xlv0ilpnjf1la452npv77f0sbx69pmzgkrcg85pql3az6k" 75306 75310 }, 75307 75311 "stable": { 75308 75312 "version": [ 75309 75313 3, 75310 - 21, 75311 - 2 75314 + 23, 75315 + 0 75312 75316 ], 75313 75317 "deps": [ 75314 75318 "org-re-reveal" 75315 75319 ], 75316 - "commit": "aa1db964a25f99df945c308fba983de6f044aa8e", 75317 - "sha256": "05b3sc2kmmqc82ahky09ilkf6gj2alanpki7ixfa06lydhfg5iby" 75320 + "commit": "7d29876e3385ad0477e95d9863b868e9d0aafcc7", 75321 + "sha256": "049k35xlv0ilpnjf1la452npv77f0sbx69pmzgkrcg85pql3az6k" 75318 75322 } 75319 75323 }, 75320 75324 { ··· 75451 75455 "repo": "rnkn/olivetti", 75452 75456 "unstable": { 75453 75457 "version": [ 75454 - 20210823, 75455 - 1054 75458 + 20210902, 75459 + 1202 75456 75460 ], 75457 - "commit": "08611268bb19509ec087ec416f4a7f76ebae0518", 75458 - "sha256": "0nx16w2d1wrqa5cgpbwqfy2al49b9nx2pr9zygiz5qa8jdlzw86l" 75461 + "commit": "95479d5178fc5017060c963a45de0d2095c00e0f", 75462 + "sha256": "0bliylh02lcga84jysf1jr80bgrn8m7cy4n047fr06cjqdqr4sp4" 75459 75463 }, 75460 75464 "stable": { 75461 75465 "version": [ 75462 75466 2, 75463 75467 0, 75464 - 2 75468 + 3 75465 75469 ], 75466 - "commit": "08611268bb19509ec087ec416f4a7f76ebae0518", 75467 - "sha256": "0nx16w2d1wrqa5cgpbwqfy2al49b9nx2pr9zygiz5qa8jdlzw86l" 75470 + "commit": "bfb221845c2e26f923ab80fdcd8f80b70b6adee1", 75471 + "sha256": "0qhv4ah9bn1mjvivgxp7z1gf91d0cdr2ma5cy5xaja97ispa4l3z" 75468 75472 } 75469 75473 }, 75470 75474 { ··· 76024 76028 "repo": "abo-abo/orca", 76025 76029 "unstable": { 76026 76030 "version": [ 76027 - 20210809, 76028 - 1401 76031 + 20210828, 76032 + 1639 76029 76033 ], 76030 76034 "deps": [ 76031 76035 "zoutline" 76032 76036 ], 76033 - "commit": "1eaf09e31d440f781ba87d0aaa4defa5568a8f48", 76034 - "sha256": "0nh3aivgjzcb8vqbwdvvhkk0lww3x1ry52ac8h9cw2k9hdr37ks1" 76037 + "commit": "47c03af0c1df2b679d800f3708d675a4c2a3e722", 76038 + "sha256": "0dah1wb9fyixwza8h2bc2vzps4zd9y9g97yhrm2vjvddabzsyq3a" 76035 76039 } 76036 76040 }, 76037 76041 { ··· 76147 76151 "repo": "spegoraro/org-alert", 76148 76152 "unstable": { 76149 76153 "version": [ 76150 - 20180524, 76151 - 133 76154 + 20210828, 76155 + 1822 76152 76156 ], 76153 76157 "deps": [ 76154 76158 "alert", 76155 - "dash", 76156 - "s" 76159 + "org" 76157 76160 ], 76158 - "commit": "f87bff4acbd839acb4d2245b56b2c3d21f950911", 76159 - "sha256": "05xhp1ggpcgd48vcrxf9l43aasxfjw1ypgzpq3gp7031x83m9rr6" 76161 + "commit": "67b2e241d9eafcabcbd7de48cca031044ebc8221", 76162 + "sha256": "1bglyry80sbsj0x4w20ncvdsnn8lw7j2ry0rnfsb866fhq03zkrn" 76160 76163 }, 76161 76164 "stable": { 76162 76165 "version": [ ··· 76584 76587 "repo": "Chobbes/org-chef", 76585 76588 "unstable": { 76586 76589 "version": [ 76587 - 20210508, 76588 - 110 76590 + 20210829, 76591 + 2145 76589 76592 ], 76590 76593 "deps": [ 76591 76594 "org" 76592 76595 ], 76593 - "commit": "a97232b4706869ecae16a1352487a99bc3cf97af", 76594 - "sha256": "1j4zjp0w7f17y0vddi39fj13iga0pfh5bgi66lwwghb18w0isgng" 76596 + "commit": "a9acf45aaa174aacca248272fb30a5698b5163ae", 76597 + "sha256": "0wfq0gpv89sqdzi3acw9b4697lnnpjqvf11mjdlq69y20vfm1qsv" 76595 76598 } 76596 76599 }, 76597 76600 { ··· 77151 77154 "repo": "harrybournis/org-fancy-priorities", 77152 77155 "unstable": { 77153 77156 "version": [ 77154 - 20210427, 77155 - 900 77157 + 20210830, 77158 + 1657 77156 77159 ], 77157 - "commit": "44532ab8c25eb2c0028eecca7acd9e8ea8e2ff30", 77158 - "sha256": "1cvlyq5p505vx9gcqgvhj7qan1qhq859c2fv7a44kfs0093cb9fz" 77160 + "commit": "7f677c6c14ecf05eab8e0efbfe7f1b00ae68eb1d", 77161 + "sha256": "1sd7ndr1f07r4832kfi88q9il9v6slzghs1nc1aa81g7y8gb1q8l" 77159 77162 } 77160 77163 }, 77161 77164 { ··· 77506 77509 "dash", 77507 77510 "request" 77508 77511 ], 77509 - "commit": "9de4310c3e853f76aa47bc5bf2dc404d4cf3226b", 77510 - "sha256": "1vd49wxdj8r228xk9hpqig1f68m0iv5rsrj24ya4rdlf3z4671p4" 77512 + "commit": "f64e5da352193d8e8bc4d9f5678c8e971265e6d1", 77513 + "sha256": "0wrnkpx7ypjfajbfq2dnqxaq18rlvl7fgajsk6a6fsb2sbhfkb97" 77511 77514 }, 77512 77515 "stable": { 77513 77516 "version": [ ··· 77651 77654 "repo": "stardiviner/org-link-beautify", 77652 77655 "unstable": { 77653 77656 "version": [ 77654 - 20210822, 77655 - 322 77657 + 20210830, 77658 + 1447 77656 77659 ], 77657 77660 "deps": [ 77658 77661 "all-the-icons" 77659 77662 ], 77660 - "commit": "c26ea28e6093d23621b9ec20e811986f604c192e", 77661 - "sha256": "05zjjsmavpj7klb814xyd58nszladc9wfkybzr8pqfk304bdv0yx" 77663 + "commit": "19deeb8f212791cf4698a7cd844df5b3e1b5952f", 77664 + "sha256": "0p3iy23nr2saznjz94j0f55qswzmr96x39awd9r8fpvpsm02j14m" 77662 77665 } 77663 77666 }, 77664 77667 { ··· 77780 77783 "repo": "org-mime/org-mime", 77781 77784 "unstable": { 77782 77785 "version": [ 77783 - 20210821, 77784 - 341 77786 + 20210901, 77787 + 244 77785 77788 ], 77786 - "commit": "21692f16ce436d9d2a546230f1e124beec0be7ee", 77787 - "sha256": "0gvir8c8b2m5z784ml5h957f7mxgp3vn7v91p6igaq5bjf5xcfpp" 77789 + "commit": "23cc52bb539c898de228fc438cd24ed10213bea3", 77790 + "sha256": "1g32chan6rhlp3kvzd2lvf104i3p37q1sm0d89pq6sya0ia2as1n" 77788 77791 }, 77789 77792 "stable": { 77790 77793 "version": [ 77791 77794 0, 77792 77795 2, 77793 - 2 77796 + 3 77794 77797 ], 77795 - "commit": "21692f16ce436d9d2a546230f1e124beec0be7ee", 77796 - "sha256": "0gvir8c8b2m5z784ml5h957f7mxgp3vn7v91p6igaq5bjf5xcfpp" 77798 + "commit": "23cc52bb539c898de228fc438cd24ed10213bea3", 77799 + "sha256": "1g32chan6rhlp3kvzd2lvf104i3p37q1sm0d89pq6sya0ia2as1n" 77797 77800 } 77798 77801 }, 77799 77802 { ··· 77899 77902 "repo": "jeremy-compostella/org-msg", 77900 77903 "unstable": { 77901 77904 "version": [ 77902 - 20210729, 77903 - 2144 77905 + 20210901, 77906 + 1630 77904 77907 ], 77905 77908 "deps": [ 77906 77909 "htmlize" 77907 77910 ], 77908 - "commit": "eb01f60b1ddc132f616d2c1f4038c23f42fc3847", 77909 - "sha256": "01xhhq0r36hkfhhacvwm7nwajvl7j8v3qbpn1xhi3vyy3zabhpzp" 77911 + "commit": "599e8b056c30e84d584aa54dd7c85339cdb9dc43", 77912 + "sha256": "07mjxzip1n3j8lksfq00mfy4s015n28wxiczczqvd6cdhgynshpg" 77910 77913 } 77911 77914 }, 77912 77915 { ··· 78056 78059 "repo": "doppelc/org-notifications", 78057 78060 "unstable": { 78058 78061 "version": [ 78059 - 20210310, 78060 - 1149 78062 + 20210826, 78063 + 1721 78061 78064 ], 78062 78065 "deps": [ 78063 78066 "alert", ··· 78065 78068 "seq", 78066 78069 "sound-wav" 78067 78070 ], 78068 - "commit": "41a8a6b57e11a5b676b03925d473066655364808", 78069 - "sha256": "1fb4jm1zhfllzzrdbasgp1r3ggjs3xa4pfd5papi6mfcz9ypxqsh" 78071 + "commit": "04d648ab5f5f65b600a3af1c9e8ce4e07800d995", 78072 + "sha256": "0xi1shrm3a091fa8zv7nr1425f23z8cb1d6qb2xl1b772q9n7bkf" 78070 78073 } 78071 78074 }, 78072 78075 { ··· 78360 78363 }, 78361 78364 { 78362 78365 "ename": "org-preview-html", 78363 - "commit": "855ea20024b606314f8590129259747cac0bcc97", 78364 - "sha256": "1dnr046mk5ngmic2yqcmrnn7pzrrx3sg22rk2pc3vgdxs8bhvhf9", 78366 + "commit": "cf5b192e7d31850f979d48b7c79dcc6a34bdd923", 78367 + "sha256": "0slqn2vp01lyg003icx9h31z560pwhcsqjhg7jv7jdl008saacyc", 78365 78368 "fetcher": "github", 78366 - "repo": "lujun9972/org-preview-html", 78369 + "repo": "jakebox/org-preview-html", 78367 78370 "unstable": { 78368 78371 "version": [ 78369 - 20210623, 78370 - 1523 78372 + 20210905, 78373 + 1559 78371 78374 ], 78372 78375 "deps": [ 78373 78376 "org" 78374 78377 ], 78375 - "commit": "3fe7dd85b8a7dc4ead7495095a3abaad28e2f809", 78376 - "sha256": "1vih94z3k8qz2vkzvcqbxpipijsxyfn2kvimylfwjrfbkrmvigsp" 78378 + "commit": "04487392d977258351d06ff693a591d8e77617b7", 78379 + "sha256": "11f8ffwjllzqpqp0s0610cakh1j8028lvknibajqid4ljidm0mcj" 78377 78380 } 78378 78381 }, 78379 78382 { ··· 78872 78875 "repo": "org-roam/org-roam", 78873 78876 "unstable": { 78874 78877 "version": [ 78875 - 20210825, 78876 - 1600 78878 + 20210901, 78879 + 1143 78877 78880 ], 78878 78881 "deps": [ 78879 78882 "dash", ··· 78883 78886 "magit-section", 78884 78887 "org" 78885 78888 ], 78886 - "commit": "74a6fd598a03d8d981c21267e9aa25e73d125bcd", 78887 - "sha256": "0mm3d8zbnamscnbqmdkqqsj6qy30j83gqdlgwacw1r8n1ncwx8sa" 78889 + "commit": "1795039ab93ef19611dbb3fca21c4211c4e655a9", 78890 + "sha256": "1hrb4l7b31f9glrdhn30lldqkzbyw0rhw03d5ij49pygfma2qwl0" 78888 78891 }, 78889 78892 "stable": { 78890 78893 "version": [ ··· 78912 78915 "repo": "org-roam/org-roam-bibtex", 78913 78916 "unstable": { 78914 78917 "version": [ 78915 - 20210810, 78916 - 1626 78918 + 20210903, 78919 + 2120 78917 78920 ], 78918 78921 "deps": [ 78919 78922 "bibtex-completion", 78920 78923 "org-ref", 78921 78924 "org-roam" 78922 78925 ], 78923 - "commit": "c13a05b2c855ba1516241d8a1de33bf2c689d6e4", 78924 - "sha256": "0m1mr0c6wmiw54qiqz6dm74l1cn0khywndyqfdmss3l52sipzc9x" 78926 + "commit": "9675eee4183301b16eb27776dae93e8c0b99eb07", 78927 + "sha256": "1n4nfs9ifzdmzj60adbam4qfw6vkm8z4yh5mp23gvi0j9wfx99s1" 78925 78928 }, 78926 78929 "stable": { 78927 78930 "version": [ ··· 79829 79832 "request-deferred", 79830 79833 "s" 79831 79834 ], 79832 - "commit": "9c1c94dff1a46631669023286078b887d077c305", 79833 - "sha256": "0s3amkc193b3csffa6gqi6kyr7x6fmc3sviirqwnygjfl42788ck" 79835 + "commit": "fc63ed580101e6160edfb6f43215fb3200ce1ea7", 79836 + "sha256": "1kg3q8bhyydmd9jb41kyg8xcn5dbwpy2y0fnq7avkaypdn1q27w0" 79834 79837 }, 79835 79838 "stable": { 79836 79839 "version": [ ··· 80033 80036 } 80034 80037 }, 80035 80038 { 80039 + "ename": "org-zettelkasten", 80040 + "commit": "ed12df24029a4154fe55588f3e8ca0670af3f5f3", 80041 + "sha256": "1fhjbg3jjcinnja96fzcsxnjxg0x4vnsw84g1q63c325sv4xv2mw", 80042 + "fetcher": "github", 80043 + "repo": "ymherklotz/emacs-zettelkasten", 80044 + "unstable": { 80045 + "version": [ 80046 + 20210830, 80047 + 1025 80048 + ], 80049 + "deps": [ 80050 + "counsel", 80051 + "org" 80052 + ], 80053 + "commit": "748e14b5a0dc2200d10b946d0111bd286e2c1c71", 80054 + "sha256": "1s9nhqbw5jxkqsvy40dd80l5wjw1407vk9qmdfiva8hj0ymcigr6" 80055 + }, 80056 + "stable": { 80057 + "version": [ 80058 + 0, 80059 + 3, 80060 + 0 80061 + ], 80062 + "deps": [ 80063 + "counsel", 80064 + "org" 80065 + ], 80066 + "commit": "dd4feae2111357d99dcde1919c1d72523cc5b68c", 80067 + "sha256": "16hqk9hdfmbjmhb6bb0xk6silgx85ji0q1dpncwgida6958rq79r" 80068 + } 80069 + }, 80070 + { 80036 80071 "ename": "org2blog", 80037 80072 "commit": "08b47bf72bff18efb3281509fd9f1688d8bb0349", 80038 80073 "sha256": "1snrsqpiacmkajmiw12kpglxkrs5ngma7l7r246q0lvf1h4jzbsa", ··· 80130 80165 "repo": "ardumont/org2jekyll", 80131 80166 "unstable": { 80132 80167 "version": [ 80133 - 20210220, 80134 - 1845 80168 + 20210829, 80169 + 1113 80135 80170 ], 80136 80171 "deps": [ 80137 80172 "dash", 80138 80173 "s" 80139 80174 ], 80140 - "commit": "e469373e0c656cec475c145037be1902d2622f09", 80141 - "sha256": "1pqrvrs54ggm2hr7b7m9n4wglbmakw0q9651mwxylz6bwm66kcc1" 80175 + "commit": "a228ebcf408de7096e5cd3a62b14087432e0afb1", 80176 + "sha256": "146xp2jsk7a973g0dn8in1sad6lp1ks7s5ma6jld4h26anprvj1g" 80142 80177 }, 80143 80178 "stable": { 80144 80179 "version": [ ··· 80431 80466 20210722, 80432 80467 737 80433 80468 ], 80434 - "commit": "6bb7deaea9ca01137e7cbd74ff23559e6a4d85e7", 80435 - "sha256": "0kq5fa3dkz6a8y8zyf588032hlmpvjl7mn7y6m2mjsamf7fxnh3h" 80469 + "commit": "3a6bd917c524c73542315f7c2b0d68161fd5c228", 80470 + "sha256": "0kjyg2vif12whfjdj7d4byjw9a4y6q9s40552v6i8b7f1yc7rz0k" 80436 80471 }, 80437 80472 "stable": { 80438 80473 "version": [ ··· 80452 80487 "repo": "tbanel/orgaggregate", 80453 80488 "unstable": { 80454 80489 "version": [ 80455 - 20210819, 80456 - 1739 80490 + 20210830, 80491 + 829 80457 80492 ], 80458 - "commit": "141577373600e7be16a5b67284165f54e8743505", 80459 - "sha256": "0nhaigi53nygw0fvmj335sd2kin3rlhh501sx4asdvdlhm28n2hr" 80493 + "commit": "5e826d36402f822c5981593cd106ce06420638a3", 80494 + "sha256": "0jhjm28ypqrvvxdpjqpvwrlsg0gbrnkz4hlfvivlf7wd58852r86" 80460 80495 } 80461 80496 }, 80462 80497 { ··· 80482 80517 "repo": "tbanel/orgtbljoin", 80483 80518 "unstable": { 80484 80519 "version": [ 80485 - 20210225, 80486 - 923 80520 + 20210828, 80521 + 715 80487 80522 ], 80488 80523 "deps": [ 80489 80524 "cl-lib" 80490 80525 ], 80491 - "commit": "f411d38de5e36f65336a37e43cfe9a5125b6543a", 80492 - "sha256": "05m6xq1c3cc2vpwfgknjx6rad8lr2hd6prbziq04qxp8x8qcs3sj" 80526 + "commit": "f09ba7fd304b36773a337323a0749cc681ce5049", 80527 + "sha256": "0li0zks7n8kj30z2a71xyaa6qpp5kgrrikrz1562cymp5r3ddbxv" 80493 80528 } 80494 80529 }, 80495 80530 { ··· 80591 80626 "repo": "cmchittom/orthodox-christian-new-calendar-holidays", 80592 80627 "unstable": { 80593 80628 "version": [ 80594 - 20210507, 80595 - 1619 80629 + 20210830, 80630 + 1657 80596 80631 ], 80597 - "commit": "c0ba49bb01d037ce8800aa04db06f454ef043cb6", 80598 - "sha256": "07ck6slz0z484lywdymh719pfmxhvfsb1cvk2bdbrx4xq89sqwq6" 80632 + "commit": "6869024ecd45eefd0ec648979c6a59d7c79770e0", 80633 + "sha256": "1hw76k90bgvbdispcgmfbskhnk7cjai0bv75nmmk2b6kcj9hmx97" 80599 80634 }, 80600 80635 "stable": { 80601 80636 "version": [ 80602 80637 1, 80603 80638 3, 80604 - 2 80639 + 3 80605 80640 ], 80606 - "commit": "c0ba49bb01d037ce8800aa04db06f454ef043cb6", 80607 - "sha256": "07ck6slz0z484lywdymh719pfmxhvfsb1cvk2bdbrx4xq89sqwq6" 80641 + "commit": "6869024ecd45eefd0ec648979c6a59d7c79770e0", 80642 + "sha256": "1hw76k90bgvbdispcgmfbskhnk7cjai0bv75nmmk2b6kcj9hmx97" 80608 80643 } 80609 80644 }, 80610 80645 { ··· 81714 81749 "repo": "0x60df/ox-qmd", 81715 81750 "unstable": { 81716 81751 "version": [ 81717 - 20210529, 81718 - 1012 81752 + 20210826, 81753 + 1425 81719 81754 ], 81720 - "deps": [ 81721 - "org" 81722 - ], 81723 - "commit": "7e69c04626f8d35756f3b049bd7836fb751f7734", 81724 - "sha256": "14hdjkyyh4714vsc4amkdfhdda94gpaz7hy702ygmyfx0il1v92a" 81755 + "commit": "ccabf6bd79ed87dd3bd57993321ee6d93c1818be", 81756 + "sha256": "0hww5b2d0yc8g9hhk4sqsnr091nbrmpna1v5yc6pn1g24rngh3dk" 81725 81757 } 81726 81758 }, 81727 81759 { ··· 81761 81793 "repo": "yjwen/org-reveal", 81762 81794 "unstable": { 81763 81795 "version": [ 81764 - 20210815, 81765 - 907 81796 + 20210902, 81797 + 1452 81766 81798 ], 81767 81799 "deps": [ 81768 81800 "org" 81769 81801 ], 81770 - "commit": "8eae719acc18592a916715e74984e9222bb6d5fa", 81771 - "sha256": "12r4s8xkmyiyv8pcf0zy2jh2dp582rx41pggnfh44cd27skafd30" 81802 + "commit": "fe9148b670d144124d9697fcf5d0528f19025104", 81803 + "sha256": "034gkbc03z9jzj7ad34mmqgmvj4f14ap7iixh3zx4wp2ipw5xb7c" 81772 81804 } 81773 81805 }, 81774 81806 { ··· 84691 84723 20210808, 84692 84724 1745 84693 84725 ], 84694 - "commit": "8212f415fc5de2dedfc74d797b3951b2cbfb6f58", 84695 - "sha256": "1r9arl0v33rqgvi98xz63pf56kb7d8j1j1p74ky89g5zk8zzivd3" 84726 + "commit": "535aec81739e8e766e0420fda616efc8846f2911", 84727 + "sha256": "1z4fds5priq8dsr8gm845ykk8blghm5kz5sspnpzclgk3prwkx26" 84696 84728 }, 84697 84729 "stable": { 84698 84730 "version": [ ··· 86493 86525 } 86494 86526 }, 86495 86527 { 86528 + "ename": "polybar-sesman", 86529 + "commit": "15e30c5c96f94c4ae05c25af45a2f08a9c0520af", 86530 + "sha256": "0rm3mjwgp7i7hbwx8qw8snaipa7yl1haffr91rd9d31yc5pd170f", 86531 + "fetcher": "github", 86532 + "repo": "markgdawson/polybar-sesman.el", 86533 + "unstable": { 86534 + "version": [ 86535 + 20210901, 86536 + 1336 86537 + ], 86538 + "deps": [ 86539 + "dash", 86540 + "sesman" 86541 + ], 86542 + "commit": "5175b8d641aad9576519717f69f858621892d5c7", 86543 + "sha256": "101ymzis94sdlhk173my108g2s3fpi4ibc514isizfxvb4cn9gs9" 86544 + } 86545 + }, 86546 + { 86496 86547 "ename": "polymode", 86497 86548 "commit": "3058351c4500fdcbe7f40b4c96ac8d6de9bbeb1d", 86498 86549 "sha256": "15i9masklpy4iwskc7dzqjhb430ggn0496z4wb1zjj0b9xx4wj66", ··· 87894 87945 "repo": "bbatsov/projectile", 87895 87946 "unstable": { 87896 87947 "version": [ 87897 - 20210825, 87898 - 649 87948 + 20210905, 87949 + 629 87899 87950 ], 87900 - "commit": "db5748ea4a6428136769e7e50c6d0a12aa7acd8f", 87901 - "sha256": "0zfvv7iyb0n61hd3q1jk0bldpfwhw49kd61c5wd44g437vr7jm6x" 87951 + "commit": "6516a9ce574a9cd8903d0148fe06fa49f954972d", 87952 + "sha256": "0pgrpdgpx7c55csrznhydfpsx5mfi8dy2g7p5mkhz7xmrqqw9ipl" 87902 87953 }, 87903 87954 "stable": { 87904 87955 "version": [ ··· 88304 88355 20210820, 88305 88356 2321 88306 88357 ], 88307 - "commit": "f84e634c99d0c6bad17e8840baf7b6173563188f", 88308 - "sha256": "07gr1czqh23kz0nw29vdg60vrc5yj9p4rymlplb6xbkq91lncnrd" 88358 + "commit": "51696277a4dc30acd61e9ebb400d99934955e450", 88359 + "sha256": "1y9bnylzml5ijczac210cs3fpy3qdx01c1wqghdvnr3a1p71w71r" 88309 88360 }, 88310 88361 "stable": { 88311 88362 "version": [ ··· 88408 88459 20200619, 88409 88460 1742 88410 88461 ], 88411 - "commit": "38f6e15e77a4e33a669d5d37efd87edfa15c7c04", 88412 - "sha256": "1n6xp8yk7vkvgigy46ybvzd3a9597c6qg0zyc9bbhqk93vhwxqkk" 88462 + "commit": "10d0faef6de038960ec825c003c85581800fba1c", 88463 + "sha256": "1lynx4vj7w8mlf9mbwz5gwxfvr6iqp99sj89zr88bz5vynl6l43j" 88413 88464 }, 88414 88465 "stable": { 88415 88466 "version": [ ··· 88417 88468 18, 88418 88469 0, 88419 88470 -1, 88420 - 1 88471 + 2 88421 88472 ], 88422 - "commit": "1a1710b19de57c6f68ebe599a6a22de2392e6018", 88423 - "sha256": "0v006kvgmy1m4fpkg15pa1pdf1c2xwn4vbr952jrk1z24sfyljdy" 88473 + "commit": "32461877b77f61ed8926b1f12641cbe7ea7af713", 88474 + "sha256": "0kyg8j3f94n2f2qfsgdijyqmaxp0hq9mzj9ss3dm5kg4skgdq8pk" 88424 88475 } 88425 88476 }, 88426 88477 { ··· 88814 88865 } 88815 88866 }, 88816 88867 { 88868 + "ename": "puni", 88869 + "commit": "546f7f793fb95657f67a61070b20e11d73342dad", 88870 + "sha256": "05h7hjl5sfj6ki7ndpz1mh0hsc7l86vaskmp8r1l5xxnq5sig0cd", 88871 + "fetcher": "github", 88872 + "repo": "AmaiKinono/puni", 88873 + "unstable": { 88874 + "version": [ 88875 + 20210824, 88876 + 1555 88877 + ], 88878 + "commit": "3a3272c881945f0dfb4467f7f053d0853f612186", 88879 + "sha256": "1m2z4sif8558qyjzp33kfbjr1laz3nh79qbpzbnykk0j73q5zb9z" 88880 + } 88881 + }, 88882 + { 88817 88883 "ename": "punpun-theme", 88818 88884 "commit": "20b2cc78b41a26e434b984943681fea774fd3c50", 88819 88885 "sha256": "10mgyrxz2habhaqyg1g4c5kn13q425j0xpkkdlg10cdfvxfl9d1s", ··· 89264 89330 "repo": "dwcoates/pygn-mode", 89265 89331 "unstable": { 89266 89332 "version": [ 89267 - 20210824, 89268 - 1323 89333 + 20210828, 89334 + 1848 89269 89335 ], 89270 89336 "deps": [ 89271 89337 "ivy", ··· 89274 89340 "tree-sitter-langs", 89275 89341 "uci-mode" 89276 89342 ], 89277 - "commit": "f3d6b5c6c8f74d7c54808759f71ff26c91c0b7e6", 89278 - "sha256": "1v5gisi22d2syb5vd9plydncjlz3hqyx9fhzamxjcmpybdzss80m" 89343 + "commit": "bbc532a85b7a5555cbf1f0b4cd91214cf9fa6751", 89344 + "sha256": "01c52vl8ynlj6awlqja461q75hz9d87l84phgdfsfngs6grvayzf" 89279 89345 }, 89280 89346 "stable": { 89281 89347 "version": [ ··· 89391 89457 "repo": "tumashu/pyim-wbdict", 89392 89458 "unstable": { 89393 89459 "version": [ 89394 - 20210719, 89395 - 38 89460 + 20210902, 89461 + 1714 89396 89462 ], 89397 89463 "deps": [ 89398 89464 "pyim" 89399 89465 ], 89400 - "commit": "4812f93ee00196b8fee9f434aa5cd77fabcf90d1", 89401 - "sha256": "1wvzgyf3mq3wy0sdnx5jhscr5x28pgbvw8dmfyn18741xnsn26fb" 89466 + "commit": "4db1ca7fee75bd3aa394d620e5af2f42b3caf3c4", 89467 + "sha256": "141rzf15334r4sdqy791n3kspad8jcz4iig55mvcqabii4bqx9p1" 89402 89468 }, 89403 89469 "stable": { 89404 89470 "version": [ ··· 89470 89536 20210411, 89471 89537 1931 89472 89538 ], 89473 - "commit": "23488352bc0dbdfa519abb527af3d676244b7106", 89474 - "sha256": "0gfig5fnmsvqbfcxd973v31zhvrdldma9grxliy83p7jzphs5kgp" 89539 + "commit": "97f7933d9838853cfff901db37545b9b8478296e", 89540 + "sha256": "1zjp3h8k6a16b03zn7k1s0lar83ps9ndqqsgbnsn06h29gfzl3h6" 89475 89541 }, 89476 89542 "stable": { 89477 89543 "version": [ ··· 90210 90276 "repo": "emacsorphanage/quickrun", 90211 90277 "unstable": { 90212 90278 "version": [ 90213 - 20210330, 90214 - 654 90279 + 20210904, 90280 + 1553 90215 90281 ], 90216 - "commit": "35e91f4b6cfbb8dd2adea4d8cf53ae76db7d00d9", 90217 - "sha256": "15xlcnimaaqgchjcs5jv8g3l36fga7zp11fj901x9nziwwis4jx1" 90282 + "commit": "78317951cd3db986d811de616b7035559831749b", 90283 + "sha256": "0z7zpsmhfhnzvf1vqpsj5wsnlxmyxgc1z6599xsbvl30fw589y1r" 90218 90284 }, 90219 90285 "stable": { 90220 90286 "version": [ ··· 90372 90438 "repo": "greghendershott/racket-mode", 90373 90439 "unstable": { 90374 90440 "version": [ 90375 - 20210727, 90376 - 1545 90441 + 20210831, 90442 + 2045 90377 90443 ], 90378 90444 "deps": [ 90379 90445 "faceup", 90380 90446 "pos-tip" 90381 90447 ], 90382 - "commit": "ef9a3fed943495ec2b0c8258f8e00307d6434b17", 90383 - "sha256": "0rkhkhpjpnp4h3c60ms9637737sfz6nfjlvlgvw0wfa51bvmzimd" 90448 + "commit": "a879a8d67b062c9aa0c6e60602eedba80a2069c5", 90449 + "sha256": "1cf104yb8qbq6dwjk0kplz2snpb565mnpirjdsrhi0hrndd6ryh9" 90384 90450 } 90385 90451 }, 90386 90452 { ··· 90956 91022 } 90957 91023 }, 90958 91024 { 90959 - "ename": "rdp", 90960 - "commit": "e2dd8ef80d344c9801f7d0a26b0e3ea33a53bf89", 90961 - "sha256": "0lj3idwv4fxz8pi8mnxkbhwhzaa1gs6ib4nzly3fc6yiix9ampkz", 90962 - "fetcher": "github", 90963 - "repo": "skeeto/rdp", 90964 - "unstable": { 90965 - "version": [ 90966 - 20120929, 90967 - 154 90968 - ], 90969 - "commit": "b620192afada04aec33b38cc130fef0765f41ca9", 90970 - "sha256": "08l96bhghmnckar4i6afj9csqglasmpmby1r7j38ic9bp37z2yqd" 90971 - } 90972 - }, 90973 - { 90974 91025 "ename": "rdxmk", 90975 91026 "commit": "db54339795e0519f154328e54d47a7a0c80afc71", 90976 91027 "sha256": "14iavsgqp28y2ykgly8x69sny34r32dl4bpb47m921vk5n4y6zky", ··· 91409 91460 "repo": "nickdrozd/reazon", 91410 91461 "unstable": { 91411 91462 "version": [ 91412 - 20210815, 91413 - 1519 91463 + 20210831, 91464 + 1208 91414 91465 ], 91415 - "commit": "1bfce512612eb679d06356b5c070e6f8743fd0dc", 91416 - "sha256": "1059dqsj19k7yb2lw2vy1s6pdhbl0l4vmsfd2lscwsa6kw42kjp0" 91466 + "commit": "d697c0dfe38ac7483e453e8ce8056acf95c89ba2", 91467 + "sha256": "12s2h4wd7cz9x078698wwjjpy874rk8cm2d17p6ksb10y3cmrqsn" 91417 91468 }, 91418 91469 "stable": { 91419 91470 "version": [ 91420 91471 0, 91421 - 3 91472 + 4 91422 91473 ], 91423 - "commit": "020be6467a83957adcbdcb192b61f2c76a94079b", 91424 - "sha256": "18la2g0srybr10vm1dajgbxi67j1l0cs08mr696hxb6m558yxdv5" 91474 + "commit": "d697c0dfe38ac7483e453e8ce8056acf95c89ba2", 91475 + "sha256": "12s2h4wd7cz9x078698wwjjpy874rk8cm2d17p6ksb10y3cmrqsn" 91425 91476 } 91426 91477 }, 91427 91478 { ··· 91856 91907 "repo": "purcell/emacs-reformatter", 91857 91908 "unstable": { 91858 91909 "version": [ 91859 - 20210510, 91860 - 522 91910 + 20210831, 91911 + 1405 91861 91912 ], 91862 - "commit": "e02a9ea94287f4195edeeab3033e017a56872f5b", 91863 - "sha256": "1dlm24gjplfdx3cv2j6jslwgfryh0mvcyccljrwq8rzw8svgs8ac" 91913 + "commit": "b57f5d480003ab7b0880e0059dcc51747fb2e088", 91914 + "sha256": "16ajp4p26aaswxcxpqgh43p3dk699gab1xc3l3aj7x1sjf3ag3zq" 91864 91915 }, 91865 91916 "stable": { 91866 91917 "version": [ ··· 92450 92501 "repo": "jjlee/rescript-mode", 92451 92502 "unstable": { 92452 92503 "version": [ 92453 - 20210506, 92454 - 2101 92504 + 20210902, 92505 + 2140 92455 92506 ], 92456 - "commit": "964a62f907bf786cec6a60719d17244b2958ac62", 92457 - "sha256": "16r1bp6dv6s1k8pkxpf1wpk2rh7qd059z97naik60qa26rdwpa4w" 92507 + "commit": "b9a151168aa5feeedc823640e4d3863e03eef8cc", 92508 + "sha256": "11pn3c61lj3n4nf6h21kmp5j5qs9jfn1s45pnn4i8mc7m1kdznw6" 92458 92509 } 92459 92510 }, 92460 92511 { ··· 93999 94050 "repo": "brotzeit/rustic", 94000 94051 "unstable": { 94001 94052 "version": [ 94002 - 20210805, 94003 - 1755 94053 + 20210830, 94054 + 1944 94004 94055 ], 94005 94056 "deps": [ 94006 94057 "dash", ··· 94013 94064 "spinner", 94014 94065 "xterm-color" 94015 94066 ], 94016 - "commit": "1941f52d34e7e4752e1e465e5636b21ef7ad42b9", 94017 - "sha256": "16vis13axbk9d4pnr7588wx527hsr6kcbjxnppc23wpd54j7sgh2" 94067 + "commit": "804ebfe0295a6bf37870e06f84a8d35f55c9f1a6", 94068 + "sha256": "0ya7l8yfbax74lrwvcr3lxaffb238m3yk8y37msvsk1pvwcjfkr7" 94018 94069 } 94019 94070 }, 94020 94071 { ··· 94503 94554 20200830, 94504 94555 301 94505 94556 ], 94506 - "commit": "4a02387d997b0b4d20b24e9a17a68270692219ad", 94507 - "sha256": "1k2382v1srcx7qc4rqxghqd87lx7c6jrls7wxgqq1warvklxfx87" 94557 + "commit": "f673cf6ab9d13e376d5c71230a693a6b88730e76", 94558 + "sha256": "0paflmwafmhk2lcsh74vixids7xkmgacnzn0pm1i7jhkp3a4mn1d" 94508 94559 } 94509 94560 }, 94510 94561 { ··· 95003 95054 "repo": "t-e-r-m/sculpture-themes", 95004 95055 "unstable": { 95005 95056 "version": [ 95006 - 20210530, 95007 - 624 95057 + 20210828, 95058 + 1634 95059 + ], 95060 + "commit": "cce59d2bcc48d622f3978c583108cf853f21789c", 95061 + "sha256": "0f8aqq026j0wxkgs0p3yjq3r1jd30lk79199wrdk58x9120pp6z6" 95062 + }, 95063 + "stable": { 95064 + "version": [ 95065 + 1, 95066 + 2, 95067 + 2 95008 95068 ], 95009 - "commit": "1da2b3501f3732b4a58d28b502e356226a43a96f", 95010 - "sha256": "198rjkyv876h7mbs73h8dq4lx5xhl66p7xrpvb23v0vk4vw0q5vz" 95069 + "commit": "57fb0022daf5ca753dc77ee9178267c710c318db", 95070 + "sha256": "01xw04v22dh60w49i8h72wa2hvhwpqgriv0chy90m8vmn2fz40wz" 95011 95071 } 95012 95072 }, 95013 95073 { ··· 95530 95590 "repo": "twlz0ne/separedit.el", 95531 95591 "unstable": { 95532 95592 "version": [ 95533 - 20210630, 95534 - 1805 95593 + 20210823, 95594 + 321 95535 95595 ], 95536 95596 "deps": [ 95537 95597 "dash", 95538 95598 "edit-indirect" 95539 95599 ], 95540 - "commit": "4fbbd85c0f809593f6d26edf1388ff059f77e82f", 95541 - "sha256": "0jyz0cz1c6bimkd48iv09lgmzgbb63v5dybcgrjcmcg630c8yh87" 95600 + "commit": "721ff6abea500d11a23d9c70c522c5010b1939aa", 95601 + "sha256": "0fd8dibzzdp07ljw0qp0z6qflf67bs11ain2h1kv2qsz0scbsc3x" 95542 95602 }, 95543 95603 "stable": { 95544 95604 "version": [ ··· 95735 95795 "repo": "vspinu/sesman", 95736 95796 "unstable": { 95737 95797 "version": [ 95738 - 20190909, 95739 - 1754 95798 + 20210901, 95799 + 1134 95740 95800 ], 95741 - "commit": "edee869c209c016e5f0c5cbb8abb9f3ccd2d1e05", 95742 - "sha256": "16d4kkfmrzc4d0smk9m759mv11bvicixrvwh1za7c6avscg9lym2" 95801 + "commit": "e0f555f963c9f02f8e4a50e06fc353eb4c15ee77", 95802 + "sha256": "1xczx6yavpqjx6sjhfnaw7ls5rh54zq8m7y4jidgx4rdz8y28b0a" 95743 95803 }, 95744 95804 "stable": { 95745 95805 "version": [ ··· 95783 95843 "url": "https://codeberg.org/FelipeLema/session-async.el.git", 95784 95844 "unstable": { 95785 95845 "version": [ 95786 - 20210817, 95787 - 2218 95846 + 20210902, 95847 + 1533 95788 95848 ], 95789 95849 "deps": [ 95790 95850 "jsonrpc" 95791 95851 ], 95792 - "commit": "e2ff39bdd60da67214d07900582b1049f74d03fc", 95793 - "sha256": "0b05smmgcxn5144wcsxlhi4bpliv9ffk21m02fh3l32mc5h24b30" 95852 + "commit": "32a36841fbb3c864776a3a1ac08bb94d44ca10b3", 95853 + "sha256": "1r5b05dvyayj1165w5n7vshkgh3nvfga6xv61bdpvrfpy2xs6y6b" 95794 95854 } 95795 95855 }, 95796 95856 { ··· 96385 96445 20210825, 96386 96446 707 96387 96447 ], 96388 - "commit": "d7166799bd93cf90f77cb9e4c59cb691bb3a1b8c", 96389 - "sha256": "1ins9lykfycv5nrm4lz66cfm2ny6mc338pblyw6jbxmnx7q300xv" 96448 + "commit": "ef34cf7f806a726a53fcffa183280a325defbc54", 96449 + "sha256": "0mga7i1n0s4m2iqqyw7lg0qcdhcfvvfrg3rwqgds3ssmvf096lz6" 96390 96450 } 96391 96451 }, 96392 96452 { ··· 96572 96632 "repo": "chenyanming/shrface", 96573 96633 "unstable": { 96574 96634 "version": [ 96575 - 20210506, 96576 - 358 96635 + 20210829, 96636 + 1013 96577 96637 ], 96578 96638 "deps": [ 96579 96639 "language-detection", 96580 96640 "org" 96581 96641 ], 96582 - "commit": "935cfc793c7380732915c88302c06271d9fc5cee", 96583 - "sha256": "0i4qsz59598cd707fm7cjqvczwa6fmgi6fjyknn2wm58hh3yjldi" 96642 + "commit": "b8a23e097b25d6c7754f9aaf4de89259f8a0b17d", 96643 + "sha256": "0krd112xglcvkgjl0dj6z4h9gwzh99avh10hlp4idcsm8b7hgdc9" 96584 96644 }, 96585 96645 "stable": { 96586 96646 "version": [ ··· 96828 96888 } 96829 96889 }, 96830 96890 { 96891 + "ename": "sidecar-locals", 96892 + "commit": "223bf20a37b48516b6ec9886c67660151ab37da6", 96893 + "sha256": "1lw4s749ril3mfbjdvns2myd5d8jf5dhzyywmk18bp7wb5cnmjbg", 96894 + "fetcher": "gitlab", 96895 + "repo": "ideasman42/emacs-sidecar-locals", 96896 + "unstable": { 96897 + "version": [ 96898 + 20210829, 96899 + 2323 96900 + ], 96901 + "commit": "bc41cab4b1765e48096006465c95f62f66fcaf2b", 96902 + "sha256": "18i7c0knhl8gvwr1hhlnnfl08sh9h48f7vl31cw8jrx817kzgf2y" 96903 + } 96904 + }, 96905 + { 96831 96906 "ename": "sift", 96832 96907 "commit": "855ea20024b606314f8590129259747cac0bcc97", 96833 96908 "sha256": "1kr5rxza5li3zrkfvs91y7dxmn213z0zf836rkwkmwg2b9rmqxvj", ··· 97240 97315 "repo": "dawranliou/sketch-themes", 97241 97316 "unstable": { 97242 97317 "version": [ 97243 - 20210719, 97244 - 2212 97318 + 20210826, 97319 + 1816 97245 97320 ], 97246 - "commit": "8c4b4ef49fbb059ad00ab9fb76f22c2cdd780e7c", 97247 - "sha256": "0lvjdcsx3gvg7lk22l5c8jmdqk9s38figlr5zcbbk7fgjpf4q0p2" 97321 + "commit": "50fd9fe9caf24f42dc481560e1f41addc3a06dbb", 97322 + "sha256": "0j26a9q271cd8b6vcxs6iyn3a3xz210lgyszxb39715x8lvwhvvy" 97248 97323 }, 97249 97324 "stable": { 97250 97325 "version": [ ··· 98207 98282 "repo": "Fuco1/smartparens", 98208 98283 "unstable": { 98209 98284 "version": [ 98210 - 20210817, 98211 - 1912 98285 + 20210904, 98286 + 1621 98212 98287 ], 98213 98288 "deps": [ 98214 98289 "cl-lib", 98215 98290 "dash" 98216 98291 ], 98217 - "commit": "22794b5b3773504610127c5f011629402dfec20c", 98218 - "sha256": "14b65bfsh4fglm65cvzgp412na8ykqkcwaqg84hvw6j6lqrvpg6v" 98292 + "commit": "2834c66c4f09778d0c57e99886c329188eed591a", 98293 + "sha256": "0zy5jamid6qkx8rml9ccqv85f2sr10j1rp3j77acggkf6zf3c096" 98219 98294 }, 98220 98295 "stable": { 98221 98296 "version": [ ··· 98719 98794 "repo": "SpringHan/sniem", 98720 98795 "unstable": { 98721 98796 "version": [ 98722 - 20210825, 98723 - 1510 98797 + 20210826, 98798 + 832 98724 98799 ], 98725 98800 "deps": [ 98726 98801 "dash", 98727 98802 "s" 98728 98803 ], 98729 - "commit": "212e7c1492a9d208ece2a85e64bd352e9cd53c89", 98730 - "sha256": "13afcxy5vs38xzx2mi5xpszwiabyc5hiwq1r9vy6jx6pgsb7pkhc" 98804 + "commit": "4d921b6e9c98fa208578b2b409e627580d1ab8c2", 98805 + "sha256": "0bh9brzqsvm6dj961smp4592bgjrhhq600qbqbgps8rnbbcjnl3r" 98731 98806 } 98732 98807 }, 98733 98808 { ··· 98933 99008 "repo": "bbatsov/solarized-emacs", 98934 99009 "unstable": { 98935 99010 "version": [ 98936 - 20210823, 98937 - 609 99011 + 20210827, 99012 + 859 98938 99013 ], 98939 - "commit": "48158887c0a605b7cc1ffdbeb937f182b299f4db", 98940 - "sha256": "1l9ylidix4l8979d4wzvd9fpsxvjxb6nii09s1g90rsli4av8ps2" 99014 + "commit": "874694ed8569ae98959262cfb0c66a6528a60367", 99015 + "sha256": "1j6728229rrpamh4nn2v5mmlbb111i6ar7zh0g9d922k7vqr2nam" 98941 99016 }, 98942 99017 "stable": { 98943 99018 "version": [ ··· 100333 100408 "repo": "srfi-explorations/emacs-srfi", 100334 100409 "unstable": { 100335 100410 "version": [ 100336 - 20210825, 100337 - 1823 100411 + 20210902, 100412 + 626 100338 100413 ], 100339 - "commit": "a6bbe36afa229b88aa5b406b9ef6e6393d9b2d5d", 100340 - "sha256": "102fhdhr3xa9jvdl5i715p07x0lgd3wxkhkh3li91p7gncxhrvyd" 100414 + "commit": "021239f0e2bcc60257b72916db9cdd110588ec28", 100415 + "sha256": "0v79z2d9l824j6chsviffdsfb4m9w93kgwcwdaksdb5rsfmryigp" 100341 100416 }, 100342 100417 "stable": { 100343 100418 "version": [ ··· 100617 100692 20210810, 100618 100693 1814 100619 100694 ], 100620 - "commit": "c78a04c5cf00320c0e1e6646295e20425537bf9e", 100621 - "sha256": "01ifxzzrn31d1gaq7yr88dciwylhy5q6lz4kvwkq6smqmvp3x80w" 100695 + "commit": "aa5bac257ebefd91f4b5dd787a835407bddd6fb2", 100696 + "sha256": "1zpvbsrmcz9zhlchfsbsfbi3g9z1wxhkhbpg2zp2dpk4czqy76lk" 100622 100697 } 100623 100698 }, 100624 100699 { ··· 100761 100836 20200606, 100762 100837 1308 100763 100838 ], 100764 - "commit": "c9761ab0439ed1430b635c97cbf7fae7d3019a15", 100765 - "sha256": "07g40r27s7qv68qzrplsvjdkrli7jibmak1a7fnbhsgngq9q9ily" 100839 + "commit": "ed1651792509ddbd1e139a884d26e6cd818160cb", 100840 + "sha256": "1kk5f1i3dl86svvnl845ya2vgc0xhhfp1lgns2bl6glpf5qy8bxb" 100766 100841 }, 100767 100842 "stable": { 100768 100843 "version": [ ··· 100871 100946 } 100872 100947 }, 100873 100948 { 100949 + "ename": "streak", 100950 + "commit": "deb209280c77f135fc2f2544c35220160c516f72", 100951 + "sha256": "0941kfch25qn2579zjbcrhp6s92p3sh447hzswa53w8yz95hgjy5", 100952 + "fetcher": "github", 100953 + "repo": "fosskers/streak", 100954 + "unstable": { 100955 + "version": [ 100956 + 20210901, 100957 + 1646 100958 + ], 100959 + "commit": "ac05a0d74ceaccff15f1f7128fbb976be53db549", 100960 + "sha256": "0wffyf382d2mgs4asfbljvlzz3sr1mrs0analkj1ywqblv0z8xhh" 100961 + } 100962 + }, 100963 + { 100874 100964 "ename": "streamlink", 100875 - "commit": "e6674aefa0082fc5754c888538e447037f3618f8", 100876 - "sha256": "17r4dkpap72yz62nk9pr3l48qgpm5hidffmdfnbx7bwl07wzk6cb", 100965 + "commit": "9d776fb6dfb17d55235b6d7fefed894756fde794", 100966 + "sha256": "1zz05mhp48i3q3ai0925b7sbrriyfqrr73bngiargydx3753kizv", 100877 100967 "fetcher": "github", 100878 - "repo": "benediktbroich/streamlink", 100968 + "repo": "BenediktBroich/streamlink", 100879 100969 "unstable": { 100880 100970 "version": [ 100881 100971 20210811, ··· 101251 101341 "url": "https://git.sr.ht/~amk/subsonic.el", 101252 101342 "unstable": { 101253 101343 "version": [ 101254 - 20210808, 101255 - 1328 101344 + 20210902, 101345 + 2047 101256 101346 ], 101257 101347 "deps": [ 101258 101348 "transient" 101259 101349 ], 101260 - "commit": "42c2e0b5b81c78741c069c8cfdb9e5d494157dc8", 101261 - "sha256": "08q6sccdkad4y3vv9h8bxkdn66dc4b2wxzhf7z87i70v7bw1xnwa" 101350 + "commit": "5740a2b96c827c499f3ac506f98ec5f9ed31ea37", 101351 + "sha256": "0qr96a86zj6kipix6p831hj0nkcyj3kvaggyy2zsmvhx7wjavadf" 101352 + }, 101353 + "stable": { 101354 + "version": [ 101355 + 0, 101356 + 2, 101357 + 0 101358 + ], 101359 + "deps": [ 101360 + "transient" 101361 + ], 101362 + "commit": "5740a2b96c827c499f3ac506f98ec5f9ed31ea37", 101363 + "sha256": "0qr96a86zj6kipix6p831hj0nkcyj3kvaggyy2zsmvhx7wjavadf" 101262 101364 } 101263 101365 }, 101264 101366 { ··· 101892 101994 "deps": [ 101893 101995 "ivy" 101894 101996 ], 101895 - "commit": "7cdde66c95d5205287e88010bc7a3a978c931db0", 101896 - "sha256": "0pvgh4krym43vcyiq4bsjl63gg795jlqh6kaa6llsv1awvywfqww" 101997 + "commit": "6a8e5611f32cf7cc77c2c6974dc2d3a18f32d5a5", 101998 + "sha256": "0mwrvcnpl7cr8ynhx8ilmlbjqmggxccwa6w8k15j5i640chl19xh" 101897 101999 }, 101898 102000 "stable": { 101899 102001 "version": [ ··· 102153 102255 "repo": "wolray/symbol-overlay", 102154 102256 "unstable": { 102155 102257 "version": [ 102156 - 20210422, 102157 - 2110 102258 + 20210906, 102259 + 614 102158 102260 ], 102159 102261 "deps": [ 102160 102262 "seq" 102161 102263 ], 102162 - "commit": "4231a36e39b7393d639e9cdef19f311d780deeab", 102163 - "sha256": "0q2x39s3g5kmjf5q47qpqcnzdscnj112dfd7qqb2z0iq0sh2nbrd" 102264 + "commit": "8629a4ddbe95d42c39ce817d724877deb1984ba1", 102265 + "sha256": "1g8zi7qky5vfrl2c2wvdcr0mrm8xkkxl3cbhrkh95bhq1vypz5p8" 102164 102266 }, 102165 102267 "stable": { 102166 102268 "version": [ ··· 102223 102325 "repo": "countvajhula/symex.el", 102224 102326 "unstable": { 102225 102327 "version": [ 102226 - 20210820, 102227 - 2202 102328 + 20210829, 102329 + 2036 102228 102330 ], 102229 102331 "deps": [ 102230 102332 "evil", ··· 102236 102338 "seq", 102237 102339 "undo-tree" 102238 102340 ], 102239 - "commit": "4561214b453e551253e9a273ef57c84c12c7cd8b", 102240 - "sha256": "1adzvdp54l1d6awcbfrbqx41kh40lqk5009h1gpj315l3zq3vhpx" 102341 + "commit": "cd80cfbff832b64de65fc4ecb50a53956dac760f", 102342 + "sha256": "1nh6fncm46lml9df9vlj3s21qxai43fgsvl3b8mzr7rp3c0f40l5" 102241 102343 }, 102242 102344 "stable": { 102243 102345 "version": [ ··· 102470 102572 "repo": "vapniks/syslog-mode", 102471 102573 "unstable": { 102472 102574 "version": [ 102473 - 20210825, 102474 - 116 102575 + 20210906, 102576 + 1438 102475 102577 ], 102476 102578 "deps": [ 102477 102579 "hide-lines", 102478 102580 "hsluv", 102479 102581 "ov" 102480 102582 ], 102481 - "commit": "7773a8488db88424e5e86cf4268c9bbe0b94085a", 102482 - "sha256": "0cph14cc3dzv3dp8aq6ifs3m92rq8jr4b2rpdjgc8pbcjrs9hvyb" 102583 + "commit": "f0d25da654d0666c6084fcb0d075326e13ec06c0", 102584 + "sha256": "1baa9n85vq77xha89j09n32zmwppgrwxg3z30vrbbjqaiwlb6nr3" 102483 102585 }, 102484 102586 "stable": { 102485 102587 "version": [ ··· 102912 103014 20210415, 102913 103015 1322 102914 103016 ], 102915 - "commit": "daf9920a8ecb230045f4b07834b3a6f45676f1ce", 102916 - "sha256": "0lh90x5hqxm3pyqiy4qb10nxs5ga7w4hc7k6xkax41yhi41bgd58" 103017 + "commit": "5eacb6c1c879038c4448c10b3df9a73d95a48fc3", 103018 + "sha256": "0k7y7lxdgj73mmrs228l7m9b9fdzjjw8knqzwhkvqb5bb93ii6fm" 102917 103019 }, 102918 103020 "stable": { 102919 103021 "version": [ ··· 103100 103202 "repo": "zevlg/telega.el", 103101 103203 "unstable": { 103102 103204 "version": [ 103103 - 20210825, 103104 - 2144 103205 + 20210903, 103206 + 2313 103105 103207 ], 103106 103208 "deps": [ 103107 103209 "rainbow-identifiers", 103108 103210 "visual-fill-column" 103109 103211 ], 103110 - "commit": "08d652fd85fdb799e5b68caddc64bbbdcb08205b", 103111 - "sha256": "1f5vhxw34qbgxc99zz7m3lml18xw59qdrgdfmxa79nxfrqczabcd" 103212 + "commit": "5450160db7ab7661ec2519d53bb26429ea90a1fe", 103213 + "sha256": "1yzqlnw1vmbk2dn790ljirp253k4h5j12r0pm2zpp4iachl1z2kw" 103112 103214 }, 103113 103215 "stable": { 103114 103216 "version": [ ··· 103239 103341 "repo": "clarete/templatel", 103240 103342 "unstable": { 103241 103343 "version": [ 103242 - 20210802, 103243 - 249 103344 + 20210902, 103345 + 228 103244 103346 ], 103245 - "commit": "23c9bce8c1e3866e7cdbe9a69777648e13707357", 103246 - "sha256": "0rn8d0zn3dlqfvr5m5v687bw96mnv02v6ngq5jvljgykyawh3h58" 103347 + "commit": "e1ccb88cdc4b482b078276960f810b82ba3b7847", 103348 + "sha256": "0wy53y7p6i0m9az0ca4zqrqfq40cgn202pilsawdy8rlpj9y619p" 103247 103349 }, 103248 103350 "stable": { 103249 103351 "version": [ ··· 104048 104150 "repo": "myTerminal/theme-looper", 104049 104151 "unstable": { 104050 104152 "version": [ 104051 - 20210727, 104052 - 249 104153 + 20210827, 104154 + 424 104053 104155 ], 104054 104156 "deps": [ 104055 104157 "cl-lib" 104056 104158 ], 104057 - "commit": "32ca76dfa8100a2069ca735e28e19ae87c74f956", 104058 - "sha256": "184n2r33d99wmzrnscpl0rqqivmvm17k60gfbrw5yjppq5fl55m3" 104159 + "commit": "e6e8efd740df0b68db89805ba72492818dba61ab", 104160 + "sha256": "1cy1s9iyv2c4c2kld42aricar4s5d0irdhsqb8rsbbriif50vpvd" 104059 104161 }, 104060 104162 "stable": { 104061 104163 "version": [ ··· 104191 104293 20200212, 104192 104294 1903 104193 104295 ], 104194 - "commit": "876f7c33782aaac147e88d9063fd286f7a8a46e1", 104195 - "sha256": "1b2kfqkr9ss9lb5133zpp8sz9w7c77mydv1lvb56fi03lms94a5r" 104296 + "commit": "3569010b61baefb4324d4b28f1ae60799283a4b5", 104297 + "sha256": "10y5h8qfcbgxnihnm61ab9xs74128jni5gha9k3m7afa5wg8j84b" 104196 104298 }, 104197 104299 "stable": { 104198 104300 "version": [ 104199 104301 2021, 104200 104302 8, 104201 - 23, 104303 + 30, 104202 104304 0 104203 104305 ], 104204 - "commit": "a70658fff6a7cc01e323dd7a4a5b7305906796cc", 104205 - "sha256": "04r195apvbp4b0nk4j45pxhyl5dl6hr7x35zji548v0q8dgiv5lm" 104306 + "commit": "9dabbd58640cfe95ddb7f30d497693f4ba6d9f01", 104307 + "sha256": "0mw7vhs78m0zk7mz8icd6zr4bzsjn82jcdgrb13bw76xw6i88161" 104206 104308 } 104207 104309 }, 104208 104310 { ··· 104258 104360 "deps": [ 104259 104361 "haskell-mode" 104260 104362 ], 104261 - "commit": "7142775c2039cae4cde9bdd6f68b3e0cbae2de9d", 104262 - "sha256": "02913lhc08kwx4m0x6hm40bg1yym449y160bndmpfv4n19d92z44" 104363 + "commit": "638a1079a0ba8cd757bc74f99a58d5724b3314f5", 104364 + "sha256": "1ki0i9f1fvvhkac1ivd7smg5c3vnbdrfyxr6v9q4fms4mczj4jc9" 104263 104365 }, 104264 104366 "stable": { 104265 104367 "version": [ ··· 104507 104609 "repo": "aimebertrand/timu-spacegrey-theme", 104508 104610 "unstable": { 104509 104611 "version": [ 104510 - 20210819, 104612 + 20210828, 104511 104613 2241 104512 104614 ], 104513 - "commit": "facb4da1a2ee333a3c66f56009c8dec8e9652dab", 104514 - "sha256": "0wpam6kjg53j00g4k4ar0zhf0v0nbpp00klk0cbpv06yr4lvswpc" 104615 + "commit": "07fa0c6287612693a4d9b571d6a9a72e498e41c2", 104616 + "sha256": "0fswhfn0qjpb94dlbl3rivgkbz3vdly4hk5hgl017zgj3nfb06vn" 104515 104617 }, 104516 104618 "stable": { 104517 104619 "version": [ ··· 104717 104819 "repo": "abrochard/emacs-todoist", 104718 104820 "unstable": { 104719 104821 "version": [ 104720 - 20200517, 104721 - 1825 104822 + 20210905, 104823 + 2024 104722 104824 ], 104723 104825 "deps": [ 104724 104826 "dash", 104725 104827 "org", 104726 104828 "transient" 104727 104829 ], 104728 - "commit": "b3f003603111b7e31b94c354cf4c83c8208c01c3", 104729 - "sha256": "0srk3chc45fl6zjwymzqwmxm22w9pcjxg7968c7fkvbqr21wk6p7" 104830 + "commit": "cd934e50d6a226c8718957877aedc4d2d947ac59", 104831 + "sha256": "12v9alrkvzwihkldn2wbn3xc3yc408kmp155j9pn9vjy53fypvg1" 104730 104832 } 104731 104833 }, 104732 104834 { ··· 104931 105033 } 104932 105034 }, 104933 105035 { 105036 + "ename": "topsy", 105037 + "commit": "89d455ee48c4567e098bb733396fa2729bec58c6", 105038 + "sha256": "0nxgfixly4rnvn83kz8lgc7pjdvzhm0px2w711zkx9rp55d5g86z", 105039 + "fetcher": "github", 105040 + "repo": "alphapapa/topsy.el", 105041 + "unstable": { 105042 + "version": [ 105043 + 20210831, 105044 + 133 105045 + ], 105046 + "commit": "8ae0976dfdbe4461c33ed44cf1dedc2c903b0bb0", 105047 + "sha256": "032i1prl2v5w4l37zjlqam7063s56nk61nj5l3ypmxp98yz9nrq8" 105048 + } 105049 + }, 105050 + { 104934 105051 "ename": "tornado-template-mode", 104935 105052 "commit": "f329baae028fd17618824128f312a49aa0a0807e", 104936 105053 "sha256": "1sdv9rlhnabydws2sppsjcgqr0lg6bjapv753ksq5aaq21qsps0h", ··· 105511 105628 "repo": "emacs-tree-sitter/elisp-tree-sitter", 105512 105629 "unstable": { 105513 105630 "version": [ 105514 - 20210811, 105515 - 1609 105631 + 20210904, 105632 + 216 105516 105633 ], 105517 105634 "deps": [ 105518 105635 "tsc" 105519 105636 ], 105520 - "commit": "a0f259c024fa15587d225e1d5440d71109d7e3f3", 105521 - "sha256": "1x2p7x7f71kxvayvlg418vr6pa36044fla58saknb9p651hy9rjh" 105637 + "commit": "dbab35d5fc2fd5cb6ba08f31478446706e65282f", 105638 + "sha256": "0jv31399968ig4yys4jvkjzpkj1kszskil9aiba6hc0p6sips91f" 105522 105639 }, 105523 105640 "stable": { 105524 105641 "version": [ ··· 105572 105689 "repo": "emacs-tree-sitter/tree-sitter-langs", 105573 105690 "unstable": { 105574 105691 "version": [ 105575 - 20210825, 105576 - 1205 105692 + 20210831, 105693 + 1555 105577 105694 ], 105578 105695 "deps": [ 105579 105696 "tree-sitter" 105580 105697 ], 105581 - "commit": "81adcdc06a9700ecf9659171da275b1c9dcfdfb6", 105582 - "sha256": "0k067rkzdnxs5h5yf5l7pppbnwc0x6c41d97kygi1z03124s77s6" 105698 + "commit": "ef42920bb573b40e64b35e43968dac355f87e959", 105699 + "sha256": "03257nqxz11g4qivmq2h7gs98ssrmpvdyaghrfxpaizagbk7clmd" 105583 105700 }, 105584 105701 "stable": { 105585 105702 "version": [ ··· 105638 105755 "repo": "Alexander-Miller/treemacs", 105639 105756 "unstable": { 105640 105757 "version": [ 105641 - 20210823, 105642 - 1524 105758 + 20210906, 105759 + 1653 105643 105760 ], 105644 105761 "deps": [ 105645 105762 "ace-window", ··· 105651 105768 "pfuture", 105652 105769 "s" 105653 105770 ], 105654 - "commit": "f30a2151aec195026bd55affc05259b629fd9006", 105655 - "sha256": "0qndkwfnqjdkddhrs0gzn9rg2a7fwwrrnya0iz2hjvxpmcdxr37c" 105771 + "commit": "90088cee342fe3418b4b6435094e51ff78f37efc", 105772 + "sha256": "09h9ryxb840nbw6ph8wiak4ila5h5whm5sh1fj56fzh164vp7ih4" 105656 105773 }, 105657 105774 "stable": { 105658 105775 "version": [ ··· 105688 105805 "all-the-icons", 105689 105806 "treemacs" 105690 105807 ], 105691 - "commit": "f30a2151aec195026bd55affc05259b629fd9006", 105692 - "sha256": "0qndkwfnqjdkddhrs0gzn9rg2a7fwwrrnya0iz2hjvxpmcdxr37c" 105808 + "commit": "90088cee342fe3418b4b6435094e51ff78f37efc", 105809 + "sha256": "09h9ryxb840nbw6ph8wiak4ila5h5whm5sh1fj56fzh164vp7ih4" 105693 105810 } 105694 105811 }, 105695 105812 { ··· 105707 105824 "evil", 105708 105825 "treemacs" 105709 105826 ], 105710 - "commit": "f30a2151aec195026bd55affc05259b629fd9006", 105711 - "sha256": "0qndkwfnqjdkddhrs0gzn9rg2a7fwwrrnya0iz2hjvxpmcdxr37c" 105827 + "commit": "90088cee342fe3418b4b6435094e51ff78f37efc", 105828 + "sha256": "09h9ryxb840nbw6ph8wiak4ila5h5whm5sh1fj56fzh164vp7ih4" 105712 105829 }, 105713 105830 "stable": { 105714 105831 "version": [ ··· 105737 105854 "deps": [ 105738 105855 "treemacs" 105739 105856 ], 105740 - "commit": "f30a2151aec195026bd55affc05259b629fd9006", 105741 - "sha256": "0qndkwfnqjdkddhrs0gzn9rg2a7fwwrrnya0iz2hjvxpmcdxr37c" 105857 + "commit": "90088cee342fe3418b4b6435094e51ff78f37efc", 105858 + "sha256": "09h9ryxb840nbw6ph8wiak4ila5h5whm5sh1fj56fzh164vp7ih4" 105742 105859 }, 105743 105860 "stable": { 105744 105861 "version": [ ··· 105761 105878 "repo": "Alexander-Miller/treemacs", 105762 105879 "unstable": { 105763 105880 "version": [ 105764 - 20210107, 105765 - 1251 105881 + 20210906, 105882 + 1653 105766 105883 ], 105767 105884 "deps": [ 105768 105885 "magit", 105769 105886 "pfuture", 105770 105887 "treemacs" 105771 105888 ], 105772 - "commit": "f30a2151aec195026bd55affc05259b629fd9006", 105773 - "sha256": "0qndkwfnqjdkddhrs0gzn9rg2a7fwwrrnya0iz2hjvxpmcdxr37c" 105889 + "commit": "90088cee342fe3418b4b6435094e51ff78f37efc", 105890 + "sha256": "09h9ryxb840nbw6ph8wiak4ila5h5whm5sh1fj56fzh164vp7ih4" 105774 105891 }, 105775 105892 "stable": { 105776 105893 "version": [ ··· 105802 105919 "persp-mode", 105803 105920 "treemacs" 105804 105921 ], 105805 - "commit": "f30a2151aec195026bd55affc05259b629fd9006", 105806 - "sha256": "0qndkwfnqjdkddhrs0gzn9rg2a7fwwrrnya0iz2hjvxpmcdxr37c" 105922 + "commit": "90088cee342fe3418b4b6435094e51ff78f37efc", 105923 + "sha256": "09h9ryxb840nbw6ph8wiak4ila5h5whm5sh1fj56fzh164vp7ih4" 105807 105924 }, 105808 105925 "stable": { 105809 105926 "version": [ ··· 105835 105952 "perspective", 105836 105953 "treemacs" 105837 105954 ], 105838 - "commit": "f30a2151aec195026bd55affc05259b629fd9006", 105839 - "sha256": "0qndkwfnqjdkddhrs0gzn9rg2a7fwwrrnya0iz2hjvxpmcdxr37c" 105955 + "commit": "90088cee342fe3418b4b6435094e51ff78f37efc", 105956 + "sha256": "09h9ryxb840nbw6ph8wiak4ila5h5whm5sh1fj56fzh164vp7ih4" 105840 105957 } 105841 105958 }, 105842 105959 { ··· 105854 105971 "projectile", 105855 105972 "treemacs" 105856 105973 ], 105857 - "commit": "f30a2151aec195026bd55affc05259b629fd9006", 105858 - "sha256": "0qndkwfnqjdkddhrs0gzn9rg2a7fwwrrnya0iz2hjvxpmcdxr37c" 105974 + "commit": "90088cee342fe3418b4b6435094e51ff78f37efc", 105975 + "sha256": "09h9ryxb840nbw6ph8wiak4ila5h5whm5sh1fj56fzh164vp7ih4" 105859 105976 }, 105860 105977 "stable": { 105861 105978 "version": [ ··· 106113 106230 20210825, 106114 106231 1402 106115 106232 ], 106116 - "commit": "a0f259c024fa15587d225e1d5440d71109d7e3f3", 106117 - "sha256": "1x2p7x7f71kxvayvlg418vr6pa36044fla58saknb9p651hy9rjh" 106233 + "commit": "dbab35d5fc2fd5cb6ba08f31478446706e65282f", 106234 + "sha256": "0jv31399968ig4yys4jvkjzpkj1kszskil9aiba6hc0p6sips91f" 106118 106235 }, 106119 106236 "stable": { 106120 106237 "version": [ ··· 106193 106310 "repo": "ocaml/tuareg", 106194 106311 "unstable": { 106195 106312 "version": [ 106196 - 20210825, 106197 - 1946 106313 + 20210904, 106314 + 917 106198 106315 ], 106199 106316 "deps": [ 106200 106317 "caml" 106201 106318 ], 106202 - "commit": "d2b38f0249e3db467e9708985571f06ae191edbb", 106203 - "sha256": "1gaind3zfj1adl6dhk5yrx2fajqhxb8ch38vk66077s81qqzzw7k" 106319 + "commit": "eb0bff8d7bdf229322aa28ff0a8f44ba5e162202", 106320 + "sha256": "1y2dpc2hndqwk8gc6lp6f1c4px3kak514hk120sjxpb3133g3ivf" 106204 106321 }, 106205 106322 "stable": { 106206 106323 "version": [ ··· 106457 106574 "repo": "emacs-typescript/typescript.el", 106458 106575 "unstable": { 106459 106576 "version": [ 106460 - 20201002, 106461 - 1109 106577 + 20210830, 106578 + 1858 106462 106579 ], 106463 - "commit": "b369d7d2518fa11760ac3908a383405350cd51d2", 106464 - "sha256": "186bpvqxx87kp3857mq0mzn1ddsvzmpijix810k6bdz8522x7zdw" 106580 + "commit": "2a58631230fe2d176352af262a0efdecc21f90ac", 106581 + "sha256": "0fjgw71sgyrygzk9s6hfrqky06lqfwzz75bjxkxhb7yl5mdj8ccv" 106465 106582 }, 106466 106583 "stable": { 106467 106584 "version": [ 106468 106585 0, 106469 - 3 106586 + 4 106470 106587 ], 106471 - "commit": "7a5c74d88e3c5513cc4431a837003736f905a75e", 106472 - "sha256": "002f1xfhq43fjaqliwrgxspryfahpa82va5dw3p8kwil2xwvc6mh" 106588 + "commit": "b369d7d2518fa11760ac3908a383405350cd51d2", 106589 + "sha256": "186bpvqxx87kp3857mq0mzn1ddsvzmpijix810k6bdz8522x7zdw" 106473 106590 } 106474 106591 }, 106475 106592 { ··· 109336 109453 "repo": "akermu/emacs-libvterm", 109337 109454 "unstable": { 109338 109455 "version": [ 109339 - 20210824, 109340 - 1453 109456 + 20210905, 109457 + 903 109341 109458 ], 109342 - "commit": "9e5a208d8871293a23a2734591fac97a584a41c2", 109343 - "sha256": "13r9zxivgml610d0hk9cagpyv982596knad6jwq48cpncckwxrvl" 109459 + "commit": "db9f47f62391e9ac02fff6f0c63528bd8e5658de", 109460 + "sha256": "19fvxyqcrhim6p06krsh4zaqkl49vcdpkd6i9xqldsmm4lzmcqj8" 109344 109461 } 109345 109462 }, 109346 109463 { ··· 109351 109468 "repo": "jixiuf/vterm-toggle", 109352 109469 "unstable": { 109353 109470 "version": [ 109354 - 20210629, 109355 - 927 109471 + 20210902, 109472 + 828 109356 109473 ], 109357 109474 "deps": [ 109358 109475 "vterm" 109359 109476 ], 109360 - "commit": "2258eb19e8bde75f79505c4306f3476bcedce56c", 109361 - "sha256": "0k5hmn2wnag6hirnk2ch3xviymbxha5pcb3p1j1lj2likbhwizw8" 109477 + "commit": "ea0bfeaa200d9ed02b51bbbd83222657b02637e7", 109478 + "sha256": "0bwgzpf2wyzdj9smwys06zx4yha72pw50wzdh4zld45ph40pb6qw" 109362 109479 } 109363 109480 }, 109364 109481 { ··· 109572 109689 "repo": "emacs-w3m/emacs-w3m", 109573 109690 "unstable": { 109574 109691 "version": [ 109575 - 20210817, 109576 - 327 109692 + 20210906, 109693 + 347 109577 109694 ], 109578 - "commit": "d7166799bd93cf90f77cb9e4c59cb691bb3a1b8c", 109579 - "sha256": "1ins9lykfycv5nrm4lz66cfm2ny6mc338pblyw6jbxmnx7q300xv" 109695 + "commit": "ef34cf7f806a726a53fcffa183280a325defbc54", 109696 + "sha256": "0mga7i1n0s4m2iqqyw7lg0qcdhcfvvfrg3rwqgds3ssmvf096lz6" 109580 109697 } 109581 109698 }, 109582 109699 { ··· 109664 109781 "repo": "darkstego/wakib-keys", 109665 109782 "unstable": { 109666 109783 "version": [ 109667 - 20201001, 109668 - 1448 109784 + 20210903, 109785 + 1619 109669 109786 ], 109670 - "commit": "b803fcaef31539e070a08202b9039bbeb29e8f66", 109671 - "sha256": "1bjl9h8p63334dxbbcdz6rmmskslrlbbvakhklzica9al7gr92w5" 109787 + "commit": "8fa54f3cf7921e961e46d20e1afc51eec8286003", 109788 + "sha256": "196y13zjbp4j1fjsgcaqri9bplzj5445g8i8l4plv4ff9nkyyc2p" 109672 109789 } 109673 109790 }, 109674 109791 { ··· 110043 110160 "repo": "fxbois/web-mode", 110044 110161 "unstable": { 110045 110162 "version": [ 110046 - 20210131, 110047 - 1758 110163 + 20210902, 110164 + 1615 110048 110165 ], 110049 - "commit": "8ef47935d638902ba35a557cae5edd6ab6ab1346", 110050 - "sha256": "1csskh7wyyjjpn81if2ss29vaz8vqzszb9yg99ffkgkyx2fr57y1" 110166 + "commit": "61f057a6baeba6b3595e412ba79b3080dca17dcc", 110167 + "sha256": "0qmsczsx867h97yqifn9rv5d3gsy7mgwjl9radbf63wfdd89zgcb" 110051 110168 }, 110052 110169 "stable": { 110053 110170 "version": [ ··· 110220 110337 "repo": "emacs-love/weblorg", 110221 110338 "unstable": { 110222 110339 "version": [ 110223 - 20210822, 110224 - 1937 110340 + 20210906, 110341 + 1254 110225 110342 ], 110226 110343 "deps": [ 110227 110344 "templatel" 110228 110345 ], 110229 - "commit": "cc095820669c7c2e77b06a86a887ecec70ae4853", 110230 - "sha256": "0ma5shksdha84yf18ay7a6ss4aacjh94827a5wmyv9bc5za5yvq1" 110346 + "commit": "e49a901223b9f5db390adf01e3928f134aa66f25", 110347 + "sha256": "1h1k54p5sfd5bxqg40w62nprii28g0pjkfy0ayf0vyxsyhdj6d9y" 110231 110348 }, 110232 110349 "stable": { 110233 110350 "version": [ ··· 111653 111770 "repo": "abo-abo/worf", 111654 111771 "unstable": { 111655 111772 "version": [ 111656 - 20210809, 111657 - 1409 111773 + 20210826, 111774 + 1000 111658 111775 ], 111659 111776 "deps": [ 111660 111777 "ace-link", ··· 111662 111779 "swiper", 111663 111780 "zoutline" 111664 111781 ], 111665 - "commit": "e31759db6aae8a951c0843a4c855bccb626348c4", 111666 - "sha256": "1aziil5gmiyk0qb89ydc7h72zdyr2n71z3ybrqji9ypx3vrrdwdx" 111782 + "commit": "aab516cd0cae65796cce89b29691e95d18bec3ef", 111783 + "sha256": "1kiy00r01h05p5i2g0z5kv9dhk3hcbfhjc3gibcx7bspsjsnmn7q" 111667 111784 }, 111668 111785 "stable": { 111669 111786 "version": [ ··· 112082 112199 "repo": "xahlee/xah-css-mode", 112083 112200 "unstable": { 112084 112201 "version": [ 112085 - 20210824, 112086 - 120 112202 + 20210905, 112203 + 1756 112087 112204 ], 112088 - "commit": "20737b65529ca185db663e709cca412e8d03cb1e", 112089 - "sha256": "0621vah5xm5zz6mhlgjlbqiccpbq4nssckm3wyqmw30mk2zr29mb" 112205 + "commit": "b1316dbf6b8b381a6d9149e1b09c645b748cab78", 112206 + "sha256": "1jwgw5s1midak6f15d7azvqa48nljmdbn36sjcm39xfq55m9rfj6" 112090 112207 } 112091 112208 }, 112092 112209 { ··· 112097 112214 "repo": "xahlee/xah-elisp-mode", 112098 112215 "unstable": { 112099 112216 "version": [ 112100 - 20210824, 112101 - 730 112217 + 20210904, 112218 + 716 112102 112219 ], 112103 - "commit": "4bd7858dadff5c5320f169ebabde379e29bb7559", 112104 - "sha256": "0ygqzyc398asczryyr4qz5sljzz0a4l87l1vys32vv49g4z1szih" 112220 + "commit": "2c39feb58415d5163e821bf83d0fa2b6d1a235c6", 112221 + "sha256": "062mxc8zbhjing13anx3hd4wnj0702r6ppwbj6glbrvvrjx44ly8" 112105 112222 } 112106 112223 }, 112107 112224 { ··· 112112 112229 "repo": "xahlee/xah-find", 112113 112230 "unstable": { 112114 112231 "version": [ 112115 - 20210815, 112116 - 201 112232 + 20210902, 112233 + 518 112117 112234 ], 112118 - "commit": "88e390e1f7ccee30cd4d5ac112acdf9b4c72780d", 112119 - "sha256": "1rhivz291580s0wn0syqhhaqdv7p3df0a7vk8zmx6485nm1hy4mh" 112235 + "commit": "a4cb60fb893b62d39ebeb79e5c322d1192c7cf4b", 112236 + "sha256": "051m6697fxkff7jh8nhzxl9dh6vjw75ndgfz1cf743i79gdgj8nk" 112120 112237 } 112121 112238 }, 112122 112239 { ··· 112127 112244 "repo": "xahlee/xah-fly-keys", 112128 112245 "unstable": { 112129 112246 "version": [ 112130 - 20210823, 112131 - 302 112247 + 20210828, 112248 + 1914 112132 112249 ], 112133 - "commit": "c5a510db6aa15de78c809490571a5b2e9d765202", 112134 - "sha256": "05xzhrbn3y0wkan6cpk290cvb5gn4gdjkh64s0q466hbybm4lnj5" 112250 + "commit": "0258ce1969ea4766a2b1a89d3c091cc96ea7ae16", 112251 + "sha256": "1vfnx4p2361pzr3lf4bj09xqbp93g1s7a7fjmgfz4f7agaph77zj" 112135 112252 } 112136 112253 }, 112137 112254 { ··· 112142 112259 "repo": "xahlee/xah-get-thing-or-selection", 112143 112260 "unstable": { 112144 112261 "version": [ 112145 - 20210813, 112146 - 834 112262 + 20210828, 112263 + 1913 112147 112264 ], 112148 - "commit": "ba818dc7fd90b49b780709be5266733ede86a556", 112149 - "sha256": "15bjib9n7qakdc70x4xdjaw1q1rm9yz8k55l24mfm848fz62bq30" 112265 + "commit": "849683fa055afc982af4811f89998281ffe99315", 112266 + "sha256": "0zcjb8glb28q1vskyp4mwqpysx1nphyciw8jszfhxqgsbr7nq3fv" 112150 112267 } 112151 112268 }, 112152 112269 { ··· 112157 112274 "repo": "xahlee/lookup-word-on-internet", 112158 112275 "unstable": { 112159 112276 "version": [ 112160 - 20210801, 112161 - 102 112277 + 20210902, 112278 + 519 112162 112279 ], 112163 - "commit": "d69eb2b66eff70ef311967bf774195bf3331cfff", 112164 - "sha256": "12ssjraw8ymphkiyvzpnmh90k9m2sskvklkjcl2ni7qmjc5774v7" 112280 + "commit": "a8ef9b5597ab176015c185a9da435b2d5e5d5b71", 112281 + "sha256": "0hsy7y1vdc8warh4h0yanckm5b0jh6kpmwhyh035j7xvkg6lzf4w" 112165 112282 } 112166 112283 }, 112167 112284 { ··· 112172 112289 "repo": "xahlee/xah-math-input", 112173 112290 "unstable": { 112174 112291 "version": [ 112175 - 20210815, 112176 - 211 112292 + 20210901, 112293 + 207 112177 112294 ], 112178 - "commit": "1685bb8652c28a32c6d55fe61bbf4b5cb3f3dcca", 112179 - "sha256": "11akmsmynrbzadyw502czrvaw0mly06mzlj4zg5adgvy52mpb0ip" 112295 + "commit": "e7aefa49d6335cac5c08c7aeb4f4837e2706ae9d", 112296 + "sha256": "0rkrz324l0gr1lm4nbwzlfl5cs8xh6dr2hh00shbkjby9fshy8b1" 112180 112297 } 112181 112298 }, 112182 112299 { ··· 112202 112319 "repo": "xahlee/xah-replace-pairs", 112203 112320 "unstable": { 112204 112321 "version": [ 112205 - 20210815, 112206 - 207 112322 + 20210906, 112323 + 1001 112207 112324 ], 112208 - "commit": "b5e4f9ebc9e17916e736af9935bf4e17032edde9", 112209 - "sha256": "1dy3y27xyprmxymnm43d7vsmsfhdrr1nbbdpvfflqxs9q6hll2xn" 112325 + "commit": "2ae97f13ced5a25881c7d7bca1804259403c1f80", 112326 + "sha256": "0akyld9fpzw5smgqnqsv7cbqpqah262y2cwpka1di4wdmz8sijdb" 112210 112327 } 112211 112328 }, 112212 112329 { ··· 112522 112639 "repo": "ndw/xmlunicode", 112523 112640 "unstable": { 112524 112641 "version": [ 112525 - 20210717, 112526 - 1246 112642 + 20210829, 112643 + 1631 112527 112644 ], 112528 - "commit": "7e4c71c30f0d5214c45d4d4d48b149029ddb6b77", 112529 - "sha256": "0gc9fg95ihqz7lkn3vxc0qaslbxbj5jkhm2ddh41c3v9ym79mblp" 112645 + "commit": "6e91a39114ae6ec98b26c9670db916a02c721b1f", 112646 + "sha256": "07qkp4igbsdxffcm1hlprf0jgvq1mc714q85pbpby5kfir9f2lbd" 112530 112647 }, 112531 112648 "stable": { 112532 112649 "version": [ 112533 112650 1, 112534 - 24 112651 + 25 112535 112652 ], 112536 - "commit": "7e4c71c30f0d5214c45d4d4d48b149029ddb6b77", 112537 - "sha256": "0gc9fg95ihqz7lkn3vxc0qaslbxbj5jkhm2ddh41c3v9ym79mblp" 112653 + "commit": "6e91a39114ae6ec98b26c9670db916a02c721b1f", 112654 + "sha256": "07qkp4igbsdxffcm1hlprf0jgvq1mc714q85pbpby5kfir9f2lbd" 112538 112655 } 112539 112656 }, 112540 112657 { ··· 113997 114114 } 113998 114115 }, 113999 114116 { 114117 + "ename": "zettelkasten", 114118 + "commit": "ed12df24029a4154fe55588f3e8ca0670af3f5f3", 114119 + "sha256": "07gbkpanzs4rk066gg3nm95mfv3ng1f0si17mv2qax2dfx5k0lzd", 114120 + "fetcher": "github", 114121 + "repo": "ymherklotz/emacs-zettelkasten", 114122 + "unstable": { 114123 + "version": [ 114124 + 20210830, 114125 + 1025 114126 + ], 114127 + "deps": [ 114128 + "s" 114129 + ], 114130 + "commit": "748e14b5a0dc2200d10b946d0111bd286e2c1c71", 114131 + "sha256": "1s9nhqbw5jxkqsvy40dd80l5wjw1407vk9qmdfiva8hj0ymcigr6" 114132 + }, 114133 + "stable": { 114134 + "version": [ 114135 + 0, 114136 + 3, 114137 + 0 114138 + ], 114139 + "deps": [ 114140 + "s" 114141 + ], 114142 + "commit": "dd4feae2111357d99dcde1919c1d72523cc5b68c", 114143 + "sha256": "16hqk9hdfmbjmhb6bb0xk6silgx85ji0q1dpncwgida6958rq79r" 114144 + } 114145 + }, 114146 + { 114000 114147 "ename": "zetz-mode", 114001 114148 "commit": "ad2add185cf31a92ca1fcd3a9efcbcdb0aa9e583", 114002 114149 "sha256": "0k30c0f2h96vvb8yacpg710gi64swwslm1gljpzcwxni5kdpqkzm", ··· 114036 114183 "repo": "ziglang/zig-mode", 114037 114184 "unstable": { 114038 114185 "version": [ 114039 - 20210605, 114040 - 513 114186 + 20210831, 114187 + 719 114041 114188 ], 114042 - "commit": "acf3ee8bbf6b7e49dbfaa8bc82a4c1b9b1f2b531", 114043 - "sha256": "0wc65hr9y1yvyb5ywswiwhk8jjxswzd0qzr92b7pkfwghmf0z1yp" 114189 + "commit": "aba01b6199b7697692e5e9217f602477dd5ebd9b", 114190 + "sha256": "1qlvsm4736wr3gw54jvjq3yilf3d7564yydhid4ka1wswvl3sbq3" 114044 114191 } 114045 114192 }, 114046 114193 { ··· 114458 114605 "repo": "abo-abo/zoutline", 114459 114606 "unstable": { 114460 114607 "version": [ 114461 - 20190520, 114462 - 1819 114608 + 20210901, 114609 + 1100 114463 114610 ], 114464 - "commit": "63756846f8540b6faf89d885438186e4fe1c7d8a", 114465 - "sha256": "1w0zh6vs7klgivq5r030a82mcfg1zwic4x3fimyiqyg5n8p67hyx" 114611 + "commit": "3c0b5072a2f19a35d92dde6377ae7c1ac0d3bfe7", 114612 + "sha256": "0ickivsq8zn0b50mqfa94c63id3fki94wd1w9br84dbd6kjiy1s7" 114466 114613 }, 114467 114614 "stable": { 114468 114615 "version": [
+2 -2
pkgs/applications/networking/nextcloud-client/default.nix
··· 21 21 22 22 mkDerivation rec { 23 23 pname = "nextcloud-client"; 24 - version = "3.3.2"; 24 + version = "3.3.3"; 25 25 26 26 src = fetchFromGitHub { 27 27 owner = "nextcloud"; 28 28 repo = "desktop"; 29 29 rev = "v${version}"; 30 - sha256 = "sha256-sqoOppq0QdLcA2IFZYnixMNnFWb3x83tqTp6hqqVU14="; 30 + sha256 = "sha256-QE6F+L1uy2Tmsf/DI8eUF5Ck+oE8CXDTpZS3xg2tiSs="; 31 31 }; 32 32 33 33 patches = [
+24 -12
pkgs/applications/version-management/vcsh/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, which, git, ronn, perlPackages }: 1 + { lib, stdenv 2 + , fetchurl 3 + , makeWrapper 4 + , pkg-config 5 + , git 6 + , perlPackages 7 + }: 2 8 3 - stdenv.mkDerivation { 4 - version = "1.20170915"; # date of commit we're pulling 9 + stdenv.mkDerivation rec { 5 10 pname = "vcsh"; 11 + version = "2.0.2"; 6 12 7 - src = fetchFromGitHub { 8 - owner = "RichiH"; 9 - repo = "vcsh"; 10 - rev = "eadb8df6aa71a76e5be36492edcadb118bd862ac"; 11 - sha256 = "1wfzp8167lcq6akdpbi8fikjv0z3h1i5minh3423dljc04q0klm1"; 13 + src = fetchurl { 14 + url = "https://github.com/RichiH/vcsh/releases/download/v${version}/${pname}-${version}.tar.xz"; 15 + sha256 = "0qdd4f6rm5rhnym9f114pcj9vafhjjpg962c4g420rn78fxhpz1z"; 12 16 }; 13 17 14 - buildInputs = [ which git ronn ] 15 - ++ (with perlPackages; [ perl ShellCommand TestMost TestDifferences TestDeep TestException TestWarn ]); 18 + nativeBuildInputs = [ 19 + pkg-config 20 + makeWrapper 21 + ]; 16 22 17 - installPhase = "make install PREFIX=$out"; 23 + buildInputs = [ git ]; 24 + 25 + checkInputs = [] 26 + ++ (with perlPackages; [ perl ShellCommand TestMost ]); 27 + 28 + outputs = [ "out" "doc" "man" ]; 18 29 19 30 meta = with lib; { 20 31 description = "Version Control System for $HOME"; 21 32 homepage = "https://github.com/RichiH/vcsh"; 33 + changelog = "https://github.com/RichiH/vcsh/blob/v${version}/changelog"; 22 34 license = licenses.gpl2Plus; 23 - maintainers = with maintainers; [ ttuegel ]; 35 + maintainers = with maintainers; [ ttuegel alerque ]; 24 36 platforms = platforms.unix; 25 37 }; 26 38 }
+2 -2
pkgs/development/libraries/cppzmq/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "cppzmq"; 5 - version = "4.7.1"; 5 + version = "4.8.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "zeromq"; 9 9 repo = "cppzmq"; 10 10 rev = "v${version}"; 11 - sha256 = "00lb3pv923nbpaf7ric2cv6lbpspknj0pxj6yj5jyah7r3zw692m"; 11 + sha256 = "sha256-4ZyTp0TOKqDbziqBTkeUs3J+f3stFyUVpkzk4Jx6CDc="; 12 12 }; 13 13 14 14 nativeBuildInputs = [ cmake ];
+2 -2
pkgs/development/libraries/faudio/default.nix
··· 4 4 5 5 stdenv.mkDerivation rec { 6 6 pname = "faudio"; 7 - version = "21.08"; 7 + version = "21.09"; 8 8 9 9 src = fetchFromGitHub { 10 10 owner = "FNA-XNA"; 11 11 repo = "FAudio"; 12 12 rev = version; 13 - sha256 = "sha256-zgXIho1jmoOCVcjvDwiq+J1jOzsPgxvvaWN8NfszEdA="; 13 + sha256 = "sha256-/hc++LEqH7vg2IK/x6sVP5864QF+3xd++HK/tIp0IRA="; 14 14 }; 15 15 16 16 nativeBuildInputs = [cmake];
+26
pkgs/development/lisp-modules/quicklisp-to-nix-output/fn.nix
··· 1 + /* Generated file. */ 2 + args @ { fetchurl, ... }: 3 + rec { 4 + baseName = "fn"; 5 + version = "20171019-git"; 6 + 7 + description = "Some macros for lambda brevity"; 8 + 9 + deps = [ args."named-readtables" ]; 10 + 11 + src = fetchurl { 12 + url = "http://beta.quicklisp.org/archive/fn/2017-10-19/fn-20171019-git.tgz"; 13 + sha256 = "0r062ffn31sc7313xlfaa9pwnf2wdkiq4spqlr1lk5r8isvdnzz8"; 14 + }; 15 + 16 + packageName = "fn"; 17 + 18 + asdFilesToKeep = ["fn.asd"]; 19 + overrides = x: x; 20 + } 21 + /* (SYSTEM fn DESCRIPTION Some macros for lambda brevity SHA256 22 + 0r062ffn31sc7313xlfaa9pwnf2wdkiq4spqlr1lk5r8isvdnzz8 URL 23 + http://beta.quicklisp.org/archive/fn/2017-10-19/fn-20171019-git.tgz MD5 24 + 0e1cfe5f19ceec8966baa3037772d31e NAME fn FILENAME fn DEPS 25 + ((NAME named-readtables FILENAME named-readtables)) DEPENDENCIES 26 + (named-readtables) VERSION 20171019-git SIBLINGS NIL PARASITES NIL) */
+28
pkgs/development/lisp-modules/quicklisp-to-nix-output/glsl-docs.nix
··· 1 + /* Generated file. */ 2 + args @ { fetchurl, ... }: 3 + rec { 4 + baseName = "glsl-docs"; 5 + version = "glsl-spec-release-quicklisp-f04476f7-git"; 6 + 7 + description = "The official docs for all the symbols in glsl-symbols"; 8 + 9 + deps = [ args."glsl-symbols" ]; 10 + 11 + src = fetchurl { 12 + url = "http://beta.quicklisp.org/archive/glsl-spec/2019-10-07/glsl-spec-release-quicklisp-f04476f7-git.tgz"; 13 + sha256 = "0vdxx5asra0r58qpk35ncmyh418szzzvby8bpkrb052g00nzqgj7"; 14 + }; 15 + 16 + packageName = "glsl-docs"; 17 + 18 + asdFilesToKeep = ["glsl-docs.asd"]; 19 + overrides = x: x; 20 + } 21 + /* (SYSTEM glsl-docs DESCRIPTION 22 + The official docs for all the symbols in glsl-symbols SHA256 23 + 0vdxx5asra0r58qpk35ncmyh418szzzvby8bpkrb052g00nzqgj7 URL 24 + http://beta.quicklisp.org/archive/glsl-spec/2019-10-07/glsl-spec-release-quicklisp-f04476f7-git.tgz 25 + MD5 52760939a269acce6b2cba8dbde81ef7 NAME glsl-docs FILENAME glsl-docs DEPS 26 + ((NAME glsl-symbols FILENAME glsl-symbols)) DEPENDENCIES (glsl-symbols) 27 + VERSION glsl-spec-release-quicklisp-f04476f7-git SIBLINGS 28 + (glsl-spec glsl-symbols) PARASITES NIL) */
+26
pkgs/development/lisp-modules/quicklisp-to-nix-output/glsl-spec.nix
··· 1 + /* Generated file. */ 2 + args @ { fetchurl, ... }: 3 + rec { 4 + baseName = "glsl-spec"; 5 + version = "release-quicklisp-f04476f7-git"; 6 + 7 + description = "The GLSL Spec as a datastructure"; 8 + 9 + deps = [ ]; 10 + 11 + src = fetchurl { 12 + url = "http://beta.quicklisp.org/archive/glsl-spec/2019-10-07/glsl-spec-release-quicklisp-f04476f7-git.tgz"; 13 + sha256 = "0vdxx5asra0r58qpk35ncmyh418szzzvby8bpkrb052g00nzqgj7"; 14 + }; 15 + 16 + packageName = "glsl-spec"; 17 + 18 + asdFilesToKeep = ["glsl-spec.asd"]; 19 + overrides = x: x; 20 + } 21 + /* (SYSTEM glsl-spec DESCRIPTION The GLSL Spec as a datastructure SHA256 22 + 0vdxx5asra0r58qpk35ncmyh418szzzvby8bpkrb052g00nzqgj7 URL 23 + http://beta.quicklisp.org/archive/glsl-spec/2019-10-07/glsl-spec-release-quicklisp-f04476f7-git.tgz 24 + MD5 52760939a269acce6b2cba8dbde81ef7 NAME glsl-spec FILENAME glsl-spec DEPS 25 + NIL DEPENDENCIES NIL VERSION release-quicklisp-f04476f7-git SIBLINGS 26 + (glsl-docs glsl-symbols) PARASITES NIL) */
+27
pkgs/development/lisp-modules/quicklisp-to-nix-output/glsl-symbols.nix
··· 1 + /* Generated file. */ 2 + args @ { fetchurl, ... }: 3 + rec { 4 + baseName = "glsl-symbols"; 5 + version = "glsl-spec-release-quicklisp-f04476f7-git"; 6 + 7 + description = "Lispy versions of all glsl names as symbols"; 8 + 9 + deps = [ ]; 10 + 11 + src = fetchurl { 12 + url = "http://beta.quicklisp.org/archive/glsl-spec/2019-10-07/glsl-spec-release-quicklisp-f04476f7-git.tgz"; 13 + sha256 = "0vdxx5asra0r58qpk35ncmyh418szzzvby8bpkrb052g00nzqgj7"; 14 + }; 15 + 16 + packageName = "glsl-symbols"; 17 + 18 + asdFilesToKeep = ["glsl-symbols.asd"]; 19 + overrides = x: x; 20 + } 21 + /* (SYSTEM glsl-symbols DESCRIPTION Lispy versions of all glsl names as symbols 22 + SHA256 0vdxx5asra0r58qpk35ncmyh418szzzvby8bpkrb052g00nzqgj7 URL 23 + http://beta.quicklisp.org/archive/glsl-spec/2019-10-07/glsl-spec-release-quicklisp-f04476f7-git.tgz 24 + MD5 52760939a269acce6b2cba8dbde81ef7 NAME glsl-symbols FILENAME 25 + glsl-symbols DEPS NIL DEPENDENCIES NIL VERSION 26 + glsl-spec-release-quicklisp-f04476f7-git SIBLINGS (glsl-docs glsl-spec) 27 + PARASITES NIL) */
+26
pkgs/development/lisp-modules/quicklisp-to-nix-output/lisp-unit.nix
··· 1 + /* Generated file. */ 2 + args @ { fetchurl, ... }: 3 + rec { 4 + baseName = "lisp-unit"; 5 + version = "20170124-git"; 6 + 7 + description = "Common Lisp library that supports unit testing."; 8 + 9 + deps = [ ]; 10 + 11 + src = fetchurl { 12 + url = "http://beta.quicklisp.org/archive/lisp-unit/2017-01-24/lisp-unit-20170124-git.tgz"; 13 + sha256 = "00bc19r7vr76rpk8lh8z7qln0glpf66mzqxw215488zwz3nwcq4m"; 14 + }; 15 + 16 + packageName = "lisp-unit"; 17 + 18 + asdFilesToKeep = ["lisp-unit.asd"]; 19 + overrides = x: x; 20 + } 21 + /* (SYSTEM lisp-unit DESCRIPTION 22 + Common Lisp library that supports unit testing. SHA256 23 + 00bc19r7vr76rpk8lh8z7qln0glpf66mzqxw215488zwz3nwcq4m URL 24 + http://beta.quicklisp.org/archive/lisp-unit/2017-01-24/lisp-unit-20170124-git.tgz 25 + MD5 2c55342cb8af18b290bb6a28c75deac5 NAME lisp-unit FILENAME lisp-unit DEPS 26 + NIL DEPENDENCIES NIL VERSION 20170124-git SIBLINGS NIL PARASITES NIL) */
+30
pkgs/development/lisp-modules/quicklisp-to-nix-output/parse-float.nix
··· 1 + /* Generated file. */ 2 + args @ { fetchurl, ... }: 3 + rec { 4 + baseName = "parse-float"; 5 + version = "20200218-git"; 6 + 7 + parasites = [ "parse-float-tests" ]; 8 + 9 + description = "Parse floating point values in strings."; 10 + 11 + deps = [ args."alexandria" args."lisp-unit" ]; 12 + 13 + src = fetchurl { 14 + url = "http://beta.quicklisp.org/archive/parse-float/2020-02-18/parse-float-20200218-git.tgz"; 15 + sha256 = "02rhgn79hhv0p5ysj4gwk5bhmr2sj6cvkacbqzzw24qrzgcpdnfw"; 16 + }; 17 + 18 + packageName = "parse-float"; 19 + 20 + asdFilesToKeep = ["parse-float.asd"]; 21 + overrides = x: x; 22 + } 23 + /* (SYSTEM parse-float DESCRIPTION Parse floating point values in strings. 24 + SHA256 02rhgn79hhv0p5ysj4gwk5bhmr2sj6cvkacbqzzw24qrzgcpdnfw URL 25 + http://beta.quicklisp.org/archive/parse-float/2020-02-18/parse-float-20200218-git.tgz 26 + MD5 149e40a8c5fd6ab0e43242cb898d66bf NAME parse-float FILENAME parse-float 27 + DEPS 28 + ((NAME alexandria FILENAME alexandria) (NAME lisp-unit FILENAME lisp-unit)) 29 + DEPENDENCIES (alexandria lisp-unit) VERSION 20200218-git SIBLINGS NIL 30 + PARASITES (parse-float-tests)) */
+39
pkgs/development/lisp-modules/quicklisp-to-nix-output/varjo.nix
··· 1 + /* Generated file. */ 2 + args @ { fetchurl, ... }: 3 + rec { 4 + baseName = "varjo"; 5 + version = "release-quicklisp-92f9c75b-git"; 6 + 7 + description = "Common Lisp -> GLSL Compiler"; 8 + 9 + deps = [ args."alexandria" args."cl-ppcre" args."documentation-utils" args."fn" args."glsl-docs" args."glsl-spec" args."glsl-symbols" args."named-readtables" args."parse-float" args."trivial-indent" args."uiop" args."vas-string-metrics" ]; 10 + 11 + src = fetchurl { 12 + url = "http://beta.quicklisp.org/archive/varjo/2021-01-24/varjo-release-quicklisp-92f9c75b-git.tgz"; 13 + sha256 = "0xxi2ivjz3fqgw2nxzshf9m7ppvzv7wdg20lr0krq14i8j5gf5jy"; 14 + }; 15 + 16 + packageName = "varjo"; 17 + 18 + asdFilesToKeep = ["varjo.asd"]; 19 + overrides = x: x; 20 + } 21 + /* (SYSTEM varjo DESCRIPTION Common Lisp -> GLSL Compiler SHA256 22 + 0xxi2ivjz3fqgw2nxzshf9m7ppvzv7wdg20lr0krq14i8j5gf5jy URL 23 + http://beta.quicklisp.org/archive/varjo/2021-01-24/varjo-release-quicklisp-92f9c75b-git.tgz 24 + MD5 78a3b8021885ebfab4015e20b885cdcf NAME varjo FILENAME varjo DEPS 25 + ((NAME alexandria FILENAME alexandria) (NAME cl-ppcre FILENAME cl-ppcre) 26 + (NAME documentation-utils FILENAME documentation-utils) 27 + (NAME fn FILENAME fn) (NAME glsl-docs FILENAME glsl-docs) 28 + (NAME glsl-spec FILENAME glsl-spec) 29 + (NAME glsl-symbols FILENAME glsl-symbols) 30 + (NAME named-readtables FILENAME named-readtables) 31 + (NAME parse-float FILENAME parse-float) 32 + (NAME trivial-indent FILENAME trivial-indent) (NAME uiop FILENAME uiop) 33 + (NAME vas-string-metrics FILENAME vas-string-metrics)) 34 + DEPENDENCIES 35 + (alexandria cl-ppcre documentation-utils fn glsl-docs glsl-spec 36 + glsl-symbols named-readtables parse-float trivial-indent uiop 37 + vas-string-metrics) 38 + VERSION release-quicklisp-92f9c75b-git SIBLINGS (varjo.import varjo.tests) 39 + PARASITES NIL) */
+27
pkgs/development/lisp-modules/quicklisp-to-nix-output/vas-string-metrics.nix
··· 1 + /* Generated file. */ 2 + args @ { fetchurl, ... }: 3 + rec { 4 + baseName = "vas-string-metrics"; 5 + version = "20160208-git"; 6 + 7 + description = "Jaro-Winkler and Levenshtein string distance algorithms."; 8 + 9 + deps = [ ]; 10 + 11 + src = fetchurl { 12 + url = "http://beta.quicklisp.org/archive/vas-string-metrics/2016-02-08/vas-string-metrics-20160208-git.tgz"; 13 + sha256 = "1s9a9bgc2ibknjr6mlbr4gsxcwpjivz5hbl1wz57fsh4n0w8h7ch"; 14 + }; 15 + 16 + packageName = "vas-string-metrics"; 17 + 18 + asdFilesToKeep = ["vas-string-metrics.asd"]; 19 + overrides = x: x; 20 + } 21 + /* (SYSTEM vas-string-metrics DESCRIPTION 22 + Jaro-Winkler and Levenshtein string distance algorithms. SHA256 23 + 1s9a9bgc2ibknjr6mlbr4gsxcwpjivz5hbl1wz57fsh4n0w8h7ch URL 24 + http://beta.quicklisp.org/archive/vas-string-metrics/2016-02-08/vas-string-metrics-20160208-git.tgz 25 + MD5 5f38d4ee241c11286be6147f481e7fd0 NAME vas-string-metrics FILENAME 26 + vas-string-metrics DEPS NIL DEPENDENCIES NIL VERSION 20160208-git SIBLINGS 27 + (test.vas-string-metrics) PARASITES NIL) */
+17 -16
pkgs/development/lisp-modules/quicklisp-to-nix-systems.txt
··· 11 11 bordeaux-threads 12 12 calispel 13 13 caveman 14 - cl-custom-hash-table 15 14 cffi 16 15 cffi-grovel 17 16 cffi-uffi-compat ··· 19 18 chipz 20 19 chunga 21 20 circular-streams 22 - clack 23 - clack-v1-compat 21 + cl+ssl 24 22 cl-annot 25 23 cl-ansi-text 26 24 cl-async ··· 35 33 cl-cookie 36 34 cl-css 37 35 cl-csv 36 + cl-custom-hash-table 38 37 cl-dbi 39 38 cl-dot 40 39 cl-emb ··· 44 43 cl-gobject-introspection 45 44 cl-hooks 46 45 cl-html-diff 47 - cl-html5-parser 48 46 cl-html-parse 47 + cl-html5-parser 49 48 cl-interpol 50 49 cl-jpeg 51 50 cl-json ··· 54 53 cl-locale 55 54 cl-markup 56 55 cl-mysql 57 - closer-mop 58 - closure-common 59 - closure-html 60 56 cl-paths-ttf 61 57 cl-pdf 62 58 cl-ppcre ··· 67 63 cl-qprint 68 64 cl-reexport 69 65 cl-slice 70 - cl-speedy-queue 71 66 cl-smtp 72 - cl-syslog 73 - clsql 74 - clsql-postgresql 75 - clsql-postgresql-socket 76 - clsql-sqlite3 77 - clss 78 - cl+ssl 67 + cl-speedy-queue 79 68 cl-store 80 69 cl-syntax 81 70 cl-syntax-annot 82 71 cl-syntax-anonfun 83 72 cl-syntax-markup 73 + cl-syslog 84 74 cl-test-more 85 75 cl-typesetting 86 - clump 87 76 cl-unicode 88 77 cl-unification 89 78 cl-utilities 90 79 cl-vectors 91 80 cl-webkit2 92 81 cl-who 82 + clack 83 + clack-v1-compat 93 84 clfswm 85 + closer-mop 86 + closure-common 87 + closure-html 88 + clsql 89 + clsql-postgresql 90 + clsql-postgresql-socket 91 + clsql-sqlite3 92 + clss 93 + clump 94 94 clx 95 95 collectors 96 96 command-line-arguments ··· 209 209 utilities.print-items 210 210 utilities.print-tree 211 211 uuid 212 + varjo 212 213 woo 213 214 wookie 214 215 xembed
+315 -235
pkgs/development/lisp-modules/quicklisp-to-nix.nix
··· 6 6 buildLispPackage = callPackage ./define-package.nix; 7 7 qlOverrides = callPackage ./quicklisp-to-nix-overrides.nix {}; 8 8 9 + "lisp-unit" = buildLispPackage 10 + ((f: x: (x // (f x))) 11 + (qlOverrides."lisp-unit" or (x: {})) 12 + (import ./quicklisp-to-nix-output/lisp-unit.nix { 13 + inherit fetchurl; 14 + })); 15 + 16 + 9 17 "pythonic-string-reader" = buildLispPackage 10 18 ((f: x: (x // (f x))) 11 19 (qlOverrides."pythonic-string-reader" or (x: {})) ··· 74 82 })); 75 83 76 84 85 + "vas-string-metrics" = buildLispPackage 86 + ((f: x: (x // (f x))) 87 + (qlOverrides."vas-string-metrics" or (x: {})) 88 + (import ./quicklisp-to-nix-output/vas-string-metrics.nix { 89 + inherit fetchurl; 90 + })); 91 + 92 + 93 + "parse-float" = buildLispPackage 94 + ((f: x: (x // (f x))) 95 + (qlOverrides."parse-float" or (x: {})) 96 + (import ./quicklisp-to-nix-output/parse-float.nix { 97 + inherit fetchurl; 98 + "alexandria" = quicklisp-to-nix-packages."alexandria"; 99 + "lisp-unit" = quicklisp-to-nix-packages."lisp-unit"; 100 + })); 101 + 102 + 103 + "glsl-symbols" = buildLispPackage 104 + ((f: x: (x // (f x))) 105 + (qlOverrides."glsl-symbols" or (x: {})) 106 + (import ./quicklisp-to-nix-output/glsl-symbols.nix { 107 + inherit fetchurl; 108 + })); 109 + 110 + 111 + "glsl-spec" = buildLispPackage 112 + ((f: x: (x // (f x))) 113 + (qlOverrides."glsl-spec" or (x: {})) 114 + (import ./quicklisp-to-nix-output/glsl-spec.nix { 115 + inherit fetchurl; 116 + })); 117 + 118 + 119 + "glsl-docs" = buildLispPackage 120 + ((f: x: (x // (f x))) 121 + (qlOverrides."glsl-docs" or (x: {})) 122 + (import ./quicklisp-to-nix-output/glsl-docs.nix { 123 + inherit fetchurl; 124 + "glsl-symbols" = quicklisp-to-nix-packages."glsl-symbols"; 125 + })); 126 + 127 + 128 + "fn" = buildLispPackage 129 + ((f: x: (x // (f x))) 130 + (qlOverrides."fn" or (x: {})) 131 + (import ./quicklisp-to-nix-output/fn.nix { 132 + inherit fetchurl; 133 + "named-readtables" = quicklisp-to-nix-packages."named-readtables"; 134 + })); 135 + 136 + 77 137 "mgl-pax" = buildLispPackage 78 138 ((f: x: (x // (f x))) 79 139 (qlOverrides."mgl-pax" or (x: {})) ··· 709 769 })); 710 770 711 771 712 - "cl-aa" = buildLispPackage 713 - ((f: x: (x // (f x))) 714 - (qlOverrides."cl-aa" or (x: {})) 715 - (import ./quicklisp-to-nix-output/cl-aa.nix { 716 - inherit fetchurl; 717 - })); 718 - 719 - 720 772 "clump-binary-tree" = buildLispPackage 721 773 ((f: x: (x // (f x))) 722 774 (qlOverrides."clump-binary-tree" or (x: {})) ··· 732 784 (import ./quicklisp-to-nix-output/clump-2-3-tree.nix { 733 785 inherit fetchurl; 734 786 "acclimation" = quicklisp-to-nix-packages."acclimation"; 735 - })); 736 - 737 - 738 - "cl-anonfun" = buildLispPackage 739 - ((f: x: (x // (f x))) 740 - (qlOverrides."cl-anonfun" or (x: {})) 741 - (import ./quicklisp-to-nix-output/cl-anonfun.nix { 742 - inherit fetchurl; 743 787 })); 744 788 745 789 ··· 753 797 })); 754 798 755 799 800 + "cl-aa" = buildLispPackage 801 + ((f: x: (x // (f x))) 802 + (qlOverrides."cl-aa" or (x: {})) 803 + (import ./quicklisp-to-nix-output/cl-aa.nix { 804 + inherit fetchurl; 805 + })); 806 + 807 + 756 808 "global-vars" = buildLispPackage 757 809 ((f: x: (x // (f x))) 758 810 (qlOverrides."global-vars" or (x: {})) 759 811 (import ./quicklisp-to-nix-output/global-vars.nix { 812 + inherit fetchurl; 813 + })); 814 + 815 + 816 + "cl-anonfun" = buildLispPackage 817 + ((f: x: (x // (f x))) 818 + (qlOverrides."cl-anonfun" or (x: {})) 819 + (import ./quicklisp-to-nix-output/cl-anonfun.nix { 760 820 inherit fetchurl; 761 821 })); 762 822 ··· 1473 1533 "trivial-utf-8" = quicklisp-to-nix-packages."trivial-utf-8"; 1474 1534 "vom" = quicklisp-to-nix-packages."vom"; 1475 1535 "xsubseq" = quicklisp-to-nix-packages."xsubseq"; 1536 + })); 1537 + 1538 + 1539 + "varjo" = buildLispPackage 1540 + ((f: x: (x // (f x))) 1541 + (qlOverrides."varjo" or (x: {})) 1542 + (import ./quicklisp-to-nix-output/varjo.nix { 1543 + inherit fetchurl; 1544 + "alexandria" = quicklisp-to-nix-packages."alexandria"; 1545 + "cl-ppcre" = quicklisp-to-nix-packages."cl-ppcre"; 1546 + "documentation-utils" = quicklisp-to-nix-packages."documentation-utils"; 1547 + "fn" = quicklisp-to-nix-packages."fn"; 1548 + "glsl-docs" = quicklisp-to-nix-packages."glsl-docs"; 1549 + "glsl-spec" = quicklisp-to-nix-packages."glsl-spec"; 1550 + "glsl-symbols" = quicklisp-to-nix-packages."glsl-symbols"; 1551 + "named-readtables" = quicklisp-to-nix-packages."named-readtables"; 1552 + "parse-float" = quicklisp-to-nix-packages."parse-float"; 1553 + "trivial-indent" = quicklisp-to-nix-packages."trivial-indent"; 1554 + "uiop" = quicklisp-to-nix-packages."uiop"; 1555 + "vas-string-metrics" = quicklisp-to-nix-packages."vas-string-metrics"; 1476 1556 })); 1477 1557 1478 1558 ··· 3060 3140 })); 3061 3141 3062 3142 3143 + "clump" = buildLispPackage 3144 + ((f: x: (x // (f x))) 3145 + (qlOverrides."clump" or (x: {})) 3146 + (import ./quicklisp-to-nix-output/clump.nix { 3147 + inherit fetchurl; 3148 + "acclimation" = quicklisp-to-nix-packages."acclimation"; 3149 + "clump-2-3-tree" = quicklisp-to-nix-packages."clump-2-3-tree"; 3150 + "clump-binary-tree" = quicklisp-to-nix-packages."clump-binary-tree"; 3151 + })); 3152 + 3153 + 3154 + "clss" = buildLispPackage 3155 + ((f: x: (x // (f x))) 3156 + (qlOverrides."clss" or (x: {})) 3157 + (import ./quicklisp-to-nix-output/clss.nix { 3158 + inherit fetchurl; 3159 + "array-utils" = quicklisp-to-nix-packages."array-utils"; 3160 + "documentation-utils" = quicklisp-to-nix-packages."documentation-utils"; 3161 + "plump" = quicklisp-to-nix-packages."plump"; 3162 + "trivial-indent" = quicklisp-to-nix-packages."trivial-indent"; 3163 + })); 3164 + 3165 + 3166 + "clsql-sqlite3" = buildLispPackage 3167 + ((f: x: (x // (f x))) 3168 + (qlOverrides."clsql-sqlite3" or (x: {})) 3169 + (import ./quicklisp-to-nix-output/clsql-sqlite3.nix { 3170 + inherit fetchurl; 3171 + "clsql" = quicklisp-to-nix-packages."clsql"; 3172 + "clsql-uffi" = quicklisp-to-nix-packages."clsql-uffi"; 3173 + "uffi" = quicklisp-to-nix-packages."uffi"; 3174 + })); 3175 + 3176 + 3177 + "clsql-postgresql-socket" = buildLispPackage 3178 + ((f: x: (x // (f x))) 3179 + (qlOverrides."clsql-postgresql-socket" or (x: {})) 3180 + (import ./quicklisp-to-nix-output/clsql-postgresql-socket.nix { 3181 + inherit fetchurl; 3182 + "clsql" = quicklisp-to-nix-packages."clsql"; 3183 + "md5" = quicklisp-to-nix-packages."md5"; 3184 + "uffi" = quicklisp-to-nix-packages."uffi"; 3185 + })); 3186 + 3187 + 3188 + "clsql-postgresql" = buildLispPackage 3189 + ((f: x: (x // (f x))) 3190 + (qlOverrides."clsql-postgresql" or (x: {})) 3191 + (import ./quicklisp-to-nix-output/clsql-postgresql.nix { 3192 + inherit fetchurl; 3193 + "clsql" = quicklisp-to-nix-packages."clsql"; 3194 + "clsql-uffi" = quicklisp-to-nix-packages."clsql-uffi"; 3195 + "uffi" = quicklisp-to-nix-packages."uffi"; 3196 + })); 3197 + 3198 + 3199 + "clsql" = buildLispPackage 3200 + ((f: x: (x // (f x))) 3201 + (qlOverrides."clsql" or (x: {})) 3202 + (import ./quicklisp-to-nix-output/clsql.nix { 3203 + inherit fetchurl; 3204 + "uffi" = quicklisp-to-nix-packages."uffi"; 3205 + })); 3206 + 3207 + 3208 + "closure-html" = buildLispPackage 3209 + ((f: x: (x // (f x))) 3210 + (qlOverrides."closure-html" or (x: {})) 3211 + (import ./quicklisp-to-nix-output/closure-html.nix { 3212 + inherit fetchurl; 3213 + "alexandria" = quicklisp-to-nix-packages."alexandria"; 3214 + "babel" = quicklisp-to-nix-packages."babel"; 3215 + "closure-common" = quicklisp-to-nix-packages."closure-common"; 3216 + "flexi-streams" = quicklisp-to-nix-packages."flexi-streams"; 3217 + "trivial-features" = quicklisp-to-nix-packages."trivial-features"; 3218 + "trivial-gray-streams" = quicklisp-to-nix-packages."trivial-gray-streams"; 3219 + })); 3220 + 3221 + 3222 + "closure-common" = buildLispPackage 3223 + ((f: x: (x // (f x))) 3224 + (qlOverrides."closure-common" or (x: {})) 3225 + (import ./quicklisp-to-nix-output/closure-common.nix { 3226 + inherit fetchurl; 3227 + "alexandria" = quicklisp-to-nix-packages."alexandria"; 3228 + "babel" = quicklisp-to-nix-packages."babel"; 3229 + "trivial-features" = quicklisp-to-nix-packages."trivial-features"; 3230 + "trivial-gray-streams" = quicklisp-to-nix-packages."trivial-gray-streams"; 3231 + })); 3232 + 3233 + 3234 + "closer-mop" = buildLispPackage 3235 + ((f: x: (x // (f x))) 3236 + (qlOverrides."closer-mop" or (x: {})) 3237 + (import ./quicklisp-to-nix-output/closer-mop.nix { 3238 + inherit fetchurl; 3239 + })); 3240 + 3241 + 3063 3242 "clfswm" = buildLispPackage 3064 3243 ((f: x: (x // (f x))) 3065 3244 (qlOverrides."clfswm" or (x: {})) ··· 3069 3248 })); 3070 3249 3071 3250 3251 + "clack-v1-compat" = buildLispPackage 3252 + ((f: x: (x // (f x))) 3253 + (qlOverrides."clack-v1-compat" or (x: {})) 3254 + (import ./quicklisp-to-nix-output/clack-v1-compat.nix { 3255 + inherit fetchurl; 3256 + "alexandria" = quicklisp-to-nix-packages."alexandria"; 3257 + "babel" = quicklisp-to-nix-packages."babel"; 3258 + "bordeaux-threads" = quicklisp-to-nix-packages."bordeaux-threads"; 3259 + "cffi" = quicklisp-to-nix-packages."cffi"; 3260 + "cffi-grovel" = quicklisp-to-nix-packages."cffi-grovel"; 3261 + "cffi-toolchain" = quicklisp-to-nix-packages."cffi-toolchain"; 3262 + "chipz" = quicklisp-to-nix-packages."chipz"; 3263 + "chunga" = quicklisp-to-nix-packages."chunga"; 3264 + "circular-streams" = quicklisp-to-nix-packages."circular-streams"; 3265 + "cl_plus_ssl" = quicklisp-to-nix-packages."cl_plus_ssl"; 3266 + "cl-annot" = quicklisp-to-nix-packages."cl-annot"; 3267 + "cl-base64" = quicklisp-to-nix-packages."cl-base64"; 3268 + "cl-cookie" = quicklisp-to-nix-packages."cl-cookie"; 3269 + "cl-fad" = quicklisp-to-nix-packages."cl-fad"; 3270 + "cl-ppcre" = quicklisp-to-nix-packages."cl-ppcre"; 3271 + "cl-reexport" = quicklisp-to-nix-packages."cl-reexport"; 3272 + "cl-syntax" = quicklisp-to-nix-packages."cl-syntax"; 3273 + "cl-syntax-annot" = quicklisp-to-nix-packages."cl-syntax-annot"; 3274 + "cl-utilities" = quicklisp-to-nix-packages."cl-utilities"; 3275 + "clack" = quicklisp-to-nix-packages."clack"; 3276 + "clack-handler-hunchentoot" = quicklisp-to-nix-packages."clack-handler-hunchentoot"; 3277 + "clack-socket" = quicklisp-to-nix-packages."clack-socket"; 3278 + "clack-test" = quicklisp-to-nix-packages."clack-test"; 3279 + "dexador" = quicklisp-to-nix-packages."dexador"; 3280 + "dissect" = quicklisp-to-nix-packages."dissect"; 3281 + "fast-http" = quicklisp-to-nix-packages."fast-http"; 3282 + "fast-io" = quicklisp-to-nix-packages."fast-io"; 3283 + "flexi-streams" = quicklisp-to-nix-packages."flexi-streams"; 3284 + "http-body" = quicklisp-to-nix-packages."http-body"; 3285 + "hunchentoot" = quicklisp-to-nix-packages."hunchentoot"; 3286 + "ironclad" = quicklisp-to-nix-packages."ironclad"; 3287 + "jonathan" = quicklisp-to-nix-packages."jonathan"; 3288 + "lack" = quicklisp-to-nix-packages."lack"; 3289 + "lack-component" = quicklisp-to-nix-packages."lack-component"; 3290 + "lack-middleware-backtrace" = quicklisp-to-nix-packages."lack-middleware-backtrace"; 3291 + "lack-util" = quicklisp-to-nix-packages."lack-util"; 3292 + "local-time" = quicklisp-to-nix-packages."local-time"; 3293 + "marshal" = quicklisp-to-nix-packages."marshal"; 3294 + "md5" = quicklisp-to-nix-packages."md5"; 3295 + "named-readtables" = quicklisp-to-nix-packages."named-readtables"; 3296 + "proc-parse" = quicklisp-to-nix-packages."proc-parse"; 3297 + "quri" = quicklisp-to-nix-packages."quri"; 3298 + "rfc2388" = quicklisp-to-nix-packages."rfc2388"; 3299 + "rove" = quicklisp-to-nix-packages."rove"; 3300 + "smart-buffer" = quicklisp-to-nix-packages."smart-buffer"; 3301 + "split-sequence" = quicklisp-to-nix-packages."split-sequence"; 3302 + "static-vectors" = quicklisp-to-nix-packages."static-vectors"; 3303 + "trivial-backtrace" = quicklisp-to-nix-packages."trivial-backtrace"; 3304 + "trivial-features" = quicklisp-to-nix-packages."trivial-features"; 3305 + "trivial-garbage" = quicklisp-to-nix-packages."trivial-garbage"; 3306 + "trivial-gray-streams" = quicklisp-to-nix-packages."trivial-gray-streams"; 3307 + "trivial-mimes" = quicklisp-to-nix-packages."trivial-mimes"; 3308 + "trivial-types" = quicklisp-to-nix-packages."trivial-types"; 3309 + "uiop" = quicklisp-to-nix-packages."uiop"; 3310 + "usocket" = quicklisp-to-nix-packages."usocket"; 3311 + "xsubseq" = quicklisp-to-nix-packages."xsubseq"; 3312 + })); 3313 + 3314 + 3315 + "clack" = buildLispPackage 3316 + ((f: x: (x // (f x))) 3317 + (qlOverrides."clack" or (x: {})) 3318 + (import ./quicklisp-to-nix-output/clack.nix { 3319 + inherit fetchurl; 3320 + "alexandria" = quicklisp-to-nix-packages."alexandria"; 3321 + "bordeaux-threads" = quicklisp-to-nix-packages."bordeaux-threads"; 3322 + "ironclad" = quicklisp-to-nix-packages."ironclad"; 3323 + "lack" = quicklisp-to-nix-packages."lack"; 3324 + "lack-component" = quicklisp-to-nix-packages."lack-component"; 3325 + "lack-middleware-backtrace" = quicklisp-to-nix-packages."lack-middleware-backtrace"; 3326 + "lack-util" = quicklisp-to-nix-packages."lack-util"; 3327 + "split-sequence" = quicklisp-to-nix-packages."split-sequence"; 3328 + "uiop" = quicklisp-to-nix-packages."uiop"; 3329 + "usocket" = quicklisp-to-nix-packages."usocket"; 3330 + })); 3331 + 3332 + 3072 3333 "cl-who" = buildLispPackage 3073 3334 ((f: x: (x // (f x))) 3074 3335 (qlOverrides."cl-who" or (x: {})) ··· 3138 3399 })); 3139 3400 3140 3401 3141 - "clump" = buildLispPackage 3142 - ((f: x: (x // (f x))) 3143 - (qlOverrides."clump" or (x: {})) 3144 - (import ./quicklisp-to-nix-output/clump.nix { 3145 - inherit fetchurl; 3146 - "acclimation" = quicklisp-to-nix-packages."acclimation"; 3147 - "clump-2-3-tree" = quicklisp-to-nix-packages."clump-2-3-tree"; 3148 - "clump-binary-tree" = quicklisp-to-nix-packages."clump-binary-tree"; 3149 - })); 3150 - 3151 - 3152 3402 "cl-typesetting" = buildLispPackage 3153 3403 ((f: x: (x // (f x))) 3154 3404 (qlOverrides."cl-typesetting" or (x: {})) ··· 3176 3426 })); 3177 3427 3178 3428 3429 + "cl-syslog" = buildLispPackage 3430 + ((f: x: (x // (f x))) 3431 + (qlOverrides."cl-syslog" or (x: {})) 3432 + (import ./quicklisp-to-nix-output/cl-syslog.nix { 3433 + inherit fetchurl; 3434 + "alexandria" = quicklisp-to-nix-packages."alexandria"; 3435 + "babel" = quicklisp-to-nix-packages."babel"; 3436 + "cffi" = quicklisp-to-nix-packages."cffi"; 3437 + "global-vars" = quicklisp-to-nix-packages."global-vars"; 3438 + "local-time" = quicklisp-to-nix-packages."local-time"; 3439 + "split-sequence" = quicklisp-to-nix-packages."split-sequence"; 3440 + "trivial-features" = quicklisp-to-nix-packages."trivial-features"; 3441 + "usocket" = quicklisp-to-nix-packages."usocket"; 3442 + })); 3443 + 3444 + 3179 3445 "cl-syntax-markup" = buildLispPackage 3180 3446 ((f: x: (x // (f x))) 3181 3447 (qlOverrides."cl-syntax-markup" or (x: {})) ··· 3232 3498 })); 3233 3499 3234 3500 3235 - "cl_plus_ssl" = buildLispPackage 3236 - ((f: x: (x // (f x))) 3237 - (qlOverrides."cl_plus_ssl" or (x: {})) 3238 - (import ./quicklisp-to-nix-output/cl_plus_ssl.nix { 3239 - inherit fetchurl; 3240 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 3241 - "babel" = quicklisp-to-nix-packages."babel"; 3242 - "bordeaux-threads" = quicklisp-to-nix-packages."bordeaux-threads"; 3243 - "cffi" = quicklisp-to-nix-packages."cffi"; 3244 - "flexi-streams" = quicklisp-to-nix-packages."flexi-streams"; 3245 - "split-sequence" = quicklisp-to-nix-packages."split-sequence"; 3246 - "trivial-features" = quicklisp-to-nix-packages."trivial-features"; 3247 - "trivial-garbage" = quicklisp-to-nix-packages."trivial-garbage"; 3248 - "trivial-gray-streams" = quicklisp-to-nix-packages."trivial-gray-streams"; 3249 - "uiop" = quicklisp-to-nix-packages."uiop"; 3250 - "usocket" = quicklisp-to-nix-packages."usocket"; 3251 - })); 3252 - 3253 - 3254 - "clss" = buildLispPackage 3255 - ((f: x: (x // (f x))) 3256 - (qlOverrides."clss" or (x: {})) 3257 - (import ./quicklisp-to-nix-output/clss.nix { 3258 - inherit fetchurl; 3259 - "array-utils" = quicklisp-to-nix-packages."array-utils"; 3260 - "documentation-utils" = quicklisp-to-nix-packages."documentation-utils"; 3261 - "plump" = quicklisp-to-nix-packages."plump"; 3262 - "trivial-indent" = quicklisp-to-nix-packages."trivial-indent"; 3263 - })); 3264 - 3265 - 3266 - "clsql-sqlite3" = buildLispPackage 3501 + "cl-speedy-queue" = buildLispPackage 3267 3502 ((f: x: (x // (f x))) 3268 - (qlOverrides."clsql-sqlite3" or (x: {})) 3269 - (import ./quicklisp-to-nix-output/clsql-sqlite3.nix { 3503 + (qlOverrides."cl-speedy-queue" or (x: {})) 3504 + (import ./quicklisp-to-nix-output/cl-speedy-queue.nix { 3270 3505 inherit fetchurl; 3271 - "clsql" = quicklisp-to-nix-packages."clsql"; 3272 - "clsql-uffi" = quicklisp-to-nix-packages."clsql-uffi"; 3273 - "uffi" = quicklisp-to-nix-packages."uffi"; 3274 - })); 3275 - 3276 - 3277 - "clsql-postgresql-socket" = buildLispPackage 3278 - ((f: x: (x // (f x))) 3279 - (qlOverrides."clsql-postgresql-socket" or (x: {})) 3280 - (import ./quicklisp-to-nix-output/clsql-postgresql-socket.nix { 3281 - inherit fetchurl; 3282 - "clsql" = quicklisp-to-nix-packages."clsql"; 3283 - "md5" = quicklisp-to-nix-packages."md5"; 3284 - "uffi" = quicklisp-to-nix-packages."uffi"; 3285 - })); 3286 - 3287 - 3288 - "clsql-postgresql" = buildLispPackage 3289 - ((f: x: (x // (f x))) 3290 - (qlOverrides."clsql-postgresql" or (x: {})) 3291 - (import ./quicklisp-to-nix-output/clsql-postgresql.nix { 3292 - inherit fetchurl; 3293 - "clsql" = quicklisp-to-nix-packages."clsql"; 3294 - "clsql-uffi" = quicklisp-to-nix-packages."clsql-uffi"; 3295 - "uffi" = quicklisp-to-nix-packages."uffi"; 3296 - })); 3297 - 3298 - 3299 - "clsql" = buildLispPackage 3300 - ((f: x: (x // (f x))) 3301 - (qlOverrides."clsql" or (x: {})) 3302 - (import ./quicklisp-to-nix-output/clsql.nix { 3303 - inherit fetchurl; 3304 - "uffi" = quicklisp-to-nix-packages."uffi"; 3305 - })); 3306 - 3307 - 3308 - "cl-syslog" = buildLispPackage 3309 - ((f: x: (x // (f x))) 3310 - (qlOverrides."cl-syslog" or (x: {})) 3311 - (import ./quicklisp-to-nix-output/cl-syslog.nix { 3312 - inherit fetchurl; 3313 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 3314 - "babel" = quicklisp-to-nix-packages."babel"; 3315 - "cffi" = quicklisp-to-nix-packages."cffi"; 3316 - "global-vars" = quicklisp-to-nix-packages."global-vars"; 3317 - "local-time" = quicklisp-to-nix-packages."local-time"; 3318 - "split-sequence" = quicklisp-to-nix-packages."split-sequence"; 3319 - "trivial-features" = quicklisp-to-nix-packages."trivial-features"; 3320 - "usocket" = quicklisp-to-nix-packages."usocket"; 3321 3506 })); 3322 3507 3323 3508 ··· 3341 3526 })); 3342 3527 3343 3528 3344 - "cl-speedy-queue" = buildLispPackage 3345 - ((f: x: (x // (f x))) 3346 - (qlOverrides."cl-speedy-queue" or (x: {})) 3347 - (import ./quicklisp-to-nix-output/cl-speedy-queue.nix { 3348 - inherit fetchurl; 3349 - })); 3350 - 3351 - 3352 3529 "cl-slice" = buildLispPackage 3353 3530 ((f: x: (x // (f x))) 3354 3531 (qlOverrides."cl-slice" or (x: {})) ··· 3460 3637 })); 3461 3638 3462 3639 3463 - "closure-html" = buildLispPackage 3464 - ((f: x: (x // (f x))) 3465 - (qlOverrides."closure-html" or (x: {})) 3466 - (import ./quicklisp-to-nix-output/closure-html.nix { 3467 - inherit fetchurl; 3468 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 3469 - "babel" = quicklisp-to-nix-packages."babel"; 3470 - "closure-common" = quicklisp-to-nix-packages."closure-common"; 3471 - "flexi-streams" = quicklisp-to-nix-packages."flexi-streams"; 3472 - "trivial-features" = quicklisp-to-nix-packages."trivial-features"; 3473 - "trivial-gray-streams" = quicklisp-to-nix-packages."trivial-gray-streams"; 3474 - })); 3475 - 3476 - 3477 - "closure-common" = buildLispPackage 3478 - ((f: x: (x // (f x))) 3479 - (qlOverrides."closure-common" or (x: {})) 3480 - (import ./quicklisp-to-nix-output/closure-common.nix { 3481 - inherit fetchurl; 3482 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 3483 - "babel" = quicklisp-to-nix-packages."babel"; 3484 - "trivial-features" = quicklisp-to-nix-packages."trivial-features"; 3485 - "trivial-gray-streams" = quicklisp-to-nix-packages."trivial-gray-streams"; 3486 - })); 3487 - 3488 - 3489 - "closer-mop" = buildLispPackage 3490 - ((f: x: (x // (f x))) 3491 - (qlOverrides."closer-mop" or (x: {})) 3492 - (import ./quicklisp-to-nix-output/closer-mop.nix { 3493 - inherit fetchurl; 3494 - })); 3495 - 3496 - 3497 3640 "cl-mysql" = buildLispPackage 3498 3641 ((f: x: (x // (f x))) 3499 3642 (qlOverrides."cl-mysql" or (x: {})) ··· 3603 3746 })); 3604 3747 3605 3748 3606 - "cl-html-parse" = buildLispPackage 3607 - ((f: x: (x // (f x))) 3608 - (qlOverrides."cl-html-parse" or (x: {})) 3609 - (import ./quicklisp-to-nix-output/cl-html-parse.nix { 3610 - inherit fetchurl; 3611 - })); 3612 - 3613 - 3614 3749 "cl-html5-parser" = buildLispPackage 3615 3750 ((f: x: (x // (f x))) 3616 3751 (qlOverrides."cl-html5-parser" or (x: {})) ··· 3620 3755 "flexi-streams" = quicklisp-to-nix-packages."flexi-streams"; 3621 3756 "string-case" = quicklisp-to-nix-packages."string-case"; 3622 3757 "trivial-gray-streams" = quicklisp-to-nix-packages."trivial-gray-streams"; 3758 + })); 3759 + 3760 + 3761 + "cl-html-parse" = buildLispPackage 3762 + ((f: x: (x // (f x))) 3763 + (qlOverrides."cl-html-parse" or (x: {})) 3764 + (import ./quicklisp-to-nix-output/cl-html-parse.nix { 3765 + inherit fetchurl; 3623 3766 })); 3624 3767 3625 3768 ··· 3744 3887 })); 3745 3888 3746 3889 3890 + "cl-custom-hash-table" = buildLispPackage 3891 + ((f: x: (x // (f x))) 3892 + (qlOverrides."cl-custom-hash-table" or (x: {})) 3893 + (import ./quicklisp-to-nix-output/cl-custom-hash-table.nix { 3894 + inherit fetchurl; 3895 + })); 3896 + 3897 + 3747 3898 "cl-csv" = buildLispPackage 3748 3899 ((f: x: (x // (f x))) 3749 3900 (qlOverrides."cl-csv" or (x: {})) ··· 3943 4094 })); 3944 4095 3945 4096 3946 - "clack-v1-compat" = buildLispPackage 4097 + "cl_plus_ssl" = buildLispPackage 3947 4098 ((f: x: (x // (f x))) 3948 - (qlOverrides."clack-v1-compat" or (x: {})) 3949 - (import ./quicklisp-to-nix-output/clack-v1-compat.nix { 4099 + (qlOverrides."cl_plus_ssl" or (x: {})) 4100 + (import ./quicklisp-to-nix-output/cl_plus_ssl.nix { 3950 4101 inherit fetchurl; 3951 4102 "alexandria" = quicklisp-to-nix-packages."alexandria"; 3952 4103 "babel" = quicklisp-to-nix-packages."babel"; 3953 4104 "bordeaux-threads" = quicklisp-to-nix-packages."bordeaux-threads"; 3954 4105 "cffi" = quicklisp-to-nix-packages."cffi"; 3955 - "cffi-grovel" = quicklisp-to-nix-packages."cffi-grovel"; 3956 - "cffi-toolchain" = quicklisp-to-nix-packages."cffi-toolchain"; 3957 - "chipz" = quicklisp-to-nix-packages."chipz"; 3958 - "chunga" = quicklisp-to-nix-packages."chunga"; 3959 - "circular-streams" = quicklisp-to-nix-packages."circular-streams"; 3960 - "cl_plus_ssl" = quicklisp-to-nix-packages."cl_plus_ssl"; 3961 - "cl-annot" = quicklisp-to-nix-packages."cl-annot"; 3962 - "cl-base64" = quicklisp-to-nix-packages."cl-base64"; 3963 - "cl-cookie" = quicklisp-to-nix-packages."cl-cookie"; 3964 - "cl-fad" = quicklisp-to-nix-packages."cl-fad"; 3965 - "cl-ppcre" = quicklisp-to-nix-packages."cl-ppcre"; 3966 - "cl-reexport" = quicklisp-to-nix-packages."cl-reexport"; 3967 - "cl-syntax" = quicklisp-to-nix-packages."cl-syntax"; 3968 - "cl-syntax-annot" = quicklisp-to-nix-packages."cl-syntax-annot"; 3969 - "cl-utilities" = quicklisp-to-nix-packages."cl-utilities"; 3970 - "clack" = quicklisp-to-nix-packages."clack"; 3971 - "clack-handler-hunchentoot" = quicklisp-to-nix-packages."clack-handler-hunchentoot"; 3972 - "clack-socket" = quicklisp-to-nix-packages."clack-socket"; 3973 - "clack-test" = quicklisp-to-nix-packages."clack-test"; 3974 - "dexador" = quicklisp-to-nix-packages."dexador"; 3975 - "dissect" = quicklisp-to-nix-packages."dissect"; 3976 - "fast-http" = quicklisp-to-nix-packages."fast-http"; 3977 - "fast-io" = quicklisp-to-nix-packages."fast-io"; 3978 4106 "flexi-streams" = quicklisp-to-nix-packages."flexi-streams"; 3979 - "http-body" = quicklisp-to-nix-packages."http-body"; 3980 - "hunchentoot" = quicklisp-to-nix-packages."hunchentoot"; 3981 - "ironclad" = quicklisp-to-nix-packages."ironclad"; 3982 - "jonathan" = quicklisp-to-nix-packages."jonathan"; 3983 - "lack" = quicklisp-to-nix-packages."lack"; 3984 - "lack-component" = quicklisp-to-nix-packages."lack-component"; 3985 - "lack-middleware-backtrace" = quicklisp-to-nix-packages."lack-middleware-backtrace"; 3986 - "lack-util" = quicklisp-to-nix-packages."lack-util"; 3987 - "local-time" = quicklisp-to-nix-packages."local-time"; 3988 - "marshal" = quicklisp-to-nix-packages."marshal"; 3989 - "md5" = quicklisp-to-nix-packages."md5"; 3990 - "named-readtables" = quicklisp-to-nix-packages."named-readtables"; 3991 - "proc-parse" = quicklisp-to-nix-packages."proc-parse"; 3992 - "quri" = quicklisp-to-nix-packages."quri"; 3993 - "rfc2388" = quicklisp-to-nix-packages."rfc2388"; 3994 - "rove" = quicklisp-to-nix-packages."rove"; 3995 - "smart-buffer" = quicklisp-to-nix-packages."smart-buffer"; 3996 4107 "split-sequence" = quicklisp-to-nix-packages."split-sequence"; 3997 - "static-vectors" = quicklisp-to-nix-packages."static-vectors"; 3998 - "trivial-backtrace" = quicklisp-to-nix-packages."trivial-backtrace"; 3999 4108 "trivial-features" = quicklisp-to-nix-packages."trivial-features"; 4000 4109 "trivial-garbage" = quicklisp-to-nix-packages."trivial-garbage"; 4001 4110 "trivial-gray-streams" = quicklisp-to-nix-packages."trivial-gray-streams"; 4002 - "trivial-mimes" = quicklisp-to-nix-packages."trivial-mimes"; 4003 - "trivial-types" = quicklisp-to-nix-packages."trivial-types"; 4004 - "uiop" = quicklisp-to-nix-packages."uiop"; 4005 - "usocket" = quicklisp-to-nix-packages."usocket"; 4006 - "xsubseq" = quicklisp-to-nix-packages."xsubseq"; 4007 - })); 4008 - 4009 - 4010 - "clack" = buildLispPackage 4011 - ((f: x: (x // (f x))) 4012 - (qlOverrides."clack" or (x: {})) 4013 - (import ./quicklisp-to-nix-output/clack.nix { 4014 - inherit fetchurl; 4015 - "alexandria" = quicklisp-to-nix-packages."alexandria"; 4016 - "bordeaux-threads" = quicklisp-to-nix-packages."bordeaux-threads"; 4017 - "ironclad" = quicklisp-to-nix-packages."ironclad"; 4018 - "lack" = quicklisp-to-nix-packages."lack"; 4019 - "lack-component" = quicklisp-to-nix-packages."lack-component"; 4020 - "lack-middleware-backtrace" = quicklisp-to-nix-packages."lack-middleware-backtrace"; 4021 - "lack-util" = quicklisp-to-nix-packages."lack-util"; 4022 - "split-sequence" = quicklisp-to-nix-packages."split-sequence"; 4023 4111 "uiop" = quicklisp-to-nix-packages."uiop"; 4024 4112 "usocket" = quicklisp-to-nix-packages."usocket"; 4025 4113 })); ··· 4106 4194 "cl-ppcre" = quicklisp-to-nix-packages."cl-ppcre"; 4107 4195 "trivial-features" = quicklisp-to-nix-packages."trivial-features"; 4108 4196 "uiop" = quicklisp-to-nix-packages."uiop"; 4109 - })); 4110 - 4111 - 4112 - "cl-custom-hash-table" = buildLispPackage 4113 - ((f: x: (x // (f x))) 4114 - (qlOverrides."cl-custom-hash-table" or (x: {})) 4115 - (import ./quicklisp-to-nix-output/cl-custom-hash-table.nix { 4116 - inherit fetchurl; 4117 4197 })); 4118 4198 4119 4199
+16 -8
pkgs/development/lua-modules/generated-packages.nix
··· 160 160 161 161 cassowary = buildLuarocksPackage { 162 162 pname = "cassowary"; 163 - version = "2.3.1-1"; 163 + version = "2.3.1-2"; 164 164 knownRockspec = (fetchurl { 165 - url = "https://luarocks.org/cassowary-2.3.1-1.rockspec"; 166 - sha256 = "1rgs0rmlmhghml0gi4dn0rg2iq7rqnn8w8dcy9r3qsbkpyylbajc"; 165 + url = "https://luarocks.org/cassowary-2.3.1-2.rockspec"; 166 + sha256 = "04y882f9ai1jhk0zwla2g0fvl56a75rwnxhsl9r3m0qa5i0ia1i5"; 167 167 }).outPath; 168 168 src = fetchgit ( removeAttrs (builtins.fromJSON ''{ 169 169 "url": "https://github.com/sile-typesetter/cassowary.lua", ··· 171 171 "date": "2021-07-19T14:37:34+03:00", 172 172 "path": "/nix/store/rzsbr6gqg8vhchl24ma3p1h4slhk0xp7-cassowary.lua", 173 173 "sha256": "1r668qcvd2a1rx17xp7ajp5wjhyvh2fwn0c60xmw0mnarjb5w1pq", 174 - "fetchSubmodules": true, 174 + "fetchSubmodules": false, 175 175 "deepClone": false, 176 176 "leaveDotGit": false 177 177 } ··· 179 179 180 180 disabled = (luaOlder "5.1"); 181 181 propagatedBuildInputs = [ lua penlight ]; 182 + checkInputs = [ busted ]; 183 + # Avoid circular dependency issue with busted / penlight, see: 184 + # https://github.com/NixOS/nixpkgs/pull/136453/files#r700982255 185 + doCheck = false; 182 186 183 187 meta = { 184 188 homepage = "https://github.com/sile-typesetter/cassowary.lua"; ··· 1953 1957 1954 1958 penlight = buildLuarocksPackage { 1955 1959 pname = "penlight"; 1956 - version = "dev-1"; 1957 - 1960 + version = "1.11.0-1"; 1961 + knownRockspec = (fetchurl { 1962 + url = "https://luarocks.org/penlight-1.11.0-1.rockspec"; 1963 + sha256 = "1sjhnywvamyi9fadhra5pw2an1rhy2hk2byfxmr3n5wi0xrqv004"; 1964 + }).outPath; 1958 1965 src = fetchgit ( removeAttrs (builtins.fromJSON ''{ 1959 1966 "url": "https://github.com/lunarmodules/penlight.git", 1960 1967 "rev": "e3712f00fae09a166dd62540b677600165d5bcd7", 1961 1968 "date": "2021-08-18T21:37:47+02:00", 1962 1969 "path": "/nix/store/i70ndw8qhvcm828ifb3vyj08y22xp0ka-penlight", 1963 1970 "sha256": "19n9xqkb4hlak0k7hamk4ixwjvyxslsnyh1zjazdzrl8n736xhkl", 1964 - "fetchSubmodules": true, 1971 + "fetchSubmodules": false, 1965 1972 "deepClone": false, 1966 1973 "leaveDotGit": false 1967 1974 } ··· 1969 1976 1970 1977 disabled = (luaOlder "5.1"); 1971 1978 propagatedBuildInputs = [ lua luafilesystem ]; 1972 - checkInputs = [ busted busted ]; 1979 + checkInputs = [ busted ]; 1973 1980 doCheck = false; 1974 1981 1975 1982 meta = { 1976 1983 homepage = "https://lunarmodules.github.io/penlight"; 1977 1984 description = "Lua utility libraries loosely based on the Python standard libraries"; 1985 + maintainers = with lib.maintainers; [ alerque ]; 1978 1986 license.fullName = "MIT/X11"; 1979 1987 }; 1980 1988 };
+2 -2
pkgs/os-specific/linux/fuse/default.nix
··· 11 11 }; 12 12 13 13 fuse_3 = mkFuse { 14 - version = "3.10.4"; 15 - sha256Hash = "1ml4bs4wx5dbz5xpnd5g8b9avmn7g7jvf16fbdlk0da8il0qd2rx"; 14 + version = "3.10.5"; 15 + sha256Hash = "1yxh85m8fnn3w21f6g6vza7k2giizmyhcbkms4rmkcd2dd2rzk3y"; 16 16 }; 17 17 }
+2 -2
pkgs/tools/X11/xdotool/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "xdotool"; 5 - version = "3.20210804.2"; 5 + version = "3.20210903.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "jordansissel"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-7N5f/BFtq/m5MsXe7ZCTUTc1yp+JDJNRF1P9qB2l554="; 11 + sha256 = "sha256-fmz/CJm1GgNOYjOfC6uNwDa8jV+GczPw8m6Qb2jw3rE="; 12 12 }; 13 13 14 14 nativeBuildInputs = [ pkg-config perl ];
+3 -2
pkgs/tools/audio/tts/default.nix
··· 16 16 17 17 python3.pkgs.buildPythonApplication rec { 18 18 pname = "tts"; 19 - version = "0.2.1"; 19 + version = "0.2.2"; 20 20 21 21 src = fetchFromGitHub { 22 22 owner = "coqui-ai"; 23 23 repo = "TTS"; 24 24 rev = "v${version}"; 25 - sha256 = "sha256-7YMNxZ15qQowEE0tE6x/LbtirNGp7h9OLyS1JSl9x2A="; 25 + sha256 = "sha256-hhL6/hBs2umR8/VEumr2LzuCAOkroK8vBfDuNVY0ygw="; 26 26 }; 27 27 28 28 postPatch = '' ··· 55 55 pypinyin 56 56 pysbd 57 57 pytorch 58 + pyworld 58 59 scipy 59 60 soundfile 60 61 tensorboardx
+3 -8
pkgs/tools/misc/exa/default.nix
··· 18 18 19 19 cargoSha256 = "sha256-ah8IjShmivS6IWL3ku/4/j+WNr/LdUnh1YJnPdaFdcM="; 20 20 21 - nativeBuildInputs = [ 22 - cmake pkg-config installShellFiles 23 - # ghc is not supported on aarch64-darwin yet. 24 - ] ++ lib.optional (stdenv.hostPlatform.system != "aarch64-darwin") pandoc; 25 - 21 + nativeBuildInputs = [ cmake pkg-config installShellFiles pandoc ]; 26 22 buildInputs = [ zlib ] 27 23 ++ lib.optionals stdenv.isDarwin [ libiconv Security ]; 28 24 29 - outputs = [ "out" ] ++ lib.optional (stdenv.hostPlatform.system != "aarch64-darwin") "man"; 25 + outputs = [ "out" "man" ]; 30 26 31 - postInstall = lib.optionalString (stdenv.hostPlatform.system != "aarch64-darwin") '' 27 + postInstall = '' 32 28 pandoc --standalone -f markdown -t man man/exa.1.md > man/exa.1 33 29 pandoc --standalone -f markdown -t man man/exa_colors.5.md > man/exa_colors.5 34 30 installManPage man/exa.1 man/exa_colors.5 35 - '' + '' 36 31 installShellCompletion \ 37 32 --name exa completions/completions.bash \ 38 33 --name exa.fish completions/completions.fish \
+3 -4
pkgs/tools/security/step-ca/default.nix
··· 42 42 install -Dm444 -t $out/lib/systemd/system systemd/step-ca.service 43 43 ''; 44 44 45 - # Tests fail on darwin with 46 - # panic: httptest: failed to listen on a port: listen tcp6 [::1]:0: bind: operation not permitted [recovered] 47 - # probably some sandboxing issue 48 - doCheck = stdenv.isLinux; 45 + # Tests start http servers which need to bind to local addresses: 46 + # panic: httptest: failed to listen on a port: listen tcp6 [::1]:0: bind: operation not permitted 47 + __darwinAllowLocalNetworking = true; 49 48 50 49 meta = with lib; { 51 50 description = "A private certificate authority (X.509 & SSH) & ACME server for secure automated certificate management, so you can use TLS everywhere & SSO for SSH";
+9 -8
pkgs/tools/typesetting/sile/default.nix
··· 3 3 , fetchurl 4 4 , makeWrapper 5 5 , pkg-config 6 - , autoconf 7 - , automake 8 6 , poppler_utils 7 + , gitMinimal 9 8 , harfbuzz 10 9 , icu 11 10 , fontconfig ··· 39 38 40 39 stdenv.mkDerivation rec { 41 40 pname = "sile"; 42 - version = "0.10.15"; 41 + version = "0.11.1"; 43 42 44 43 src = fetchurl { 45 44 url = "https://github.com/sile-typesetter/sile/releases/download/v${version}/${pname}-${version}.tar.xz"; 46 - sha256 = "0p1w3s6j34qi93aycqmqggfm277n90z90nlmm1j3qizxxwq5gda9"; 45 + sha256 = "06bx94zx6skhizk2bbrid82sldwgxfycvjh6zx1zy1xz8gajgrm3"; 47 46 }; 48 47 49 48 configureFlags = [ ··· 52 51 ]; 53 52 54 53 nativeBuildInputs = [ 55 - autoconf 56 - automake 54 + gitMinimal 57 55 pkg-config 58 56 makeWrapper 59 57 ]; ··· 70 68 poppler_utils 71 69 ]; 72 70 73 - preConfigure = lib.optionalString stdenv.isDarwin '' 71 + preConfigure = '' 72 + patchShebangs build-aux/*.sh 73 + '' + lib.optionalString stdenv.isDarwin '' 74 74 sed -i -e 's|@import AppKit;|#import <AppKit/AppKit.h>|' src/macfonts.m 75 75 ''; 76 76 ··· 108 108 technologies and borrowing some ideas from graphical systems 109 109 such as InDesign. 110 110 ''; 111 - homepage = "https://sile-typesetter.org/"; 111 + homepage = "https://sile-typesetter.org"; 112 + changelog = "https://github.com/sile-typesetter/sile/raw/v${version}/CHANGELOG.md"; 112 113 platforms = platforms.unix; 113 114 broken = stdenv.isDarwin; # https://github.com/NixOS/nixpkgs/issues/23018 114 115 maintainers = with maintainers; [ doronbehar alerque ];