diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix
index 91f5f7c26f1..1d64d3cbf51 100644
--- a/maintainers/maintainer-list.nix
+++ b/maintainers/maintainer-list.nix
@@ -5160,6 +5160,11 @@
github = "tobimpub";
name = "Tobias Mayer";
};
+ tobiasBora = {
+ email = "tobias.bora.list@gmail.com";
+ github = "tobiasBora";
+ name = "Tobias Bora";
+ };
tohl = {
email = "tom@logand.com";
github = "tohl";
diff --git a/nixos/doc/manual/release-notes/rl-1909.xml b/nixos/doc/manual/release-notes/rl-1909.xml
index d7ae05086ed..b92cefa441d 100644
--- a/nixos/doc/manual/release-notes/rl-1909.xml
+++ b/nixos/doc/manual/release-notes/rl-1909.xml
@@ -259,6 +259,30 @@
(/var/lib/systemd/timesync), if required.
-
+
+
+ Since version 0.1.19, cargo-vendor honors package
+ includes that are specified in the Cargo.toml
+ file of Rust crates. rustPlatform.buildRustPackage uses
+ cargo-vendor to collect and build dependent crates.
+ Since this change in cargo-vendor changes the set of
+ vendored files for most Rust packages, the hash that use used to verify
+ the dependencies, cargoSha256, also changes.
+
+
+ The cargoSha256 hashes of all in-tree derivations that
+ use buildRustPackage have been updated to reflect this
+ change. However, third-party derivations that use
+ buildRustPackage may have to be updated as well.
+
+
+
+
+ The default resample-method for PulseAudio has been changed from the upstream default speex-float-1
+ to speex-float-5. Be aware that low-powered ARM-based and MIPS-based boards will struggle with this
+ so you'll need to set back to speex-float-1.
+
+
+
diff --git a/nixos/modules/config/pulseaudio.nix b/nixos/modules/config/pulseaudio.nix
index e61a3a73120..5c3e3930258 100644
--- a/nixos/modules/config/pulseaudio.nix
+++ b/nixos/modules/config/pulseaudio.nix
@@ -245,6 +245,9 @@ in {
# Disable flat volumes to enable relative ones
hardware.pulseaudio.daemon.config.flat-volumes = mkDefault "no";
+ # Upstream defaults to speex-float-1 which results in audible artifacts
+ hardware.pulseaudio.daemon.config.resample-method = mkDefault "speex-float-5";
+
# Allow PulseAudio to get realtime priority using rtkit.
security.rtkit.enable = true;
diff --git a/nixos/modules/installer/netboot/netboot.nix b/nixos/modules/installer/netboot/netboot.nix
index 303d9fce3f9..cdfba5ab9e3 100644
--- a/nixos/modules/installer/netboot/netboot.nix
+++ b/nixos/modules/installer/netboot/netboot.nix
@@ -65,8 +65,7 @@ with lib;
[ config.system.build.toplevel ];
# Create the squashfs image that contains the Nix store.
- system.build.squashfsStore = import ../../../lib/make-squashfs.nix {
- inherit (pkgs) stdenv squashfsTools closureInfo;
+ system.build.squashfsStore = pkgs.callPackage ../../../lib/make-squashfs.nix {
storeContents = config.netboot.storeContents;
};
diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix
index bf2716d6cae..d30700b4dd6 100644
--- a/nixos/modules/module-list.nix
+++ b/nixos/modules/module-list.nix
@@ -327,6 +327,7 @@
./services/hardware/tcsd.nix
./services/hardware/tlp.nix
./services/hardware/thinkfan.nix
+ ./services/hardware/throttled.nix
./services/hardware/trezord.nix
./services/hardware/triggerhappy.nix
./services/hardware/u2f.nix
diff --git a/nixos/modules/services/desktops/deepin/deepin.nix b/nixos/modules/services/desktops/deepin/deepin.nix
index 7ec326e599e..d9d5d539e42 100644
--- a/nixos/modules/services/desktops/deepin/deepin.nix
+++ b/nixos/modules/services/desktops/deepin/deepin.nix
@@ -35,6 +35,7 @@
pkgs.deepin.dde-calendar
pkgs.deepin.dde-daemon
pkgs.deepin.dde-dock
+ pkgs.deepin.dde-file-manager
pkgs.deepin.dde-session-ui
pkgs.deepin.deepin-anything
pkgs.deepin.deepin-image-viewer
@@ -46,6 +47,7 @@
pkgs.deepin.dde-calendar
pkgs.deepin.dde-daemon
pkgs.deepin.dde-dock
+ pkgs.deepin.dde-file-manager
pkgs.deepin.dde-session-ui
pkgs.deepin.deepin-anything
pkgs.deepin.deepin-image-viewer
@@ -55,6 +57,7 @@
systemd.packages = [
pkgs.deepin.dde-api
pkgs.deepin.dde-daemon
+ pkgs.deepin.dde-file-manager
pkgs.deepin.deepin-anything
];
diff --git a/nixos/modules/services/hardware/throttled.nix b/nixos/modules/services/hardware/throttled.nix
new file mode 100644
index 00000000000..cd5b01450e4
--- /dev/null
+++ b/nixos/modules/services/hardware/throttled.nix
@@ -0,0 +1,21 @@
+{ config, lib, pkgs, ... }:
+
+with lib;
+
+let
+ cfg = config.services.throttled;
+in {
+ options = {
+ services.throttled = {
+ enable = mkEnableOption "fix for Intel CPU throttling";
+ };
+ };
+
+ config = mkIf cfg.enable {
+ systemd.packages = [ pkgs.throttled ];
+ # The upstream package has this in Install, but that's not enough, see the NixOS manual
+ systemd.services."lenovo_fix".wantedBy = [ "multi-user.target" ];
+
+ environment.etc."lenovo_fix.conf".source = "${pkgs.throttled}/etc/lenovo_fix.conf";
+ };
+}
diff --git a/nixos/modules/services/networking/bind.nix b/nixos/modules/services/networking/bind.nix
index 98486cefd52..7f89cff2232 100644
--- a/nixos/modules/services/networking/bind.nix
+++ b/nixos/modules/services/networking/bind.nix
@@ -184,7 +184,7 @@ in
preStart = ''
mkdir -m 0755 -p /etc/bind
if ! [ -f "/etc/bind/rndc.key" ]; then
- ${pkgs.bind.out}/sbin/rndc-confgen -r /dev/urandom -c /etc/bind/rndc.key -u ${bindUser} -a -A hmac-sha256 2>/dev/null
+ ${pkgs.bind.out}/sbin/rndc-confgen -c /etc/bind/rndc.key -u ${bindUser} -a -A hmac-sha256 2>/dev/null
fi
${pkgs.coreutils}/bin/mkdir -p /run/named
diff --git a/nixos/modules/services/networking/openvpn.nix b/nixos/modules/services/networking/openvpn.nix
index b94b4026fd9..f47122ee70b 100644
--- a/nixos/modules/services/networking/openvpn.nix
+++ b/nixos/modules/services/networking/openvpn.nix
@@ -85,7 +85,7 @@ in
{
server = {
config = '''
- # Simplest server configuration: http://openvpn.net/index.php/documentation/miscellaneous/static-key-mini-howto.html.
+ # Simplest server configuration: https://community.openvpn.net/openvpn/wiki/StaticKeyMiniHowto
# server :
dev tun
ifconfig 10.8.0.1 10.8.0.2
diff --git a/nixos/modules/services/web-servers/lighttpd/cgit.nix b/nixos/modules/services/web-servers/lighttpd/cgit.nix
index e6a054c296d..4ec4a5a3359 100644
--- a/nixos/modules/services/web-servers/lighttpd/cgit.nix
+++ b/nixos/modules/services/web-servers/lighttpd/cgit.nix
@@ -44,6 +44,8 @@ in
example = ''
cache-size=1000
scan-path=/srv/git
+ source-filter=''${pkgs.cgit}/lib/cgit/filters/syntax-highlighting.py
+ about-filter=''${pkgs.cgit}/lib/cgit/filters/about-formatting.sh
'';
type = types.lines;
description = ''
diff --git a/nixos/modules/system/boot/luksroot.nix b/nixos/modules/system/boot/luksroot.nix
index 9dcb683eff4..b5c8d5241a3 100644
--- a/nixos/modules/system/boot/luksroot.nix
+++ b/nixos/modules/system/boot/luksroot.nix
@@ -438,6 +438,7 @@ in
default =
[ "aes" "aes_generic" "blowfish" "twofish"
"serpent" "cbc" "xts" "lrw" "sha1" "sha256" "sha512"
+ "af_alg" "algif_skcipher"
(if pkgs.stdenv.hostPlatform.system == "x86_64-linux" then "aes_x86_64" else "aes_i586")
];
diff --git a/nixos/tests/installer.nix b/nixos/tests/installer.nix
index 5e363f5d09e..07659b60b3b 100644
--- a/nixos/tests/installer.nix
+++ b/nixos/tests/installer.nix
@@ -273,7 +273,7 @@ let
};
};
- makeLuksRootTest = name: luksFormatOpts: makeInstallerTest "luksroot-format2"
+ makeLuksRootTest = name: luksFormatOpts: makeInstallerTest name
{ createPartitions = ''
$machine->succeed(
"flock /dev/vda parted --script /dev/vda -- mklabel msdos"
diff --git a/pkgs/applications/audio/lollypop/default.nix b/pkgs/applications/audio/lollypop/default.nix
index c12ea885167..45fc0562337 100644
--- a/pkgs/applications/audio/lollypop/default.nix
+++ b/pkgs/applications/audio/lollypop/default.nix
@@ -21,7 +21,7 @@
python3.pkgs.buildPythonApplication rec {
pname = "lollypop";
- version = "1.0.10";
+ version = "1.0.12";
format = "other";
doCheck = false;
@@ -30,7 +30,7 @@ python3.pkgs.buildPythonApplication rec {
url = "https://gitlab.gnome.org/World/lollypop";
rev = "refs/tags/${version}";
fetchSubmodules = true;
- sha256 = "118z1qhvpv7x5n63lpm4mf81pmv7gd450sa55i68mnjvry93h9h5";
+ sha256 = "0jc40p2yw3zp035c87crav2lq0iraf35ag9w26vzmbjvgpvwzb86";
};
nativeBuildInputs = [
diff --git a/pkgs/applications/audio/vocal/default.nix b/pkgs/applications/audio/vocal/default.nix
index c89fe9ef26e..b6ba5ec349a 100644
--- a/pkgs/applications/audio/vocal/default.nix
+++ b/pkgs/applications/audio/vocal/default.nix
@@ -22,13 +22,13 @@
stdenv.mkDerivation rec {
pname = "vocal";
- version = "2.4.1";
+ version = "2.4.2";
src = fetchFromGitHub {
owner = "needle-and-thread";
repo = pname;
rev = version;
- sha256 = "0jz72nmc6qmadsvcpk339x1fm4wg6yx9r1bagr7mcgnz3x5papnr";
+ sha256 = "1c4n89rdl9r13kmmh2qymmy9sa6shjwai7df48k2kfn0pnzq5mad";
};
nativeBuildInputs = [
diff --git a/pkgs/applications/editors/emacs-modes/melpa-stable-generated.nix b/pkgs/applications/editors/emacs-modes/melpa-stable-generated.nix
index 3b4479c099e..22ad906fd6e 100644
--- a/pkgs/applications/editors/emacs-modes/melpa-stable-generated.nix
+++ b/pkgs/applications/editors/emacs-modes/melpa-stable-generated.nix
@@ -103,59 +103,6 @@
license = lib.licenses.free;
};
}) {};
- abgaben = callPackage ({ f
- , fetchFromGitLab
- , fetchurl
- , lib
- , melpaBuild
- , pdf-tools
- , s }:
- melpaBuild {
- pname = "abgaben";
- ename = "abgaben";
- version = "20171118.2246";
- src = fetchFromGitLab {
- owner = "akoehn";
- repo = "abgaben";
- rev = "966bfcfdd3b2e288576ffe363d676ad282902090";
- sha256 = "0zmzn8rdn1q0dfql3awivhrxd1nrvqr6mb8gv2ynaldyidgsb487";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/2b0aa60aa0edf33205e0fcb309be779ad8da08ec/recipes/abgaben";
- sha256 = "1xywghyp6aahzin1ygwzqfg9640dliycl4g02jz3gpix8hd3g8gy";
- name = "recipe";
- };
- packageRequires = [ f pdf-tools s ];
- meta = {
- homepage = "https://melpa.org/#/abgaben";
- license = lib.licenses.free;
- };
- }) {};
- abl-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "abl-mode";
- ename = "abl-mode";
- version = "20190403.204";
- src = fetchFromGitHub {
- owner = "afroisalreadyinu";
- repo = "abl-mode";
- rev = "44b7d946bc3a693f5a931c4a62c0a67d42e8d4dc";
- sha256 = "070c408bq5pliq0xbd1861l6db4sbfpnj3r6aknbqh2vb7l4yimb";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/70a52edb381daa9c4dcc9f7e511175b38fc141be/recipes/abl-mode";
- sha256 = "0h25lc87pa8irgxflnmnmkr9dcv4kz841nfc45fcz4awrn75kkzb";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/abl-mode";
- license = lib.licenses.free;
- };
- }) {};
abs-mode = callPackage ({ emacs
, erlang
, fetchFromGitHub
@@ -239,32 +186,6 @@
license = lib.licenses.free;
};
}) {};
- ac-c-headers = callPackage ({ auto-complete
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "ac-c-headers";
- ename = "ac-c-headers";
- version = "20151021.134";
- src = fetchFromGitHub {
- owner = "zk-phi";
- repo = "ac-c-headers";
- rev = "de13a1d35b311e6601556d8ef163de102057deea";
- sha256 = "1z6rj15p5gjv0jwnnck8789n9csf1pwxfvsz37graihgfy2khj0y";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/d7736fb9ea3a59c36c0b8b824d83bb1bb0099d43/recipes/ac-c-headers";
- sha256 = "1cq5rz2w79bj185va7y13x7bciihrpsvyxwk6msmcxb4g86s9phv";
- name = "recipe";
- };
- packageRequires = [ auto-complete ];
- meta = {
- homepage = "https://melpa.org/#/ac-c-headers";
- license = lib.licenses.free;
- };
- }) {};
ac-capf = callPackage ({ auto-complete
, cl-lib ? null
, fetchFromGitHub
@@ -404,33 +325,6 @@
license = lib.licenses.free;
};
}) {};
- ac-emmet = callPackage ({ auto-complete
- , emmet-mode
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "ac-emmet";
- ename = "ac-emmet";
- version = "20131015.858";
- src = fetchFromGitHub {
- owner = "yasuyk";
- repo = "ac-emmet";
- rev = "88f24876ee3b759978d4614a758280b5d512d543";
- sha256 = "1lkhqmfkjga7qi4r1m7mjax3pyf9m6minsn57cbzm2z2kvkhq22g";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/39861b4f0a458c8ccf02f7a3443c54b0e74daa11/recipes/ac-emmet";
- sha256 = "09ycjllfpdgqaf5iis5bkkhal1vxvl3qkxrn2759p67s97c49f3x";
- name = "recipe";
- };
- packageRequires = [ auto-complete emmet-mode ];
- meta = {
- homepage = "https://melpa.org/#/ac-emmet";
- license = lib.licenses.free;
- };
- }) {};
ac-emoji = callPackage ({ auto-complete
, cl-lib ? null
, fetchFromGitHub
@@ -593,32 +487,6 @@
license = lib.licenses.free;
};
}) {};
- ac-html-angular = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , web-completion-data }:
- melpaBuild {
- pname = "ac-html-angular";
- ename = "ac-html-angular";
- version = "20151224.2319";
- src = fetchFromGitHub {
- owner = "osv";
- repo = "ac-html-angular";
- rev = "6bafe09afe03112ca4183d58461c1a6f6c2b3c67";
- sha256 = "1v3ia439h4n2i204n0sazzbwwm0l5k6j31gq58iv2rqrq2ysikny";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/0805ba6674d1298d730770e8ea46b9bbd68cd1d3/recipes/ac-html-angular";
- sha256 = "05rbxf5kbr4jlskrhvfvhf82qvb55zl5cb6z1ymfh9l3h9j9xk3s";
- name = "recipe";
- };
- packageRequires = [ web-completion-data ];
- meta = {
- homepage = "https://melpa.org/#/ac-html-angular";
- license = lib.licenses.free;
- };
- }) {};
ac-html-bootstrap = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -725,60 +593,6 @@
license = lib.licenses.free;
};
}) {};
- ac-js2 = callPackage ({ fetchFromGitHub
- , fetchurl
- , js2-mode
- , lib
- , melpaBuild
- , skewer-mode }:
- melpaBuild {
- pname = "ac-js2";
- ename = "ac-js2";
- version = "20190101.133";
- src = fetchFromGitHub {
- owner = "ScottyB";
- repo = "ac-js2";
- rev = "2b56d09a16c1a0ce514cc1b85d64cb1be4502723";
- sha256 = "11q4aaiqr4xnw5j0yqj35gc4a290az75qdyhadj09xr2j2jay35x";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/255588a330e4c9a03517885092d5678375aa7850/recipes/ac-js2";
- sha256 = "0gcr0xdi89nj3854v2z3nndfgazmcdzmd6wdndl0i4s7pdfl96fa";
- name = "recipe";
- };
- packageRequires = [ js2-mode skewer-mode ];
- meta = {
- homepage = "https://melpa.org/#/ac-js2";
- license = lib.licenses.free;
- };
- }) {};
- ac-math = callPackage ({ auto-complete
- , fetchFromGitHub
- , fetchurl
- , lib
- , math-symbol-lists
- , melpaBuild }:
- melpaBuild {
- pname = "ac-math";
- ename = "ac-math";
- version = "20141116.1327";
- src = fetchFromGitHub {
- owner = "vspinu";
- repo = "ac-math";
- rev = "89478063dead68894f0d27687b63896633048c6f";
- sha256 = "0mzbc3ninsz970xly90zbxlxqy4b0s8yrp1mlj8jzpk5dzlc4g51";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/ac-math";
- sha256 = "02c821zabxp9qkwx252pxjmssdbmas0iwanw09r03bmiby9d4nsl";
- name = "recipe";
- };
- packageRequires = [ auto-complete math-symbol-lists ];
- meta = {
- homepage = "https://melpa.org/#/ac-math";
- license = lib.licenses.free;
- };
- }) {};
ac-mozc = callPackage ({ auto-complete
, cl-lib ? null
, fetchFromGitHub
@@ -947,35 +761,6 @@
license = lib.licenses.free;
};
}) {};
- ac-skk = callPackage ({ auto-complete
- , cl-lib ? null
- , ddskk
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , tinysegmenter }:
- melpaBuild {
- pname = "ac-skk";
- ename = "ac-skk";
- version = "20141229.1719";
- src = fetchFromGitHub {
- owner = "myuhe";
- repo = "ac-skk.el";
- rev = "d25a265930430d080329789fb253d786c01dfa24";
- sha256 = "1nvz0jfz4x99xc5ywspl8fdpyqns5zd0j7i4bwzlwplmy3qakjwm";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1d9d8268d2db4b38ca18156964483b0b067f6f5d/recipes/ac-skk";
- sha256 = "0iycyfgv8v15ygngvyx66m3w3sv8p9h6q6j1hbpzwd8azl8fzj5z";
- name = "recipe";
- };
- packageRequires = [ auto-complete cl-lib ddskk tinysegmenter ];
- meta = {
- homepage = "https://melpa.org/#/ac-skk";
- license = lib.licenses.free;
- };
- }) {};
ac-slime = callPackage ({ auto-complete
, cl-lib ? null
, fetchFromGitHub
@@ -1004,63 +789,6 @@
license = lib.licenses.free;
};
}) {};
- ac-sly = callPackage ({ auto-complete
- , cl-lib ? null
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , sly }:
- melpaBuild {
- pname = "ac-sly";
- ename = "ac-sly";
- version = "20170728.327";
- src = fetchFromGitHub {
- owner = "qoocku";
- repo = "ac-sly";
- rev = "bf69c687c4ecf1994349d20c182e9b567399912e";
- sha256 = "09g6v2yp3wl566488zsb79lklqpai9dgz6xwv1y5h6zkghxvkhpy";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/bb26741e841d4886c14f0a059a52805732f179b1/recipes/ac-sly";
- sha256 = "1ng81b5f8w2s9mm9s7h5kwyx8fdwndnlsbzx50slmqyaz2ad15mx";
- name = "recipe";
- };
- packageRequires = [ auto-complete cl-lib sly ];
- meta = {
- homepage = "https://melpa.org/#/ac-sly";
- license = lib.licenses.free;
- };
- }) {};
- academic-phrases = callPackage ({ dash
- , emacs
- , fetchFromGitHub
- , fetchurl
- , ht
- , lib
- , melpaBuild
- , s }:
- melpaBuild {
- pname = "academic-phrases";
- ename = "academic-phrases";
- version = "20180723.321";
- src = fetchFromGitHub {
- owner = "nashamri";
- repo = "academic-phrases";
- rev = "25d9cf67feac6359cb213f061735e2679c84187f";
- sha256 = "0m32jpg6n0azz2f4y57y92zfvzm54ankx5cm06gli2zw2v1218fw";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/fe4323043fb875c0252861800e61fdd0a51ed453/recipes/academic-phrases";
- sha256 = "18y6lff7xwg6hczwgavwp32848gnlmc30afra9x7m8wmdddps1bh";
- name = "recipe";
- };
- packageRequires = [ dash emacs ht s ];
- meta = {
- homepage = "https://melpa.org/#/academic-phrases";
- license = lib.licenses.free;
- };
- }) {};
ace-flyspell = callPackage ({ avy
, fetchFromGitHub
, fetchurl
@@ -1248,34 +976,6 @@
license = lib.licenses.free;
};
}) {};
- ace-mc = callPackage ({ ace-jump-mode
- , dash
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , multiple-cursors }:
- melpaBuild {
- pname = "ace-mc";
- ename = "ace-mc";
- version = "20190205.2349";
- src = fetchFromGitHub {
- owner = "mm--";
- repo = "ace-mc";
- rev = "6877880efd99e177e4e9116a364576def3da391b";
- sha256 = "180licc7w5b6f42ifwvllbnmf3aq8cbr8jhkbk37lzick4sv10d2";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/62e3a5f23ce219b16081cb0bba9fc4699e11fafa/recipes/ace-mc";
- sha256 = "1kca6ha2glhv7lkamqx3sxp7dy05c7f6xxy3lr3v2bik8r50jss8";
- name = "recipe";
- };
- packageRequires = [ ace-jump-mode dash multiple-cursors ];
- meta = {
- homepage = "https://melpa.org/#/ace-mc";
- license = lib.licenses.free;
- };
- }) {};
ace-pinyin = callPackage ({ ace-jump-mode
, avy
, fetchFromGitHub
@@ -1357,57 +1057,6 @@
license = lib.licenses.free;
};
}) {};
- achievements = callPackage ({ fetchhg
- , fetchurl
- , keyfreq
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "achievements";
- ename = "achievements";
- version = "20150530.1126";
- src = fetchhg {
- url = "https://bitbucket.com/gvol/emacs-achievements";
- rev = "18a422131c12";
- sha256 = "0nk1zhqx0lvckjc98b36125148zgx1l2axln8gvkdwlhrd2cc6vj";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/83ec19a4ebac6b2d0fd84939b393848f82620978/recipes/achievements";
- sha256 = "1pwlibq87ph20z2pssk5hbgs6v8kdym9193jjdx2rxp0nic4k0cr";
- name = "recipe";
- };
- packageRequires = [ keyfreq ];
- meta = {
- homepage = "https://melpa.org/#/achievements";
- license = lib.licenses.free;
- };
- }) {};
- ack-menu = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , mag-menu
- , melpaBuild }:
- melpaBuild {
- pname = "ack-menu";
- ename = "ack-menu";
- version = "20150504.1322";
- src = fetchFromGitHub {
- owner = "chumpage";
- repo = "ack-menu";
- rev = "f77be93a4697926ecf3195a355eb69580f695f4d";
- sha256 = "02ba4d8qkvgy52g0zcbyfvsnhr9685gq569nkwa2as30xdcq3khm";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/8ff331ed45e5b7697e4862e723408602ecc98bc7/recipes/ack-menu";
- sha256 = "1d2kw04ndxji2qjcm1b65qnxpp08zx8gbia8bl6x6mnjb2isc2d9";
- name = "recipe";
- };
- packageRequires = [ mag-menu ];
- meta = {
- homepage = "https://melpa.org/#/ack-menu";
- license = lib.licenses.free;
- };
- }) {};
actionscript-mode = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -1614,32 +1263,6 @@
license = lib.licenses.free;
};
}) {};
- afternoon-theme = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "afternoon-theme";
- ename = "afternoon-theme";
- version = "20140104.1059";
- src = fetchFromGitHub {
- owner = "osener";
- repo = "emacs-afternoon-theme";
- rev = "89b1d778a1f8b385775c122f2bd1c62f0fbf931a";
- sha256 = "19d5d6qs5nwmpf26rsb86ranb5p4236qp7p2b4i88cimcmzspylb";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/583256b7fa48501c8bfad305d76d2e16b6441539/recipes/afternoon-theme";
- sha256 = "13xgdw8px58sxpl7nyhkcdxwqdpp13i8wghvlb3l4471plw3vqgj";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/afternoon-theme";
- license = lib.licenses.free;
- };
- }) {};
ag = callPackage ({ cl-lib ? null
, dash
, fetchFromGitHub
@@ -1668,32 +1291,6 @@
license = lib.licenses.free;
};
}) {};
- aggressive-fill-paragraph = callPackage ({ dash
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "aggressive-fill-paragraph";
- ename = "aggressive-fill-paragraph";
- version = "20180910.116";
- src = fetchFromGitHub {
- owner = "davidshepherd7";
- repo = "aggressive-fill-paragraph-mode";
- rev = "39eb7ac73976d4d4044ef3d750c3ade967d036e1";
- sha256 = "1ly79z9aqy3b2wq11ifvvkls9qqbpkbb8hj7nsvpq59vqa9fknli";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/982f5936f2d83222263df2886ca0b629076366bb/recipes/aggressive-fill-paragraph";
- sha256 = "1df4bk3ks09805y67af6z1gpfln0lz773jzbbckfl0fy3yli0dja";
- name = "recipe";
- };
- packageRequires = [ dash ];
- meta = {
- homepage = "https://melpa.org/#/aggressive-fill-paragraph";
- license = lib.licenses.free;
- };
- }) {};
aggressive-indent = callPackage ({ cl-lib ? null
, emacs
, fetchFromGitHub
@@ -1721,56 +1318,6 @@
license = lib.licenses.free;
};
}) {};
- agtags = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "agtags";
- ename = "agtags";
- version = "20181229.1634";
- src = fetchFromGitHub {
- owner = "vietor";
- repo = "agtags";
- rev = "7a59137db7780678cf86d0c1193da5fde38bc759";
- sha256 = "1mr1k7bx5zq54j3vhjhny5wzh3z8dh94rcv0bqlmzc8ibidj557p";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/eb6677262303a0cad2d844db77693c00d9bc575a/recipes/agtags";
- sha256 = "07kpdbchplkbspid8gnjsprbdwf244nr2q596pw6jl17bysbbbk7";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/agtags";
- license = lib.licenses.free;
- };
- }) {};
- ahg = callPackage ({ fetchhg
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "ahg";
- ename = "ahg";
- version = "20181120.501";
- src = fetchhg {
- url = "https://bitbucket.com/agriggio/ahg";
- rev = "7213c02fdbd6";
- sha256 = "0dxgb033rzayjah2yyxprjsk7ir25a5pqjp3lmx8dj8g9bcxddx5";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5b7972602399f9df9139cff177e38653bb0f43ed/recipes/ahg";
- sha256 = "0kw138lfzwp54fmly3jzzml11y7fhcjp3w0irmwdzr68lc206lr4";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/ahg";
- license = lib.licenses.free;
- };
- }) {};
ahk-mode = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -1875,34 +1422,6 @@
license = lib.licenses.free;
};
}) {};
- airplay = callPackage ({ deferred
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , request
- , simple-httpd }:
- melpaBuild {
- pname = "airplay";
- ename = "airplay";
- version = "20130212.426";
- src = fetchFromGitHub {
- owner = "gongo";
- repo = "airplay-el";
- rev = "46fad71d293a3e18551cf464fe6c6208a7a32d9d";
- sha256 = "1dlmkx17lafkxz3sfajylc5fml5rq339xn6v2qj463gg4n8sdgij";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/b7f9d8229e4c91f4e3e8925b07e59d2a81cc745e/recipes/airplay";
- sha256 = "095nibgs197iplphk6csvkgsrgh1fcfyy33py860v6qmihvk538f";
- name = "recipe";
- };
- packageRequires = [ deferred request simple-httpd ];
- meta = {
- homepage = "https://melpa.org/#/airplay";
- license = lib.licenses.free;
- };
- }) {};
alan-mode = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -2067,84 +1586,6 @@
license = lib.licenses.free;
};
}) {};
- alert-termux = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "alert-termux";
- ename = "alert-termux";
- version = "20181119.151";
- src = fetchFromGitHub {
- owner = "gergelypolonkai";
- repo = "alert-termux";
- rev = "8215cf1d86392738c35a90bbc0055359265dfc4d";
- sha256 = "05znscs3dljkzsk6xkbw3mx3ns8j0y31l9m01mswqmq98msa409f";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/d43e98a7142cf0edc89fa9e2f2817787c073667f/recipes/alert-termux";
- sha256 = "19dfxbpp1kn1ara0fj9xr0ishpk1yiykg2al8g43rcy615vkpk8j";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/alert-termux";
- license = lib.licenses.free;
- };
- }) {};
- align-cljlet = callPackage ({ clojure-mode
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "align-cljlet";
- ename = "align-cljlet";
- version = "20160112.1301";
- src = fetchFromGitHub {
- owner = "gstamp";
- repo = "align-cljlet";
- rev = "ebcf0a912e836579a3a9d386e22c1c4bef7fba17";
- sha256 = "1g0fp77zrnpa9dplj41my2wsin6qxpw49f7451km29mjayh2zhfj";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/091dcc3775ec2137cb61d66df4e72aca4900897a/recipes/align-cljlet";
- sha256 = "0pnhhv33rvlmb3823xpy9v5h6q99fa7fn38djbwry4rymi4jmlih";
- name = "recipe";
- };
- packageRequires = [ clojure-mode ];
- meta = {
- homepage = "https://melpa.org/#/align-cljlet";
- license = lib.licenses.free;
- };
- }) {};
- all-ext = callPackage ({ all
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "all-ext";
- ename = "all-ext";
- version = "20170114.1805";
- src = fetchFromGitHub {
- owner = "rubikitch";
- repo = "all-ext";
- rev = "9f4ef84a147cf4e0af6ef45826d6cb3558db6b88";
- sha256 = "0gdrsi9n9i1ibijkgk5kyjdjdmnsccfbpifpv679371glap9f68b";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/f8e4328cae9b4759a75da0b26ea8b68821bc71af/recipes/all-ext";
- sha256 = "0vmpa5p7likg2xgck18sa0jvmvnhjs9v1fbl82sxx7qy2f3cggql";
- name = "recipe";
- };
- packageRequires = [ all ];
- meta = {
- homepage = "https://melpa.org/#/all-ext";
- license = lib.licenses.free;
- };
- }) {};
all-the-icons = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -2172,61 +1613,6 @@
license = lib.licenses.free;
};
}) {};
- all-the-icons-dired = callPackage ({ all-the-icons
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "all-the-icons-dired";
- ename = "all-the-icons-dired";
- version = "20170418.1431";
- src = fetchFromGitHub {
- owner = "jtbm37";
- repo = "all-the-icons-dired";
- rev = "980b7747d6c4a7992a1ec56afad908956db0a519";
- sha256 = "1pvbgyxfj4j205nj1r02045f1y4wgavdsk7f45hxkkhms1rj8jyy";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/all-the-icons-dired";
- sha256 = "1qj639z24ln29hv6c51g1vsa2jsy4qrlhf8c7d5w9bxcrcn2fnr9";
- name = "recipe";
- };
- packageRequires = [ all-the-icons emacs ];
- meta = {
- homepage = "https://melpa.org/#/all-the-icons-dired";
- license = lib.licenses.free;
- };
- }) {};
- all-the-icons-gnus = callPackage ({ all-the-icons
- , dash
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "all-the-icons-gnus";
- ename = "all-the-icons-gnus";
- version = "20180510.2354";
- src = fetchFromGitHub {
- owner = "nlamirault";
- repo = "all-the-icons-gnus";
- rev = "27f78996da0725943bcfb2d18038e6f7bddfa9c7";
- sha256 = "0yi3nbhx7cdxq2192kh5ra2n0a3qg20p342prz3a0bm3w7q2ym11";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/f8ed74d39d165343c81c2a21aa47e3d3895d8119/recipes/all-the-icons-gnus";
- sha256 = "0vdqhpa49p8vzbad426gl0dvniapyk73kbscvjv7mdl4bwhcr309";
- name = "recipe";
- };
- packageRequires = [ all-the-icons dash emacs ];
- meta = {
- homepage = "https://melpa.org/#/all-the-icons-gnus";
- license = lib.licenses.free;
- };
- }) {};
all-the-icons-ivy = callPackage ({ all-the-icons
, emacs
, fetchFromGitHub
@@ -2323,109 +1709,6 @@
license = lib.licenses.free;
};
}) {};
- ammonite-term-repl = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , s
- , scala-mode }:
- melpaBuild {
- pname = "ammonite-term-repl";
- ename = "ammonite-term-repl";
- version = "20190228.2316";
- src = fetchFromGitHub {
- owner = "zwild";
- repo = "ammonite-term-repl";
- rev = "c5c1f6e2491282983cf55573b48a3e8de06aaae5";
- sha256 = "061qvm6jqydsv7bgwcbaxh1d8ck3nab1szlql0ass1hsak6g028i";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/cf0ece0efb1fcf0ea7364df0d35fca69862f5e9a/recipes/ammonite-term-repl";
- sha256 = "004cvhyh4afgpb31m1q31g98x8c9m6lmsb5fzc4a1r5pb4p3iimp";
- name = "recipe";
- };
- packageRequires = [ emacs s scala-mode ];
- meta = {
- homepage = "https://melpa.org/#/ammonite-term-repl";
- license = lib.licenses.free;
- };
- }) {};
- ample-regexps = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "ample-regexps";
- ename = "ample-regexps";
- version = "20151023.300";
- src = fetchFromGitHub {
- owner = "immerrr";
- repo = "ample-regexps.el";
- rev = "884c712a82773d3af500e71d20bebe52340352c5";
- sha256 = "18cicz11i19cpabrq6khnl9ks1khn6gw5a4ckaq4y65r40x0cr6g";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/6a5c72dfb52d55b2b22c91f115b32fff14f2f61e/recipes/ample-regexps";
- sha256 = "00y07pd438v7ldkn5f1w84cpxa1mvcnzjkj6sf5l5pm97xqiz7j2";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/ample-regexps";
- license = lib.licenses.free;
- };
- }) {};
- ample-theme = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "ample-theme";
- ename = "ample-theme";
- version = "20180207.945";
- src = fetchFromGitHub {
- owner = "jordonbiondo";
- repo = "ample-theme";
- rev = "366698400c555211c2082962a5d74f3dd79a78c8";
- sha256 = "1kzb15aqy7n2wxibmnihya7n6ajs34jxp9iin96n758nza92m59c";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/d448c03202137a461ed814ce87acfac23faf676e/recipes/ample-theme";
- sha256 = "055c6jy2q761za4cl1vlqdskcd3mc1j58k8b4418q7h2lv2zc0ry";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/ample-theme";
- license = lib.licenses.free;
- };
- }) {};
- ample-zen-theme = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "ample-zen-theme";
- ename = "ample-zen-theme";
- version = "20150119.1354";
- src = fetchFromGitHub {
- owner = "mjwall";
- repo = "ample-zen";
- rev = "b277bb7abd4b6624e8d59f02474b79af50a007bd";
- sha256 = "18z9jl5d19a132k6g1dvwqfbbdh5cx66b2qxlcjsfiqxlxglc2sa";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/b3b8c21f5dfbe9d4845a01548c8b7d9ddfe172a7/recipes/ample-zen-theme";
- sha256 = "0xygk80mh05qssrbfj4h6k50pg557dyj6kzc2pdlmnr5r4gnzdn3";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/ample-zen-theme";
- license = lib.licenses.free;
- };
- }) {};
amx = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -2533,31 +1816,6 @@
license = lib.licenses.free;
};
}) {};
- angry-police-captain = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "angry-police-captain";
- ename = "angry-police-captain";
- version = "20120829.552";
- src = fetchFromGitHub {
- owner = "rolpereira";
- repo = "angry-police-captain-el";
- rev = "d11931c5cb63368dcc4a48797962428cca6d3e9d";
- sha256 = "1m0c7ns7aiycg86cgglir8bkw730fslyg1n15m9ki0da4cnmm97a";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/angry-police-captain";
- sha256 = "00r3dx33h0wjxj0687ln8nbl1ff2badm3mk3r3bplfrd61z2qzld";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/angry-police-captain";
- license = lib.licenses.free;
- };
- }) {};
angular-mode = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -2610,34 +1868,6 @@
license = lib.licenses.free;
};
}) {};
- anki-editor = callPackage ({ dash
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , request }:
- melpaBuild {
- pname = "anki-editor";
- ename = "anki-editor";
- version = "20181230.2353";
- src = fetchFromGitHub {
- owner = "louietan";
- repo = "anki-editor";
- rev = "115ce2e2e62deb8dbca91fd84c7999ba80916c89";
- sha256 = "0njwsq03h36hqw55xk6n8225k52nlw1lq0mc9pzww2bf7dccjl9r";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/8155d649e4b129d0c72da6bb2b1aac66c8483491/recipes/anki-editor";
- sha256 = "18c5p82llq11vg1svqvbjrcnm7695nbbc6pwwl9jdjplasar585l";
- name = "recipe";
- };
- packageRequires = [ dash emacs request ];
- meta = {
- homepage = "https://melpa.org/#/anki-editor";
- license = lib.licenses.free;
- };
- }) {};
anki-mode = callPackage ({ dash
, emacs
, fetchFromGitHub
@@ -2693,31 +1923,6 @@
license = lib.licenses.free;
};
}) {};
- annotate-depth = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "annotate-depth";
- ename = "annotate-depth";
- version = "20160520.1340";
- src = fetchFromGitHub {
- owner = "netromdk";
- repo = "annotate-depth";
- rev = "fcb24fa36287250e40d195590c4ca4a8a696277b";
- sha256 = "18cav5wl3d0yq15273rqmdwvrgw96lmqiq9x5fxhf3wjb543mifl";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/bb37bd77aea642ca72d74112bdd8a02eab8d1a80/recipes/annotate-depth";
- sha256 = "1j1pwnj7k6gl1p4npxsgrib0j1rzisq40pkm2wchjh86j3ybv2l4";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/annotate-depth";
- license = lib.licenses.free;
- };
- }) {};
annoying-arrows-mode = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -2849,31 +2054,6 @@
license = lib.licenses.free;
};
}) {};
- ant = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "ant";
- ename = "ant";
- version = "20160211.743";
- src = fetchFromGitHub {
- owner = "apg";
- repo = "ant-el";
- rev = "510b5a3f57ee4b2855422d88d359a28922c1ab70";
- sha256 = "0jb5vl3cq5m3r23fjhcxgxl4g011zkjkkyn5mqqxx22a1sydsvab";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/ant";
- sha256 = "06028xjic14yv3rfqyc3k6jyjgm6fqfrf1mv8lvbh2sri2d5ifqa";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/ant";
- license = lib.licenses.free;
- };
- }) {};
anti-zenburn-theme = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -2899,56 +2079,6 @@
license = lib.licenses.free;
};
}) {};
- anx-api = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "anx-api";
- ename = "anx-api";
- version = "20140208.714";
- src = fetchFromGitHub {
- owner = "rmloveland";
- repo = "emacs-appnexus-api";
- rev = "b2411ebc966ac32c3ffc61bc22bf183834df0fa0";
- sha256 = "0fzxzar8m9qznfxv3wr7vfj9y2110wf6mm5cj55k3sd5djdjhmf1";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/2e3b329ff11818a1553c74a02475cb4110173076/recipes/anx-api";
- sha256 = "1vzg3wsqyfb9rsfxrpz8k2gazjlz2nwnf4gnn1dypsjspjnzcb8r";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/anx-api";
- license = lib.licenses.free;
- };
- }) {};
- anybar = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "anybar";
- ename = "anybar";
- version = "20160816.721";
- src = fetchFromGitHub {
- owner = "tie-rack";
- repo = "anybar-el";
- rev = "7a0743e0d31bcb36ab1bb2e351f3e7139c422ac5";
- sha256 = "1s7vnp2xzffdj4pqdqn6mrirw33ms0yqlpxzz5pwj6xrbp2x5r6s";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5516e309df9ac8bf0fafb9ec9037094d82913b67/recipes/anybar";
- sha256 = "0prnr8wjhishpf2zmn4b7054vfahk10w05nzsg2p6whaxywcachm";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/anybar";
- license = lib.licenses.free;
- };
- }) {};
anyins = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -3001,31 +2131,6 @@
license = lib.licenses.free;
};
}) {};
- aozora-view = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "aozora-view";
- ename = "aozora-view";
- version = "20140310.617";
- src = fetchFromGitHub {
- owner = "kawabata";
- repo = "aozora-view";
- rev = "b0390616d19e45f15f9a2f5d5688274831e721fd";
- sha256 = "0528z3axjmplg2fdbv4jxgy1p39vr4rnsm4a3ps2fanf8bwsyx3l";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/c6c13f8a0dd90c1c1f39711a5de69c1e0b785601/recipes/aozora-view";
- sha256 = "0pd2574a6dkhrfr0jf5gvv34ganp6ddylyb6cfpg2d4znwbc2r2w";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/aozora-view";
- license = lib.licenses.free;
- };
- }) {};
apache-mode = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -3051,31 +2156,6 @@
license = lib.licenses.free;
};
}) {};
- apel = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "apel";
- ename = "apel";
- version = "20190407.356";
- src = fetchFromGitHub {
- owner = "wanderlust";
- repo = "apel";
- rev = "d146ddbf8818e81d3577d5eee7825d377bec0c73";
- sha256 = "04ic76gzn3m4rnmm2xjc72vrxazxjvsjabd3lbxvwj6c1fb11fnw";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/4976446a8ae40980d502186615902fc05c15ec7c/recipes/apel";
- sha256 = "0zrm8m66p3aqr0108s3cj6z4xqbg2hx37z1pam4c65bqlhh74s8y";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/apel";
- license = lib.licenses.free;
- };
- }) {};
apib-mode = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -3153,31 +2233,6 @@
license = lib.licenses.free;
};
}) {};
- applescript-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "applescript-mode";
- ename = "applescript-mode";
- version = "20090320.2332";
- src = fetchFromGitHub {
- owner = "ieure";
- repo = "applescript-mode";
- rev = "8f888cd80af1e0902b5609143facd3051bc94892";
- sha256 = "0d3bqx6346vmniv001jgd6wggp80kv1kqc38sdgd88862gkqnqyg";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/576e42b33a5245e1aae0f0d879fd18762342db32/recipes/applescript-mode";
- sha256 = "0rj03xw8yx79xj9ahdwfxicxna0a0lykn2n39xng5gnm4bh2n6z4";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/applescript-mode";
- license = lib.licenses.free;
- };
- }) {};
aproject = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -3228,111 +2283,6 @@
license = lib.licenses.free;
};
}) {};
- apt-sources-list = callPackage ({ emacs
- , fetchgit
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "apt-sources-list";
- ename = "apt-sources-list";
- version = "20180527.541";
- src = fetchgit {
- url = "https://git.korewanetadesu.com/apt-sources-list.git";
- rev = "44112833b3fa7f4d7e43708e5996782e22bb2fa3";
- sha256 = "0av8v9ibqws5vb2sg3bfk0g1pyraqjgwmcg2n23whmpbl5xdnh6k";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/141a22e593415302d64cf8ebd2635a1baf35eb38/recipes/apt-sources-list";
- sha256 = "1gnl6zqv6imk2qpv4lj7qyjgf1ldxib3k14gsmwqm0c1zwjsid3j";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/apt-sources-list";
- license = lib.licenses.free;
- };
- }) {};
- arc-dark-theme = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "arc-dark-theme";
- ename = "arc-dark-theme";
- version = "20190314.932";
- src = fetchFromGitHub {
- owner = "cfraz89";
- repo = "arc-dark-theme";
- rev = "ee17dcca35dd0304145efc468b3f25af6907a59d";
- sha256 = "0cfj5c6rz68095wxs8m733lwc5ymbgi5v82drxhjqcascvrdr1v1";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/f8c9060669b262f0588643bd8758edac578834bc/recipes/arc-dark-theme";
- sha256 = "0a61kxdyzm6gf8gf8fniqz5mqkxk24k8hpxww3996v9mqs1bn05s";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/arc-dark-theme";
- license = lib.licenses.free;
- };
- }) {};
- arch-packer = callPackage ({ async
- , dash
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , s }:
- melpaBuild {
- pname = "arch-packer";
- ename = "arch-packer";
- version = "20170730.621";
- src = fetchFromGitHub {
- owner = "brotzeit";
- repo = "arch-packer";
- rev = "940e96f7d357c6570b675a0f942181c787f1bfd7";
- sha256 = "0m80ka51m7a1797q6br41x96znvqfmpwzh3vk4mz66mdx2r4xk77";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/6d1796688ed0d6957557d960ca28e450f9bcb6cf/recipes/arch-packer";
- sha256 = "04kv22vpcpjhc047yz6k6dizmwwdjk6vcm8imri76gi9ns1w5n5z";
- name = "recipe";
- };
- packageRequires = [ async dash emacs s ];
- meta = {
- homepage = "https://melpa.org/#/arch-packer";
- license = lib.licenses.free;
- };
- }) {};
- archive-region = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "archive-region";
- ename = "archive-region";
- version = "20140201.1542";
- src = fetchFromGitHub {
- owner = "rubikitch";
- repo = "archive-region";
- rev = "0d357d4c42a6a248c457f358f81b20fd20fede2f";
- sha256 = "03pmwgvlxxlp4wh0sg5czpx1i88i43lz8lwdbfa6l28g1sv0f264";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/f8e4328cae9b4759a75da0b26ea8b68821bc71af/recipes/archive-region";
- sha256 = "1aiz6a0vdc2zm2q5r80cj5xixqfhsgmr7ldj9ff40k4sf3z5xny3";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/archive-region";
- license = lib.licenses.free;
- };
- }) {};
archive-rpm = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -3359,111 +2309,6 @@
license = lib.licenses.free;
};
}) {};
- arduino-mode = callPackage ({ cl-lib ? null
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , spinner }:
- melpaBuild {
- pname = "arduino-mode";
- ename = "arduino-mode";
- version = "20180508.1736";
- src = fetchFromGitHub {
- owner = "stardiviner";
- repo = "arduino-mode";
- rev = "8805fe64ea6aba51dacb0d8c9e8e2ca2cac3ccf9";
- sha256 = "1sg6n4ys5lq2m7q876qi88r11c08y05ggyv9r85ahins2pbgbv95";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/2db785f52c2facc55459e945ccb4d4b088506747/recipes/arduino-mode";
- sha256 = "1amqah0sx95866ikdlc7h7n9hmrwaqizc0rj0gliv15kjjggv55v";
- name = "recipe";
- };
- packageRequires = [ cl-lib emacs spinner ];
- meta = {
- homepage = "https://melpa.org/#/arduino-mode";
- license = lib.licenses.free;
- };
- }) {};
- aria2 = callPackage ({ emacs
- , fetchFromGitLab
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "aria2";
- ename = "aria2";
- version = "20141107.1517";
- src = fetchFromGitLab {
- owner = "ukaszg";
- repo = "aria2";
- rev = "3c54254e424c6c8b4eb0d8e7c4907b094c27a3f0";
- sha256 = "1xkgz3l7idw5bk1xlffdaddf5v1q6fm3grbryl4xvssrbwgnyisf";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/89a55e7c313066ae1bc0db0af5c289814c85fcb1/recipes/aria2";
- sha256 = "1gsqdqs3q86k7q88rf7qamc0sp5ca00xn9kr1r717vf6qq6a0c3c";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/aria2";
- license = lib.licenses.free;
- };
- }) {};
- ariadne = callPackage ({ bert
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "ariadne";
- ename = "ariadne";
- version = "20131117.911";
- src = fetchFromGitHub {
- owner = "manzyuk";
- repo = "ariadne-el";
- rev = "6fe401c7f996bcbc2f685e7971324c6f5e5eaf15";
- sha256 = "0vh9wfc3657sd12ybjcrxpg6f757x2ghkcl1lw01szmyy5vmj27h";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/89635cd11621b04a8575629ec1bf196fb3ea5d43/recipes/ariadne";
- sha256 = "0lfhving19wcfr40gjb2gnginiz8cncixiyyxhwx08lm84qb3a7p";
- name = "recipe";
- };
- packageRequires = [ bert ];
- meta = {
- homepage = "https://melpa.org/#/ariadne";
- license = lib.licenses.free;
- };
- }) {};
- arjen-grey-theme = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "arjen-grey-theme";
- ename = "arjen-grey-theme";
- version = "20170522.1347";
- src = fetchFromGitHub {
- owner = "credmp";
- repo = "arjen-grey-theme";
- rev = "4cd0be72b65d42390e2105cfdaa408a1ead8d8d1";
- sha256 = "1n5axwn498ahb6984ir1zfl8vvwgbvq9bbrdfzydkmjljhgrp0rd";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/ed9804061cfadd26c69bb1bfe63dbe22f916f723/recipes/arjen-grey-theme";
- sha256 = "18q66f7hhys2ab9ljsdp9013mp7d6v6d1lrb0d1bb035r1b4pfj7";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/arjen-grey-theme";
- license = lib.licenses.free;
- };
- }) {};
artbollocks-mode = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -3541,33 +2386,6 @@
license = lib.licenses.free;
};
}) {};
- asn1-mode = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , s }:
- melpaBuild {
- pname = "asn1-mode";
- ename = "asn1-mode";
- version = "20170728.1926";
- src = fetchFromGitHub {
- owner = "kawabata";
- repo = "asn1-mode";
- rev = "d5d4a8259daf708411699bcea85d322f18beb972";
- sha256 = "067khpi4ghzyifrk1vhi57n3alp67qks4k4km11hasiavi5gsjmp";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/b694baceceb54810be8f8c7152b2ac0b4063f01c/recipes/asn1-mode";
- sha256 = "0iswisb08dqz7jc5ra4wcdhbmglildgyrb547dm5362xmvm9ifmy";
- name = "recipe";
- };
- packageRequires = [ emacs s ];
- meta = {
- homepage = "https://melpa.org/#/asn1-mode";
- license = lib.licenses.free;
- };
- }) {};
assess = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -3620,58 +2438,6 @@
license = lib.licenses.free;
};
}) {};
- async-await = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , promise }:
- melpaBuild {
- pname = "async-await";
- ename = "async-await";
- version = "20170208.350";
- src = fetchFromGitHub {
- owner = "chuntaro";
- repo = "emacs-async-await";
- rev = "da472e38bb7b8eaeea3f81ffd13e4006c31e9e6f";
- sha256 = "02mqlf07bq24c4gg12zgyyg3a3dqnwygxkm70w7ziwr6hv05kzdh";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/9d74ecf94e5dbb46a939d26833b7cd0efd159ca1/recipes/async-await";
- sha256 = "1534rhr4j74qbndafdj9q2wggcn8gphhjn3id8p27wyxr5sh93ms";
- name = "recipe";
- };
- packageRequires = [ emacs promise ];
- meta = {
- homepage = "https://melpa.org/#/async-await";
- license = lib.licenses.free;
- };
- }) {};
- atom-dark-theme = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "atom-dark-theme";
- ename = "atom-dark-theme";
- version = "20181022.902";
- src = fetchFromGitHub {
- owner = "whitlockjc";
- repo = "atom-dark-theme-emacs";
- rev = "5c8610d0b45a536b8f7f9777297c86362685a357";
- sha256 = "15mjn5z7f7x8k4lbab5xv2r88s9ch9b58znv6vwpqakp63rx8hsx";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/d1f565871559d6ea4ca4bb2fbaebce58f2f383eb/recipes/atom-dark-theme";
- sha256 = "1ci61blm7wc83wm2iyax017ai4jljyag5j1mvw86rimmmjzr0v8f";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/atom-dark-theme";
- license = lib.licenses.free;
- };
- }) {};
atom-one-dark-theme = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -3781,58 +2547,6 @@
license = lib.licenses.free;
};
}) {};
- auctex-lua = callPackage ({ auctex
- , fetchFromGitHub
- , fetchurl
- , lib
- , lua-mode
- , melpaBuild }:
- melpaBuild {
- pname = "auctex-lua";
- ename = "auctex-lua";
- version = "20151121.810";
- src = fetchFromGitHub {
- owner = "vermiculus";
- repo = "auctex-lua";
- rev = "799cd8ac10c96991bb63d9aa60528ae5d8c786b5";
- sha256 = "0lgfgvnaln5rhhwgcrzwrhbj0gz8sgaf6xxdl7njf3sa6bfgngsz";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/102c7b05f5bfff12ac2820cae58c0205ca450559/recipes/auctex-lua";
- sha256 = "0v999jvinljkvhbn205p36a6jfzppn0xvflvzr8mid1hnqlrpjhf";
- name = "recipe";
- };
- packageRequires = [ auctex lua-mode ];
- meta = {
- homepage = "https://melpa.org/#/auctex-lua";
- license = lib.licenses.free;
- };
- }) {};
- audio-notes-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "audio-notes-mode";
- ename = "audio-notes-mode";
- version = "20170611.1459";
- src = fetchFromGitHub {
- owner = "Malabarba";
- repo = "audio-notes-mode";
- rev = "fa38350829c7e97257efc746a010471d33748a68";
- sha256 = "1srg6rg3j9ri2cyr4g78dfqq3fhpn6hf3mq4iz2jfqjayppfv38b";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1e6aed365c42987d64d0cd9a8a6178339b1b39e8/recipes/audio-notes-mode";
- sha256 = "0q88xmi7jbrx47nvbbmwggbm6i7agzpnv5y7cpdh73lg165xsz2h";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/audio-notes-mode";
- license = lib.licenses.free;
- };
- }) {};
aurel = callPackage ({ bui
, dash
, emacs
@@ -3912,58 +2626,6 @@
license = lib.licenses.free;
};
}) {};
- auto-async-byte-compile = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "auto-async-byte-compile";
- ename = "auto-async-byte-compile";
- version = "20160915.2154";
- src = fetchFromGitHub {
- owner = "rubikitch";
- repo = "auto-async-byte-compile";
- rev = "8681e74ddb8481789c5dbb3cafabb327db4c4484";
- sha256 = "1g98gla9qdqmifsxakhkbxlljy2ln1s3wfahk9zycrwgzfjlsdf4";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/f8e4328cae9b4759a75da0b26ea8b68821bc71af/recipes/auto-async-byte-compile";
- sha256 = "0ks6xsxzayiyd0jl8m36xlc5p57p21qbhgq2mmz50a2lhpxxfiyg";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/auto-async-byte-compile";
- license = lib.licenses.free;
- };
- }) {};
- auto-auto-indent = callPackage ({ cl-lib ? null
- , es-lib
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "auto-auto-indent";
- ename = "auto-auto-indent";
- version = "20131106.1103";
- src = fetchFromGitHub {
- owner = "sabof";
- repo = "auto-auto-indent";
- rev = "0139378577f936d34b20276af6f022fb457af490";
- sha256 = "1whbvqylwnxg8d8gn55kcky39rgyc49rakyxlbkplh813lk6lxb7";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/2ad2ea105b895cb958ce0ab2bf2fad2b40d41b2f/recipes/auto-auto-indent";
- sha256 = "08s73pnyrmklb660jl5rshncpq31z3m9fl55v7453ch8syp7gzh7";
- name = "recipe";
- };
- packageRequires = [ cl-lib es-lib ];
- meta = {
- homepage = "https://melpa.org/#/auto-auto-indent";
- license = lib.licenses.free;
- };
- }) {};
auto-compile = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -4018,111 +2680,6 @@
license = lib.licenses.free;
};
}) {};
- auto-complete-auctex = callPackage ({ auto-complete
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , yasnippet }:
- melpaBuild {
- pname = "auto-complete-auctex";
- ename = "auto-complete-auctex";
- version = "20140223.958";
- src = fetchFromGitHub {
- owner = "monsanto";
- repo = "auto-complete-auctex";
- rev = "855633f668bcc4b9408396742a7cb84e0c4a2f77";
- sha256 = "1wri8q5llpy1q1h4ac4kjnnkgj6fby8i9vrpr6mrb13d4gnk4gr2";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/77167fb2e84bed32ace9490c1ed4148719e4cf8e/recipes/auto-complete-auctex";
- sha256 = "00npvryds5wd3d5a13r9prlvw6vvjlag8d32x5xf9bfmmvs0fgqh";
- name = "recipe";
- };
- packageRequires = [ auto-complete yasnippet ];
- meta = {
- homepage = "https://melpa.org/#/auto-complete-auctex";
- license = lib.licenses.free;
- };
- }) {};
- auto-complete-c-headers = callPackage ({ auto-complete
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "auto-complete-c-headers";
- ename = "auto-complete-c-headers";
- version = "20150911.2023";
- src = fetchFromGitHub {
- owner = "mooz";
- repo = "auto-complete-c-headers";
- rev = "52fef720c6f274ad8de52bef39a343421006c511";
- sha256 = "12mzi6bwg702sp0f0wd1ag555blbpk252rr9rqs03bn8pkw89h4n";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/0174b70fec45ddec9c1e9555adc82fef59054135/recipes/auto-complete-c-headers";
- sha256 = "02pkrxvzrpyjrr2fkxnl1qw06aspzv8jlp2c1piln6zcjd92l3j7";
- name = "recipe";
- };
- packageRequires = [ auto-complete ];
- meta = {
- homepage = "https://melpa.org/#/auto-complete-c-headers";
- license = lib.licenses.free;
- };
- }) {};
- auto-complete-chunk = callPackage ({ auto-complete
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "auto-complete-chunk";
- ename = "auto-complete-chunk";
- version = "20140225.146";
- src = fetchFromGitHub {
- owner = "tkf";
- repo = "auto-complete-chunk";
- rev = "a9aa77ffb84a1037984a7ce4dda25074272f13fe";
- sha256 = "1zhbpxpl443ghpkl9i68jcjfcw1vnf8ky06pf5qjjmqbxlcyd9li";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/306e2528638d97c28372df55a9376750d3fde1d4/recipes/auto-complete-chunk";
- sha256 = "1937j1xm20vfcqm9ig4nvciqfkz7rpw0nsfhlg69gkmv0nqszdr3";
- name = "recipe";
- };
- packageRequires = [ auto-complete ];
- meta = {
- homepage = "https://melpa.org/#/auto-complete-chunk";
- license = lib.licenses.free;
- };
- }) {};
- auto-complete-clang = callPackage ({ auto-complete
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "auto-complete-clang";
- ename = "auto-complete-clang";
- version = "20140409.52";
- src = fetchFromGitHub {
- owner = "brianjcj";
- repo = "auto-complete-clang";
- rev = "a195db1d0593b4fb97efe50885e12aa6764d998c";
- sha256 = "12y6f47xbjl4gy14j2f5wlisy5vl6rhx74n27w61pjv38m0a7mi1";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/eab7d88a893fdf76c22f0aa5ac3577efd60fc9b4/recipes/auto-complete-clang";
- sha256 = "1rnmphl7ml5ryjl5ka2l58hddir8b34iz1rm905wdwh164piljva";
- name = "recipe";
- };
- packageRequires = [ auto-complete ];
- meta = {
- homepage = "https://melpa.org/#/auto-complete-clang";
- license = lib.licenses.free;
- };
- }) {};
auto-complete-clang-async = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -4148,33 +2705,6 @@
license = lib.licenses.free;
};
}) {};
- auto-complete-distel = callPackage ({ auto-complete
- , distel-completion-lib
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "auto-complete-distel";
- ename = "auto-complete-distel";
- version = "20180827.644";
- src = fetchFromGitHub {
- owner = "sebastiw";
- repo = "distel-completion";
- rev = "acc4c0a5521904203d797fe96b08e5fae4233c7e";
- sha256 = "0yvp3dwa9mwfyrqla27ycwyjad4bp1267bxv0chxcr4528hnygl3";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/90fff35dd9709b06802edef89d1fe6a96b7115a6/recipes/auto-complete-distel";
- sha256 = "0ca242gl8dl4rmg8qqyhgxvf46fprl2npbq2w8f6s546s9nql4jk";
- name = "recipe";
- };
- packageRequires = [ auto-complete distel-completion-lib ];
- meta = {
- homepage = "https://melpa.org/#/auto-complete-distel";
- license = lib.licenses.free;
- };
- }) {};
auto-complete-exuberant-ctags = callPackage ({ auto-complete
, fetchFromGitHub
, fetchurl
@@ -4255,32 +2785,6 @@
license = lib.licenses.free;
};
}) {};
- auto-complete-rst = callPackage ({ auto-complete
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "auto-complete-rst";
- ename = "auto-complete-rst";
- version = "20140225.144";
- src = fetchFromGitHub {
- owner = "tkf";
- repo = "auto-complete-rst";
- rev = "4803ce41a96224e6fa54e6741a5b5f40ebed7351";
- sha256 = "107svb82cgfns9kcrmy3hh56cab81782jkbz5i9959ms81xizfb8";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/4c948dc47f67aa47a1607cbdacdc95241d1a658f/recipes/auto-complete-rst";
- sha256 = "0dazkpnzzr0imb2a01qq8l60jxhhlknzjx7wccnbm7d2rk3338m6";
- name = "recipe";
- };
- packageRequires = [ auto-complete ];
- meta = {
- homepage = "https://melpa.org/#/auto-complete-rst";
- license = lib.licenses.free;
- };
- }) {};
auto-complete-sage = callPackage ({ auto-complete
, fetchFromGitHub
, fetchurl
@@ -4333,56 +2837,6 @@
license = lib.licenses.free;
};
}) {};
- auto-dim-other-buffers = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "auto-dim-other-buffers";
- ename = "auto-dim-other-buffers";
- version = "20180612.1641";
- src = fetchFromGitHub {
- owner = "mina86";
- repo = "auto-dim-other-buffers.el";
- rev = "ec74b4803adeadf06296c84595fb6ccf4e1b4a3f";
- sha256 = "0l08kx12k97nag8khb63rz5fl1r9gahgmjg5073h25lypl74895n";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/acc9b816796b9f142c53f90593952b43c962d2d8/recipes/auto-dim-other-buffers";
- sha256 = "0n9d23sfcmkjfqlm80vrgf856wy08ak4n4rk0z7vadq07yj46zxh";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/auto-dim-other-buffers";
- license = lib.licenses.free;
- };
- }) {};
- auto-highlight-symbol = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "auto-highlight-symbol";
- ename = "auto-highlight-symbol";
- version = "20130313.243";
- src = fetchFromGitHub {
- owner = "gennad";
- repo = "auto-highlight-symbol";
- rev = "26573de912d760e04321b350897aea70958cee8b";
- sha256 = "0jfiax1qqnyznhlnqkjsr9nnv7fpjywvfhj9jq59460j0nbrgs5c";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/fdf73ee62f0a4e762e3a1aa94284abea8da8ce7c/recipes/auto-highlight-symbol";
- sha256 = "02mkji4sxym07jf5ww5kgv1c18x0xdfn8cmvgns5h4gij64lnr66";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/auto-highlight-symbol";
- license = lib.licenses.free;
- };
- }) {};
auto-indent-mode = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -4434,32 +2888,6 @@
license = lib.licenses.free;
};
}) {};
- auto-org-md = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "auto-org-md";
- ename = "auto-org-md";
- version = "20180213.1543";
- src = fetchFromGitHub {
- owner = "jamcha-aa";
- repo = "auto-org-md";
- rev = "9318338bdb7fe8bd698d88f3af89b2d6413efdd2";
- sha256 = "1dzxc1f4yvj8xww5drcpzmn3fyi8ziimh1cmy6l3i399l1zl0njj";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/39f934f86b5dc04078c204bcbd268af60857e268/recipes/auto-org-md";
- sha256 = "1yh9g8407kym6r0b8kr18qshxlrkw47ac17a9lvql0ksshfmnqvk";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/auto-org-md";
- license = lib.licenses.free;
- };
- }) {};
auto-package-update = callPackage ({ dash
, emacs
, fetchFromGitHub
@@ -4487,109 +2915,6 @@
license = lib.licenses.free;
};
}) {};
- auto-pause = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "auto-pause";
- ename = "auto-pause";
- version = "20160426.516";
- src = fetchFromGitHub {
- owner = "lujun9972";
- repo = "auto-pause";
- rev = "a4d778de774ca3895542cb559a953e0d98657338";
- sha256 = "1pxhqwvg059pslin6z87jd8d0q44ljwvdn6y23ffrz9kfpn3m5m2";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/275d1b1bf1eb47cd9c769286c03b2b9aff9d74dd/recipes/auto-pause";
- sha256 = "0cdak2kicxylj5f161kia0bzzqad426y8cj4zf04gcl0nndijyrc";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/auto-pause";
- license = lib.licenses.free;
- };
- }) {};
- auto-read-only = callPackage ({ cl-lib ? null
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "auto-read-only";
- ename = "auto-read-only";
- version = "20170305.2043";
- src = fetchFromGitHub {
- owner = "zonuexe";
- repo = "auto-read-only.el";
- rev = "20e26d9eb017e6ab61fbd53f2ac2511b0afe3446";
- sha256 = "140w3gdbvyajy9rq82mc24mk7zsvhq4wc8yrrdwlzhzmqaflcz76";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/189e394eb9fac09783c75ff1b64facdd745a0454/recipes/auto-read-only";
- sha256 = "1cvh2c7pgdxgnl0fr1lymz9pf573hj6dn8cjcb64wdczkrci7yk5";
- name = "recipe";
- };
- packageRequires = [ cl-lib ];
- meta = {
- homepage = "https://melpa.org/#/auto-read-only";
- license = lib.licenses.free;
- };
- }) {};
- auto-rename-tag = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "auto-rename-tag";
- ename = "auto-rename-tag";
- version = "20181215.2324";
- src = fetchFromGitHub {
- owner = "jcs090218";
- repo = "auto-rename-tag";
- rev = "00080e323addaaca560842feb87ca688e7a3d9b6";
- sha256 = "1pksqhfw3np7lkw0xjhpsq3zv3zbxmq3561g77n2c503qyzjpmx8";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/edf44f990306d9edba7054cb8f530208e53d69bc/recipes/auto-rename-tag";
- sha256 = "058fn84sw15kdyxgnjzdi4lq6s9xg63cw8vzparh6km3xf2pqw0x";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/auto-rename-tag";
- license = lib.licenses.free;
- };
- }) {};
- auto-save-buffers-enhanced = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "auto-save-buffers-enhanced";
- ename = "auto-save-buffers-enhanced";
- version = "20161108.2310";
- src = fetchFromGitHub {
- owner = "kentaro";
- repo = "auto-save-buffers-enhanced";
- rev = "461e8c816c1b7c650be5f209078b381fe55da8c6";
- sha256 = "0ckjijjpqpbv9yrqfnl3x9hcdwwdgvm5r2vyx1a9nk4d3i0hd9i5";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/d221a217e9f6a686fa2a8b120a1f0b43c4482ce6/recipes/auto-save-buffers-enhanced";
- sha256 = "123vf6nnvdhrrfjn8n8h8a11mkqmy2zm3w3yn99np0zj31x8z7bb";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/auto-save-buffers-enhanced";
- license = lib.licenses.free;
- };
- }) {};
auto-shell-command = callPackage ({ deferred
, fetchFromGitHub
, fetchurl
@@ -4617,89 +2942,6 @@
license = lib.licenses.free;
};
}) {};
- auto-sudoedit = callPackage ({ emacs
- , f
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "auto-sudoedit";
- ename = "auto-sudoedit";
- version = "20180915.6";
- src = fetchFromGitHub {
- owner = "ncaq";
- repo = "auto-sudoedit";
- rev = "16bfa23e6d9c30968a6b6364ada17c88138255f3";
- sha256 = "1f2rqi5nqa40lgcsnbxk9r4dzn6kcachh3qjv76lm9lzyc41c8ln";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/7cf6bc8bb7b618d74427622b9b2812daa79a3767/recipes/auto-sudoedit";
- sha256 = "1clp52fqxsilyi62p1cabhan55lbwax6fqlhccyjbl36yrdig3fh";
- name = "recipe";
- };
- packageRequires = [ emacs f ];
- meta = {
- homepage = "https://melpa.org/#/auto-sudoedit";
- license = lib.licenses.free;
- };
- }) {};
- auto-virtualenv = callPackage ({ cl-lib ? null
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , pyvenv
- , s }:
- melpaBuild {
- pname = "auto-virtualenv";
- ename = "auto-virtualenv";
- version = "20170125.1117";
- src = fetchFromGitHub {
- owner = "marcwebbie";
- repo = "auto-virtualenv";
- rev = "fd98a2d34cb6828e59317a50f8763ee1fd672b00";
- sha256 = "1fsigqngd9a2zkkwzz86ynpr8gvm56329clw8zb8vq0058rdxsjk";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/ccb91515d9a8195061429ed8df3471867d211f9a/recipes/auto-virtualenv";
- sha256 = "0xv51g74l5pxa3s185867dpc98m6y26xbj5wgz7f9177qchvdbhk";
- name = "recipe";
- };
- packageRequires = [ cl-lib pyvenv s ];
- meta = {
- homepage = "https://melpa.org/#/auto-virtualenv";
- license = lib.licenses.free;
- };
- }) {};
- auto-virtualenvwrapper = callPackage ({ cl-lib ? null
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , s
- , virtualenvwrapper }:
- melpaBuild {
- pname = "auto-virtualenvwrapper";
- ename = "auto-virtualenvwrapper";
- version = "20181006.237";
- src = fetchFromGitHub {
- owner = "robert-zaremba";
- repo = "auto-virtualenvwrapper.el";
- rev = "72cc9168db475e8328019f9592493560dab832a5";
- sha256 = "1cvc2k5x0ircnpppwwmm813h7c59pyswz4dfgwqqrk325zcnp80f";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/02a209ae8f9fc68feb3bb64d32d129fedef2b80b/recipes/auto-virtualenvwrapper";
- sha256 = "1v82z922d9sadwvyrl4iddsa19f5k43s6iwn8w146jcl0v42bkmd";
- name = "recipe";
- };
- packageRequires = [ cl-lib s virtualenvwrapper ];
- meta = {
- homepage = "https://melpa.org/#/auto-virtualenvwrapper";
- license = lib.licenses.free;
- };
- }) {};
auto-yasnippet = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -4726,33 +2968,6 @@
license = lib.licenses.free;
};
}) {};
- autobookmarks = callPackage ({ cl-lib ? null
- , dash
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "autobookmarks";
- ename = "autobookmarks";
- version = "20180531.1206";
- src = fetchFromGitHub {
- owner = "Fuco1";
- repo = "autobookmarks";
- rev = "e971aa49d97da9f7ed760b37e0b674e45f1c5673";
- sha256 = "04453h3s9g7ka028s4f97z606czq3vsvphrmba533jkl8lk3hpi8";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/e40e6ebeb30b3f23ad37a695e011431a48c5a62e/recipes/autobookmarks";
- sha256 = "11zhg3y9fb5mq67fwsnjrql9mnwkp3hwib7fpllb3yyf2yywc8zp";
- name = "recipe";
- };
- packageRequires = [ cl-lib dash ];
- meta = {
- homepage = "https://melpa.org/#/autobookmarks";
- license = lib.licenses.free;
- };
- }) {};
autodisass-java-bytecode = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -4803,31 +3018,6 @@
license = lib.licenses.free;
};
}) {};
- automargin = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "automargin";
- ename = "automargin";
- version = "20131112.14";
- src = fetchFromGitHub {
- owner = "zk-phi";
- repo = "automargin";
- rev = "f0dce37b7ece368dd805e03b5e2af6e571038bc6";
- sha256 = "0p95kszsllkj11dyn9vq9ycp8mlir2mzh80gj5kwmkvd10s2s3c6";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/0937e63ec686cc3e183bddb029a514c64934fc81/recipes/automargin";
- sha256 = "0llqz01wmacc0f8j3h7r0j57vkmzksl9vj1h0igfxzpm347mm9q8";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/automargin";
- license = lib.licenses.free;
- };
- }) {};
autopair = callPackage ({ cl-lib ? null
, fetchFromGitHub
, fetchurl
@@ -4854,57 +3044,6 @@
license = lib.licenses.free;
};
}) {};
- autotest = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "autotest";
- ename = "autotest";
- version = "20190331.1530";
- src = fetchFromGitHub {
- owner = "zenspider";
- repo = "elisp";
- rev = "b59013510006294b5e7623522f620d5cbac95cf3";
- sha256 = "06ij30gvpf7244xsdv14qdb86nqqahfrr20gafla764w6r1il62z";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5fc2c4a590cbeccfb43003972a78f5d76ec4a9e7/recipes/autotest";
- sha256 = "0f46m5pc40i531dzfnhkcn192dcs1q20y083c1c0wg2zhjcdr5iy";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/autotest";
- license = lib.licenses.free;
- };
- }) {};
- autotetris-mode = callPackage ({ cl-lib ? null
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "autotetris-mode";
- ename = "autotetris-mode";
- version = "20141114.846";
- src = fetchFromGitHub {
- owner = "skeeto";
- repo = "autotetris-mode";
- rev = "7d348d33829bc89ddbd2b4d5cfe5073c3b0cbaaa";
- sha256 = "14pjsb026mgjf6l3dggy255knr7c1vfmgb6kgafmkzvr96aglcdc";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/4c5c698b7dfb179f43b9fdf4652b96e2d7f8e7c6/recipes/autotetris-mode";
- sha256 = "0k4yq4pvrs1zaf9aqxmlb6l2v4k774zbxj4zcx49w3l1h8gwxpbb";
- name = "recipe";
- };
- packageRequires = [ cl-lib ];
- meta = {
- homepage = "https://melpa.org/#/autotetris-mode";
- license = lib.licenses.free;
- };
- }) {};
autothemer = callPackage ({ cl-lib ? null
, dash
, emacs
@@ -4933,81 +3072,6 @@
license = lib.licenses.free;
};
}) {};
- autumn-light-theme = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "autumn-light-theme";
- ename = "autumn-light-theme";
- version = "20150515.747";
- src = fetchFromGitHub {
- owner = "aalpern";
- repo = "emacs-color-theme-autumn-light";
- rev = "26a52a79e7fff401af6d24c4365bb4a250c1136a";
- sha256 = "0nc71mxp57h5dnd1vrgc9vh0lrjzq5mfm8li4b11l2gpnbv4s4wi";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/52a7598dc550c76f4e081fe1c4a6d8697bd30561/recipes/autumn-light-theme";
- sha256 = "0g3wqv1yw3jycq30mcj3w4sn9nj6i6gyd2ljzimf547ggcai536a";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/autumn-light-theme";
- license = lib.licenses.free;
- };
- }) {};
- avandu = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "avandu";
- ename = "avandu";
- version = "20170101.1103";
- src = fetchFromGitHub {
- owner = "ryuslash";
- repo = "avandu";
- rev = "f44588d8e747fa880411cb4542cc39962252b90a";
- sha256 = "097wls9k6qrf12nn8mpszfbqsaqc81956yqxns1sjs6dmjqi0c7z";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/e1344e49e6a41ce390a047cb8d48090160b37b50/recipes/avandu";
- sha256 = "174bd3vbvh0l9282bg8575nqc71zkg90bwbxbv1b7dz8qaaczhcy";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/avandu";
- license = lib.licenses.free;
- };
- }) {};
- avk-emacs-themes = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "avk-emacs-themes";
- ename = "avk-emacs-themes";
- version = "20181127.2345";
- src = fetchFromGitHub {
- owner = "avkoval";
- repo = "avk-emacs-themes";
- rev = "cadbfb4c9cd6812d63b69076a9d90514bfd2db66";
- sha256 = "07isy168fnvyy25z1wwyr6740bmwmff6c3yfcdy7dnypcj9whllr";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/ef362a76a3881c7596dcc2639df588227b3713c0/recipes/avk-emacs-themes";
- sha256 = "0yimnfm50qsq505fc67b3qnxx2aiyz5a7bw87zkjrdnar12vv144";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/avk-emacs-themes";
- license = lib.licenses.free;
- };
- }) {};
avy = callPackage ({ cl-lib ? null
, emacs
, fetchFromGitHub
@@ -5035,35 +3099,6 @@
license = lib.licenses.free;
};
}) {};
- avy-flycheck = callPackage ({ avy
- , emacs
- , fetchFromGitHub
- , fetchurl
- , flycheck
- , lib
- , melpaBuild
- , seq }:
- melpaBuild {
- pname = "avy-flycheck";
- ename = "avy-flycheck";
- version = "20160720.800";
- src = fetchFromGitHub {
- owner = "magicdirac";
- repo = "avy-flycheck";
- rev = "5522f3bbbed1801d9278ed696ec0cbba38352985";
- sha256 = "1nwc8xid0k6bnnpgsrrlwx71a04llkiapjsbchp9jgcf11l5mghw";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/05755bed49219072d2ec98f0be5ecba4deda7cd1/recipes/avy-flycheck";
- sha256 = "0xvgysbx8yxhypms6639kk3cn0x6y6njnhnn9lf6hxsi96wd9y96";
- name = "recipe";
- };
- packageRequires = [ avy emacs flycheck seq ];
- meta = {
- homepage = "https://melpa.org/#/avy-flycheck";
- license = lib.licenses.free;
- };
- }) {};
avy-menu = callPackage ({ avy
, emacs
, fetchFromGitHub
@@ -5145,85 +3180,6 @@
license = lib.licenses.free;
};
}) {};
- aws-ec2 = callPackage ({ dash
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , tblui }:
- melpaBuild {
- pname = "aws-ec2";
- ename = "aws-ec2";
- version = "20161007.1214";
- src = fetchFromGitHub {
- owner = "Yuki-Inoue";
- repo = "aws.el";
- rev = "5601d4f268fc34b86a02ca90cde7d3771619a368";
- sha256 = "15idbbxsghzn737s9jppnx820nnm1srcl1418458hwfy3wqhq38g";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/90ac00160cbf692baa1f3953122ac828356944e0/recipes/aws-ec2";
- sha256 = "040c69g8rhpcmrdjjg4avdmqarxx3dfzylmz62yxhfpn02qh48xd";
- name = "recipe";
- };
- packageRequires = [ dash emacs tblui ];
- meta = {
- homepage = "https://melpa.org/#/aws-ec2";
- license = lib.licenses.free;
- };
- }) {};
- aws-snippets = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , yasnippet }:
- melpaBuild {
- pname = "aws-snippets";
- ename = "aws-snippets";
- version = "20180410.845";
- src = fetchFromGitHub {
- owner = "baron42bba";
- repo = "aws-snippets";
- rev = "a2ebae582a8c8a5f5f16dbc42ecd2ded9d70fca8";
- sha256 = "08mbi5g321n4ir7a7ggxmh7qpl8pr06pg4rcsk8pklylvkf89k2w";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/485aa401a6a14cd4a916474d9a7df12cdf45d591/recipes/aws-snippets";
- sha256 = "1p2il4ig3nafsapa87hgghw6ri9d5qqi0hl8zjyypa06rcnag9g9";
- name = "recipe";
- };
- packageRequires = [ yasnippet ];
- meta = {
- homepage = "https://melpa.org/#/aws-snippets";
- license = lib.licenses.free;
- };
- }) {};
- axiom-environment = callPackage ({ emacs
- , fetchgit
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "axiom-environment";
- ename = "axiom-environment";
- version = "20190323.1224";
- src = fetchgit {
- url = "https://bitbucket.org/pdo/axiom-environment";
- rev = "e3444570fa081410171a089f6c118ea6627e5d48";
- sha256 = "04j18cxr5il5fmdk4habsyys2z47gbldjsfnwzy2xpb316bc5m66";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/8b4c6b03c5ff78ce327dcf66b175e266bbc53dbf/recipes/axiom-environment";
- sha256 = "1hzfxdwhgv0z9136k7bdjhqjrkawsjmvqch6za6p7nkpd9ikr2zb";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/axiom-environment";
- license = lib.licenses.free;
- };
- }) {};
babel = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -5249,32 +3205,6 @@
license = lib.licenses.free;
};
}) {};
- babel-repl = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "babel-repl";
- ename = "babel-repl";
- version = "20160504.1501";
- src = fetchFromGitHub {
- owner = "hung-phan";
- repo = "babel-repl";
- rev = "0faa2f6518a2b46236f116ca1736a314f7d9c034";
- sha256 = "0sp0ja0346k401q5zpx3zl4pnxp4ml2jqkgk7z8i08rhdbp0c4nr";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/dfd4ac01ea16fcbc6e9343a953a2f278c5874d3d/recipes/babel-repl";
- sha256 = "0h11i8w8s4ia1x0lm5n7bnc3db4bv0a7f7hzl27qrg38m3c7dl6x";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/babel-repl";
- license = lib.licenses.free;
- };
- }) {};
back-button = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -5311,32 +3241,6 @@
license = lib.licenses.free;
};
}) {};
- backlight = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "backlight";
- ename = "backlight";
- version = "20180629.1459";
- src = fetchFromGitHub {
- owner = "mschuldt";
- repo = "backlight.el";
- rev = "096e632bf100d318754d6c961c90ebb0ef29dce5";
- sha256 = "0w9ng4rhsawcf96mnpy71h50j4mankmvjnfknxlmwiwlmx4sp0f1";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/4b33ef75760ff02983d8c4c6f98621bb441751c3/recipes/backlight";
- sha256 = "0gzshxs9vw5wrb6pnxdaw5q4c8i0vsmc7wb0y2jyhxsr81mlxdpi";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/backlight";
- license = lib.licenses.free;
- };
- }) {};
backline = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -5364,107 +3268,6 @@
license = lib.licenses.free;
};
}) {};
- backup-each-save = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "backup-each-save";
- ename = "backup-each-save";
- version = "20180226.2157";
- src = fetchFromGitHub {
- owner = "conornash";
- repo = "backup-each-save";
- rev = "3c414b9d6b278911c95c5b8b71819e6af6f8a02a";
- sha256 = "13pliz2ra020hhxcidkyhfa0767n188l1w5r0vpvv6zqyc2p414i";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/caa478356d20b5b0e9a450f7b4a8b25937e583a4/recipes/backup-each-save";
- sha256 = "1l7lx3vd27qypkxa0cdm8zbd9fv08xn1bf6xj6g9c49ql95xbyiv";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/backup-each-save";
- license = lib.licenses.free;
- };
- }) {};
- backup-walker = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "backup-walker";
- ename = "backup-walker";
- version = "20130720.816";
- src = fetchFromGitHub {
- owner = "lewang";
- repo = "backup-walker";
- rev = "934a4128c122972ac32bb9952addf279a60a94da";
- sha256 = "0z4d8x9lkad50720lgvr8f85p1ligv07865i30lgr9ck0q04w68v";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/9428a70292cf6b796d7d994ad6b73d7d45970c19/recipes/backup-walker";
- sha256 = "0hfr27yiiblrd0p3zhpapbj4vijfdk7wqh406xnlwf2yvnfsqycd";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/backup-walker";
- license = lib.licenses.free;
- };
- }) {};
- backward-forward = callPackage ({ emacs
- , fetchFromGitLab
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "backward-forward";
- ename = "backward-forward";
- version = "20161228.2150";
- src = fetchFromGitLab {
- owner = "vancan1ty";
- repo = "emacs-backward-forward";
- rev = "58489957a62a0da25dfb5df902624d2548d800b4";
- sha256 = "14v9q58vd0iggs8x8hjh24cv58g2pbwnr6zghd2anaygbj74ij24";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/cb44d7b604c50d4e07404c0dff071fbc66ea903d/recipes/backward-forward";
- sha256 = "0kpy761xdk2s21s92cw03fgw5xq9glybrhnjv2v89xrg16vdvamf";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/backward-forward";
- license = lib.licenses.free;
- };
- }) {};
- badger-theme = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "badger-theme";
- ename = "badger-theme";
- version = "20140716.1932";
- src = fetchFromGitHub {
- owner = "ccann";
- repo = "badger-theme";
- rev = "80fb9f8ace37b2e8807da639f7da499a53ffefd4";
- sha256 = "0g8smx6pi2wqv78mhxfgwg51mx5msqsgcc55xcz29aq0q3naw4z1";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/298e43769c6cd855526d847e8e3b237912360777/recipes/badger-theme";
- sha256 = "01h5bsqllgn6gs0wpl0y2h041007mn3ldjswkz6f3mayrgl4c6yf";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/badger-theme";
- license = lib.licenses.free;
- };
- }) {};
badwolf-theme = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -5517,82 +3320,6 @@
license = lib.licenses.free;
};
}) {};
- bap-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "bap-mode";
- ename = "bap-mode";
- version = "20190401.846";
- src = fetchFromGitHub {
- owner = "fkie-cad";
- repo = "bap-mode";
- rev = "5e0570a4d70003aea451232358c0adb2d1a813fc";
- sha256 = "0vb8r4xar2fz5yxfsx7ss9k0vd72dypz8lgavypkb1kvvizv0h5b";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/05b1b5885a9d5e3bda38bc8a2f987bffd9353cc0/recipes/bap-mode";
- sha256 = "1n0sv6d6vnv40iks18vws16psbv83v401pdd8w2d2cfhhsmmi4ii";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/bap-mode";
- license = lib.licenses.free;
- };
- }) {};
- bar-cursor = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "bar-cursor";
- ename = "bar-cursor";
- version = "20180226.1645";
- src = fetchFromGitHub {
- owner = "ajsquared";
- repo = "bar-cursor";
- rev = "20cb59bedc3532a712fe7feeff3660ebd72a8107";
- sha256 = "06b0nkcp8yjixps72nrgk2zmljc9f71cdr96jdpgssydfhn4pcdf";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/932e7b128f092ec724ebf18c9c5ca84e16edc82c/recipes/bar-cursor";
- sha256 = "0f7z3mlnh3p28pmn1bnqbszcy1j68dwm8xra1wz8jgykvrdlyf2s";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/bar-cursor";
- license = lib.licenses.free;
- };
- }) {};
- bart-mode = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "bart-mode";
- ename = "bart-mode";
- version = "20180131.1829";
- src = fetchFromGitHub {
- owner = "mschuldt";
- repo = "bart-mode";
- rev = "f6b82f0df2e2b863be7b9383a22413a2fc77f9e0";
- sha256 = "09z1fk5wbdlqps1102l9fcccz4vb0wcxbbrc4w2r2xrphwjxy6wc";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/8f9cb09c07cb9fdef15de3e8dbfb6725d97dff6f/recipes/bart-mode";
- sha256 = "0wyfsf7kqfghnci9rlk9x0rkai6x7hy3vfzkgh7s2yz081p1kfam";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/bart-mode";
- license = lib.licenses.free;
- };
- }) {};
base16-theme = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -5643,111 +3370,6 @@
license = lib.licenses.free;
};
}) {};
- basic-c-compile = callPackage ({ cl-lib ? null
- , f
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "basic-c-compile";
- ename = "basic-c-compile";
- version = "20170302.312";
- src = fetchFromGitHub {
- owner = "nick96";
- repo = "basic-c-compile";
- rev = "335e96e19647ad7245fb68cf7e68cf86c5023d23";
- sha256 = "1sq6mmg5361z30psn6x2ylpr8yxsbg3d47qai9px7p889p63384l";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/basic-c-compile";
- sha256 = "0g595d1vd97b5qqydpb6cr3ibgcm08cw8c154h35vz3cl4w86mwd";
- name = "recipe";
- };
- packageRequires = [ cl-lib f ];
- meta = {
- homepage = "https://melpa.org/#/basic-c-compile";
- license = lib.licenses.free;
- };
- }) {};
- basic-mode = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , seq }:
- melpaBuild {
- pname = "basic-mode";
- ename = "basic-mode";
- version = "20180919.1052";
- src = fetchFromGitHub {
- owner = "dykstrom";
- repo = "basic-mode";
- rev = "812f078240f9de09491701853569335ba6d9b5ff";
- sha256 = "1492klgbkxb46x02kmhngccx4p9fmjvf6m4ay89j7pyaixvcqj8v";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/71801bdc0720f150edeab6796487c753c6e7c3f5/recipes/basic-mode";
- sha256 = "1l0ylzww7jg6l804fdrklhay4is0wx1drfi9l9wn7gcdjh76mr6g";
- name = "recipe";
- };
- packageRequires = [ emacs seq ];
- meta = {
- homepage = "https://melpa.org/#/basic-mode";
- license = lib.licenses.free;
- };
- }) {};
- basic-theme = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "basic-theme";
- ename = "basic-theme";
- version = "20160817.127";
- src = fetchFromGitHub {
- owner = "fgeller";
- repo = "basic-theme.el";
- rev = "9d0fd5f56898a5237c1de3363ad416aeab7f880e";
- sha256 = "1bnv8kkg6yy09kxns78xlbl0vwc5dz0azvgvry2a0361f48f0315";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/451d1b67fefec5d3a346b1261d1284e8df6927a0/recipes/basic-theme";
- sha256 = "16rgff1d0s65alh328lr93zc06zmgbzgwx1rf3k3l4d10ki4cc27";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/basic-theme";
- license = lib.licenses.free;
- };
- }) {};
- bats-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "bats-mode";
- ename = "bats-mode";
- version = "20160513.2315";
- src = fetchFromGitHub {
- owner = "dougm";
- repo = "bats-mode";
- rev = "d519f7c89f5ae17dfc33400596df4564b478315f";
- sha256 = "1ikb4rb20ng1yq95g3ydwpk37axmiw38rjzn1av9m4cs81qby4jv";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/d742fb825e163beb33c3873aa48a1c411711e312/recipes/bats-mode";
- sha256 = "1l5winy30w8fs3f5cylc3a3j3mfkvchwanlgsin7q76jivn87h7w";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/bats-mode";
- license = lib.licenses.free;
- };
- }) {};
bazel-mode = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -5853,60 +3475,6 @@
license = lib.licenses.free;
};
}) {};
- bbdb-csv-import = callPackage ({ bbdb
- , dash
- , fetchFromGitLab
- , fetchurl
- , lib
- , melpaBuild
- , pcsv }:
- melpaBuild {
- pname = "bbdb-csv-import";
- ename = "bbdb-csv-import";
- version = "20180121.1649";
- src = fetchFromGitLab {
- owner = "iankelling";
- repo = "bbdb-csv-import";
- rev = "dbc2e0fe9e8ae65e494011044d905ae79b3cee3e";
- sha256 = "0n52arydcsmarkpqqwxvw686cypl7iz73kzizirdjhcqmzimx9pl";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/76ac7178ee5381e08ae881f3fc6061106eeb1c1d/recipes/bbdb-csv-import";
- sha256 = "0r7pc2ypd1ydqrnvcqmsg69rm047by7k0zhm563538ra82597wnm";
- name = "recipe";
- };
- packageRequires = [ bbdb dash pcsv ];
- meta = {
- homepage = "https://melpa.org/#/bbdb-csv-import";
- license = lib.licenses.free;
- };
- }) {};
- bbdb-ext = callPackage ({ bbdb
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "bbdb-ext";
- ename = "bbdb-ext";
- version = "20151220.1213";
- src = fetchFromGitHub {
- owner = "vapniks";
- repo = "bbdb-ext";
- rev = "fee97b1b3faa83edaea00fbc5ad3cbca5e791a55";
- sha256 = "1ydf89mmp3zjfqdymnrwg18wclyf7psarz9f2k82pl58h0khh71g";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/b1ba0575cb6f0270bab8bf00726842b2a4d0bef3/recipes/bbdb-ext";
- sha256 = "0fnxcvzdyh0602rdfz3lz3vmvza4s0syz1vn2fgsn2lg3afqq7li";
- name = "recipe";
- };
- packageRequires = [ bbdb ];
- meta = {
- homepage = "https://melpa.org/#/bbdb-ext";
- license = lib.licenses.free;
- };
- }) {};
bbdb-vcard = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -5958,58 +3526,6 @@
license = lib.licenses.free;
};
}) {};
- bbyac = callPackage ({ browse-kill-ring
- , cl-lib ? null
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "bbyac";
- ename = "bbyac";
- version = "20180206.641";
- src = fetchFromGitHub {
- owner = "baohaojun";
- repo = "bbyac";
- rev = "9f0de9cad13801891ffb590dc09f51ff9a7cb225";
- sha256 = "0q0i1j8ljfd61rk6d5fys7wvdbym9pz5nhwyfvmm0ijmy19d1ppz";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/92c10c13a1bd19c8bdbca128852d1c91b76f7002/recipes/bbyac";
- sha256 = "1pb12b8xrcgyniwqc90z3kr3rq9kkzxjawwcz7xwzymq39fx0897";
- name = "recipe";
- };
- packageRequires = [ browse-kill-ring cl-lib ];
- meta = {
- homepage = "https://melpa.org/#/bbyac";
- license = lib.licenses.free;
- };
- }) {};
- bdo = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "bdo";
- ename = "bdo";
- version = "20140126.101";
- src = fetchFromGitHub {
- owner = "chrisdone";
- repo = "bdo";
- rev = "c96cb6aa9e97fa3491185c50dee0f77a13241010";
- sha256 = "0d5b7zyl2vg621w1ll2lw3kjz5hx6lqxc0jivh0i449gckk5pzkm";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/bdo";
- sha256 = "1n2kpaps6992nxl0v1003czcbw1k4xq906an56694wkh05az505j";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/bdo";
- license = lib.licenses.free;
- };
- }) {};
beacon = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -6088,30 +3604,6 @@
license = lib.licenses.free;
};
}) {};
- belarus-holidays = callPackage ({ fetchgit
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "belarus-holidays";
- ename = "belarus-holidays";
- version = "20190102.543";
- src = fetchgit {
- url = "https://bitbucket.org/EugeneMakei/belarus-holidays.el";
- rev = "35a18273e19edc3b4c761030ffbd11116483b83e";
- sha256 = "1mddjgv2q0sr5v4gxvrzz8y0ybj2bjb5klqsrjajcpbpgbim1qgf";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/6987c5fbafc602ff6b48c347b4e3e7c4471681e8/recipes/belarus-holidays";
- sha256 = "0ls4y0bjdz37zvzp2xppsa4qdgmpwkz2l6ycjf9134brdnhm9gqy";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/belarus-holidays";
- license = lib.licenses.free;
- };
- }) {};
benchmark-init = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -6162,31 +3654,6 @@
license = lib.licenses.free;
};
}) {};
- bert = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "bert";
- ename = "bert";
- version = "20131117.214";
- src = fetchFromGitHub {
- owner = "manzyuk";
- repo = "bert-el";
- rev = "a3eec6980a725aa4abd2019e4c00246450260490";
- sha256 = "06izbc0ksyhgh4gsjiifhj11v0gx9x5xjx9aqci5mc4kc6mg05sf";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/89635cd11621b04a8575629ec1bf196fb3ea5d43/recipes/bert";
- sha256 = "1zhz1dcy1nf84p244x6lc4ajancv5fgmqmbrm080yhb2ral1z8x7";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/bert";
- license = lib.licenses.free;
- };
- }) {};
better-defaults = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -6238,57 +3705,6 @@
license = lib.licenses.free;
};
}) {};
- bf-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "bf-mode";
- ename = "bf-mode";
- version = "20130403.742";
- src = fetchFromGitHub {
- owner = "emacs-jp";
- repo = "bf-mode";
- rev = "7cc4d09aed64d9db6be95646f5f5067de68f8895";
- sha256 = "02b2m0cq04ynjcmr4j8gpdzjv9mpf1fysn736xv724xgaymj396n";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/f7fe1763891c7343c0ad0c7970b8a3c9035b4e8a/recipes/bf-mode";
- sha256 = "0b1yf9bx1ldkzry7v5qvcnl059rq62a50dvpa10i2f5v0y96n1q9";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/bf-mode";
- license = lib.licenses.free;
- };
- }) {};
- bfbuilder = callPackage ({ cl-lib ? null
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "bfbuilder";
- ename = "bfbuilder";
- version = "20150924.950";
- src = fetchFromGitHub {
- owner = "zk-phi";
- repo = "bfbuilder";
- rev = "bb4c8a7be39af97ea5016099b320edd6d2b78149";
- sha256 = "1n87db51ff3bqk3dk6rzipcl9mxr74a6wwkkpxq607wjxhxz0b9y";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/3e77dd911b850846f1719b2ee943b74028d94f04/recipes/bfbuilder";
- sha256 = "16ckybqd0a8l75ascm3k4cdzp969lzq7m050aymdyjhwif6ld2r7";
- name = "recipe";
- };
- packageRequires = [ cl-lib ];
- meta = {
- homepage = "https://melpa.org/#/bfbuilder";
- license = lib.licenses.free;
- };
- }) {};
bibclean-format = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -6343,33 +3759,6 @@
license = lib.licenses.free;
};
}) {};
- biblio-bibsonomy = callPackage ({ biblio-core
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "biblio-bibsonomy";
- ename = "biblio-bibsonomy";
- version = "20190105.400";
- src = fetchFromGitHub {
- owner = "andreasjansson";
- repo = "biblio-bibsonomy.el";
- rev = "fbdb3ecfcd88c179a2358d7967f7ecafef725835";
- sha256 = "0awqlv1v672vz51wccmijicv4agn0gqw5xllp0pxg8djzxl8isgl";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/e4867fd81cf56c8a74dcc71774790aa602b068a7/recipes/biblio-bibsonomy";
- sha256 = "0xfycxsslmr5si636l9pv9w5s5hmlk3253wq2vg8dm7b7ag5gr4s";
- name = "recipe";
- };
- packageRequires = [ biblio-core emacs ];
- meta = {
- homepage = "https://melpa.org/#/biblio-bibsonomy";
- license = lib.licenses.free;
- };
- }) {};
biblio-core = callPackage ({ dash
, emacs
, fetchFromGitHub
@@ -6399,113 +3788,6 @@
license = lib.licenses.free;
};
}) {};
- bibliothek = callPackage ({ a
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , pdf-tools }:
- melpaBuild {
- pname = "bibliothek";
- ename = "bibliothek";
- version = "20190124.1028";
- src = fetchFromGitHub {
- owner = "cadadr";
- repo = "elisp";
- rev = "b19b37be332bada6b18d4d895edf6ce78ab420c4";
- sha256 = "0i97l8fdrjjb6dzfcqgss5yj4ibkiaxnj32sm6nyr2s7bijkvi4x";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/8b8308e72c4437237fded29db1f60b3eba0edd26/recipes/bibliothek";
- sha256 = "011wnya65vfnn17fn1vhq0sk8c1mli81x0nb44yi6zl1hwxivb55";
- name = "recipe";
- };
- packageRequires = [ a emacs pdf-tools ];
- meta = {
- homepage = "https://melpa.org/#/bibliothek";
- license = lib.licenses.free;
- };
- }) {};
- bibretrieve = callPackage ({ auctex
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "bibretrieve";
- ename = "bibretrieve";
- version = "20180901.228";
- src = fetchFromGitHub {
- owner = "pzorin";
- repo = "bibretrieve";
- rev = "600fa1fcc4c5d79c628457f2316f3429c96be006";
- sha256 = "17jy0a4j97vxnj9659q0jr32nx8kj12j9vhi5hnfw2nqxz33x7gr";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/e548e0cf8babaf32f1db58099599a72cebdbb84d/recipes/bibretrieve";
- sha256 = "1mf884c6adx7rq5c2z5wrnjpb6znljy30mscxskwqiyfs8c62mii";
- name = "recipe";
- };
- packageRequires = [ auctex emacs ];
- meta = {
- homepage = "https://melpa.org/#/bibretrieve";
- license = lib.licenses.free;
- };
- }) {};
- bibslurp = callPackage ({ dash
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , s }:
- melpaBuild {
- pname = "bibslurp";
- ename = "bibslurp";
- version = "20151202.1546";
- src = fetchFromGitHub {
- owner = "mkmcc";
- repo = "bibslurp";
- rev = "aeba96368f2a06959e4fe945375ce2a54d34b189";
- sha256 = "077shjz9sd0k0akvxzzgjd8a626ck650xxlhp2ws4gs7rjd7a823";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/67f473e839d6325f193c641792671f43fbf83b6d/recipes/bibslurp";
- sha256 = "178nhng87bdi8s0r2bdh2gk31w9mmjkyi6ncnddk3v7p8fsh4jjp";
- name = "recipe";
- };
- packageRequires = [ dash s ];
- meta = {
- homepage = "https://melpa.org/#/bibslurp";
- license = lib.licenses.free;
- };
- }) {};
- bibtex-utils = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "bibtex-utils";
- ename = "bibtex-utils";
- version = "20170817.1219";
- src = fetchFromGitHub {
- owner = "plantarum";
- repo = "bibtex-utils";
- rev = "ed5ccce46c2088a28a2f0c49caa679d2f20567f0";
- sha256 = "0cy0w4986lngzhzmfvk9r5xf0qa9bdz2ybzgv3nkwl48pjqvvi15";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5764b6a880e8143db66e9011cc1c2bf0bcd61082/recipes/bibtex-utils";
- sha256 = "13llsyyvy0xc9s51cqqc1rz13m3qdqh8jw07gwywfbixlma59z8l";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/bibtex-utils";
- license = lib.licenses.free;
- };
- }) {};
bicycle = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -6712,381 +3994,6 @@
license = lib.licenses.free;
};
}) {};
- bison-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "bison-mode";
- ename = "bison-mode";
- version = "20160616.2252";
- src = fetchFromGitHub {
- owner = "Wilfred";
- repo = "bison-mode";
- rev = "314af3b7af7eb897fd3932616cb8600a85228cea";
- sha256 = "0ymjgwyi73vl81i7v1g2ad09lxp4mhp47r6zcijqa5hbx9l1skik";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/d08592cabbc0779c67c260f9648d2273c0dd9e3e/recipes/bison-mode";
- sha256 = "097gimlzmyrsfnl76cbzyyi9dm0d2y3f9107672h56ncri35mh66";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/bison-mode";
- license = lib.licenses.free;
- };
- }) {};
- bitbake = callPackage ({ dash
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , mmm-mode
- , s }:
- melpaBuild {
- pname = "bitbake";
- ename = "bitbake";
- version = "20190107.355";
- src = fetchFromGitHub {
- owner = "canatella";
- repo = "bitbake-el";
- rev = "6b65c10a88c8750694c9c9e77299450200e7481e";
- sha256 = "0xy4dqlg8d6ppwpa9l96dycag53rmzwiv68s2mzmpkcrjn023dr3";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/da099b66180ed537f8962ab4ca727d2441f9691d/recipes/bitbake";
- sha256 = "1k2n1i8g0jc78sp1icm64rlhi1q0vqar2a889nldp134a1l7bfah";
- name = "recipe";
- };
- packageRequires = [ dash emacs mmm-mode s ];
- meta = {
- homepage = "https://melpa.org/#/bitbake";
- license = lib.licenses.free;
- };
- }) {};
- bitbucket = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , request
- , s }:
- melpaBuild {
- pname = "bitbucket";
- ename = "bitbucket";
- version = "20170404.2146";
- src = fetchFromGitHub {
- owner = "tjaartvdwalt";
- repo = "bitbucket.el";
- rev = "db001a9d936e6b5c3cc5d5ec22794e234e0d162d";
- sha256 = "0iwmhnnscj3axxzgcb9ma7n5wn3zpjiwkh1dxrlk2kcclbzlbjha";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/9cf87389e6a5d868850d27e077202e1e52eaf4aa/recipes/bitbucket";
- sha256 = "1d0v6hvmxky3k2m89b7xm1igx9fmzvhdpn1bi8zln61m4zgr3yz0";
- name = "recipe";
- };
- packageRequires = [ emacs request s ];
- meta = {
- homepage = "https://melpa.org/#/bitbucket";
- license = lib.licenses.free;
- };
- }) {};
- bitlbee = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "bitlbee";
- ename = "bitlbee";
- version = "20151202.1600";
- src = fetchFromGitHub {
- owner = "pjones";
- repo = "bitlbee-el";
- rev = "f3342da46b0864ae8db4e82b553d9e617b090534";
- sha256 = "1qbp15w4g9j9qhrgb04dwqa76i8sh1nbfd8gbpgp91sz9gackgkq";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/bitlbee";
- sha256 = "1lmbmlshr8b645qsb88rswmbbcbbawzl04xdjlygq4dnpkxc8w0f";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/bitlbee";
- license = lib.licenses.free;
- };
- }) {};
- blackboard-bold-mode = callPackage ({ cl-lib ? null
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "blackboard-bold-mode";
- ename = "blackboard-bold-mode";
- version = "20160812.1906";
- src = fetchFromGitHub {
- owner = "grettke";
- repo = "blackboard-bold-mode";
- rev = "5299cb064ba71baa3e331b8560bf8dd38cbbc4ed";
- sha256 = "00xbcgx4snz4sd7q7ys24rsnf5wdxjn402v8y5dgn4ayx88y1rrj";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/blackboard-bold-mode";
- sha256 = "08fmzm5lblkk503zr4d6hkp45075pwwd8zinngasrsf1r01isksj";
- name = "recipe";
- };
- packageRequires = [ cl-lib ];
- meta = {
- homepage = "https://melpa.org/#/blackboard-bold-mode";
- license = lib.licenses.free;
- };
- }) {};
- blackboard-theme = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "blackboard-theme";
- ename = "blackboard-theme";
- version = "20161215.2256";
- src = fetchFromGitHub {
- owner = "don9z";
- repo = "blackboard-theme";
- rev = "d8b984f2541bb86eb4363a2b4c94631e49843d4a";
- sha256 = "1jh2960yab6rhdq7ci1slpmnr43619cza0g8bfbq759yz5b7xryh";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/eca8cbcc1282bb061f769daf86b1938d1f30f704/recipes/blackboard-theme";
- sha256 = "19cnfxrm85985ic55y5x7nwxdynjp7djyd33dhj8r7s92cs25fn7";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/blackboard-theme";
- license = lib.licenses.free;
- };
- }) {};
- blacken = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "blacken";
- ename = "blacken";
- version = "20190301.605";
- src = fetchFromGitHub {
- owner = "proofit404";
- repo = "blacken";
- rev = "17b48ee432d83517094635f8caaf2db1128d1db1";
- sha256 = "04202qk6jsckvwc0zwg8513wgfjrnf33cbkv03k3vzwg6zhgmn9z";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/69d9802996a338be937d61678f2cadf3497f6b85/recipes/blacken";
- sha256 = "16lbs76jkhcq0vg09x1n8mrd4pgz5bdjsprr9260xr7g3dx8xacc";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/blacken";
- license = lib.licenses.free;
- };
- }) {};
- blgrep = callPackage ({ clmemo
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "blgrep";
- ename = "blgrep";
- version = "20150401.716";
- src = fetchFromGitHub {
- owner = "ataka";
- repo = "blgrep";
- rev = "605beda210610a5829750a987f5fcebea97af546";
- sha256 = "1pslwyaq18d1z7fay2ih3n27i6b49ss62drqqb095l1jxk42xxm0";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/e78ed9dc4a7ff57524e79213973157ab364ae14d/recipes/blgrep";
- sha256 = "0w7453vh9c73hdfgr06693kwvhznn9xr1hqa65izlsx2fjhqc9gm";
- name = "recipe";
- };
- packageRequires = [ clmemo ];
- meta = {
- homepage = "https://melpa.org/#/blgrep";
- license = lib.licenses.free;
- };
- }) {};
- blimp = callPackage ({ eimp
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "blimp";
- ename = "blimp";
- version = "20180903.1540";
- src = fetchFromGitHub {
- owner = "walseb";
- repo = "blimp";
- rev = "b048b037129b68674b99310bcc08fb96d44fdbb4";
- sha256 = "0az7bjxc6awn56sv49w3d0ws6w7i0gqm99sbkbnjrfgj3ha8xz4d";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/4fe28626950659c5ba4aa9cc7ba6126ce4737fb7/recipes/blimp";
- sha256 = "1k70x0gs9ns7652ahq2b8fhmichsmajzqmm46v1imji238zr7kb1";
- name = "recipe";
- };
- packageRequires = [ eimp emacs ];
- meta = {
- homepage = "https://melpa.org/#/blimp";
- license = lib.licenses.free;
- };
- }) {};
- bliss-theme = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "bliss-theme";
- ename = "bliss-theme";
- version = "20170808.607";
- src = fetchFromGitHub {
- owner = "emacsfodder";
- repo = "emacs-bliss-theme";
- rev = "c3cf6d8a666ab26909b7da158f9e94df71a5fbbf";
- sha256 = "1bpyhsjfdjfa1iw9kv7fsl30vz48qllqgjg1rsxdl3vcripcbc9z";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/641d1959bd31598fcdacd39a3d1bb077dcccfa5c/recipes/bliss-theme";
- sha256 = "1kzvi6zymfgirr41l8r2kazfz1y4xkigbp5qa1fafcdmw81anmdh";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/bliss-theme";
- license = lib.licenses.free;
- };
- }) {};
- bln-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "bln-mode";
- ename = "bln-mode";
- version = "20181121.118";
- src = fetchFromGitHub {
- owner = "mgrachten";
- repo = "bln-mode";
- rev = "a601b0bf975dd1432f6552ab6afe3f4f71133b4a";
- sha256 = "19y1fs5bzp2sqvh6svmj0cpvgq13zmsn852027hi11zvwi6dzqz8";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/ee12ef97df241b7405feee69c1e66b3c1a67204b/recipes/bln-mode";
- sha256 = "0w4abaqx9gz04ls1hn1qz8qg9jpvi80b9jb597ddjcbnwqq9z83r";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/bln-mode";
- license = lib.licenses.free;
- };
- }) {};
- blockdiag-mode = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "blockdiag-mode";
- ename = "blockdiag-mode";
- version = "20160426.2224";
- src = fetchFromGitHub {
- owner = "xcezx";
- repo = "blockdiag-mode";
- rev = "f3b21ba433d60327cebd103ae4492200750e24a9";
- sha256 = "111i897dnkbx4xq62jfkqq4li4gm16lxbgkgg2gn13zv0f0lzgvy";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/2a0adb94f2a435e846944a1c544e6591b131a10e/recipes/blockdiag-mode";
- sha256 = "0v48w4slzx8baxrf10jrzcpqmcv9d3z2pz0xqn8czlzm2f6id3ya";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/blockdiag-mode";
- license = lib.licenses.free;
- };
- }) {};
- blog-admin = callPackage ({ cl-lib ? null
- , ctable
- , f
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , names
- , s }:
- melpaBuild {
- pname = "blog-admin";
- ename = "blog-admin";
- version = "20170923.709";
- src = fetchFromGitHub {
- owner = "CodeFalling";
- repo = "blog-admin";
- rev = "b5f2e1dad7d68ec903619f7280bb0bcb7e398a1e";
- sha256 = "0fgzmmjxhl8i9yqx1bvb7hgkk9w4ylx73xy990qf1bl7fg21v636";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/blog-admin";
- sha256 = "03wnci5903c6jikkvlzc2vfma9h9qk673cc3wm756rx94jxinmyk";
- name = "recipe";
- };
- packageRequires = [ cl-lib ctable f names s ];
- meta = {
- homepage = "https://melpa.org/#/blog-admin";
- license = lib.licenses.free;
- };
- }) {};
- blog-minimal = callPackage ({ fetchFromGitHub
- , fetchurl
- , ht
- , lib
- , melpaBuild
- , mustache
- , org
- , s
- , simple-httpd }:
- melpaBuild {
- pname = "blog-minimal";
- ename = "blog-minimal";
- version = "20181021.149";
- src = fetchFromGitHub {
- owner = "thiefuniverse";
- repo = "blog-minimal";
- rev = "a634a2db0b80cb445ef0b072d1a1482ced91f9ad";
- sha256 = "0mxfrp7gwg07d8vkipqf8p6mli9y5sqh25k1dkcsidmc6m09j5qn";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/56217a33b0669a782621dd65d83419ae371ed60a/recipes/blog-minimal";
- sha256 = "1qj25b6n3slvmbqvzfd37v4xmy1vvz37686jdr29bw5qk4prgxff";
- name = "recipe";
- };
- packageRequires = [ ht mustache org s simple-httpd ];
- meta = {
- homepage = "https://melpa.org/#/blog-minimal";
- license = lib.licenses.free;
- };
- }) {};
bm = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -7112,36 +4019,6 @@
license = lib.licenses.free;
};
}) {};
- bmx-mode = callPackage ({ cl-lib ? null
- , company
- , dash
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , s }:
- melpaBuild {
- pname = "bmx-mode";
- ename = "bmx-mode";
- version = "20180929.432";
- src = fetchFromGitHub {
- owner = "josteink";
- repo = "bmx-mode";
- rev = "536b332edc3b98cc97588c937c7368803ba5961c";
- sha256 = "0hbkh4fb1cb1fd7fq1999i9rffr2xc0l16b0m5sajcrsir3gq4nr";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/7f456d2b2b8f5a33bcb0f2ffd19e6e0276950f24/recipes/bmx-mode";
- sha256 = "04g8l4cw20k3yhbija9mz1l4nx3bzhzj7nb35s0xdyvwbc2mhrwb";
- name = "recipe";
- };
- packageRequires = [ cl-lib company dash emacs s ];
- meta = {
- homepage = "https://melpa.org/#/bmx-mode";
- license = lib.licenses.free;
- };
- }) {};
bnf-mode = callPackage ({ cl-lib ? null
, emacs
, fetchFromGitHub
@@ -7221,32 +4098,6 @@
license = lib.licenses.free;
};
}) {};
- bolt-mode = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "bolt-mode";
- ename = "bolt-mode";
- version = "20180310.10";
- src = fetchFromGitHub {
- owner = "mpontus";
- repo = "bolt-mode";
- rev = "85a5a752bfbebb4aed884326c25db64c000e9934";
- sha256 = "03nxcmpm5n8jcca39ivrl7cjqz3gzsl3w6qc30hcp278qf2jq6va";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/ec9e35f0e37db90d906fccd08fb25b673c88d3b8/recipes/bolt-mode";
- sha256 = "03x89k8v0m9kv1fhyys2gwympb70qlmg7gdib8wsmdxs34ys5igz";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/bolt-mode";
- license = lib.licenses.free;
- };
- }) {};
bongo = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -7272,61 +4123,6 @@
license = lib.licenses.free;
};
}) {};
- bonjourmadame = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "bonjourmadame";
- ename = "bonjourmadame";
- version = "20170919.434";
- src = fetchFromGitHub {
- owner = "pierre-lecocq";
- repo = "bonjourmadame";
- rev = "d3df185fce78aefa689fded8e56a654f0fde4ac0";
- sha256 = "1acn63hd7s2z8viy52hmhncdic7m86rcqczxnz9aivikqy4hfnsi";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/34c4cfd7bbf5b442a9304598ba0a23ba9b8dfae4/recipes/bonjourmadame";
- sha256 = "0d36yradh37359fjk59s54hxkbh4qcc17sblj2ylcdyw7181iwfn";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/bonjourmadame";
- license = lib.licenses.free;
- };
- }) {};
- boogie-friends = callPackage ({ cl-lib ? null
- , company
- , dash
- , fetchFromGitHub
- , fetchurl
- , flycheck
- , lib
- , melpaBuild
- , yasnippet }:
- melpaBuild {
- pname = "boogie-friends";
- ename = "boogie-friends";
- version = "20171024.1955";
- src = fetchFromGitHub {
- owner = "boogie-org";
- repo = "boogie-friends";
- rev = "7fea709f13c6cb93e4ed672955484201ebe6c123";
- sha256 = "1sfw59vd2ah054va5q52wf22cdrinv5m207prfzdqs9bsq1qfdac";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5bdd06b82d002677c046876642efe1dc01bc3e77/recipes/boogie-friends";
- sha256 = "0cfs7gvjxsx2027dbzh4yypz500nmk503ikiiprbww8jyvc8grk7";
- name = "recipe";
- };
- packageRequires = [ cl-lib company dash flycheck yasnippet ];
- meta = {
- homepage = "https://melpa.org/#/boogie-friends";
- license = lib.licenses.free;
- };
- }) {};
bool-flip = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -7411,58 +4207,6 @@
license = lib.licenses.free;
};
}) {};
- borland-blue-theme = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "borland-blue-theme";
- ename = "borland-blue-theme";
- version = "20160117.521";
- src = fetchFromGitHub {
- owner = "fourier";
- repo = "borland-blue-theme";
- rev = "db74eefebbc89d3c62575f8f50b319e87b4a3470";
- sha256 = "0yzfxxv2bw4x320268bixfc7yf97851804bz3829vbdhnr4kp6y5";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/f2ff5916fd2caee778479bc2ad3ef13ee514052c/recipes/borland-blue-theme";
- sha256 = "1sc8qngm40bwdym8k1dgbahg48i73c00zxd99kqqwm9fnd6nm7qx";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/borland-blue-theme";
- license = lib.licenses.free;
- };
- }) {};
- boron-theme = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "boron-theme";
- ename = "boron-theme";
- version = "20170808.608";
- src = fetchFromGitHub {
- owner = "emacsfodder";
- repo = "emacs-boron-theme";
- rev = "87ae1a765e07429fec25d2f29b004f84b52d2e0a";
- sha256 = "1kdf71af1s67vshgwkdgi7swxx942i605awhmhrhdjbkra29v4yn";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/641d1959bd31598fcdacd39a3d1bb077dcccfa5c/recipes/boron-theme";
- sha256 = "1rrqlq08jnh9ihb99ji1vvmamj742assnm4a7xqz6gp7f248nb81";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/boron-theme";
- license = lib.licenses.free;
- };
- }) {};
boxquote = callPackage ({ cl-lib ? null
, fetchFromGitHub
, fetchurl
@@ -7489,136 +4233,6 @@
license = lib.licenses.free;
};
}) {};
- bpe = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "bpe";
- ename = "bpe";
- version = "20141228.1405";
- src = fetchFromGitHub {
- owner = "yuutayamada";
- repo = "bpe";
- rev = "7b5b25f83506e6c9f4075d3803fa32404943a189";
- sha256 = "0chmarbpqingdma54d6chbr6v6jg8lapbw56cpvcpbl04fz980r0";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1a99263c2672d4c2433835cf948101130126e14b/recipes/bpe";
- sha256 = "08zfqcgs7i2ram2qpy8vrzksx5722aahr66vdi4d9bcxm03s19fm";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/bpe";
- license = lib.licenses.free;
- };
- }) {};
- bpr = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "bpr";
- ename = "bpr";
- version = "20180220.1044";
- src = fetchFromGitHub {
- owner = "ilya-babanov";
- repo = "emacs-bpr";
- rev = "af84a83dea09d86e77d87ac30604f2c5b4bf4117";
- sha256 = "1r2prq9j6fmzzkl1f3r9drn6lna2wzd9qv127x7z5g6n8pgb6ipx";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/05eed39bae37cc8359d2cc678052cbbcc946e379/recipes/bpr";
- sha256 = "0rjxn40n4s4xdq51bq0w3455g9pli2pvcf1gnbr96zawbngrw6x2";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/bpr";
- license = lib.licenses.free;
- };
- }) {};
- bracketed-paste = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "bracketed-paste";
- ename = "bracketed-paste";
- version = "20160407.1648";
- src = fetchFromGitHub {
- owner = "hchbaw";
- repo = "bracketed-paste.el";
- rev = "843ce3bbb63d560face889e13a57a2f7543957d5";
- sha256 = "1l6j2zs12psc15cfhqq6hm1bg012jr49zd2i36cmappbsiax1l8m";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/6446db573d97ceb21cd39ce05fb39627113bbd74/recipes/bracketed-paste";
- sha256 = "1v7zwi29as0218vy6ch21iqqcxfhyh373m3dbcdzm2pb8bpcg58j";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/bracketed-paste";
- license = lib.licenses.free;
- };
- }) {};
- brainfuck-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , langdoc
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "brainfuck-mode";
- ename = "brainfuck-mode";
- version = "20150113.42";
- src = fetchFromGitHub {
- owner = "tom-tan";
- repo = "brainfuck-mode";
- rev = "36e69552bb3b97a4f888d362c59845651bd0d492";
- sha256 = "1nzgjgzidyrplfs4jl8nikd5wwvb4rmrnm51qxmw9y2if0hpq0jd";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/279ae8faabbfa2f894999e1534a964606722a150/recipes/brainfuck-mode";
- sha256 = "08jzx329mrr3c2pifs3hb4i79dsw606b0iviagaaja8s808m40cd";
- name = "recipe";
- };
- packageRequires = [ langdoc ];
- meta = {
- homepage = "https://melpa.org/#/brainfuck-mode";
- license = lib.licenses.free;
- };
- }) {};
- broadcast = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "broadcast";
- ename = "broadcast";
- version = "20151204.1812";
- src = fetchFromGitHub {
- owner = "killdash9";
- repo = "broadcast.el";
- rev = "f6f9cd2e0e3f8c31d6b8e7446c27eb0e50b25f16";
- sha256 = "0w6b9rxdciy1365kgf6fh3vgrjr8xd5ar6xcn0g4h56f2zg9hdmj";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/6ed51896112e702a8b853059884aad50d37738c2/recipes/broadcast";
- sha256 = "1h2c3mb49q3vlpalrsrx8q3rmy1zg0y45ayvzbvzdkfgs8idgbib";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/broadcast";
- license = lib.licenses.free;
- };
- }) {};
browse-at-remote = callPackage ({ cl-lib ? null
, f
, fetchFromGitHub
@@ -7698,30 +4312,6 @@
license = lib.licenses.free;
};
}) {};
- brutalist-theme = callPackage ({ fetchgit
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "brutalist-theme";
- ename = "brutalist-theme";
- version = "20181023.522";
- src = fetchgit {
- url = "https://git.madhouse-project.org/algernon/brutalist-theme.el.git";
- rev = "15ea5d881cad24c40d02a1980891b3c17853ad20";
- sha256 = "1zlkx9l8srdw4f95355mng08sx9r23dl7318bpkrw6q56lnp79sf";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/ec889956a5685c3a60003ad2bfa04b03b57aa8e8/recipes/brutalist-theme";
- sha256 = "0dg0432r3cpjgdlpz583vky4hj5vld9d25dvaj6nxlir2ph9g9hn";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/brutalist-theme";
- license = lib.licenses.free;
- };
- }) {};
bshell = callPackage ({ buffer-manage
, emacs
, fetchFromGitHub
@@ -7749,167 +4339,6 @@
license = lib.licenses.free;
};
}) {};
- btc-ticker = callPackage ({ fetchFromGitHub
- , fetchurl
- , json ? null
- , lib
- , melpaBuild
- , request }:
- melpaBuild {
- pname = "btc-ticker";
- ename = "btc-ticker";
- version = "20151113.659";
- src = fetchFromGitHub {
- owner = "niedbalski";
- repo = "emacs-btc-ticker";
- rev = "845235b545f070d0812cd1654cbaa4997565824f";
- sha256 = "022j0gw5qkxjz8f70vqjxysifv2mz6cigf9n5z03zmpvwwvxmx2z";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/f78796a8835ec44f4d13c99559fd4d113c6f4f29/recipes/btc-ticker";
- sha256 = "1vfnx114bvnly1k3fmcpkqq4m9558wqr5c9k9yj8f046dgfh8dp1";
- name = "recipe";
- };
- packageRequires = [ json request ];
- meta = {
- homepage = "https://melpa.org/#/btc-ticker";
- license = lib.licenses.free;
- };
- }) {};
- bts = callPackage ({ dash
- , fetchFromGitHub
- , fetchurl
- , lib
- , log4e
- , melpaBuild
- , pos-tip
- , s
- , widget-mvc
- , yaxception }:
- melpaBuild {
- pname = "bts";
- ename = "bts";
- version = "20151109.533";
- src = fetchFromGitHub {
- owner = "aki2o";
- repo = "emacs-bts";
- rev = "df42d58a36447697f93b56e69f5e700b2baef1f9";
- sha256 = "1qgasaqhqm0birjmb6k6isd2f5pn58hva8db8qfhva9g5kg1f38w";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/0d2f9c2f465b06c97cd03c5644155cd6c7fade24/recipes/bts";
- sha256 = "1i1lbjracrgdxr52agxhxxgkra4w291dmz85s195lcx38rva7ib3";
- name = "recipe";
- };
- packageRequires = [ dash log4e pos-tip s widget-mvc yaxception ];
- meta = {
- homepage = "https://melpa.org/#/bts";
- license = lib.licenses.free;
- };
- }) {};
- bts-github = callPackage ({ bts
- , fetchFromGitHub
- , fetchurl
- , gh
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "bts-github";
- ename = "bts-github";
- version = "20170401.549";
- src = fetchFromGitHub {
- owner = "aki2o";
- repo = "emacs-bts-github";
- rev = "ef2cf9202dc2128e5efdb613bfde9276a8cd95ad";
- sha256 = "173i9n4c8mg93gpc7ljxh3nhm4lq2c04yhrvjz6fwwwqvmnkha5f";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/6f3e87699181877e50d75a89e2ee76e403fc9317/recipes/bts-github";
- sha256 = "03lz12bbkjqbs82alc97k6s1pmk721qip3h9cifq8a5ww5cbq9ln";
- name = "recipe";
- };
- packageRequires = [ bts gh ];
- meta = {
- homepage = "https://melpa.org/#/bts-github";
- license = lib.licenses.free;
- };
- }) {};
- bubbleberry-theme = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "bubbleberry-theme";
- ename = "bubbleberry-theme";
- version = "20141017.244";
- src = fetchFromGitHub {
- owner = "emacsfodder";
- repo = "emacs-bubbleberry-theme";
- rev = "22e9adf4586414024e4592972022ec297321b320";
- sha256 = "1aha8rzilv4k300rr4l9qjfygydfwllkbw17lhm8jz0kh9w6bd28";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/3416586d4d782cdd61a56159c5f80a0ca9b3ddf4/recipes/bubbleberry-theme";
- sha256 = "1mjygck5ra30j44msccqas8v6gkpyv74p6y6hidm8v4f8n6m8dcz";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/bubbleberry-theme";
- license = lib.licenses.free;
- };
- }) {};
- buckwalter = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "buckwalter";
- ename = "buckwalter";
- version = "20190204.651";
- src = fetchFromGitHub {
- owner = "joehakimrahme";
- repo = "buckwalter.el";
- rev = "d4a7785eef05491ac4eb3150b75c473480bb51cb";
- sha256 = "1i0kkn2qziakpy0ax8rc1pjdb6r881gybqhl5dwmwsd8gkfhddy5";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/7dd38487731cc978e104afa39f8954cfc33ba27f/recipes/buckwalter";
- sha256 = "08pnmfy910n5l00kmkn4533x48m3scsxzyra0nl6iry2n39y2kr1";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/buckwalter";
- license = lib.licenses.free;
- };
- }) {};
- buffer-buttons = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "buffer-buttons";
- ename = "buffer-buttons";
- version = "20150106.639";
- src = fetchFromGitHub {
- owner = "rpav";
- repo = "buffer-buttons";
- rev = "2feb8494fa7863b98256bc85da670d74a3a8a975";
- sha256 = "1p5a29bpjqr1gs6sb6rr7y0j06nlva23wxkwfskap25zvjpgwbvq";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/d518e81c8342a93455108e769c8b42747982c924/recipes/buffer-buttons";
- sha256 = "1p0ydbrff9197sann3s0d7hpav7r9g461w4llncafmy31w7m1dn6";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/buffer-buttons";
- license = lib.licenses.free;
- };
- }) {};
buffer-flip = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -7988,31 +4417,6 @@
license = lib.licenses.free;
};
}) {};
- buffer-sets = callPackage ({ cl-lib ? null
- , fetchgit
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "buffer-sets";
- ename = "buffer-sets";
- version = "20170717.2040";
- src = fetchgit {
- url = "https://git.flintfam.org/swf-projects/buffer-sets.git";
- rev = "4a4ccb0d6916c3e9fba737bb7b48e8aac921954e";
- sha256 = "1rg6iwswi82w8938pavwhvvr2z3ismb42asam2fkad47h2sgn0gz";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/61d07bbe7201fc991c7ab7ee6299a89d63ddb5e5/recipes/buffer-sets";
- sha256 = "1xj9fn2x4kbx8kp999wvz1j68znp7j81zl6rnbaipbx7hjpqrsin";
- name = "recipe";
- };
- packageRequires = [ cl-lib ];
- meta = {
- homepage = "https://melpa.org/#/buffer-sets";
- license = lib.licenses.free;
- };
- }) {};
buffer-utils = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -8169,32 +4573,6 @@
license = lib.licenses.free;
};
}) {};
- build-helper = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , projectile }:
- melpaBuild {
- pname = "build-helper";
- ename = "build-helper";
- version = "20161009.1055";
- src = fetchFromGitHub {
- owner = "afonso360";
- repo = "build-helper";
- rev = "d1962858734253eca791721ccf62d1c4a10719f5";
- sha256 = "07bhagf206p8q0nmz3sy2frd3zzi96snm3bm0rp6mffai0p58vps";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/af56cde18ae0efb0ae91c818e6804c55cdb3b8c2/recipes/build-helper";
- sha256 = "1asgpf2k4i7p88ask1i6ra4krhsxr6j2d2qv0gfxlsa5p330mmgh";
- name = "recipe";
- };
- packageRequires = [ projectile ];
- meta = {
- homepage = "https://melpa.org/#/build-helper";
- license = lib.licenses.free;
- };
- }) {};
build-status = callPackage ({ cl-lib ? null
, fetchFromGitHub
, fetchurl
@@ -8272,82 +4650,6 @@
license = lib.licenses.free;
};
}) {};
- buster-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "buster-mode";
- ename = "buster-mode";
- version = "20140928.513";
- src = fetchFromGitHub {
- owner = "magnars";
- repo = "buster-mode";
- rev = "de6958ef8369400922618b8d1e99abfa91b97ac5";
- sha256 = "1viq7cb41r8klr8i38c5zjrhdnww31gh4j51xdgy4v2lc3z321zi";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/buster-mode";
- sha256 = "0nylkxy9qlj1h5v0pja4g315xcj5qzvkys4dsnzbh3xq4xzyj6xj";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/buster-mode";
- license = lib.licenses.free;
- };
- }) {};
- buster-snippets = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , yasnippet }:
- melpaBuild {
- pname = "buster-snippets";
- ename = "buster-snippets";
- version = "20151125.210";
- src = fetchFromGitHub {
- owner = "magnars";
- repo = "buster-snippets.el";
- rev = "bb8769dae132659858e74d52f3f4e8790399423a";
- sha256 = "11djqlw4qf3qs2rwiz7dn5q2zw5i8sykwdf4hg4awsgv8g0bbxn6";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/67dabf33096113e68fe282309246094711751e1f/recipes/buster-snippets";
- sha256 = "0k36c2k7wwix10rgmjxipc77fkn9jahjyvl191af6w41wla47x4x";
- name = "recipe";
- };
- packageRequires = [ yasnippet ];
- meta = {
- homepage = "https://melpa.org/#/buster-snippets";
- license = lib.licenses.free;
- };
- }) {};
- busybee-theme = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "busybee-theme";
- ename = "busybee-theme";
- version = "20170719.228";
- src = fetchFromGitHub {
- owner = "mswift42";
- repo = "busybee-theme";
- rev = "66b2315b030582d0ebee605cf455d386d8c30fcd";
- sha256 = "1cvj5m45f5ky3w86khh6crvdqrdjxg2z6b34jlm32qpgmn0s5g45";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/36e2089b998d98575aa6dd3cc79fb7f6847f7aa3/recipes/busybee-theme";
- sha256 = "0w0z5x2fbnalv404av3mapfkqbfgyk81a1mzvngll8x0pirbyi10";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/busybee-theme";
- license = lib.licenses.free;
- };
- }) {};
butler = callPackage ({ deferred
, emacs
, fetchFromGitHub
@@ -8452,159 +4754,6 @@
license = lib.licenses.free;
};
}) {};
- buttons = callPackage ({ cl-lib ? null
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "buttons";
- ename = "buttons";
- version = "20190318.1741";
- src = fetchFromGitHub {
- owner = "erjoalgo";
- repo = "emacs-buttons";
- rev = "a14d0c21cc30d33b57481f535f2a838d65b2032f";
- sha256 = "17b6km8qvkh43g276fmv552lffd2jq5x863fc7zm7xf2khwmpwbh";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/3b8f9437268a51654b2bebdd024c35060b078962/recipes/buttons";
- sha256 = "0pp7x4z6vzdfav5ljxsk1q6xby7gcxnkyl5fcbsd4r98ja4zmyq4";
- name = "recipe";
- };
- packageRequires = [ cl-lib ];
- meta = {
- homepage = "https://melpa.org/#/buttons";
- license = lib.licenses.free;
- };
- }) {};
- c-c-combo = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "c-c-combo";
- ename = "c-c-combo";
- version = "20151223.1855";
- src = fetchFromGitHub {
- owner = "CestDiego";
- repo = "c-c-combo.el";
- rev = "a261a833499a7fdc29610863b3aafc74818770ba";
- sha256 = "040mcq2cwzbrf96f9mghb4314cd8xwp7ki2ix9fxpmbwiy323ld5";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/da105eab0e7a5a3a1fc562973d99cbbbe9019b5f/recipes/c-c-combo";
- sha256 = "09rvh6n2hqls7qki5dc34s2hmcmlvdsbgzcxgglhcmrhwx5w4vxn";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/c-c-combo";
- license = lib.licenses.free;
- };
- }) {};
- c-eldoc = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "c-eldoc";
- ename = "c-eldoc";
- version = "20181108.2039";
- src = fetchFromGitHub {
- owner = "nflath";
- repo = "c-eldoc";
- rev = "e35c0e40f71c25804919f6c01fd27e95c2e2adb7";
- sha256 = "0rwxlq8w6507lkvvj0krwvg4ai1wyj466nhns1f857kry7cssnzy";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/c-eldoc";
- sha256 = "13grkww14w39y2x6mrbfa9nzljsnl5l7il8dnj6sjdyv0hz9x8vm";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/c-eldoc";
- license = lib.licenses.free;
- };
- }) {};
- c0-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "c0-mode";
- ename = "c0-mode";
- version = "20151110.1052";
- src = fetchFromGitHub {
- owner = "catern";
- repo = "c0-mode";
- rev = "c214093c36864d6208fcb9e6a72413ed17ed5d60";
- sha256 = "10k90r4ckkkdjn9pqcbfyp6ynvrd5k0ngqcn5d0v1qvkn6jifxjx";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/268115452d9c22a6f2627cec1eb122b47e85b88c/recipes/c0-mode";
- sha256 = "0s3h4b3lpz4jsk222yyfdxh780dvykhaqgyv6r3ambz95vrmmpl4";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/c0-mode";
- license = lib.licenses.free;
- };
- }) {};
- cabledolphin = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , seq }:
- melpaBuild {
- pname = "cabledolphin";
- ename = "cabledolphin";
- version = "20160204.138";
- src = fetchFromGitHub {
- owner = "legoscia";
- repo = "cabledolphin";
- rev = "fffc192cafa61558e924323d6da8166fe5f2a6f9";
- sha256 = "1h395hvia7r76zlgr10qdr9q2159qyrs89znhkp2czikwm8kjiqk";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/0c8bd2715aec4793abc37d6899adabd568955a08/recipes/cabledolphin";
- sha256 = "04slrx0vkcm66q59158limn0cpxn18ghlqyx7z8nrn7frrc03z03";
- name = "recipe";
- };
- packageRequires = [ emacs seq ];
- meta = {
- homepage = "https://melpa.org/#/cabledolphin";
- license = lib.licenses.free;
- };
- }) {};
- cache = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "cache";
- ename = "cache";
- version = "20111019.1600";
- src = fetchFromGitHub {
- owner = "nflath";
- repo = "cache";
- rev = "7499586b6c8224df9f5c5bc4dec96b008258d580";
- sha256 = "1hp6dk84vvgkmj5lzghvqlpq3axwzgx9c7gly2yx6497fgf9jlby";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/cache";
- sha256 = "15pj7f4n0lk8qqsfafdj19iy0hz4xpfcf2fnby7ziq2dldyqrax9";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/cache";
- license = lib.licenses.free;
- };
- }) {};
cacoo = callPackage ({ concurrent
, fetchFromGitHub
, fetchurl
@@ -8683,58 +4832,6 @@
license = lib.licenses.free;
};
}) {};
- cakecrumbs = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "cakecrumbs";
- ename = "cakecrumbs";
- version = "20180928.1839";
- src = fetchFromGitHub {
- owner = "kuanyui";
- repo = "cakecrumbs.el";
- rev = "cf8c1df885eee004602f73c4f841301e200e5850";
- sha256 = "0s5ga39dpn9rjxjk5inkylqh56w3qgaq2wmwwgv5gsydqdyil31f";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/c970907affeb4a21fa1b7c350edf171dbdcd8de5/recipes/cakecrumbs";
- sha256 = "1s5j8w0y47qpdq4f34l7hmdhxp560wg1lgzqz6p3p3lg1l89sv47";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/cakecrumbs";
- license = lib.licenses.free;
- };
- }) {};
- cal-china-x = callPackage ({ cl-lib ? null
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "cal-china-x";
- ename = "cal-china-x";
- version = "20180211.1101";
- src = fetchFromGitHub {
- owner = "xwl";
- repo = "cal-china-x";
- rev = "e9b309065829af3a9a0c526509bd64d9228fdced";
- sha256 = "0wipcsr0dry2r9sw7lcz5hw16b5gpax7qr2nbdlcwj3j9axqipyg";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/c1098d34012fa72f8c8c30d5f0f495fdbe1d3d65/recipes/cal-china-x";
- sha256 = "06mh2p14m2axci8vy1hr7jpy53jj215z0djyn8h7zpr0k62ajhka";
- name = "recipe";
- };
- packageRequires = [ cl-lib ];
- meta = {
- homepage = "https://melpa.org/#/cal-china-x";
- license = lib.licenses.free;
- };
- }) {};
calendar-norway = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -8810,31 +4907,6 @@
license = lib.licenses.free;
};
}) {};
- calfw-gcal = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "calfw-gcal";
- ename = "calfw-gcal";
- version = "20120111.200";
- src = fetchFromGitHub {
- owner = "myuhe";
- repo = "calfw-gcal.el";
- rev = "14aab20687d6cc9e6c5ddb9e11984c4e14c3d870";
- sha256 = "14n5rci4bkbl7037xvkd69gfxnjlgvd2j1xzciqcgz92f06ir3xi";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/calfw-gcal";
- sha256 = "0pzjs8kvf9vxdzziq7zd59vniq21k4a6yygpv4fz2by3s3bvnrid";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/calfw-gcal";
- license = lib.licenses.free;
- };
- }) {};
calfw-howm = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -8940,31 +5012,6 @@
license = lib.licenses.free;
};
}) {};
- calmer-forest-theme = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "calmer-forest-theme";
- ename = "calmer-forest-theme";
- version = "20130925.2210";
- src = fetchFromGitHub {
- owner = "caldwell";
- repo = "calmer-forest-theme";
- rev = "31a0bed8e5db1e314557175a719a10804ac089f4";
- sha256 = "1rqd46ngnjln6vvcx7vsmwsjn4r3wfdpip6gqjqbsznav2g74bra";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/edb51491e575ef64a705cd0b972de07993f185cf/recipes/calmer-forest-theme";
- sha256 = "0riz5n8fzvxdnzgg650xqc2zwc4xvhwjlrrzls5h0pl5adaxz96p";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/calmer-forest-theme";
- license = lib.licenses.free;
- };
- }) {};
camcorder = callPackage ({ cl-lib ? null
, emacs
, fetchFromGitHub
@@ -9000,16 +5047,16 @@
melpaBuild {
pname = "caml";
ename = "caml";
- version = "20190121.716";
+ version = "4.7.1";
src = fetchFromGitHub {
owner = "ocaml";
- repo = "caml-mode";
- rev = "cd1142f1e6a9ad8d763688877ce76b2a7436d750";
- sha256 = "1zzsjibiyl947fir1j0swzsq7pk4l1jh8dn86by24zgcpm14gj3c";
+ repo = "ocaml";
+ rev = "ca71bda2ac7e5143f58fa9a1693f97e709a91332";
+ sha256 = "1ksx2ym5s68m87rnjjkdwhp5ci6cfw0yhmjjmq1r4a0d0r77x4lr";
};
recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/42667ee0d64bce19ad9081a4fae163a9655641d4/recipes/caml";
- sha256 = "0hpxvvgq9nxcbxq9dm1sia3ph2h7p07pp48jz77pr786lrw67la0";
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/d5a3263cdcc229b11a3e96edbf632d56f32c47aa/recipes/caml";
+ sha256 = "1ixs0626nsg1ilqdwj5rd8kicjy7mprswwy0kprppmpmc8y7xf7c";
name = "recipe";
};
packageRequires = [];
@@ -9047,58 +5094,6 @@
license = lib.licenses.free;
};
}) {};
- capture = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "capture";
- ename = "capture";
- version = "20130828.944";
- src = fetchFromGitHub {
- owner = "pashinin";
- repo = "capture.el";
- rev = "9140c207b48b3520a2f06674b3e1bee2fc92b80c";
- sha256 = "1fqqiari3r2dib65gc1jayhj5rca249g1ll9lxdcc7mfifjc4pqk";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/bdfe43be6c5f77845e82745534a1b1a9eb190466/recipes/capture";
- sha256 = "1hxrvyq8my5886q7wj5w3mhyja7d6cf19gyclap492ci7kmrkdk2";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/capture";
- license = lib.licenses.free;
- };
- }) {};
- carbon-now-sh = callPackage ({ dash
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "carbon-now-sh";
- ename = "carbon-now-sh";
- version = "20180331.1035";
- src = fetchFromGitHub {
- owner = "veelenga";
- repo = "carbon-now-sh.el";
- rev = "b5f1e5487301b230078f3ab8032e19969d738aea";
- sha256 = "1x987rvbz56ppjys7xbkzkn53cdjzxay3nkvr9w555kc24qsg2qf";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/b79bb8af3c149b2d131813c5308141e0e06adccf/recipes/carbon-now-sh";
- sha256 = "1casq1b71rlwanayixs6rrn96jn1w7bzkq77lg0ini5hrfd3w18p";
- name = "recipe";
- };
- packageRequires = [ dash emacs ];
- meta = {
- homepage = "https://melpa.org/#/carbon-now-sh";
- license = lib.licenses.free;
- };
- }) {};
cargo = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -9126,32 +5121,6 @@
license = lib.licenses.free;
};
}) {};
- caroline-theme = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "caroline-theme";
- ename = "caroline-theme";
- version = "20160317.2220";
- src = fetchFromGitHub {
- owner = "xjackk";
- repo = "caroline-theme";
- rev = "222fd483db304509f9e422dc82883d808e023ceb";
- sha256 = "055w1spba0q9rqqg4rjds0iakr9d8xg66959xahxq8268mq5446n";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/caroline-theme";
- sha256 = "178nxcz73lmvnjcr6x6as25d8m5knc21jpr66b4rg0rmlmhchkal";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/caroline-theme";
- license = lib.licenses.free;
- };
- }) {};
caseformat = callPackage ({ cl-lib ? null
, dash
, emacs
@@ -9349,136 +5318,6 @@
license = lib.licenses.free;
};
}) {};
- cc-cedict = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "cc-cedict";
- ename = "cc-cedict";
- version = "20181217.312";
- src = fetchFromGitHub {
- owner = "xuchunyang";
- repo = "cc-cedict.el";
- rev = "7dd6e8a99c634c9eff5fa2931ad8828ff02dbd90";
- sha256 = "1clpwp5vp9rlnms3xfr4c0ddhc3cxl3vv76jasxiqjzidjs8n090";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/368aaef30c5c4f38d9d2dd09f966e3dcc2463e11/recipes/cc-cedict";
- sha256 = "1h8i9nfd66ayka5vkm1lp5crr4nm1bzi4sak0xid85fzgmx364vr";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/cc-cedict";
- license = lib.licenses.free;
- };
- }) {};
- ccc = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "ccc";
- ename = "ccc";
- version = "20151205.543";
- src = fetchFromGitHub {
- owner = "skk-dev";
- repo = "ddskk";
- rev = "e18c04d63712a5b40853bee3ca3f1bde8ba5bdba";
- sha256 = "17grxms81xb00bhg8j2yzc3j74njakgv4r80w0vj8fp1357j12xd";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/7375cab750a67ede1a021b6a4371b678a7b991b0/recipes/ccc";
- sha256 = "0fckhmz4svcg059v4acbn13yf3ijs09fxmq1axc1b9bm3xxig2cq";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/ccc";
- license = lib.licenses.free;
- };
- }) {};
- ccls = callPackage ({ dash
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , lsp-mode
- , melpaBuild
- , projectile }:
- melpaBuild {
- pname = "ccls";
- ename = "ccls";
- version = "20181225.53";
- src = fetchFromGitHub {
- owner = "MaskRay";
- repo = "emacs-ccls";
- rev = "8345c08d1d8fb784d3cc8b35bfbaedfa1861cc2e";
- sha256 = "1bs4jx36vrkrdfr6ah6hcy19fyv73d39dgrl8w6j555ahswk2c9h";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/be27a4022d58860917a659fce2b7d7791fbea4e2/recipes/ccls";
- sha256 = "0kiv0n6pdpa75wjcimpwccwbjbhga4gjnphjrkpj4qz5qv42rbnm";
- name = "recipe";
- };
- packageRequires = [ dash emacs lsp-mode projectile ];
- meta = {
- homepage = "https://melpa.org/#/ccls";
- license = lib.licenses.free;
- };
- }) {};
- cd-compile = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "cd-compile";
- ename = "cd-compile";
- version = "20141108.1157";
- src = fetchFromGitHub {
- owner = "jamienicol";
- repo = "emacs-cd-compile";
- rev = "10284ccae86afda4a37b09ba90acd1e2efedec9f";
- sha256 = "1a93cim1w96aaj81clhjv25r7v9bwqm9a818mn8lk4aj1bmhgc4c";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/bca4c9e8b071497ac50a85741bf46be6eaae2135/recipes/cd-compile";
- sha256 = "1a24rv1jbb883vwhjkw6qxv3h3qy039iqkhkx3jkq1ydidr9f0hv";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/cd-compile";
- license = lib.licenses.free;
- };
- }) {};
- cdb = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "cdb";
- ename = "cdb";
- version = "20151205.543";
- src = fetchFromGitHub {
- owner = "skk-dev";
- repo = "ddskk";
- rev = "e18c04d63712a5b40853bee3ca3f1bde8ba5bdba";
- sha256 = "17grxms81xb00bhg8j2yzc3j74njakgv4r80w0vj8fp1357j12xd";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/b48fe069ecd95ea0f9768ecad969e0838344e45d/recipes/cdb";
- sha256 = "1gx34062h25gqsl3j1fjlklha19snvmfaw068q6bv6x9r92niqnf";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/cdb";
- license = lib.licenses.free;
- };
- }) {};
cdlatex = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -9533,31 +5372,6 @@
license = lib.licenses.free;
};
}) {};
- cedit = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "cedit";
- ename = "cedit";
- version = "20141231.814";
- src = fetchFromGitHub {
- owner = "zk-phi";
- repo = "cedit";
- rev = "0878d851b6307c162bfbddd2bb02789e5e27bc2c";
- sha256 = "1f8gdj3p54q3410c66716y3l7i7nnkmq6hqz0dg1a1sc6jwdij3v";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/0de4796054f0c616849904bacf05c74c7d2cdcf6/recipes/cedit";
- sha256 = "169sy7a1bgczwfxkkzjiggb7vdjxhrx7i3a39g6zv9f1zs6byk6m";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/cedit";
- license = lib.licenses.free;
- };
- }) {};
celery = callPackage ({ dash-functional
, deferred
, emacs
@@ -9587,108 +5401,6 @@
license = lib.licenses.free;
};
}) {};
- celestial-mode-line = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "celestial-mode-line";
- ename = "celestial-mode-line";
- version = "20180518.122";
- src = fetchFromGitHub {
- owner = "ecraven";
- repo = "celestial-mode-line";
- rev = "3f5794aca99b977f1592cf1ab4516ae7922196a1";
- sha256 = "01kdpfjnfnjll40n1zdp641gw8pk2vnv93a59lyx1mw1f30yvfr6";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/cdb1d057f76166ba32d5028f18eec7d09857f990/recipes/celestial-mode-line";
- sha256 = "1s6vn71mxfvvafjs25j12z1gnmxnkvnw716zy5ifx1bs8s5960kq";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/celestial-mode-line";
- license = lib.licenses.free;
- };
- }) {};
- centered-cursor-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "centered-cursor-mode";
- ename = "centered-cursor-mode";
- version = "20180112.755";
- src = fetchFromGitHub {
- owner = "andre-r";
- repo = "centered-cursor-mode.el";
- rev = "319636448ffb7dba5fade3b2599ed9c1fd3bf8c8";
- sha256 = "1fib5db8rjyjrr86nw1jvf30pz2zva0v21khyz7fkh2nkf8b3a7i";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/9a7a28caba49a20413dec3c3d0cc9c36b859834d/recipes/centered-cursor-mode";
- sha256 = "1yy50p3xprkqiak3vfly5s5kpbbdmxmw6fhgz13fw97553hr3w5x";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/centered-cursor-mode";
- license = lib.licenses.free;
- };
- }) {};
- centered-window = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "centered-window";
- ename = "centered-window";
- version = "20171127.149";
- src = fetchFromGitHub {
- owner = "anler";
- repo = "centered-window-mode";
- rev = "1234a364c9fa3a54087884ced2a7357b93fbb5d7";
- sha256 = "1z3zi6zy1z68g4sfiv21l998n04hbbqp660khind6ap8yjjn8ik8";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/58bfd795d4d620f0c83384fb03008e129c71dc09/recipes/centered-window";
- sha256 = "0w6na4ld79bpmkiv6glbrphc32v6g2rcrpi28259i94jhgy1kxqk";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/centered-window";
- license = lib.licenses.free;
- };
- }) {};
- centimacro = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "centimacro";
- ename = "centimacro";
- version = "20140306.627";
- src = fetchFromGitHub {
- owner = "abo-abo";
- repo = "centimacro";
- rev = "1b97a9b558ed9c49d5da1bfbf29b2506575c2742";
- sha256 = "0zqrpaq9c3lm12jxnvysh8f3m3193k22zaj0ycscdqd1jpq4wcgh";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/de048d6e5d11a42d92de1938fd74fd37146a5a89/recipes/centimacro";
- sha256 = "1qbyfi6s4hdp5sv394w3sib8g2kx06i06q8gh6hdv5pis5kq9fx6";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/centimacro";
- license = lib.licenses.free;
- };
- }) {};
cerbere = callPackage ({ f
, fetchFromGitHub
, fetchurl
@@ -9769,61 +5481,6 @@
license = lib.licenses.free;
};
}) {};
- cff = callPackage ({ cl-lib ? null
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "cff";
- ename = "cff";
- version = "20160118.1218";
- src = fetchFromGitHub {
- owner = "fourier";
- repo = "cff";
- rev = "b6ab2a28e64ef06f281ec74cfe3114e450644dfa";
- sha256 = "019vqjmq6hb2f5lddqy0ya5q0fd47xix29cashlchz0r034rc32r";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/c4e056132be11481aa26e89d5af1cd03925f92d1/recipes/cff";
- sha256 = "04b2ck1jkhsrka6dbyn6rpsmmc2bn13kpyhzibd781hj73d93jgc";
- name = "recipe";
- };
- packageRequires = [ cl-lib emacs ];
- meta = {
- homepage = "https://melpa.org/#/cff";
- license = lib.licenses.free;
- };
- }) {};
- cfml-mode = callPackage ({ cftag-mode
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , mmm-mode }:
- melpaBuild {
- pname = "cfml-mode";
- ename = "cfml-mode";
- version = "20170903.1949";
- src = fetchFromGitHub {
- owner = "am2605";
- repo = "cfml-mode";
- rev = "86e77dcbb583191a3e755bdc29534f33d82bfc56";
- sha256 = "0b0261ap0jiys9d0x31xg7x36kpq06fni2c0cjhi58wpcykq3s1p";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/0d28507e1109195004a371fa201d914b995c2b4e/recipes/cfml-mode";
- sha256 = "0q88lxhkzzab4jjihk0livdpn6lsmd8l2s4brcbl8402m285sylp";
- name = "recipe";
- };
- packageRequires = [ cftag-mode emacs mmm-mode ];
- meta = {
- homepage = "https://melpa.org/#/cfml-mode";
- license = lib.licenses.free;
- };
- }) {};
cframe = callPackage ({ buffer-manage
, dash
, emacs
@@ -9881,110 +5538,6 @@
license = lib.licenses.free;
};
}) {};
- cftag-mode = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "cftag-mode";
- ename = "cftag-mode";
- version = "20170811.2240";
- src = fetchFromGitHub {
- owner = "am2605";
- repo = "cfml-mode";
- rev = "395c5a9422f7bda619fd67875a8a2173aaf9c807";
- sha256 = "1q0hy0baf8vcnnbanpl3za4q5ykxm33fyq2n863jp9v6b6wbc71d";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/0914d33ebf58847fa3906b1f0d53e97ac335b334/recipes/cftag-mode";
- sha256 = "0qnq8h5nwhw464ax8qpbsvflpaar44zw0mh2y7kc358v27n3qy6c";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/cftag-mode";
- license = lib.licenses.free;
- };
- }) {};
- cg = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "cg";
- ename = "cg";
- version = "20190316.1506";
- src = fetchFromGitHub {
- owner = "emacsmirror";
- repo = "cg";
- rev = "9349600829ca1758306e703a649874f8c63955fa";
- sha256 = "1s3s37g99x19zxnq0xbiy95kjhm2hb09saxic2basapcp0sdfbwh";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/be27e728327016b819535ef8cae10020e5a07c2e/recipes/cg";
- sha256 = "1xffjilr9f2s3w7j8f3clq7qvsnr0lr8gadlybpzzy8x5fbmk4n3";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/cg";
- license = lib.licenses.free;
- };
- }) {};
- challenger-deep-theme = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "challenger-deep-theme";
- ename = "challenger-deep-theme";
- version = "20181205.1034";
- src = fetchFromGitHub {
- owner = "challenger-deep-theme";
- repo = "emacs";
- rev = "64a27ff3d7f6633234f7f1ec28a70b47a176bb04";
- sha256 = "17pmr3fbcyhhv03y9x32h0bwi2mrbqnjv9cy04ghpr3hkpgkpz65";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/3416586d4d782cdd61a56159c5f80a0ca9b3ddf4/recipes/challenger-deep-theme";
- sha256 = "02k0irp27wv1b5g2a6g86zp7cdprv17c0mlhkjsq2brls274ch3y";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/challenger-deep-theme";
- license = lib.licenses.free;
- };
- }) {};
- change-inner = callPackage ({ expand-region
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "change-inner";
- ename = "change-inner";
- version = "20150707.844";
- src = fetchFromGitHub {
- owner = "magnars";
- repo = "change-inner.el";
- rev = "52c543a4b9808c0d15b565fcdf646c9779de33e8";
- sha256 = "1m9sq93bwajbld3lnlzkjbsby5zlm9sxjzqynryyvsb9zr1d0a9z";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/change-inner";
- sha256 = "09y076vhhvp21jsvw9f5z4yk6cnmmjavg7600flxg5g27ydgix57";
- name = "recipe";
- };
- packageRequires = [ expand-region ];
- meta = {
- homepage = "https://melpa.org/#/change-inner";
- license = lib.licenses.free;
- };
- }) {};
chapel-mode = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -10113,33 +5666,6 @@
license = lib.licenses.free;
};
}) {};
- cheatsheet = callPackage ({ cl-lib ? null
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "cheatsheet";
- ename = "cheatsheet";
- version = "20170126.1350";
- src = fetchFromGitHub {
- owner = "darksmile";
- repo = "cheatsheet";
- rev = "e4f8e0110167ea16a17a74517d1f10cb7ff805b8";
- sha256 = "1vy2qmx9872hfrfcycpsmy0si481rwv4q4gwiy8f2w04zb92szbn";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/0d2cd657fcadb2dd3fd12864fe94a3465f8c9bd7/recipes/cheatsheet";
- sha256 = "11z3svlzvmhdy0pkxbx9qz9bnq056cgkbfyw9z34aq1yxazi2cpq";
- name = "recipe";
- };
- packageRequires = [ cl-lib emacs ];
- meta = {
- homepage = "https://melpa.org/#/cheatsheet";
- license = lib.licenses.free;
- };
- }) {};
checkbox = callPackage ({ cl-lib ? null
, emacs
, fetchFromGitHub
@@ -10195,184 +5721,6 @@
license = lib.licenses.free;
};
}) {};
- cheerilee = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , xelb }:
- melpaBuild {
- pname = "cheerilee";
- ename = "cheerilee";
- version = "20160313.1135";
- src = fetchFromGitHub {
- owner = "Vannil";
- repo = "cheerilee.el";
- rev = "41bd81b5b0bb657241ceda5be6af5e07254d7376";
- sha256 = "1jdlp5cnsiza55vx4kxacqgk7yqg9fvd9swhwdxkczadb2d5l9p1";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/da435df8d78b7c8d4834e00e35c69248a7043c0a/recipes/cheerilee";
- sha256 = "15igjlnq35cg9nslyqa63i1inqipx3y8g7zg4r26m69k25simqrv";
- name = "recipe";
- };
- packageRequires = [ xelb ];
- meta = {
- homepage = "https://melpa.org/#/cheerilee";
- license = lib.licenses.free;
- };
- }) {};
- chef-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "chef-mode";
- ename = "chef-mode";
- version = "20180628.753";
- src = fetchFromGitHub {
- owner = "mpasternacki";
- repo = "chef-mode";
- rev = "048d691cb63981ae235763d4a6ced4af5c729924";
- sha256 = "1niin51xwkd8q3wbwcgb0gyk3sw1829qj2p2zv7fm8ljy1jicn2d";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/4044056af824d552a2852ef1f2e7166899f56d8c/recipes/chef-mode";
- sha256 = "1pz82s82d4z3vkm8mpmwdxb9pd11kq09g23mg461lzqxjjw734rr";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/chef-mode";
- license = lib.licenses.free;
- };
- }) {};
- cherry-blossom-theme = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "cherry-blossom-theme";
- ename = "cherry-blossom-theme";
- version = "20150621.2042";
- src = fetchFromGitHub {
- owner = "inlinestyle";
- repo = "emacs-cherry-blossom-theme";
- rev = "e5ea23694c0f20ab670c0aa87214c27f2232d922";
- sha256 = "0gmbsiyh075gmv3cq9675wf6mpls5wlwgcavha31cdbsdb9frsk1";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/401ae22f11f7ee808eb696a4c1f869cd824702c0/recipes/cherry-blossom-theme";
- sha256 = "1i3kafj3m7iij5mr0vhg45zdnkl9pg9ndrq0b0i3k3mw7d5siq7w";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/cherry-blossom-theme";
- license = lib.licenses.free;
- };
- }) {};
- chicken-scheme = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "chicken-scheme";
- ename = "chicken-scheme";
- version = "20141116.1139";
- src = fetchFromGitHub {
- owner = "dleslie";
- repo = "chicken-scheme.el";
- rev = "19b0b08b5592063e852cae094b394c7d1f923639";
- sha256 = "0j61lvr99viaharg4553whcppp7lxhimkk5lps0izz9mnd8y2wm5";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/03f4992471185bf41720ff6fc725fd5fa1291a41/recipes/chicken-scheme";
- sha256 = "0ns49p7nsifpi7wrzr02ljrr0p6hxanrg54zaixakvjkxwcgfabr";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/chicken-scheme";
- license = lib.licenses.free;
- };
- }) {};
- chinese-conv = callPackage ({ cl-lib ? null
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "chinese-conv";
- ename = "chinese-conv";
- version = "20170807.1428";
- src = fetchFromGitHub {
- owner = "gucong";
- repo = "emacs-chinese-conv";
- rev = "b56815bbb163d642e97fa73093b5a7e87cc32574";
- sha256 = "1bc3yn8y60y6a4vpqv39arn1pkcpl4s4n0sz9446f6m1lcal4c3r";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/a798158829f8fd84dd3e5e3ec5987d98ff54e641/recipes/chinese-conv";
- sha256 = "1lqpq7pg0nqqqj29f8is6c724vl75wscmm1v08j480pfks3l8cnr";
- name = "recipe";
- };
- packageRequires = [ cl-lib ];
- meta = {
- homepage = "https://melpa.org/#/chinese-conv";
- license = lib.licenses.free;
- };
- }) {};
- chinese-number = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "chinese-number";
- ename = "chinese-number";
- version = "20161007.2209";
- src = fetchFromGitHub {
- owner = "zhcosin";
- repo = "chinese-number";
- rev = "1d0c440181848dfcd1d1e618b2650fb0562a32ac";
- sha256 = "1zm0wjhqsb11szvxs2rnq63396cbi6ffynpbn07p6gk5agxzfy0j";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/e608f40d00a3b2a80a6997da00e7d04f76d8ef0d/recipes/chinese-number";
- sha256 = "0cjfxhd5izahkncs2nzpdv8brsxlwr2dx4hi07ymr62cr0hh0jgy";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/chinese-number";
- license = lib.licenses.free;
- };
- }) {};
- chinese-wbim = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "chinese-wbim";
- ename = "chinese-wbim";
- version = "20150623.2050";
- src = fetchFromGitHub {
- owner = "zilongshanren";
- repo = "chinese-wbim";
- rev = "57ff61ff3895d77335709d24b40cefc4d10b0095";
- sha256 = "0cx1g6drkr8gyqqdxjf7j4wprxcbq30gam2racgnvdicgij0apwg";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/3b6b1d100ddf29d6936569d61bf4be19a24d002d/recipes/chinese-wbim";
- sha256 = "1pax3kpmvg170mpvfrjbpj9czq0xykmfbany2f7vbn96jb5xfmsb";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/chinese-wbim";
- license = lib.licenses.free;
- };
- }) {};
chinese-word-at-point = callPackage ({ cl-lib ? null
, fetchFromGitHub
, fetchurl
@@ -10399,33 +5747,6 @@
license = lib.licenses.free;
};
}) {};
- chinese-yasdcv = callPackage ({ cl-lib ? null
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , pyim }:
- melpaBuild {
- pname = "chinese-yasdcv";
- ename = "chinese-yasdcv";
- version = "20171014.1844";
- src = fetchFromGitHub {
- owner = "tumashu";
- repo = "chinese-yasdcv";
- rev = "5ab830daf1273d5a5cddcb94b56a9737f12d996f";
- sha256 = "1mv1n6m73aamxj18i851ww53q7p4ydiqgaapxyvjbm6sx8ddz9ak";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/b6d727c30d2ec0f885a927a16a442fe220a740d5/recipes/chinese-yasdcv";
- sha256 = "1y2qywldf8b8b0km1lcf74p0w6rd8gr86qcj7ikwhhbvd19dfglm";
- name = "recipe";
- };
- packageRequires = [ cl-lib pyim ];
- meta = {
- homepage = "https://melpa.org/#/chinese-yasdcv";
- license = lib.licenses.free;
- };
- }) {};
choice-program = callPackage ({ cl-lib ? null
, emacs
, fetchFromGitHub
@@ -10453,108 +5774,6 @@
license = lib.licenses.free;
};
}) {};
- chronometer = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "chronometer";
- ename = "chronometer";
- version = "20190304.728";
- src = fetchFromGitHub {
- owner = "marcelotoledo";
- repo = "chronometer";
- rev = "8457b296ef87be339cbe47730b922757d60bdcd5";
- sha256 = "1apzb0jccw91gdynqa1722bbalzj4kp9fq25zzw1rxsrgh3mgmc5";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/b20fa4885e2cdc0429d988c76b365bf34d9343db/recipes/chronometer";
- sha256 = "1kgfq9srch0amdgb4cvizlrg5xqq0hkkdq85yjr2xwsljh09m83k";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/chronometer";
- license = lib.licenses.free;
- };
- }) {};
- chronos = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "chronos";
- ename = "chronos";
- version = "20150602.829";
- src = fetchFromGitHub {
- owner = "dxknight";
- repo = "chronos";
- rev = "b360d9dae57aa553cf2a14ffa0756a51ad71de09";
- sha256 = "1mqdz3rvx0jm80fgzw3s3lqn448kqrlrifdwcg36cqq4qmkpalq4";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/53648c5699fc03e50774270f9560c727e2c22873/recipes/chronos";
- sha256 = "1fwpll0mk6pc37qagbq3b3z32d2qwz993nxp9pjw4qbmlnq6sy9d";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/chronos";
- license = lib.licenses.free;
- };
- }) {};
- chruby = callPackage ({ cl-lib ? null
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "chruby";
- ename = "chruby";
- version = "20180114.852";
- src = fetchFromGitHub {
- owner = "plexus";
- repo = "chruby.el";
- rev = "42bc6d521f832eca8e2ba210f30d03ad5529788f";
- sha256 = "06pvjw40qk017py9km26vjrh90acycnkr5r04nxf664qqkjlg2mc";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1989a3c6fa4cd7aaf6b0b202f197eb7db51936b9/recipes/chruby";
- sha256 = "0pk6vdvmifiq52n452lbrkklxa69c40bfyzra9qhrghxr2q5v3mk";
- name = "recipe";
- };
- packageRequires = [ cl-lib ];
- meta = {
- homepage = "https://melpa.org/#/chruby";
- license = lib.licenses.free;
- };
- }) {};
- chyla-theme = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "chyla-theme";
- ename = "chyla-theme";
- version = "20180302.858";
- src = fetchFromGitHub {
- owner = "chyla";
- repo = "ChylaThemeForEmacs";
- rev = "ae5e7ecace2ab474151eb0ac5ef07fba2dc32f8a";
- sha256 = "1gqzwwr3fnhd9iqn7zmqpxgxvmrhq7g849ndjwizksk0bfj3b596";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5c55eebf8df165360ce1e5d18e484c90f296fe52/recipes/chyla-theme";
- sha256 = "1mgr6483bjjwk8bi6kijyw61s52nq6g2svhy5n1jnffi3gaw7hl5";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/chyla-theme";
- license = lib.licenses.free;
- };
- }) {};
cider = callPackage ({ clojure-mode
, emacs
, fetchFromGitHub
@@ -10595,33 +5814,6 @@
license = lib.licenses.free;
};
}) {};
- cider-decompile = callPackage ({ cider
- , fetchFromGitHub
- , fetchurl
- , javap-mode
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "cider-decompile";
- ename = "cider-decompile";
- version = "20151121.2137";
- src = fetchFromGitHub {
- owner = "clojure-emacs";
- repo = "cider-decompile";
- rev = "5d87035f3c3c14025e8f01c0c53d0ce2c8f56651";
- sha256 = "1w4y65s3m2irga4iqfqqkcmvl6ss24zmaxqzbfib8jmi84r4lpac";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/0b7f7f23bb15922ce7a7dad1ae23093db72aa10c/recipes/cider-decompile";
- sha256 = "0jhsm31zcfwkbpsdh1lvmjm1fv2m7y849930sjvf5nxv3ffhx3b4";
- name = "recipe";
- };
- packageRequires = [ cider javap-mode ];
- meta = {
- homepage = "https://melpa.org/#/cider-decompile";
- license = lib.licenses.free;
- };
- }) {};
cider-eval-sexp-fu = callPackage ({ emacs
, eval-sexp-fu
, fetchFromGitHub
@@ -10676,32 +5868,6 @@
license = lib.licenses.free;
};
}) {};
- ciel = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "ciel";
- ename = "ciel";
- version = "20180914.115";
- src = fetchFromGitHub {
- owner = "cs14095";
- repo = "ciel.el";
- rev = "429773a3c551691a463ecfddd634b8bae2f48503";
- sha256 = "0xykdwsjgx44c0l5v9swkjjv0xa673krzlc71b1sc4dw9l526s4m";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/9c70c007a557ea9fb9eb4d3f8b7adbe4dac39c8a/recipes/ciel";
- sha256 = "0rz7z3shhsvky91b581nn3hw760nlsc94fl35flm1973kvm9lvdp";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/ciel";
- license = lib.licenses.free;
- };
- }) {};
cil-mode = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -10727,35 +5893,6 @@
license = lib.licenses.free;
};
}) {};
- cinspect = callPackage ({ cl-lib ? null
- , deferred
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , python-environment }:
- melpaBuild {
- pname = "cinspect";
- ename = "cinspect";
- version = "20150715.1933";
- src = fetchFromGitHub {
- owner = "inlinestyle";
- repo = "cinspect-mode";
- rev = "4e199a90f89b335cccda1518aa0963e0a1d4fbab";
- sha256 = "190n4kdcqdwglhnawnj9mqjarmcaqylxipc07whmrii0jv279kjw";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1e5b5bdbfeb59ed8e98e50d0cc773d78c72d1699/recipes/cinspect";
- sha256 = "0djh61mrfgcm3767ll1l5apw6646j4fdcaripksrmvn5aqfn8rjj";
- name = "recipe";
- };
- packageRequires = [ cl-lib deferred emacs python-environment ];
- meta = {
- homepage = "https://melpa.org/#/cinspect";
- license = lib.licenses.free;
- };
- }) {};
circadian = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -10944,133 +6081,6 @@
license = lib.licenses.free;
};
}) {};
- clang-format = callPackage ({ cl-lib ? null
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "clang-format";
- ename = "clang-format";
- version = "20180406.814";
- src = fetchFromGitHub {
- owner = "emacsmirror";
- repo = "clang-format";
- rev = "38ee476c47c3998f04a8cba9c18d0e2f806fe968";
- sha256 = "0zlw1qdchzpr93wqmkn7590w0frmhvd82jjfl1dngwa8j14pf97k";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/be27e728327016b819535ef8cae10020e5a07c2e/recipes/clang-format";
- sha256 = "0v8nvgjadzmsz088q6cgli5s99z45bz9qb508qln1yips42zn258";
- name = "recipe";
- };
- packageRequires = [ cl-lib ];
- meta = {
- homepage = "https://melpa.org/#/clang-format";
- license = lib.licenses.free;
- };
- }) {};
- clean-aindent-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "clean-aindent-mode";
- ename = "clean-aindent-mode";
- version = "20171017.1343";
- src = fetchFromGitHub {
- owner = "pmarinov";
- repo = "clean-aindent-mode";
- rev = "a97bcae8f43a9ff64e95473e4ef0d8bafe829211";
- sha256 = "07dgx09j6nn5dl9vpqfcs5yqm79kza3h3r1lb7r09wpkmrg0c2cr";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/ee9dac7c10e652f026643620418dfea9237a0d23/recipes/clean-aindent-mode";
- sha256 = "1whzbs2gg2ar24kw29ffv94dgvrlfy2v4zdn0g7ksjjmmdr8ahh4";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/clean-aindent-mode";
- license = lib.licenses.free;
- };
- }) {};
- clean-buffers = callPackage ({ cl-lib ? null
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "clean-buffers";
- ename = "clean-buffers";
- version = "20160529.1559";
- src = fetchFromGitHub {
- owner = "lujun9972";
- repo = "clean-buffers";
- rev = "1be6c54e3095761b6b64bf749faae3dfce94e72a";
- sha256 = "1h7kmj53fqwfzam3ywz3yn4abl2n94v0lxnyv7x4qzwi2ggizc3l";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/7fcabd17d7de9af443198ac9c2996bfbd94324de/recipes/clean-buffers";
- sha256 = "025sxrqxm24yg1wpfncrjw1nm91h0h7jy2xd5g20xqlinqqvdihj";
- name = "recipe";
- };
- packageRequires = [ cl-lib ];
- meta = {
- homepage = "https://melpa.org/#/clean-buffers";
- license = lib.licenses.free;
- };
- }) {};
- clear-text = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "clear-text";
- ename = "clear-text";
- version = "20160406.1343";
- src = fetchFromGitHub {
- owner = "xuchunyang";
- repo = "clear-text.el";
- rev = "b50669b6077d6948f72cb3c649281d206e0c2f2b";
- sha256 = "0y5z2pfhzpv67w2lnw1q06mflww90sfcilj89kqx2jhhrnrnn2ka";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/d2ae86a3001587ba753fcd0ca5137cb65d38910d/recipes/clear-text";
- sha256 = "1cx2lbcbhd024pq9njan7xrlvj3k4c3wdsvgbz5qyna0k06ix8dv";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/clear-text";
- license = lib.licenses.free;
- };
- }) {};
- clevercss = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "clevercss";
- ename = "clevercss";
- version = "20131228.1755";
- src = fetchFromGitHub {
- owner = "jschaf";
- repo = "CleverCSS-Mode";
- rev = "b8a3c0dd674367c62b1a1ffec84d88fe0c0219bc";
- sha256 = "19q6zbnl9fg4cwgi56d7p4qp6y3g0fdyihinpakby49xv2n2k8dx";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/ec88232feb9d0a04278d5f615bb0ee0833ecb8ca/recipes/clevercss";
- sha256 = "189f2l4za1j9ds0bhxrzyp7da9p6svh5dx2vnzf4vql7qhjk3gf0";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/clevercss";
- license = lib.licenses.free;
- };
- }) {};
click-mode = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -11124,57 +6134,6 @@
license = lib.licenses.free;
};
}) {};
- clipmon = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "clipmon";
- ename = "clipmon";
- version = "20180129.254";
- src = fetchFromGitHub {
- owner = "bburns";
- repo = "clipmon";
- rev = "95dc56c7ed84a654ec90f4740eb6df1050de8cf1";
- sha256 = "0mfb4k0i71y49hn0xk5a1mv4zaj249qcan0y0nzvgf7mmvr32n9w";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/e608f40d00a3b2a80a6997da00e7d04f76d8ef0d/recipes/clipmon";
- sha256 = "0qhav3scmk3zsa7v3hg3zczps0as3mzrz3cl34n3xlvf4f6ifd9k";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/clipmon";
- license = lib.licenses.free;
- };
- }) {};
- clippy = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , pos-tip }:
- melpaBuild {
- pname = "clippy";
- ename = "clippy";
- version = "20161028.1254";
- src = fetchFromGitHub {
- owner = "Fuco1";
- repo = "clippy.el";
- rev = "ad4b5dba4cede6d4b21533186303d3d3e9a2510f";
- sha256 = "0rnqwzbr5hdap276ana0iz3lk2ih8kkj1m9cydavqqdrwzk4ldrm";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/e3743596c4b6387351684b1bf00f17275b8e59e8/recipes/clippy";
- sha256 = "0nqmc8f2qrsp25vzc66xw6b232n7fyw6g06mwn2cdpm3d2pgb7rg";
- name = "recipe";
- };
- packageRequires = [ pos-tip ];
- meta = {
- homepage = "https://melpa.org/#/clippy";
- license = lib.licenses.free;
- };
- }) {};
clips-mode = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -11276,82 +6235,6 @@
license = lib.licenses.free;
};
}) {};
- cljsbuild-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "cljsbuild-mode";
- ename = "cljsbuild-mode";
- version = "20160402.1000";
- src = fetchFromGitHub {
- owner = "kototama";
- repo = "cljsbuild-mode";
- rev = "fa2315660cb3ce944b5e16c679dcf5afd6a97f4c";
- sha256 = "0flnfivz6w3pkham3g08m3xzy3jg1rzvxfa00vkr7ll8iyv4ypqc";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/d801a2e0ba5ae7c65b5d312fbf41261278a8b1ba/recipes/cljsbuild-mode";
- sha256 = "0qvb990dgq4v75lwnd661wxszbdbhlgxpsyv4zaj6h10gp1vi214";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/cljsbuild-mode";
- license = lib.licenses.free;
- };
- }) {};
- clmemo = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "clmemo";
- ename = "clmemo";
- version = "20160326.923";
- src = fetchFromGitHub {
- owner = "ataka";
- repo = "clmemo";
- rev = "846a81b984d71edf8278a4d9f9b886e44d5b8365";
- sha256 = "152qf7i5bf7xvr35gyawl8abkh7v5dsz957zxslrbbnc8bb1k6bz";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/e98b438990dc0dbda264fb4bf7a3237a2661baab/recipes/clmemo";
- sha256 = "03qa79ip0gqinj1kk898lcvixk98hf6gknz0yc2fnqcrm642k2vs";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/clmemo";
- license = lib.licenses.free;
- };
- }) {};
- cloc = callPackage ({ cl-lib ? null
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "cloc";
- ename = "cloc";
- version = "20170728.1124";
- src = fetchFromGitHub {
- owner = "cosmicexplorer";
- repo = "cloc-emacs";
- rev = "f30f0472e465cc8d433d2473e9d3b8dfe2c94491";
- sha256 = "0g8hklc0914dsi3ks7g251w58ixa78qsh87dx914cc8sahpc0ws2";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/0dd7a641efd13aa0bd7509d8a5b0a28e3a0493c8/recipes/cloc";
- sha256 = "1ny5wixa9x4fq5jvhs01jmyvwkfvwwi9aamrcqsl42s9sx6ygz7a";
- name = "recipe";
- };
- packageRequires = [ cl-lib ];
- meta = {
- homepage = "https://melpa.org/#/cloc";
- license = lib.licenses.free;
- };
- }) {};
clocker = callPackage ({ dash
, fetchFromGitHub
, fetchurl
@@ -11379,32 +6262,6 @@
license = lib.licenses.free;
};
}) {};
- clojars = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , request-deferred }:
- melpaBuild {
- pname = "clojars";
- ename = "clojars";
- version = "20180825.1251";
- src = fetchFromGitHub {
- owner = "joshuamiller";
- repo = "clojars.el";
- rev = "c78e4d5ddacda064c253e2b38d1c35188aa1ad71";
- sha256 = "1xa0c3i8mq3n8mh37i5avgfkcnjyqkg6h668d9lf3w0bnz5cw0x7";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/7f766319c3e18a41017684ea503b0382e96ab31b/recipes/clojars";
- sha256 = "1skvd29347hwapgdqznbzwfcp2nf077qkdzknxc8ylmqa32yf5w1";
- name = "recipe";
- };
- packageRequires = [ request-deferred ];
- meta = {
- homepage = "https://melpa.org/#/clojars";
- license = lib.licenses.free;
- };
- }) {};
clojure-mode = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -11566,56 +6423,6 @@
license = lib.licenses.free;
};
}) {};
- closure-lint-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "closure-lint-mode";
- ename = "closure-lint-mode";
- version = "20101118.1324";
- src = fetchFromGitHub {
- owner = "r0man";
- repo = "closure-lint-mode";
- rev = "bc3d2fd5c35580bf1b8af43b12484c95a343b4b5";
- sha256 = "0v0wdq0b5jz4x0d7dl3ilgf3aqp2hk375db366ij6gxwd0b9i3na";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/closure-lint-mode";
- sha256 = "11kxgvfwngdjryrrihlpn0509axwv4zwkxzs4h1pw5vi7sv1n6xd";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/closure-lint-mode";
- license = lib.licenses.free;
- };
- }) {};
- cloud-to-butt-erc = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "cloud-to-butt-erc";
- ename = "cloud-to-butt-erc";
- version = "20130627.1608";
- src = fetchFromGitHub {
- owner = "leathekd";
- repo = "cloud-to-butt-erc";
- rev = "6710c03d1bc91736435cbfe845924940cae34e5c";
- sha256 = "07kvnb6p35swkyj92c4wymsqq4r2885wdpqhv7nhicvi6n658kpf";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/b12354152cce6e9a281dc26018c763b6f93e3cee/recipes/cloud-to-butt-erc";
- sha256 = "061mmw39dq8sqzi2589lf7svy15n2iyiwbfiram48r2yhma5dd0f";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/cloud-to-butt-erc";
- license = lib.licenses.free;
- };
- }) {};
clues-theme = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -11668,32 +6475,6 @@
license = lib.licenses.free;
};
}) {};
- cmake-font-lock = callPackage ({ cmake-mode
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "cmake-font-lock";
- ename = "cmake-font-lock";
- version = "20190324.2150";
- src = fetchFromGitHub {
- owner = "Lindydancer";
- repo = "cmake-font-lock";
- rev = "5b71ab212f272b7c62a9e7b21aa43a2533330b39";
- sha256 = "0ykk5sgxnh77qb61k39fy9vpbgv2hgv5gkh9df1jfyj5lhxxxdcq";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/383a7f191c10916ad40284fba94f967765ffeb7e/recipes/cmake-font-lock";
- sha256 = "0ws4kd94m8fh55d7whsf3rj9qrxjp1wsgxh0valsjxyp2ck9zrz0";
- name = "recipe";
- };
- packageRequires = [ cmake-mode ];
- meta = {
- homepage = "https://melpa.org/#/cmake-font-lock";
- license = lib.licenses.free;
- };
- }) {};
cmake-ide = callPackage ({ cl-lib ? null
, emacs
, fetchFromGitHub
@@ -11773,59 +6554,6 @@
license = lib.licenses.free;
};
}) {};
- cmd-to-echo = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , s
- , shell-split-string }:
- melpaBuild {
- pname = "cmd-to-echo";
- ename = "cmd-to-echo";
- version = "20161203.1333";
- src = fetchFromGitHub {
- owner = "mallt";
- repo = "cmd-to-echo";
- rev = "e0e874fc0e1ad6d291e39ed76023445297ad438a";
- sha256 = "0wi097yk9p1xcfmps1g58xvvlv60akwky4y0pxdz6pa31w9jd1q8";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/cmd-to-echo";
- sha256 = "1b4mw1ips4695ixgw2hyinq9ry3bx4d1842kr7k6155a1v34s4zh";
- name = "recipe";
- };
- packageRequires = [ emacs s shell-split-string ];
- meta = {
- homepage = "https://melpa.org/#/cmd-to-echo";
- license = lib.licenses.free;
- };
- }) {};
- cmm-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "cmm-mode";
- ename = "cmm-mode";
- version = "20150224.2346";
- src = fetchFromGitHub {
- owner = "bgamari";
- repo = "cmm-mode";
- rev = "c3ad514dff3eb30434f6b20d953276d4c00de1ee";
- sha256 = "0xdcw329d2gssx86iajwrgpr7yv69b9nflmzjgb4jvg4pskj4pgx";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/07579854200302cf69e120648f4983961e628f7d/recipes/cmm-mode";
- sha256 = "184b8x19cnvx8z4dr9alv62wchzc7vr7crzz8jiyqw9d544zs50h";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/cmm-mode";
- license = lib.licenses.free;
- };
- }) {};
cnfonts = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -11852,109 +6580,6 @@
license = lib.licenses.free;
};
}) {};
- cobalt = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "cobalt";
- ename = "cobalt";
- version = "20180304.355";
- src = fetchFromGitHub {
- owner = "cobalt-org";
- repo = "cobalt.el";
- rev = "634ace275697e188746ca22a30ff94380ec756be";
- sha256 = "1mrydmzldgabkkdpmlwfrfb6iddj4by7scc14k9bak5y6hj6ix7l";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/b2435d98e7564d333c8224b67ac6ad9c95debda1/recipes/cobalt";
- sha256 = "0r3fx1xx24x4qapbj2p8krc67rjmrjm88y89baf1x2swk7xdza92";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/cobalt";
- license = lib.licenses.free;
- };
- }) {};
- cobra-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "cobra-mode";
- ename = "cobra-mode";
- version = "20140116.1316";
- src = fetchFromGitHub {
- owner = "Nekroze";
- repo = "cobra-mode";
- rev = "acd6e53f6286af5176471d01f25257e5ddb6dd01";
- sha256 = "1sx8grp3j7zcma3nb7zj6kijkdqx166vw1qgmm29hvx48bys6vlp";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/e986942c391f50fb633097f2f31969a8aeecb99e/recipes/cobra-mode";
- sha256 = "11jscpbclxlq2xqy2nsfa4y575bp8h0kpkp8cfjqb05lm5ybcp89";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/cobra-mode";
- license = lib.licenses.free;
- };
- }) {};
- code-archive = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "code-archive";
- ename = "code-archive";
- version = "20180705.1913";
- src = fetchFromGitHub {
- owner = "mschuldt";
- repo = "code-archive";
- rev = "735ba47be3db59d9af784f2a47f8585caa55a6fd";
- sha256 = "1q022cw22xzn2ragx113ir04z37ff8y66fgc7hzcs32xs3l03g6z";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/a8d0832eff966874d90e1d5ac1043c03e96b1c25/recipes/code-archive";
- sha256 = "0rj7cvwzhgam25jxjw5aqx9cxa86008gx2mwcyjlbnjrkhcbi97a";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/code-archive";
- license = lib.licenses.free;
- };
- }) {};
- code-library = callPackage ({ fetchFromGitHub
- , fetchurl
- , gist
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "code-library";
- ename = "code-library";
- version = "20160426.518";
- src = fetchFromGitHub {
- owner = "lujun9972";
- repo = "code-library";
- rev = "3c79338eae5c892bfb4e4882298422d9fd65d2d7";
- sha256 = "0gc56pdyzcnv3q1a82c79i8w58q9r6ccfix9s1s6msjxzxkznap5";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/197bdc508c4fd9712125553a108ca6c9fedcaefc/recipes/code-library";
- sha256 = "0gi8lz2q0vis4nyziykq15jp3m3vykfwycbk6amhf1ybkn9k3ywj";
- name = "recipe";
- };
- packageRequires = [ gist ];
- meta = {
- homepage = "https://melpa.org/#/code-library";
- license = lib.licenses.free;
- };
- }) {};
code-stats = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -11982,57 +6607,6 @@
license = lib.licenses.free;
};
}) {};
- codebug = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "codebug";
- ename = "codebug";
- version = "20140929.1437";
- src = fetchFromGitHub {
- owner = "shano";
- repo = "emacs-codebug";
- rev = "d95e5182fa1465406964873d9db1fdac77206f5b";
- sha256 = "1a3ifz9bv4ai9hiyvx0x3f9ygnrv6aqgpa6hxidhxdgg4ph5i4di";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/35cd654bd7b390518eb5ddca8842bdfcc9e9e6f1/recipes/codebug";
- sha256 = "1cb2wvawp3wqslhgbmbw9xwcqgwfscqg0jfgqzi3nr42mjp9zgqj";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/codebug";
- license = lib.licenses.free;
- };
- }) {};
- codesearch = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , log4e
- , melpaBuild }:
- melpaBuild {
- pname = "codesearch";
- ename = "codesearch";
- version = "20181006.731";
- src = fetchFromGitHub {
- owner = "abingham";
- repo = "emacs-codesearch";
- rev = "f6eb96f034a925444412cfa03e45e0ccbbafe3f2";
- sha256 = "1xdkm1f04z1h3ivd6zm8hckf3n3fbi5rwybg4dwi5mim6w84i7j9";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/0da1c6971ac2d3e9ee67731d00a9e8ca2d169826/recipes/codesearch";
- sha256 = "1zm7fqwiknk07c8aks1silnkxifkfbdzvbzg77wrap48k8mnw03l";
- name = "recipe";
- };
- packageRequires = [ log4e ];
- meta = {
- homepage = "https://melpa.org/#/codesearch";
- license = lib.licenses.free;
- };
- }) {};
codic = callPackage ({ cl-lib ? null
, emacs
, fetchFromGitHub
@@ -12060,32 +6634,6 @@
license = lib.licenses.free;
};
}) {};
- coffee-fof = callPackage ({ coffee-mode
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "coffee-fof";
- ename = "coffee-fof";
- version = "20131012.530";
- src = fetchFromGitHub {
- owner = "yasuyk";
- repo = "coffee-fof";
- rev = "211529594bc074721c6cbc4edb73a63cc05f89ac";
- sha256 = "010v886ak0rbbhqwxwj6m0mkgh19s232igy7wwbv07l2pdqszf3p";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/9024e5a71c992509a1dea5f673a31b806d5e175e/recipes/coffee-fof";
- sha256 = "02cqza46qp8y69jd33cg4nmcgvrpwz23vyxqnmzwwvlmnbky96yc";
- name = "recipe";
- };
- packageRequires = [ coffee-mode ];
- meta = {
- homepage = "https://melpa.org/#/coffee-fof";
- license = lib.licenses.free;
- };
- }) {};
coffee-mode = callPackage ({ cl-lib ? null
, emacs
, fetchFromGitHub
@@ -12113,85 +6661,6 @@
license = lib.licenses.free;
};
}) {};
- coin-ticker = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , request }:
- melpaBuild {
- pname = "coin-ticker";
- ename = "coin-ticker";
- version = "20170611.27";
- src = fetchFromGitHub {
- owner = "eklitzke";
- repo = "coin-ticker-mode";
- rev = "45108e239e1d129c0cc1ff37f2870cf73087780b";
- sha256 = "1xqp9p19az4ajbaj734vn0fn6z3hbq44m4clj5xvd0rddai9c57n";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/fd783998658b69159e39d9440da7a0dd04135e49/recipes/coin-ticker";
- sha256 = "0v4zyswhghknlsal9xfsgwf8ckjwrjkjrg8w7p6yjqrxmfsbw93b";
- name = "recipe";
- };
- packageRequires = [ emacs request ];
- meta = {
- homepage = "https://melpa.org/#/coin-ticker";
- license = lib.licenses.free;
- };
- }) {};
- colemak-evil = callPackage ({ evil
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "colemak-evil";
- ename = "colemak-evil";
- version = "20171015.1607";
- src = fetchFromGitHub {
- owner = "patbl";
- repo = "colemak-evil";
- rev = "192c779281ae1fbf2405dcdb55b3c5b2a1d0b3d1";
- sha256 = "1clnvr7n6mx5b8pq1c6zchq7n1g8ip8hwgzc61ywrmiyv0v8rnc6";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/0f0750a3f9537782ee61d6e56c51ce7b86def12e/recipes/colemak-evil";
- sha256 = "1bfzs5px1k6g3cnwjdaq2m78bbnfy3lxhjzkcch7zdv3nyacwl5z";
- name = "recipe";
- };
- packageRequires = [ evil ];
- meta = {
- homepage = "https://melpa.org/#/colemak-evil";
- license = lib.licenses.free;
- };
- }) {};
- colonoscopy-theme = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "colonoscopy-theme";
- ename = "colonoscopy-theme";
- version = "20170808.609";
- src = fetchFromGitHub {
- owner = "emacsfodder";
- repo = "emacs-colonoscopy-theme";
- rev = "64bbb322b13dae91ce9f1e3581f836f94f800ead";
- sha256 = "1r0is6zjkzikm565fvmj0gx8ms5ig9l5xihnka4fig7jy6ak33z5";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/641d1959bd31598fcdacd39a3d1bb077dcccfa5c/recipes/colonoscopy-theme";
- sha256 = "0x9bfr4j0sp41jkgnyjlaxnnjjrc102x6sznn6cgcmqk5qhswl4q";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/colonoscopy-theme";
- license = lib.licenses.free;
- };
- }) {};
color-identifiers-mode = callPackage ({ dash
, emacs
, fetchFromGitHub
@@ -12219,107 +6688,6 @@
license = lib.licenses.free;
};
}) {};
- color-moccur = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "color-moccur";
- ename = "color-moccur";
- version = "20141222.1635";
- src = fetchFromGitHub {
- owner = "myuhe";
- repo = "color-moccur.el";
- rev = "4f1c59ffd1ccc2ab1a171cd6b721e8cb9e002fb7";
- sha256 = "1p1f30qz4nd5a8ym2iwrgp6vhws0dls2qlc0apblj9nj3b0ziv0x";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/19105272fd8def5c7b22bfe5eeed5212e6ccae9c/recipes/color-moccur";
- sha256 = "17b9walfc5c9qfdvl9pcwb2gjikc3wxk1d3v878ckypmxd38vciq";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/color-moccur";
- license = lib.licenses.free;
- };
- }) {};
- color-theme = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "color-theme";
- ename = "color-theme";
- version = "20190220.315";
- src = fetchFromGitHub {
- owner = "emacsattic";
- repo = "color-theme";
- rev = "3a2f6b615f5e2401e30d93a3e0adc210bbb4b7aa";
- sha256 = "09imx996afh3j207163kg8sc92hd7wljkpban1pnn6f67bgyrvlv";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/90fc6a19838f8e5ffe3b96747784d2f5628f7434/recipes/color-theme";
- sha256 = "0sgjyiqi65ylvd926ywfjzh752bpch3szvx4z3la1r9gpkrnwspd";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/color-theme";
- license = lib.licenses.free;
- };
- }) {};
- color-theme-approximate = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "color-theme-approximate";
- ename = "color-theme-approximate";
- version = "20140227.2036";
- src = fetchFromGitHub {
- owner = "tungd";
- repo = "color-theme-approximate";
- rev = "f54301ca39bc5d2ffb000f233f8114184a3e7d71";
- sha256 = "1b0ymwszqsjcihcbfp7s4fjam983ixh3yb7sdc0rmqlyric1zwxq";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/f10631b740eea56e7209d7e84f0da8613274ef1d/recipes/color-theme-approximate";
- sha256 = "1wdnia9q42x7vky3ks555iic5s50g4mx7ss5ppaljvgxvbxyxqh1";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/color-theme-approximate";
- license = lib.licenses.free;
- };
- }) {};
- color-theme-buffer-local = callPackage ({ color-theme
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "color-theme-buffer-local";
- ename = "color-theme-buffer-local";
- version = "20170125.2201";
- src = fetchFromGitHub {
- owner = "vic";
- repo = "color-theme-buffer-local";
- rev = "faf7415c99e132094f1f09c6b6974ec118a18d87";
- sha256 = "1zk5clvkrq2grmm1bws2l5vbv1ycp41978bb902c563aws2rb8c0";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/e43060d80b3345ef4e8df9f5a9d66af8a44a9c41/recipes/color-theme-buffer-local";
- sha256 = "1448rffyzn5k5mr31hwd28wlj7if7rp5sjlqcsvbxd2mnbgkgjz0";
- name = "recipe";
- };
- packageRequires = [ color-theme ];
- meta = {
- homepage = "https://melpa.org/#/color-theme-buffer-local";
- license = lib.licenses.free;
- };
- }) {};
color-theme-modern = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -12396,32 +6764,6 @@
license = lib.licenses.free;
};
}) {};
- color-theme-x = callPackage ({ cl-lib ? null
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "color-theme-x";
- ename = "color-theme-x";
- version = "20180226.1646";
- src = fetchFromGitHub {
- owner = "ajsquared";
- repo = "color-theme-x";
- rev = "6c2264aa6c5d9a72caeae67ebaa4472090e70350";
- sha256 = "1fyz8bampcqzpbyg0l1g0nvv2m5n8000xy5yl05217dlxb448nnd";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/321900baf4149f8b58b075b9fb27716cf708f2a2/recipes/color-theme-x";
- sha256 = "0nb2hqmmj1rhqjcbv5m8r9g2bf993lp45ka9rrxqp0pkmyd9fvs2";
- name = "recipe";
- };
- packageRequires = [ cl-lib ];
- meta = {
- homepage = "https://melpa.org/#/color-theme-x";
- license = lib.licenses.free;
- };
- }) {};
colormaps = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -12448,59 +6790,6 @@
license = lib.licenses.free;
};
}) {};
- column-enforce-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "column-enforce-mode";
- ename = "column-enforce-mode";
- version = "20171030.1200";
- src = fetchFromGitHub {
- owner = "jordonbiondo";
- repo = "column-enforce-mode";
- rev = "2341a2b6a33d4b8b74c35062ec9cfe1bffd61944";
- sha256 = "0rcxb7daxxrp5f1i5cbv25viwawbbsn4ij1mnlclp5wz7ilcy2rs";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/91bebef8e97665a5d076c557d559367911a25ea2/recipes/column-enforce-mode";
- sha256 = "1qh7kwr65spbbnzvq744gkksx50x04zs0nwn5ly60swc05d05lcg";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/column-enforce-mode";
- license = lib.licenses.free;
- };
- }) {};
- com-css-sort = callPackage ({ cl-lib ? null
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , s }:
- melpaBuild {
- pname = "com-css-sort";
- ename = "com-css-sort";
- version = "20190319.137";
- src = fetchFromGitHub {
- owner = "jcs090218";
- repo = "com-css-sort";
- rev = "fd279a9ed89a8b9eb36e1be7764314b3b1be5e39";
- sha256 = "0nndx0xib03sqhswwvfw1cfzvh70f3qi8d7y5iqk10bpwkmansz0";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5189ae21fc97f6b96024a3279a26e43ddc23ae29/recipes/com-css-sort";
- sha256 = "0hga2m735lvyj1wzybgp6wh1yv98xnandvavvg7g7mscvf2sl89f";
- name = "recipe";
- };
- packageRequires = [ cl-lib emacs s ];
- meta = {
- homepage = "https://melpa.org/#/com-css-sort";
- license = lib.licenses.free;
- };
- }) {};
comb = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -12527,83 +6816,6 @@
license = lib.licenses.free;
};
}) {};
- comint-intercept = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "comint-intercept";
- ename = "comint-intercept";
- version = "20170317.528";
- src = fetchFromGitHub {
- owner = "hying-caritas";
- repo = "comint-intercept";
- rev = "84c41e60e1ea3e9d5da1eb99e9926a52b6658d6d";
- sha256 = "0jyi698abpjdaxb9l9ndq599w77svp7vgd3b708kn461gmqmkxv7";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/7d38188ec2d6e16714de9bb24ebd1ea89c7df3da/recipes/comint-intercept";
- sha256 = "1m2fn02n7aphlqmiaxgwp8jqg60sq4001cnkdxn5wb3w1hxy5qvq";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/comint-intercept";
- license = lib.licenses.free;
- };
- }) {};
- command-log-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "command-log-mode";
- ename = "command-log-mode";
- version = "20160412.2147";
- src = fetchFromGitHub {
- owner = "lewang";
- repo = "command-log-mode";
- rev = "af600e6b4129c8115f464af576505ea8e789db27";
- sha256 = "06hll2frlx4sg9fj13a7ipq9y24isbjkjm6034xswhak40m7g1ii";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/8426ca3c543178018f7feae6f0076af67a898483/recipes/command-log-mode";
- sha256 = "11jq6055bvpwvrm0b8cgab25wa2mcyylpz4j56h1nqj7cnhb6ppj";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/command-log-mode";
- license = lib.licenses.free;
- };
- }) {};
- command-queue = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "command-queue";
- ename = "command-queue";
- version = "20160328.1025";
- src = fetchFromGitHub {
- owner = "Yuki-Inoue";
- repo = "command-queue";
- rev = "f327c6f852592229a755ec6de0c62c6aeafd6659";
- sha256 = "0216hzdl4h1jssw5g2y95z4yx7abqsaxpk1s78r35w5cnx7kplrc";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/8fd6a70036e88039c850d280fbac782d04790a5f/recipes/command-queue";
- sha256 = "1jaywdg8vcf1v6ayy1zd5mjs0x3s96845ig9ssb08397lfqasx1k";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/command-queue";
- license = lib.licenses.free;
- };
- }) {};
commander = callPackage ({ cl-lib ? null
, dash
, f
@@ -12658,32 +6870,6 @@
license = lib.licenses.free;
};
}) {};
- comment-or-uncomment-sexp = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "comment-or-uncomment-sexp";
- ename = "comment-or-uncomment-sexp";
- version = "20190225.322";
- src = fetchFromGitHub {
- owner = "Malabarba";
- repo = "comment-or-uncomment-sexp";
- rev = "bec730d3fc1e6c17ff1339eb134af16c034a4d95";
- sha256 = "1jhyr854qraza75hjza8fjz2s06iydmdsa61vf5bf2kj5g1bfqkj";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/d1e87e59e1a7c7c7d6eab7dd6b37114e567e5c13/recipes/comment-or-uncomment-sexp";
- sha256 = "150gg1i593wgfzy0bg8jwgfc7a6hjnz84m2digjf3fpggvwv0rf8";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/comment-or-uncomment-sexp";
- license = lib.licenses.free;
- };
- }) {};
comment-tags = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -12764,32 +6950,6 @@
license = lib.licenses.free;
};
}) {};
- commify = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , s }:
- melpaBuild {
- pname = "commify";
- ename = "commify";
- version = "20161106.1534";
- src = fetchFromGitHub {
- owner = "ddoherty03";
- repo = "commify";
- rev = "78732c2fa6c1a10288b7436d7c561ec9ebdd41be";
- sha256 = "1kb3cbjp69niq8ravh273dma0mnkf1v2ja372ahxfsq1janrkkm6";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/fec4b048e1dc78a07acce7d2e6527b9f417d06d5/recipes/commify";
- sha256 = "1jc6iqa4hna3277hx13scfcqzkr43yv6gndbxv7qf4ydi01ysd0m";
- name = "recipe";
- };
- packageRequires = [ s ];
- meta = {
- homepage = "https://melpa.org/#/commify";
- license = lib.licenses.free;
- };
- }) {};
common-lisp-snippets = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -12899,185 +7059,6 @@
license = lib.licenses.free;
};
}) {};
- company-arduino = callPackage ({ arduino-mode
- , cl-lib ? null
- , company
- , company-c-headers
- , company-irony
- , emacs
- , fetchFromGitHub
- , fetchurl
- , irony
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "company-arduino";
- ename = "company-arduino";
- version = "20160306.939";
- src = fetchFromGitHub {
- owner = "yuutayamada";
- repo = "company-arduino";
- rev = "5958b917cc5cc729dc64d74d947da5ee91c48980";
- sha256 = "08766m35s0r2fyv32y0h3sns9d5jykbgg24d2z8czklnc8hay7jc";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/45350f816c4f5249792d29f97ef91f8c0685b983/recipes/company-arduino";
- sha256 = "1bch447lllikip1xd90kdgssgc67sl04a70fxqkqlrc1bs6gkkws";
- name = "recipe";
- };
- packageRequires = [
- arduino-mode
- cl-lib
- company
- company-c-headers
- company-irony
- emacs
- irony
- ];
- meta = {
- homepage = "https://melpa.org/#/company-arduino";
- license = lib.licenses.free;
- };
- }) {};
- company-auctex = callPackage ({ auctex
- , company
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , yasnippet }:
- melpaBuild {
- pname = "company-auctex";
- ename = "company-auctex";
- version = "20180725.1212";
- src = fetchFromGitHub {
- owner = "alexeyr";
- repo = "company-auctex";
- rev = "48c42c58ce2f0e693301b0cb2d085055410c1b25";
- sha256 = "10qn7frn5wcmrlci3v6iliqzj7r9dls87h9zp3xkgrgn4bqprfp8";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/189e1a60894db0787a4468b120fbab84be1b5d59/recipes/company-auctex";
- sha256 = "1jia80sqmm83kzjcf1h1d9iz2k4k9albzvfka5hx6hpa4h8nm5q4";
- name = "recipe";
- };
- packageRequires = [ auctex company yasnippet ];
- meta = {
- homepage = "https://melpa.org/#/company-auctex";
- license = lib.licenses.free;
- };
- }) {};
- company-axiom = callPackage ({ axiom-environment
- , company
- , emacs
- , fetchgit
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "company-axiom";
- ename = "company-axiom";
- version = "20171024.1310";
- src = fetchgit {
- url = "https://bitbucket.org/pdo/axiom-environment";
- rev = "11ae39b2fcb344932b3f4b6a9fb6341880e3b8fa";
- sha256 = "1mygz9cd79w56sk3szh0mkgnng7mgr5jqqfd32yfjc3spvs6yzlh";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/8b4c6b03c5ff78ce327dcf66b175e266bbc53dbf/recipes/company-axiom";
- sha256 = "061n8zn11r5a9m96sqnw8kx252n1m401cmcyqla8n9valjbnvsag";
- name = "recipe";
- };
- packageRequires = [ axiom-environment company emacs ];
- meta = {
- homepage = "https://melpa.org/#/company-axiom";
- license = lib.licenses.free;
- };
- }) {};
- company-bibtex = callPackage ({ cl-lib ? null
- , company
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , parsebib }:
- melpaBuild {
- pname = "company-bibtex";
- ename = "company-bibtex";
- version = "20171104.2344";
- src = fetchFromGitHub {
- owner = "gbgar";
- repo = "company-bibtex";
- rev = "225c6f5c0c070c94c8cdbbd452ea548cd94d76f4";
- sha256 = "0bv2jcmyirdxm158w2766l3q7kh7h71l9milwc9fl8qfz7wb5l80";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/company-bibtex";
- sha256 = "1b96p5qyxl6jlq0kz0dbma5pwvgqcy4x4gmpknjqrjabafbq1ynn";
- name = "recipe";
- };
- packageRequires = [ cl-lib company parsebib ];
- meta = {
- homepage = "https://melpa.org/#/company-bibtex";
- license = lib.licenses.free;
- };
- }) {};
- company-box = callPackage ({ company
- , dash
- , dash-functional
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "company-box";
- ename = "company-box";
- version = "20190311.1045";
- src = fetchFromGitHub {
- owner = "sebastiencs";
- repo = "company-box";
- rev = "8fc6168f2d3a0275156dd3fdf46ba496adbab226";
- sha256 = "0mmn7lzl69hmy8rlzhwqb2ffgk29mb2ybb149cdpk7ydv1h63hqn";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/a54879f4dd4dcb6867680567731547d604ad02bb/recipes/company-box";
- sha256 = "0v39gja3jp8b2xfn9da93xsh8mihizwbg0gqp2yyczaxjm8ga23i";
- name = "recipe";
- };
- packageRequires = [ company dash dash-functional emacs ];
- meta = {
- homepage = "https://melpa.org/#/company-box";
- license = lib.licenses.free;
- };
- }) {};
- company-c-headers = callPackage ({ company
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "company-c-headers";
- ename = "company-c-headers";
- version = "20180814.1030";
- src = fetchFromGitHub {
- owner = "randomphrase";
- repo = "company-c-headers";
- rev = "41331192b3961c8e3a51540678e1d11eaa346f03";
- sha256 = "1hl14pv8splirzr9riak8m48ngxy1c6wa2q6ds6aq849zx9dafqh";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/d97b5c53967e0ff767b3654c52622f4b5ddf1985/recipes/company-c-headers";
- sha256 = "1715vnjr5cjiq8gjcd3idnpnijg5cg3sw3f8gr5x2ixcrip1hx3a";
- name = "recipe";
- };
- packageRequires = [ company emacs ];
- meta = {
- homepage = "https://melpa.org/#/company-c-headers";
- license = lib.licenses.free;
- };
- }) {};
company-cabal = callPackage ({ cl-lib ? null
, company
, emacs
@@ -13136,44 +7117,6 @@
license = lib.licenses.free;
};
}) {};
- company-dcd = callPackage ({ cl-lib ? null
- , company
- , fetchFromGitHub
- , fetchurl
- , flycheck-dmd-dub
- , ivy
- , lib
- , melpaBuild
- , popwin
- , yasnippet }:
- melpaBuild {
- pname = "company-dcd";
- ename = "company-dcd";
- version = "20190115.1856";
- src = fetchFromGitHub {
- owner = "tsukimizake";
- repo = "company-dcd";
- rev = "11e90949e546fcff1b1cd40887ad7b6701aa1653";
- sha256 = "1n4f2hqmvwysbb1l6c5ah58b1bq8vxznk3ysszz8rs5gpqsizqd4";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/ad5be8c53911271fba03a88da7e9d518c6508ffe/recipes/company-dcd";
- sha256 = "03849k4jzs23iglk9ghcq6283c9asffcq4dznypcjax7y4x113vd";
- name = "recipe";
- };
- packageRequires = [
- cl-lib
- company
- flycheck-dmd-dub
- ivy
- popwin
- yasnippet
- ];
- meta = {
- homepage = "https://melpa.org/#/company-dcd";
- license = lib.licenses.free;
- };
- }) {};
company-dict = callPackage ({ company
, emacs
, fetchFromGitHub
@@ -13202,32 +7145,6 @@
license = lib.licenses.free;
};
}) {};
- company-distel = callPackage ({ distel-completion-lib
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "company-distel";
- ename = "company-distel";
- version = "20180827.644";
- src = fetchFromGitHub {
- owner = "sebastiw";
- repo = "distel-completion";
- rev = "acc4c0a5521904203d797fe96b08e5fae4233c7e";
- sha256 = "0yvp3dwa9mwfyrqla27ycwyjad4bp1267bxv0chxcr4528hnygl3";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/90fff35dd9709b06802edef89d1fe6a96b7115a6/recipes/company-distel";
- sha256 = "1jklxwkm2dvpcasmy9vl48dxq3q9s4dlk159ica39z0kqpkpzmgw";
- name = "recipe";
- };
- packageRequires = [ distel-completion-lib ];
- meta = {
- homepage = "https://melpa.org/#/company-distel";
- license = lib.licenses.free;
- };
- }) {};
company-edbi = callPackage ({ cl-lib ? null
, company
, edbi
@@ -13340,61 +7257,6 @@
license = lib.licenses.free;
};
}) {};
- company-flow = callPackage ({ company
- , dash
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "company-flow";
- ename = "company-flow";
- version = "20180225.1359";
- src = fetchFromGitHub {
- owner = "aaronjensen";
- repo = "company-flow";
- rev = "76ef585c70d2a3206c2eadf24ba61e59124c3a16";
- sha256 = "0zs9cblnbkxa0dxw4lyllmybqizxcdx96gv8jlhx20nrjpi78piw";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/63d346c14af1c5c138d14591a4d6dbc44d9bc429/recipes/company-flow";
- sha256 = "07brjfgiwv4dxjf0sca84allcy3qlp4jrkz7ki1qc5wmb5sd209l";
- name = "recipe";
- };
- packageRequires = [ company dash ];
- meta = {
- homepage = "https://melpa.org/#/company-flow";
- license = lib.licenses.free;
- };
- }) {};
- company-flx = callPackage ({ company
- , emacs
- , fetchFromGitHub
- , fetchurl
- , flx
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "company-flx";
- ename = "company-flx";
- version = "20180102.2118";
- src = fetchFromGitHub {
- owner = "PythonNut";
- repo = "company-flx";
- rev = "05efcafb488f587bb6e60923078d97227462eb68";
- sha256 = "12cg8amyk1pg1d2n8fb0mmls14jzwx08hq6s6g7wyd9s7y96hkhb";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/f27d718ee67f8c91b208a35adbbcdac67bbb89ce/recipes/company-flx";
- sha256 = "1r4jcfzrhdpclblfrmi4qbl8dnhc2d7d4c1425xnslg7bhwd2vxn";
- name = "recipe";
- };
- packageRequires = [ company emacs flx ];
- meta = {
- homepage = "https://melpa.org/#/company-flx";
- license = lib.licenses.free;
- };
- }) {};
company-ghc = callPackage ({ cl-lib ? null
, company
, emacs
@@ -13424,61 +7286,6 @@
license = lib.licenses.free;
};
}) {};
- company-ghci = callPackage ({ company
- , fetchFromGitHub
- , fetchurl
- , haskell-mode
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "company-ghci";
- ename = "company-ghci";
- version = "20160310.1800";
- src = fetchFromGitHub {
- owner = "orimh";
- repo = "company-ghci";
- rev = "c2d74a41166e76de2e78c87f582ba3a1179b2aa6";
- sha256 = "02gq083lpbszy8pf7s5j61bjlm0hacv4md4g17n0q6448rix9yny";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/3416586d4d782cdd61a56159c5f80a0ca9b3ddf4/recipes/company-ghci";
- sha256 = "11sygcn8jb4rcc1hfiadhsyanbhsmnalpz2qvh5iaba0l165bsgg";
- name = "recipe";
- };
- packageRequires = [ company haskell-mode ];
- meta = {
- homepage = "https://melpa.org/#/company-ghci";
- license = lib.licenses.free;
- };
- }) {};
- company-glsl = callPackage ({ company
- , emacs
- , fetchFromGitHub
- , fetchurl
- , glsl-mode
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "company-glsl";
- ename = "company-glsl";
- version = "20171015.1049";
- src = fetchFromGitHub {
- owner = "guidoschmidt";
- repo = "company-glsl";
- rev = "a262c12c3bcd0807718c4edcaf2b054e30ef0e26";
- sha256 = "0338bym8ifvkgpbc4vyzf3nmlp6rc8lihyxcbym5m08612ln78mk";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/35763febad20f29320d459394f810668db6c3353/recipes/company-glsl";
- sha256 = "1wzfdp6xz4nydfdcba8vs1za60lbfa0v4b8007dzn2fyg26rl326";
- name = "recipe";
- };
- packageRequires = [ company emacs glsl-mode ];
- meta = {
- homepage = "https://melpa.org/#/company-glsl";
- license = lib.licenses.free;
- };
- }) {};
company-go = callPackage ({ company
, fetchFromGitHub
, fetchurl
@@ -13505,34 +7312,6 @@
license = lib.licenses.free;
};
}) {};
- company-inf-ruby = callPackage ({ company
- , emacs
- , fetchFromGitHub
- , fetchurl
- , inf-ruby
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "company-inf-ruby";
- ename = "company-inf-ruby";
- version = "20140805.1354";
- src = fetchFromGitHub {
- owner = "company-mode";
- repo = "company-inf-ruby";
- rev = "9c2eab3bb82e8838c54013026e6ffb51cccbd37e";
- sha256 = "0sns1j74mbwkamiyfcq0jp6flzqknm0vbhr6vvg5nsw5b9lfir0a";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/ec0f597ceed00c68faa030ff0bc5676c513919f1/recipes/company-inf-ruby";
- sha256 = "0cb1w0sxgb5jf0p2a5s2i4d511lsjjhyaqkqlwjz8nk4w14n0zxm";
- name = "recipe";
- };
- packageRequires = [ company emacs inf-ruby ];
- meta = {
- homepage = "https://melpa.org/#/company-inf-ruby";
- license = lib.licenses.free;
- };
- }) {};
company-irony = callPackage ({ cl-lib ? null
, company
, emacs
@@ -13619,38 +7398,6 @@
license = lib.licenses.free;
};
}) {};
- company-lean = callPackage ({ company
- , dash
- , dash-functional
- , emacs
- , f
- , fetchFromGitHub
- , fetchurl
- , lean-mode
- , lib
- , melpaBuild
- , s }:
- melpaBuild {
- pname = "company-lean";
- ename = "company-lean";
- version = "20171102.754";
- src = fetchFromGitHub {
- owner = "leanprover";
- repo = "lean-mode";
- rev = "c0af876c967fc969d67c467bc6767210d19c5d87";
- sha256 = "04qzck156wb2bvrb8adbn7rx2v0bsjcirlbx4ajajjsqy858ayn9";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/42f4d6438c8aeb94ebc1782f2f5e2abd17f0ffde/recipes/company-lean";
- sha256 = "1hqkn7w5dyznf7i3r3132q8x31r74q188jsm5kdrjqgbwak2p91a";
- name = "recipe";
- };
- packageRequires = [ company dash dash-functional emacs f lean-mode s ];
- meta = {
- homepage = "https://melpa.org/#/company-lean";
- license = lib.licenses.free;
- };
- }) {};
company-lsp = callPackage ({ company
, dash
, emacs
@@ -13681,35 +7428,6 @@
license = lib.licenses.free;
};
}) {};
- company-lua = callPackage ({ company
- , f
- , fetchFromGitHub
- , fetchurl
- , lib
- , lua-mode
- , melpaBuild
- , s }:
- melpaBuild {
- pname = "company-lua";
- ename = "company-lua";
- version = "20171108.1506";
- src = fetchFromGitHub {
- owner = "ptrv";
- repo = "company-lua";
- rev = "29f6819de4d691e5fd0b62893a9f4fbc1c6fcb52";
- sha256 = "0ny2dcc7c585p7v3j6q0rpkbj1qmf2ismy8a5020jpr585xvz0hh";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/c8191ab2aaa72041be46091e363d216cf1b73fde/recipes/company-lua";
- sha256 = "13sm7ya2ndqxwdjarhxbmg7fvr3413c7p3n6yf1i4rabbliqsf2c";
- name = "recipe";
- };
- packageRequires = [ company f lua-mode s ];
- meta = {
- homepage = "https://melpa.org/#/company-lua";
- license = lib.licenses.free;
- };
- }) {};
company-math = callPackage ({ company
, fetchFromGitHub
, fetchurl
@@ -13737,60 +7455,6 @@
license = lib.licenses.free;
};
}) {};
- company-nand2tetris = callPackage ({ cl-lib ? null
- , company
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , nand2tetris }:
- melpaBuild {
- pname = "company-nand2tetris";
- ename = "company-nand2tetris";
- version = "20171201.1013";
- src = fetchFromGitHub {
- owner = "CestDiego";
- repo = "nand2tetris.el";
- rev = "fe37ee41367ceff6f7d7a472a5f80cf1285e1e01";
- sha256 = "0g1gwayas7claa9cn3mv8dnlz46n78014qxb2ix25428dnsrridy";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/90421372b3f60b59762279ac805c61a984606d11/recipes/company-nand2tetris";
- sha256 = "1g2i33jjh7kbpzk835kbnqicf0w4cq5rqv934bqzz5kavj9cg886";
- name = "recipe";
- };
- packageRequires = [ cl-lib company nand2tetris ];
- meta = {
- homepage = "https://melpa.org/#/company-nand2tetris";
- license = lib.licenses.free;
- };
- }) {};
- company-nginx = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "company-nginx";
- ename = "company-nginx";
- version = "20180603.1702";
- src = fetchFromGitHub {
- owner = "stardiviner";
- repo = "company-nginx";
- rev = "3074a5d322562f36867ef67bffeb25f1c0d8aca9";
- sha256 = "04nq6cihb5kymi3rjfx53337fx4g042cw1jxiv016sq88z24lznx";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/fb8843cddfa9133ea9e2790e8a1d8051cd4dabea/recipes/company-nginx";
- sha256 = "15pxz0v3zpshwri0v15yh995k7ih9h46y81n4xywlyyh34wys3sj";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/company-nginx";
- license = lib.licenses.free;
- };
- }) {};
company-ngram = callPackage ({ cl-lib ? null
, company
, fetchFromGitHub
@@ -13902,91 +7566,6 @@
license = lib.licenses.free;
};
}) {};
- company-plsense = callPackage ({ cl-lib ? null
- , company
- , dash
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , s }:
- melpaBuild {
- pname = "company-plsense";
- ename = "company-plsense";
- version = "20180117.1658";
- src = fetchFromGitHub {
- owner = "CeleritasCelery";
- repo = "company-plsense";
- rev = "b48e3181e08ec597269621d621aa06636f02d883";
- sha256 = "14rawd5xfgnkhdpp43mz4a5mf480949ny5hr5w6v5djmsibqxw5s";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/9cf9d671d81e07c704676c557a9f0d686067ce5c/recipes/company-plsense";
- sha256 = "0k8k2vpkknd4nyxzwdj7698lgm5d85byxd49x7w5nrxmh2h1w3c7";
- name = "recipe";
- };
- packageRequires = [ cl-lib company dash emacs s ];
- meta = {
- homepage = "https://melpa.org/#/company-plsense";
- license = lib.licenses.free;
- };
- }) {};
- company-pollen = callPackage ({ company
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , pollen-mode }:
- melpaBuild {
- pname = "company-pollen";
- ename = "company-pollen";
- version = "20160812.810";
- src = fetchFromGitHub {
- owner = "lijunsong";
- repo = "pollen-mode";
- rev = "9779f7f13b1e0cfb58af01af5d8ee9e783bb8a43";
- sha256 = "1i49js8y09d6bd5jp4fkl7z7gldaw2bfg5m2f504av73gqzqkxf8";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/97bda0616abe3bb632fc4231e5317d9472dfd14f/recipes/company-pollen";
- sha256 = "1pz5d8j7scrv2ci9mxvyikwsk8badkrbp8dznnb5qq1ycqv24bl1";
- name = "recipe";
- };
- packageRequires = [ company pollen-mode ];
- meta = {
- homepage = "https://melpa.org/#/company-pollen";
- license = lib.licenses.free;
- };
- }) {};
- company-posframe = callPackage ({ company
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , posframe }:
- melpaBuild {
- pname = "company-posframe";
- ename = "company-posframe";
- version = "20190313.528";
- src = fetchFromGitHub {
- owner = "tumashu";
- repo = "company-posframe";
- rev = "74091d132dea4b6ccd98c1ce7cec1b76b0ab8ad3";
- sha256 = "1jzaj3fjgplmzsxvmqh8z93filkk171ki8sk7iz9g44j0w7vmm38";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/68c1203ae710e5f7af3f0e5e2877aba6deaf1ac8/recipes/company-posframe";
- sha256 = "1pd68m3hcn6wggw8a026x5kxn73f3zs278vs96q6cb5gbxyyhirs";
- name = "recipe";
- };
- packageRequires = [ company emacs posframe ];
- meta = {
- homepage = "https://melpa.org/#/company-posframe";
- license = lib.licenses.free;
- };
- }) {};
company-prescient = callPackage ({ company
, emacs
, fetchFromGitHub
@@ -14015,33 +7594,6 @@
license = lib.licenses.free;
};
}) {};
- company-qml = callPackage ({ company
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , qml-mode }:
- melpaBuild {
- pname = "company-qml";
- ename = "company-qml";
- version = "20170428.1008";
- src = fetchFromGitHub {
- owner = "cute-jumper";
- repo = "company-qml";
- rev = "4af4f32a7ad86d86bb9293fb0b675aec513b5736";
- sha256 = "09d733r07gr4cxp7npyhi93xchvirxh1v00fr487v4a0mdaahpxf";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5b53477eaba4ef62f8317c9454e15ac015442fed/recipes/company-qml";
- sha256 = "0sva7i93dam8mc2z3cp785vmgcg7cphrpkwyvqyqhq8w51qg8mxx";
- name = "recipe";
- };
- packageRequires = [ company qml-mode ];
- meta = {
- homepage = "https://melpa.org/#/company-qml";
- license = lib.licenses.free;
- };
- }) {};
company-quickhelp = callPackage ({ company
, emacs
, fetchFromGitHub
@@ -14070,63 +7622,6 @@
license = lib.licenses.free;
};
}) {};
- company-racer = callPackage ({ cl-lib ? null
- , company
- , deferred
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "company-racer";
- ename = "company-racer";
- version = "20171204.1910";
- src = fetchFromGitHub {
- owner = "emacs-pe";
- repo = "company-racer";
- rev = "a00381c9d416f375f783fcb6ae8d40669ce1f567";
- sha256 = "13m3yzn4xbyl13z7h1cl6vqjbzikjycy7wydpy4a44yhr466zjr5";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/c4671a674dbc1620a41e0ff99508892a25eec2ad/recipes/company-racer";
- sha256 = "0zc8dzvsjz5qsrwhv7x9f7djzvb9awacc3pgjirsv8f8sp7p3am4";
- name = "recipe";
- };
- packageRequires = [ cl-lib company deferred emacs ];
- meta = {
- homepage = "https://melpa.org/#/company-racer";
- license = lib.licenses.free;
- };
- }) {};
- company-reftex = callPackage ({ company
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , s }:
- melpaBuild {
- pname = "company-reftex";
- ename = "company-reftex";
- version = "20181222.106";
- src = fetchFromGitHub {
- owner = "TheBB";
- repo = "company-reftex";
- rev = "33935e96540201adab43f3a765d62289eba9e286";
- sha256 = "1sp4109fbj6cxq6v9lmkpkrlr6is340ibaqpslkkjyacjv6sv4cm";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/84c938612d46d45b5bb05ee35178eaa2284023e0/recipes/company-reftex";
- sha256 = "0xfl8cfpd2bdk91aj0nygp5gm808pnbi7zjdp4z6l21dsrawhbxz";
- name = "recipe";
- };
- packageRequires = [ company emacs s ];
- meta = {
- homepage = "https://melpa.org/#/company-reftex";
- license = lib.licenses.free;
- };
- }) {};
company-restclient = callPackage ({ cl-lib ? null
, company
, emacs
@@ -14304,63 +7799,6 @@
license = lib.licenses.free;
};
}) {};
- company-suggest = callPackage ({ company
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "company-suggest";
- ename = "company-suggest";
- version = "20180527.931";
- src = fetchFromGitHub {
- owner = "juergenhoetzel";
- repo = "company-suggest";
- rev = "81fe56fae3a3d2d3cd1be09d7eb96422a4ad6f09";
- sha256 = "0ys9m11l8csyv2p0f7b13b9l5wqn73y5m4c29rj4xf2yy5b9p8sr";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/9579e3366db055364829e20d3ce228bf17060b0a/recipes/company-suggest";
- sha256 = "1w5fp4mydc4av14sjb8di6jjvzfqwnasnxpf9720pk0rsj05i972";
- name = "recipe";
- };
- packageRequires = [ company emacs ];
- meta = {
- homepage = "https://melpa.org/#/company-suggest";
- license = lib.licenses.free;
- };
- }) {};
- company-tabnine = callPackage ({ cl-lib ? null
- , company
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , s
- , unicode-escape }:
- melpaBuild {
- pname = "company-tabnine";
- ename = "company-tabnine";
- version = "20181207.1531";
- src = fetchFromGitHub {
- owner = "TommyX12";
- repo = "company-tabnine";
- rev = "2d63df791027ec2bcc8956be6b7078d17f95217c";
- sha256 = "06p7z0nnal26xb3kkh3ik0q42wkn146mr15bz3c1amfpkx60y1qi";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/94476897a71a271b985967334632836252eb131b/recipes/company-tabnine";
- sha256 = "1x37xacrscmh9hq9mljbgdcl3pwfn2kmn567qv0jqys8ihbzi3v7";
- name = "recipe";
- };
- packageRequires = [ cl-lib company emacs s unicode-escape ];
- meta = {
- homepage = "https://melpa.org/#/company-tabnine";
- license = lib.licenses.free;
- };
- }) {};
company-tern = callPackage ({ cl-lib ? null
, company
, dash
@@ -14402,12 +7840,12 @@
melpaBuild {
pname = "company-terraform";
ename = "company-terraform";
- version = "1.2";
+ version = "1.3";
src = fetchFromGitHub {
owner = "rafalcieslak";
repo = "emacs-company-terraform";
- rev = "45a2bd090af79c119f92414c4dee8939b38903d1";
- sha256 = "0gcg20f4nld54y48mssd3sfc7fxq07iff9gsi5av4b86kyzjfr6x";
+ rev = "2d11a21fee2f298e48968e479ddcaeda4d736e12";
+ sha256 = "0hxilq7289djrn6kgw7n926zpz0pr7iyd1wm6cy8yfhxf546a4px";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/1d9732da975dcf59d3b311b19e20abbb29c33656/recipes/company-terraform";
@@ -14420,34 +7858,6 @@
license = lib.licenses.free;
};
}) {};
- company-try-hard = callPackage ({ company
- , dash
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "company-try-hard";
- ename = "company-try-hard";
- version = "20150902.1506";
- src = fetchFromGitHub {
- owner = "Wilfred";
- repo = "company-try-hard";
- rev = "0401e8afa6bd4d3e9d2cf18e58955b83aef93005";
- sha256 = "18hy60fm3b3dmp29cmzbs6grlihkwifjbzv30gprwj5f6x7m8knf";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/d65c26aee15a27cbf27fa81110b607bf38099079/recipes/company-try-hard";
- sha256 = "1rwn521dc8kxh43vcd3rf0h8jc53d4gmid3szj2msi0da1sk0mmj";
- name = "recipe";
- };
- packageRequires = [ company dash emacs ];
- meta = {
- homepage = "https://melpa.org/#/company-try-hard";
- license = lib.licenses.free;
- };
- }) {};
company-web = callPackage ({ cl-lib ? null
, company
, dash
@@ -14477,32 +7887,6 @@
license = lib.licenses.free;
};
}) {};
- company-ycm = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , ycm }:
- melpaBuild {
- pname = "company-ycm";
- ename = "company-ycm";
- version = "20140904.1117";
- src = fetchFromGitHub {
- owner = "neuromage";
- repo = "ycm.el";
- rev = "b2cb611503cf8d256fa19fc76362d7d5d9449d01";
- sha256 = "1xmmk5pg59w8cc1s9v3c65l8m388yl25ngjd0vibi22lm1k5ri8j";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/44e168f757cb51249db2deb9f781eff99cf6fb7c/recipes/company-ycm";
- sha256 = "1q4d63c7nr3g7q0smd55pp636vqa9lf1pkwjn9iq265369npvina";
- name = "recipe";
- };
- packageRequires = [ ycm ];
- meta = {
- homepage = "https://melpa.org/#/company-ycm";
- license = lib.licenses.free;
- };
- }) {};
company-ycmd = callPackage ({ company
, dash
, deferred
@@ -14649,83 +8033,6 @@
license = lib.licenses.free;
};
}) {};
- config-general-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "config-general-mode";
- ename = "config-general-mode";
- version = "20171024.1140";
- src = fetchFromGitHub {
- owner = "TLINDEN";
- repo = "config-general-mode";
- rev = "b4a8e6ba0bb027a77e4a0f701409f3e57bb2e4c0";
- sha256 = "115sk0h6i1bfnxw1v11719926cvnq7gyisjcysvkam40hp3d5fx5";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/35763febad20f29320d459394f810668db6c3353/recipes/config-general-mode";
- sha256 = "1pqivnyb1yljzs3fd554s0971wr9y6g1dx3lgym9gi5jhpyza38z";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/config-general-mode";
- license = lib.licenses.free;
- };
- }) {};
- config-parser = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "config-parser";
- ename = "config-parser";
- version = "20160426.519";
- src = fetchFromGitHub {
- owner = "lujun9972";
- repo = "el-config-parser";
- rev = "85d559e7889d8f5b98b8794b79426ae25ec3caa5";
- sha256 = "09vq7hcsw4027whn3xrnfz9hkgkakva619hyz0zfgpvppqah9n1p";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/8fc040eebe72b278e3bd69212b207446cf4a5f06/recipes/config-parser";
- sha256 = "0wncg1v4wccb9j16rcmwz8fcmrscj7knfisq0r4qqx3skrmpccah";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/config-parser";
- license = lib.licenses.free;
- };
- }) {};
- confluence = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , xml-rpc }:
- melpaBuild {
- pname = "confluence";
- ename = "confluence";
- version = "20151020.1828";
- src = fetchFromGitHub {
- owner = "emacsorphanage";
- repo = "confluence";
- rev = "442d6e14b51f8322fb7f0fe30682d2429f48ed73";
- sha256 = "18859zi60s2y79add998vxh084znbdxxq31m12flg7makxlamyh7";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/30de78c9cf83de30093a5647976eeaf552d4b2cb/recipes/confluence";
- sha256 = "0xa2g168mm31kh5h7smhx35cjsk1js88nzs19yakjljf56b1khlf";
- name = "recipe";
- };
- packageRequires = [ xml-rpc ];
- meta = {
- homepage = "https://melpa.org/#/confluence";
- license = lib.licenses.free;
- };
- }) {};
conkeror-minor-mode = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -14806,32 +8113,6 @@
license = lib.licenses.free;
};
}) {};
- constant-theme = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "constant-theme";
- ename = "constant-theme";
- version = "20180921.312";
- src = fetchFromGitHub {
- owner = "Jannis";
- repo = "emacs-constant-theme";
- rev = "0feb9f99d708633d62fa548c953ebbe68fd70de0";
- sha256 = "14w92qh791zz22c1r47ncglh92ifgqxmz0pk5w61ka7zi7xqylg1";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/35763febad20f29320d459394f810668db6c3353/recipes/constant-theme";
- sha256 = "13m4r37gscnqg3qmb0rs2r8sslp0irm7n4p6p496mmvljvjmpv6b";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/constant-theme";
- license = lib.licenses.free;
- };
- }) {};
contextual = callPackage ({ cl-lib ? null
, dash
, emacs
@@ -14885,58 +8166,6 @@
license = lib.licenses.free;
};
}) {};
- contrast-color = callPackage ({ cl-lib ? null
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "contrast-color";
- ename = "contrast-color";
- version = "20160903.1107";
- src = fetchFromGitHub {
- owner = "yuutayamada";
- repo = "contrast-color-el";
- rev = "6ff1b807e09ef6a775e4ab1032bb2ea3fc442d9e";
- sha256 = "1qvx00yrkl0zf2bnb46gw18nrhg3gwlc0az622bh5brckpn9dasv";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/7a13602e10a5fa889d0e094eff5b74a39023a477/recipes/contrast-color";
- sha256 = "0pa88mfla7g7wpia0q1lkv2dncw63ivvh83hf73f75a22rvl8jcx";
- name = "recipe";
- };
- packageRequires = [ cl-lib emacs ];
- meta = {
- homepage = "https://melpa.org/#/contrast-color";
- license = lib.licenses.free;
- };
- }) {};
- control-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "control-mode";
- ename = "control-mode";
- version = "20160624.1010";
- src = fetchFromGitHub {
- owner = "stephendavidmarsh";
- repo = "control-mode";
- rev = "6bf487144119b03f9cc54168f70e3d7d8d84e22b";
- sha256 = "0y6a0fcz6ic5ai5jibyd740mclzx88x3l6wp2vs8rw6qs15cr7xf";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/acc9b816796b9f142c53f90593952b43c962d2d8/recipes/control-mode";
- sha256 = "1biq4p2w8rqcbvr09gxbchjqlaixjf1fzv7xv8lpv81dlhi7dgz6";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/control-mode";
- license = lib.licenses.free;
- };
- }) {};
copy-as-format = callPackage ({ cl-lib ? null
, fetchFromGitHub
, fetchurl
@@ -15047,34 +8276,6 @@
license = lib.licenses.free;
};
}) {};
- coq-commenter = callPackage ({ cl-lib ? null
- , dash
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , s }:
- melpaBuild {
- pname = "coq-commenter";
- ename = "coq-commenter";
- version = "20170822.1609";
- src = fetchFromGitHub {
- owner = "Ailrun";
- repo = "coq-commenter";
- rev = "7fe9a2cc0ebdb0b1e54a24eb7971d757fb588ac3";
- sha256 = "1rq0j6ds9snv21k2lzyja96qxxz8nrai5aj1k1si9zshld28mapx";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/35763febad20f29320d459394f810668db6c3353/recipes/coq-commenter";
- sha256 = "1d6a40f8b4r8x08sy7qs335c9z744xmll326qzsjmxiqdkjv7h2k";
- name = "recipe";
- };
- packageRequires = [ cl-lib dash s ];
- meta = {
- homepage = "https://melpa.org/#/coq-commenter";
- license = lib.licenses.free;
- };
- }) {};
corral = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -15100,32 +8301,6 @@
license = lib.licenses.free;
};
}) {};
- cosmo = callPackage ({ emacs
- , fetchFromGitLab
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "cosmo";
- ename = "cosmo";
- version = "20170922.44";
- src = fetchFromGitLab {
- owner = "montanari";
- repo = "cosmo-el";
- rev = "dd83b09a49a2843606b28279b674b2207040b36b";
- sha256 = "0phcg81g3dy67s1hfymvj0lkcpwygwql8iixf940nv31qllgzvd7";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/3ab914dfefcddf6ecd65261bc11bd3eb12929c79/recipes/cosmo";
- sha256 = "1pk34d0kv1jm2fq72qa5lj0y39x1yf2nbkjjg8jcj8ari28h9vfk";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/cosmo";
- license = lib.licenses.free;
- };
- }) {};
counsel = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -15180,63 +8355,6 @@
license = lib.licenses.free;
};
}) {};
- counsel-codesearch = callPackage ({ codesearch
- , counsel
- , emacs
- , fetchFromGitHub
- , fetchurl
- , ivy
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "counsel-codesearch";
- ename = "counsel-codesearch";
- version = "20180925.103";
- src = fetchFromGitHub {
- owner = "abingham";
- repo = "emacs-counsel-codesearch";
- rev = "b7989fad3e06f301c31d5e896c42b6cc549a0e0c";
- sha256 = "1qv82nvj0kddmajm6pniadnz96mqz8rhl0g2w2z5834r48higxqv";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/d3404c3cdfa6654ad80378ab258f0df68a6beeb9/recipes/counsel-codesearch";
- sha256 = "0y547cfxjq59zvi36av0rd1wdydf8d96ma438ja0x726f53nxd3g";
- name = "recipe";
- };
- packageRequires = [ codesearch counsel emacs ivy ];
- meta = {
- homepage = "https://melpa.org/#/counsel-codesearch";
- license = lib.licenses.free;
- };
- }) {};
- counsel-css = callPackage ({ cl-lib ? null
- , counsel
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "counsel-css";
- ename = "counsel-css";
- version = "20180302.236";
- src = fetchFromGitHub {
- owner = "hlissner";
- repo = "emacs-counsel-css";
- rev = "0536af00236cdce1ed08b40dd46c917e8b4b8869";
- sha256 = "04qm5dqxnl4s0axbrin7a7dpj3h8rx096q01bwzfs10qsdx3l7c0";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/519a05a9f0e43f3e1dfac75759346476bfc40772/recipes/counsel-css";
- sha256 = "1sckfq8kv68q1anqmslrvhcf83m7b5r0clny6q33b9x0qypkv9xp";
- name = "recipe";
- };
- packageRequires = [ cl-lib counsel emacs ];
- meta = {
- homepage = "https://melpa.org/#/counsel-css";
- license = lib.licenses.free;
- };
- }) {};
counsel-dash = callPackage ({ counsel
, dash
, dash-functional
@@ -15322,117 +8440,6 @@
license = lib.licenses.free;
};
}) {};
- counsel-notmuch = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , ivy
- , lib
- , melpaBuild
- , notmuch
- , s }:
- melpaBuild {
- pname = "counsel-notmuch";
- ename = "counsel-notmuch";
- version = "20181203.135";
- src = fetchFromGitHub {
- owner = "fuxialexander";
- repo = "counsel-notmuch";
- rev = "a4a1562935e4180c42524c51609d1283e9be0688";
- sha256 = "01k1321d961kc2i660a5595bqk0d85f16snsxngsn5si6y83kqr7";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/54fe0be4e8e8b90cd2dc3cc8b9c573694c8f773b/recipes/counsel-notmuch";
- sha256 = "1n4jp9fa5fbv55am0w1b832ncdih8gi6xflwabpwqqj4k5mj94p1";
- name = "recipe";
- };
- packageRequires = [ emacs ivy notmuch s ];
- meta = {
- homepage = "https://melpa.org/#/counsel-notmuch";
- license = lib.licenses.free;
- };
- }) {};
- counsel-org-capture-string = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , ivy
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "counsel-org-capture-string";
- ename = "counsel-org-capture-string";
- version = "20180816.24";
- src = fetchFromGitHub {
- owner = "akirak";
- repo = "counsel-org-capture-string";
- rev = "0fd5d72397a9268a89dd26de2a6c355f127453ac";
- sha256 = "19ijjiidxxysvkz9vnsgiymxd7w7zcs5bazn7dmahp5yaprlsjld";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/380d58ac9487f2fb1d4a791008fa60fb7165e7e3/recipes/counsel-org-capture-string";
- sha256 = "1jqp4qscv8shx1kfnrm6642a83ba3rpzm7v9hz46j3aw6f3psw9g";
- name = "recipe";
- };
- packageRequires = [ emacs ivy ];
- meta = {
- homepage = "https://melpa.org/#/counsel-org-capture-string";
- license = lib.licenses.free;
- };
- }) {};
- counsel-org-clock = callPackage ({ dash
- , emacs
- , fetchFromGitHub
- , fetchurl
- , ivy
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "counsel-org-clock";
- ename = "counsel-org-clock";
- version = "20190406.2048";
- src = fetchFromGitHub {
- owner = "akirak";
- repo = "counsel-org-clock";
- rev = "ddf6b89652e4dbc0be5e8719213e7673c83959f1";
- sha256 = "1fd8ll7jcfmy2dhhhsqh1l6wqfklma54bqpb4jnxmdn2w9p3ndmn";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/d21e10ba82b4ae0f8101031be16bc5f7e80ba5d5/recipes/counsel-org-clock";
- sha256 = "16pai05qqaw31ghdy1h164qy56mqsdsf2925i0qhlhysslkki8gh";
- name = "recipe";
- };
- packageRequires = [ dash emacs ivy ];
- meta = {
- homepage = "https://melpa.org/#/counsel-org-clock";
- license = lib.licenses.free;
- };
- }) {};
- counsel-osx-app = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , ivy
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "counsel-osx-app";
- ename = "counsel-osx-app";
- version = "20160821.109";
- src = fetchFromGitHub {
- owner = "d12frosted";
- repo = "counsel-osx-app";
- rev = "5cc93ec684f837dc31ce20e7625407f2c0445691";
- sha256 = "03gnxk2midiczq5w1k69ddhnlhml1pnwr9yjaw3b30dgv6r29dpw";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/926d0ab3d62d7114d6997944521b66ab969f6830/recipes/counsel-osx-app";
- sha256 = "0zc74szalyazbvi0lh3zy08kb8kzlwcwnc8d1sj5n23ymvvs5nn3";
- name = "recipe";
- };
- packageRequires = [ emacs ivy ];
- meta = {
- homepage = "https://melpa.org/#/counsel-osx-app";
- license = lib.licenses.free;
- };
- }) {};
counsel-projectile = callPackage ({ counsel
, fetchFromGitHub
, fetchurl
@@ -15460,60 +8467,6 @@
license = lib.licenses.free;
};
}) {};
- counsel-pydoc = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , ivy
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "counsel-pydoc";
- ename = "counsel-pydoc";
- version = "20171018.1342";
- src = fetchFromGitHub {
- owner = "co-dh";
- repo = "pydoc_utils";
- rev = "08a4a1020da3d06604156303024c8a5e31ec36e4";
- sha256 = "0658pm99vnm50xq2c79mdbywrgmbs0wwl90hnc493652bznrsgmc";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/110939c12b4e042a486e97be4c2a2426c5978ca6/recipes/counsel-pydoc";
- sha256 = "1a3vwh4jf5y03z95bd4blk75n6wjd24l6yw6vpr3991bi4qrxclz";
- name = "recipe";
- };
- packageRequires = [ emacs ivy ];
- meta = {
- homepage = "https://melpa.org/#/counsel-pydoc";
- license = lib.licenses.free;
- };
- }) {};
- counsel-spotify = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , ivy
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "counsel-spotify";
- ename = "counsel-spotify";
- version = "20190406.1325";
- src = fetchFromGitHub {
- owner = "Lautaro-Garcia";
- repo = "counsel-spotify";
- rev = "f484e6efd3994704cfd16c87c298fbfa12d442cc";
- sha256 = "0b5hykw3n96f0m50176hk639sbzdykhnp52xlp8g6l7p807x27w9";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/b386462518a5ebb6454f4d01582df98395239bcc/recipes/counsel-spotify";
- sha256 = "1xs4km5vjhn6dnlmrscz7airip07n1ppybp8mr17hinb8scfpv47";
- name = "recipe";
- };
- packageRequires = [ emacs ivy ];
- meta = {
- homepage = "https://melpa.org/#/counsel-spotify";
- license = lib.licenses.free;
- };
- }) {};
counsel-tramp = callPackage ({ counsel
, emacs
, fetchFromGitHub
@@ -15541,62 +8494,6 @@
license = lib.licenses.free;
};
}) {};
- counsel-world-clock = callPackage ({ fetchFromGitHub
- , fetchurl
- , ivy
- , lib
- , melpaBuild
- , s }:
- melpaBuild {
- pname = "counsel-world-clock";
- ename = "counsel-world-clock";
- version = "20171201.2337";
- src = fetchFromGitHub {
- owner = "kchenphy";
- repo = "counsel-world-clock";
- rev = "9834461002e1ea0c1669705e7a2b99dec969bb30";
- sha256 = "1gkbcq7fkh08cwmbf1q99s2m5hcja73vl8bfdx2iif74f81p89jf";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/7d9da8c45e7d06647f9591d80e83f851a7f3af85/recipes/counsel-world-clock";
- sha256 = "151vm7g7g0jwjlp0wrwlxrjnh9qsckc10whkfgaz9czzvvmsf4cv";
- name = "recipe";
- };
- packageRequires = [ ivy s ];
- meta = {
- homepage = "https://melpa.org/#/counsel-world-clock";
- license = lib.licenses.free;
- };
- }) {};
- cov = callPackage ({ elquery
- , emacs
- , f
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , s }:
- melpaBuild {
- pname = "cov";
- ename = "cov";
- version = "20180415.1331";
- src = fetchFromGitHub {
- owner = "AdamNiederer";
- repo = "cov";
- rev = "2371d01e6b2928eb6cee6b7bfa8d50f96c47e750";
- sha256 = "1z1092xyn2zlmggp7dkr7cynmvrr4hjdsq2pgnri5lizp3bjyd4x";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/d0f35ce436ac157955d6f92de96e14bef9ad69e3/recipes/cov";
- sha256 = "02wk8ikanl5lcwqb9wqc8xx5vwzhn2hpqpxdchg5mdi7fifa1rni";
- name = "recipe";
- };
- packageRequires = [ elquery emacs f s ];
- meta = {
- homepage = "https://melpa.org/#/cov";
- license = lib.licenses.free;
- };
- }) {};
coverage = callPackage ({ cl-lib ? null
, fetchFromGitHub
, fetchurl
@@ -15651,57 +8548,6 @@
license = lib.licenses.free;
};
}) {};
- cp5022x = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "cp5022x";
- ename = "cp5022x";
- version = "20120323.1635";
- src = fetchFromGitHub {
- owner = "awasira";
- repo = "cp5022x.el";
- rev = "ea7327dd75e54539576916f592ae1be98179ae35";
- sha256 = "1z67x4a0aricd9q6i2w33k74alddl6w0rijjhzyxwml7ibhbvphz";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/761fcb0ff07d9746d68e9946c8b46e50c67cd1d8/recipes/cp5022x";
- sha256 = "0v1jhkix01l299m67jag43rnps68m19zy83vvdglxa8dj3naz5dl";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/cp5022x";
- license = lib.licenses.free;
- };
- }) {};
- cpanfile-mode = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "cpanfile-mode";
- ename = "cpanfile-mode";
- version = "20161001.10";
- src = fetchFromGitHub {
- owner = "zakame";
- repo = "cpanfile-mode";
- rev = "b09908b4342b3aa97940159dbe91ac074ec98e0b";
- sha256 = "12nbfgvhd8gxakq787i1v3h2kcn1r76f9lhqx44gjwqy3yx201i5";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/673e828a076ad806cdb69102a9d55f80ace45670/recipes/cpanfile-mode";
- sha256 = "1sflykfrhx9sn5dqlaa4s7w34nczh4xqwcig5rmlpwj9yl2mk2dm";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/cpanfile-mode";
- license = lib.licenses.free;
- };
- }) {};
cpputils-cmake = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -15727,85 +8573,6 @@
license = lib.licenses.free;
};
}) {};
- cql-mode = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "cql-mode";
- ename = "cql-mode";
- version = "20190314.1925";
- src = fetchFromGitHub {
- owner = "Yuki-Inoue";
- repo = "cql-mode";
- rev = "d400c046850d3cf404778b2c47d6be4ff84ca04b";
- sha256 = "016fs984fbn9k6q17mpxq8gbpspai71r52da8aq31f3jijxmrh5a";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1084dd0ec0f2e8fe6fa8e97b322833c14e8e59d1/recipes/cql-mode";
- sha256 = "0wdal8w0i73xjak2g0wazs54z957f4lj4n8qdmzpcylzpl1lqd88";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/cql-mode";
- license = lib.licenses.free;
- };
- }) {};
- cquery = callPackage ({ dash
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , lsp-mode
- , melpaBuild }:
- melpaBuild {
- pname = "cquery";
- ename = "cquery";
- version = "20190117.2142";
- src = fetchFromGitHub {
- owner = "cquery-project";
- repo = "emacs-cquery";
- rev = "555e50984ebda177421fdcdc8c76cb29235d9694";
- sha256 = "1d1m1lgc93fkg7dxb8d6ch68vh6w1zp3yy31bv78vaz8siqrmk16";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/3cd3bffff0d2564c39735f844f9a02a660272caa/recipes/cquery";
- sha256 = "01mw6aqiazpzcn6h5h5xcnra8a04yg1ibvpfajx70m5iw9f5w6l6";
- name = "recipe";
- };
- packageRequires = [ dash emacs lsp-mode ];
- meta = {
- homepage = "https://melpa.org/#/cquery";
- license = lib.licenses.free;
- };
- }) {};
- crappy-jsp-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "crappy-jsp-mode";
- ename = "crappy-jsp-mode";
- version = "20140311.231";
- src = fetchFromGitHub {
- owner = "magnars";
- repo = "crappy-jsp-mode";
- rev = "6c45ab92b452411cc0fab9bcee2f456276b4fc40";
- sha256 = "12g6l6xlbs9h24q5lk8yjgk91xqd7r3v7r6czy10r09cmfjmkxbb";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/crappy-jsp-mode";
- sha256 = "17m404kdz9avihz52xd7hn5qx06a6k74gmn0gbhly4gl84w3zc6y";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/crappy-jsp-mode";
- license = lib.licenses.free;
- };
- }) {};
creamsody-theme = callPackage ({ autothemer
, fetchFromGitHub
, fetchurl
@@ -15859,58 +8626,6 @@
license = lib.licenses.free;
};
}) {};
- creole = callPackage ({ fetchFromGitHub
- , fetchurl
- , kv
- , lib
- , melpaBuild
- , noflet }:
- melpaBuild {
- pname = "creole";
- ename = "creole";
- version = "20140924.800";
- src = fetchFromGitHub {
- owner = "nicferrier";
- repo = "elwikicreole";
- rev = "7d5cffe93857f6c75ca09ac79c0e47b8d4410e53";
- sha256 = "18c4jfjnhb7asdhwj41g06cp9rz5xd7bbx2s1xvk6gahay27rlrv";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/creole";
- sha256 = "1q1c6f953g39xal1p7rj8dlcx2crk5cz1q07zp8bgp5jx4nd2z9n";
- name = "recipe";
- };
- packageRequires = [ kv noflet ];
- meta = {
- homepage = "https://melpa.org/#/creole";
- license = lib.licenses.free;
- };
- }) {};
- creole-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "creole-mode";
- ename = "creole-mode";
- version = "20130721.1750";
- src = fetchFromGitHub {
- owner = "nicferrier";
- repo = "creole-mode";
- rev = "b5e79b2ec5f19fb5aacf689b5febc3e0b61515c4";
- sha256 = "0japww5x89vd1ahjm2bc3biz6wxv94vvqq5fyyzkqsblgk5bys0h";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/f04f93ab9482dbabfdbe3f0c8186c62a9a80c8b3/recipes/creole-mode";
- sha256 = "1lj9a0bgn7lmc2wyjzzvmpaz1f1spj02l51ki2wydjbfhxq61k0s";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/creole-mode";
- license = lib.licenses.free;
- };
- }) {};
cricbuzz = callPackage ({ dash
, enlive
, f
@@ -15966,32 +8681,6 @@
license = lib.licenses.free;
};
}) {};
- crontab-mode = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "crontab-mode";
- ename = "crontab-mode";
- version = "20190304.623";
- src = fetchFromGitHub {
- owner = "emacs-pe";
- repo = "crontab-mode";
- rev = "090ed61e919df6391df45a7645a0d8d5b0dae1cb";
- sha256 = "1yz9vvh2x6s2y02n1z8aqgb40bxgs2s2mxmy1vmp2piffq81d09y";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/0831d0f869cad4681b22296225307aa5bf185f3f/recipes/crontab-mode";
- sha256 = "1lwkj5c8435xgqi9d4zgnp9dzi06byibf69fv9p3x79kv565g3gd";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/crontab-mode";
- license = lib.licenses.free;
- };
- }) {};
crux = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -16069,58 +8758,6 @@
license = lib.licenses.free;
};
}) {};
- crystal-playground = callPackage ({ crystal-mode
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "crystal-playground";
- ename = "crystal-playground";
- version = "20180829.2201";
- src = fetchFromGitHub {
- owner = "jasonrobot";
- repo = "crystal-playground";
- rev = "532dc7e4239eb4bdd241bc4347d34760344c1ebb";
- sha256 = "06vrmxikqi36wbnm66r5s5fxhkdlz76fjb3nhlighbqlym4bxpl1";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/3e8d3a41e3307f415a144ff55e7a5fa95216cd6c/recipes/crystal-playground";
- sha256 = "0789x443qrvxgrcha6rag11fwyr0aj1ixw6xc0l4d34fsy76ppwh";
- name = "recipe";
- };
- packageRequires = [ crystal-mode emacs ];
- meta = {
- homepage = "https://melpa.org/#/crystal-playground";
- license = lib.licenses.free;
- };
- }) {};
- csgo-conf-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "csgo-conf-mode";
- ename = "csgo-conf-mode";
- version = "20161209.819";
- src = fetchFromGitHub {
- owner = "wynro";
- repo = "emacs-csgo-conf-mode";
- rev = "df45ca833eb68c394dd03acce5733a33c3b06bf8";
- sha256 = "0bq9dr1zq1lkdy80jqvxpb0igdnz9jqjh7pif3190mh7m46zyr7y";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/2298e3f840da549707ec3270c8303f4f63a674dc/recipes/csgo-conf-mode";
- sha256 = "0djx6jraqlh9da2jqagj72vjnc8n3px2jp23jdy9rk40z10m5sbr";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/csgo-conf-mode";
- license = lib.licenses.free;
- };
- }) {};
csharp-mode = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -16174,107 +8811,6 @@
license = lib.licenses.free;
};
}) {};
- css-autoprefixer = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "css-autoprefixer";
- ename = "css-autoprefixer";
- version = "20180311.900";
- src = fetchFromGitHub {
- owner = "kkweon";
- repo = "emacs-css-autoprefixer";
- rev = "386a5defc8543a3b87820f1761c075c7d1d93b38";
- sha256 = "0ymba9bhzfi7kkrha4d4sn0hrc3sid4b5k8lhakwwdwafhym0jjb";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/122e3813a5b8a57303345e9cd855f4d85eced6f0/recipes/css-autoprefixer";
- sha256 = "0q40k8jvs4nc57kcljsx5qzylz9ms0kbr3dic3mr3bj0w062b1qg";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/css-autoprefixer";
- license = lib.licenses.free;
- };
- }) {};
- css-comb = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "css-comb";
- ename = "css-comb";
- version = "20160415.2259";
- src = fetchFromGitHub {
- owner = "channikhabra";
- repo = "css-comb.el";
- rev = "6fa45e5af8a8bd3af6c1154cde3540e32c4206ee";
- sha256 = "0nvl6y90p9crk12j7aw0cqdjhli7xbrx3hqckxsnvrnxy4zax7nk";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/0afc24de7f847feaa128168d0fd8b2110242cca6/recipes/css-comb";
- sha256 = "1axwrvbc3xl1ixhh72bii3hhbi9d96y6i1my1rpvwqyd6f7wb2cf";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/css-comb";
- license = lib.licenses.free;
- };
- }) {};
- css-eldoc = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "css-eldoc";
- ename = "css-eldoc";
- version = "20150124.1923";
- src = fetchFromGitHub {
- owner = "zenozeng";
- repo = "css-eldoc";
- rev = "c558ac4c470742c98a37290e6b409db28183df30";
- sha256 = "1mgc6bd0dzrp1dq1yj8m2qxjnpysd8ppdk2yp96d3zd07zllw4rx";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/css-eldoc";
- sha256 = "0k0yzpqwfh5rg8sbv60simdslag514768i0naimm8vyrvv87fzny";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/css-eldoc";
- license = lib.licenses.free;
- };
- }) {};
- cssh = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "cssh";
- ename = "cssh";
- version = "20150810.1009";
- src = fetchFromGitHub {
- owner = "dimitri";
- repo = "cssh";
- rev = "2fe2754235225a59b63f08b130cfd4352e2e1c3f";
- sha256 = "1xf2hy077frfz8qf91c0l0qppcjxzr4bsbb622bx6fidqkpa3a1a";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/da3fcf6252f83d80de8a3ec564244e6cd22391eb/recipes/cssh";
- sha256 = "10yvvyzqr06jvijmzis9clb1slzp2mn80yclis8wvrmg4p8djljk";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/cssh";
- license = lib.licenses.free;
- };
- }) {};
csv = callPackage ({ fetchFromGitLab
, fetchurl
, lib
@@ -16332,12 +8868,12 @@
melpaBuild {
pname = "ctags-update";
ename = "ctags-update";
- version = "1.0";
+ version = "1.1";
src = fetchFromGitHub {
owner = "jixiuf";
repo = "ctags-update";
- rev = "ff4f211e42df94fdeba376e62b65dc67f0388589";
- sha256 = "09vdfmm846zhn5nxnndi7qg7rdsf5xd4zhynbx0mnm00cfw1vf0y";
+ rev = "67faf248b92388442958a069263c62a345425a1b";
+ sha256 = "0442jdxvn33i0bnb4fspvpdn66gxqyazyc6n3wqjmpn3fqvzwsrp";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/e5d0c347ff8cf6e0ade80853775fd6b84f387fa5/recipes/ctags-update";
@@ -16350,31 +8886,6 @@
license = lib.licenses.free;
};
}) {};
- ctl-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "ctl-mode";
- ename = "ctl-mode";
- version = "20151202.206";
- src = fetchFromGitHub {
- owner = "yyr";
- repo = "emacs-grads";
- rev = "1a13051db21b999c7682a015b33a03096ff9d891";
- sha256 = "1d89gxyzv0z0nk7v1aa4qa0xfms2g2dsrr07cw0d99xsnyxfky31";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/38d2279fd05bb48f0d0e2276c605cd92892d0196/recipes/ctl-mode";
- sha256 = "0fydq779b0y6hmh8srfdimr5rl9mk3sj08rbvlljxv3kqv5ajczj";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/ctl-mode";
- license = lib.licenses.free;
- };
- }) {};
ctune = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -16481,32 +8992,6 @@
license = lib.licenses.free;
};
}) {};
- cucumber-goto-step = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , pcre2el }:
- melpaBuild {
- pname = "cucumber-goto-step";
- ename = "cucumber-goto-step";
- version = "20131209.2119";
- src = fetchFromGitHub {
- owner = "gstamp";
- repo = "cucumber-goto-step";
- rev = "f2713ffb26ebe1b757d1f2ea80e900b55e5895aa";
- sha256 = "184plai32sn0indvi1dma6ykz907zgnrdyxdw6f5mghwca96g5kx";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/d78d7abccfd9bcebf6888032639923327ad25309/recipes/cucumber-goto-step";
- sha256 = "1ydsd455dvaw6a180b6570bfgg0kxn01sn6cb57smqj835am6gx8";
- name = "recipe";
- };
- packageRequires = [ pcre2el ];
- meta = {
- homepage = "https://melpa.org/#/cucumber-goto-step";
- license = lib.licenses.free;
- };
- }) {};
cuda-mode = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -16532,32 +9017,6 @@
license = lib.licenses.free;
};
}) {};
- cursor-test = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "cursor-test";
- ename = "cursor-test";
- version = "20131207.932";
- src = fetchFromGitHub {
- owner = "ainame";
- repo = "cursor-test.el";
- rev = "e09956e048b88fd2ee8dd90b5678baed8b04d31b";
- sha256 = "0wmnhizv4jfcl1w9za4ydxf6xwxgm5vwmn1zi5vn70zmv4d6r49l";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/6439f7561cfab4f6f3beb132d2a65e94b3deba9e/recipes/cursor-test";
- sha256 = "1c1d5xq4alamlwyqxjx557aykz5dw87acp0lyglsrzzkdynbwlb1";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/cursor-test";
- license = lib.licenses.free;
- };
- }) {};
cwl-mode = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -16585,32 +9044,6 @@
license = lib.licenses.free;
};
}) {};
- cyberpunk-2019-theme = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "cyberpunk-2019-theme";
- ename = "cyberpunk-2019-theme";
- version = "20190228.653";
- src = fetchFromGitHub {
- owner = "the-frey";
- repo = "cyberpunk-2019";
- rev = "77f41d0c15c59e13f11af5d285707dd21e72e342";
- sha256 = "12gray55ifv98ysyqsa51xh4w2yis0gki9blpvcbac02sm5xysgm";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1821a436d3d9f7c46cbd198f93951aa35bbf6ad7/recipes/cyberpunk-2019-theme";
- sha256 = "09bg3avrsca308y3g86mrzi6klzr4ky8k5y2nbsmwarrarv29qyy";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/cyberpunk-2019-theme";
- license = lib.licenses.free;
- };
- }) {};
cyberpunk-theme = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -16636,82 +9069,6 @@
license = lib.licenses.free;
};
}) {};
- cycbuf = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "cycbuf";
- ename = "cycbuf";
- version = "20131203.1237";
- src = fetchFromGitHub {
- owner = "martinp26";
- repo = "cycbuf";
- rev = "1079b41c3eb27d65b66d4399959bb6253f84858e";
- sha256 = "1d5i8sm1xrsp4v4myidfyb40hm3wp7hgva7dizg9gbb7prmn1p5w";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/39f1919271df023898e60f5e7635928dc905083f/recipes/cycbuf";
- sha256 = "0gyj48h5wgjawqq3j4hgk5a8d23nffmhd1q53kg7b9vfsda51hbw";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/cycbuf";
- license = lib.licenses.free;
- };
- }) {};
- cycle-resize = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "cycle-resize";
- ename = "cycle-resize";
- version = "20160521.857";
- src = fetchFromGitHub {
- owner = "pierre-lecocq";
- repo = "cycle-resize";
- rev = "7d255d6fe85f12c967a0f7fcfcf18633be194c88";
- sha256 = "1bmdjr99g50dzr4y1jxixfjhqmhrzblmpiyjhh5l5gqmdhammm4k";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/8806af6662c8250c7533f643fe1c277ff0466651/recipes/cycle-resize";
- sha256 = "0vp57plwqx4nf3pbv5g4frjriq8niiia9xc3bv6c3gzd4a0zm7xi";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/cycle-resize";
- license = lib.licenses.free;
- };
- }) {};
- cycle-themes = callPackage ({ cl-lib ? null
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "cycle-themes";
- ename = "cycle-themes";
- version = "20150402.2009";
- src = fetchFromGitHub {
- owner = "toroidal-code";
- repo = "cycle-themes.el";
- rev = "2660c3178be7b28c2cb5dde2dd70a4bd51dae3a2";
- sha256 = "0wc9wssridy49vshwj7xgrcfmalrv1r9wlr8nvs9d8m3ds39dzh6";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/f24c358fd616a86f6594001deddee4d62dbb0bc6/recipes/cycle-themes";
- sha256 = "1whp9q26sgyf59wygbrvdf9gc94bn4dmhr2f2qivpajx550fjfbc";
- name = "recipe";
- };
- packageRequires = [ cl-lib ];
- meta = {
- homepage = "https://melpa.org/#/cycle-themes";
- license = lib.licenses.free;
- };
- }) {};
cyphejor = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -16738,31 +9095,6 @@
license = lib.licenses.free;
};
}) {};
- cypher-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "cypher-mode";
- ename = "cypher-mode";
- version = "20151110.342";
- src = fetchFromGitHub {
- owner = "fxbois";
- repo = "cypher-mode";
- rev = "ce8543d7877c736c574a17b49874c9dcdc7a06d6";
- sha256 = "0vbcq807jpjssabmyjcdkpp6nnx1288is2c6x79dkrviw2xxw3qf";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/ef558e7425adfe87202475babfbc1a679dc4cde5/recipes/cypher-mode";
- sha256 = "174rfbm7yzkznkfjmh9bdnm5fgqv9bjwm85h39317pv1g8c3mgv0";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/cypher-mode";
- license = lib.licenses.free;
- };
- }) {};
cython-mode = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -16788,31 +9120,6 @@
license = lib.licenses.free;
};
}) {};
- czech-holidays = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "czech-holidays";
- ename = "czech-holidays";
- version = "20160113.952";
- src = fetchFromGitHub {
- owner = "hydandata";
- repo = "czech-holidays";
- rev = "d19828122cf3322bcf50601cefa4ac385d2d8f82";
- sha256 = "1ykcsfh5pj6b7ywdfggs8iqzfax0fyjnmr0ba76xwsj0vdrk3072";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/7224fd77b3d8a37fac2fe0cf832e3487513afd8c/recipes/czech-holidays";
- sha256 = "10c0zscbn7pr9xqdqksy4kh0cxjg9bhw8p4qzlk18fd4c8rhqn84";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/czech-holidays";
- license = lib.licenses.free;
- };
- }) {};
d-mode = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -16838,31 +9145,6 @@
license = lib.licenses.free;
};
}) {};
- dactyl-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "dactyl-mode";
- ename = "dactyl-mode";
- version = "20140906.1025";
- src = fetchFromGitHub {
- owner = "luxbock";
- repo = "dactyl-mode";
- rev = "cc55fe6b987271d9647492b8df4c812d884f661f";
- sha256 = "0fp40cyamchc9qq5vbpxgq3yp6vs8p3ncg46mjzr54psy3fc86dm";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/72d503380511d2d6580b9522b6e0bd2d800bdebe/recipes/dactyl-mode";
- sha256 = "0ppcabddcpwshfd04x42nbrbkagbyi1bg4vslysnlxn4kaxjs7pm";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/dactyl-mode";
- license = lib.licenses.free;
- };
- }) {};
dad-joke = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -16915,81 +9197,6 @@
license = lib.licenses.free;
};
}) {};
- dakrone-light-theme = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "dakrone-light-theme";
- ename = "dakrone-light-theme";
- version = "20170808.1440";
- src = fetchFromGitHub {
- owner = "dakrone";
- repo = "dakrone-light-theme";
- rev = "06f198dc8b4ca7421990b30a23d89c8e0b8c5de4";
- sha256 = "01vqlsv44h2ah79c8jqv8vkqvgmhqx2w3qbq07l7fx3zkpgjfmpy";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/f3a88022a5f68d2fe01e08c2e99cfe380e3697b7/recipes/dakrone-light-theme";
- sha256 = "1njlpvfa4ar14zn51fdmby55vjgfkpskizg5rif2f3zn6y4np2xw";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/dakrone-light-theme";
- license = lib.licenses.free;
- };
- }) {};
- dakrone-theme = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "dakrone-theme";
- ename = "dakrone-theme";
- version = "20170801.1233";
- src = fetchFromGitHub {
- owner = "dakrone";
- repo = "dakrone-theme";
- rev = "232ad1be5f3572dcbdf528f1655109aa355a6937";
- sha256 = "0p51zni42hv090vv6mk9v0v88achmgxlsmlr40y8y6ng57w51r4s";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/dcc07077b47d7c710c7f2d4919d791ed16ed5b26/recipes/dakrone-theme";
- sha256 = "0ma4rfmgwd6k24jzn6pgk46b88jfix7mz0ib7c7r90h5vmpiq814";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/dakrone-theme";
- license = lib.licenses.free;
- };
- }) {};
- danneskjold-theme = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "danneskjold-theme";
- ename = "danneskjold-theme";
- version = "20190222.200";
- src = fetchFromGitHub {
- owner = "rails-to-cosmos";
- repo = "danneskjold-theme";
- rev = "1a341399df66d008965fddb6348ae86d7e96d268";
- sha256 = "1cbrjqh8p4ia2psw0v0qvvlmx9g567b7xmwqgjm58x8x38003ym0";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/557244a3b60c7cd3ca964ff843aa1e9d5a1e32ec/recipes/danneskjold-theme";
- sha256 = "0cwab7qp293g92n9mjjz2vpg1pz2q3d40hfszf29rci89wsf3yxl";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/danneskjold-theme";
- license = lib.licenses.free;
- };
- }) {};
dante = callPackage ({ company
, dash
, emacs
@@ -17065,31 +9272,6 @@
license = lib.licenses.free;
};
}) {};
- darcsum = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "darcsum";
- ename = "darcsum";
- version = "20190316.1515";
- src = fetchFromGitHub {
- owner = "emacsmirror";
- repo = "darcsum";
- rev = "6a8b690539d133c5e3d17cb23fe4365fbb6fb493";
- sha256 = "1ajdm0p8rdyaqy0wwfslb1mqj9b2dpk8xkljjw6ddacph5hflhcm";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/be27e728327016b819535ef8cae10020e5a07c2e/recipes/darcsum";
- sha256 = "1qr3jh05awxxh2qi1sv542vkryfja44zswa5wxwj7g2dr6ck9jr1";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/darcsum";
- license = lib.licenses.free;
- };
- }) {};
darcula-theme = callPackage ({ fetchFromGitLab
, fetchurl
, lib
@@ -17115,157 +9297,6 @@
license = lib.licenses.free;
};
}) {};
- dark-krystal-theme = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "dark-krystal-theme";
- ename = "dark-krystal-theme";
- version = "20170808.600";
- src = fetchFromGitHub {
- owner = "emacsfodder";
- repo = "emacs-dark-krystal-theme";
- rev = "79084b99665dc9ffb0ec62cc092349a5ecebebbc";
- sha256 = "1d3cdsaba71qxdqrbj1jrlq8a0iw3h50l5grcdjvxixdnf5nsa4c";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/641d1959bd31598fcdacd39a3d1bb077dcccfa5c/recipes/dark-krystal-theme";
- sha256 = "056aql35502sgvdpbgphpqdxzbjf4ay01rra6pm11c1dya8avv0j";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/dark-krystal-theme";
- license = lib.licenses.free;
- };
- }) {};
- dark-mint-theme = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "dark-mint-theme";
- ename = "dark-mint-theme";
- version = "20160301.2242";
- src = fetchFromGitHub {
- owner = "shaunvxc";
- repo = "dark-mint-theme";
- rev = "c8ad39b7115baf889b54c3e9bffe32daeab93c29";
- sha256 = "1bz7n9ijk69kqc1sv74prm2d74gd4xj0vzkbgbwdsin1llkg00zv";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/de74e734ae75df051475e60e79d4f5ad5bc128ae/recipes/dark-mint-theme";
- sha256 = "0rljpwycarbn8rnac9vz7n23j69wmx35gn5dx77v0f0ws8ni4k9m";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/dark-mint-theme";
- license = lib.licenses.free;
- };
- }) {};
- dark-souls = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "dark-souls";
- ename = "dark-souls";
- version = "20140314.428";
- src = fetchFromGitHub {
- owner = "tomjakubowski";
- repo = "dark-souls.el";
- rev = "2c9437265b52f966b2fb13a410a12f3b1e167cb7";
- sha256 = "0d4zjbkzjcvlc1jaszicbln0dvwacbj6k1fb1bn34vgbabhckdys";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/535577ce57bd772aca9f66e27485b0f58a7d35c5/recipes/dark-souls";
- sha256 = "1ilsn657mpl7v8vkbzqf3gp0gmvy0dgynfsn8w4cb49qaiy337xc";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/dark-souls";
- license = lib.licenses.free;
- };
- }) {};
- darkburn-theme = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "darkburn-theme";
- ename = "darkburn-theme";
- version = "20170423.952";
- src = fetchFromGitHub {
- owner = "gorauskas";
- repo = "darkburn-theme";
- rev = "b59053533246330e9107721da7977a0af312c915";
- sha256 = "1ffmip31dnv3zzh1h9cpchl6lya49zn2j13acx6rj9r01ndlbrar";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/a04dd517e02bc4b4a62d956aa901a727354202b0/recipes/darkburn-theme";
- sha256 = "18hwdnwmkf640vcyx8d66i424wwazbzjq3k0w0xjmwsn2mpyhm9w";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/darkburn-theme";
- license = lib.licenses.free;
- };
- }) {};
- darkmine-theme = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "darkmine-theme";
- ename = "darkmine-theme";
- version = "20160405.2324";
- src = fetchFromGitHub {
- owner = "pierre-lecocq";
- repo = "darkmine-theme";
- rev = "7f7e82ca03bcad52911fa41fb3e204e32d6ee63e";
- sha256 = "0d2g4iyp8gyfrcc1gkvl40p1shlw1sadswzhry0m1lgbyxiiklrz";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/e527d1335f5fd2aba5b00255a7d69adbc20585ff/recipes/darkmine-theme";
- sha256 = "06vzldyqlmfd11g8dqrqh5x244ikfa20qwpsmbgsiry3041k8iw5";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/darkmine-theme";
- license = lib.licenses.free;
- };
- }) {};
- darkokai-theme = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "darkokai-theme";
- ename = "darkokai-theme";
- version = "20181019.1159";
- src = fetchFromGitHub {
- owner = "sjrmanning";
- repo = "darkokai";
- rev = "b887fc6080f8e021058bff7f53fad84c82c81a7a";
- sha256 = "1rjpzf6n9vclyqfdz1nqaf9ky2jhk9jn1jmx9h2bd4kil9bjbyrm";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/81387a5a70f7c42fbae16b52db765136795a37e1/recipes/darkokai-theme";
- sha256 = "0jw71xl4ihkyq4m0w8c35x5hr8ic07wcabmvpwmvspnj8hkfccwf";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/darkokai-theme";
- license = lib.licenses.free;
- };
- }) {};
darktooth-theme = callPackage ({ autothemer
, fetchFromGitHub
, fetchurl
@@ -17347,31 +9378,6 @@
license = lib.licenses.free;
};
}) {};
- dash-at-point = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "dash-at-point";
- ename = "dash-at-point";
- version = "20180710.656";
- src = fetchFromGitHub {
- owner = "stanaka";
- repo = "dash-at-point";
- rev = "4d795a23a8428c421d5107f1b005c9d8e0d1816c";
- sha256 = "09rxyr22qxc9pdrkg0c4smifh2r797ggz5hg74q8j8jybvixsbls";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/0b2b0c544a76802df5ff3b1bf68a0418a653ea98/recipes/dash-at-point";
- sha256 = "0x4nq42nbh2qgbg111lgbknc7w7m7lxd14mp9s8dcrpwsaxz960m";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/dash-at-point";
- license = lib.licenses.free;
- };
- }) {};
dash-functional = callPackage ({ dash
, emacs
, fetchFromGitHub
@@ -17408,12 +9414,12 @@
melpaBuild {
pname = "dashboard";
ename = "dashboard";
- version = "1.5.0";
+ version = "1.6.0";
src = fetchFromGitHub {
owner = "emacs-dashboard";
repo = "emacs-dashboard";
- rev = "8494d4fb7e501450abb6e86ad5fcf60b9165fdb6";
- sha256 = "0ihpcagwgc9qy70lf2y3dvx2bm5h9lnqh4sx6643cr8pp06ysbvq";
+ rev = "5b66b65c4c7536f43e8e58b3f7055e5bd6381cda";
+ sha256 = "1g6g8vad1kdmv1zxp95a8sn70idl26isqjb3xk1r95pqnx1cn591";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/ef3c6af6ff5d880e6336f8db32b22b64b182794e/recipes/dashboard";
@@ -17426,34 +9432,6 @@
license = lib.licenses.free;
};
}) {};
- dashboard-hackernews = callPackage ({ dashboard
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , request }:
- melpaBuild {
- pname = "dashboard-hackernews";
- ename = "dashboard-hackernews";
- version = "20190108.1805";
- src = fetchFromGitHub {
- owner = "hyakt";
- repo = "emacs-dashboard-hackernews";
- rev = "b71814716d8f78181b9d1990f06072460de0797e";
- sha256 = "1dvv10xn2mh0nh85cd78y23cn8p9ygdhj4k7xs4fa6r7bhp0xvqm";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/a5ba74a9b76458bfd53e9cea7bd704d1488c9c98/recipes/dashboard-hackernews";
- sha256 = "0j5ai05g84cl6dhzw1cjvvhchg0sy7zwv355x87c5mg1kx0mrdpk";
- name = "recipe";
- };
- packageRequires = [ dashboard emacs request ];
- meta = {
- homepage = "https://melpa.org/#/dashboard-hackernews";
- license = lib.licenses.free;
- };
- }) {};
dashboard-project-status = callPackage ({ dashboard
, emacs
, fetchFromGitHub
@@ -17562,167 +9540,6 @@
license = lib.licenses.free;
};
}) {};
- datetime-format = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "datetime-format";
- ename = "datetime-format";
- version = "20160612.1015";
- src = fetchFromGitHub {
- owner = "emacs-php";
- repo = "emacs-datetime";
- rev = "e6427538b547cbe02e1bd6ed4b765c73620bdae8";
- sha256 = "1573z8wq5m8qzbzmnsz2fmbwrj9c0ava0jjfchzmwm2b3jyvqh5r";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/eb13cb0dba1696cc51132cd1ff723fa17f892a7c/recipes/datetime-format";
- sha256 = "19qccjz2lzh01glgkixya7bxd6pvyjqgmw8bmqlwag6cb68bwsyv";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/datetime-format";
- license = lib.licenses.free;
- };
- }) {};
- datomic-snippets = callPackage ({ dash
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , s
- , yasnippet }:
- melpaBuild {
- pname = "datomic-snippets";
- ename = "datomic-snippets";
- version = "20180817.345";
- src = fetchFromGitHub {
- owner = "magnars";
- repo = "datomic-snippets";
- rev = "4a14228840d5252e13d2bf6209670f26345bbb84";
- sha256 = "1nvng479sy7ykwy9a86qq48yzv8n0903g724srhf42v9c81fc9s7";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/4da8ec133ec5e1204966c1b12c9bc0ca1b50d643/recipes/datomic-snippets";
- sha256 = "0lax0pj4k9c9n0gmrvil240pc9p25535q3n5m8nb2ar4sli8dn8r";
- name = "recipe";
- };
- packageRequires = [ dash s yasnippet ];
- meta = {
- homepage = "https://melpa.org/#/datomic-snippets";
- license = lib.licenses.free;
- };
- }) {};
- dayone = callPackage ({ fetchFromGitHub
- , fetchurl
- , ht
- , lib
- , melpaBuild
- , mustache
- , uuid }:
- melpaBuild {
- pname = "dayone";
- ename = "dayone";
- version = "20160105.440";
- src = fetchFromGitHub {
- owner = "mori-dev";
- repo = "emacs-dayone";
- rev = "ab628274f0806451f23bce16f62a6a11cbf91a2b";
- sha256 = "1j0mk8vyr6sniliq0ix77jldx8vzl73nd5yhh82klzgyymal58ms";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/a7c34ae046b75994cf04d16642bf28d4645d1821/recipes/dayone";
- sha256 = "0hi09dj00h6g5r84jxglwkgbijhfxknx4mq5gcl5jzjis5affk8l";
- name = "recipe";
- };
- packageRequires = [ ht mustache uuid ];
- meta = {
- homepage = "https://melpa.org/#/dayone";
- license = lib.licenses.free;
- };
- }) {};
- db = callPackage ({ fetchFromGitHub
- , fetchurl
- , kv
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "db";
- ename = "db";
- version = "20140421.1411";
- src = fetchFromGitHub {
- owner = "nicferrier";
- repo = "emacs-db";
- rev = "b3a423fb8e72f9013009cbe033d654df2ce31438";
- sha256 = "0syv4kr319d34yqi4q61b8jh5yy22wvd148x1m3pc511znh2ry5k";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/79ac40439b65c217e1caaa7175d26556b6a6c889/recipes/db";
- sha256 = "05jhga9n6gh1bmj8gda14sb703gn7jgjlvy55mlr5kdb2z3rqw1n";
- name = "recipe";
- };
- packageRequires = [ kv ];
- meta = {
- homepage = "https://melpa.org/#/db";
- license = lib.licenses.free;
- };
- }) {};
- db-pg = callPackage ({ db
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , pg }:
- melpaBuild {
- pname = "db-pg";
- ename = "db-pg";
- version = "20130131.1102";
- src = fetchFromGitHub {
- owner = "nicferrier";
- repo = "emacs-db-pg";
- rev = "7d5ab86b74b05fe003b3b434d4835f37f3f3eded";
- sha256 = "15r0qwjkl33p8kh2k5kxz9wnbkv1k470b1h0i6svvljkx9ynk68a";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/c4eb90ea7b8ed5c529c74c3faeaf3eac3955eb31/recipes/db-pg";
- sha256 = "06nfibw01ijv7nr0m142y80jbbpg9kk1dh19s5wq7i6fqf7g08xg";
- name = "recipe";
- };
- packageRequires = [ db pg ];
- meta = {
- homepage = "https://melpa.org/#/db-pg";
- license = lib.licenses.free;
- };
- }) {};
- ddskk = callPackage ({ ccc
- , cdb
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "ddskk";
- ename = "ddskk";
- version = "20190215.1927";
- src = fetchFromGitHub {
- owner = "skk-dev";
- repo = "ddskk";
- rev = "9a5397829359e2e0f37e26701a70515c0f9fcba8";
- sha256 = "15463cf8vykh2865k52qs25awc4yv91bfk4x9swh7ccrczv0d33q";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/6eccccb79881eaa04af3ed6395cd2ab981d9c894/recipes/ddskk";
- sha256 = "01pb00p126q7swsl12yjrhghln2wgaj65jhjr0k7dkk64x4psyc9";
- name = "recipe";
- };
- packageRequires = [ ccc cdb ];
- meta = {
- homepage = "https://melpa.org/#/ddskk";
- license = lib.licenses.free;
- };
- }) {};
deadgrep = callPackage ({ dash
, emacs
, fetchFromGitHub
@@ -17802,32 +9619,6 @@
license = lib.licenses.free;
};
}) {};
- debug-print = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "debug-print";
- ename = "debug-print";
- version = "20140125.1619";
- src = fetchFromGitHub {
- owner = "kenoss";
- repo = "debug-print";
- rev = "d817fd9ea2d3f8d2c1ace4d8af155684f3a99dc5";
- sha256 = "1n99nrp42slmyp5228d1nz174bysjn122jgs8fn1x0qxywg7jyxp";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/aaaaa43f6ce7db654b651969797978164143b269/recipes/debug-print";
- sha256 = "01dsqq2qdsbxny6j9dhvg770493awxjhk1m85c14ysgh6sl199rm";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/debug-print";
- license = lib.licenses.free;
- };
- }) {};
decide = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -17853,34 +9644,6 @@
license = lib.licenses.free;
};
}) {};
- decl = callPackage ({ cl-lib ? null
- , dash
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "decl";
- ename = "decl";
- version = "20171212.658";
- src = fetchFromGitHub {
- owner = "preetpalS";
- repo = "decl.el";
- rev = "f16b96e322c646d6018dfbd3c3ba8b2b75fcb9e1";
- sha256 = "07zg8grnqxg27fpksy8b94ry25ljrkag4ffq15d78k8nqmqmf3b8";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/8c2ecd46180643a0c493e05ec86fe50bc1e55146/recipes/decl";
- sha256 = "0wdhmp226wmrjvjgpbz8ihvhxxv3rrxh97sdqm3mgsav3n071n6k";
- name = "recipe";
- };
- packageRequires = [ cl-lib dash emacs ];
- meta = {
- homepage = "https://melpa.org/#/decl";
- license = lib.licenses.free;
- };
- }) {};
dedicated = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -17906,31 +9669,6 @@
license = lib.licenses.free;
};
}) {};
- dedukti-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "dedukti-mode";
- ename = "dedukti-mode";
- version = "20171103.512";
- src = fetchFromGitHub {
- owner = "rafoo";
- repo = "dedukti-mode";
- rev = "d7c3505a1046187de3c3aeb144455078d514594e";
- sha256 = "1842wikq24c8rg0ac84vb1qby9ng1nssxswyyni4kq85lng5lcrp";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/767a685fbe8ae86177e90a17dac3815d41d74df4/recipes/dedukti-mode";
- sha256 = "17adfmrhfks5f45ddr6ygjq870ac50vfzc5872ycv414zg0w4sa9";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/dedukti-mode";
- license = lib.licenses.free;
- };
- }) {};
default-text-scale = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -18009,59 +9747,6 @@
license = lib.licenses.free;
};
}) {};
- defproject = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "defproject";
- ename = "defproject";
- version = "20151201.1419";
- src = fetchFromGitHub {
- owner = "kotfic";
- repo = "defproject";
- rev = "674d48a5e34cb4bba76faa38ee901322ec649086";
- sha256 = "07jzr571q02l0lg5d40rnmzg16hmybi1nkjgslmvlx46z3c4xvyr";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/86465b351e668d6c19a6fc8e1b1a4aa7904cd139/recipes/defproject";
- sha256 = "1gld2fkssrjh4smpp54017549d6aw3n1zisp5s4kkb6cmszwj5gm";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/defproject";
- license = lib.licenses.free;
- };
- }) {};
- defrepeater = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , s }:
- melpaBuild {
- pname = "defrepeater";
- ename = "defrepeater";
- version = "20180829.2110";
- src = fetchFromGitHub {
- owner = "alphapapa";
- repo = "defrepeater.el";
- rev = "62b00ede57d2e115b9ef9f21268c021ae1186873";
- sha256 = "106q2h4djcf1q9v31wmimj59fiqmclgxw13s8zjnhv3sc2m3z1ka";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/f0d9cf994233ad098826c6933dfd57665044f598/recipes/defrepeater";
- sha256 = "1zlp206dy5qipb7m3m77j4har258rxgwxg5ipflym4jj183maa39";
- name = "recipe";
- };
- packageRequires = [ emacs s ];
- meta = {
- homepage = "https://melpa.org/#/defrepeater";
- license = lib.licenses.free;
- };
- }) {};
deft = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -18087,31 +9772,6 @@
license = lib.licenses.free;
};
}) {};
- delim-kill = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "delim-kill";
- ename = "delim-kill";
- version = "20100516.2320";
- src = fetchFromGitHub {
- owner = "thomas11";
- repo = "delim-kill";
- rev = "1dbe47344f2d2cbc8c54beedf0cf0bf10fd203c1";
- sha256 = "06a20sd8nc273azrgha40l1fbqvv9qmxsmkjiqbf6dcf1blkwjyf";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/delim-kill";
- sha256 = "1pplc456771hi52ap1p87y7pabxlvm6raszcxjvnxff3xzw56pig";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/delim-kill";
- license = lib.licenses.free;
- };
- }) {};
demangle-mode = callPackage ({ cl-lib ? null
, emacs
, fetchFromGitHub
@@ -18139,31 +9799,6 @@
license = lib.licenses.free;
};
}) {};
- demo-it = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "demo-it";
- ename = "demo-it";
- version = "20180403.2032";
- src = fetchFromGitHub {
- owner = "howardabrams";
- repo = "demo-it";
- rev = "4f74e6f1bb6519587303e20fe59470853b1a0352";
- sha256 = "15j4f7jjjhrcjycxwzqnwqhm3fyvjnisd41k5lw13dnhbmp1gzx6";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1dec5877db00c29d81d76be0ee2504399bad9cc4/recipes/demo-it";
- sha256 = "063v115xy9mcga4qv16v538k12rn9maz92khzwa35wx56bwz4gg7";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/demo-it";
- license = lib.licenses.free;
- };
- }) {};
describe-number = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -18269,109 +9904,6 @@
license = lib.licenses.free;
};
}) {};
- detour = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "detour";
- ename = "detour";
- version = "20181122.1338";
- src = fetchFromGitHub {
- owner = "ska2342";
- repo = "detour";
- rev = "f41f17cf1cf4f3db41563ff011786b6567596fb4";
- sha256 = "1mgz2gicp7wm41x8y8q4wwsa92pga67wngpf8473lb2jrzpf78k6";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/010af7946b10ded846225a19d375434b5d9427a8/recipes/detour";
- sha256 = "0w63vqlzkvx54y8y71gzzdyxzm4430bqfyapzyrzrsmxh773hnmn";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/detour";
- license = lib.licenses.free;
- };
- }) {};
- devdocs = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "devdocs";
- ename = "devdocs";
- version = "20170731.150";
- src = fetchFromGitHub {
- owner = "xuchunyang";
- repo = "DevDocs.el";
- rev = "a2d51e824f0cc48a9dd611cc740bc8b86143e611";
- sha256 = "0nzh7pgvj4cs5d29lrrmbas29xdslgqzsqjmpapzqzbnrgprnbx8";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/35763febad20f29320d459394f810668db6c3353/recipes/devdocs";
- sha256 = "14vab71fy5i1ccmzgfdg37lfs1ix3qwhcyk9lvbahcmwnbnimlzm";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/devdocs";
- license = lib.licenses.free;
- };
- }) {};
- dfmt = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "dfmt";
- ename = "dfmt";
- version = "20170728.323";
- src = fetchFromGitHub {
- owner = "qsimpleq";
- repo = "elisp-dfmt";
- rev = "21b9094e907b7ac53f5ecb4ff4539613a9d12434";
- sha256 = "11r1i8nlz98z49fqb447abg1pv6838q54ly19wyg82k52875ms7m";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/a343a752d25185b30b10805c4012f3b21a03651e/recipes/dfmt";
- sha256 = "06g9yimw6q4wl2prspr8vjyv2pxk8bb0451wplpp70h5ajfwy3dz";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/dfmt";
- license = lib.licenses.free;
- };
- }) {};
- dhall-mode = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , reformatter }:
- melpaBuild {
- pname = "dhall-mode";
- ename = "dhall-mode";
- version = "20190113.1601";
- src = fetchFromGitHub {
- owner = "psibi";
- repo = "dhall-mode";
- rev = "b59698e9f81ef30cc784729ee4d8c719e6c21bf6";
- sha256 = "1aw6b2gkpclzahyyzxmj2025l8c82w83lz4ixxv5fk63yc9vj96l";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/c7ab435077b2f47d75ddc0ff10c64ee2b46044e2/recipes/dhall-mode";
- sha256 = "1zkspjwllcw9k4nlnif6jdwzl08ki39vmx90apw029n87xhvx7mp";
- name = "recipe";
- };
- packageRequires = [ emacs reformatter ];
- meta = {
- homepage = "https://melpa.org/#/dhall-mode";
- license = lib.licenses.free;
- };
- }) {};
dianyou = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -18424,33 +9956,6 @@
license = lib.licenses.free;
};
}) {};
- dic-lookup-w3m = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , stem
- , w3m }:
- melpaBuild {
- pname = "dic-lookup-w3m";
- ename = "dic-lookup-w3m";
- version = "20180526.921";
- src = fetchFromGitHub {
- owner = "emacsorphanage";
- repo = "dic-lookup-w3m";
- rev = "3254ab10cbf0078c7162557dd1f68dac28459cf9";
- sha256 = "0g8kzaxjka7n9jdldh45m22nizgv0m0v94ns7vmmhf1hpsf3zfxz";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/30de78c9cf83de30093a5647976eeaf552d4b2cb/recipes/dic-lookup-w3m";
- sha256 = "1kwbmzzf8sj4bn5kicmlp2hzv8ydcikwmdy7s40ggkgf1mk9zvqr";
- name = "recipe";
- };
- packageRequires = [ stem w3m ];
- meta = {
- homepage = "https://melpa.org/#/dic-lookup-w3m";
- license = lib.licenses.free;
- };
- }) {};
dictcc = callPackage ({ cl-lib ? null
, emacs
, fetchFromGitHub
@@ -18560,31 +10065,6 @@
license = lib.licenses.free;
};
}) {};
- diffscuss-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "diffscuss-mode";
- ename = "diffscuss-mode";
- version = "20141014.1657";
- src = fetchFromGitHub {
- owner = "tomheon";
- repo = "diffscuss";
- rev = "bbc6dbed4b97d1eb9ae5dae021ed1e066129bd98";
- sha256 = "0ppsgfzmdg0r418n2x0qxwhyqs7hjj8fgazc4xzgs8fsg4j3h7mr";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/3416586d4d782cdd61a56159c5f80a0ca9b3ddf4/recipes/diffscuss-mode";
- sha256 = "1mycjis38gqwha7jgj05fzv0041ghk6khy5d2dlcyy2nh3bb68rb";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/diffscuss-mode";
- license = lib.licenses.free;
- };
- }) {};
diffview = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -18635,86 +10115,6 @@
license = lib.licenses.free;
};
}) {};
- digit-groups = callPackage ({ dash
- , fetchhg
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "digit-groups";
- ename = "digit-groups";
- version = "20160816.1926";
- src = fetchhg {
- url = "https://bitbucket.com/adamsmd/digit-groups";
- rev = "ee1d6de37260";
- sha256 = "0rkajjlw820gfx1kclkcvdq7milhiid2yzvn9hd275ydskrhhwlp";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/eea9d435c7c1889b16549a0ef3f66483b2de3605/recipes/digit-groups";
- sha256 = "1wy1hf15qi9v0wz2rykpf40v3g2n4mha6h207m0zn8l8rb79hwjq";
- name = "recipe";
- };
- packageRequires = [ dash ];
- meta = {
- homepage = "https://melpa.org/#/digit-groups";
- license = lib.licenses.free;
- };
- }) {};
- digitalocean = callPackage ({ emacs
- , fetchFromGitLab
- , fetchurl
- , lib
- , melpaBuild
- , request }:
- melpaBuild {
- pname = "digitalocean";
- ename = "digitalocean";
- version = "20180603.225";
- src = fetchFromGitLab {
- owner = "olymk2";
- repo = "emacs-digitalocean";
- rev = "1cac663c4bcb7f8325783954df6c0caf3dc20f6e";
- sha256 = "0iinc4c3bpqqwp077437hl4z1ja7fwc1qq2ldbi7xbz4cn819f2l";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/bc81950b42e4fdc9e6710ba1b859f0fba98be3fa/recipes/digitalocean";
- sha256 = "086v4wrzkjgjks6lfp2hn97pcbplxmc7y7bbiriw4gixgqds6yx9";
- name = "recipe";
- };
- packageRequires = [ emacs request ];
- meta = {
- homepage = "https://melpa.org/#/digitalocean";
- license = lib.licenses.free;
- };
- }) {};
- digitalocean-helm = callPackage ({ digitalocean
- , emacs
- , fetchFromGitLab
- , fetchurl
- , helm
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "digitalocean-helm";
- ename = "digitalocean-helm";
- version = "20180610.46";
- src = fetchFromGitLab {
- owner = "olymk2";
- repo = "emacs-digitalocean-helm";
- rev = "b125c9882eded7d73ec109d152b26625f333440b";
- sha256 = "072v1800gjv566fqjxp8dvzkilwhbvl7lc5fqc0mr4xw8lpldkx9";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/bc81950b42e4fdc9e6710ba1b859f0fba98be3fa/recipes/digitalocean-helm";
- sha256 = "0q1ir6i9x1ql5c8vg1bff9px2jpwb0rxfiavk9fj3mqbjdifrz0w";
- name = "recipe";
- };
- packageRequires = [ digitalocean emacs helm ];
- meta = {
- homepage = "https://melpa.org/#/digitalocean-helm";
- license = lib.licenses.free;
- };
- }) {};
dim = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -18848,31 +10248,6 @@
license = lib.licenses.free;
};
}) {};
- dircmp = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "dircmp";
- ename = "dircmp";
- version = "20141204.956";
- src = fetchFromGitHub {
- owner = "matthewlmcclure";
- repo = "dircmp-mode";
- rev = "558ee0b601c2de9d247612085aafe2926f56a09f";
- sha256 = "0mcsfsybpsxhzkd2m9bzc0np49azm6qf5x4x9h9lbxc8vfgh4z8s";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/b146db5977003cb48bc37317f3df19b8a8c7fc30/recipes/dircmp";
- sha256 = "0cnj7b0s8vc83sh9sai1cldw54krk5qbz1qmlvvd1whryf2pc95c";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/dircmp";
- license = lib.licenses.free;
- };
- }) {};
dired-atool = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -18899,86 +10274,6 @@
license = lib.licenses.free;
};
}) {};
- dired-avfs = callPackage ({ dash
- , dired-hacks-utils
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "dired-avfs";
- ename = "dired-avfs";
- version = "20161012.404";
- src = fetchFromGitHub {
- owner = "Fuco1";
- repo = "dired-hacks";
- rev = "bef0c7eb03474defa02bbba5c15401a766c8ff7c";
- sha256 = "1l7kay58ix9gmn06nws04f642svy0s1zplh86m7ihq4b6jb04hxj";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/568e524b7bdf91b31655bdbb30fe9481d7a0ffbf/recipes/dired-avfs";
- sha256 = "1q42pvrpmd525887iicd3m5gw4w2a78xb72v7fjfl30ay1kir4bm";
- name = "recipe";
- };
- packageRequires = [ dash dired-hacks-utils ];
- meta = {
- homepage = "https://melpa.org/#/dired-avfs";
- license = lib.licenses.free;
- };
- }) {};
- dired-collapse = callPackage ({ dash
- , dired-hacks-utils
- , f
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "dired-collapse";
- ename = "dired-collapse";
- version = "20180724.944";
- src = fetchFromGitHub {
- owner = "Fuco1";
- repo = "dired-hacks";
- rev = "3fd347a0823312e966872bd0d26d9a75b2898c9c";
- sha256 = "01q93n4b9js29r2grk53206f7blwp2pjyz8lf98x184f2sdrz9k7";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/6aab23df1451682ff18d9ad02c35cb7ec612bc38/recipes/dired-collapse";
- sha256 = "1k8h5cl8r68rnr1a3jnbc0ydflzm5mad7v7f1q60wks5hv61dsd1";
- name = "recipe";
- };
- packageRequires = [ dash dired-hacks-utils f ];
- meta = {
- homepage = "https://melpa.org/#/dired-collapse";
- license = lib.licenses.free;
- };
- }) {};
- dired-dups = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "dired-dups";
- ename = "dired-dups";
- version = "20130527.1425";
- src = fetchFromGitHub {
- owner = "vapniks";
- repo = "dired-dups";
- rev = "694ad128c822c59348ced16c4a0c1356d43da47a";
- sha256 = "1lcmpzwj43gix2q56bh2gw3gfqh8vl5j3mqr8s7v3k0aw816j0ni";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/6d01ad74959e17b5708ba9fa6a4958d4cda4e232/recipes/dired-dups";
- sha256 = "05s02gw8b339yvsr7vvka1r2140y7mbjzs8px4kn4acgb5y7rk71";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/dired-dups";
- license = lib.licenses.free;
- };
- }) {};
dired-efap = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -19055,86 +10350,6 @@
license = lib.licenses.free;
};
}) {};
- dired-filetype-face = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "dired-filetype-face";
- ename = "dired-filetype-face";
- version = "20180907.639";
- src = fetchFromGitHub {
- owner = "jixiuf";
- repo = "dired-filetype-face";
- rev = "7ade7f7e8c2d7518c65f3f0343a10c272da0f47e";
- sha256 = "0s8mqz331iw2bk4xdvj9zljklqj8dxv0yaw100lddg37qmdf7lgl";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/4e6c8015af3d5f013272308a97e089a4e3ca847d/recipes/dired-filetype-face";
- sha256 = "1g9wzkkqmlkxlxwx43446q9mlam035zwq0wzpf7m6394rw2xlwx6";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/dired-filetype-face";
- license = lib.licenses.free;
- };
- }) {};
- dired-filter = callPackage ({ cl-lib ? null
- , dash
- , dired-hacks-utils
- , f
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "dired-filter";
- ename = "dired-filter";
- version = "20190211.1220";
- src = fetchFromGitHub {
- owner = "Fuco1";
- repo = "dired-hacks";
- rev = "618b2037a3fc6940894a1030863298c96362c3b8";
- sha256 = "061aadq4k7rfarp2yqzzldldr4k1g7m44jvnbsypddbnwqp6nf5c";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/568e524b7bdf91b31655bdbb30fe9481d7a0ffbf/recipes/dired-filter";
- sha256 = "1mw94210i57wrqfyif6rh689xbwbpv1qp6bgc0j7z6g4xypvd52p";
- name = "recipe";
- };
- packageRequires = [ cl-lib dash dired-hacks-utils f ];
- meta = {
- homepage = "https://melpa.org/#/dired-filter";
- license = lib.licenses.free;
- };
- }) {};
- dired-hacks-utils = callPackage ({ dash
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "dired-hacks-utils";
- ename = "dired-hacks-utils";
- version = "20160527.1436";
- src = fetchFromGitHub {
- owner = "Fuco1";
- repo = "dired-hacks";
- rev = "9bb7100d80b96bdfa2154c2b2f509d5b9f6cd7cd";
- sha256 = "1pxvfrkxr4x0vbp313lhbwhrqhsv8kj3b8sbx89sym8f8fdn33js";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/568e524b7bdf91b31655bdbb30fe9481d7a0ffbf/recipes/dired-hacks-utils";
- sha256 = "1vgl0wqf7gc2nbiqjn0rkrdlnxfm3wrgspx5b3cixv2n8rqx8kyi";
- name = "recipe";
- };
- packageRequires = [ dash ];
- meta = {
- homepage = "https://melpa.org/#/dired-hacks-utils";
- license = lib.licenses.free;
- };
- }) {};
dired-hide-dotfiles = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -19238,85 +10453,6 @@
license = lib.licenses.free;
};
}) {};
- dired-launch = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "dired-launch";
- ename = "dired-launch";
- version = "20180607.1141";
- src = fetchFromGitHub {
- owner = "thomp";
- repo = "dired-launch";
- rev = "ad45940f76ef2f6c3bb55e998829b311de191dae";
- sha256 = "057nqlvqnq30gxfidmynp33040bgdq4gbwk0qdm294c5ap2af5yj";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/31c9a4945d65aa6afc371c447a572284d38d4d71/recipes/dired-launch";
- sha256 = "0vhf0iai60mp8sp7snishz6nrw0bcriq4cx64f41lk1adjb2mqaw";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/dired-launch";
- license = lib.licenses.free;
- };
- }) {};
- dired-narrow = callPackage ({ dash
- , dired-hacks-utils
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "dired-narrow";
- ename = "dired-narrow";
- version = "20181114.923";
- src = fetchFromGitHub {
- owner = "Fuco1";
- repo = "dired-hacks";
- rev = "c7184dc8f6ed3f2330db8d8f21f01c4b08056dd3";
- sha256 = "1i5a6srd3fpqdvvhyv0swybznimx9ilpm3sd76ha3shispyij1x5";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/8994330f90a925df17ae425ccdc87865df8e19cd/recipes/dired-narrow";
- sha256 = "1rgqiscbizalh78jwc53zbj599dd13a6vzdgf75vzllc1w7jsg6d";
- name = "recipe";
- };
- packageRequires = [ dash dired-hacks-utils ];
- meta = {
- homepage = "https://melpa.org/#/dired-narrow";
- license = lib.licenses.free;
- };
- }) {};
- dired-open = callPackage ({ dash
- , dired-hacks-utils
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "dired-open";
- ename = "dired-open";
- version = "20180922.413";
- src = fetchFromGitHub {
- owner = "Fuco1";
- repo = "dired-hacks";
- rev = "a45737d3a5aaac6928ebd7af041e5603dffaca64";
- sha256 = "1bhz0x7sa4a56f5ha8h9w36y5pirvzhkhczyfwf4z74j4z5z44sm";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/568e524b7bdf91b31655bdbb30fe9481d7a0ffbf/recipes/dired-open";
- sha256 = "0a4ksz2jkva4gvhprywjc1fzrbf95xdk8gn25nv1h1c1ckhr91qx";
- name = "recipe";
- };
- packageRequires = [ dash dired-hacks-utils ];
- meta = {
- homepage = "https://melpa.org/#/dired-open";
- license = lib.licenses.free;
- };
- }) {};
dired-quick-sort = callPackage ({ fetchFromGitLab
, fetchurl
, hydra
@@ -19343,111 +10479,6 @@
license = lib.licenses.free;
};
}) {};
- dired-rainbow = callPackage ({ dash
- , dired-hacks-utils
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "dired-rainbow";
- ename = "dired-rainbow";
- version = "20171202.1448";
- src = fetchFromGitHub {
- owner = "Fuco1";
- repo = "dired-hacks";
- rev = "edea7534b36297211fe1c0e493220a5cc1bdec93";
- sha256 = "1g05r0krgyyj91digvd07vn6qi9m8yigj6w97bg8zgcsrxhlmc07";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/568e524b7bdf91b31655bdbb30fe9481d7a0ffbf/recipes/dired-rainbow";
- sha256 = "1b9yh8p2x1dg7dyqhjhnqqiiymyl6bwsam65j0lpvbdx8r4iw882";
- name = "recipe";
- };
- packageRequires = [ dash dired-hacks-utils ];
- meta = {
- homepage = "https://melpa.org/#/dired-rainbow";
- license = lib.licenses.free;
- };
- }) {};
- dired-ranger = callPackage ({ dash
- , dired-hacks-utils
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "dired-ranger";
- ename = "dired-ranger";
- version = "20180401.1506";
- src = fetchFromGitHub {
- owner = "Fuco1";
- repo = "dired-hacks";
- rev = "89af4f12ce4a0692c9c9824eacf56875ca86cb36";
- sha256 = "0nyc17b029ksa6aai5890g6ainncixgig9cnjjp7khcifmrrpw9s";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/c03f6f8c779c8784f52adb20b266404cb537113a/recipes/dired-ranger";
- sha256 = "19lbbzqflqda5b0alqfzdhpbgqssghqb4n4viq8x4l1fac8mby6h";
- name = "recipe";
- };
- packageRequires = [ dash dired-hacks-utils ];
- meta = {
- homepage = "https://melpa.org/#/dired-ranger";
- license = lib.licenses.free;
- };
- }) {};
- dired-recent = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "dired-recent";
- ename = "dired-recent";
- version = "20180921.1538";
- src = fetchFromGitHub {
- owner = "Vifon";
- repo = "dired-recent.el";
- rev = "b67f0fd346b03012f3c31d0a979d16290140557b";
- sha256 = "0nnaxynvwz346mr26l1whkd6myynr5fl0mhih3q1bkwsd93s0k4q";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/35763febad20f29320d459394f810668db6c3353/recipes/dired-recent";
- sha256 = "1qvw7m6wzahc0xmf37cyl9lv1k9442j0kkzx6dl6f0wclw0v6hgs";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/dired-recent";
- license = lib.licenses.free;
- };
- }) {};
- dired-rifle = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "dired-rifle";
- ename = "dired-rifle";
- version = "20181012.1431";
- src = fetchFromGitHub {
- owner = "Vifon";
- repo = "dired-rifle.el";
- rev = "a4f7b1e798397688b9c00d3507fcd395ece17a40";
- sha256 = "09jp54drbx1hb4fj6bzh8ava7nk56pp500xsa9712vscg1f38fpz";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/35763febad20f29320d459394f810668db6c3353/recipes/dired-rifle";
- sha256 = "1x6i68i7f1c3k0w3w4zph16s046ccajyb2641fx0j8dl5367qgbc";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/dired-rifle";
- license = lib.licenses.free;
- };
- }) {};
dired-rmjunk = callPackage ({ fetchgit
, fetchurl
, lib
@@ -19500,33 +10531,6 @@
license = lib.licenses.free;
};
}) {};
- dired-sidebar = callPackage ({ dired-subtree
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "dired-sidebar";
- ename = "dired-sidebar";
- version = "20190319.1811";
- src = fetchFromGitHub {
- owner = "jojojames";
- repo = "dired-sidebar";
- rev = "c895f43e2ee77042f2f9596c4cde8f5f224b8403";
- sha256 = "1wrlvlrv7lh71m6jambbpcxdg0416h1w5d5y673igkp0ri87n2q8";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/30e15c8361b01195f198197e704828fbcac0e8d6/recipes/dired-sidebar";
- sha256 = "19a4gsx9wmpc94jd992c7dj5mxfnnij2nc6qnb2lhk8ad69h1lmc";
- name = "recipe";
- };
- packageRequires = [ dired-subtree emacs ];
- meta = {
- homepage = "https://melpa.org/#/dired-sidebar";
- license = lib.licenses.free;
- };
- }) {};
dired-single = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -19552,33 +10556,6 @@
license = lib.licenses.free;
};
}) {};
- dired-subtree = callPackage ({ dash
- , dired-hacks-utils
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "dired-subtree";
- ename = "dired-subtree";
- version = "20180922.915";
- src = fetchFromGitHub {
- owner = "Fuco1";
- repo = "dired-hacks";
- rev = "c5e9dcdf2ee6fd5660e2bfbb8c635674053df7c9";
- sha256 = "1qcsklrvs8dajj7nyhd70ql4df3ayjkgxyf8ldm48ajms5qslkfb";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/d6a947ac9476f10b95a3c153ec784d2a8330dd4c/recipes/dired-subtree";
- sha256 = "1vqcnkh3g6dwi2hwfkb534q0j19pkqzqk3yb7ah8ck4z4ln4ppfk";
- name = "recipe";
- };
- packageRequires = [ dash dired-hacks-utils ];
- meta = {
- homepage = "https://melpa.org/#/dired-subtree";
- license = lib.licenses.free;
- };
- }) {};
dired-toggle = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -19758,60 +10735,6 @@
license = lib.licenses.free;
};
}) {};
- dirtree = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , tree-mode
- , windata }:
- melpaBuild {
- pname = "dirtree";
- ename = "dirtree";
- version = "20140129.32";
- src = fetchFromGitHub {
- owner = "emacsorphanage";
- repo = "dirtree";
- rev = "ba55f1e716e386fdd37cb8e7f48616e405dc7251";
- sha256 = "0abs3r4zzfnf4igiakrv3bpyxz7qlnw26l57rynsk7c3w3s5ya29";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/ae489be43b1aee93614e40f492ebdf0b98a3fbc1/recipes/dirtree";
- sha256 = "1fm003rix3sdfx8fq3ab5s8b2q65gbkjsn1j3fg5qmhv56p7lrs9";
- name = "recipe";
- };
- packageRequires = [ tree-mode windata ];
- meta = {
- homepage = "https://melpa.org/#/dirtree";
- license = lib.licenses.free;
- };
- }) {};
- dirtree-prosjekt = callPackage ({ dirtree
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , prosjekt }:
- melpaBuild {
- pname = "dirtree-prosjekt";
- ename = "dirtree-prosjekt";
- version = "20140129.104";
- src = fetchFromGitHub {
- owner = "abingham";
- repo = "prosjekt";
- rev = "03e06910589ba5cd736868793eb436b3233c6a26";
- sha256 = "06fw9730djlv86jj8nhd1ll9mi4z53qwn6yqpqxciqqlz64pvzid";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/6d359ec827573dd8c871c4f23df5d1737f1830e7/recipes/dirtree-prosjekt";
- sha256 = "0pyb6c0gvc16z5rc5h0kpl8021hz2hzv86cmjsd20gbhz7imrqwk";
- name = "recipe";
- };
- packageRequires = [ dirtree prosjekt ];
- meta = {
- homepage = "https://melpa.org/#/dirtree-prosjekt";
- license = lib.licenses.free;
- };
- }) {};
disable-mouse = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -19837,59 +10760,6 @@
license = lib.licenses.free;
};
}) {};
- disaster = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "disaster";
- ename = "disaster";
- version = "20171016.1452";
- src = fetchFromGitHub {
- owner = "jart";
- repo = "disaster";
- rev = "10a785facc60d89d78e0d5177985ab1af1741bb4";
- sha256 = "0iz43jdkh5qdllqdchliys84gn9bpj6688rpc4jnycp64141m6cx";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/a4654b3646b96f967e2c75440e664a417cd0f517/recipes/disaster";
- sha256 = "1ad8q81n0s13cwmm216wqx3s92195pda1amc4wxvpb3lq7dbd3yn";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/disaster";
- license = lib.licenses.free;
- };
- }) {};
- discourse = callPackage ({ cl-lib ? null
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , request
- , s }:
- melpaBuild {
- pname = "discourse";
- ename = "discourse";
- version = "20160911.119";
- src = fetchFromGitHub {
- owner = "lujun9972";
- repo = "discourse-api";
- rev = "a86c7e608851e186fe12e892a573994f08c8e65e";
- sha256 = "1p4crd7v94hmqzqh8bc7jx1pfhallmj4kn36f8l22z4r2mkyycxc";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/f5e64fc3fa3fc7d0ac14e7e5d324ee1ca77ea4c3/recipes/discourse";
- sha256 = "0j11pyly7qni3gqgywd9bkzfm1dfvhbfjc7pls9n9s26nbqdzcw9";
- name = "recipe";
- };
- packageRequires = [ cl-lib request s ];
- meta = {
- homepage = "https://melpa.org/#/discourse";
- license = lib.licenses.free;
- };
- }) {};
discover = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -19916,60 +10786,6 @@
license = lib.licenses.free;
};
}) {};
- discover-clj-refactor = callPackage ({ clj-refactor
- , discover
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "discover-clj-refactor";
- ename = "discover-clj-refactor";
- version = "20150328.759";
- src = fetchFromGitHub {
- owner = "maio";
- repo = "discover-clj-refactor.el";
- rev = "3fbd5c1162739e606d7cf5d4f5d7426547d99647";
- sha256 = "0l2g58f55p8zmzv2q2hf163ggm9p0wk8hg93wlkyldrgyb94dgf4";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/3311371cadf00b00bfbece4e4b2f96c226f0e27d/recipes/discover-clj-refactor";
- sha256 = "08bz60fxcgzab77690mmv0f7wdxcpygmasazcss427k37z9ysm7r";
- name = "recipe";
- };
- packageRequires = [ clj-refactor discover ];
- meta = {
- homepage = "https://melpa.org/#/discover-clj-refactor";
- license = lib.licenses.free;
- };
- }) {};
- discover-js2-refactor = callPackage ({ discover
- , fetchFromGitHub
- , fetchurl
- , js2-refactor
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "discover-js2-refactor";
- ename = "discover-js2-refactor";
- version = "20140129.752";
- src = fetchFromGitHub {
- owner = "NicolasPetton";
- repo = "discover-js2-refactor";
- rev = "3812abf61f39f3e73a9f3daefa6fed4f21a429ba";
- sha256 = "1vnbn4asz3lifscvy4shzisl6r0gkgq0qsa3kpgif3853wcd2rvn";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/b84129a8a90f8f66a513c11c299e0acb5f3fbd3a/recipes/discover-js2-refactor";
- sha256 = "139zq66cpcn4dnidf22h7x88p812ywrrz4c3c62w3915b75f71ki";
- name = "recipe";
- };
- packageRequires = [ discover js2-refactor ];
- meta = {
- homepage = "https://melpa.org/#/discover-js2-refactor";
- license = lib.licenses.free;
- };
- }) {};
discover-my-major = callPackage ({ fetchgit
, fetchurl
, lib
@@ -19995,31 +10811,6 @@
license = lib.licenses.free;
};
}) {};
- disk = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "disk";
- ename = "disk";
- version = "20171115.2331";
- src = fetchFromGitHub {
- owner = "kensanata";
- repo = "disk";
- rev = "283e54e3be7d08f959076240b2ab324e25632137";
- sha256 = "15fkfl9kjlpsg9p5g0xhm384ipvrzclwxvqk8vz1zixq0wam2ajm";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/e6e75695594ce17b618ad8786c8a04e283f68b11/recipes/disk";
- sha256 = "1jzkqgjw8xl0jc6ssl5bsdjp2dxw88nss6szvjv7frrhsncaq28h";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/disk";
- license = lib.licenses.free;
- };
- }) {};
dispass = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -20045,134 +10836,6 @@
license = lib.licenses.free;
};
}) {};
- display-theme = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "display-theme";
- ename = "display-theme";
- version = "20140115.756";
- src = fetchFromGitHub {
- owner = "kawabata";
- repo = "emacs-display-theme";
- rev = "b180b3be7a74ae4799a14e7e4bc2fe10e3ff7a15";
- sha256 = "0r560bpgw5p2pfcgkgcrlpp1bprv1f23dl4y5fjk06dg93fgaysa";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/4dd76f49f1c10656ea0004a654d73666e1d188db/recipes/display-theme";
- sha256 = "07nqscmfa6iykll1m6gyiqca1g5ncx3rx468iyf2ahygpvqvnbxa";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/display-theme";
- license = lib.licenses.free;
- };
- }) {};
- dist-file-mode = callPackage ({ cl-lib ? null
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , s }:
- melpaBuild {
- pname = "dist-file-mode";
- ename = "dist-file-mode";
- version = "20180829.2118";
- src = fetchFromGitHub {
- owner = "emacs-php";
- repo = "dist-file-mode.el";
- rev = "e1ce8f592bc5d4d86d2f09e334728ac0d524c761";
- sha256 = "09rp83d81y9mm81isrwvacl21vgah7nhi5r4j2xbp13kgdn7my1w";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/dd10fbed2810a642600dba9dfe320fa6299e6d34/recipes/dist-file-mode";
- sha256 = "1gbnkb0537gw8flv4gdi4jzb7y9dnbf9cfj2jw8y84axyfzbb4mf";
- name = "recipe";
- };
- packageRequires = [ cl-lib emacs s ];
- meta = {
- homepage = "https://melpa.org/#/dist-file-mode";
- license = lib.licenses.free;
- };
- }) {};
- distel-completion-lib = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "distel-completion-lib";
- ename = "distel-completion-lib";
- version = "20180827.644";
- src = fetchFromGitHub {
- owner = "sebastiw";
- repo = "distel-completion";
- rev = "acc4c0a5521904203d797fe96b08e5fae4233c7e";
- sha256 = "0yvp3dwa9mwfyrqla27ycwyjad4bp1267bxv0chxcr4528hnygl3";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/90fff35dd9709b06802edef89d1fe6a96b7115a6/recipes/distel-completion-lib";
- sha256 = "0b06z3k30b4x5zpzk0jgcs7kcaix64xx81iskm1kys57r3gskzpa";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/distel-completion-lib";
- license = lib.licenses.free;
- };
- }) {};
- distinguished-theme = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "distinguished-theme";
- ename = "distinguished-theme";
- version = "20151216.1215";
- src = fetchFromGitHub {
- owner = "Lokaltog";
- repo = "distinguished-theme";
- rev = "9b1d25ac59465a5016d187ea84b7614c95a29b3b";
- sha256 = "03d8zb2is7n2y2z0k6j37cijjc3ndgasxsm9gqyq7drlq9bqwzsm";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/8d969e91bbba522a31d6ae7a81c7783034c15b9b/recipes/distinguished-theme";
- sha256 = "0h03aqgijrmisbgqga42zlb5yz4x3jn9jgr29rq8canyhayr3rk4";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/distinguished-theme";
- license = lib.licenses.free;
- };
- }) {};
- ditz-mode = callPackage ({ fetchhg
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "ditz-mode";
- ename = "ditz-mode";
- version = "20150729.240";
- src = fetchhg {
- url = "https://bitbucket.com/zondo/ditz-mode";
- rev = "beac4c1f3b7e";
- sha256 = "1cbsy4lchl41zmyxfq828cjpl3h2dwvn8xf1qgf2lbscdb6cwbwb";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/02e2a2a25f42929626d7237511136ba6826dad33/recipes/ditz-mode";
- sha256 = "0shzm9l31n4ffjs1d26ykxsycd478lhlpl8xcwzbjryywg4gf5nd";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/ditz-mode";
- license = lib.licenses.free;
- };
- }) {};
dix = callPackage ({ cl-lib ? null
, emacs
, fetchFromGitHub
@@ -20227,31 +10890,6 @@
license = lib.licenses.free;
};
}) {};
- dizzee = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "dizzee";
- ename = "dizzee";
- version = "20171201.116";
- src = fetchFromGitHub {
- owner = "davidmiller";
- repo = "dizzee";
- rev = "e3cf1c2ea5d0fc00747524b6f3c5b905d0a8c8e1";
- sha256 = "1i32msin8ra963w7af6612d038gxb25m1gj97kbjymjq1r8zbdrv";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/dizzee";
- sha256 = "14y10k8s65cyn86m1z77817436m89l0xpwd1wr4d7qp3x2mmn215";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/dizzee";
- license = lib.licenses.free;
- };
- }) {};
django-commands = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -20278,378 +10916,6 @@
license = lib.licenses.free;
};
}) {};
- django-manage = callPackage ({ fetchFromGitHub
- , fetchurl
- , hydra
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "django-manage";
- ename = "django-manage";
- version = "20160818.1912";
- src = fetchFromGitHub {
- owner = "gopar";
- repo = "django-manage";
- rev = "e72b1cf2fdbb5c624d19169176e60467b4918fe2";
- sha256 = "0lyi64dfd2njlnf9dzb8i88rrw930jiq99xfn8zmh87y6qy1j79i";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/66f88d30a1ab9b7f9281a2b5939c7ab2711b966a/recipes/django-manage";
- sha256 = "0j95g7fps28xhlrikkg61xgpbpf52xb56swmns2qdib6x1xzd6rh";
- name = "recipe";
- };
- packageRequires = [ hydra ];
- meta = {
- homepage = "https://melpa.org/#/django-manage";
- license = lib.licenses.free;
- };
- }) {};
- django-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , helm-make
- , lib
- , melpaBuild
- , projectile
- , s }:
- melpaBuild {
- pname = "django-mode";
- ename = "django-mode";
- version = "20170522.14";
- src = fetchFromGitHub {
- owner = "myfreeweb";
- repo = "django-mode";
- rev = "a71b8dd984e7f724b8321246e5c353a4ae5c986e";
- sha256 = "0xf33ri5phy2mrb1dwvqb8waba33gj9bwmf6jhl6n0ksm43x0z40";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/bdc46811612ff96cb1e09552b9f095d68528dcb3/recipes/django-mode";
- sha256 = "1rdkzqvicjpfh9k66m31ky6jshx9fqw7pza7add36bk6xg8lbara";
- name = "recipe";
- };
- packageRequires = [ helm-make projectile s ];
- meta = {
- homepage = "https://melpa.org/#/django-mode";
- license = lib.licenses.free;
- };
- }) {};
- django-snippets = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , yasnippet }:
- melpaBuild {
- pname = "django-snippets";
- ename = "django-snippets";
- version = "20131229.811";
- src = fetchFromGitHub {
- owner = "myfreeweb";
- repo = "django-mode";
- rev = "f1e6fea8878bebc9bc0b761376a14cd5c9feda0f";
- sha256 = "16rh2yhpfv0c3arwkcnjz0r2mw3yx7ayys6wkzwgaxvx6nxpa7y1";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/bdc46811612ff96cb1e09552b9f095d68528dcb3/recipes/django-snippets";
- sha256 = "1qs9fw104kidbr5zbxc1q71yy033nq3wxh98vvzk4z4fppnd29sw";
- name = "recipe";
- };
- packageRequires = [ yasnippet ];
- meta = {
- homepage = "https://melpa.org/#/django-snippets";
- license = lib.licenses.free;
- };
- }) {};
- django-theme = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "django-theme";
- ename = "django-theme";
- version = "20131022.202";
- src = fetchFromGitHub {
- owner = "andrzejsliwa";
- repo = "django-theme.el";
- rev = "86c8142b3eb1addd94a43aa6f1d98dab06401af0";
- sha256 = "1azf4p6salga7269l0kf13bqlxf9idp0ys8mm20qpyjpj79p5g9w";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/4ede3b4fb214b915a8230e7f220ffe71c73ad7c4/recipes/django-theme";
- sha256 = "1rydl857zfpbvd7aziz6h7n3rrh584z2cbfxlss3wgfclzmbyhgf";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/django-theme";
- license = lib.licenses.free;
- };
- }) {};
- djangonaut = callPackage ({ emacs
- , f
- , fetchFromGitHub
- , fetchurl
- , lib
- , magit-popup
- , melpaBuild
- , pythonic
- , s }:
- melpaBuild {
- pname = "djangonaut";
- ename = "djangonaut";
- version = "20180727.844";
- src = fetchFromGitHub {
- owner = "proofit404";
- repo = "djangonaut";
- rev = "487dbd19a312cf5b45183df82d5d57f5c5a403a2";
- sha256 = "1fpbbv5w54r70b1xma36lp3kh5cn184bvq28apll5bd5bclii56y";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/0c1281f59add99abf57bc858d6e0f9b2ae5b3c5c/recipes/djangonaut";
- sha256 = "0038zqazzhxz82q8l1phxc3aiiwmzksz9c15by9v0apzwpmdkj38";
- name = "recipe";
- };
- packageRequires = [ emacs f magit-popup pythonic s ];
- meta = {
- homepage = "https://melpa.org/#/djangonaut";
- license = lib.licenses.free;
- };
- }) {};
- djinni-mode = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "djinni-mode";
- ename = "djinni-mode";
- version = "20190302.1739";
- src = fetchFromGitHub {
- owner = "danielmartin";
- repo = "djinni-mode";
- rev = "f0da31d8f45c4b1b2341cf88ec7f2d2e7d16267f";
- sha256 = "1jfc2n5js596wmpy6g8jyysn9hwf151s952v3ph0wpcisl7wsiyv";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/e6e88f64e21275c6755f2589d1afa16eb4e575b8/recipes/djinni-mode";
- sha256 = "19222702dr7hfl7ffqp5z4sslg949p88rwvmg2al82i1a0wkgc98";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/djinni-mode";
- license = lib.licenses.free;
- };
- }) {};
- dkdo = callPackage ({ dkmisc
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "dkdo";
- ename = "dkdo";
- version = "20131110.319";
- src = fetchFromGitHub {
- owner = "davidkeegan";
- repo = "dkdo";
- rev = "fd6bb105e8331fafb6385c5238c988c4c5bbe2da";
- sha256 = "1nbvdnw9g3zbbb0n2sn2kxfzs5wichhl9qid3qjp8dsiq1wpv459";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/2d4f75f6f6349b81ddbaaf35fb5d7ddeb4cde622/recipes/dkdo";
- sha256 = "0p7ybgldjs046jrkkbpli1iicfmblpxfz9lql8m8sz7lpjn7h300";
- name = "recipe";
- };
- packageRequires = [ dkmisc emacs ];
- meta = {
- homepage = "https://melpa.org/#/dkdo";
- license = lib.licenses.free;
- };
- }) {};
- dkl = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "dkl";
- ename = "dkl";
- version = "20161004.1707";
- src = fetchFromGitHub {
- owner = "flexibeast";
- repo = "dkl";
- rev = "6b4584f86037bda3383960c678d51f340229fb91";
- sha256 = "1xpidgj5xk0g4ajpglhbhi02s5il8qqcvh2ccf4ac9daa1r34kxp";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/e8bd9cf21473f676aa54e142b6f0bf0427f40d29/recipes/dkl";
- sha256 = "0bcv4ld8bfj2sk3sh4j1m9qqybw3l0a6b3d12qwy8lc3b8197lr0";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/dkl";
- license = lib.licenses.free;
- };
- }) {};
- dklrt = callPackage ({ dkmisc
- , emacs
- , fetchFromGitHub
- , fetchurl
- , ledger-mode
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "dklrt";
- ename = "dklrt";
- version = "20131110.541";
- src = fetchFromGitHub {
- owner = "davidkeegan";
- repo = "dklrt";
- rev = "4eceed270015b41d24a62a8b71bd239224a63063";
- sha256 = "063nnln5m42qf190vr2z0ibacyn7n0xkxm3v5vaa4gxdvdwzhshs";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/71f980fdb2180df2429c898e1507dd3b989a5a2c/recipes/dklrt";
- sha256 = "11ss5x9sxgxp1wx2r1m0vsp5z5qm8m4ww20ybr6bqjw0a1gax561";
- name = "recipe";
- };
- packageRequires = [ dkmisc emacs ledger-mode ];
- meta = {
- homepage = "https://melpa.org/#/dklrt";
- license = lib.licenses.free;
- };
- }) {};
- dkmisc = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "dkmisc";
- ename = "dkmisc";
- version = "20131110.315";
- src = fetchFromGitHub {
- owner = "davidkeegan";
- repo = "dkmisc";
- rev = "fe3d49c6f8322b6f89466361acd97585bdfe0608";
- sha256 = "1nz71g8pb19aqjcb4s94hhn6j30cc04q05kmwvcbxpjb11qqrv49";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/71f980fdb2180df2429c898e1507dd3b989a5a2c/recipes/dkmisc";
- sha256 = "0nnbl272hldcmhyj47r463yvj7b06rjdkpkl5xk0gw9ikyja7w0z";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/dkmisc";
- license = lib.licenses.free;
- };
- }) {};
- dmenu = callPackage ({ cl-lib ? null
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "dmenu";
- ename = "dmenu";
- version = "20190329.2010";
- src = fetchFromGitHub {
- owner = "lujun9972";
- repo = "el-dmenu";
- rev = "162f9f513d5dbd5f61f8d7adb48546f646d7d3fe";
- sha256 = "1216ab5n7bmpjxrfj4b13mjq1rh6wsdk1dh8mgqxvwh1mydy5lsa";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/98bcdd71a160b9c04f83cc5b939031c9e7b5eb59/recipes/dmenu";
- sha256 = "1w1pgaj2yasfhsd1ibvrwy11ykq8v17h913g298h3ycsvqv8gic0";
- name = "recipe";
- };
- packageRequires = [ cl-lib ];
- meta = {
- homepage = "https://melpa.org/#/dmenu";
- license = lib.licenses.free;
- };
- }) {};
- dna-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "dna-mode";
- ename = "dna-mode";
- version = "20170804.114";
- src = fetchFromGitHub {
- owner = "jhgorrell";
- repo = "dna-mode-el";
- rev = "471d374de22c33eaddd8e41dd8ae29753fab2f6a";
- sha256 = "05zsaypyavyn7gs0jk63chkxkm2rl4nbrqgv6zxrbqcar7gv86am";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/dna-mode";
- sha256 = "06vprwv1v4jzqzi2nj9hbhnypnvqxmixls8yf91hzwlk3fdkdywf";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/dna-mode";
- license = lib.licenses.free;
- };
- }) {};
- docbook-snippets = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , yasnippet }:
- melpaBuild {
- pname = "docbook-snippets";
- ename = "docbook-snippets";
- version = "20150714.925";
- src = fetchFromGitHub {
- owner = "jhradilek";
- repo = "emacs-docbook-snippets";
- rev = "b06297fdec039a541aaa6312cb328a11062cfab4";
- sha256 = "1nbm3wzd12rsrhnwlcc6b72b1ala328mfpcp5bwlfcdshw6mfcrq";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/07b832b72773ab41f9cbdefabd30dc1aa29d04c5/recipes/docbook-snippets";
- sha256 = "1ipqfylgiw9iyjc1nckbay890clfkhda81nr00cq06sjmm71iniq";
- name = "recipe";
- };
- packageRequires = [ yasnippet ];
- meta = {
- homepage = "https://melpa.org/#/docbook-snippets";
- license = lib.licenses.free;
- };
- }) {};
- docean = callPackage ({ cl-lib ? null
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , request }:
- melpaBuild {
- pname = "docean";
- ename = "docean";
- version = "20180605.1044";
- src = fetchFromGitHub {
- owner = "emacs-pe";
- repo = "docean.el";
- rev = "bbe2298fd21f7876fc2d5c52a69b931ff59df979";
- sha256 = "1fzs6k76nyz2xjvydks6v6d2ib7qqj181s7c8r57w9ylr2zqfacj";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/d4827fa337d7d25f2aaf67aca3081fbdaeacbcbf/recipes/docean";
- sha256 = "1mqmn2i9axnv5vnkg9gwfdjpzr6gxx4ia9mcdpm200ix297dg7x9";
- name = "recipe";
- };
- packageRequires = [ cl-lib emacs request ];
- meta = {
- homepage = "https://melpa.org/#/docean";
- license = lib.licenses.free;
- };
- }) {};
docker = callPackage ({ dash
, docker-tramp
, emacs
@@ -20690,34 +10956,6 @@
license = lib.licenses.free;
};
}) {};
- docker-api = callPackage ({ dash
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , request
- , s }:
- melpaBuild {
- pname = "docker-api";
- ename = "docker-api";
- version = "20160525.20";
- src = fetchFromGitHub {
- owner = "Silex";
- repo = "docker-api.el";
- rev = "206144346b7fa4165223349cfeb64a75d47ddd1b";
- sha256 = "0phmpranrgdi2gi89nxr1ii9xbr7h2ccpx1mkpnfxnjlzkdzq2fb";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/3924914124370fc028a7b1ecdc154a53e73037a7/recipes/docker-api";
- sha256 = "1giqiapm4hf4dhfm3x69qqpir3jg7qz3parhbx88xxqrd1z18my0";
- name = "recipe";
- };
- packageRequires = [ dash request s ];
- meta = {
- homepage = "https://melpa.org/#/docker-api";
- license = lib.licenses.free;
- };
- }) {};
docker-cli = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -20823,33 +11061,6 @@
license = lib.licenses.free;
};
}) {};
- dokuwiki = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , xml-rpc }:
- melpaBuild {
- pname = "dokuwiki";
- ename = "dokuwiki";
- version = "20180101.1659";
- src = fetchFromGitHub {
- owner = "accidentalrebel";
- repo = "emacs-dokuwiki";
- rev = "594c4d4904dcc2796bbbd2c0845d9e7c09ccf6f7";
- sha256 = "0vqx8npw0i02dhw2yb7s4z7njw60r3xyncw4z8l6fj99pp6pfh15";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/e608f40d00a3b2a80a6997da00e7d04f76d8ef0d/recipes/dokuwiki";
- sha256 = "0d92il37z1m1hgcgb6c6zaifllznzk1na4yv4bfsfqg25l0mid75";
- name = "recipe";
- };
- packageRequires = [ emacs xml-rpc ];
- meta = {
- homepage = "https://melpa.org/#/dokuwiki";
- license = lib.licenses.free;
- };
- }) {};
dokuwiki-mode = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -20875,57 +11086,6 @@
license = lib.licenses.free;
};
}) {};
- dollaro = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , s }:
- melpaBuild {
- pname = "dollaro";
- ename = "dollaro";
- version = "20151123.502";
- src = fetchFromGitHub {
- owner = "laynor";
- repo = "dollaro";
- rev = "500127f0172ac7a1eec627e026b59136580a74ac";
- sha256 = "1xyqsnymgdd8ic3az2lgwv7s7vld6d4pcycb234bxm4in9fixgdj";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/b8195000cffa1913060266b17801eb7c1e472a83/recipes/dollaro";
- sha256 = "06kaqzb0nh8sndhk7p5n4acn5nc27dyxw3ldgcbp81wj6ipii26h";
- name = "recipe";
- };
- packageRequires = [ s ];
- meta = {
- homepage = "https://melpa.org/#/dollaro";
- license = lib.licenses.free;
- };
- }) {};
- doneburn-theme = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "doneburn-theme";
- ename = "doneburn-theme";
- version = "20181110.1057";
- src = fetchFromGitHub {
- owner = "manuel-uberti";
- repo = "doneburn-theme";
- rev = "9c31dd6d664436df73c776560c7a660041b3a5bf";
- sha256 = "042jfjlhyk2lc4wbqsyvb09q5k3jsxsdi89ymwl59j0mvhxws7lj";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/7fc483d5f487f462567bba22d611f90fc8a1a709/recipes/doneburn-theme";
- sha256 = "0j8fyb6wcjrfhfjp06w0bzp5vrcvydhjwkzg4c4s4j54xaw6laxx";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/doneburn-theme";
- license = lib.licenses.free;
- };
- }) {};
doom = callPackage ({ cl-lib ? null
, fetchFromGitHub
, fetchurl
@@ -21009,32 +11169,6 @@
license = lib.licenses.free;
};
}) {};
- dot-mode = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "dot-mode";
- ename = "dot-mode";
- version = "20180312.1600";
- src = fetchFromGitHub {
- owner = "wyrickre";
- repo = "dot-mode";
- rev = "6ca22b73bcdae2363ee9641b822a60685df16a3e";
- sha256 = "10lmwra48ihxqxyl54m3yn1zy0q5w6cxqd2n5pbs4lva1yck0z4w";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/dot-mode";
- sha256 = "039ylmbvw0wb3i2w4qn3dhckz7y3swbid4hwjcxljy4szc709p6k";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/dot-mode";
- license = lib.licenses.free;
- };
- }) {};
dotenv-mode = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -21061,31 +11195,6 @@
license = lib.licenses.free;
};
}) {};
- dotnet = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "dotnet";
- ename = "dotnet";
- version = "20181117.731";
- src = fetchFromGitHub {
- owner = "julienXX";
- repo = "dotnet.el";
- rev = "70ed170caeeecba5fddbd82b0d6aec967b6c6ee4";
- sha256 = "1hdghrcyic1jng1k08fsq9fscyqx6s3rmsh9k21b91dfaxyaqj6b";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/6ef473594ec57a747ad7d9d57d7287bcacf4b446/recipes/dotnet";
- sha256 = "06k1ikwg9bis9kk4r41bm0a0d8a31wscqyr6n99d7836p1h4jfki";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/dotnet";
- license = lib.licenses.free;
- };
- }) {};
double-saber = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -21112,32 +11221,6 @@
license = lib.licenses.free;
};
}) {};
- download-region = callPackage ({ cl-lib ? null
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "download-region";
- ename = "download-region";
- version = "20180123.1733";
- src = fetchFromGitHub {
- owner = "zk-phi";
- repo = "download-region";
- rev = "bbba3ecd80818d5d940d41fe89a6e2ec5dd2c53c";
- sha256 = "1cwlbdmdils5rzhjpc3fqjmd3dhalk6i7bxskpahbrr9xxfq0iw4";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/7801d9fac121f213609a802fe9d88bdc5364d1f3/recipes/download-region";
- sha256 = "1mrl2x6j708nchyh9y5avbf2cq10kpnhfj553l6akarvl5n5pvkl";
- name = "recipe";
- };
- packageRequires = [ cl-lib ];
- meta = {
- homepage = "https://melpa.org/#/download-region";
- license = lib.licenses.free;
- };
- }) {};
downplay-mode = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -21163,57 +11246,6 @@
license = lib.licenses.free;
};
}) {};
- dpaste = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "dpaste";
- ename = "dpaste";
- version = "20160303.1312";
- src = fetchFromGitHub {
- owner = "gregnewman";
- repo = "dpaste.el";
- rev = "e7a1a18de77f752eb0dbb4b878925f2265538d0b";
- sha256 = "1493fan64lfq2gb9cgr7ja9xfd8jgqfbx9k84iaplavnpmqr5348";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/dpaste";
- sha256 = "0wrfy9w0yf5m15vmhg4l880v92cy557g332xniqs77ab0sga4vgc";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/dpaste";
- license = lib.licenses.free;
- };
- }) {};
- dpaste_de = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , web }:
- melpaBuild {
- pname = "dpaste_de";
- ename = "dpaste_de";
- version = "20131015.525";
- src = fetchFromGitHub {
- owner = "theju";
- repo = "dpaste_de.el";
- rev = "ab041443884a7a4bfdc81b055688821e8efc9b02";
- sha256 = "0aplwchr6r1nk2hfpqw2qxyp57zzkqydyzpc0mwz88halnkskblz";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/dpaste_de";
- sha256 = "0022dd8l7jsyl0lv9x6iz882ln71js8brqcbiqz001zv45yrgvy0";
- name = "recipe";
- };
- packageRequires = [ web ];
- meta = {
- homepage = "https://melpa.org/#/dpaste_de";
- license = lib.licenses.free;
- };
- }) {};
dpkg-dev-el = callPackage ({ debian-el
, fetchgit
, fetchurl
@@ -21341,110 +11373,6 @@
license = lib.licenses.free;
};
}) {};
- drawille = callPackage ({ cl-lib ? null
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "drawille";
- ename = "drawille";
- version = "20160418.1138";
- src = fetchFromGitHub {
- owner = "josuah";
- repo = "drawille-el";
- rev = "d582b455c01432bc80933650c52a1f586bd1b5ad";
- sha256 = "1z3akh0ywzihr0ghk6f8x9z38mwqy3zg29p0q69h4i6yzhxpdmxa";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/3416586d4d782cdd61a56159c5f80a0ca9b3ddf4/recipes/drawille";
- sha256 = "0nkhy00jx06a7899dgyajidah29p9536mvjr7cyqm99ari70m7y9";
- name = "recipe";
- };
- packageRequires = [ cl-lib ];
- meta = {
- homepage = "https://melpa.org/#/drawille";
- license = lib.licenses.free;
- };
- }) {};
- drill-instructor-AZIK-force = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , popup }:
- melpaBuild {
- pname = "drill-instructor-AZIK-force";
- ename = "drill-instructor-AZIK-force";
- version = "20151122.2114";
- src = fetchFromGitHub {
- owner = "myuhe";
- repo = "drill-instructor-AZIK-force.el";
- rev = "008cea202dc31d7d6fb1e7d8e6334d516403b7a5";
- sha256 = "0lzq0mkhhj3s5yrcbs576qxkd8h0m2ikc4iplk97ddpzh4nz4127";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/fb5ee8a113b98e8df8368c5e17c6d762decf8f5b/recipes/drill-instructor-AZIK-force";
- sha256 = "1bb698r11m58csd2rm17fmiw691p25npphzqgjiiqbn4vx35ja7f";
- name = "recipe";
- };
- packageRequires = [ popup ];
- meta = {
- homepage = "https://melpa.org/#/drill-instructor-AZIK-force";
- license = lib.licenses.free;
- };
- }) {};
- drone = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "drone";
- ename = "drone";
- version = "20161106.118";
- src = fetchFromGitHub {
- owner = "olymk2";
- repo = "emacs-drone";
- rev = "1d4ee037ad3208847a4235426edf0c4a3e7b1899";
- sha256 = "1dwxgzf32cvfi7b6zw3qzamj82zs2c0ap6i1w0jqqgzmkz20dqvf";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/3b62e697798627b07000ac72c19ecd1d89c22229/recipes/drone";
- sha256 = "0wjbmgic715i4nxk90nasfamk04lskl8dll9y5klk32w1lsj546q";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/drone";
- license = lib.licenses.free;
- };
- }) {};
- dropbox = callPackage ({ fetchFromGitHub
- , fetchurl
- , json ? null
- , lib
- , melpaBuild
- , oauth }:
- melpaBuild {
- pname = "dropbox";
- ename = "dropbox";
- version = "20181208.1448";
- src = fetchFromGitHub {
- owner = "pavpanchekha";
- repo = "dropbox.el";
- rev = "9fcb70c3e4e32b1612644d65e3b98f00255a40d4";
- sha256 = "0a26cfv7ayalwgg78jm4r6m2wv1wjqy4s0y1lv6j8zv193mqzgdz";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/dropbox";
- sha256 = "1dqjsn7wkjjvbwq3kgdd7bvwrirappwnhcwkj2ai19dpx6jd8wym";
- name = "recipe";
- };
- packageRequires = [ json oauth ];
- meta = {
- homepage = "https://melpa.org/#/dropbox";
- license = lib.licenses.free;
- };
- }) {};
drupal-mode = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -21496,86 +11424,6 @@
license = lib.licenses.free;
};
}) {};
- dsvn = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "dsvn";
- ename = "dsvn";
- version = "20190316.1501";
- src = fetchFromGitHub {
- owner = "emacsmirror";
- repo = "dsvn";
- rev = "c37d2412ba92aad647bcf5aeb151e620e8069f8d";
- sha256 = "1bv4ivv9j5r0ax4vay1kmwv753y44qj6qprr38yh7ky0fpsml34c";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/be27e728327016b819535ef8cae10020e5a07c2e/recipes/dsvn";
- sha256 = "189navhhakmkhfc2afsls1jiaxg62wxvpmmn00jlnwlgjm97gdk3";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/dsvn";
- license = lib.licenses.free;
- };
- }) {};
- dtk = callPackage ({ cl-lib ? null
- , dash
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , s
- , seq }:
- melpaBuild {
- pname = "dtk";
- ename = "dtk";
- version = "20181213.946";
- src = fetchFromGitHub {
- owner = "dtk01";
- repo = "dtk";
- rev = "7c278b81ffdced72d160e302356ac29fe592dc10";
- sha256 = "13p53byz2fbzyam2p8v4i8c43ffsawacjdjgsris8nrqhgmi0vp6";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/39333468fb6e9493deb86511f0032610a412ec8a/recipes/dtk";
- sha256 = "005x3j5q8dhphhh4c48l6qx7qi3jz9k02m86ww1bzwfzji55p9sp";
- name = "recipe";
- };
- packageRequires = [ cl-lib dash emacs s seq ];
- meta = {
- homepage = "https://melpa.org/#/dtk";
- license = lib.licenses.free;
- };
- }) {};
- dtrace-script-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "dtrace-script-mode";
- ename = "dtrace-script-mode";
- version = "20150213.2223";
- src = fetchFromGitHub {
- owner = "dotemacs";
- repo = "dtrace-script-mode";
- rev = "a92f76c65b9fb64d448e503b4ea7ff06085be8ee";
- sha256 = "0maj816qrrawdpj72hd33qcgl4wrn9cbqz26l4zfb124z1m35yqv";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/dtrace-script-mode";
- sha256 = "00ar2qahgqpf4an6v9lbzgj73ylbavvigsm8kqdq94ghm4awxi4z";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/dtrace-script-mode";
- license = lib.licenses.free;
- };
- }) {};
dtrt-indent = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -21601,31 +11449,6 @@
license = lib.licenses.free;
};
}) {};
- dts-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "dts-mode";
- ename = "dts-mode";
- version = "20161103.523";
- src = fetchFromGitHub {
- owner = "bgamari";
- repo = "dts-mode";
- rev = "9ee0854446dcc6c53d2b8d2941051768dba50344";
- sha256 = "1k8lljdbc90nd29xrhdrsscxavzdq532wq2mg7ljc94krj7538b1";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/864a7ec64c46a0357710bc80ad4880dd35b2fda1/recipes/dts-mode";
- sha256 = "1k8cbiayajbzwkm0s0kyin0qpq9yhymidz0srs4hbvsnb6hvp234";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/dts-mode";
- license = lib.licenses.free;
- };
- }) {};
ducpel = callPackage ({ cl-lib ? null
, fetchFromGitHub
, fetchurl
@@ -21652,32 +11475,6 @@
license = lib.licenses.free;
};
}) {};
- dumb-diff = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "dumb-diff";
- ename = "dumb-diff";
- version = "20171211.1322";
- src = fetchFromGitHub {
- owner = "jacktasia";
- repo = "dumb-diff";
- rev = "1a2331d283049b71a07c1b06b1e0627a950d55f4";
- sha256 = "05gmpp4s9y2ql27vb5vpqn3xh35qjfxgq9gzyvg86df43qfl8wvl";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/cf7fa0b4235247d82569ed078f92774f10afa45c/recipes/dumb-diff";
- sha256 = "1h1dvxbj85kgi04lxh0bpx81f6sl1fd56lhjmq1cw9biwqw0sm0c";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/dumb-diff";
- license = lib.licenses.free;
- };
- }) {};
dumb-jump = callPackage ({ dash
, emacs
, f
@@ -21708,31 +11505,6 @@
license = lib.licenses.free;
};
}) {};
- dummyparens = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "dummyparens";
- ename = "dummyparens";
- version = "20141009.324";
- src = fetchFromGitHub {
- owner = "snosov1";
- repo = "dummyparens";
- rev = "9798ef1d0eaa24e4fe66f8aa6022a8c62714cc89";
- sha256 = "0g72nnz0j6dvllyxyrw20z1vg6p7sy46yy0fq017pa77sgqm0xzh";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/e1f6199a9afece4d6eb581dc8e513601d55a5833/recipes/dummyparens";
- sha256 = "1yah8kpqkk9ygm73iy51fzwc8q5nw0xlwqir2qld1fc5y1lkb7dk";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/dummyparens";
- license = lib.licenses.free;
- };
- }) {};
dune = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -21758,108 +11530,6 @@
license = lib.licenses.free;
};
}) {};
- duplicate-thing = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "duplicate-thing";
- ename = "duplicate-thing";
- version = "20181031.800";
- src = fetchFromGitHub {
- owner = "ongaeshi";
- repo = "duplicate-thing";
- rev = "9d8fd05e3e5caa35d3f2a0c0032c92f0c0908e21";
- sha256 = "05lflc0r84c95vb81wbn44kh11cbgm42zn3y4ss0ychbf13mzdb5";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/be28db1bfbd663af5b5c24bad50372fddd341982/recipes/duplicate-thing";
- sha256 = "1jx2b6h23dj561xhizzbpxp3av69ic8zdw4kkf0py1jm3gnrmlm4";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/duplicate-thing";
- license = lib.licenses.free;
- };
- }) {};
- dut-mode = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "dut-mode";
- ename = "dut-mode";
- version = "20170729.1411";
- src = fetchFromGitHub {
- owner = "dut-lang";
- repo = "dut-mode";
- rev = "9235c7acaa6690942e9de8b7acd1e4be0c859dc1";
- sha256 = "0fpqsm6y23anyx57gp4c6whzxrn8x03cp76iwx27c4gkq6ph1z8n";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/ecf49ceab8b25591fab2ed6574cba0e6634d1539/recipes/dut-mode";
- sha256 = "0hlr5qvqcqdh2k1nyq621z6vq2yiflj4jy0pgg6lbiy3j6819mai";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/dut-mode";
- license = lib.licenses.free;
- };
- }) {};
- dyalog-mode = callPackage ({ cl-lib ? null
- , emacs
- , fetchhg
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "dyalog-mode";
- ename = "dyalog-mode";
- version = "20190305.137";
- src = fetchhg {
- url = "https://bitbucket.com/harsman/dyalog-mode";
- rev = "6f2a9d8f86be";
- sha256 = "1hgn86mgi0xaa3s85f5kn7crdhirghfq62ri3wn0ywkg6jc0bln6";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/e608f40d00a3b2a80a6997da00e7d04f76d8ef0d/recipes/dyalog-mode";
- sha256 = "0w61inyfvxiyihx5z9fk1ckawcd3cr6xiradbbwzmn25k99gkbgr";
- name = "recipe";
- };
- packageRequires = [ cl-lib emacs ];
- meta = {
- homepage = "https://melpa.org/#/dyalog-mode";
- license = lib.licenses.free;
- };
- }) {};
- dylan-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "dylan-mode";
- ename = "dylan-mode";
- version = "20190108.1900";
- src = fetchFromGitHub {
- owner = "dylan-lang";
- repo = "dylan-mode";
- rev = "9a6ad5ff83f2dfc25ce3deee9d3ef71ed53964b5";
- sha256 = "1d6krgiabkrj3mryaz79vmiqy0vkr5s8ji34yjd14v73ikzwxwkp";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/94481ba3ebba6a99f11efab5a33e8bc6ea2d857a/recipes/dylan-mode";
- sha256 = "0kimvz8vmcvgxi0wvf7dqv6plj31xlksmvgip8h3bhyy7slxj3yy";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/dylan-mode";
- license = lib.licenses.free;
- };
- }) {};
dynamic-fonts = callPackage ({ fetchFromGitHub
, fetchurl
, font-utils
@@ -21913,57 +11583,6 @@
license = lib.licenses.free;
};
}) {};
- dynamic-spaces = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "dynamic-spaces";
- ename = "dynamic-spaces";
- version = "20171027.1151";
- src = fetchFromGitHub {
- owner = "Lindydancer";
- repo = "dynamic-spaces";
- rev = "97ae8480c257ba573ca3d06dbf602f9b23c41d38";
- sha256 = "0qs7gqjl6ilwwmd21663345az6766j7h1pv7wvd2kyh24yfs1xkj";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/e0b59ce66132cbe2b1f41b665dcb30bdd04bc48b/recipes/dynamic-spaces";
- sha256 = "0l4hwqivzv51j7h5sgd91dxb5slylmrfrvf7r6w0k04bhld6ry0c";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/dynamic-spaces";
- license = lib.licenses.free;
- };
- }) {};
- e2ansi = callPackage ({ face-explorer
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "e2ansi";
- ename = "e2ansi";
- version = "20180403.1215";
- src = fetchFromGitHub {
- owner = "Lindydancer";
- repo = "e2ansi";
- rev = "f886e687d50ff58063a92d40623f2400fa913af0";
- sha256 = "0wg16hdmhbhll0ffp2hrqmr12ddai2s6gql52q6pz9k3lw6v0d5m";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5e655a3fdfae80ea120cdb2ce84dd4fd36f9a71e/recipes/e2ansi";
- sha256 = "0ns1sldipx5kyqpi0bw79kdmhi1ry5glwxfzfx8r01hbbkf0cc94";
- name = "recipe";
- };
- packageRequires = [ face-explorer ];
- meta = {
- homepage = "https://melpa.org/#/e2ansi";
- license = lib.licenses.free;
- };
- }) {};
e2wm = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -22016,32 +11635,6 @@
license = lib.licenses.free;
};
}) {};
- e2wm-bookmark = callPackage ({ e2wm
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "e2wm-bookmark";
- ename = "e2wm-bookmark";
- version = "20151122.2121";
- src = fetchFromGitHub {
- owner = "myuhe";
- repo = "e2wm-bookmark.el";
- rev = "bad816b6d8049984d69bcd277b7d325fb84d55eb";
- sha256 = "121vd44f42bxqvdjswmjlghf1jalbs974b6cip2i049k1n08xgh0";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/45488849da42ac775e532f30f588bfabb7af3cae/recipes/e2wm-bookmark";
- sha256 = "1myaqxzrgff5gxcn3zn1bsmyf5122ql1mwr05wamd450lq8nmbw5";
- name = "recipe";
- };
- packageRequires = [ e2wm ];
- meta = {
- homepage = "https://melpa.org/#/e2wm-bookmark";
- license = lib.licenses.free;
- };
- }) {};
e2wm-direx = callPackage ({ direx
, e2wm
, fetchFromGitHub
@@ -22096,33 +11689,6 @@
license = lib.licenses.free;
};
}) {};
- e2wm-svg-clock = callPackage ({ e2wm
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , svg-clock }:
- melpaBuild {
- pname = "e2wm-svg-clock";
- ename = "e2wm-svg-clock";
- version = "20150106.506";
- src = fetchFromGitHub {
- owner = "myuhe";
- repo = "e2wm-svg-clock.el";
- rev = "d425925e3afffcbe2ff74edc80b714e4319d4c94";
- sha256 = "0h1fnlpvy2mqfxjv64znghmiadh9qimj9q9a60cxhyc0bq0prz6f";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/784f5598910ecf208a68fa97448e148a8ebefa32/recipes/e2wm-svg-clock";
- sha256 = "0q02lksrbn43s8d9rzpglqybalglpi6qi9lix0cllag6i7fzcbms";
- name = "recipe";
- };
- packageRequires = [ e2wm svg-clock ];
- meta = {
- homepage = "https://melpa.org/#/e2wm-svg-clock";
- license = lib.licenses.free;
- };
- }) {};
e2wm-sww = callPackage ({ e2wm
, fetchFromGitHub
, fetchurl
@@ -22204,56 +11770,6 @@
license = lib.licenses.free;
};
}) {};
- easy-after-load = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "easy-after-load";
- ename = "easy-after-load";
- version = "20170817.531";
- src = fetchFromGitHub {
- owner = "pd";
- repo = "easy-after-load";
- rev = "29e20145da49ac9ea40463c552130777408040de";
- sha256 = "00xgd39qc760lmxpbggzn98aks5nad08b5ry54pkszjlmh37yqj7";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/384ffc463cc6edb4806f8da68bd251e662718e65/recipes/easy-after-load";
- sha256 = "1mn4hpx82nifphzx71yw3rbixbgis8bhvl3iyxcgcd88n5hqwvys";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/easy-after-load";
- license = lib.licenses.free;
- };
- }) {};
- easy-escape = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "easy-escape";
- ename = "easy-escape";
- version = "20161209.744";
- src = fetchFromGitHub {
- owner = "cpitclaudel";
- repo = "easy-escape";
- rev = "8623aa9d715fe7677ea24d7164ea6e4ecdb3e65b";
- sha256 = "12shxdr03l39vj3grsncym1mv2vn39k58vvhbwc1q591adqhwalz";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/c39e3b867fa3143e9dc7c2fefa57b5755f70b433/recipes/easy-escape";
- sha256 = "1zspb79x6s151wwiian45j1nh0xps8y8yd98byyn5lbwbj2pp2gk";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/easy-escape";
- license = lib.licenses.free;
- };
- }) {};
easy-hugo = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -22291,12 +11807,12 @@
melpaBuild {
pname = "easy-jekyll";
ename = "easy-jekyll";
- version = "2.0.22";
+ version = "2.2.22";
src = fetchFromGitHub {
owner = "masasam";
repo = "emacs-easy-jekyll";
- rev = "6ce93c386ab32f08e23590d71489d8a1bd5a29c5";
- sha256 = "0vf0966apf815j85nlbj74lqk874jwynfwpn1gnc0krkjgprxkjw";
+ rev = "9b065ac1bc5a85c6ad41a7b97553eeaa9e30c791";
+ sha256 = "1pj2hafyx1lq8ifahfg0j90z72swixi1pma52j6701vrn8a5aqw6";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/c3f281145bad12c27bdbef32ccc07b6a5f13b577/recipes/easy-jekyll";
@@ -22470,31 +11986,6 @@
license = lib.licenses.free;
};
}) {};
- ecb = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "ecb";
- ename = "ecb";
- version = "20170728.1221";
- src = fetchFromGitHub {
- owner = "ecb-home";
- repo = "ecb";
- rev = "1330a44cf3c171781083b0b926ab7622f64e6e81";
- sha256 = "0nx1blkvnzrxd2l7ckdihm9fvq5vkcghf6qccagkjzk4zbdalz30";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/4db5183f35bedbc459843ad9f442f9cb6608c5fc/recipes/ecb";
- sha256 = "0z61p9zgv7gcx04m4jv16a3mn9kjvnw0rdd65kpvbmzkgls0nk8d";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/ecb";
- license = lib.licenses.free;
- };
- }) {};
eclim = callPackage ({ cl-lib ? null
, dash
, fetchFromGitHub
@@ -22526,31 +12017,6 @@
license = lib.licenses.free;
};
}) {};
- eclipse-theme = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "eclipse-theme";
- ename = "eclipse-theme";
- version = "20190122.218";
- src = fetchFromGitHub {
- owner = "abo-abo";
- repo = "eclipse-theme";
- rev = "485cc1e7bd7eb6a42c6db803f4170ec4da18fc28";
- sha256 = "0bp9ci7024sdayar2dpmgax200ipxg5wajw3d2vdj3f5v9qcyxsj";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/81fcf3536ead18a91400f6936b3f789b4b594b9c/recipes/eclipse-theme";
- sha256 = "0mww0jysxqky1zkkhvhj7fn20w970n2w6501rdm5jwqfb58ivxfx";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/eclipse-theme";
- license = lib.licenses.free;
- };
- }) {};
ecukes = callPackage ({ ansi
, commander
, dash
@@ -22610,61 +12076,6 @@
license = lib.licenses.free;
};
}) {};
- edbi-database-url = callPackage ({ edbi
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "edbi-database-url";
- ename = "edbi-database-url";
- version = "20160221.1123";
- src = fetchFromGitHub {
- owner = "proofit404";
- repo = "edbi-database-url";
- rev = "a6e4be7547ee8e0bb43a11ff173d6271b21b5012";
- sha256 = "0f59s0a7zpa3dny1k7x6zrymrnzba184smq8v1vvz8hkc0ym1j1v";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/e25bf3d65ef2fb09eb0802cfd3e3faee86a5cfdb/recipes/edbi-database-url";
- sha256 = "018rxijmy0lvisy281d501ra9lnh5xi0wmvz5avbjpb0fi4q1zdn";
- name = "recipe";
- };
- packageRequires = [ edbi emacs ];
- meta = {
- homepage = "https://melpa.org/#/edbi-database-url";
- license = lib.licenses.free;
- };
- }) {};
- edbi-django = callPackage ({ edbi
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , pythonic }:
- melpaBuild {
- pname = "edbi-django";
- ename = "edbi-django";
- version = "20190212.617";
- src = fetchFromGitHub {
- owner = "proofit404";
- repo = "edbi-django";
- rev = "9b73db66c02a222fc62dc3bc590962f58c5b43d8";
- sha256 = "1yinm4qzwpdmr4a0isbkiw6ny23gllajcppwh7g0d62di3v242dm";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/10dd853022ab93e345761b04d760b3763f4d2384/recipes/edbi-django";
- sha256 = "02vcbqgkvhlw9msf65777f85c8myxr95g2dz199nlfmz4vpqrkgq";
- name = "recipe";
- };
- packageRequires = [ edbi emacs pythonic ];
- meta = {
- homepage = "https://melpa.org/#/edbi-django";
- license = lib.licenses.free;
- };
- }) {};
edbi-minor-mode = callPackage ({ edbi
, fetchFromGitHub
, fetchurl
@@ -22691,61 +12102,6 @@
license = lib.licenses.free;
};
}) {};
- edbi-sqlite = callPackage ({ edbi
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "edbi-sqlite";
- ename = "edbi-sqlite";
- version = "20160221.1123";
- src = fetchFromGitHub {
- owner = "proofit404";
- repo = "edbi-sqlite";
- rev = "52cb9ca1af7691b592f2cfd2f007847e7a4ccd5f";
- sha256 = "1vll81386fx90lq5sy4rlxcik6mvw7zx5cc51f0yaca9bkcckp51";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/acc9b816796b9f142c53f90593952b43c962d2d8/recipes/edbi-sqlite";
- sha256 = "1w53ypz3pdqaml3vq9j3f1w443n8s9hb2ys090kxvjqnb8x8v44y";
- name = "recipe";
- };
- packageRequires = [ edbi emacs ];
- meta = {
- homepage = "https://melpa.org/#/edbi-sqlite";
- license = lib.licenses.free;
- };
- }) {};
- ede-compdb = callPackage ({ cl-lib ? null
- , ede ? null
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , semantic ? null }:
- melpaBuild {
- pname = "ede-compdb";
- ename = "ede-compdb";
- version = "20150920.1333";
- src = fetchFromGitHub {
- owner = "randomphrase";
- repo = "ede-compdb";
- rev = "23c91082270fcef24ea791b848f1604e36888ff0";
- sha256 = "03xphcdw4b6z8i3dgrmq0l8m5nfpsjn0jv0y1rlabrbvxw1gpcqq";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/3b70138b7d82aec2d60f4a7c0cd21e734a1fc52a/recipes/ede-compdb";
- sha256 = "1ypi7rxbgg2qck1b571hcw5m4ipllb48g6sindpdf180kbfbfpn7";
- name = "recipe";
- };
- packageRequires = [ cl-lib ede semantic ];
- meta = {
- homepage = "https://melpa.org/#/ede-compdb";
- license = lib.licenses.free;
- };
- }) {};
ede-php-autoload = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -22827,83 +12183,6 @@
license = lib.licenses.free;
};
}) {};
- edebug-x = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "edebug-x";
- ename = "edebug-x";
- version = "20130615.2325";
- src = fetchFromGitHub {
- owner = "ScottyB";
- repo = "edebug-x";
- rev = "a2c2c42553d3bcbd5ac11898554865acbed1bc46";
- sha256 = "1zgiifi1k2d9g8sarfpjzamk8g1yx4ilgn60mqhy2pznp30b5qb2";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/204e40cd450f4223598be1f385f08ec82b44f70c/recipes/edebug-x";
- sha256 = "0mzrip6y346mix4ny1xj8rkji1w531ix24k3cczmlmm4hm7l29ql";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/edebug-x";
- license = lib.licenses.free;
- };
- }) {};
- edit-at-point = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "edit-at-point";
- ename = "edit-at-point";
- version = "20150716.624";
- src = fetchFromGitHub {
- owner = "enoson";
- repo = "edit-at-point.el";
- rev = "3b800c11685102e1eab62ec71c5fc1589ebb81a7";
- sha256 = "0crwdgng377sy1zbq7kqkz24v697mlzgdsvkdp1m8r7ympikkj6w";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/a63b22f357b2d08b12fb86c27261ab4d687c5f7f/recipes/edit-at-point";
- sha256 = "1mijasr4ww6vcjfyk7jdv4mh7w2rrspqbbmqayiy2918qg2x01df";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/edit-at-point";
- license = lib.licenses.free;
- };
- }) {};
- edit-color-stamp = callPackage ({ cl-lib ? null
- , es-lib
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "edit-color-stamp";
- ename = "edit-color-stamp";
- version = "20130529.1033";
- src = fetchFromGitHub {
- owner = "sabof";
- repo = "edit-color-stamp";
- rev = "32dc1ca5bcf3dcf83fad5e39b55dc5b77becb3d3";
- sha256 = "0vk954f44m2bq7qb122pzlb8fibrisx47ihvn3h96m8nmx0fv32r";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/2ad2ea105b895cb958ce0ab2bf2fad2b40d41b2f/recipes/edit-color-stamp";
- sha256 = "1f8v8w3w7vb8jv29w06mplah8yfcs5qfjz2w4irv0rg7dwzy3zk8";
- name = "recipe";
- };
- packageRequires = [ cl-lib es-lib ];
- meta = {
- homepage = "https://melpa.org/#/edit-color-stamp";
- license = lib.licenses.free;
- };
- }) {};
edit-indirect = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -22930,34 +12209,6 @@
license = lib.licenses.free;
};
}) {};
- edit-indirect-region-latex = callPackage ({ edit-indirect
- , emacs
- , fetchFromGitHub
- , fetchurl
- , ht
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "edit-indirect-region-latex";
- ename = "edit-indirect-region-latex";
- version = "20161128.2245";
- src = fetchFromGitHub {
- owner = "niitsuma";
- repo = "edit-indirect-region-latex";
- rev = "05043f2c0c9838947d3ca4b51b695deb7c47612e";
- sha256 = "0dgac0nk9x4sz4lisxb5badrzpcjqjwgi79hhl1y6mafzm0ncqs2";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/edit-indirect-region-latex";
- sha256 = "0ys0fpfk259g14wvg0nnkc3wk1dbjjd2n4a636jblgq63w6g3h79";
- name = "recipe";
- };
- packageRequires = [ edit-indirect emacs ht ];
- meta = {
- homepage = "https://melpa.org/#/edit-indirect-region-latex";
- license = lib.licenses.free;
- };
- }) {};
edit-list = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -23008,32 +12259,6 @@
license = lib.licenses.free;
};
}) {};
- edit-server-htmlize = callPackage ({ edit-server
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "edit-server-htmlize";
- ename = "edit-server-htmlize";
- version = "20130329.1548";
- src = fetchFromGitHub {
- owner = "frobtech";
- repo = "edit-server-htmlize";
- rev = "e7f8dadfabe869c77ca241cd6fbd4c52bd908392";
- sha256 = "174xq45xc632zrb916aw7q4bch96pbi6zgy3dk77qla3ky9cfpl3";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/219b037401a81ce70bd2106dabffa16d8b0c7cef/recipes/edit-server-htmlize";
- sha256 = "007lv3698a88wxan7kplz2117azxxpzzgshin9c1aabg059hszlj";
- name = "recipe";
- };
- packageRequires = [ edit-server ];
- meta = {
- homepage = "https://melpa.org/#/edit-server-htmlize";
- license = lib.licenses.free;
- };
- }) {};
editorconfig = callPackage ({ cl-lib ? null
, emacs
, fetchFromGitHub
@@ -23061,32 +12286,6 @@
license = lib.licenses.free;
};
}) {};
- editorconfig-charset-extras = callPackage ({ editorconfig
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "editorconfig-charset-extras";
- ename = "editorconfig-charset-extras";
- version = "20180222.2057";
- src = fetchFromGitHub {
- owner = "10sr";
- repo = "editorconfig-charset-extras-el";
- rev = "ddf60923c6f4841cb593b2ea04c9c710a01d262f";
- sha256 = "1v5a6s4x7cm6i0bxaqdpsg8vqj479lp5h45glx4ipk0icdq8cvd9";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/62f27dad806fa135209289933f2131ee4ce8f8bf/recipes/editorconfig-charset-extras";
- sha256 = "15p9qpdwradcnjr0nf0ibhy94yi73l18xz7zxf6khmdirsirpwgh";
- name = "recipe";
- };
- packageRequires = [ editorconfig ];
- meta = {
- homepage = "https://melpa.org/#/editorconfig-charset-extras";
- license = lib.licenses.free;
- };
- }) {};
editorconfig-custom-majormode = callPackage ({ editorconfig
, fetchFromGitHub
, fetchurl
@@ -23113,59 +12312,6 @@
license = lib.licenses.free;
};
}) {};
- editorconfig-domain-specific = callPackage ({ cl-lib ? null
- , editorconfig
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "editorconfig-domain-specific";
- ename = "editorconfig-domain-specific";
- version = "20180505.224";
- src = fetchFromGitHub {
- owner = "lassik";
- repo = "editorconfig-emacs-domain-specific";
- rev = "e9824160fb2e466afa755240ee3ab7cc5657fb04";
- sha256 = "0gkwhvywfpnay7rxb2bmsnywcd89qw710bsp53sk5fvilgfwfpkj";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/831a7dd7ef853ca44709eabfd48ee97113705319/recipes/editorconfig-domain-specific";
- sha256 = "1rkan6q7z0qfq28zg114iik71nghd7fbs4g8qppzhgr3pwbpn73q";
- name = "recipe";
- };
- packageRequires = [ cl-lib editorconfig ];
- meta = {
- homepage = "https://melpa.org/#/editorconfig-domain-specific";
- license = lib.licenses.free;
- };
- }) {};
- editorconfig-generate = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "editorconfig-generate";
- ename = "editorconfig-generate";
- version = "20181115.2235";
- src = fetchFromGitHub {
- owner = "10sr";
- repo = "editorconfig-generate-el";
- rev = "2921b53700dedf16b57d684439add187663954cd";
- sha256 = "0dqmq0hq603r2qn4wjdzlmsv4csci8d36i259jmwf71v8m1j4rc7";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/dc1cfe5ce6bc3d247c5b7730ac6cb2d6c6198a0c/recipes/editorconfig-generate";
- sha256 = "1xfm3vnr5ngi1vihs7cack8a6zyipvdq260v43cr0y8dqg3sn89i";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/editorconfig-generate";
- license = lib.licenses.free;
- };
- }) {};
edn = callPackage ({ cl-lib ? null
, dash
, emacs
@@ -23221,32 +12367,6 @@
license = lib.licenses.free;
};
}) {};
- efire = callPackage ({ circe
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "efire";
- ename = "efire";
- version = "20151009.1331";
- src = fetchFromGitHub {
- owner = "joaotavora";
- repo = "efire";
- rev = "d38dd6dd7974b7cb11bff6fd84846fd01163211a";
- sha256 = "15sc4648lkxsgv2frcfb878z86a7vynixsp1x5i5rg66bd9gzhfy";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/4150455d424326667390f72f6edd22b274d9fa01/recipes/efire";
- sha256 = "0dhgms6s0c889xx75khn1mqfn8i32z4rjlx2w7i0chm2abxbgd3m";
- name = "recipe";
- };
- packageRequires = [ circe ];
- meta = {
- homepage = "https://melpa.org/#/efire";
- license = lib.licenses.free;
- };
- }) {};
eg = callPackage ({ cl-lib ? null
, emacs
, fetchFromGitHub
@@ -23306,7 +12426,7 @@
melpaBuild {
pname = "egison-mode";
ename = "egison-mode";
- version = "3.8.1";
+ version = "3.8.2";
src = fetchFromGitHub {
owner = "egison";
repo = "egison";
@@ -23352,38 +12472,6 @@
license = lib.licenses.free;
};
}) {};
- ego = callPackage ({ dash
- , emacs
- , fetchFromGitHub
- , fetchurl
- , ht
- , htmlize
- , lib
- , melpaBuild
- , mustache
- , org
- , simple-httpd }:
- melpaBuild {
- pname = "ego";
- ename = "ego";
- version = "20180228.1704";
- src = fetchFromGitHub {
- owner = "emacs-china";
- repo = "EGO";
- rev = "719809679c1a60887735db41abae53b61f08ef59";
- sha256 = "10f179kl53la4dyikzl1xysccx4gk04skzwaw3w1pgr8f5fjppxc";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/ego";
- sha256 = "09k33ggc6n7wgykaawbmh6hyrl9dqp0azaq9zcjhjbc88nszj7fj";
- name = "recipe";
- };
- packageRequires = [ dash emacs ht htmlize mustache org simple-httpd ];
- meta = {
- homepage = "https://melpa.org/#/ego";
- license = lib.licenses.free;
- };
- }) {};
eide = callPackage ({ fetchgit
, fetchurl
, lib
@@ -23408,31 +12496,6 @@
license = lib.licenses.free;
};
}) {};
- eimp = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "eimp";
- ename = "eimp";
- version = "20120826.1339";
- src = fetchFromGitHub {
- owner = "nicferrier";
- repo = "eimp";
- rev = "2e7536fe6d8f7faf1bad7a8ae37faba0162c3b4f";
- sha256 = "154d57yafxbcf39r89n5j43c86rp2fki3lw3gwy7ww2g6qkclcra";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/0fda2b54a0ff0b6fc3bd6d20cfcbbf63cae5380f/recipes/eimp";
- sha256 = "00g77bg49m38cjfbh17ccnmksz05qx7yvgl6i4i4hysbr2d8pgxd";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/eimp";
- license = lib.licenses.free;
- };
- }) {};
ein = callPackage ({ auto-complete
, cl-generic
, dash
@@ -23475,32 +12538,6 @@
license = lib.licenses.free;
};
}) {};
- ein-mumamo = callPackage ({ ein
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "ein-mumamo";
- ename = "ein-mumamo";
- version = "20150301.1628";
- src = fetchFromGitHub {
- owner = "millejoh";
- repo = "ein-mumamo";
- rev = "57eb0876ab3fba52c1007ce5793d5319cae629c7";
- sha256 = "1426d8lrkx5kml6m1b3pv4117z34v96d8iq24m1q5w6ar72mspxg";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/bd8fcf7f6332f94dc37697f9412c8043da8d4f76/recipes/ein-mumamo";
- sha256 = "029sk90xz9fhv2s56f5hp0aks1d6ybz517009vv4892bbzkpjv1w";
- name = "recipe";
- };
- packageRequires = [ ein ];
- meta = {
- homepage = "https://melpa.org/#/ein-mumamo";
- license = lib.licenses.free;
- };
- }) {};
eink-theme = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -23539,12 +12576,12 @@
melpaBuild {
pname = "ejc-sql";
ename = "ejc-sql";
- version = "0.2";
+ version = "0.3";
src = fetchFromGitHub {
owner = "kostafey";
repo = "ejc-sql";
- rev = "82879290aca8ef1ec7a0f8b968b5b7f355907e8e";
- sha256 = "00qw1md2i6izpafpz2mj7i22sq1pnzgfsv2kvpq00aqbink47k83";
+ rev = "285ad107dbd9ef6a1e417f684eaf30e788fcfc79";
+ sha256 = "0vypbyx2r7v8mmdhiq7n2x0xp43njwra5fz6f6cba40wq4dnkg0g";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/e01655679087504db1206b22435ba8eb7050aa23/recipes/ejc-sql";
@@ -23582,32 +12619,6 @@
license = lib.licenses.free;
};
}) {};
- el-fly-indent-mode = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "el-fly-indent-mode";
- ename = "el-fly-indent-mode";
- version = "20180421.1943";
- src = fetchFromGitHub {
- owner = "jiahaowork";
- repo = "el-fly-indent-mode.el";
- rev = "1dd4b907ff4d9581c18b4e38e8719e83ba0dace1";
- sha256 = "15l74s3jissjs7jpdmrgy8ys50b0ir27nm0d25lbs4yxhsmvzq2b";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/237311b98eec4b577409f55e16d8e640936d41a2/recipes/el-fly-indent-mode";
- sha256 = "00iqiawbzijm515lswbkzxf1m6ys242xrg6lzf8k40g2ygyd1q1r";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/el-fly-indent-mode";
- license = lib.licenses.free;
- };
- }) {};
el-get = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -23743,58 +12754,6 @@
license = lib.licenses.free;
};
}) {};
- el-pocket = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , web }:
- melpaBuild {
- pname = "el-pocket";
- ename = "el-pocket";
- version = "20170922.549";
- src = fetchFromGitHub {
- owner = "pterygota";
- repo = "el-pocket";
- rev = "a80abfb67efe68ada1d7d0a73aecee57e763baaa";
- sha256 = "0q4nsgqpjmmxml5pcb6im1askk6q7c3ykzv6fgf1w8jgkvdifa6f";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/ef362a76a3881c7596dcc2639df588227b3713c0/recipes/el-pocket";
- sha256 = "0fgylpfixsx5l1nrgz6n1c2ayf52p60f9q290hmkn36siyx5hixw";
- name = "recipe";
- };
- packageRequires = [ emacs web ];
- meta = {
- homepage = "https://melpa.org/#/el-pocket";
- license = lib.licenses.free;
- };
- }) {};
- el-spec = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "el-spec";
- ename = "el-spec";
- version = "20121018.4";
- src = fetchFromGitHub {
- owner = "uk-ar";
- repo = "el-spec";
- rev = "1dbc465401d4aea5560318c4f13ff30920a0718d";
- sha256 = "1lsq7980pwcwlg7z37hrig8ddm9nyvaqrlczv1w0vy631vc5z2az";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/407e344bf4e4b3885ebb7df02ebb37feee5e2515/recipes/el-spec";
- sha256 = "017syizs8qw5phwvpzzffzdnj6rh9q4n7s51qjvj8qfb3088igkh";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/el-spec";
- license = lib.licenses.free;
- };
- }) {};
el-spice = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -23820,59 +12779,6 @@
license = lib.licenses.free;
};
}) {};
- el-sprunge = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , htmlize
- , lib
- , melpaBuild
- , web-server }:
- melpaBuild {
- pname = "el-sprunge";
- ename = "el-sprunge";
- version = "20140106.1739";
- src = fetchFromGitHub {
- owner = "eschulte";
- repo = "el-sprunge";
- rev = "37855ec60aeb4d565c49a4d711edc7341e9a22cb";
- sha256 = "04k1fz0ypmfzgwamncp2vz0lq54bq6y7c8k9nm39csp2564vmbbc";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/547209532faf45b35b55350783ccee532ce2bcbb/recipes/el-sprunge";
- sha256 = "0rb1cr7zrfl1s5prxy3xwdqgnm8ddw33pcvk049km2qbccb08v6a";
- name = "recipe";
- };
- packageRequires = [ emacs htmlize web-server ];
- meta = {
- homepage = "https://melpa.org/#/el-sprunge";
- license = lib.licenses.free;
- };
- }) {};
- el-spy = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "el-spy";
- ename = "el-spy";
- version = "20131226.1208";
- src = fetchFromGitHub {
- owner = "uk-ar";
- repo = "el-spy";
- rev = "b1dead9d1877660856ada22d906ac4e54695aec7";
- sha256 = "016l3inzb7dby0w58najj2pvymwk6gllsxvqj2fkz3599i36p1pn";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/7a90318a38c35e648152ec5fb2dd86c432af9553/recipes/el-spy";
- sha256 = "1bgv4mgsnkmjdyay7lhkqdszvnwpjy4dxxw11kq45w866ba8645n";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/el-spy";
- license = lib.licenses.free;
- };
- }) {};
el-x = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -23898,31 +12804,6 @@
license = lib.licenses.free;
};
}) {};
- el2markdown = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "el2markdown";
- ename = "el2markdown";
- version = "20170630.1158";
- src = fetchFromGitHub {
- owner = "Lindydancer";
- repo = "el2markdown";
- rev = "368d99313683cd943c99feaffca356be60bdb636";
- sha256 = "1h0cr8qcvj9r3acb6bf5nyglvi5gdglwflkfl5jbzp0nm1p9iqcg";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/el2markdown";
- sha256 = "1bpfddcvg9wgc5g14clj6wyiw8rsh45rgibvlmyan2m0gmwvmqx6";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/el2markdown";
- license = lib.licenses.free;
- };
- }) {};
el2org = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -23976,63 +12857,6 @@
license = lib.licenses.free;
};
}) {};
- elcontext = callPackage ({ emacs
- , f
- , fetchFromGitHub
- , fetchurl
- , ht
- , hydra
- , lib
- , melpaBuild
- , osx-location
- , uuidgen }:
- melpaBuild {
- pname = "elcontext";
- ename = "elcontext";
- version = "20180526.604";
- src = fetchFromGitHub {
- owner = "rollacaster";
- repo = "elcontext";
- rev = "f434ffc655e6349a4dd52285ff68a9194bcfc949";
- sha256 = "0gbbnx969asq73ypc5lp4qpi4iwwfzm1mmxb1fdifl2lf18p8qwv";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/12bcb0bfc89c1f235e4ac5d7e308e41905725dc6/recipes/elcontext";
- sha256 = "1firdsrag7r02qb3kjxc3j8l9psvh117z3qwycazhxdz82z0isw7";
- name = "recipe";
- };
- packageRequires = [ emacs f ht hydra osx-location uuidgen ];
- meta = {
- homepage = "https://melpa.org/#/elcontext";
- license = lib.licenses.free;
- };
- }) {};
- elcord = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "elcord";
- ename = "elcord";
- version = "20190321.1145";
- src = fetchFromGitHub {
- owner = "Mstrodl";
- repo = "elcord";
- rev = "17d3e5b95e68d1b6c396ba0decd94a85226f6504";
- sha256 = "1rhz34bwmjvi98yl9fq4did2pj62v3zpdyr1ryb9yfaz6b59baga";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/cf2c52366a8f60b68a33a40ea92cc96e7f0933d2/recipes/elcord";
- sha256 = "0a1f99mahaixx6j3lylc7w2zlq8f614m6xhd0x927afv3a6n50l6";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/elcord";
- license = lib.licenses.free;
- };
- }) {};
elcouch = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -24087,32 +12911,6 @@
license = lib.licenses.free;
};
}) {};
- eldoc-cmake = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "eldoc-cmake";
- ename = "eldoc-cmake";
- version = "20190323.548";
- src = fetchFromGitHub {
- owner = "ikirill";
- repo = "eldoc-cmake";
- rev = "1347b4bd643e8011094c4036a397b0acc4d879d7";
- sha256 = "0m2shpwh55dl1ymmin638ldwkpi5n62iljszlfi5gjwyshd58db5";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/e19f92097e6003a893907aa46a2df755d2bf0b87/recipes/eldoc-cmake";
- sha256 = "1y47zhxgisvsk0kgvlwrlspmjb2a6wrxwkiahxp9fkdc58r9w7v0";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/eldoc-cmake";
- license = lib.licenses.free;
- };
- }) {};
eldoc-eval = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -24138,59 +12936,6 @@
license = lib.licenses.free;
};
}) {};
- eldoc-overlay = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , inline-docs
- , lib
- , melpaBuild
- , quick-peek }:
- melpaBuild {
- pname = "eldoc-overlay";
- ename = "eldoc-overlay";
- version = "20190222.2143";
- src = fetchFromGitHub {
- owner = "stardiviner";
- repo = "eldoc-overlay";
- rev = "cfec077d9a699c88265af2e9480d5e76a3b3f833";
- sha256 = "0c16i6y7675rzif5gj9s6rz3nc59339yp4fn27a56sly42qfnh9f";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/f865b248002d6d3ba9653c2221072a4aa54cd740/recipes/eldoc-overlay";
- sha256 = "0nn6i89xbw8vkd5ybsnc1zpnf3ra4s8pf01jdj2i59ayjs64s28x";
- name = "recipe";
- };
- packageRequires = [ emacs inline-docs quick-peek ];
- meta = {
- homepage = "https://melpa.org/#/eldoc-overlay";
- license = lib.licenses.free;
- };
- }) {};
- electric-case = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "electric-case";
- ename = "electric-case";
- version = "20150417.412";
- src = fetchFromGitHub {
- owner = "zk-phi";
- repo = "electric-case";
- rev = "984b6a4c6c4cdcefeecb59e941f5f184cc1dedff";
- sha256 = "11rlj132xfrdp9wq0mx0dnza4k5s6ysgqs6nzjvwcw1w7a6jmwa3";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/electric-case";
- sha256 = "1ch108ljzg5xkk4pkfpfxm8v2yzqk79q3h2zhzzqhsydq7r07bdn";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/electric-case";
- license = lib.licenses.free;
- };
- }) {};
electric-operator = callPackage ({ dash
, emacs
, fetchFromGitHub
@@ -24219,56 +12964,6 @@
license = lib.licenses.free;
};
}) {};
- electric-spacing = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "electric-spacing";
- ename = "electric-spacing";
- version = "20161209.1157";
- src = fetchFromGitHub {
- owner = "xwl";
- repo = "electric-spacing";
- rev = "9d0f8a213133f2619a4e9dfbba3b00d4348c07b0";
- sha256 = "1wzf8q2k2iwnm9b5kj16bwif7g0qc7ll3cjs20gbmcnq5xmhwx9f";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/a78c0044f8b7a0df1af1aba407be4d7865c98c59/recipes/electric-spacing";
- sha256 = "0fcsz9wmibqp6ci0pa5r4gzlrsyj5klajxpgfksa0nfj3dc94cvg";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/electric-spacing";
- license = lib.licenses.free;
- };
- }) {};
- elein = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "elein";
- ename = "elein";
- version = "20120120.316";
- src = fetchFromGitHub {
- owner = "remvee";
- repo = "elein";
- rev = "d4c0c0491dbb7c90e953d7a16172107c37103605";
- sha256 = "1ijrhm9vrzh5wl1rr9ayl11dwm05bh1i43fnbz3ga58l6whgkfpw";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/elein";
- sha256 = "01y5yrmm3biyrfgnl3qjfpn1xvjk2nabwjr8cls53ds697qpz5x2";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/elein";
- license = lib.licenses.free;
- };
- }) {};
elf-mode = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -24321,74 +13016,6 @@
license = lib.licenses.free;
};
}) {};
- elfeed-goodies = callPackage ({ ace-jump-mode
- , cl-lib ? null
- , elfeed
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , noflet
- , popwin
- , powerline }:
- melpaBuild {
- pname = "elfeed-goodies";
- ename = "elfeed-goodies";
- version = "20190128.831";
- src = fetchFromGitHub {
- owner = "algernon";
- repo = "elfeed-goodies";
- rev = "95b4ea632fbd5960927952ec8f3394eb88da4752";
- sha256 = "0mfigkp77acqlnkj07vjzbcamwxp37zqxramp1qdf95psnz177q7";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/e6ebb8d23961fd9bfe101f7917caa3b405493f31/recipes/elfeed-goodies";
- sha256 = "0zpk6nx757hasgzcww90fzkcdn078my33p7yax7xslvi4msm37bi";
- name = "recipe";
- };
- packageRequires = [
- ace-jump-mode
- cl-lib
- elfeed
- noflet
- popwin
- powerline
- ];
- meta = {
- homepage = "https://melpa.org/#/elfeed-goodies";
- license = lib.licenses.free;
- };
- }) {};
- elfeed-org = callPackage ({ cl-lib ? null
- , dash
- , elfeed
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , org
- , s }:
- melpaBuild {
- pname = "elfeed-org";
- ename = "elfeed-org";
- version = "20181015.400";
- src = fetchFromGitHub {
- owner = "remyhonig";
- repo = "elfeed-org";
- rev = "607b8bf4923a995260a072559b77bee188614a06";
- sha256 = "1m4v5z2ciqlmnr7gfzx6cbi81ck80fvy88fd0lpnhlqj2h9k5pys";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/elfeed-org";
- sha256 = "0rnxr2q2ib6xrdx41ams1z2ivw5zhcsmqdylyvbw62h20rlmlgm8";
- name = "recipe";
- };
- packageRequires = [ cl-lib dash elfeed org s ];
- meta = {
- homepage = "https://melpa.org/#/elfeed-org";
- license = lib.licenses.free;
- };
- }) {};
elfeed-protocol = callPackage ({ cl-lib ? null
, elfeed
, emacs
@@ -24471,32 +13098,6 @@
license = lib.licenses.free;
};
}) {};
- elhome = callPackage ({ fetchFromGitHub
- , fetchurl
- , initsplit
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "elhome";
- ename = "elhome";
- version = "20161025.1342";
- src = fetchFromGitHub {
- owner = "demyanrogozhin";
- repo = "elhome";
- rev = "e789e806469af3e9705f72298683c21f6c3a516d";
- sha256 = "1q9glli1czbfp62aalblaak55j8rj2nl8bm8nifnnb8jrzj1qrn0";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/527cc08a3424f87fe2e99119b931530840ad07ba/recipes/elhome";
- sha256 = "1k7936wxgslr29511dz9az38i9vi35rcxk68gzv35v9lpj89lalh";
- name = "recipe";
- };
- packageRequires = [ initsplit ];
- meta = {
- homepage = "https://melpa.org/#/elhome";
- license = lib.licenses.free;
- };
- }) {};
elisp-def = callPackage ({ dash
, emacs
, f
@@ -24526,107 +13127,6 @@
license = lib.licenses.free;
};
}) {};
- elisp-demos = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "elisp-demos";
- ename = "elisp-demos";
- version = "20190314.929";
- src = fetchFromGitHub {
- owner = "xuchunyang";
- repo = "elisp-demos";
- rev = "8c3ee9e83f92876606432251569fd4ce62e7e764";
- sha256 = "1z5x0rrn8486k1vm9v0g2wvjv8q7yr2n4jrb94ayp31z547yn0q9";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/e1bd1c7a4576d4874a8c5fc8ab2dbc65f0e5bc8c/recipes/elisp-demos";
- sha256 = "1571l826x8ixlqd3nkqgizkzrq37af13ihrm1rvgaf5gl0va9ik8";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/elisp-demos";
- license = lib.licenses.free;
- };
- }) {};
- elisp-depend = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "elisp-depend";
- ename = "elisp-depend";
- version = "20190325.414";
- src = fetchFromGitHub {
- owner = "emacsorphanage";
- repo = "elisp-depend";
- rev = "6679da9a6be5a845bb4804224c8394a9bc62168f";
- sha256 = "09xbrk1li76fwa85kvd5xpr0zswrkh51p7a62sb8g422wpaqxiwx";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/7ea159f0cc8c6e4b8483401a6e6687ab4ed73b7f/recipes/elisp-depend";
- sha256 = "0zpafwnm52g6v867f1ghfb492nnmm66imcwlhm5v9hhgwy3z17jm";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/elisp-depend";
- license = lib.licenses.free;
- };
- }) {};
- elisp-docstring-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "elisp-docstring-mode";
- ename = "elisp-docstring-mode";
- version = "20170304.815";
- src = fetchFromGitHub {
- owner = "Fuco1";
- repo = "elisp-docstring-mode";
- rev = "b135d95b158048927f12184e5cfb8fe01fc44713";
- sha256 = "0jyyvrgnplbsg82miawq4fjzb9ds2wyhpqlllyg0s7q49lwsb2fi";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/elisp-docstring-mode";
- sha256 = "0mdh3ikn6zfd3fbmifvivqih2fsijvlzalljdvm32crs9cy6fa96";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/elisp-docstring-mode";
- license = lib.licenses.free;
- };
- }) {};
- elisp-format = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "elisp-format";
- ename = "elisp-format";
- version = "20160508.252";
- src = fetchFromGitHub {
- owner = "Yuki-Inoue";
- repo = "elisp-format";
- rev = "9fe516d39b349070537099a01fe34e47fbded2c8";
- sha256 = "0dmx5c2lrp8a0836zv4sv1p5h7dnmyyzm45lj3h9rqr1c8l1h7jm";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/ff353f4228529c51577f7104cdf52c677be8a500/recipes/elisp-format";
- sha256 = "1l0596y4yjn3jdyy6pgws1pgz6i12fxfy27566lmxklbxp8sxgy8";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/elisp-format";
- license = lib.licenses.free;
- };
- }) {};
elisp-lint = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -24681,31 +13181,6 @@
license = lib.licenses.free;
};
}) {};
- elisp-sandbox = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "elisp-sandbox";
- ename = "elisp-sandbox";
- version = "20131116.1042";
- src = fetchFromGitHub {
- owner = "joelmccracken";
- repo = "elisp-sandbox";
- rev = "ddd669266ca36d7e4ebba73eb1ab42523787e042";
- sha256 = "1pwx0cksgf9qyd6nl1540jmp3p0adgz2sk38r5s8gbli3x109hy3";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/4b0e7c52ff8034a1c0d1e5d7bc0c58f166986b28/recipes/elisp-sandbox";
- sha256 = "1bazm1cf9ghh9b7jzqqgyfcalnrfg7vmxqbn4fiy2c76gbzlr2bp";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/elisp-sandbox";
- license = lib.licenses.free;
- };
- }) {};
elisp-slime-nav = callPackage ({ cl-lib ? null
, fetchFromGitHub
, fetchurl
@@ -24814,58 +13289,6 @@
license = lib.licenses.free;
};
}) {};
- elm-test-runner = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "elm-test-runner";
- ename = "elm-test-runner";
- version = "20190105.1123";
- src = fetchFromGitHub {
- owner = "juanedi";
- repo = "elm-test-runner";
- rev = "a31d567a64d86d36e3675347abd696824a731e0c";
- sha256 = "15kgz44ylni4anz461hihrhvg24jvd7jzykqdjacsznyphfv94m9";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/064db8f60438927255458a7fbd8ae871f8264d67/recipes/elm-test-runner";
- sha256 = "1axzp93a0xmbprskql4bdfnxnmcpfnq6xf7c4x7cgn5pbd1p6inz";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/elm-test-runner";
- license = lib.licenses.free;
- };
- }) {};
- elm-yasnippets = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , yasnippet }:
- melpaBuild {
- pname = "elm-yasnippets";
- ename = "elm-yasnippets";
- version = "20160331.2224";
- src = fetchFromGitHub {
- owner = "abingham";
- repo = "elm-yasnippets";
- rev = "45a11a0cef0c36633fb3477d3dc4167e82779ba4";
- sha256 = "1zb5yra6znkr7yaq6wqlmlr054wkv9cy1dih8h4j2gp2wnfwg968";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/340664dd1c57b539de191dd6faa9eb8ed9ae6914/recipes/elm-yasnippets";
- sha256 = "0nnr0sxkxviw2i7b5s8jgvsv7lgqxqvirmvmband84q9gxlz24zb";
- name = "recipe";
- };
- packageRequires = [ yasnippet ];
- meta = {
- homepage = "https://melpa.org/#/elm-yasnippets";
- license = lib.licenses.free;
- };
- }) {};
elmacro = callPackage ({ dash
, fetchFromGitHub
, fetchurl
@@ -24918,118 +13341,6 @@
license = lib.licenses.free;
};
}) {};
- elnode = callPackage ({ creole
- , dash
- , db
- , fakir
- , fetchFromGitHub
- , fetchurl
- , kv
- , lib
- , melpaBuild
- , noflet
- , s
- , web }:
- melpaBuild {
- pname = "elnode";
- ename = "elnode";
- version = "20140203.1506";
- src = fetchFromGitHub {
- owner = "nicferrier";
- repo = "elnode";
- rev = "3f2bf225853e40a2a10386ee5ae0bd6ba5d44ce9";
- sha256 = "0p3cj5vgka388i4dk9r7bx8pv8mywnfij9ahgqak5jlsddflh8hw";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/c9a76a6498c2a0b0d471d3df7ae3d510d027f08c/recipes/elnode";
- sha256 = "0piy5gy9a7c8s10b99fmdyh6glhvjvdyrz0x2bv30h7wplx5szi6";
- name = "recipe";
- };
- packageRequires = [ creole dash db fakir kv noflet s web ];
- meta = {
- homepage = "https://melpa.org/#/elnode";
- license = lib.licenses.free;
- };
- }) {};
- elog = callPackage ({ eieio ? null
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "elog";
- ename = "elog";
- version = "20160724.1555";
- src = fetchFromGitHub {
- owner = "lujun9972";
- repo = "elog";
- rev = "a67237d9813c7591614d95e2ef31cc5e5ed3f31b";
- sha256 = "0alg5nbmq56zsc032pvah92h5fw155fbfjc275k9vbh915hs6y0w";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/4f3d560bf56b1b4e7540dc5ae16258895c106f1f/recipes/elog";
- sha256 = "0hixsi60nf0khm9xmya3saf95ahn1gydp0l5wxawsc491qwg4vqd";
- name = "recipe";
- };
- packageRequires = [ eieio ];
- meta = {
- homepage = "https://melpa.org/#/elog";
- license = lib.licenses.free;
- };
- }) {};
- elogcat = callPackage ({ dash
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , s }:
- melpaBuild {
- pname = "elogcat";
- ename = "elogcat";
- version = "20151120.1641";
- src = fetchFromGitHub {
- owner = "youngker";
- repo = "elogcat.el";
- rev = "cafe9bd5c0d6561d72066c70a55c246453693efd";
- sha256 = "117vb19z006hjs0717r5l90h4rv6rciw3cijlgg006f4qqj3g9s5";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/4855c75dc22a7089cf9e4fa80dbe0ccd2830fe83/recipes/elogcat";
- sha256 = "0sqdqlpg4firswr742nrb6b8sz3bpijf6pbxvandq3ddpm0rx9ia";
- name = "recipe";
- };
- packageRequires = [ dash s ];
- meta = {
- homepage = "https://melpa.org/#/elogcat";
- license = lib.licenses.free;
- };
- }) {};
- eloud = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "eloud";
- ename = "eloud";
- version = "20160731.857";
- src = fetchFromGitHub {
- owner = "smythp";
- repo = "eloud";
- rev = "c1d8274ca207cd270f8ad7f62993bd6df304d561";
- sha256 = "0ng3d82518i0d8dp8719ssinb1g7km18lcs38hzprgqy9ycqc1qb";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/f1e80fba9bc541594129756f5c668f3192919bc8/recipes/eloud";
- sha256 = "1h8wd5mfi1cn9bzrckgc5mdrr5jkqsx92ay008p650wvjl689rn2";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/eloud";
- license = lib.licenses.free;
- };
- }) {};
elpa-audit = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -25174,91 +13485,6 @@
license = lib.licenses.free;
};
}) {};
- elpygen = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , yasnippet }:
- melpaBuild {
- pname = "elpygen";
- ename = "elpygen";
- version = "20171225.936";
- src = fetchFromGitHub {
- owner = "vkazanov";
- repo = "elpygen";
- rev = "21929c997a05968f9eefe52b85a76ceaab3b0d81";
- sha256 = "093ck4dkdvbgafb1bmkmszg1ba81ns5kjbk2iq2b5p9dvfcjjr3k";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/e670bd79a85c4e2a9ca3355feb8aaefa709f49cb/recipes/elpygen";
- sha256 = "01fak1dz9mna3p4c2r0scb0j10qk3lvpq270jy6rvzlcbwri4akl";
- name = "recipe";
- };
- packageRequires = [ emacs yasnippet ];
- meta = {
- homepage = "https://melpa.org/#/elpygen";
- license = lib.licenses.free;
- };
- }) {};
- elquery = callPackage ({ dash
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , s }:
- melpaBuild {
- pname = "elquery";
- ename = "elquery";
- version = "20180917.1517";
- src = fetchFromGitHub {
- owner = "AdamNiederer";
- repo = "elquery";
- rev = "eac429d8550fbf1582c57d5e16fed9f320d6eb30";
- sha256 = "1jkbrv5r5vzqjhadb4dcgks47gaj7aavzdkzc5gjn5zv5fmm1in2";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/121f7d2091b83143402b44542db12e8f78275103/recipes/elquery";
- sha256 = "19yik9w4kcj7i9d3bwwdszznwcrh75hxd0540iqk5by861z5f3zr";
- name = "recipe";
- };
- packageRequires = [ dash emacs s ];
- meta = {
- homepage = "https://melpa.org/#/elquery";
- license = lib.licenses.free;
- };
- }) {};
- elsa = callPackage ({ cl-lib ? null
- , dash
- , emacs
- , f
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , trinary }:
- melpaBuild {
- pname = "elsa";
- ename = "elsa";
- version = "20190331.858";
- src = fetchFromGitHub {
- owner = "emacs-elsa";
- repo = "Elsa";
- rev = "118a943c2c447fd0f05cd2cc7ebb5dbcc222be00";
- sha256 = "0c2rbphkzj6cjf4fgy13fim2b8r3zdic3q6pgrymlcm9am0gdkdn";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/f126c49fe01a1c21aca0f45643d44ecf4c3ad95b/recipes/elsa";
- sha256 = "0g8l61fg9krqakp6fjvm6jr1lss3mll707rknhm5d2grr6ik3lvl";
- name = "recipe";
- };
- packageRequires = [ cl-lib dash emacs f trinary ];
- meta = {
- homepage = "https://melpa.org/#/elsa";
- license = lib.licenses.free;
- };
- }) {};
elscreen = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -25285,34 +13511,6 @@
license = lib.licenses.free;
};
}) {};
- elscreen-buffer-group = callPackage ({ cl-lib ? null
- , elscreen
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "elscreen-buffer-group";
- ename = "elscreen-buffer-group";
- version = "20181026.2228";
- src = fetchFromGitHub {
- owner = "jeffgran";
- repo = "elscreen-buffer-group";
- rev = "cd671c4a86ff6e481d24d060b4069e518940f9c9";
- sha256 = "1nff1frlni7lbxrk26idzxlm0npzrjvfmzsv3y9nwy9v8djsiwy3";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/9c6fedb7b6ef58089da4b35ad115f699b4b24ff2/recipes/elscreen-buffer-group";
- sha256 = "1clmhpk9zp6hsgz6a4jpmbrr9fr6k8b324s0x61n5yi4yzgdmc0v";
- name = "recipe";
- };
- packageRequires = [ cl-lib elscreen emacs ];
- meta = {
- homepage = "https://melpa.org/#/elscreen-buffer-group";
- license = lib.licenses.free;
- };
- }) {};
elscreen-fr = callPackage ({ elscreen
, fetchFromGitHub
, fetchurl
@@ -25366,61 +13564,6 @@
license = lib.licenses.free;
};
}) {};
- elscreen-multi-term = callPackage ({ elscreen
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , multi-term }:
- melpaBuild {
- pname = "elscreen-multi-term";
- ename = "elscreen-multi-term";
- version = "20151021.1933";
- src = fetchFromGitHub {
- owner = "wamei";
- repo = "elscreen-multi-term";
- rev = "7b6048a0dd80f69460a62bbc6f1af8856141a5ea";
- sha256 = "1cninrbgxzg0gykkpjx0i8pk2yc7sgr2kliqd35lgcxz2q4jlr51";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/7a24477cf83df7da931fa33c622ef720839529d2/recipes/elscreen-multi-term";
- sha256 = "1zwrzblkag1d18xz450b7khsdssvsxyl1x6a682vy0dkn1y5qh1n";
- name = "recipe";
- };
- packageRequires = [ elscreen emacs multi-term ];
- meta = {
- homepage = "https://melpa.org/#/elscreen-multi-term";
- license = lib.licenses.free;
- };
- }) {};
- elscreen-separate-buffer-list = callPackage ({ elscreen
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "elscreen-separate-buffer-list";
- ename = "elscreen-separate-buffer-list";
- version = "20161106.1958";
- src = fetchFromGitHub {
- owner = "wamei";
- repo = "elscreen-separate-buffer-list";
- rev = "7652d827aa1b8c1b04303c5b4b0bda5e8f85565e";
- sha256 = "1cpmpms3r9lywmxgciz4xq7vjw2c1mxmpd89shssqck16563zwxf";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/9f5e5c8e2cd45a25e47c74bef59b9114aa7685eb/recipes/elscreen-separate-buffer-list";
- sha256 = "1d8kc137cd8i3wglir1rlvk7w8mrdhd3xvcihi2f2f2g5nh2n5jk";
- name = "recipe";
- };
- packageRequires = [ elscreen emacs ];
- meta = {
- homepage = "https://melpa.org/#/elscreen-separate-buffer-list";
- license = lib.licenses.free;
- };
- }) {};
elscreen-tab = callPackage ({ dash
, elscreen
, emacs
@@ -25449,32 +13592,6 @@
license = lib.licenses.free;
};
}) {};
- elvish-mode = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "elvish-mode";
- ename = "elvish-mode";
- version = "20180809.912";
- src = fetchFromGitHub {
- owner = "ALSchwalm";
- repo = "elvish-mode";
- rev = "c3a7e31564256b9755b1ab9fb40d32ad78cd1ad2";
- sha256 = "0dxa8g49fq4h1ab3sawnbgy1fxaxxsdac3l6im34qfw4km8brp9y";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/0fc724072702a565af471f9ae523a1e6e48e3f04/recipes/elvish-mode";
- sha256 = "1f5pyadmbh2ldd51srvlhbjq2849f1f0s8qmpjnsz9bc986yga34";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/elvish-mode";
- license = lib.licenses.free;
- };
- }) {};
elwm = callPackage ({ dash
, fetchFromGitHub
, fetchurl
@@ -25603,31 +13720,6 @@
license = lib.licenses.free;
};
}) {};
- emacsist-view = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "emacsist-view";
- ename = "emacsist-view";
- version = "20160426.523";
- src = fetchFromGitHub {
- owner = "lujun9972";
- repo = "emacsist-view";
- rev = "f67761259ed779a9bc95c9a4e0474522990c5c6b";
- sha256 = "1vhs9725fyl2j65lk014qz76iv4hsvyim06361h4lai634hp7ck6";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/d2157e14d68fa2875c6d5c40c20a39b9a2431c10/recipes/emacsist-view";
- sha256 = "0lf280ppi3zksqvx81y8mm9479j26kd5wywfghhwk36kz410hk99";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/emacsist-view";
- license = lib.licenses.free;
- };
- }) {};
emacsql = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -25786,33 +13878,6 @@
license = lib.licenses.free;
};
}) {};
- emamux-ruby-test = callPackage ({ emamux
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , projectile }:
- melpaBuild {
- pname = "emamux-ruby-test";
- ename = "emamux-ruby-test";
- version = "20130812.939";
- src = fetchFromGitHub {
- owner = "syohex";
- repo = "emamux-ruby-test";
- rev = "785bfd44d097a46bb2ebe1e62ac7595fd4dc9ab5";
- sha256 = "1gcjki5rcc4gmcq6gcpdvahn4j6f39583jgq8g7ykylfqk2qhrjh";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/f11759710881bdf5a77bd309acb03a6699cc7fd6/recipes/emamux-ruby-test";
- sha256 = "1l1hp2dggjlc287qkfyj21w9lri4agh91g5x707qqq8nicdlv3xm";
- name = "recipe";
- };
- packageRequires = [ emamux projectile ];
- meta = {
- homepage = "https://melpa.org/#/emamux-ruby-test";
- license = lib.licenses.free;
- };
- }) {};
emaps = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -25838,58 +13903,6 @@
license = lib.licenses.free;
};
}) {};
- ember-mode = callPackage ({ cl-lib ? null
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "ember-mode";
- ename = "ember-mode";
- version = "20190403.952";
- src = fetchFromGitHub {
- owner = "madnificent";
- repo = "ember-mode";
- rev = "3510afc5023d760a66aef260ba601c15a31dc878";
- sha256 = "06y5nd2fs0xskjxhd1dn4g9y03i7xamv7jiwq8cm0c2mli5pjpr1";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/9ac1eef4ad87b1b6b6d8e63d340ba03dc013425b/recipes/ember-mode";
- sha256 = "0fwd34cim29dg802ibsfd120px9sj54d4wzp3ggmjjzwkl9ky7dx";
- name = "recipe";
- };
- packageRequires = [ cl-lib ];
- meta = {
- homepage = "https://melpa.org/#/ember-mode";
- license = lib.licenses.free;
- };
- }) {};
- ember-yasnippets = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , yasnippet }:
- melpaBuild {
- pname = "ember-yasnippets";
- ename = "ember-yasnippets";
- version = "20160526.958";
- src = fetchFromGitHub {
- owner = "ronco";
- repo = "ember-yasnippets.el";
- rev = "3b5bd01569646237bf1b540d097e12f9118b67f4";
- sha256 = "0g7hp1aq0zznbhd234dpbblnagn34fxdasc5v4lfhm5ykw5xyb5x";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/6c37a13d56e9a0a4e7e2c11349ed87610a0f6b2c/recipes/ember-yasnippets";
- sha256 = "1jwkzcqcpy7ykdjhsqmg8ds6qyl4jglyjbgg7v301x068dsxkja6";
- name = "recipe";
- };
- packageRequires = [ yasnippet ];
- meta = {
- homepage = "https://melpa.org/#/ember-yasnippets";
- license = lib.licenses.free;
- };
- }) {};
embrace = callPackage ({ cl-lib ? null
, expand-region
, fetchFromGitHub
@@ -25945,33 +13958,6 @@
license = lib.licenses.free;
};
}) {};
- emlib = callPackage ({ cl-lib ? null
- , dash
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "emlib";
- ename = "emlib";
- version = "20161126.723";
- src = fetchFromGitHub {
- owner = "narendraj9";
- repo = "emlib";
- rev = "dea2af00f551ea580c641d86dd69219f7d4f3685";
- sha256 = "0p52pkq3wvnhg0l7cribhc39zl1cjjxgw9qzpmwd0jw1g1lslwbm";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/46b3738975c8082d9eb6da9fe733edb353aa7069/recipes/emlib";
- sha256 = "02l135v3pqpf6ngfq11h4rc843iwh3dgi4rr3gcc63pjl4ws2w2c";
- name = "recipe";
- };
- packageRequires = [ cl-lib dash ];
- meta = {
- homepage = "https://melpa.org/#/emlib";
- license = lib.licenses.free;
- };
- }) {};
emmet-mode = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -26022,85 +14008,6 @@
license = lib.licenses.free;
};
}) {};
- emms-bilibili = callPackage ({ cl-lib ? null
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "emms-bilibili";
- ename = "emms-bilibili";
- version = "20180102.2018";
- src = fetchFromGitHub {
- owner = "0xDEATHCODE";
- repo = "emms-bilibili";
- rev = "294bca3dfc42fe3a55fb326ab39bc0fcfc8c5090";
- sha256 = "0q8z3q1agwgb3d0kpvac7a98p3q4ljjnv404cf9kihjjfxvh4vm5";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/533f96d1e68eda20b2d2e7f8eb3e7fa118904970/recipes/emms-bilibili";
- sha256 = "1mx3fn2x526np8awjn0ydsqh59b4aznf3sig410fbr6wk6pa6y47";
- name = "recipe";
- };
- packageRequires = [ cl-lib emacs ];
- meta = {
- homepage = "https://melpa.org/#/emms-bilibili";
- license = lib.licenses.free;
- };
- }) {};
- emms-info-mediainfo = callPackage ({ emms
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "emms-info-mediainfo";
- ename = "emms-info-mediainfo";
- version = "20131223.500";
- src = fetchFromGitHub {
- owner = "fgallina";
- repo = "emms-info-mediainfo";
- rev = "bce16eae9eacd38719fea62a9755225a888da59d";
- sha256 = "07qbbs2i05bqndr4dxb84z50wav8ffbc56f6saw6pdx6n0sw6n6n";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/d08c28c6ff4caf14f0bf4b0f40f16660dac2d5d9/recipes/emms-info-mediainfo";
- sha256 = "17x8vvfhx739hcj9j1nh6j4r6zqnwa5zq9zpi9b6lxc8979k3m4w";
- name = "recipe";
- };
- packageRequires = [ emms ];
- meta = {
- homepage = "https://melpa.org/#/emms-info-mediainfo";
- license = lib.licenses.free;
- };
- }) {};
- emms-mark-ext = callPackage ({ emms
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "emms-mark-ext";
- ename = "emms-mark-ext";
- version = "20130528.2027";
- src = fetchFromGitHub {
- owner = "vapniks";
- repo = "emms-mark-ext";
- rev = "ec68129e3e9e469e5bf160c6a1b7030e322f3541";
- sha256 = "03a7sn8pl0pnr05rmrrbw4hjyi8vpjqbvkvh0fqnij913a6qc64l";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/36b7292160d3dab1a684d09c848a6b0f68b31add/recipes/emms-mark-ext";
- sha256 = "13h6hy8y0as0xfc1cg8balw63as81fzar32q9h4zhnndl3hc1081";
- name = "recipe";
- };
- packageRequires = [ emms ];
- meta = {
- homepage = "https://melpa.org/#/emms-mark-ext";
- license = lib.licenses.free;
- };
- }) {};
emms-mode-line-cycle = callPackage ({ emacs
, emms
, fetchFromGitHub
@@ -26128,35 +14035,6 @@
license = lib.licenses.free;
};
}) {};
- emms-player-mpv-jp-radios = callPackage ({ cl-lib ? null
- , emacs
- , emms
- , emms-player-simple-mpv
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "emms-player-mpv-jp-radios";
- ename = "emms-player-mpv-jp-radios";
- version = "20180325.417";
- src = fetchFromGitHub {
- owner = "momomo5717";
- repo = "emms-player-mpv-jp-radios";
- rev = "f6b37f5878c741124d5fca43c5b80af873541edd";
- sha256 = "1sxzh1bhdwln7kcn07agayyhmgyrbmmhgc3f85336xybc6ljpqs8";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/09ba6da5057061f055d4a3212d167f9666618d4f/recipes/emms-player-mpv-jp-radios";
- sha256 = "0gdap5cv08pz370fl92v9lyvgkbbyjhp9wsc4kyjm4f4pwx9fybv";
- name = "recipe";
- };
- packageRequires = [ cl-lib emacs emms emms-player-simple-mpv ];
- meta = {
- homepage = "https://melpa.org/#/emms-player-mpv-jp-radios";
- license = lib.licenses.free;
- };
- }) {};
emms-player-simple-mpv = callPackage ({ cl-lib ? null
, emacs
, emms
@@ -26185,33 +14063,6 @@
license = lib.licenses.free;
};
}) {};
- emms-soundcloud = callPackage ({ emms
- , fetchFromGitHub
- , fetchurl
- , json ? null
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "emms-soundcloud";
- ename = "emms-soundcloud";
- version = "20131221.345";
- src = fetchFromGitHub {
- owner = "osener";
- repo = "emms-soundcloud";
- rev = "87e5cbf9609d1f26c24dc834fdeb78b33d453c2b";
- sha256 = "0nx5bb5fjmaa1nhkbfnhd1aydqrq390x4rl1vfh11ilnf52wzzld";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/19e423525255371cf479842885eca07e801f6d00/recipes/emms-soundcloud";
- sha256 = "0nf1f719m4pvxn0mf4qyx8mzwhrhv6kchnrpiy9clx520y8x3dqi";
- name = "recipe";
- };
- packageRequires = [ emms json ];
- meta = {
- homepage = "https://melpa.org/#/emms-soundcloud";
- license = lib.licenses.free;
- };
- }) {};
emms-state = callPackage ({ emms
, fetchFromGitHub
, fetchurl
@@ -26265,31 +14116,6 @@
license = lib.licenses.free;
};
}) {};
- emoji-display = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "emoji-display";
- ename = "emoji-display";
- version = "20140117.213";
- src = fetchFromGitHub {
- owner = "ikazuhiro";
- repo = "emoji-display";
- rev = "bb4217f6400151a9cfa6d4524b8427f01feb5193";
- sha256 = "0sh4q4sb4j58ryvvmlsx7scry9inzgv2ssa87vbyzpxq0435l229";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/2c34abbda5acbd52f4e79ce9f87f9ae0fa1e48d5/recipes/emoji-display";
- sha256 = "04cf18z26d64l0sv8qkbxjixi2wbw23awd5fznvg1cs8ixss01j9";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/emoji-display";
- license = lib.licenses.free;
- };
- }) {};
emoji-fontset = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -26315,32 +14141,6 @@
license = lib.licenses.free;
};
}) {};
- emoji-recall = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "emoji-recall";
- ename = "emoji-recall";
- version = "20160723.1508";
- src = fetchFromGitHub {
- owner = "lujun9972";
- repo = "emoji-recall.el";
- rev = "1c12d18e5592eaa2138dd3034012dced277e6d99";
- sha256 = "0h65sapfa18z7xiyzsdizys204mvkzgmb3fbq75y1ddcrg9q0ikf";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/8f03b34d3e8e5edf9888c71b6e4bd2e1a5aec016/recipes/emoji-recall";
- sha256 = "06cahk2h6q3vlw2p4jmjrpzycxpm884p31yhbp77lagkqhs2fzbk";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/emoji-recall";
- license = lib.licenses.free;
- };
- }) {};
emojify = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -26369,57 +14169,6 @@
license = lib.licenses.free;
};
}) {};
- emojify-logos = callPackage ({ emojify
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "emojify-logos";
- ename = "emojify-logos";
- version = "20180814.217";
- src = fetchFromGitHub {
- owner = "mxgoldstein";
- repo = "emojify-logos";
- rev = "a3e78bcbdf863092d4c9b026ac08bf7d1c7c0e8b";
- sha256 = "1fhxf3nky9wlcn54q60f9254iawcccsrxw370q7cgpsrl1gj3dgp";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/114d5596a7b36f47c150c413c6ecc74de36ca239/recipes/emojify-logos";
- sha256 = "0kgci1svi80xnz44bvh19si8bcjllrkm9rbd8761h77iylkqs3q5";
- name = "recipe";
- };
- packageRequires = [ emojify ];
- meta = {
- homepage = "https://melpa.org/#/emojify-logos";
- license = lib.licenses.free;
- };
- }) {};
- empos = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "empos";
- ename = "empos";
- version = "20151011.1216";
- src = fetchFromGitHub {
- owner = "dimalik";
- repo = "empos";
- rev = "7b99ad30e56937adb7e6349777e5a2045597d564";
- sha256 = "0bm0cxnv7g2dzfvfhkyy16kzn6shvy9gzypiqyjj42ng54xmhs0n";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/461f7849e7be986994dd1e7cf109b66e8c37c719/recipes/empos";
- sha256 = "0wbrszl9rq4is0ymxq9lxpqzlfg93gljh6almjy0hp3cs7pkzyl4";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/empos";
- license = lib.licenses.free;
- };
- }) {};
emr = callPackage ({ cl-lib ? null
, clang-format
, dash
@@ -26466,57 +14215,6 @@
license = lib.licenses.free;
};
}) {};
- enclose = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "enclose";
- ename = "enclose";
- version = "20121008.914";
- src = fetchFromGitHub {
- owner = "rejeep";
- repo = "enclose.el";
- rev = "2fff3d4fcc1089f87647042d7164ba04282766ae";
- sha256 = "1x0z3fr8qd1r6wdh7gjbx5fmd7yfmh8mjnp25zkzvgxvdg4gj91l";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/enclose";
- sha256 = "1bkrv3cwhbiydgfjhmyjr96cvsgr9zi8n0ir1akgamccm2ln73d6";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/enclose";
- license = lib.licenses.free;
- };
- }) {};
- encourage-mode = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "encourage-mode";
- ename = "encourage-mode";
- version = "20151128.105";
- src = fetchFromGitHub {
- owner = "halbtuerke";
- repo = "encourage-mode.el";
- rev = "ca411e6bfd3d0edffe95852127bd995730b942e3";
- sha256 = "0fvfzm9a25cajxbvvia1dpmiq2nn7qimwsqwcirpwzq9zsn4j7f4";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1e90146c03a3f85313e3d338c48547ccfb73f605/recipes/encourage-mode";
- sha256 = "0fwn6w7s61c08z0d8z3awclqrhszia9is30gm2kx4hwr9dhhwh63";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/encourage-mode";
- license = lib.licenses.free;
- };
- }) {};
engine-mode = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -26593,33 +14291,6 @@
license = lib.licenses.free;
};
}) {};
- eno = callPackage ({ dash
- , edit-at-point
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "eno";
- ename = "eno";
- version = "20160110.234";
- src = fetchFromGitHub {
- owner = "enoson";
- repo = "eno.el";
- rev = "c07674329f66d6b4ea6c3a3944f801ab77ccb7e6";
- sha256 = "0var9h1nslww3zlqbl9mvrkz7c9i2g8ka22mwqc1iv92ka3w0czv";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/a63b22f357b2d08b12fb86c27261ab4d687c5f7f/recipes/eno";
- sha256 = "1pcbvka3g32j1a2j7slw4jm80qpsk3ldziy5n4l02xpnqw6iwy6q";
- name = "recipe";
- };
- packageRequires = [ dash edit-at-point ];
- meta = {
- homepage = "https://melpa.org/#/eno";
- license = lib.licenses.free;
- };
- }) {};
enotify = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -26685,34 +14356,6 @@
license = lib.licenses.free;
};
}) {};
- envdir = callPackage ({ dash
- , emacs
- , f
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "envdir";
- ename = "envdir";
- version = "20160221.1123";
- src = fetchFromGitHub {
- owner = "proofit404";
- repo = "envdir-mode";
- rev = "f29346c55ccf11d8c75628edc6d430ed63c36917";
- sha256 = "1jyhr9gv3d0rxv5iks2g9x6xbxqv1bvf1fnih96h4pgsfxz8wrp6";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/79c1497f709f6d23e4886359e09ab0456ed61777/recipes/envdir";
- sha256 = "085bfm4w7flrv8jvzdnzbdg3j5n29xfzbs1wlrr29mg9dja6s8g8";
- name = "recipe";
- };
- packageRequires = [ dash emacs f ];
- meta = {
- homepage = "https://melpa.org/#/envdir";
- license = lib.licenses.free;
- };
- }) {};
eopengrok = callPackage ({ cl-lib ? null
, dash
, fetchFromGitHub
@@ -26769,32 +14412,6 @@
license = lib.licenses.free;
};
}) {};
- epic = callPackage ({ fetchFromGitHub
- , fetchurl
- , htmlize
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "epic";
- ename = "epic";
- version = "20170209.1623";
- src = fetchFromGitHub {
- owner = "yoshinari-nomura";
- repo = "epic";
- rev = "a41826c330eb0ea061d58a08cc861b0c4ac8ec4e";
- sha256 = "0mvg52f2y3725hlzqcn2mh8jihnbg68wlqmq951sa3qfma7m40pp";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/7c7162791d560846fe386746c00a9fe88c8007bb/recipes/epic";
- sha256 = "0gfl8if83jbs0icz6gcjkwxvcz5v744k1kvqnbx3ga481kds9rqf";
- name = "recipe";
- };
- packageRequires = [ htmlize ];
- meta = {
- homepage = "https://melpa.org/#/epic";
- license = lib.licenses.free;
- };
- }) {};
epkg = callPackage ({ closql
, dash
, emacs
@@ -26876,137 +14493,6 @@
license = lib.licenses.free;
};
}) {};
- epresent = callPackage ({ cl-lib ? null
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , org }:
- melpaBuild {
- pname = "epresent";
- ename = "epresent";
- version = "20160410.1901";
- src = fetchFromGitHub {
- owner = "dakrone";
- repo = "epresent";
- rev = "bc3443879bb0111dcde2abd2f9c578e2cd438186";
- sha256 = "1ws4hjvbwn1nf18qsbq0cl6q0rdk8fy4brrb1mcqfiag9arqmd6b";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/150487558ecda0520c637ffed1ffe2fbf2dc5811/recipes/epresent";
- sha256 = "176d1nwsafi6fb0dnv35bfskp0xczyzf2939gi4bz69zh0161jg8";
- name = "recipe";
- };
- packageRequires = [ cl-lib org ];
- meta = {
- homepage = "https://melpa.org/#/epresent";
- license = lib.licenses.free;
- };
- }) {};
- eprime-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "eprime-mode";
- ename = "eprime-mode";
- version = "20140513.1116";
- src = fetchFromGitHub {
- owner = "AndrewHynes";
- repo = "eprime-mode";
- rev = "a680adedff897a22142d4628af4244a2a3dfca41";
- sha256 = "0a481cr6y70kvxbsdwscv3srmvyvgk43chdzqljhhj4fgk0zsccn";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/37b4f3dce033fa18d23202ca4c36bc85754d547d/recipes/eprime-mode";
- sha256 = "0vswjcs24f3mdyw6ai7p21ab8pdn327lr2d6css0a5nrg539cn2g";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/eprime-mode";
- license = lib.licenses.free;
- };
- }) {};
- eproject = callPackage ({ fetchFromGitHub
- , fetchurl
- , helm
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "eproject";
- ename = "eproject";
- version = "20180312.942";
- src = fetchFromGitHub {
- owner = "jrockway";
- repo = "eproject";
- rev = "068218d2cf2138cb2e8fc29b57e773a0097a7e8b";
- sha256 = "110b8gn47m5kafmvxr8q9zzrj0pdn6ikw9xsx4z1rc58i02jy307";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/d7e82668617a9b599f8994c720f3f123ba1e008a/recipes/eproject";
- sha256 = "0kpg4r57khbyinc73v9kj32b9m3b4nb5014r5fkl5mzzpzmd85b4";
- name = "recipe";
- };
- packageRequires = [ helm ];
- meta = {
- homepage = "https://melpa.org/#/eproject";
- license = lib.licenses.free;
- };
- }) {};
- equake = callPackage ({ dash
- , emacs
- , fetchFromGitLab
- , fetchurl
- , lib
- , melpaBuild
- , tco }:
- melpaBuild {
- pname = "equake";
- ename = "equake";
- version = "20190403.1840";
- src = fetchFromGitLab {
- owner = "emacsomancer";
- repo = "equake";
- rev = "997ad912062cbdf8598d6f029319ee046649a26c";
- sha256 = "04xzjsifam29y55wfhw29gviadp0f2pn4di6nnhrypxlir2mg3rz";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/2a4a0ec11a9c720d7ed90addcb31d0a9d5594f5b/recipes/equake";
- sha256 = "17r10d3acmhixbi24k19rx720qi8ss4v53n107arqmr04rkd1v2y";
- name = "recipe";
- };
- packageRequires = [ dash emacs tco ];
- meta = {
- homepage = "https://melpa.org/#/equake";
- license = lib.licenses.free;
- };
- }) {};
- erc-colorize = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "erc-colorize";
- ename = "erc-colorize";
- version = "20170107.539";
- src = fetchFromGitHub {
- owner = "thisirs";
- repo = "erc-colorize";
- rev = "d026a016dcb9d63d9ac66d30627a92a8f1681bbd";
- sha256 = "1zzmsrlknrpw26kizd4dm1g604y9nkgh85xal9la70k94qcgv138";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/e69214e89ec0e00b36609fce3efe22b5c1add1f9/recipes/erc-colorize";
- sha256 = "1m941q7ql3yb71s71783nvz822bwhn1krmin18fvh0fbsbbnck2a";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/erc-colorize";
- license = lib.licenses.free;
- };
- }) {};
erc-crypt = callPackage ({ cl-lib ? null
, fetchFromGitHub
, fetchurl
@@ -27033,34 +14519,6 @@
license = lib.licenses.free;
};
}) {};
- erc-hipchatify = callPackage ({ alert
- , emacs
- , fetchhg
- , fetchurl
- , lib
- , melpaBuild
- , request
- , s }:
- melpaBuild {
- pname = "erc-hipchatify";
- ename = "erc-hipchatify";
- version = "20170314.937";
- src = fetchhg {
- url = "https://bitbucket.com/seanfarley/erc-hipchatify";
- rev = "a53227513692";
- sha256 = "0av0y65hz7fbiiqzmk5mmw6jv7fivhcd1w3s2xn5y5jpgps56mrc";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/b60e01e7064ce486fdac3d1b39fd4a1296b0dac5/recipes/erc-hipchatify";
- sha256 = "1a4gl05i757vvap0rzrfwms7mhw80sa84gvbwafrvj3x11rja24x";
- name = "recipe";
- };
- packageRequires = [ alert emacs request s ];
- meta = {
- homepage = "https://melpa.org/#/erc-hipchatify";
- license = lib.licenses.free;
- };
- }) {};
erc-hl-nicks = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -27086,31 +14544,6 @@
license = lib.licenses.free;
};
}) {};
- erc-image = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "erc-image";
- ename = "erc-image";
- version = "20180522.724";
- src = fetchFromGitHub {
- owner = "kidd";
- repo = "erc-image.el";
- rev = "82fb3871f02e24b1e880770b9a3d187aab43d0f0";
- sha256 = "1q8mkf612fb4fjp8h4kbr107wn083iqfdgv8f80pcmil8y33dw9i";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/erc-image";
- sha256 = "1k5llh2jg2wxy9v03qrhwqa6g7apkqiqa47jm24z0ydqinm6zl83";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/erc-image";
- license = lib.licenses.free;
- };
- }) {};
erc-scrolltoplace = callPackage ({ emacs
, fetchFromGitLab
, fetchurl
@@ -27138,133 +14571,6 @@
license = lib.licenses.free;
};
}) {};
- erc-social-graph = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "erc-social-graph";
- ename = "erc-social-graph";
- version = "20150508.504";
- src = fetchFromGitHub {
- owner = "vibhavp";
- repo = "erc-social-graph";
- rev = "e6ef3416a1c5064054bf054d9f0c1c7bf54a9cd0";
- sha256 = "0k3gp4c74g5awk7v9lzb6py3dvf59nggh6dw7530cswxb6kg2psa";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/9f347636c417aaf91728e56fd32313854fde3684/recipes/erc-social-graph";
- sha256 = "07arn3k89cqxab5x5lczv8bpgrbirmlw9p6c37fgrl3df6f46h4h";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/erc-social-graph";
- license = lib.licenses.free;
- };
- }) {};
- erc-status-sidebar = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , seq }:
- melpaBuild {
- pname = "erc-status-sidebar";
- ename = "erc-status-sidebar";
- version = "20171223.1324";
- src = fetchFromGitHub {
- owner = "drewbarbs";
- repo = "erc-status-sidebar";
- rev = "48ed93ca8e225b4a212d89ffc01803355f66ee0a";
- sha256 = "1pxs48rsmna177qvglyk32hy3rdfydg0spr4rzkf1gvn169ispss";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/29631de8ec4140a8e35cc500902b58115faa3955/recipes/erc-status-sidebar";
- sha256 = "04qh70ih74vbavq7ccwj1ixpd8s3g8rck9bxv6zhm1yv34bslw5d";
- name = "recipe";
- };
- packageRequires = [ emacs seq ];
- meta = {
- homepage = "https://melpa.org/#/erc-status-sidebar";
- license = lib.licenses.free;
- };
- }) {};
- erc-terminal-notifier = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "erc-terminal-notifier";
- ename = "erc-terminal-notifier";
- version = "20140115.224";
- src = fetchFromGitHub {
- owner = "julienXX";
- repo = "erc-terminal-notifier.el";
- rev = "a3dacb935845e4a20031212bbd82b2170f68d2a8";
- sha256 = "0cfqbqskh260zfq1lx1s8jz2351w2ij9m73rqim16fy7zr0s0670";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/f2ba978b1ba63fac3b7f1e9776ddc3b054455ac4/recipes/erc-terminal-notifier";
- sha256 = "0vrxkg62qr3ki8n9mdn02sdni5fkj79fpkn0drx0a4kqp0nrrj7c";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/erc-terminal-notifier";
- license = lib.licenses.free;
- };
- }) {};
- erc-track-score = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "erc-track-score";
- ename = "erc-track-score";
- version = "20130328.515";
- src = fetchFromGitHub {
- owner = "jd";
- repo = "erc-track-score.el";
- rev = "5b27531ea6b1a4c4b703b270dfa9128cb5bfdaa3";
- sha256 = "0n107d77z04ahypa7hn2165kkb6490v4vkzdm5zwm4lfhvlmp0x2";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/671afe0ff3889ae8c4b2d7b8617a3a25c16f3f0f/recipes/erc-track-score";
- sha256 = "19wjwah2n8ri6gyrsbzxnrvxwr5cj48sxrar1226n9miqvgj5whx";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/erc-track-score";
- license = lib.licenses.free;
- };
- }) {};
- erc-tweet = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "erc-tweet";
- ename = "erc-tweet";
- version = "20150920.558";
- src = fetchFromGitHub {
- owner = "kidd";
- repo = "erc-tweet.el";
- rev = "91fed61e139fa788d66a7358f0d50acc896414b8";
- sha256 = "118q4zj9dh5xnimcsi229j5pflhcd8qz0p212kc4p9dmyrx2iw0n";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/erc-tweet";
- sha256 = "0nmh3r8s69hfmkz0jycn7w2icb5gnw2qbf8xjd52kigkdb2s646c";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/erc-tweet";
- license = lib.licenses.free;
- };
- }) {};
erc-twitch = callPackage ({ erc ? null
, fetchFromGitHub
, fetchurl
@@ -27292,31 +14598,6 @@
license = lib.licenses.free;
};
}) {};
- erc-view-log = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "erc-view-log";
- ename = "erc-view-log";
- version = "20140227.1239";
- src = fetchFromGitHub {
- owner = "Niluge-KiWi";
- repo = "erc-view-log";
- rev = "c5a25f0cbca84ed2e4f72068c02b66bd0ea3b266";
- sha256 = "0bzi2sh2fhrz49j5y53h6jgf41av6rx78smb3bbk6m74is8vim2y";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/0c0176d8e26014f7b62d14ac3adffa21a84b5741/recipes/erc-view-log";
- sha256 = "1k6fawblz0d7kz1y7sa3q43s7ci28jsmzkp9vnl1nf55p9xvv4cf";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/erc-view-log";
- license = lib.licenses.free;
- };
- }) {};
erc-youtube = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -27342,32 +14623,6 @@
license = lib.licenses.free;
};
}) {};
- erc-yt = callPackage ({ dash
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "erc-yt";
- ename = "erc-yt";
- version = "20150426.549";
- src = fetchFromGitHub {
- owner = "yhvh";
- repo = "erc-yt";
- rev = "43e7d49325b17a3217a6ffb4a9daf75c5ff4e6f8";
- sha256 = "1dlw34kaslyvnsrahf4rm76r2b7qqqn589i4mmhr23prl8xbz9z9";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/ece0a6185a36d52971c35a35f5aa76ddafec3ced/recipes/erc-yt";
- sha256 = "0yrwvahv4l2s1aavy6y6mjlrw8l11i00a249825ab5yaxrkzz7xc";
- name = "recipe";
- };
- packageRequires = [ dash ];
- meta = {
- homepage = "https://melpa.org/#/erc-yt";
- license = lib.licenses.free;
- };
- }) {};
ercn = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -27393,35 +14648,6 @@
license = lib.licenses.free;
};
}) {};
- ereader = callPackage ({ dash
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , s
- , xml-plus }:
- melpaBuild {
- pname = "ereader";
- ename = "ereader";
- version = "20170809.2201";
- src = fetchFromGitHub {
- owner = "bddean";
- repo = "emacs-ereader";
- rev = "f3bbd3f13195f8fba3e3c880aab0e4c60430dcf3";
- sha256 = "18yqqqxsivnq2m8mxz7ifp0bfmn3q9m11w3abryxg2snh4vb5sy6";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/ereader";
- sha256 = "1ai27lyb9xcmjjcnppzzhb6ilsvq9d9g9z7h79lp7axq761vind4";
- name = "recipe";
- };
- packageRequires = [ dash emacs s xml-plus ];
- meta = {
- homepage = "https://melpa.org/#/ereader";
- license = lib.licenses.free;
- };
- }) {};
eredis = callPackage ({ dash
, fetchFromGitHub
, fetchurl
@@ -27502,33 +14728,6 @@
license = lib.licenses.free;
};
}) {};
- ergoemacs-status = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , mode-icons
- , powerline }:
- melpaBuild {
- pname = "ergoemacs-status";
- ename = "ergoemacs-status";
- version = "20160317.2238";
- src = fetchFromGitHub {
- owner = "ergoemacs";
- repo = "ergoemacs-status";
- rev = "d952cc2361adf6eb4d6af60950ad4ab699c81320";
- sha256 = "06pdwrhflpi5rkigqnr5h3jzv3dm1p9nydpvql9w33ixm6qhjj71";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/f4af9606cfe09cdd294fae6b4b1f477f7861fdb7/recipes/ergoemacs-status";
- sha256 = "065pw31s8dmqpag7zj40iv6dbl0qln7c65gcyp7pz9agg9rp6vbb";
- name = "recipe";
- };
- packageRequires = [ mode-icons powerline ];
- meta = {
- homepage = "https://melpa.org/#/ergoemacs-status";
- license = lib.licenses.free;
- };
- }) {};
erlang = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -27580,32 +14779,6 @@
license = lib.licenses.free;
};
}) {};
- eros = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "eros";
- ename = "eros";
- version = "20180414.2318";
- src = fetchFromGitHub {
- owner = "xiongtx";
- repo = "eros";
- rev = "dd8910279226259e100dab798b073a52f9b4233a";
- sha256 = "08chj3a0lw4ygi2sv7wj0i6ihfbi8jhylr8p92inif8b88r6wg3k";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/eros";
- sha256 = "0l79bn72x5m2lzglrwwngz3hax9pf8wv7ci86y5pkwaa8frxycww";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/eros";
- license = lib.licenses.free;
- };
- }) {};
ert-async = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -27631,31 +14804,6 @@
license = lib.licenses.free;
};
}) {};
- ert-expectations = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "ert-expectations";
- ename = "ert-expectations";
- version = "20121009.34";
- src = fetchFromGitHub {
- owner = "emacsorphanage";
- repo = "ert-expectations";
- rev = "aed70e002c4305b66aed7f6d0d48e9addd2dc1e6";
- sha256 = "0qgi3rj49k0hz4azg7ghcj6385p5s9gakqjhrjnhih7dxvihcgxi";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/84f836338818946a6bb31d35d6ae959571128ed5/recipes/ert-expectations";
- sha256 = "07mp0azb6wsa1z4s6q8jyh7dpzils0wh2bamfmxzy4gjqjwv8ncn";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/ert-expectations";
- license = lib.licenses.free;
- };
- }) {};
ert-junit = callPackage ({ emacs
, ert ? null
, fetchgit
@@ -27682,35 +14830,6 @@
license = lib.licenses.free;
};
}) {};
- ert-modeline = callPackage ({ dash
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , projectile
- , s }:
- melpaBuild {
- pname = "ert-modeline";
- ename = "ert-modeline";
- version = "20140115.215";
- src = fetchFromGitHub {
- owner = "chrisbarrett";
- repo = "ert-modeline";
- rev = "7c6340834387f749519616f9601821cb73fd657b";
- sha256 = "08gk47fwd4hvl6gby3nyg3f9wq2l6phkkmq6yl04ff1qbjmvnx0p";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/3b3a301889d6eea2470017519b080519efbe1bec/recipes/ert-modeline";
- sha256 = "06pc50q9ggin20cbfafxd53x35ac3kh85dap0nbws7514f473m7b";
- name = "recipe";
- };
- packageRequires = [ dash emacs projectile s ];
- meta = {
- homepage = "https://melpa.org/#/ert-modeline";
- license = lib.licenses.free;
- };
- }) {};
ert-runner = callPackage ({ ansi
, commander
, dash
@@ -27876,31 +14995,6 @@
license = lib.licenses.free;
};
}) {};
- esh-buf-stack = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "esh-buf-stack";
- ename = "esh-buf-stack";
- version = "20140107.218";
- src = fetchFromGitHub {
- owner = "tom-tan";
- repo = "esh-buf-stack";
- rev = "ea5da9ce8566ffe2e013f0e588701cb0825258b6";
- sha256 = "1fllnc9awj24781h527n7b83i232i54ad5a9pczqvdr5s4kn4vfs";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/61e8f75aa0d5446c61aadc7ac22371e44a3761b8/recipes/esh-buf-stack";
- sha256 = "0zmwlsm98m9vbjk9mldfj2nf6cip7mlvb71j33ddix76yqggp4qg";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/esh-buf-stack";
- license = lib.licenses.free;
- };
- }) {};
esh-help = callPackage ({ dash
, fetchFromGitHub
, fetchurl
@@ -28005,58 +15099,6 @@
license = lib.licenses.free;
};
}) {};
- eshell-fixed-prompt = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , s }:
- melpaBuild {
- pname = "eshell-fixed-prompt";
- ename = "eshell-fixed-prompt";
- version = "20190111.1435";
- src = fetchFromGitHub {
- owner = "mallt";
- repo = "eshell-fixed-prompt-mode";
- rev = "2c860029354bf1f69edc1f12e4a0d9aeb9054f5d";
- sha256 = "1j1m661rgbfr04357wq2a7vhm04s3vrbw4r6y1k2cx2ap9amkb25";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/eshell-fixed-prompt";
- sha256 = "0mhrfxf19p4qqnlnnfc0z70324c7qiiv63riaz4cn5jj1ps3v0iy";
- name = "recipe";
- };
- packageRequires = [ emacs s ];
- meta = {
- homepage = "https://melpa.org/#/eshell-fixed-prompt";
- license = lib.licenses.free;
- };
- }) {};
- eshell-fringe-status = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "eshell-fringe-status";
- ename = "eshell-fringe-status";
- version = "20170117.1516";
- src = fetchFromGitHub {
- owner = "ryuslash";
- repo = "eshell-fringe-status";
- rev = "adc6997c68e39c0d52a2af1b2fd5cf2057783797";
- sha256 = "1cwn4cvjjd4l5kk7s6cxzafjmdv3s7k78i73fvscmsnpwx9p2wj0";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/9efd9fefab5d449b9f70d9f548aadfea52d66bc0/recipes/eshell-fringe-status";
- sha256 = "1vavidnijxzhr4v39q4bxi645vsfcj6vp0wnlhznpxagshr950lg";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/eshell-fringe-status";
- license = lib.licenses.free;
- };
- }) {};
eshell-git-prompt = callPackage ({ cl-lib ? null
, dash
, emacs
@@ -28214,58 +15256,6 @@
license = lib.licenses.free;
};
}) {};
- esonify = callPackage ({ cl-lib ? null
- , deferred
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "esonify";
- ename = "esonify";
- version = "20190110.821";
- src = fetchFromGitHub {
- owner = "oflatt";
- repo = "esonify";
- rev = "bdc79d4ab2e3c449b5bef46e5cabc552beeed5c6";
- sha256 = "03xl6a49pg3y1g3dl7fglrn956ynzj2vlviwlv08ngflvbn5shai";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/8a05dadbf515af6202d1cb96d4fdceb07bb7a6da/recipes/esonify";
- sha256 = "0facvhl6p4v1h3magvp6lzahdzbgg7a15hbj9rgfncvfzfjzlq5a";
- name = "recipe";
- };
- packageRequires = [ cl-lib deferred ];
- meta = {
- homepage = "https://melpa.org/#/esonify";
- license = lib.licenses.free;
- };
- }) {};
- espresso-theme = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "espresso-theme";
- ename = "espresso-theme";
- version = "20181025.126";
- src = fetchFromGitHub {
- owner = "dgutov";
- repo = "espresso-theme";
- rev = "d2fa034eb833bf37cc6842017070725e0da9b046";
- sha256 = "0fds36w6l2aaa88wjkd2ck561i0wwpxgz5ldadhbi5lvfwj9386m";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/e608f40d00a3b2a80a6997da00e7d04f76d8ef0d/recipes/espresso-theme";
- sha256 = "1njc1ppi1jvb3mdckr19kbk7g0a3dx8j4d6j101ygszzrr24ycmv";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/espresso-theme";
- license = lib.licenses.free;
- };
- }) {};
espuds = callPackage ({ dash
, f
, fetchFromGitHub
@@ -28294,85 +15284,6 @@
license = lib.licenses.free;
};
}) {};
- espy = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "espy";
- ename = "espy";
- version = "20180929.902";
- src = fetchFromGitHub {
- owner = "walseb";
- repo = "espy";
- rev = "e5dadc232ad985ede2b7d68a09be4c8014ded56a";
- sha256 = "08crl0q7xc8gx245cfylb3j5xncqviq402gizhv0lb6rs0bpsc4y";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/184718ee62f25b2bfed7d5126e02bce3290c50c4/recipes/espy";
- sha256 = "1icyiygw7brn4lrp28szmk4kk94n5q1zlrzrl6z7y0hdhdsjflgg";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/espy";
- license = lib.licenses.free;
- };
- }) {};
- esqlite = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , pcsv }:
- melpaBuild {
- pname = "esqlite";
- ename = "esqlite";
- version = "20151206.406";
- src = fetchFromGitHub {
- owner = "mhayashi1120";
- repo = "Emacs-esqlite";
- rev = "fae9826cbc255b0f0686a801288f1441bda5f631";
- sha256 = "0ag444hfrpdrf3lnaz7l2plj392xgh7a2080421z3g0alc74m8h3";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/bbec16cd1682ac15a81304f351f9c4e6b3b70fa9/recipes/esqlite";
- sha256 = "1dny5qjzl9gaj90ihzbhliwk0n0x7jz333hzf6gaw7wsjmx91wlh";
- name = "recipe";
- };
- packageRequires = [ pcsv ];
- meta = {
- homepage = "https://melpa.org/#/esqlite";
- license = lib.licenses.free;
- };
- }) {};
- esqlite-helm = callPackage ({ esqlite
- , fetchFromGitHub
- , fetchurl
- , helm
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "esqlite-helm";
- ename = "esqlite-helm";
- version = "20151116.50";
- src = fetchFromGitHub {
- owner = "mhayashi1120";
- repo = "Emacs-esqlite";
- rev = "84d5b16198f30949c544affba751ee0d58a000d9";
- sha256 = "0z92205ryab1j2pih89pj82cdgdsz0ddp7wwia8ivxvjpd3jp751";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/bbec16cd1682ac15a81304f351f9c4e6b3b70fa9/recipes/esqlite-helm";
- sha256 = "00y2nwyx13xlny40afczr31lvbpnw1cgmj5wc3iycyznizg5kvhq";
- name = "recipe";
- };
- packageRequires = [ esqlite helm ];
- meta = {
- homepage = "https://melpa.org/#/esqlite-helm";
- license = lib.licenses.free;
- };
- }) {};
ess = callPackage ({ fetchFromGitHub
, fetchurl
, julia-mode
@@ -28480,34 +15391,6 @@
license = lib.licenses.free;
};
}) {};
- ess-view = callPackage ({ ess
- , f
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , s }:
- melpaBuild {
- pname = "ess-view";
- ename = "ess-view";
- version = "20181001.1030";
- src = fetchFromGitHub {
- owner = "GioBo";
- repo = "ess-view";
- rev = "d4e5a340b7bcc58c434867b97923094bd0680283";
- sha256 = "1yzki5f2k7gmj4m0871h4h46zalv2x71rbpa6glkfx7bm9kyc193";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/96960a8799138187b748a47ac007dc25d739fe10/recipes/ess-view";
- sha256 = "1zx5sbxmbs6ya349ic7yvnx56v3km2cb27p8kan5ygisnwwq2wc4";
- name = "recipe";
- };
- packageRequires = [ ess f s ];
- meta = {
- homepage = "https://melpa.org/#/ess-view";
- license = lib.licenses.free;
- };
- }) {};
esup = callPackage ({ cl-lib ? null
, emacs
, fetchFromGitHub
@@ -28560,34 +15443,6 @@
license = lib.licenses.free;
};
}) {};
- etable = callPackage ({ dash
- , emacs
- , fetchFromGitHub
- , fetchurl
- , interval-list
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "etable";
- ename = "etable";
- version = "20161028.1309";
- src = fetchFromGitHub {
- owner = "Fuco1";
- repo = "ETable";
- rev = "d502141f0c69bf95256ba5cb9cd15350c7e942d2";
- sha256 = "0k0g58qzkkzall715k0864v3b7p5jnfwxqgmkj087x34frcf388k";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/afee0fed80f4fa444116b12653c034d760f5f1fb/recipes/etable";
- sha256 = "0m4h24mmhp680wfhb90im228mrcyxapzyi4kla8xdmss83gc0c32";
- name = "recipe";
- };
- packageRequires = [ dash emacs interval-list ];
- meta = {
- homepage = "https://melpa.org/#/etable";
- license = lib.licenses.free;
- };
- }) {};
eterm-256color = callPackage ({ emacs
, f
, fetchFromGitHub
@@ -28641,60 +15496,6 @@
license = lib.licenses.free;
};
}) {};
- euslisp-mode = callPackage ({ emacs
- , exec-path-from-shell
- , fetchFromGitHub
- , fetchurl
- , helm-ag
- , lib
- , melpaBuild
- , s }:
- melpaBuild {
- pname = "euslisp-mode";
- ename = "euslisp-mode";
- version = "20170830.1229";
- src = fetchFromGitHub {
- owner = "iory";
- repo = "euslisp-mode";
- rev = "db62a2d148482317794727982576494596365a55";
- sha256 = "187ij4s7mzppgmh0ifny70mw8w31nq86rhsrmnflz26iywnkp8x2";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/b04fffe5e52f26e92930a112a64531228f94e340/recipes/euslisp-mode";
- sha256 = "0v92lry9ynkvsvx060njaw1j5lj9sb1i3srs2hfqqwyqni5ldkri";
- name = "recipe";
- };
- packageRequires = [ emacs exec-path-from-shell helm-ag s ];
- meta = {
- homepage = "https://melpa.org/#/euslisp-mode";
- license = lib.licenses.free;
- };
- }) {};
- eval-expr = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "eval-expr";
- ename = "eval-expr";
- version = "20120618.2347";
- src = fetchFromGitHub {
- owner = "jwiegley";
- repo = "eval-expr";
- rev = "a0e69e83de41df8dbccefc1962ab4f02206a3328";
- sha256 = "08zw3qrhqmnv2wxmbf74svk2cx5by4831kyw6rx13imkc4x8kngx";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/f56c5312cc8ffc1a8b31fc342e8e2b8827eff846/recipes/eval-expr";
- sha256 = "0zkphbx7ph4p7qkfxqyr6p8420j9qkvx5wghd1sza6y0kb456872";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/eval-expr";
- license = lib.licenses.free;
- };
- }) {};
eval-in-repl = callPackage ({ ace-window
, dash
, fetchFromGitHub
@@ -28775,61 +15576,6 @@
license = lib.licenses.free;
};
}) {};
- evalator-clojure = callPackage ({ cider
- , evalator
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "evalator-clojure";
- ename = "evalator-clojure";
- version = "20160208.1348";
- src = fetchFromGitHub {
- owner = "seanirby";
- repo = "evalator-clojure";
- rev = "caa4e0a137bdfada86593128a654e16aa617ad50";
- sha256 = "1q5s1ffmfh5dby92853xm8kjhgjfd5vbvcg1xbf8lswc1i41k7n7";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5f57089f3e5c8342092128d44451b338af8a769f/recipes/evalator-clojure";
- sha256 = "10mxlgirnsq3z7l1izrf2v1l1yr4sbdjsaszz7llqv6l80y4bji3";
- name = "recipe";
- };
- packageRequires = [ cider evalator ];
- meta = {
- homepage = "https://melpa.org/#/evalator-clojure";
- license = lib.licenses.free;
- };
- }) {};
- eve-mode = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , markdown-mode
- , melpaBuild
- , polymode }:
- melpaBuild {
- pname = "eve-mode";
- ename = "eve-mode";
- version = "20170822.1531";
- src = fetchFromGitHub {
- owner = "witheve";
- repo = "emacs-eve-mode";
- rev = "a4661114d9c18725691b76321d72167ca5a9070a";
- sha256 = "19s6cid42q0lm2w94a7f6sxvmy3zpjdj5r5dbwcxxp5n3qfs7nip";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/e0f197adfe64ef88d90d24dfd6532bf52a5bce0d/recipes/eve-mode";
- sha256 = "1ch50bm452g8k1xnqcbpmpwkmg8amzv7bq0hphk3y0kiqkwd1gdh";
- name = "recipe";
- };
- packageRequires = [ emacs markdown-mode polymode ];
- meta = {
- homepage = "https://melpa.org/#/eve-mode";
- license = lib.licenses.free;
- };
- }) {};
evil = callPackage ({ cl-lib ? null
, emacs
, fetchFromGitHub
@@ -28912,91 +15658,6 @@
license = lib.licenses.free;
};
}) {};
- evil-avy = callPackage ({ avy
- , cl-lib ? null
- , emacs
- , evil
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "evil-avy";
- ename = "evil-avy";
- version = "20150908.48";
- src = fetchFromGitHub {
- owner = "louy2";
- repo = "evil-avy";
- rev = "2dd955cc3ecaa7ddeb67b295298abdc6d16dd3a5";
- sha256 = "1q6znbnshk45mdglx519qlbfhb7g47qsm245i93ka4djsjy55j9l";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/f86bccc9f2190cfa5487cf8e9c9b7938774533ed/recipes/evil-avy";
- sha256 = "1hc96dd78yxgr8cs9sk9y1i5h1qnyk110vlb3wnlxv1hwn92qvrd";
- name = "recipe";
- };
- packageRequires = [ avy cl-lib emacs evil ];
- meta = {
- homepage = "https://melpa.org/#/evil-avy";
- license = lib.licenses.free;
- };
- }) {};
- evil-better-visual-line = callPackage ({ evil
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "evil-better-visual-line";
- ename = "evil-better-visual-line";
- version = "20181026.328";
- src = fetchFromGitHub {
- owner = "YourFin";
- repo = "evil-better-visual-line";
- rev = "05e8270ae62e71b652513407c561b136c258f04c";
- sha256 = "1q7jsmk301ncpn18g5qk02ypbxc9irfh30rxi9k2ab8p35j3ml4i";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/c46640394c29643eea4e59066bab9963db67b8d7/recipes/evil-better-visual-line";
- sha256 = "00l6gd66apf0gphlx5hk9lcl7rmj7ag8kf558psyzcyvhpmff2bq";
- name = "recipe";
- };
- packageRequires = [ evil ];
- meta = {
- homepage = "https://melpa.org/#/evil-better-visual-line";
- license = lib.licenses.free;
- };
- }) {};
- evil-cleverparens = callPackage ({ dash
- , emacs
- , evil
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , paredit
- , smartparens }:
- melpaBuild {
- pname = "evil-cleverparens";
- ename = "evil-cleverparens";
- version = "20170717.2113";
- src = fetchFromGitHub {
- owner = "luxbock";
- repo = "evil-cleverparens";
- rev = "9bce7cc5e2ab80adeafb0f1a579eb27bdb7a8d2f";
- sha256 = "1wplh9lk0cplkpik088lk5am5b8ks0rs8bp3b6wn0bn1r0l3jcxg";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/e3b3637d6527b16ea0d606fd87b01004be446b09/recipes/evil-cleverparens";
- sha256 = "10zkyaxy52ixh26hzm9v1y0gakcn5sdwz4ny8v1vcmjqjphnk799";
- name = "recipe";
- };
- packageRequires = [ dash emacs evil paredit smartparens ];
- meta = {
- homepage = "https://melpa.org/#/evil-cleverparens";
- license = lib.licenses.free;
- };
- }) {};
evil-colemak-basics = callPackage ({ emacs
, evil
, evil-snipe
@@ -29025,33 +15686,6 @@
license = lib.licenses.free;
};
}) {};
- evil-colemak-minimal = callPackage ({ emacs
- , evil
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "evil-colemak-minimal";
- ename = "evil-colemak-minimal";
- version = "20171006.617";
- src = fetchFromGitHub {
- owner = "bmallred";
- repo = "evil-colemak-minimal";
- rev = "6d98b6da60f414524a0d718f76024c26dce742b3";
- sha256 = "0pd05jq4qkw5xx7xqzxzx62fsm77vjz0ry9ayaqgqw5831rbp553";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/828c744062069027f19fe5f2f233179f9149dc16/recipes/evil-colemak-minimal";
- sha256 = "0qi5k17b9k227zz9binbrd22cwmlqxkay98by9yxcbyhl4hjhdyy";
- name = "recipe";
- };
- packageRequires = [ emacs evil ];
- meta = {
- homepage = "https://melpa.org/#/evil-colemak-minimal";
- license = lib.licenses.free;
- };
- }) {};
evil-collection = callPackage ({ cl-lib ? null
, emacs
, evil
@@ -29106,86 +15740,6 @@
license = lib.licenses.free;
};
}) {};
- evil-dvorak = callPackage ({ evil
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "evil-dvorak";
- ename = "evil-dvorak";
- version = "20160416.1141";
- src = fetchFromGitHub {
- owner = "jbranso";
- repo = "evil-dvorak";
- rev = "e7b80077d6f332452049eb3d7ea51f6c8fbf5947";
- sha256 = "1z8wl0ih3b8bahbglp5n1xjws583hkryl034b2a3p11ljq3g2ggl";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/69abca9985339c59ee0e2334cabf3c99e1ba1349/recipes/evil-dvorak";
- sha256 = "1iq9wzcb625vs942khja39db1js8r46vrdiqcm47yfji98g39gsn";
- name = "recipe";
- };
- packageRequires = [ evil ];
- meta = {
- homepage = "https://melpa.org/#/evil-dvorak";
- license = lib.licenses.free;
- };
- }) {};
- evil-easymotion = callPackage ({ avy
- , cl-lib ? null
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "evil-easymotion";
- ename = "evil-easymotion";
- version = "20180113.2254";
- src = fetchFromGitHub {
- owner = "PythonNut";
- repo = "evil-easymotion";
- rev = "79c13ed3bce018ac09d358e642e5bd7025e93603";
- sha256 = "0496dnbciq8gbivihas1y58gwd4nbfz767rr98zpwgkz8l2jvy73";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/e67955ead0b9d69acab40d66d4e0b821229d635c/recipes/evil-easymotion";
- sha256 = "0zixgdhc228y6yqr044cbyls0pihzacqsgvybhhar916p4h8izgv";
- name = "recipe";
- };
- packageRequires = [ avy cl-lib emacs ];
- meta = {
- homepage = "https://melpa.org/#/evil-easymotion";
- license = lib.licenses.free;
- };
- }) {};
- evil-ediff = callPackage ({ evil
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "evil-ediff";
- ename = "evil-ediff";
- version = "20170724.1223";
- src = fetchFromGitHub {
- owner = "emacs-evil";
- repo = "evil-ediff";
- rev = "67b0e69f65c196eff5b39dacb7a9ec05bb919c74";
- sha256 = "0f8g07fyzyc8pdwizyj62v0dy65ap885asph83529y0j8wnni8ps";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/b3eff8cd4bedff3e2111d96743d94be5053826f1/recipes/evil-ediff";
- sha256 = "0yglhxm670996hd7305q38y5f47y87n75hh0q7qlm2vra2m2wa5s";
- name = "recipe";
- };
- packageRequires = [ evil ];
- meta = {
- homepage = "https://melpa.org/#/evil-ediff";
- license = lib.licenses.free;
- };
- }) {};
evil-embrace = callPackage ({ emacs
, embrace
, evil-surround
@@ -29242,251 +15796,6 @@
license = lib.licenses.free;
};
}) {};
- evil-ex-fasd = callPackage ({ emacs
- , evil
- , fasd
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "evil-ex-fasd";
- ename = "evil-ex-fasd";
- version = "20180902.2312";
- src = fetchFromGitHub {
- owner = "yqrashawn";
- repo = "evil-ex-fasd";
- rev = "ed8fbbe23a8a268d9dcbf1a6132e928ba2c655c5";
- sha256 = "0fr57nlg7m65gzhnrwnqi5bgy4vzl0l0mxk63sr3561r8fnm8hbc";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/8ebdddebb0272765ebbf72073da8c2158a05f624/recipes/evil-ex-fasd";
- sha256 = "1zljsrpbsimldpc1wviw87vgm6941zz4wy8vhpplwkfbnywiwnp7";
- name = "recipe";
- };
- packageRequires = [ emacs evil fasd ];
- meta = {
- homepage = "https://melpa.org/#/evil-ex-fasd";
- license = lib.licenses.free;
- };
- }) {};
- evil-ex-shell-command = callPackage ({ emacs
- , evil
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "evil-ex-shell-command";
- ename = "evil-ex-shell-command";
- version = "20181225.1826";
- src = fetchFromGitHub {
- owner = "yqrashawn";
- repo = "evil-ex-shell-command";
- rev = "a6ca6d27c07f6a0807abfb5b8f8865f1d17f54aa";
- sha256 = "0jx2cj6p8wag7aphbgf3ij5v71prxkbxpfia8nmcpmrpvjqpsb74";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/6d4205a35cc0c4518ab1424d91bbc627e8cdae42/recipes/evil-ex-shell-command";
- sha256 = "1lbk31l7g6n6lqm8rvsfqbagqvhkp0s2v6wz8x4fnrjj0ymd4syf";
- name = "recipe";
- };
- packageRequires = [ emacs evil ];
- meta = {
- homepage = "https://melpa.org/#/evil-ex-shell-command";
- license = lib.licenses.free;
- };
- }) {};
- evil-exchange = callPackage ({ cl-lib ? null
- , evil
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "evil-exchange";
- ename = "evil-exchange";
- version = "20170510.1959";
- src = fetchFromGitHub {
- owner = "Dewdrops";
- repo = "evil-exchange";
- rev = "47691537815150715e64e6f6ec79be7746c96120";
- sha256 = "0bjpn4yqig17ddym6wqq5fm1b294q74hzcbj9a6gs97fqiwf88xa";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/9b06397c032d24a8da4074ad97cdb30d0c468e20/recipes/evil-exchange";
- sha256 = "1mvw7w23yfbfmhzj6wimslbryb0gppryw24ac0wh4fzl9rdcma4r";
- name = "recipe";
- };
- packageRequires = [ cl-lib evil ];
- meta = {
- homepage = "https://melpa.org/#/evil-exchange";
- license = lib.licenses.free;
- };
- }) {};
- evil-expat = callPackage ({ emacs
- , evil
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "evil-expat";
- ename = "evil-expat";
- version = "20190111.2140";
- src = fetchFromGitHub {
- owner = "edkolev";
- repo = "evil-expat";
- rev = "4c344ea19b789002d759a202ffbf594730d2c59a";
- sha256 = "16v7fnldxag6l1lsnrnhdjkga9qi78lbdfbb82k6pmv04991mbkr";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/f08f6396e66479eb9510727968c5bb01ac239476/recipes/evil-expat";
- sha256 = "03niji6wymhlfkvdg90gasccs4683djxcj925c8k0vdgmfr8sx32";
- name = "recipe";
- };
- packageRequires = [ emacs evil ];
- meta = {
- homepage = "https://melpa.org/#/evil-expat";
- license = lib.licenses.free;
- };
- }) {};
- evil-extra-operator = callPackage ({ evil
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "evil-extra-operator";
- ename = "evil-extra-operator";
- version = "20161212.2003";
- src = fetchFromGitHub {
- owner = "Dewdrops";
- repo = "evil-extra-operator";
- rev = "e16a9b36f9901254da9af8a73871061616410fc3";
- sha256 = "116srvfck3b244shxm9cmw3yvpprjgr840fvcv6jwwpfaphafxw4";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/fc0b157c3adf8a2899c4dd2ce98e8a81e4f403a3/recipes/evil-extra-operator";
- sha256 = "066apin0yrjx7zr007p2h9p2nq58lz7qikzjzg0spqkb8vy7vkc5";
- name = "recipe";
- };
- packageRequires = [ evil ];
- meta = {
- homepage = "https://melpa.org/#/evil-extra-operator";
- license = lib.licenses.free;
- };
- }) {};
- evil-find-char-pinyin = callPackage ({ evil
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , pinyinlib }:
- melpaBuild {
- pname = "evil-find-char-pinyin";
- ename = "evil-find-char-pinyin";
- version = "20160514.1341";
- src = fetchFromGitHub {
- owner = "cute-jumper";
- repo = "evil-find-char-pinyin";
- rev = "04e277946d658f1a73c68dcbbadea9c21097a31c";
- sha256 = "1bsy2bynzxr1ibyidv2r21xnfnxbzr0xh5m3h05s5igbmajxr12d";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/8755d2fca519f23f11c5cbb53443a2ad4340220e/recipes/evil-find-char-pinyin";
- sha256 = "0n52ijdf5hy7mn0rab4493zs2nrf7r1qkmvf0algqaj7bfjscs79";
- name = "recipe";
- };
- packageRequires = [ evil pinyinlib ];
- meta = {
- homepage = "https://melpa.org/#/evil-find-char-pinyin";
- license = lib.licenses.free;
- };
- }) {};
- evil-fringe-mark = callPackage ({ emacs
- , evil
- , fetchFromGitHub
- , fetchurl
- , fringe-helper
- , goto-chg
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "evil-fringe-mark";
- ename = "evil-fringe-mark";
- version = "20190319.2153";
- src = fetchFromGitHub {
- owner = "Andrew-William-Smith";
- repo = "evil-fringe-mark";
- rev = "a1689fddb7ee79aaa720a77aada1208b8afd5c20";
- sha256 = "0pf8bl7bmcn1l0dlxkgbgwb1n2fxpzxwcr4jf06gzyrrmmwah526";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/70dcc07c389d5454de64fb08cd666d489d6d5483/recipes/evil-fringe-mark";
- sha256 = "1ahlbp31ll24vzah4bv1xx58gn8y8fsjb0n9a135zwb3fjla9drb";
- name = "recipe";
- };
- packageRequires = [ emacs evil fringe-helper goto-chg ];
- meta = {
- homepage = "https://melpa.org/#/evil-fringe-mark";
- license = lib.licenses.free;
- };
- }) {};
- evil-god-state = callPackage ({ evil
- , fetchFromGitHub
- , fetchurl
- , god-mode
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "evil-god-state";
- ename = "evil-god-state";
- version = "20141116.1855";
- src = fetchFromGitHub {
- owner = "gridaphobe";
- repo = "evil-god-state";
- rev = "3d44197dc0a1fb40e7b7ff8717f8a8c339ce1d40";
- sha256 = "1cv24qnxxf6n1grf4n5969v8y9xll5zb9mbfdnq9iavdvhnndk2h";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/46b8586e9a821efb67539155f783a32867084bfa/recipes/evil-god-state";
- sha256 = "1g547d58zf11qw0zz3fk5kmrzmfx1rhawyh5d2h8bll8hwygnrxf";
- name = "recipe";
- };
- packageRequires = [ evil god-mode ];
- meta = {
- homepage = "https://melpa.org/#/evil-god-state";
- license = lib.licenses.free;
- };
- }) {};
- evil-goggles = callPackage ({ emacs
- , evil
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "evil-goggles";
- ename = "evil-goggles";
- version = "20181123.1146";
- src = fetchFromGitHub {
- owner = "edkolev";
- repo = "evil-goggles";
- rev = "78454a7e8bd609edf0d93cb0a7f9ed576dd33546";
- sha256 = "1yn72wmrda670h0bz3gdqh6k44ja60wkk9f4hijh9w1hw0vazk20";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/811b1261705b4c525e165fa9ee23ae191727a623/recipes/evil-goggles";
- sha256 = "151xvawyhcjp98skaif08wbxqaw602f51zgwm604hp25a111qmnq";
- name = "recipe";
- };
- packageRequires = [ emacs evil ];
- meta = {
- homepage = "https://melpa.org/#/evil-goggles";
- license = lib.licenses.free;
- };
- }) {};
evil-iedit-state = callPackage ({ evil
, fetchFromGitHub
, fetchurl
@@ -29514,59 +15823,6 @@
license = lib.licenses.free;
};
}) {};
- evil-indent-plus = callPackage ({ cl-lib ? null
- , evil
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "evil-indent-plus";
- ename = "evil-indent-plus";
- version = "20151109.1106";
- src = fetchFromGitHub {
- owner = "TheBB";
- repo = "evil-indent-plus";
- rev = "33a8bcac5f90ddee054e64d60c2b68c98c269ffc";
- sha256 = "0v94kn99z6v4aigjgk3l6b6x22bv9fighisbm23b0861kwcns98f";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/992ea3d372fa3569ad9f838aa2818eaee8b8033a/recipes/evil-indent-plus";
- sha256 = "15vnvch0qsaram22d44k617bqhr9rrf8qc86sf20yvdyy3gi5j12";
- name = "recipe";
- };
- packageRequires = [ cl-lib evil ];
- meta = {
- homepage = "https://melpa.org/#/evil-indent-plus";
- license = lib.licenses.free;
- };
- }) {};
- evil-indent-textobject = callPackage ({ evil
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "evil-indent-textobject";
- ename = "evil-indent-textobject";
- version = "20130831.1519";
- src = fetchFromGitHub {
- owner = "cofi";
- repo = "evil-indent-textobject";
- rev = "70a1154a531b7cfdbb9a31d6922482791e20a3a7";
- sha256 = "0nghisnc49ivh56mddfdlcbqv3y2vqzjvkpgwv3zp80ga6ghvdmz";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/63cfc9c2962780dd5d27da670d5540a0441e7ca2/recipes/evil-indent-textobject";
- sha256 = "172a3krid5lrx1w9xcifkhjnvlxg1nbz4w102d99d0grr9465r09";
- name = "recipe";
- };
- packageRequires = [ evil ];
- meta = {
- homepage = "https://melpa.org/#/evil-indent-textobject";
- license = lib.licenses.free;
- };
- }) {};
evil-leader = callPackage ({ evil
, fetchFromGitHub
, fetchurl
@@ -29593,61 +15849,6 @@
license = lib.licenses.free;
};
}) {};
- evil-ledger = callPackage ({ emacs
- , evil
- , fetchFromGitHub
- , fetchurl
- , ledger-mode
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "evil-ledger";
- ename = "evil-ledger";
- version = "20180802.912";
- src = fetchFromGitHub {
- owner = "atheriel";
- repo = "evil-ledger";
- rev = "7a9f9f5d39c42fffdba8004f8982642351f2b233";
- sha256 = "010r1qn9l3clqqrlia0y25bqjbrixvf8i409v10yxqb949jvw1vk";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/500e99a1b92f0a0c144f843cd7645872034d9fbb/recipes/evil-ledger";
- sha256 = "13idy2kbzhckzfwrjnzjrf8h2881w3v8pmhlcj26xcyf4ch0dq9r";
- name = "recipe";
- };
- packageRequires = [ emacs evil ledger-mode ];
- meta = {
- homepage = "https://melpa.org/#/evil-ledger";
- license = lib.licenses.free;
- };
- }) {};
- evil-lion = callPackage ({ emacs
- , evil
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "evil-lion";
- ename = "evil-lion";
- version = "20170810.2314";
- src = fetchFromGitHub {
- owner = "edkolev";
- repo = "evil-lion";
- rev = "aaa3874ad54c31b4322ac5bbc63e331498b11d61";
- sha256 = "1aq3ip93sxk05gfgh2zw6zckmkir0viqaqz674fcmsd2rc2051zn";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/8a7a0691775afec6d2c7be3d6739b55bd1d2053d/recipes/evil-lion";
- sha256 = "1rwmpc5ifblb41c1yhhv26ayff4nk9iza7w0wb5ganny2r82fg2v";
- name = "recipe";
- };
- packageRequires = [ emacs evil ];
- meta = {
- homepage = "https://melpa.org/#/evil-lion";
- license = lib.licenses.free;
- };
- }) {};
evil-lisp-state = callPackage ({ bind-map
, evil
, fetchFromGitHub
@@ -29676,34 +15877,6 @@
license = lib.licenses.free;
};
}) {};
- evil-lispy = callPackage ({ evil
- , fetchFromGitHub
- , fetchurl
- , hydra
- , lib
- , lispy
- , melpaBuild }:
- melpaBuild {
- pname = "evil-lispy";
- ename = "evil-lispy";
- version = "20170304.259";
- src = fetchFromGitHub {
- owner = "sp3ctum";
- repo = "evil-lispy";
- rev = "040a7ee130c2403a1d6dac591b94b202bb48e186";
- sha256 = "008jar578yxa70nd69z4ldmknfmm1jar3wx71n3y2gnyghr759k1";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/377d43f3717b8e17c3adce886aaf3e579383ec64/recipes/evil-lispy";
- sha256 = "17z830b0x6lhmqkk07hfbrg63c7q7mpn4zz1ppjd1smv4mcqzyld";
- name = "recipe";
- };
- packageRequires = [ evil hydra lispy ];
- meta = {
- homepage = "https://melpa.org/#/evil-lispy";
- license = lib.licenses.free;
- };
- }) {};
evil-magit = callPackage ({ evil
, fetchFromGitHub
, fetchurl
@@ -29766,12 +15939,12 @@
melpaBuild {
pname = "evil-matchit";
ename = "evil-matchit";
- version = "2.2.9";
+ version = "2.3.0";
src = fetchFromGitHub {
owner = "redguardtoo";
repo = "evil-matchit";
- rev = "7d65b4167b1f0086c2b42b3aec805e47a0d355c4";
- sha256 = "12if45pxfndy3d7r4gd3zx4d3jk4d64fdmwkhc3y5zhqq9h9iy4c";
+ rev = "8fa4c1390d82036f9d51750eb6d3f054785cb396";
+ sha256 = "0y6q42hml7jgf060d83m7hf270h01858g5kxw12na9n4r4jjpdg1";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/aeab4a998bffbc784e8fb23927d348540baf9951/recipes/evil-matchit";
@@ -29812,63 +15985,6 @@
license = lib.licenses.free;
};
}) {};
- evil-mc-extras = callPackage ({ cl-lib ? null
- , emacs
- , evil
- , evil-mc
- , evil-numbers
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "evil-mc-extras";
- ename = "evil-mc-extras";
- version = "20170202.849";
- src = fetchFromGitHub {
- owner = "gabesoft";
- repo = "evil-mc-extras";
- rev = "ba3252ae129c3b79aeb70ec3d276cbda32b00421";
- sha256 = "0a7mn1z0db4xi8wclqp41hcbzh017q6pndxr9mrfxb67sqs601id";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/cd7c9aa0f4c17e7f27836e75a0b83c44a68ad744/recipes/evil-mc-extras";
- sha256 = "1px4akqaddqgfd03932d03d3rrvjr5lv5nc94xc448kqcbfn7yjk";
- name = "recipe";
- };
- packageRequires = [ cl-lib emacs evil evil-mc evil-numbers ];
- meta = {
- homepage = "https://melpa.org/#/evil-mc-extras";
- license = lib.licenses.free;
- };
- }) {};
- evil-mu4e = callPackage ({ emacs
- , evil
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "evil-mu4e";
- ename = "evil-mu4e";
- version = "20180613.339";
- src = fetchFromGitHub {
- owner = "JorisE";
- repo = "evil-mu4e";
- rev = "f4b387ccbd2c49f3bbb5401e93bfcc050ca128ef";
- sha256 = "1fiqx5q0jwh92dxj54wglw91a9pxyb58s8253pb7as9y1iwvyyhq";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/332f3f9c6dc106e58345abbc2d8fd99056d518c0/recipes/evil-mu4e";
- sha256 = "1ks4vnga7dkz27a7gza5hakzbcsiqgkq1ysc0lcx7g82ihpmrrcq";
- name = "recipe";
- };
- packageRequires = [ emacs evil ];
- meta = {
- homepage = "https://melpa.org/#/evil-mu4e";
- license = lib.licenses.free;
- };
- }) {};
evil-multiedit = callPackage ({ cl-lib ? null
, emacs
, evil
@@ -29924,31 +16040,6 @@
license = lib.licenses.free;
};
}) {};
- evil-nl-break-undo = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "evil-nl-break-undo";
- ename = "evil-nl-break-undo";
- version = "20181125.1254";
- src = fetchFromGitHub {
- owner = "VanLaser";
- repo = "evil-nl-break-undo";
- rev = "8acaecadd32937f6f1d8c3f8141fcee0de7d324e";
- sha256 = "1155bbp7mais3cf378zxnrxc5qg9qai7rcr7whd0ljf9i4aic0y9";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/a43ea989f52cebadc68c8e9c0f87f8f2e23b0974/recipes/evil-nl-break-undo";
- sha256 = "0q6b459z06h4l47b5lcxlqbksf8sbazkk569r3h2577zpc56prfn";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/evil-nl-break-undo";
- license = lib.licenses.free;
- };
- }) {};
evil-numbers = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -30028,62 +16119,6 @@
license = lib.licenses.free;
};
}) {};
- evil-paredit = callPackage ({ evil
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , paredit }:
- melpaBuild {
- pname = "evil-paredit";
- ename = "evil-paredit";
- version = "20150413.1348";
- src = fetchFromGitHub {
- owner = "roman";
- repo = "evil-paredit";
- rev = "e058fbdcf9dbf7ad6cc77f0172d7517ef233d55f";
- sha256 = "0b08y4spapl4g2292j3l4cr84gjlvm3rpma3gqld4yb1sxd7v78p";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/88db86e1351410bcff6f3ed80681946afcec9959/recipes/evil-paredit";
- sha256 = "0xvxxa3gjgsrv10a61y0591bn3gj8v1ff2wck8s0svwfl076gyfy";
- name = "recipe";
- };
- packageRequires = [ evil paredit ];
- meta = {
- homepage = "https://melpa.org/#/evil-paredit";
- license = lib.licenses.free;
- };
- }) {};
- evil-python-movement = callPackage ({ cl-lib ? null
- , dash
- , emacs
- , evil
- , fetchgit
- , fetchurl
- , lib
- , melpaBuild
- , s }:
- melpaBuild {
- pname = "evil-python-movement";
- ename = "evil-python-movement";
- version = "20180724.720";
- src = fetchgit {
- url = "https://bitbucket.org/FelipeLema/evil-python-movement.el";
- rev = "9936b3b7f8d96415d517c1f3604637889484a637";
- sha256 = "11ivb95ilsw3svpna9n07yf8s9q3w36ia6js2qv6wf0d0dp2xb9r";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/130e6d17735ff86b962859528d7e50869f683251/recipes/evil-python-movement";
- sha256 = "1qs0z93rpi9dz6hy64816afdr4k5gssyw2dhaxcn152ylg1yzkg3";
- name = "recipe";
- };
- packageRequires = [ cl-lib dash emacs evil s ];
- meta = {
- homepage = "https://melpa.org/#/evil-python-movement";
- license = lib.licenses.free;
- };
- }) {};
evil-quickscope = callPackage ({ evil
, fetchFromGitHub
, fetchurl
@@ -30110,33 +16145,6 @@
license = lib.licenses.free;
};
}) {};
- evil-rails = callPackage ({ evil
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , projectile-rails }:
- melpaBuild {
- pname = "evil-rails";
- ename = "evil-rails";
- version = "20160621.1558";
- src = fetchFromGitHub {
- owner = "antono";
- repo = "evil-rails";
- rev = "8cbf97719fdef17e98c593966d4753962e350bac";
- sha256 = "18m73hr0nqrf60vnrhbd4jjrfz8g6flzkdjixd8rzpxpmfx8vsv9";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/ff526fe800b0535067431f1ae78c4a4b5594b23d/recipes/evil-rails";
- sha256 = "0ah0nvzl30z19566kacyrsznsdm3cpij8n3bw3dfng7263rh60gj";
- name = "recipe";
- };
- packageRequires = [ evil projectile-rails ];
- meta = {
- homepage = "https://melpa.org/#/evil-rails";
- license = lib.licenses.free;
- };
- }) {};
evil-replace-with-char = callPackage ({ emacs
, evil
, fetchFromGitHub
@@ -30164,32 +16172,6 @@
license = lib.licenses.free;
};
}) {};
- evil-replace-with-register = callPackage ({ evil
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "evil-replace-with-register";
- ename = "evil-replace-with-register";
- version = "20170713.225";
- src = fetchFromGitHub {
- owner = "Dewdrops";
- repo = "evil-ReplaceWithRegister";
- rev = "91cc7bf21a94703c441cc9212214075b226b7f67";
- sha256 = "14rpn76qrf287s3y2agmddcxi27r226i53ixjvd694ss039g0r11";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/b1bd98aebefc13da5a129d1d3f1c8878e4a70654/recipes/evil-replace-with-register";
- sha256 = "0qyym6vwjs0aqf2p28rh96v30pgxg060pxyij0vrfj469wzmlrj9";
- name = "recipe";
- };
- packageRequires = [ evil ];
- meta = {
- homepage = "https://melpa.org/#/evil-replace-with-register";
- license = lib.licenses.free;
- };
- }) {};
evil-rsi = callPackage ({ evil
, fetchFromGitHub
, fetchurl
@@ -30404,59 +16386,6 @@
license = lib.licenses.free;
};
}) {};
- evil-tabs = callPackage ({ elscreen
- , evil
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "evil-tabs";
- ename = "evil-tabs";
- version = "20160217.720";
- src = fetchFromGitHub {
- owner = "krisajenkins";
- repo = "evil-tabs";
- rev = "53d3314a810017b6056ab6796aef671f5ea1c063";
- sha256 = "1qklx0j3fz3mp87v64yqbyyq5csfymbjfwvy2s4nk634wbnrra93";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/61eea3ae1c89163736b806aa8ca4f44d17daaba3/recipes/evil-tabs";
- sha256 = "0qgvpv5hcai8wmkv2fp6i2vdy7qp4gwidwpzz8j6vl9519x73s62";
- name = "recipe";
- };
- packageRequires = [ elscreen evil ];
- meta = {
- homepage = "https://melpa.org/#/evil-tabs";
- license = lib.licenses.free;
- };
- }) {};
- evil-terminal-cursor-changer = callPackage ({ evil
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "evil-terminal-cursor-changer";
- ename = "evil-terminal-cursor-changer";
- version = "20170401.142";
- src = fetchFromGitHub {
- owner = "7696122";
- repo = "evil-terminal-cursor-changer";
- rev = "b49ca4393d2f3cc6014174950059b36a5cb22949";
- sha256 = "1zra2h0x20whshbc4sfyj6w73jv6ak435mr9n6r6s7brqqqgpa36";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/evil-terminal-cursor-changer";
- sha256 = "16p9a1dybbqr8r717c5ssfd3p5392bqxxzqs4n0xc7v7g8v1m0cd";
- name = "recipe";
- };
- packageRequires = [ evil ];
- meta = {
- homepage = "https://melpa.org/#/evil-terminal-cursor-changer";
- license = lib.licenses.free;
- };
- }) {};
evil-test-helpers = callPackage ({ evil
, fetchFromGitHub
, fetchurl
@@ -30537,115 +16466,6 @@
license = lib.licenses.free;
};
}) {};
- evil-textobj-column = callPackage ({ emacs
- , evil
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , names }:
- melpaBuild {
- pname = "evil-textobj-column";
- ename = "evil-textobj-column";
- version = "20170905.1205";
- src = fetchFromGitHub {
- owner = "noctuid";
- repo = "evil-textobj-column";
- rev = "835d7036d0bc9a6e44fc9b7c54ccf2a7c01428cd";
- sha256 = "0g9d62sgcpzvhbrdk4hf3phphfss74mjz6xv4wd9895rzjsziwkf";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/de7d6dc0d9c42a89be2959d015efa30960df2de7/recipes/evil-textobj-column";
- sha256 = "13q3nawx05rn3k6kzq1889vxjznr454cib96pc9lmrq7h65lym2h";
- name = "recipe";
- };
- packageRequires = [ emacs evil names ];
- meta = {
- homepage = "https://melpa.org/#/evil-textobj-column";
- license = lib.licenses.free;
- };
- }) {};
- evil-textobj-entire = callPackage ({ emacs
- , evil
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "evil-textobj-entire";
- ename = "evil-textobj-entire";
- version = "20150422.554";
- src = fetchFromGitHub {
- owner = "supermomonga";
- repo = "evil-textobj-entire";
- rev = "5b3a98f3a69edc3a788f539f6ffef4a0ef5e853d";
- sha256 = "0m3krfmc9llpywr0lbya36b2jbnzx1pylvhj0p1ss5rh735m00jy";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/e1da0063a17d53f30e041e08161ad8fbc9942270/recipes/evil-textobj-entire";
- sha256 = "0hkdnkv03b31330pnkijhhbyw00m7bxfvs3cgzfazsvvcsha4gmi";
- name = "recipe";
- };
- packageRequires = [ emacs evil ];
- meta = {
- homepage = "https://melpa.org/#/evil-textobj-entire";
- license = lib.licenses.free;
- };
- }) {};
- evil-textobj-line = callPackage ({ evil
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "evil-textobj-line";
- ename = "evil-textobj-line";
- version = "20150729.822";
- src = fetchFromGitHub {
- owner = "syohex";
- repo = "evil-textobj-line";
- rev = "0209f9b84c7e1e1c42e346cdb8c0e36619471e5f";
- sha256 = "0ln72zfrzn1bnv40kyzjchmfv3dgd2wm596lxacd2kygcx4a4gky";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/24bf766525ffdaded519ac9f78ae89d8ab5108ef/recipes/evil-textobj-line";
- sha256 = "158w524qzj0f03ihid2fisxyf1g7vwpv3ckfkzi7c2l549jnsdsa";
- name = "recipe";
- };
- packageRequires = [ evil ];
- meta = {
- homepage = "https://melpa.org/#/evil-textobj-line";
- license = lib.licenses.free;
- };
- }) {};
- evil-textobj-syntax = callPackage ({ emacs
- , evil
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , names }:
- melpaBuild {
- pname = "evil-textobj-syntax";
- ename = "evil-textobj-syntax";
- version = "20181210.413";
- src = fetchFromGitHub {
- owner = "laishulu";
- repo = "evil-textobj-syntax";
- rev = "2d9ba8c75c754b409aea7469f46a5cfa52a872f3";
- sha256 = "031p5i3274dazp7rz6m5y38shfgszm1clmkcf58qfqlvy978ammc";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/0dba37e5a2ba5ef1f397b37d6845acdc4872e5f2/recipes/evil-textobj-syntax";
- sha256 = "0d0fg71xmbqhx91ljnkxmakcc0qn3341wjjmzax33qilz5syp3m9";
- name = "recipe";
- };
- packageRequires = [ emacs evil names ];
- meta = {
- homepage = "https://melpa.org/#/evil-textobj-syntax";
- license = lib.licenses.free;
- };
- }) {};
evil-tutor = callPackage ({ evil
, fetchFromGitHub
, fetchurl
@@ -30672,61 +16492,6 @@
license = lib.licenses.free;
};
}) {};
- evil-tutor-ja = callPackage ({ evil
- , evil-tutor
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "evil-tutor-ja";
- ename = "evil-tutor-ja";
- version = "20160916.1832";
- src = fetchFromGitHub {
- owner = "kenjimyzk";
- repo = "evil-tutor-ja";
- rev = "06b9ad853a15ce6f2c53c2cf379b9ff358369f2d";
- sha256 = "1cazqdiri2b61fxnkhgksqxp0gb41wzcq8275n779rindkwaf2zk";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/2c98605fd21b38aaa200c6a0ec4c18f8575b0d7a/recipes/evil-tutor-ja";
- sha256 = "1yd8aij9q1jdmb387f1zjiq5mf68jvbgbyp5b49hmag4hw5h7vm2";
- name = "recipe";
- };
- packageRequires = [ evil evil-tutor ];
- meta = {
- homepage = "https://melpa.org/#/evil-tutor-ja";
- license = lib.licenses.free;
- };
- }) {};
- evil-vimish-fold = callPackage ({ emacs
- , evil
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , vimish-fold }:
- melpaBuild {
- pname = "evil-vimish-fold";
- ename = "evil-vimish-fold";
- version = "20171030.451";
- src = fetchFromGitHub {
- owner = "alexmurray";
- repo = "evil-vimish-fold";
- rev = "4db872d12274fdddf7c6e9d01cf68cbad9cfcf15";
- sha256 = "05phnswbk2r7hdwawzkw6anhkfss9ig8sy469s4vsrqf7cky4gmn";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/fcd51e24f88ebbbd3fddfc7c6f3b667d5104cf2b/recipes/evil-vimish-fold";
- sha256 = "01wp4h97hjyzbpd7iighjj26m79499wp5pn8m4pa7v59f6r3sdk6";
- name = "recipe";
- };
- packageRequires = [ emacs evil vimish-fold ];
- meta = {
- homepage = "https://melpa.org/#/evil-vimish-fold";
- license = lib.licenses.free;
- };
- }) {};
evil-visual-mark-mode = callPackage ({ dash
, evil
, fetchFromGitHub
@@ -30833,31 +16598,6 @@
license = lib.licenses.free;
};
}) {};
- ewmctrl = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "ewmctrl";
- ename = "ewmctrl";
- version = "20170921.1917";
- src = fetchFromGitHub {
- owner = "flexibeast";
- repo = "ewmctrl";
- rev = "3d0217c4d6cdb5c308b6cb4293574f470d4faacf";
- sha256 = "0ilwvx0qryv3v6xf0gxqwnfm6pf96gxap8h9g3f6z6lk9ff4n1wi";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/b2a7679f0961b171bf23080e628ae80f50c446e4/recipes/ewmctrl";
- sha256 = "1w60pb7szai1kh06jd3qvgpzq3z1ci4a77ysnpqjfk326s6zv7hl";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/ewmctrl";
- license = lib.licenses.free;
- };
- }) {};
eww-lnum = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -30960,57 +16700,6 @@
license = lib.licenses.free;
};
}) {};
- exotica-theme = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "exotica-theme";
- ename = "exotica-theme";
- version = "20180212.1529";
- src = fetchFromGitHub {
- owner = "jbharat";
- repo = "exotica-theme";
- rev = "ff3ef4f6fa38c93b99becad977c7810c990a4d2f";
- sha256 = "1kp6q55g3dcya4y79x877vqwxa4z2rkkvhs49pkwr3wljf4af2pd";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/9182f92dd62e2f1775a76699a6c8f9c3e71e9030/recipes/exotica-theme";
- sha256 = "1fzf1zpllkddkq02hvabbi2bh6rnanlyinb6fjwsyh39wvzhsfhs";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/exotica-theme";
- license = lib.licenses.free;
- };
- }) {};
- expand-line = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "expand-line";
- ename = "expand-line";
- version = "20151005.1907";
- src = fetchFromGitHub {
- owner = "zhangkaiyulw";
- repo = "expand-line";
- rev = "75a5d0241f35dd0748ab8ecb4ff16891535be372";
- sha256 = "0wz4h5hrr5ci0w8pynd2nr1b2zl5hl4pa8gc16mcabik5927rf7z";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/3416586d4d782cdd61a56159c5f80a0ca9b3ddf4/recipes/expand-line";
- sha256 = "0bzz7zrpfdxhjxs7nzlmzjb9jfajhxkivzr5sm87mg3zx8b6gjyi";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/expand-line";
- license = lib.licenses.free;
- };
- }) {};
expand-region = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -31088,32 +16777,6 @@
license = lib.licenses.free;
};
}) {};
- extempore-mode = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "extempore-mode";
- ename = "extempore-mode";
- version = "20180104.2221";
- src = fetchFromGitHub {
- owner = "extemporelang";
- repo = "extempore-emacs-mode";
- rev = "ae5f40d4b0883a4519e460cd7720e5fcc3a68fa5";
- sha256 = "1f888h7xv6zz6kq38ak1vpwjrjr2sqgwpfxwb9x0ldf3kkx4wf1w";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/7bd3e57171f5283604e9375613a7a94416ee99a7/recipes/extempore-mode";
- sha256 = "1z8nzpcj27s74kxfjz7wyr3848jpd6mbyjkssd06ri5p694j9php";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/extempore-mode";
- license = lib.licenses.free;
- };
- }) {};
extend-dnd = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -31165,143 +16828,6 @@
license = lib.licenses.free;
};
}) {};
- exunit = callPackage ({ dash
- , emacs
- , f
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , s }:
- melpaBuild {
- pname = "exunit";
- ename = "exunit";
- version = "20190215.1940";
- src = fetchFromGitHub {
- owner = "ananthakumaran";
- repo = "exunit.el";
- rev = "1b7763bc4822f3292a6b9b368693b0c271052eb8";
- sha256 = "1g6w7gchw34acqwigsjhf93hx83w11wr6a2yv6p8ncw9r3vgbnh2";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/94e4fd4cf58b280d08d22aff4dd9c47201a29e72/recipes/exunit";
- sha256 = "1wyxxy1hd50p17widf31sysp28adr09n8ksyd3hn6pnvyn2m0k81";
- name = "recipe";
- };
- packageRequires = [ dash emacs f s ];
- meta = {
- homepage = "https://melpa.org/#/exunit";
- license = lib.licenses.free;
- };
- }) {};
- exwm-edit = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "exwm-edit";
- ename = "exwm-edit";
- version = "20180905.43";
- src = fetchFromGitHub {
- owner = "agzam";
- repo = "exwm-edit";
- rev = "961c0f3ea45766b888c73d7353da13d329538034";
- sha256 = "087pk5ckx753qrn6xpka9khhlp7iqlz76w7861x90av2f5cgy6fw";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/f247915e02e59ebd6a2a219e55870e034d41c938/recipes/exwm-edit";
- sha256 = "0bydkznywma0x293m105amppx4qx1iyjpqdfq6np73176xfy6kc5";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/exwm-edit";
- license = lib.licenses.free;
- };
- }) {};
- exwm-firefox-core = callPackage ({ emacs
- , exwm
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "exwm-firefox-core";
- ename = "exwm-firefox-core";
- version = "20190402.1425";
- src = fetchFromGitHub {
- owner = "walseb";
- repo = "exwm-firefox-core";
- rev = "71539f3fce35095992c4975467e89a7833a2319d";
- sha256 = "0psb180wcn2yg9r75nbpr54npaiqshpjy4hr03jpf2shzr9d9zlq";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/745a2b98c48b00cd794dfb97be4072813ee67ada/recipes/exwm-firefox-core";
- sha256 = "1d6j8nrlb7lsyki796vpfidj8y2cz5lnqf8zzfqsbqf92kj5v9zd";
- name = "recipe";
- };
- packageRequires = [ emacs exwm ];
- meta = {
- homepage = "https://melpa.org/#/exwm-firefox-core";
- license = lib.licenses.free;
- };
- }) {};
- exwm-firefox-evil = callPackage ({ emacs
- , evil
- , exwm
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "exwm-firefox-evil";
- ename = "exwm-firefox-evil";
- version = "20190403.1145";
- src = fetchFromGitHub {
- owner = "walseb";
- repo = "exwm-firefox-evil";
- rev = "e343ac57c945946c238f2f24fdf810e691c023c4";
- sha256 = "0037fiv0nsid1bh492vmpcz4vi116hbp8c169k8yjalkb9y8sjn9";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/09fa63c7bd639c0b7dda540504c74cdbbe4f9875/recipes/exwm-firefox-evil";
- sha256 = "0wg3jydgj2fi5gxv3kwm1dvpxvc3ypn28kxlzfp801xrrfc241ml";
- name = "recipe";
- };
- packageRequires = [ emacs evil exwm ];
- meta = {
- homepage = "https://melpa.org/#/exwm-firefox-evil";
- license = lib.licenses.free;
- };
- }) {};
- exwm-surf = callPackage ({ emacs
- , exwm
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "exwm-surf";
- ename = "exwm-surf";
- version = "20171204.340";
- src = fetchFromGitHub {
- owner = "ecraven";
- repo = "exwm-surf";
- rev = "6c17e2c1597fe4b7b454a1dac23b9127ac951e94";
- sha256 = "0rb921fq3pyzv0w1s6n0zx4j7cvv68mb50hfa8nqnppz5ii1k0lb";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/4fc27fae2b58c7af87dadba9217cc05f8ab4890c/recipes/exwm-surf";
- sha256 = "066qbn1w63irh9b03qs0fv77x71cind22kdj6wygaznrpgwr0kny";
- name = "recipe";
- };
- packageRequires = [ emacs exwm ];
- meta = {
- homepage = "https://melpa.org/#/exwm-surf";
- license = lib.licenses.free;
- };
- }) {};
exwm-x = callPackage ({ bind-key
, cl-lib ? null
, counsel
@@ -31369,60 +16895,6 @@
license = lib.licenses.free;
};
}) {};
- eyuml = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , request
- , s }:
- melpaBuild {
- pname = "eyuml";
- ename = "eyuml";
- version = "20141028.1527";
- src = fetchFromGitHub {
- owner = "antham";
- repo = "eyuml";
- rev = "2f259c201c6cc63ee608f75cd85c1ae27f9d2532";
- sha256 = "1rgzydxv7c455vj1jm44vvs6xc4qgivqqb0g6zh5x4wdcpgdi2g9";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/b09a8d723e357da67441e65047759ccfa9cb7ef6/recipes/eyuml";
- sha256 = "0ada2gcl8bw9nn0fz8g9lbqy8a8w1554q03fzd7lv8qla33ri3wx";
- name = "recipe";
- };
- packageRequires = [ request s ];
- meta = {
- homepage = "https://melpa.org/#/eyuml";
- license = lib.licenses.free;
- };
- }) {};
- ez-query-replace = callPackage ({ dash
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , s }:
- melpaBuild {
- pname = "ez-query-replace";
- ename = "ez-query-replace";
- version = "20170814.621";
- src = fetchFromGitHub {
- owner = "Wilfred";
- repo = "ez-query-replace.el";
- rev = "f5dbd2d3e5e62e6b7e7cc1a98fc4d0cd411e5afa";
- sha256 = "14mikpxrsmjwdpya45cf47v2gjwxmql10xjk907x27iqqxmfif74";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/c40808c7687ace84e4c59bf8c25332c94b6fdd76/recipes/ez-query-replace";
- sha256 = "1h9ijr1qagwp9vvikh7ajby0dqgfypjgc45s7d93zb9jrg2n5cgx";
- name = "recipe";
- };
- packageRequires = [ dash s ];
- meta = {
- homepage = "https://melpa.org/#/ez-query-replace";
- license = lib.licenses.free;
- };
- }) {};
eziam-theme = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -31528,56 +17000,6 @@
license = lib.licenses.free;
};
}) {};
- face-explorer = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "face-explorer";
- ename = "face-explorer";
- version = "20170710.1201";
- src = fetchFromGitHub {
- owner = "Lindydancer";
- repo = "face-explorer";
- rev = "13bd4553bc4b09215a04d0267be1cb4ed834775c";
- sha256 = "1zbm92imfbh1sm7j64vc1ig5yq6rdd8izkh80mci5k6nf1p3byk7";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/2370fdf6421dc518337e04bd2453a5f74e2df2b2/recipes/face-explorer";
- sha256 = "1jfidkkizgwhkkrgvrmq5vrx5ir4zjw4zzc2alw9gkjn1ddq22q7";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/face-explorer";
- license = lib.licenses.free;
- };
- }) {};
- faceup = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "faceup";
- ename = "faceup";
- version = "20170925.1246";
- src = fetchFromGitHub {
- owner = "Lindydancer";
- repo = "faceup";
- rev = "6c92dad56a133e14e7b27831e1bcf9b3a71ff154";
- sha256 = "1yzmy7flrhrh0i10bdszx8idx6r8h6czm4vm4q0z6fp5fw94zwrx";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/a10bf2928b93c3908e89ca8ad9649bb468ebca05/recipes/faceup";
- sha256 = "0l41xp38iji55dv20lk7r187ywcz8s1g2jmwbjwkspzmcf763xvx";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/faceup";
- license = lib.licenses.free;
- };
- }) {};
factlog = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -31628,59 +17050,6 @@
license = lib.licenses.free;
};
}) {};
- fakespace = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "fakespace";
- ename = "fakespace";
- version = "20120817.1706";
- src = fetchFromGitHub {
- owner = "skeeto";
- repo = "elisp-fakespace";
- rev = "d1bd1f4b14b2690d7a67f9a52622ec51ed84813a";
- sha256 = "11fm0h9rily5731s137mgv8rdbfqi99s6f36bgr0arwbq3f2j3fs";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/778dbe1fd1d2ecebb499ad66bc950e586f231c52/recipes/fakespace";
- sha256 = "09dsmrqax4wfcw8fd5jf07bjxm5dizpc2qvjkqwg74j2n352wv27";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/fakespace";
- license = lib.licenses.free;
- };
- }) {};
- fakir = callPackage ({ dash
- , fetchFromGitHub
- , fetchurl
- , kv
- , lib
- , melpaBuild
- , noflet }:
- melpaBuild {
- pname = "fakir";
- ename = "fakir";
- version = "20140729.952";
- src = fetchFromGitHub {
- owner = "nicferrier";
- repo = "emacs-fakir";
- rev = "1fca406ad7de80fece6319ff75d4230b648534b0";
- sha256 = "1w5apzbzr1jd983b0rzsy9ldb0z0zcq6mpyb5r8czl5wd4vvj69h";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/d0a8abd5fd77a14b957f53b5bc8474403cc1e18f/recipes/fakir";
- sha256 = "07bicglgpm6qkcsxwj6rswhx4hgh27rfg8s1cki7g8qcvk2f7b25";
- name = "recipe";
- };
- packageRequires = [ dash kv noflet ];
- meta = {
- homepage = "https://melpa.org/#/fakir";
- license = lib.licenses.free;
- };
- }) {};
fancy-battery = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -31732,55 +17101,6 @@
license = lib.licenses.free;
};
}) {};
- farmhouse-theme = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "farmhouse-theme";
- ename = "farmhouse-theme";
- version = "20160713.1544";
- src = fetchFromGitHub {
- owner = "mattly";
- repo = "emacs-farmhouse-theme";
- rev = "7ddc1ff13b4a3d5466bd0d33ecb86100352e83a7";
- sha256 = "09k6agh205kr2lif354m38l3967b0jajm14rgpl7l1vlajh8wzfd";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/3b0d427db8ab66d2fe323366b0837595b3b59afa/recipes/farmhouse-theme";
- sha256 = "0hbqdrw6x25b331qhbg3yaaa45c2b896wknsjm0a1kg142klq229";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/farmhouse-theme";
- license = lib.licenses.free;
- };
- }) {};
- fasd = callPackage ({ fetchgit
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "fasd";
- ename = "fasd";
- version = "20180605.2205";
- src = fetchgit {
- url = "https://framagit.org/steckerhalter/emacs-fasd.git";
- rev = "020c6a4b5fd1498a84ae142d2e32c7ff678fb029";
- sha256 = "142zq0zz38j3akgc1gipqhgs05krlkig1i97pgzmi4jcqdgm3lx9";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/f0a8eb0eefe88b4ea683a4743c0f8393506e014b/recipes/fasd";
- sha256 = "0ssb1bbw3cwd4zdy08a0fymwjwgdnx0kil5x3x1b7k8kan942436";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/fasd";
- license = lib.licenses.free;
- };
- }) {};
fastdef = callPackage ({ fetchFromGitHub
, fetchurl
, ivy
@@ -31909,31 +17229,6 @@
license = lib.licenses.free;
};
}) {};
- fcopy = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "fcopy";
- ename = "fcopy";
- version = "20150304.603";
- src = fetchFromGitHub {
- owner = "ataka";
- repo = "fcopy";
- rev = "e355f6ec889d8ecbdb096019c2dc660b1cec4941";
- sha256 = "0c56j8ip2fyma9yvwaanz89jyzgi9k11xwwkflzlzc4smnvgfibr";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/f9afd35b7c7075bef9ed878b7122ff9783fdd9fd/recipes/fcopy";
- sha256 = "13337ymf8vlbk8c4jpj6paqi06xdmk39yf72s40kmfrbvgmi8qy1";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/fcopy";
- license = lib.licenses.free;
- };
- }) {};
fd-dired = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -31984,183 +17279,6 @@
license = lib.licenses.free;
};
}) {};
- feebleline = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "feebleline";
- ename = "feebleline";
- version = "20190402.825";
- src = fetchFromGitHub {
- owner = "tautologyclub";
- repo = "feebleline";
- rev = "d1df599254f4c250720ae98dd69dada89535a295";
- sha256 = "10h59zd9hq81dyjw558k417kaqs5m9bhmx8mndcshh4cn1xfp5j3";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/782295d8c530878bd0e20cde7e7f7f8f640953dd/recipes/feebleline";
- sha256 = "0c604ahhv9c89r3hj7091zhhfpbykh4c23sn6ymqw4pp0dq4pgkj";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/feebleline";
- license = lib.licenses.free;
- };
- }) {};
- fennel-mode = callPackage ({ fetchFromGitLab
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "fennel-mode";
- ename = "fennel-mode";
- version = "20190401.1108";
- src = fetchFromGitLab {
- owner = "technomancy";
- repo = "fennel-mode";
- rev = "17678a7fc073c64cb0ec78f913154df377a42575";
- sha256 = "0n2vz6vsi380gcgg3ihwjs3z2rc1hb8yh4xlzjwz01dhahj08p1x";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/cda0732050a17b2dc70b80afd6fc6bb9cf8bb60f/recipes/fennel-mode";
- sha256 = "0lg69rjvbg7zl4jxc88m12r4rgv2mg2xdyz591mdmgvxwr2hfrv9";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/fennel-mode";
- license = lib.licenses.free;
- };
- }) {};
- fetch = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "fetch";
- ename = "fetch";
- version = "20131130.2330";
- src = fetchFromGitHub {
- owner = "crshd";
- repo = "fetch.el";
- rev = "3f2793afcbbc32f320e572453166f9354ecc6d06";
- sha256 = "0pjw9fb3n08yd38680ifdn2wlnw2k6q97lzhqb2259mywsycyqy8";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/7e808952551936dd8eaf0158d6ca929d10712dc5/recipes/fetch";
- sha256 = "1jqc6pspgcrdzm7ij46r1q6vpjq7il5dy2xyxwn2c1ky5a80paby";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/fetch";
- license = lib.licenses.free;
- };
- }) {};
- fic-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "fic-mode";
- ename = "fic-mode";
- version = "20180603.1335";
- src = fetchFromGitHub {
- owner = "lewang";
- repo = "fic-mode";
- rev = "a05fc36ed54ba0c6dc22ac216a6a72cf191ca13d";
- sha256 = "074dfwdir2dx5cpbjk1ac8d3hkjkrylivy7agir5mnmzjm3bs9gw";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/0fda2b54a0ff0b6fc3bd6d20cfcbbf63cae5380f/recipes/fic-mode";
- sha256 = "0yy1zw0b0s93qkzyq0n17gzn33ma5h56mh40ysz6adwsi68af84c";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/fic-mode";
- license = lib.licenses.free;
- };
- }) {};
- fifo-class = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "fifo-class";
- ename = "fifo-class";
- version = "20160424.2258";
- src = fetchFromGitHub {
- owner = "mola-T";
- repo = "fifo-class";
- rev = "8fe4cf690727f4ac7b67f29c55f845df023c3f21";
- sha256 = "0dkng4zkd5xdyvqy67bnfp4z6w8byx66bssq1zl7bhga45vihfjg";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b4fa87f7d5592bc264805760d191df2a3539cf1/recipes/fifo-class";
- sha256 = "0yyjrvdjiq5166vrys13c3dqy5807a3x99597iw5v6mcxg37jg3h";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/fifo-class";
- license = lib.licenses.free;
- };
- }) {};
- figlet = callPackage ({ fetchhg
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "figlet";
- ename = "figlet";
- version = "20160218.1437";
- src = fetchhg {
- url = "https://bitbucket.com/jpkotta/figlet";
- rev = "70ca269d706e";
- sha256 = "1c18b1h154sdxkksqwk8snyk8n43bwzgavi75l8mnz8dnl1ciaxs";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5b7972602399f9df9139cff177e38653bb0f43ed/recipes/figlet";
- sha256 = "1m7hw56awdbvgzdnjysb3wqkhkjqy68jxsxh9f7fx266wjqhp6yj";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/figlet";
- license = lib.licenses.free;
- };
- }) {};
- filelock = callPackage ({ cl-lib ? null
- , emacs
- , f
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "filelock";
- ename = "filelock";
- version = "20180524.1515";
- src = fetchFromGitHub {
- owner = "DarwinAwardWinner";
- repo = "emacs-filelock";
- rev = "17a5ca6e0dee14d2e7d92c84be91143bca9d9663";
- sha256 = "1smiad56626bc7q6vgj5gc710hnx814d4xlpxdlfzqlmj08y9dyk";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/bda76dfbf37eaa17bebb4b8c34006704862db433/recipes/filelock";
- sha256 = "13ra697y0fhkjwsaqqlphcyfqkaiix5z59qw4q6rgix4k8ypj8db";
- name = "recipe";
- };
- packageRequires = [ cl-lib emacs f ];
- meta = {
- homepage = "https://melpa.org/#/filelock";
- license = lib.licenses.free;
- };
- }) {};
fill-column-indicator = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -32212,31 +17330,6 @@
license = lib.licenses.free;
};
}) {};
- fillcode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "fillcode";
- ename = "fillcode";
- version = "20171029.925";
- src = fetchFromGitHub {
- owner = "snarfed";
- repo = "fillcode";
- rev = "d0a9e20f5fcc24a786d09ea19bfb9237681ba823";
- sha256 = "1mf2gfcjaqbw523vkfbzs2nl1y9bn9gbgmbvn2phbyj78gzq18za";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/85eb403503aa83799a6072bfe21bf66c8177ca73/recipes/fillcode";
- sha256 = "0bfsw55vjhx88jpy6npnzfwinvggivbvkk7fa3iwzq19005fkag2";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/fillcode";
- license = lib.licenses.free;
- };
- }) {};
finalize = callPackage ({ cl-generic
, cl-lib ? null
, eieio ? null
@@ -32344,106 +17437,6 @@
license = lib.licenses.free;
};
}) {};
- find-temp-file = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "find-temp-file";
- ename = "find-temp-file";
- version = "20170107.539";
- src = fetchFromGitHub {
- owner = "thisirs";
- repo = "find-temp-file";
- rev = "513005d19d72d71f34481ee00158dd57bd93206f";
- sha256 = "129jnn16vxmp6r9gx8k4rvv6spag5q0if52b5fhsybicnsl35mrz";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/c01efd0cb3e3bab4661a358c084b645dc7e31736/recipes/find-temp-file";
- sha256 = "0c98zm94958rb9kdvqr3pad744nh63y3vy3lshfm0lsg85k9j62p";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/find-temp-file";
- license = lib.licenses.free;
- };
- }) {};
- find-things-fast = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "find-things-fast";
- ename = "find-things-fast";
- version = "20150519.1526";
- src = fetchFromGitHub {
- owner = "eglaysher";
- repo = "find-things-fast";
- rev = "281dcb5a2e2db1013246dcac5111808352a8ea95";
- sha256 = "0h523dgjicmn4rpbk82ryq3mq5vfl5b50wvn0p2mh74g35mc0zwl";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/3b63336dd150e791f3139d675af735b60054eb2b/recipes/find-things-fast";
- sha256 = "1fs3wf61lzm1hxh5sx8pr74g7g9np3npdwg7xmk81b5f2jx2vy6m";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/find-things-fast";
- license = lib.licenses.free;
- };
- }) {};
- findr = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "findr";
- ename = "findr";
- version = "20130127.1232";
- src = fetchFromGitHub {
- owner = "emacsorphanage";
- repo = "findr";
- rev = "1ddbc0464bb05dcda392b62666ad17239a2152d3";
- sha256 = "0wx4hd4agrfvk0igyash658cbf7v3bv01rlspllsvzr59fl3faqq";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/ae489be43b1aee93614e40f492ebdf0b98a3fbc1/recipes/findr";
- sha256 = "0pw72bdpmc0ymlgjmwwrslhynij5a5b9sc3rx6vyprpv1ad4ac2c";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/findr";
- license = lib.licenses.free;
- };
- }) {};
- fingers = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "fingers";
- ename = "fingers";
- version = "20160817.129";
- src = fetchFromGitHub {
- owner = "fgeller";
- repo = "fingers.el";
- rev = "7de351448a6f5ea7aa7a25db6c90d5138f87eb16";
- sha256 = "1hwlnvry3pl3h2kz0d03d9225gn2dk4x3nhalk8854fr2jflrpqy";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/f2afd4983d1a5820daafb31e96d54b214a79849f/recipes/fingers";
- sha256 = "1r8fy6q6isjxz9mvaa8in4imdghzla3gg1l93dfm1v2rlr7bhzbg";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/fingers";
- license = lib.licenses.free;
- };
- }) {};
fiplr = callPackage ({ fetchFromGitHub
, fetchurl
, grizzl
@@ -32470,32 +17463,6 @@
license = lib.licenses.free;
};
}) {};
- firecode-theme = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "firecode-theme";
- ename = "firecode-theme";
- version = "20170808.611";
- src = fetchFromGitHub {
- owner = "emacsfodder";
- repo = "emacs-firecode-theme";
- rev = "8b7b03ecdd41e70dab145b98906017e1392eaef4";
- sha256 = "1vrpnv7555mbsksflgdkg7hc65fjcyzvzv2261y043rlh2qrn0sy";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/641d1959bd31598fcdacd39a3d1bb077dcccfa5c/recipes/firecode-theme";
- sha256 = "10lxd93lkrvz8884dv4sh6fzzg355j7ab4p5dpvwry79rhs7f739";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/firecode-theme";
- license = lib.licenses.free;
- };
- }) {};
firefox-controller = callPackage ({ cl-lib ? null
, fetchFromGitHub
, fetchurl
@@ -32574,32 +17541,6 @@
license = lib.licenses.free;
};
}) {};
- firrtl-mode = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "firrtl-mode";
- ename = "firrtl-mode";
- version = "20190223.1944";
- src = fetchFromGitHub {
- owner = "IBM";
- repo = "firrtl-mode";
- rev = "e55c555809037b7aaf2367ad2255f0a27addd23a";
- sha256 = "1nsihyx9znblc4kxyk06r7alhd4wh67312zwp9discgyf4ksm572";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/35763febad20f29320d459394f810668db6c3353/recipes/firrtl-mode";
- sha256 = "19r7wbw9pr05p8fywcnbbpdpklic2vd2bsy80r7xrzgs4fcl12as";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/firrtl-mode";
- license = lib.licenses.free;
- };
- }) {};
fish-completion = callPackage ({ fetchFromGitLab
, fetchurl
, lib
@@ -32767,133 +17708,6 @@
license = lib.licenses.free;
};
}) {};
- flame = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "flame";
- ename = "flame";
- version = "20180303.1216";
- src = fetchFromGitHub {
- owner = "mschuldt";
- repo = "flame";
- rev = "2cfb860a483197e92a4c20d7b9b055d586e76fe0";
- sha256 = "1h6mm2zjv03y2d6dv4gq7iaz6r2glgcljzgmi6m4jp6flvyqh09g";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/b7a14c14368de722855286c088020a5657f7cf8b/recipes/flame";
- sha256 = "1br9c48anscq9vbssr0gq8f5kbq755hjaglbljwwh9nd5riycv5v";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/flame";
- license = lib.licenses.free;
- };
- }) {};
- flappymacs = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "flappymacs";
- ename = "flappymacs";
- version = "20171023.304";
- src = fetchFromGitHub {
- owner = "taksatou";
- repo = "flappymacs";
- rev = "fac0011983251d5c44f4ed1eacac03f5de3caac4";
- sha256 = "191sdqaljxryslvwjgr38fhgxi0gg7v74m1rqxx3m740wr4qnx7s";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/a63b22f357b2d08b12fb86c27261ab4d687c5f7f/recipes/flappymacs";
- sha256 = "1rp4r5ldhm8nrj26y1vm5d5fj3kl7v45cj1naxczrqbcgkd0r404";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/flappymacs";
- license = lib.licenses.free;
- };
- }) {};
- flash-region = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "flash-region";
- ename = "flash-region";
- version = "20130923.1117";
- src = fetchFromGitHub {
- owner = "Fuco1";
- repo = "flash-region";
- rev = "261b3597b23cdd40e5c14262a5687bcc6c1d0901";
- sha256 = "0z77lm6jv2w5z551pwarcx6xg9kx8fgms9dlskngfvnzbqkldj1f";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/bf26329a30ec6e39b052e5815d3f113c05e72f84/recipes/flash-region";
- sha256 = "1rgg7j34ka0nj1yjl688asim07bbz4aavh67kly6dzzwndr0nw8c";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/flash-region";
- license = lib.licenses.free;
- };
- }) {};
- flatland-black-theme = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "flatland-black-theme";
- ename = "flatland-black-theme";
- version = "20170808.612";
- src = fetchFromGitHub {
- owner = "emacsfodder";
- repo = "emacs-flatland-black-theme";
- rev = "348c5d5fe615e6ea13cadc17f046e506e789ce07";
- sha256 = "1g5jqxdk35ahx8qk4vi7whhcpi1qp7rbbjgiih974fs59cg5iki0";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/641d1959bd31598fcdacd39a3d1bb077dcccfa5c/recipes/flatland-black-theme";
- sha256 = "0cl2qbry56nb4prbsczffx8h35x91pgicw5pld0ndw3pxid9h2da";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/flatland-black-theme";
- license = lib.licenses.free;
- };
- }) {};
- flatland-theme = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "flatland-theme";
- ename = "flatland-theme";
- version = "20171113.721";
- src = fetchFromGitHub {
- owner = "gchp";
- repo = "flatland-emacs";
- rev = "a98a6f19ad4dff0fa3fad1ea487b7d0ef634a19a";
- sha256 = "02gbzxd1v003aaj5rn3vr00n4390bhdx2jhpa7nb430fg3s1ppdy";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/0a081fd0c5598fdf5bc0ab92f4d009f32132a29e/recipes/flatland-theme";
- sha256 = "14drqwcp9nv269aqm34d426a7gx1a7kr9ygnqa2c8ia1fsizybl3";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/flatland-theme";
- license = lib.licenses.free;
- };
- }) {};
flatui-dark-theme = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -32920,56 +17734,6 @@
license = lib.licenses.free;
};
}) {};
- flatui-theme = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "flatui-theme";
- ename = "flatui-theme";
- version = "20160618.1827";
- src = fetchFromGitHub {
- owner = "john2x";
- repo = "flatui-theme.el";
- rev = "9c15db5526c15c8dba55023f5698372b19c2a780";
- sha256 = "0ybgpnbq3b0ml3lzgkispn667acpjww7z6cr7hgwg3j1zrqpwi75";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/96dc9a8b1f6e5cdd46fc94fc2979f2a1787f4d21/recipes/flatui-theme";
- sha256 = "0s88xihw44ks4b07wcb9swr52f3l1ls0jn629mxvfkv4a6hn7rmz";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/flatui-theme";
- license = lib.licenses.free;
- };
- }) {};
- flex-autopair = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "flex-autopair";
- ename = "flex-autopair";
- version = "20120809.518";
- src = fetchFromGitHub {
- owner = "uk-ar";
- repo = "flex-autopair";
- rev = "55d128749cc070551a1624a4508d1c4f6d76f7cf";
- sha256 = "0g9chcqjn2930vrn8af4hwibs4giprgsig9dqprz4c6hya03hlf0";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/flex-autopair";
- sha256 = "0w3l236psqxl7wqdi2aisz8wcv279kw6gdja72viiscrbcm78xh0";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/flex-autopair";
- license = lib.licenses.free;
- };
- }) {};
flex-compile = callPackage ({ buffer-manage
, dash
, emacs
@@ -32998,108 +17762,6 @@
license = lib.licenses.free;
};
}) {};
- flex-isearch = callPackage ({ fetchhg
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "flex-isearch";
- ename = "flex-isearch";
- version = "20170308.1210";
- src = fetchhg {
- url = "https://bitbucket.com/jpkotta/flex-isearch";
- rev = "8b934ea6f1e4";
- sha256 = "0xbwrzkfv4i91qxs80p0pfjlvj5pyigvidby8m5lammm8idwx9dh";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5b7972602399f9df9139cff177e38653bb0f43ed/recipes/flex-isearch";
- sha256 = "1msgrimi2a0xm5h23p78jflh00bl5bx44xpc3sc9pspznjv1d0k3";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/flex-isearch";
- license = lib.licenses.free;
- };
- }) {};
- flim = callPackage ({ apel
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "flim";
- ename = "flim";
- version = "20180328.1624";
- src = fetchFromGitHub {
- owner = "wanderlust";
- repo = "flim";
- rev = "faaa2b1f2bb8fcf835ddfb8981654e4d3b2bdbc6";
- sha256 = "0hr4qi5vhq3ravgky95k2n7hin97jln7fmkgbx45fcyiz8jbpz2z";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/94faf56ff9bf94f51ef5253e4c4244faec5eecfd/recipes/flim";
- sha256 = "1gkaq549svflx8qyqrk0ccb52b7wp17wmd5jgzkw1109bpc4k6jc";
- name = "recipe";
- };
- packageRequires = [ apel ];
- meta = {
- homepage = "https://melpa.org/#/flim";
- license = lib.licenses.free;
- };
- }) {};
- flimenu = callPackage ({ dash
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "flimenu";
- ename = "flimenu";
- version = "20170417.1847";
- src = fetchFromGitHub {
- owner = "IvanMalison";
- repo = "flimenu";
- rev = "9351201d89b05cbdaec312a6ebd7fd10c38d6112";
- sha256 = "1qb08j66a9mvybqhc2vyywwn16w3kkjb06k50rfqf6sbcmndz8va";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/0ffc67a266de3d58553b27325b7fc6937df425be/recipes/flimenu";
- sha256 = "1xr28kprkq9xwy2f7b3wnjr25a8avm2lfcyi8853jygkm2vmnsx1";
- name = "recipe";
- };
- packageRequires = [ dash emacs ];
- meta = {
- homepage = "https://melpa.org/#/flimenu";
- license = lib.licenses.free;
- };
- }) {};
- fliptext = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "fliptext";
- ename = "fliptext";
- version = "20171124.1256";
- src = fetchFromGitHub {
- owner = "andre-r";
- repo = "fliptext.el";
- rev = "fd821f645ffebae6ae3894afa7ba7fc06f91afc6";
- sha256 = "1jf63kp1myxihv6r13cddxgr8cchxcnnmylj5dx50y42595ia4yh";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/e36776cbed8eab151f69d0edd5217a7bba7c2451/recipes/fliptext";
- sha256 = "1wbrvqrvrpk2lx7b6y30rrshr7a25b2191bnx4v8lm3cv16gv8p7";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/fliptext";
- license = lib.licenses.free;
- };
- }) {};
floobits = callPackage ({ fetchFromGitHub
, fetchurl
, highlight
@@ -33180,85 +17842,6 @@
license = lib.licenses.free;
};
}) {};
- flucui-themes = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "flucui-themes";
- ename = "flucui-themes";
- version = "20190321.1613";
- src = fetchFromGitHub {
- owner = "MetroWind";
- repo = "flucui-theme";
- rev = "921ff298da71366eca3d1e4fc410126d405d5366";
- sha256 = "0gqsr0xsxrbxsdfn3yhf76wxpqp63m1652ryvc2hwskkgj41y3nl";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/77d06aa7405f0badf5ab425ddeeb7a754c17d2af/recipes/flucui-themes";
- sha256 = "0ki2vxjhccyi6w2y9qj6xbfqgvjd91wqkzn6qq8ig6ggqir7wc6a";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/flucui-themes";
- license = lib.licenses.free;
- };
- }) {};
- flutter = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "flutter";
- ename = "flutter";
- version = "20190203.2201";
- src = fetchFromGitHub {
- owner = "amake";
- repo = "flutter.el";
- rev = "4a59efee1cde408c311ef21c6d3e6fd65868ed42";
- sha256 = "1cn247dq85pkmv4wpv5pkfaizlphlns0nh97fgna2qr9ig3hpn6j";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/2dc736e396632d7a26c40b6b1de23f41b645722d/recipes/flutter";
- sha256 = "1v8m3rvdivww9bsk52m0ap336ql5zi637byisil4wcivxabc4i94";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/flutter";
- license = lib.licenses.free;
- };
- }) {};
- fluxus-mode = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , osc }:
- melpaBuild {
- pname = "fluxus-mode";
- ename = "fluxus-mode";
- version = "20170210.1141";
- src = fetchFromGitHub {
- owner = "defaultxr";
- repo = "fluxus-mode";
- rev = "3661d4dfdaf249138e7f215f15f291c9391ede8d";
- sha256 = "1dp974qs80agx9qcq5k5awdsr8p8smv8cdwkjz2d8xfd5wq2vhh9";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/a3396e0da67153ad051b8551bf34630d32f974f4/recipes/fluxus-mode";
- sha256 = "1xn2aw9gxwkmr1miam63lrdx6n0qxsgph3rlaqy9cbs0vkb254an";
- name = "recipe";
- };
- packageRequires = [ emacs osc ];
- meta = {
- homepage = "https://melpa.org/#/fluxus-mode";
- license = lib.licenses.free;
- };
- }) {};
flx = callPackage ({ cl-lib ? null
, fetchFromGitHub
, fetchurl
@@ -33312,34 +17895,6 @@
license = lib.licenses.free;
};
}) {};
- flx-isearch = callPackage ({ cl-lib ? null
- , emacs
- , fetchFromGitHub
- , fetchurl
- , flx
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "flx-isearch";
- ename = "flx-isearch";
- version = "20180102.2114";
- src = fetchFromGitHub {
- owner = "PythonNut";
- repo = "flx-isearch";
- rev = "f132fd6367e369885ab3a865fbfe20eee989bc0b";
- sha256 = "1dcvfl4fyhgw0rhfhixzlzjfr99fisa83f7lmlwzz2zs96myhhkz";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/2cd1438cc0821b8ae1d01e2a3bc8f07ca8a79134/recipes/flx-isearch";
- sha256 = "14cshv5xb57ch5g3m3hfhawnnabdnbacp4kx40d0pw6jxw677gqd";
- name = "recipe";
- };
- packageRequires = [ cl-lib emacs flx ];
- meta = {
- homepage = "https://melpa.org/#/flx-isearch";
- license = lib.licenses.free;
- };
- }) {};
flycheck = callPackage ({ dash
, emacs
, fetchFromGitHub
@@ -33422,60 +17977,6 @@
license = lib.licenses.free;
};
}) {};
- flycheck-ats2 = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , flycheck
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "flycheck-ats2";
- ename = "flycheck-ats2";
- version = "20170225.836";
- src = fetchFromGitHub {
- owner = "drvink";
- repo = "flycheck-ats2";
- rev = "9f77add8408462af35bdddf87e37a661880255e3";
- sha256 = "1fv3r49i8dgszaq5rs8dwnwcj6rgx922ww01ikrq3b4c9y17srpz";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/2d3605bdc402e6b13f53910eafb7f1428a5f749f/recipes/flycheck-ats2";
- sha256 = "0xm7zzz6hs5qnqkmv7hwxpvp3jjca57agx71sj0m12v0h53gbzhr";
- name = "recipe";
- };
- packageRequires = [ emacs flycheck ];
- meta = {
- homepage = "https://melpa.org/#/flycheck-ats2";
- license = lib.licenses.free;
- };
- }) {};
- flycheck-bashate = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , flycheck
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "flycheck-bashate";
- ename = "flycheck-bashate";
- version = "20160629.2140";
- src = fetchFromGitHub {
- owner = "alexmurray";
- repo = "flycheck-bashate";
- rev = "d9780b73ee698d6bc001e617b187845cafa3292a";
- sha256 = "1qhvrkhpjs214mc5f6gygwf5hx5gb2jcs46a4b34mqq29rn0j9kc";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/54fd062e4ad012d846260c96801d3415756ce981/recipes/flycheck-bashate";
- sha256 = "1c8hf4893zb74g61afr02wqhmdaswxr3nwsnzzwmb8nrrygvfa8j";
- name = "recipe";
- };
- packageRequires = [ emacs flycheck ];
- meta = {
- homepage = "https://melpa.org/#/flycheck-bashate";
- license = lib.licenses.free;
- };
- }) {};
flycheck-cask = callPackage ({ dash
, emacs
, fetchFromGitHub
@@ -33558,87 +18059,6 @@
license = lib.licenses.free;
};
}) {};
- flycheck-clang-analyzer = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , flycheck
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "flycheck-clang-analyzer";
- ename = "flycheck-clang-analyzer";
- version = "20180917.725";
- src = fetchFromGitHub {
- owner = "alexmurray";
- repo = "flycheck-clang-analyzer";
- rev = "5c707505e3ea806fddb54d031ab64351293d7c2d";
- sha256 = "0frbblyibalzskw2kv294yz846g04wlvpyshfwm95vwilv1f305v";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/8de7b717a1b0caf30f8f29d3e764b4756b93aeff/recipes/flycheck-clang-analyzer";
- sha256 = "0wby4vilvcmmncr6l6abh3v4wznx9m0zbk30vllj8bq98awfcy3a";
- name = "recipe";
- };
- packageRequires = [ emacs flycheck ];
- meta = {
- homepage = "https://melpa.org/#/flycheck-clang-analyzer";
- license = lib.licenses.free;
- };
- }) {};
- flycheck-clang-tidy = callPackage ({ fetchFromGitHub
- , fetchurl
- , flycheck
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "flycheck-clang-tidy";
- ename = "flycheck-clang-tidy";
- version = "20171024.108";
- src = fetchFromGitHub {
- owner = "ch1bo";
- repo = "flycheck-clang-tidy";
- rev = "b8ebd49693f67e08e420ba847cc88f6721ef9e3e";
- sha256 = "0fnn1baw64f7x1zjb95adryr3mfynbblwppcd6ywh7pk0sq18b80";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/a289ac549a7735a12eec85521c32f915b9194b85/recipes/flycheck-clang-tidy";
- sha256 = "0lhf5byydmd380y7qx5x34r0sq7gzrj286pcaxhl388p6j58cb4p";
- name = "recipe";
- };
- packageRequires = [ flycheck ];
- meta = {
- homepage = "https://melpa.org/#/flycheck-clang-tidy";
- license = lib.licenses.free;
- };
- }) {};
- flycheck-clangcheck = callPackage ({ cl-lib ? null
- , fetchFromGitHub
- , fetchurl
- , flycheck
- , lib
- , melpaBuild
- , seq }:
- melpaBuild {
- pname = "flycheck-clangcheck";
- ename = "flycheck-clangcheck";
- version = "20150712.10";
- src = fetchFromGitHub {
- owner = "kumar8600";
- repo = "flycheck-clangcheck";
- rev = "24a9424c484420073a24443a829fd5779752362b";
- sha256 = "1ckzs32wzqpnw89rrw3l7i4gbyn25wagbadsc4mcrixml5nf0mck";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/b42dd133e4fd5579dd1c6cdcbf733571bc890899/recipes/flycheck-clangcheck";
- sha256 = "1316cj3ynl80j39ha0371ss7cqw5hcr3m8944pdacdzbmp2sak2m";
- name = "recipe";
- };
- packageRequires = [ cl-lib flycheck seq ];
- meta = {
- homepage = "https://melpa.org/#/flycheck-clangcheck";
- license = lib.licenses.free;
- };
- }) {};
flycheck-clj-kondo = callPackage ({ fetchFromGitHub
, fetchurl
, flycheck
@@ -33722,60 +18142,6 @@
license = lib.licenses.free;
};
}) {};
- flycheck-coverity = callPackage ({ dash
- , emacs
- , fetchFromGitHub
- , fetchurl
- , flycheck
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "flycheck-coverity";
- ename = "flycheck-coverity";
- version = "20170703.1759";
- src = fetchFromGitHub {
- owner = "alexmurray";
- repo = "flycheck-coverity";
- rev = "cb211e3dd50413a5042eb20175be518214591c9d";
- sha256 = "17c5lppa5axw6wga3k8zqmn5f2syadlqbavrqgsi8k8nlcckxy1x";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/55e8df91adbcf8b059096e02aba2781424250381/recipes/flycheck-coverity";
- sha256 = "1knd1sqgjkgb5zs8hgsi6lyvkqmrcrdjgx81f26nhg40qv5m2p5l";
- name = "recipe";
- };
- packageRequires = [ dash emacs flycheck ];
- meta = {
- homepage = "https://melpa.org/#/flycheck-coverity";
- license = lib.licenses.free;
- };
- }) {};
- flycheck-credo = callPackage ({ fetchFromGitHub
- , fetchurl
- , flycheck
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "flycheck-credo";
- ename = "flycheck-credo";
- version = "20170526.845";
- src = fetchFromGitHub {
- owner = "aaronjensen";
- repo = "flycheck-credo";
- rev = "e88f11ead53805c361ec7706e44c3dfee1daa19f";
- sha256 = "04i7fbqpkjpsfa8vjpkdhg1sj5isczxwncdp4vr9x3vll3svblm7";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/88dfffe034135cc46d661f8173e8b14e0fb7f240/recipes/flycheck-credo";
- sha256 = "0xmnbib7lx6v10pd3pkr69c4jb4sn3nmjk16qzvscwjgf2dypyax";
- name = "recipe";
- };
- packageRequires = [ flycheck ];
- meta = {
- homepage = "https://melpa.org/#/flycheck-credo";
- license = lib.licenses.free;
- };
- }) {};
flycheck-crystal = callPackage ({ fetchFromGitHub
, fetchurl
, flycheck
@@ -33802,218 +18168,6 @@
license = lib.licenses.free;
};
}) {};
- flycheck-css-colorguard = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , flycheck
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "flycheck-css-colorguard";
- ename = "flycheck-css-colorguard";
- version = "20161031.422";
- src = fetchFromGitHub {
- owner = "Simplify";
- repo = "flycheck-css-colorguard";
- rev = "ae94fa0396acd99f9ec36d9572459df793f37fe8";
- sha256 = "1vy5yjf98b7dk9lniz3rgk33agg8f1x8488lvm28ljdq3jfdgcfw";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/flycheck-css-colorguard";
- sha256 = "16qgn12jdps61mlbvhji5l8qrqigv382wyiv79rj2bwvdzbl653f";
- name = "recipe";
- };
- packageRequires = [ emacs flycheck ];
- meta = {
- homepage = "https://melpa.org/#/flycheck-css-colorguard";
- license = lib.licenses.free;
- };
- }) {};
- flycheck-cstyle = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , flycheck
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "flycheck-cstyle";
- ename = "flycheck-cstyle";
- version = "20160905.1641";
- src = fetchFromGitHub {
- owner = "alexmurray";
- repo = "flycheck-cstyle";
- rev = "002699f83253ea8e1a509a9ab6d0fce1a1650f73";
- sha256 = "1qwimdnvwbg365hnwgrrq9h5h1spikma3va5z47rhxbdb21hvyvs";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5970f4f0967dc3a10dc9554a8f5f06b703872878/recipes/flycheck-cstyle";
- sha256 = "0p3lzpcgwk4nkq1w0iq40njz8ll2h3vi9z5fbvv1ar4r80fqd909";
- name = "recipe";
- };
- packageRequires = [ emacs flycheck ];
- meta = {
- homepage = "https://melpa.org/#/flycheck-cstyle";
- license = lib.licenses.free;
- };
- }) {};
- flycheck-cython = callPackage ({ fetchFromGitHub
- , fetchurl
- , flycheck
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "flycheck-cython";
- ename = "flycheck-cython";
- version = "20170724.258";
- src = fetchFromGitHub {
- owner = "lbolla";
- repo = "emacs-flycheck-cython";
- rev = "ecc4454d35ab5317ab66a04406f36f0c1dbc0b76";
- sha256 = "1v17skw0wn7a7nkc1vrs0bbzihnjw0dwvyyd0lydsihzxl5z2r5g";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/2d963eb1b8f8f863b37a96803b00d395e9d85e94/recipes/flycheck-cython";
- sha256 = "1mbrwhpbs8in11mp79cnl4bd3m33qdgrvnbvi1mqvrsvz1ay28g4";
- name = "recipe";
- };
- packageRequires = [ flycheck ];
- meta = {
- homepage = "https://melpa.org/#/flycheck-cython";
- license = lib.licenses.free;
- };
- }) {};
- flycheck-d-unittest = callPackage ({ dash
- , fetchFromGitHub
- , fetchurl
- , flycheck
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "flycheck-d-unittest";
- ename = "flycheck-d-unittest";
- version = "20160521.2117";
- src = fetchFromGitHub {
- owner = "flycheck";
- repo = "flycheck-d-unittest";
- rev = "3e614f23cb4a5566fd7988dbcaaf254af81c7718";
- sha256 = "0lrxyrvdkj88qh78jmamrnji770vjsr6h01agl7hvd4n2xvlxcym";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/b86c666ee9b0620390a250dddd42b17cbec2409f/recipes/flycheck-d-unittest";
- sha256 = "0n4m4f0zqcx966582af1nqff5sla7jcr0wrmgzzxnn97yjrlnzk2";
- name = "recipe";
- };
- packageRequires = [ dash flycheck ];
- meta = {
- homepage = "https://melpa.org/#/flycheck-d-unittest";
- license = lib.licenses.free;
- };
- }) {};
- flycheck-dedukti = callPackage ({ dedukti-mode
- , fetchFromGitHub
- , fetchurl
- , flycheck
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "flycheck-dedukti";
- ename = "flycheck-dedukti";
- version = "20171103.512";
- src = fetchFromGitHub {
- owner = "rafoo";
- repo = "flycheck-dedukti";
- rev = "3dbff5646355f39d57a3ec514f560a6b0082a1cd";
- sha256 = "1ffpxnwl3wx244n44mbw81g00nhnykd0lnid29f4aw1av7w6nw8l";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/732832e88a65a8866fa3872ff5f29eb8a26438f2/recipes/flycheck-dedukti";
- sha256 = "00nc18w4nsi6vicpbqqpr4xcdh48g95vnay3kirb2xp5hc2rw3x8";
- name = "recipe";
- };
- packageRequires = [ dedukti-mode flycheck ];
- meta = {
- homepage = "https://melpa.org/#/flycheck-dedukti";
- license = lib.licenses.free;
- };
- }) {};
- flycheck-demjsonlint = callPackage ({ fetchFromGitHub
- , fetchurl
- , flycheck
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "flycheck-demjsonlint";
- ename = "flycheck-demjsonlint";
- version = "20161114.2318";
- src = fetchFromGitHub {
- owner = "uqix";
- repo = "flycheck-demjsonlint";
- rev = "1c433150fdf628dda4c9fad938bf7c79610b4460";
- sha256 = "0kmvwmaxw64xjgchq8szk9mhbi6xp2jhv7qpgqndf4svia4pqws6";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/9a15a17a5aa78aed72958b2a1bde53f0c0ab5be7/recipes/flycheck-demjsonlint";
- sha256 = "0bcfkc9fch1h6gva64j71kb9l8fc9rz6wk0s9w1c1chx1z4nlill";
- name = "recipe";
- };
- packageRequires = [ flycheck ];
- meta = {
- homepage = "https://melpa.org/#/flycheck-demjsonlint";
- license = lib.licenses.free;
- };
- }) {};
- flycheck-dialyxir = callPackage ({ fetchFromGitHub
- , fetchurl
- , flycheck
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "flycheck-dialyxir";
- ename = "flycheck-dialyxir";
- version = "20170515.825";
- src = fetchFromGitHub {
- owner = "aaronjensen";
- repo = "flycheck-dialyxir";
- rev = "adfb73374cb2bee75724822972f405f2ec371199";
- sha256 = "1kzvq99f052mdj4ml1m6nvxhv0kqqblmpdgnwcm89krf0qfl4gjg";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/fa49551b8f726c235e03ea377bb09a8be37b9f32/recipes/flycheck-dialyxir";
- sha256 = "0pacxidpgwp7wij17c5r0fm5w3nga3lp4mcim365k3y5r4ralc0c";
- name = "recipe";
- };
- packageRequires = [ flycheck ];
- meta = {
- homepage = "https://melpa.org/#/flycheck-dialyxir";
- license = lib.licenses.free;
- };
- }) {};
- flycheck-dialyzer = callPackage ({ fetchFromGitHub
- , fetchurl
- , flycheck
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "flycheck-dialyzer";
- ename = "flycheck-dialyzer";
- version = "20160326.730";
- src = fetchFromGitHub {
- owner = "lbolla";
- repo = "emacs-flycheck-dialyzer";
- rev = "a5df0db95ac69f397b5f85d325a6d88cf8974f64";
- sha256 = "1i5wm2r6rck6864a60mm6kv31vgvqnq49hi9apvhyywfn6sycwkf";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/bc84fb9fabfac4c008fe0eecb0b59933bfbf95c6/recipes/flycheck-dialyzer";
- sha256 = "0bn81yzijmnfg5xcnvcvxvqxz995iaafhgbfckgcal974s229kd2";
- name = "recipe";
- };
- packageRequires = [ flycheck ];
- meta = {
- homepage = "https://melpa.org/#/flycheck-dialyzer";
- license = lib.licenses.free;
- };
- }) {};
flycheck-dmd-dub = callPackage ({ f
, fetchFromGitHub
, fetchurl
@@ -34041,278 +18195,6 @@
license = lib.licenses.free;
};
}) {};
- flycheck-dogma = callPackage ({ fetchFromGitHub
- , fetchurl
- , flycheck
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "flycheck-dogma";
- ename = "flycheck-dogma";
- version = "20170124.2321";
- src = fetchFromGitHub {
- owner = "aaronjensen";
- repo = "flycheck-dogma";
- rev = "7e14207a7da67dc5524a8949cb37a3d11de1db6e";
- sha256 = "1f3wn48am7920s6pm7ds1npfbj1w2pb8k790rl79rvc398g1pyyr";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1dd7601c55206fd0b9b59f98e861c52b9d640278/recipes/flycheck-dogma";
- sha256 = "0mpmmz0ssdd3a4fnqzy5kf9r3ddcs9kcl0chhilkw5k8480j3dcy";
- name = "recipe";
- };
- packageRequires = [ flycheck ];
- meta = {
- homepage = "https://melpa.org/#/flycheck-dogma";
- license = lib.licenses.free;
- };
- }) {};
- flycheck-dtrace = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , flycheck
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "flycheck-dtrace";
- ename = "flycheck-dtrace";
- version = "20180903.930";
- src = fetchFromGitHub {
- owner = "juergenhoetzel";
- repo = "flycheck-dtrace";
- rev = "951fab3a15c11d92b9fac1ea4791a80dfe034a00";
- sha256 = "1qkzir3lzz4lc5kn55qb52cm5y7iy8w1ljq6xxzcjxfbk9980y0y";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/cdcdd10fbcd58a5c67e4d07632212e7dedf42dbe/recipes/flycheck-dtrace";
- sha256 = "14sg7zkq9f5zbcfn8app8m9mdc8cnwcxh7h4glsz32yaqc1dj7h8";
- name = "recipe";
- };
- packageRequires = [ emacs flycheck ];
- meta = {
- homepage = "https://melpa.org/#/flycheck-dtrace";
- license = lib.licenses.free;
- };
- }) {};
- flycheck-elixir = callPackage ({ fetchFromGitHub
- , fetchurl
- , flycheck
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "flycheck-elixir";
- ename = "flycheck-elixir";
- version = "20180809.2342";
- src = fetchFromGitHub {
- owner = "lbolla";
- repo = "emacs-flycheck-elixir";
- rev = "11998d7e3e63a33453e934d25b3673f7c558e579";
- sha256 = "1hdbg0hvb6hwzjma9mxy0h888c8j2z4g38gwixrdixzbw5727r75";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/da2ab73ab1426f71ea2b2bea2b418941856b3454/recipes/flycheck-elixir";
- sha256 = "0f78fai6q15smh9rvsliv8r0hh3kpwn1lz37yvqkkbx9vl7rlwld";
- name = "recipe";
- };
- packageRequires = [ flycheck ];
- meta = {
- homepage = "https://melpa.org/#/flycheck-elixir";
- license = lib.licenses.free;
- };
- }) {};
- flycheck-elm = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , flycheck
- , let-alist
- , lib
- , melpaBuild
- , seq }:
- melpaBuild {
- pname = "flycheck-elm";
- ename = "flycheck-elm";
- version = "20181106.1746";
- src = fetchFromGitHub {
- owner = "bsermons";
- repo = "flycheck-elm";
- rev = "debd0af563cb6c2944367a691c7fa3021d9378c1";
- sha256 = "1vl0lss2n50pz5wscqj6vhjwb4hbg8xx2chh5vafsrnn0a3fryrd";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/78bdcdaa660beda29acecb51761b95d8664d28ac/recipes/flycheck-elm";
- sha256 = "06dpv19wgbw48gbf701c77vw1dkpddx8056wpim3zbvwwfwk8ra4";
- name = "recipe";
- };
- packageRequires = [ emacs flycheck let-alist seq ];
- meta = {
- homepage = "https://melpa.org/#/flycheck-elm";
- license = lib.licenses.free;
- };
- }) {};
- flycheck-elsa = callPackage ({ cask
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , seq }:
- melpaBuild {
- pname = "flycheck-elsa";
- ename = "flycheck-elsa";
- version = "20190211.1121";
- src = fetchFromGitHub {
- owner = "emacs-elsa";
- repo = "flycheck-elsa";
- rev = "d216bf97e6f4f200354f701fadff669403e18e46";
- sha256 = "1r7xnph5q1si4kp3900nvh1il69nhrb1yfh9h13zwpwfql4add4n";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/2a15c49d2fc800a6b69304edd6dbad90aaa5053f/recipes/flycheck-elsa";
- sha256 = "07a07hmy7cibm7263dw4x8kkv17g5hby8isaks7n2814ifblf30r";
- name = "recipe";
- };
- packageRequires = [ cask emacs seq ];
- meta = {
- homepage = "https://melpa.org/#/flycheck-elsa";
- license = lib.licenses.free;
- };
- }) {};
- flycheck-ensime = callPackage ({ emacs
- , ensime
- , fetchFromGitHub
- , fetchurl
- , flycheck
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "flycheck-ensime";
- ename = "flycheck-ensime";
- version = "20190212.242";
- src = fetchFromGitHub {
- owner = "ncaq";
- repo = "flycheck-ensime";
- rev = "9fe000e7004725bc8c3b7554237d717bca9cd9ac";
- sha256 = "0fl6p2hvcm1f5snx8a82h53kkfnbgycik0d5a7krcjgiby6w7wam";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/c8d1ef354566c7f337c62accbd1d2f86ffcbd98a/recipes/flycheck-ensime";
- sha256 = "11h7xwm8vwi8nca7yy9q0y30jcj77s07aa45xqz7n8rsqp6wdp3z";
- name = "recipe";
- };
- packageRequires = [ emacs ensime flycheck ];
- meta = {
- homepage = "https://melpa.org/#/flycheck-ensime";
- license = lib.licenses.free;
- };
- }) {};
- flycheck-flawfinder = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , flycheck
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "flycheck-flawfinder";
- ename = "flycheck-flawfinder";
- version = "20170115.1927";
- src = fetchFromGitHub {
- owner = "alexmurray";
- repo = "flycheck-flawfinder";
- rev = "7d964d38023b088adf3ffc2fddeead81f4491a45";
- sha256 = "0y023brz8adwa6gdaaixk6dnrq4kj2i5h56rj54cxrjkagyklfxl";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/e67a84d1a8c890ea56bd842549d70d9841d1e7a7/recipes/flycheck-flawfinder";
- sha256 = "1nabj00f5p1klzh6509ywnazxx2m017isdjdzzixg94g5mp0kv5i";
- name = "recipe";
- };
- packageRequires = [ emacs flycheck ];
- meta = {
- homepage = "https://melpa.org/#/flycheck-flawfinder";
- license = lib.licenses.free;
- };
- }) {};
- flycheck-flow = callPackage ({ fetchFromGitHub
- , fetchurl
- , flycheck
- , json ? null
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "flycheck-flow";
- ename = "flycheck-flow";
- version = "20190304.659";
- src = fetchFromGitHub {
- owner = "lbolla";
- repo = "emacs-flycheck-flow";
- rev = "9e8e52cfc98af6a23fd906f9cb5d5d470d8cf82d";
- sha256 = "14qldlisbmxzammr500gyha2hiv2xgyzfc6mysqii06kbcqn1ik1";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/4d18fb21d8ef9b33aa84bc26f5918e636c5771e5/recipes/flycheck-flow";
- sha256 = "0p4vvk09vjgk98dwzr2qzldvij3v6af56pradssi6sm3shbqhkk3";
- name = "recipe";
- };
- packageRequires = [ flycheck json ];
- meta = {
- homepage = "https://melpa.org/#/flycheck-flow";
- license = lib.licenses.free;
- };
- }) {};
- flycheck-ghcmod = callPackage ({ dash
- , fetchFromGitHub
- , fetchurl
- , flycheck
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "flycheck-ghcmod";
- ename = "flycheck-ghcmod";
- version = "20150113.2232";
- src = fetchFromGitHub {
- owner = "scturtle";
- repo = "flycheck-ghcmod";
- rev = "6bb7b7d879f05bbae54e99eb04806c877adf3ccc";
- sha256 = "0q1m1f3vhw1wy0pa3njy55z28psznbw2xwmwk2v1p5c86n74ns8d";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/b6ed620e038f361c41115430a1fc119a04cf4f20/recipes/flycheck-ghcmod";
- sha256 = "0mqxg622lqnkb52a0wff7h8b0k6mm1k7fhkfi95fi5sahclja0rp";
- name = "recipe";
- };
- packageRequires = [ dash flycheck ];
- meta = {
- homepage = "https://melpa.org/#/flycheck-ghcmod";
- license = lib.licenses.free;
- };
- }) {};
- flycheck-golangci-lint = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , flycheck
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "flycheck-golangci-lint";
- ename = "flycheck-golangci-lint";
- version = "20190330.712";
- src = fetchFromGitHub {
- owner = "weijiangan";
- repo = "flycheck-golangci-lint";
- rev = "8e446c68311048f0b87febf8ef0379e29d358851";
- sha256 = "0xxxqk8ag082nwwq3dvhzvnbgn9c90mbda7qvi2y4qbh1p1nccqc";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/fffbecd6cb43866fc9f37ba2d2c998ef6186c6d5/recipes/flycheck-golangci-lint";
- sha256 = "1vg80q4axbzb147fglli2w19n70bc934hb3hfl1r4shhpbfjlcgj";
- name = "recipe";
- };
- packageRequires = [ emacs flycheck ];
- meta = {
- homepage = "https://melpa.org/#/flycheck-golangci-lint";
- license = lib.licenses.free;
- };
- }) {};
flycheck-gometalinter = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -34340,33 +18222,6 @@
license = lib.licenses.free;
};
}) {};
- flycheck-gradle = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , flycheck
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "flycheck-gradle";
- ename = "flycheck-gradle";
- version = "20190314.1934";
- src = fetchFromGitHub {
- owner = "jojojames";
- repo = "flycheck-gradle";
- rev = "1ca08bbc343362a923cbdc2010f66e41655e92ab";
- sha256 = "14zvx7f2nszf8p14aibqa4pdg3ly7yw66a58bw2whjw9zfi9rnr0";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/382d9afd2bbb0c137719c308a67d185b86d84331/recipes/flycheck-gradle";
- sha256 = "0zd92lx0mqjqwzclvvhfwwahq80qspyv9k7qcxjc0bl3avjk6a47";
- name = "recipe";
- };
- packageRequires = [ emacs flycheck ];
- meta = {
- homepage = "https://melpa.org/#/flycheck-gradle";
- license = lib.licenses.free;
- };
- }) {};
flycheck-grammalecte = callPackage ({ emacs
, fetchgit
, fetchurl
@@ -34476,33 +18331,6 @@
license = lib.licenses.free;
};
}) {};
- flycheck-inline = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , flycheck
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "flycheck-inline";
- ename = "flycheck-inline";
- version = "20190320.911";
- src = fetchFromGitHub {
- owner = "flycheck";
- repo = "flycheck-inline";
- rev = "cf9eceabff8370f3b834b943a5777b9f914583f9";
- sha256 = "1sk8r90iqxpzrg0lpq4vd8ywdi08i0bbmgdivmr510jw2bpi3wp4";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/a9ecc3a4696d2b3b0f0b8b1ca6e5285380ac046a/recipes/flycheck-inline";
- sha256 = "14ph2f5aj2mpyxbbq4v0rk5zdz7773lf2m83m30h3r1cbh5jmddj";
- name = "recipe";
- };
- packageRequires = [ emacs flycheck ];
- meta = {
- homepage = "https://melpa.org/#/flycheck-inline";
- license = lib.licenses.free;
- };
- }) {};
flycheck-irony = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -34531,33 +18359,6 @@
license = lib.licenses.free;
};
}) {};
- flycheck-jest = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , flycheck
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "flycheck-jest";
- ename = "flycheck-jest";
- version = "20180410.2028";
- src = fetchFromGitHub {
- owner = "jojojames";
- repo = "flycheck-jest";
- rev = "08f27c5ed97c83c445f99fab58f0b6c826f14449";
- sha256 = "1ipr1yyk5vf2i8q7923r18a216sgf759x5f6j5776jcjkhp98c98";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/31e2ac9de5f28ee9d847097cdeb60afa99476a51/recipes/flycheck-jest";
- sha256 = "19dg8v0xzni7x6zn472n4ach1c1jv4syzarfi8ba8r6n26vz9ss4";
- name = "recipe";
- };
- packageRequires = [ emacs flycheck ];
- meta = {
- homepage = "https://melpa.org/#/flycheck-jest";
- license = lib.licenses.free;
- };
- }) {};
flycheck-joker = callPackage ({ fetchFromGitHub
, fetchurl
, flycheck
@@ -34663,87 +18464,6 @@
license = lib.licenses.free;
};
}) {};
- flycheck-lilypond = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , flycheck
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "flycheck-lilypond";
- ename = "flycheck-lilypond";
- version = "20171203.532";
- src = fetchFromGitHub {
- owner = "hinrik";
- repo = "flycheck-lilypond";
- rev = "d6b2c03e94e0b9b6294d7ad0b2fe4a76907a8aed";
- sha256 = "0vafllj20k8b3z7ybnnpny0dj4xmnr5s69p3krwchs77pi04727h";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/da99de90193c9ad362afdbbae28dfba52ef3676e/recipes/flycheck-lilypond";
- sha256 = "0yx0jbilr8z58df13wcssp3p95skcvl8mnhhr6lijak44sd7klbf";
- name = "recipe";
- };
- packageRequires = [ emacs flycheck ];
- meta = {
- homepage = "https://melpa.org/#/flycheck-lilypond";
- license = lib.licenses.free;
- };
- }) {};
- flycheck-liquidhs = callPackage ({ fetchFromGitHub
- , fetchurl
- , flycheck
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "flycheck-liquidhs";
- ename = "flycheck-liquidhs";
- version = "20170412.1626";
- src = fetchFromGitHub {
- owner = "ucsd-progsys";
- repo = "flycheck-liquidhs.el";
- rev = "c27252ac24d77f4b6eec76a4ba9cd61761a3fba9";
- sha256 = "1v5s252w2ai0rrci0rkq6wsx110pw8hp60n67990jg6l6lpvir2s";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/d5921fde4068ff1bb288f6f9e2fe03f4a7fdbbda/recipes/flycheck-liquidhs";
- sha256 = "07dn2ifj49z2jj9zw0f0ydp5rxx9wfmah4fh4vx8slnpjby367yh";
- name = "recipe";
- };
- packageRequires = [ flycheck ];
- meta = {
- homepage = "https://melpa.org/#/flycheck-liquidhs";
- license = lib.licenses.free;
- };
- }) {};
- flycheck-mercury = callPackage ({ dash
- , fetchFromGitHub
- , fetchurl
- , flycheck
- , lib
- , melpaBuild
- , s }:
- melpaBuild {
- pname = "flycheck-mercury";
- ename = "flycheck-mercury";
- version = "20181118.1152";
- src = fetchFromGitHub {
- owner = "flycheck";
- repo = "flycheck-mercury";
- rev = "b6807a8db70981e21a91a93324c31e49de85c89f";
- sha256 = "15pjqglpcwm4wy0cxk1man3ar0n56qi1bjrr1fxfjq2xwsgsfagh";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/a775d12d9b9b6f27a44aeffbbb18de46a9e1b532/recipes/flycheck-mercury";
- sha256 = "1z2y6933f05yv9y2aapmn876jnsydh642zqid3j88bb9kqi67x0h";
- name = "recipe";
- };
- packageRequires = [ dash flycheck s ];
- meta = {
- homepage = "https://melpa.org/#/flycheck-mercury";
- license = lib.licenses.free;
- };
- }) {};
flycheck-mix = callPackage ({ elixir-mode
, fetchFromGitHub
, fetchurl
@@ -34798,59 +18518,6 @@
license = lib.licenses.free;
};
}) {};
- flycheck-mypy = callPackage ({ fetchFromGitHub
- , fetchurl
- , flycheck
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "flycheck-mypy";
- ename = "flycheck-mypy";
- version = "20180907.316";
- src = fetchFromGitHub {
- owner = "lbolla";
- repo = "emacs-flycheck-mypy";
- rev = "6f99166f5229c7b4298cff1818b7eaece1c9c8bd";
- sha256 = "06rdwjljhficbdf74qzlxsy02xhd8msp79fx75nwbxbd84q6dr5w";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/b1f5ad8263ee33b8950ff68e39dca5b1f1748c1b/recipes/flycheck-mypy";
- sha256 = "1w418jm6x3vcg2x31nzc8a3b8asx6gznl6m76ip8w98riz7vy02f";
- name = "recipe";
- };
- packageRequires = [ flycheck ];
- meta = {
- homepage = "https://melpa.org/#/flycheck-mypy";
- license = lib.licenses.free;
- };
- }) {};
- flycheck-nim = callPackage ({ dash
- , fetchFromGitHub
- , fetchurl
- , flycheck
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "flycheck-nim";
- ename = "flycheck-nim";
- version = "20160714.2128";
- src = fetchFromGitHub {
- owner = "ALSchwalm";
- repo = "flycheck-nim";
- rev = "6d27349b66e44578851e6148299709d64d2bde41";
- sha256 = "08rjrh7rjx71fsxf931hhfcga7m6a8sd6bvvr4qbsmhldnzd1aa7";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/68747db46761f28aa2fdf13494d7cecc334cb604/recipes/flycheck-nim";
- sha256 = "0w6f6998rqx8a3i4xhga7mrmvhxrm690wkqwfzspidid2z7v71az";
- name = "recipe";
- };
- packageRequires = [ dash flycheck ];
- meta = {
- homepage = "https://melpa.org/#/flycheck-nim";
- license = lib.licenses.free;
- };
- }) {};
flycheck-nimsuggest = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -34962,61 +18629,6 @@
license = lib.licenses.free;
};
}) {};
- flycheck-pact = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , flycheck
- , lib
- , melpaBuild
- , pact-mode }:
- melpaBuild {
- pname = "flycheck-pact";
- ename = "flycheck-pact";
- version = "20180920.1352";
- src = fetchFromGitHub {
- owner = "kadena-io";
- repo = "flycheck-pact";
- rev = "0e10045064ef89ec8b6f5a473073d47b976a2ca3";
- sha256 = "072jc0vrjg531ydk5bjrjpmbvdk81yw75jqjnvb7alkib6jn5f9r";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/0ffc77b2ddcd4f9c27a2306459cf2fcde7880e3e/recipes/flycheck-pact";
- sha256 = "1nxmh6p2id4cxzs7jxdrk88g8qmvk33nbzmrqhm7962iqizlvnrw";
- name = "recipe";
- };
- packageRequires = [ emacs flycheck pact-mode ];
- meta = {
- homepage = "https://melpa.org/#/flycheck-pact";
- license = lib.licenses.free;
- };
- }) {};
- flycheck-perl6 = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , flycheck
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "flycheck-perl6";
- ename = "flycheck-perl6";
- version = "20180509.1501";
- src = fetchFromGitHub {
- owner = "hinrik";
- repo = "flycheck-perl6";
- rev = "b804702305d7a6e26f762ff98cfdeec2e9dd4cb7";
- sha256 = "0gys38rlx9lx35bia6nj7kfhz1v5xfrirgf8adwk7b2hfjazrsib";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/2f6ecdb2ce6bc74a27dca01ab4942778e986ac8f/recipes/flycheck-perl6";
- sha256 = "0czc0fqx7g543afzkbjyz4bhxfl4s3v5swn9xrkayv8cgk8acvp4";
- name = "recipe";
- };
- packageRequires = [ emacs flycheck ];
- meta = {
- homepage = "https://melpa.org/#/flycheck-perl6";
- license = lib.licenses.free;
- };
- }) {};
flycheck-phpstan = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -35045,62 +18657,6 @@
license = lib.licenses.free;
};
}) {};
- flycheck-pkg-config = callPackage ({ dash
- , fetchFromGitHub
- , fetchurl
- , flycheck
- , lib
- , melpaBuild
- , s }:
- melpaBuild {
- pname = "flycheck-pkg-config";
- ename = "flycheck-pkg-config";
- version = "20180430.1543";
- src = fetchFromGitHub {
- owner = "Wilfred";
- repo = "flycheck-pkg-config";
- rev = "e72e4c1b8153611ed82695673af84096f4d52795";
- sha256 = "07zyrbib9qzy4kj3p7kljcfi53qhb28nf0sjhhkqzdj09iv2k9wf";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5b2e88f2f126c9ff8b4261d6adb4c0d8d3049f33/recipes/flycheck-pkg-config";
- sha256 = "0w7h4fa4mv8377sdbkilqcw4b9qda98c1k01nxic7a8i3iyq02d6";
- name = "recipe";
- };
- packageRequires = [ dash flycheck s ];
- meta = {
- homepage = "https://melpa.org/#/flycheck-pkg-config";
- license = lib.licenses.free;
- };
- }) {};
- flycheck-plantuml = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , flycheck
- , lib
- , melpaBuild
- , plantuml-mode }:
- melpaBuild {
- pname = "flycheck-plantuml";
- ename = "flycheck-plantuml";
- version = "20171017.1811";
- src = fetchFromGitHub {
- owner = "alexmurray";
- repo = "flycheck-plantuml";
- rev = "183be89e1dbba0b38237dd198dff600e0790309d";
- sha256 = "1fbdbpwrlkvbgv693ndr3zamkf3gp28v94jg911fsav8bk08f6pq";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/65f050860a0efda8cf472c2945b79a0a57651556/recipes/flycheck-plantuml";
- sha256 = "01l22isiym635471628b951n025ls3lm6gfhfp6f8n8w7v1sb986";
- name = "recipe";
- };
- packageRequires = [ emacs flycheck plantuml-mode ];
- meta = {
- homepage = "https://melpa.org/#/flycheck-plantuml";
- license = lib.licenses.free;
- };
- }) {};
flycheck-pony = callPackage ({ fetchFromGitHub
, fetchurl
, flycheck
@@ -35183,60 +18739,6 @@
license = lib.licenses.free;
};
}) {};
- flycheck-posframe = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , flycheck
- , lib
- , melpaBuild
- , posframe }:
- melpaBuild {
- pname = "flycheck-posframe";
- ename = "flycheck-posframe";
- version = "20190327.411";
- src = fetchFromGitHub {
- owner = "alexmurray";
- repo = "flycheck-posframe";
- rev = "d1591cfaef04c67e1a01a32833f140ab27c33773";
- sha256 = "1c1fxl8l8z5b6k4hb2bk6n6w4diyg9sz04qbqq91qls8rwnnvy0a";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/124f2a7833e3386a0bf57c8111d782ae7a7ee02e/recipes/flycheck-posframe";
- sha256 = "02ym2isn761w2nsfxiqjh0jk4md9wy3hk9na2aw7pyycm5cgmfwp";
- name = "recipe";
- };
- packageRequires = [ emacs flycheck posframe ];
- meta = {
- homepage = "https://melpa.org/#/flycheck-posframe";
- license = lib.licenses.free;
- };
- }) {};
- flycheck-prospector = callPackage ({ fetchFromGitHub
- , fetchurl
- , flycheck
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "flycheck-prospector";
- ename = "flycheck-prospector";
- version = "20180523.2150";
- src = fetchFromGitHub {
- owner = "chocoelho";
- repo = "flycheck-prospector";
- rev = "d5b81adb5c8261b935baf0a614dd4b776280392e";
- sha256 = "1g66gm538dwkvyl5rb199rnp5y8knrr3697m2qi0x0f18l072cg6";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/45475a408ff287f4f9d2a8bc729b995635579c84/recipes/flycheck-prospector";
- sha256 = "1z028qi40pk7jh0m8w332kr5qi6k6sw1kbymqdxxfakh1976fww9";
- name = "recipe";
- };
- packageRequires = [ flycheck ];
- meta = {
- homepage = "https://melpa.org/#/flycheck-prospector";
- license = lib.licenses.free;
- };
- }) {};
flycheck-pycheckers = callPackage ({ fetchFromGitHub
, fetchurl
, flycheck
@@ -35263,60 +18765,6 @@
license = lib.licenses.free;
};
}) {};
- flycheck-pyflakes = callPackage ({ fetchFromGitHub
- , fetchurl
- , flycheck
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "flycheck-pyflakes";
- ename = "flycheck-pyflakes";
- version = "20170330.1611";
- src = fetchFromGitHub {
- owner = "Wilfred";
- repo = "flycheck-pyflakes";
- rev = "61b045939e3743b2162b7e4e73249c66fc2b8f65";
- sha256 = "03p0666vpprp6ijkvx9ypaw58bdq42gh533270plv2k5l8r22cl1";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/05e6f3041151006e44f91e5bcbaa7be3750fb403/recipes/flycheck-pyflakes";
- sha256 = "186h5ky48i1xmjbvvhn1i0rzhsy8bgdv1d8f7rlr2z4brb52f9c1";
- name = "recipe";
- };
- packageRequires = [ flycheck ];
- meta = {
- homepage = "https://melpa.org/#/flycheck-pyflakes";
- license = lib.licenses.free;
- };
- }) {};
- flycheck-pyre = callPackage ({ cl-lib ? null
- , emacs
- , fetchFromGitHub
- , fetchurl
- , flycheck
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "flycheck-pyre";
- ename = "flycheck-pyre";
- version = "20190215.422";
- src = fetchFromGitHub {
- owner = "linnik";
- repo = "flycheck-pyre";
- rev = "0560122caae207d99d8af1ac2b4e5d6f6a1ce444";
- sha256 = "0f58127197q6yfylz53nigyn7v91pcsdd91ywfgq5lrl0f5fvmdy";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/aca6199ebfbf93f844c8f7a3db785dec079ef8af/recipes/flycheck-pyre";
- sha256 = "0h7ccxw9ymlmr2vq3p61cbfxfcjs8pzm73654s13c18rbl6dzfxv";
- name = "recipe";
- };
- packageRequires = [ cl-lib emacs flycheck ];
- meta = {
- homepage = "https://melpa.org/#/flycheck-pyre";
- license = lib.licenses.free;
- };
- }) {};
flycheck-rtags = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -35375,60 +18823,6 @@
license = lib.licenses.free;
};
}) {};
- flycheck-soar = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , flycheck
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "flycheck-soar";
- ename = "flycheck-soar";
- version = "20181106.52";
- src = fetchFromGitHub {
- owner = "tszg";
- repo = "flycheck-soar";
- rev = "d2f03a0af9b625a645f3194dc24cfeee94d92760";
- sha256 = "02ll2nw2x45nfmxdj1ps62jr663spy01vy8gfg1qh2rl1pjviwqw";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/15cae578c5ba5152be0726f046b5f2dc4719a387/recipes/flycheck-soar";
- sha256 = "14xpq3pdfwacmhl9x8fdzcsanpf6zljdzh6gwclw724k720acbdl";
- name = "recipe";
- };
- packageRequires = [ emacs flycheck ];
- meta = {
- homepage = "https://melpa.org/#/flycheck-soar";
- license = lib.licenses.free;
- };
- }) {};
- flycheck-stack = callPackage ({ fetchFromGitHub
- , fetchurl
- , flycheck
- , haskell-mode
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "flycheck-stack";
- ename = "flycheck-stack";
- version = "20160520.244";
- src = fetchFromGitHub {
- owner = "chrisdone";
- repo = "flycheck-stack";
- rev = "f04235e00998000ee2c305f5a3ee72bb5dbbc926";
- sha256 = "139q43ldvymfxns8zv7gxasn3sg0rn4i9yz08wgk50psg5zq5mjr";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/b77f55989d11d1efacbad0fd3876dd27006f2679/recipes/flycheck-stack";
- sha256 = "1r9zppqmp1i5i06jhkrgvwy1p3yc8kmcvgibricydqsij26lhpmf";
- name = "recipe";
- };
- packageRequires = [ flycheck haskell-mode ];
- meta = {
- homepage = "https://melpa.org/#/flycheck-stack";
- license = lib.licenses.free;
- };
- }) {};
flycheck-status-emoji = callPackage ({ cl-lib ? null
, emacs
, fetchFromGitHub
@@ -35512,60 +18906,6 @@
license = lib.licenses.free;
};
}) {};
- flycheck-swiftlint = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , flycheck
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "flycheck-swiftlint";
- ename = "flycheck-swiftlint";
- version = "20180829.2040";
- src = fetchFromGitHub {
- owner = "jojojames";
- repo = "flycheck-swiftlint";
- rev = "65101873c4c9f8e7eac9471188b161eeddda1555";
- sha256 = "007n0jv5z159pw5bcqcycv6h31rl0z16m22yrhqi94yc14jlw5ma";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/7e2a979726507e974a0a19dfc2ca6884157025be/recipes/flycheck-swiftlint";
- sha256 = "1nwxv4l3ml9hlc8qf8a8x1bnnvdj80sb8nfbkcfiqwak315wihr4";
- name = "recipe";
- };
- packageRequires = [ emacs flycheck ];
- meta = {
- homepage = "https://melpa.org/#/flycheck-swiftlint";
- license = lib.licenses.free;
- };
- }) {};
- flycheck-tcl = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , flycheck
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "flycheck-tcl";
- ename = "flycheck-tcl";
- version = "20180327.559";
- src = fetchFromGitHub {
- owner = "nwidger";
- repo = "flycheck-tcl";
- rev = "7ca23f4673e178b9f5dcc8a82b86cf05b15d7236";
- sha256 = "17mmj0yx7d7cwyq35ll1lw4j0yyha172375apvanrkpgpzjpnvrq";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/fafc86df6c15348711f16302bb86c0ee08c08454/recipes/flycheck-tcl";
- sha256 = "0rmc7rk0n4mgk11jgza1dn1nkjyi7rqs79d3p0cj1081znyj56f3";
- name = "recipe";
- };
- packageRequires = [ emacs flycheck ];
- meta = {
- homepage = "https://melpa.org/#/flycheck-tcl";
- license = lib.licenses.free;
- };
- }) {};
flycheck-tip = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -35621,34 +18961,6 @@
license = lib.licenses.free;
};
}) {};
- flycheck-vale = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , flycheck
- , let-alist
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "flycheck-vale";
- ename = "flycheck-vale";
- version = "20180928.42";
- src = fetchFromGitHub {
- owner = "abingham";
- repo = "flycheck-vale";
- rev = "131dacdf55e2b469d64543e4ae373aa93ec40a4f";
- sha256 = "07927h7d8qpf7wi6ish8lh15x414qz4298bik3p7vgls7qr8di4h";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/7693eeb536e601589b49f96d0e2734cd08fad4f2/recipes/flycheck-vale";
- sha256 = "1ny30q81hq62s178rj3jjwsf9f3988dd6pl82r0vq53z3asnsxyd";
- name = "recipe";
- };
- packageRequires = [ emacs flycheck let-alist ];
- meta = {
- homepage = "https://melpa.org/#/flycheck-vale";
- license = lib.licenses.free;
- };
- }) {};
flycheck-vdm = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -35677,33 +18989,6 @@
license = lib.licenses.free;
};
}) {};
- flycheck-xcode = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , flycheck
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "flycheck-xcode";
- ename = "flycheck-xcode";
- version = "20180121.2251";
- src = fetchFromGitHub {
- owner = "jojojames";
- repo = "flycheck-xcode";
- rev = "6147ab777e2c08e4f5ffdbd85d3013ca700fa835";
- sha256 = "1jwd7xhg7gfjppimf1kxwxwsgzkqc8w86wgp7kqphp79ydd4jgp8";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5fc66203fdd1721bf1a6f8dcec51694c57d2e690/recipes/flycheck-xcode";
- sha256 = "0n86hn6rf0mrx1385pwxgkx28xrbnksarlzb07h9d63s0yb5shaa";
- name = "recipe";
- };
- packageRequires = [ emacs flycheck ];
- meta = {
- homepage = "https://melpa.org/#/flycheck-xcode";
- license = lib.licenses.free;
- };
- }) {};
flycheck-yamllint = callPackage ({ fetchFromGitHub
, fetchurl
, flycheck
@@ -35730,33 +19015,6 @@
license = lib.licenses.free;
};
}) {};
- flycheck-yang = callPackage ({ fetchFromGitHub
- , fetchurl
- , flycheck
- , lib
- , melpaBuild
- , yang-mode }:
- melpaBuild {
- pname = "flycheck-yang";
- ename = "flycheck-yang";
- version = "20180312.1131";
- src = fetchFromGitHub {
- owner = "andaru";
- repo = "flycheck-yang";
- rev = "47881fc42ef0163c47064b72b5d6dbef4f83d778";
- sha256 = "0bkbl1pas44bl6s3xjdb5zjbd6bmfjk39md5ds1ix4wchnkjm3iy";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/e58b4f4294d11424918b399898c0044f5b76ab14/recipes/flycheck-yang";
- sha256 = "0agfmirjwlz13aq1jh94agav0y1rxkyhj7mngdgys7mwjxy0ac9h";
- name = "recipe";
- };
- packageRequires = [ flycheck yang-mode ];
- meta = {
- homepage = "https://melpa.org/#/flycheck-yang";
- license = lib.licenses.free;
- };
- }) {};
flycheck-ycmd = callPackage ({ dash
, emacs
, fetchFromGitHub
@@ -35813,32 +19071,6 @@
license = lib.licenses.free;
};
}) {};
- flymake-cppcheck = callPackage ({ fetchFromGitHub
- , fetchurl
- , flymake-easy
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "flymake-cppcheck";
- ename = "flymake-cppcheck";
- version = "20140415.557";
- src = fetchFromGitHub {
- owner = "senda-akiha";
- repo = "flymake-cppcheck";
- rev = "9554f504d425a04fa6a875f7e3179bc7cf07dd03";
- sha256 = "1dlxn8hhz3gfrhvkwhlxjmby6zc0g8yy9n9j9dn8c4cbi2fhyx5m";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/2a83d56c6e150de5d4fdbd89f271f18e5304afd8/recipes/flymake-cppcheck";
- sha256 = "11brzgq2zl32a8a2dgj2imsldjqaqvxwk2jypf4bmfwa3mkcqh3d";
- name = "recipe";
- };
- packageRequires = [ flymake-easy ];
- meta = {
- homepage = "https://melpa.org/#/flymake-cppcheck";
- license = lib.licenses.free;
- };
- }) {};
flymake-css = callPackage ({ fetchFromGitHub
, fetchurl
, flymake-easy
@@ -35943,31 +19175,6 @@
license = lib.licenses.free;
};
}) {};
- flymake-elixir = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "flymake-elixir";
- ename = "flymake-elixir";
- version = "20130810.717";
- src = fetchFromGitHub {
- owner = "syl20bnr";
- repo = "flymake-elixir";
- rev = "3810566cffe35d04cc3f01e27fe397d68d52f802";
- sha256 = "04w6g4wixrpfidxbk2bwazhvf0cx3c2v2mxnycqqlqkg0m0sb0fn";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/05dae578f0dd6b5185f666431b3f36aad3aeffa1/recipes/flymake-elixir";
- sha256 = "15r3m58hnc75l3j02xdr8yg25fbn2sbz1295ac44widzis82m792";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/flymake-elixir";
- license = lib.licenses.free;
- };
- }) {};
flymake-eslint = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -36019,83 +19226,6 @@
license = lib.licenses.free;
};
}) {};
- flymake-go = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "flymake-go";
- ename = "flymake-go";
- version = "20150714.33";
- src = fetchFromGitHub {
- owner = "robert-zaremba";
- repo = "flymake-go";
- rev = "ae83761aa908c1a50ff34af04f00dcc46bca2ce9";
- sha256 = "03gh0y988pksghmmvb5av2vnlbcsncafvn4nwihsis0bhys8k28q";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/b42b8b34388803439c249f16fdf14257ef182ed6/recipes/flymake-go";
- sha256 = "030m67d8g60ljm7ny3jh4vwj3cshypsklgbjpcvh32y109ga1hy1";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/flymake-go";
- license = lib.licenses.free;
- };
- }) {};
- flymake-google-cpplint = callPackage ({ fetchFromGitHub
- , fetchurl
- , flymake-easy
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "flymake-google-cpplint";
- ename = "flymake-google-cpplint";
- version = "20140205.525";
- src = fetchFromGitHub {
- owner = "senda-akiha";
- repo = "flymake-google-cpplint";
- rev = "5d36ff947d4cdcc3ac5e7f48e543fe0be949ba72";
- sha256 = "18a7l1wmgxqqzr9mzg5rb9626rwyifmiw34chg9jchfkm8wbz0fv";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/01f8e5c2b63e80f0411860fde38bf694df3bfc8f/recipes/flymake-google-cpplint";
- sha256 = "0q7v70xbprh03f1yabq216q4q82a58s2c1ykr6ig49cg1jdgzkf3";
- name = "recipe";
- };
- packageRequires = [ flymake-easy ];
- meta = {
- homepage = "https://melpa.org/#/flymake-google-cpplint";
- license = lib.licenses.free;
- };
- }) {};
- flymake-gradle = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "flymake-gradle";
- ename = "flymake-gradle";
- version = "20190314.1933";
- src = fetchFromGitHub {
- owner = "jojojames";
- repo = "flymake-gradle";
- rev = "dbedd29b78d4828ef57d4de20867be5df3eaab99";
- sha256 = "0g6h09lz68b4dvqv5sksr7gkab0599fbm07xnc2mk01lzbas43b0";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/7cccc8537324e0faf7fd35325e3ccd3b2e05771a/recipes/flymake-gradle";
- sha256 = "00wpymzw2j2zx37nq8qf77pk04r0hxlmlwykcj6yzq9bfgi75wnf";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/flymake-gradle";
- license = lib.licenses.free;
- };
- }) {};
flymake-haml = callPackage ({ fetchFromGitHub
, fetchurl
, flymake-easy
@@ -36174,32 +19304,6 @@
license = lib.licenses.free;
};
}) {};
- flymake-jshint = callPackage ({ fetchFromGitHub
- , fetchurl
- , flymake-easy
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "flymake-jshint";
- ename = "flymake-jshint";
- version = "20140319.1500";
- src = fetchFromGitHub {
- owner = "Wilfred";
- repo = "flymake-jshint.el";
- rev = "79dd554c227883c487db38ac111306c8d5382c95";
- sha256 = "0ywm9fpb7d7ry2fly8719fa41q97yj9za3phqhv6j1chzaxvcv3a";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/144511ce3378b468751b1ee627b77a2d22fe8dfc/recipes/flymake-jshint";
- sha256 = "0j4djylz6mrq14qmbm35k3gvvsw6i9qc4gd9ma4fykiqzkdjsg7j";
- name = "recipe";
- };
- packageRequires = [ flymake-easy ];
- meta = {
- homepage = "https://melpa.org/#/flymake-jshint";
- license = lib.licenses.free;
- };
- }) {};
flymake-jslint = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -36251,32 +19355,6 @@
license = lib.licenses.free;
};
}) {};
- flymake-ktlint = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "flymake-ktlint";
- ename = "flymake-ktlint";
- version = "20180830.2046";
- src = fetchFromGitHub {
- owner = "jojojames";
- repo = "flymake-ktlint";
- rev = "bea8bf350802c06756efd4e6dfba65f31dc41d78";
- sha256 = "0sycdd3har8rxg8jm55nl25g8f41y3rsnsn4sblb7pbz5x5i6ixc";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/7b2e630e5e16044fb8ffe251f4fa58fb8f3d6bb9/recipes/flymake-ktlint";
- sha256 = "07v90pkhmrz59m6hf1lzxq4h3kk4qblihw4qgz5phbj4l5pahivd";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/flymake-ktlint";
- license = lib.licenses.free;
- };
- }) {};
flymake-less = callPackage ({ fetchFromGitHub
, fetchurl
, less-css-mode
@@ -36303,31 +19381,6 @@
license = lib.licenses.free;
};
}) {};
- flymake-lua = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "flymake-lua";
- ename = "flymake-lua";
- version = "20170128.1754";
- src = fetchFromGitHub {
- owner = "sroccaserra";
- repo = "flymake-lua";
- rev = "dcc32b62a285215898ae774ba63dbda0656f6f53";
- sha256 = "07my1w3cdj9iq2f9jfh04m5zivig7b97kha3ajjlx9avss976baq";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/63889df90a8cd4a39871cc43ccc559eff7b8dd5f/recipes/flymake-lua";
- sha256 = "05q6bifr1ywirk6sdn0pr812nlrzsi79bpbgn6ay4jyzmhhfi9z0";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/flymake-lua";
- license = lib.licenses.free;
- };
- }) {};
flymake-perlcritic = callPackage ({ fetchFromGitHub
, fetchurl
, flymake ? null
@@ -36380,58 +19433,6 @@
license = lib.licenses.free;
};
}) {};
- flymake-phpcs = callPackage ({ fetchFromGitHub
- , fetchurl
- , flymake-easy
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "flymake-phpcs";
- ename = "flymake-phpcs";
- version = "20140712.2331";
- src = fetchFromGitHub {
- owner = "senda-akiha";
- repo = "flymake-phpcs";
- rev = "a4d383474e055e554aaf1cd617055d5d7181aa50";
- sha256 = "140rlp6m0aqibwa0bhv8w6l3giziybqdw7x271nq8f3r60ch13bi";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/6e4d444198f593cfb03c7ca84f3e90db13ef5a01/recipes/flymake-phpcs";
- sha256 = "0zzxi3c203fiw6jp1ar9bb9f28x2lg23bczgy8n5cicrq59jfsn9";
- name = "recipe";
- };
- packageRequires = [ flymake-easy ];
- meta = {
- homepage = "https://melpa.org/#/flymake-phpcs";
- license = lib.licenses.free;
- };
- }) {};
- flymake-puppet = callPackage ({ fetchFromGitHub
- , fetchurl
- , flymake-easy
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "flymake-puppet";
- ename = "flymake-puppet";
- version = "20170731.2254";
- src = fetchFromGitHub {
- owner = "benprew";
- repo = "flymake-puppet";
- rev = "9579e5c736cb890195464fabf51df113313de88d";
- sha256 = "1bk16l8rbvrwmcd0zd2yg8xmfn7b036716niy21wfizmar0pk7p7";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/302dbe34e7949da9c65e9c7bf2ab924db91b968f/recipes/flymake-puppet";
- sha256 = "1izq6s33p74dy4wzfnjii8wjs723bm5ggl0w6hkvzgbmyjc01hxv";
- name = "recipe";
- };
- packageRequires = [ flymake-easy ];
- meta = {
- homepage = "https://melpa.org/#/flymake-puppet";
- license = lib.licenses.free;
- };
- }) {};
flymake-python-pyflakes = callPackage ({ fetchFromGitHub
, fetchurl
, flymake-easy
@@ -36458,32 +19459,6 @@
license = lib.licenses.free;
};
}) {};
- flymake-racket = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "flymake-racket";
- ename = "flymake-racket";
- version = "20180911.1809";
- src = fetchFromGitHub {
- owner = "jojojames";
- repo = "flymake-racket";
- rev = "7900d9c1a34a55ca281cc997e9620f5f31cc098c";
- sha256 = "10iygb5wmdqc2fk398l918bz56myd858h6xvgd8ml1av7v5x3zmp";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/67f2b469ea8df6d0db6b9ece91f544c0e7dd3ab2/recipes/flymake-racket";
- sha256 = "173dyn8bxggyh0g97gg5f0si3905116i3k6s3islsblgrz00gjcn";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/flymake-racket";
- license = lib.licenses.free;
- };
- }) {};
flymake-ruby = callPackage ({ fetchFromGitHub
, fetchurl
, flymake-easy
@@ -36510,32 +19485,6 @@
license = lib.licenses.free;
};
}) {};
- flymake-rust = callPackage ({ fetchFromGitHub
- , fetchurl
- , flymake-easy
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "flymake-rust";
- ename = "flymake-rust";
- version = "20170729.1439";
- src = fetchFromGitHub {
- owner = "jxs";
- repo = "flymake-rust";
- rev = "2f42d1f2dad73ec9de460eda6176e3ab25c446f0";
- sha256 = "02fgkv9hxwrv8n5h6izb5jyjcpazlf86pjjj4zkv1ycpa6gyzzwn";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/flymake-rust";
- sha256 = "0fgpkz1d4y2ywizwwrhqdqncdmhdnbgf3mcv3hjpa82x44yb7j32";
- name = "recipe";
- };
- packageRequires = [ flymake-easy ];
- meta = {
- homepage = "https://melpa.org/#/flymake-rust";
- license = lib.licenses.free;
- };
- }) {};
flymake-sass = callPackage ({ fetchFromGitHub
, fetchurl
, flymake-easy
@@ -36588,187 +19537,6 @@
license = lib.licenses.free;
};
}) {};
- flymake-shellcheck = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "flymake-shellcheck";
- ename = "flymake-shellcheck";
- version = "20181213.1624";
- src = fetchFromGitHub {
- owner = "federicotdn";
- repo = "flymake-shellcheck";
- rev = "ee240f2177510ffadbb21220e2b2376edff05020";
- sha256 = "1nrpgxwkybz7wd0751j9224fvg0lfmkdxqac39mlbzx8ypk6sy3q";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/8dccb106ff6c9cb4b14440be9026c3e427dddff2/recipes/flymake-shellcheck";
- sha256 = "1gvm4sh1sga3gkkg0zi7ynvp9b09sx16cclj2qzawmgfv2c111vy";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/flymake-shellcheck";
- license = lib.licenses.free;
- };
- }) {};
- flymake-solidity = callPackage ({ fetchFromGitHub
- , fetchurl
- , flymake-easy
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "flymake-solidity";
- ename = "flymake-solidity";
- version = "20170804.2344";
- src = fetchFromGitHub {
- owner = "kootenpv";
- repo = "flymake-solidity";
- rev = "48bfe9525f764d8a68cc0270905dbf45bfd00bb8";
- sha256 = "0v8sf5m0mygqahjyadxgffdf7p59wb0qnghyxajhc69sbg58hnnd";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/3b13f57b77f6648336a049a8dda37757d4dafd90/recipes/flymake-solidity";
- sha256 = "10d1g14y3l670lqgfdsnyxanzcjs2jpgnliih56n1xhcpyz551l3";
- name = "recipe";
- };
- packageRequires = [ flymake-easy ];
- meta = {
- homepage = "https://melpa.org/#/flymake-solidity";
- license = lib.licenses.free;
- };
- }) {};
- flymake-vala = callPackage ({ fetchFromGitHub
- , fetchurl
- , flymake-easy
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "flymake-vala";
- ename = "flymake-vala";
- version = "20150325.2231";
- src = fetchFromGitHub {
- owner = "daniellawrence";
- repo = "flymake-vala";
- rev = "c3674f461fc84fb0300cd3a562fb903a59782745";
- sha256 = "0qpr0frcn3w0f6yz8vgavwbxvn6wb0qkfk653v4cfy57dvslr4wf";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/flymake-vala";
- sha256 = "1fs4alyf3dckdf1pm6vgh4wjpl22wrlhfx9nv072l0dg48zgyw16";
- name = "recipe";
- };
- packageRequires = [ flymake-easy ];
- meta = {
- homepage = "https://melpa.org/#/flymake-vala";
- license = lib.licenses.free;
- };
- }) {};
- flymake-vnu = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "flymake-vnu";
- ename = "flymake-vnu";
- version = "20181127.1816";
- src = fetchFromGitHub {
- owner = "theneosloth";
- repo = "flymake-vnu";
- rev = "7c4ab9d12611756ad5a80d866890b2f9b73fb611";
- sha256 = "1jzdypfbvdbm9z6ankl35bzlpf32iymzlvxmdykddzwzbhkj1npf";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/0cfb4c70ebb75088ef6fb39efde91429802b4671/recipes/flymake-vnu";
- sha256 = "05i6sfylg716cr0k0hyvkmag25qcqh51plljv6sw8250fwxwn0xn";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/flymake-vnu";
- license = lib.licenses.free;
- };
- }) {};
- flymake-yaml = callPackage ({ fetchFromGitHub
- , fetchurl
- , flymake-easy
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "flymake-yaml";
- ename = "flymake-yaml";
- version = "20130423.848";
- src = fetchFromGitHub {
- owner = "yasuyk";
- repo = "flymake-yaml";
- rev = "0dd11eed29fe4054ff5b4e06e2c39b4d925d6aae";
- sha256 = "1z6x4hkawjpch73lz2g4wcab1pbhg43wp8pmfcnnljy6jp3bmy2b";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/888bcbcb24866abd990abd5b467461a1e1fc13fa/recipes/flymake-yaml";
- sha256 = "17wghm797np4hlidf3wwb47w4klwc6qyk6ry1z05psl3nykws1g7";
- name = "recipe";
- };
- packageRequires = [ flymake-easy ];
- meta = {
- homepage = "https://melpa.org/#/flymake-yaml";
- license = lib.licenses.free;
- };
- }) {};
- flymd = callPackage ({ cl-lib ? null
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "flymd";
- ename = "flymd";
- version = "20160617.514";
- src = fetchFromGitHub {
- owner = "mola-T";
- repo = "flymd";
- rev = "84d5a68bcfed4a295952c33ffcd11e880978d9d7";
- sha256 = "0j2mmr9f0d3zkhb92zc820iw4vkz958rm3ca7l9k3gx37cc4sn2l";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/07e4121f4cfaf4c33828f84b6b06f9cf2b64a0a2/recipes/flymd";
- sha256 = "16wq34xv7hswbxw5w9wnnsw2mhc9qzhmaa6aydhh32blcszhp4rk";
- name = "recipe";
- };
- packageRequires = [ cl-lib ];
- meta = {
- homepage = "https://melpa.org/#/flymd";
- license = lib.licenses.free;
- };
- }) {};
- flyparens = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "flyparens";
- ename = "flyparens";
- version = "20140723.1146";
- src = fetchFromGitHub {
- owner = "jiyoo";
- repo = "flyparens";
- rev = "af9b8cfd647d0e5f97684d613dc2eea7cfc19398";
- sha256 = "07hy1kyw4cbxydmhp4scsy3dcbk2s50rmdp8rch1vbcjk5lj4mvb";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/8c4565ae5b84eb8733cb7fd28cf6a087fd1fedab/recipes/flyparens";
- sha256 = "1mvbfq062qj8vmgzk6rymg3idlfc1makfp1scmjvpw98h30j2a0a";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/flyparens";
- license = lib.licenses.free;
- };
- }) {};
flyspell-correct = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -36926,33 +19694,6 @@
license = lib.licenses.free;
};
}) {};
- fm-bookmarks = callPackage ({ cl-lib ? null
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "fm-bookmarks";
- ename = "fm-bookmarks";
- version = "20170104.916";
- src = fetchFromGitHub {
- owner = "kuanyui";
- repo = "fm-bookmarks.el";
- rev = "11dacfd16a926bfecba96a94c6b13e162c7717f7";
- sha256 = "0is4617ivga8qrw19y7fy883fgczzdxvrl15ja1dydzj2cbn5d97";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1ca020aff7f19cc150cd6968ae7c441372e240c2/recipes/fm-bookmarks";
- sha256 = "12ami0k6rfwhrr6xgj0dls4mkk6dp0r9smwzhr4897dv0lw89bdj";
- name = "recipe";
- };
- packageRequires = [ cl-lib emacs ];
- meta = {
- homepage = "https://melpa.org/#/fm-bookmarks";
- license = lib.licenses.free;
- };
- }) {};
fn = callPackage ({ cl-lib ? null
, dash
, dash-functional
@@ -37009,58 +19750,6 @@
license = lib.licenses.free;
};
}) {};
- focus-autosave-mode = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "focus-autosave-mode";
- ename = "focus-autosave-mode";
- version = "20160519.1416";
- src = fetchFromGitHub {
- owner = "Vifon";
- repo = "focus-autosave-mode.el";
- rev = "e89ed22aa4dfc76e1b844b202aedd468ad58814a";
- sha256 = "1c1mh96kghp5d22assm9kzxlp0cy7bws9yrqwwgaw3d72cba40k3";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/focus-autosave-mode";
- sha256 = "10cd1x5b1w7apgxd2kq45lv0jlj7az4zmn2iz4iymf2r2hancrcd";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/focus-autosave-mode";
- license = lib.licenses.free;
- };
- }) {};
- foggy-night-theme = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "foggy-night-theme";
- ename = "foggy-night-theme";
- version = "20190123.814";
- src = fetchFromGitHub {
- owner = "mswift42";
- repo = "foggy-night-theme";
- rev = "14894e06ee5c6e14db36f2cb07387ee971c1736f";
- sha256 = "1rjhb8gjlnw002y8sjn2d976qdsjgvp9hsrlca1h5wmmkfha9knp";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/65b3f5959241e601fdf9469e407d153cebcbe24c/recipes/foggy-night-theme";
- sha256 = "03x3dhkk81d2zh9nflq6wd7v3khpy9046v8qhq4i9dw6davvy9j4";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/foggy-night-theme";
- license = lib.licenses.free;
- };
- }) {};
fold-dwim = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -37137,83 +19826,6 @@
license = lib.licenses.free;
};
}) {};
- folding = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "folding";
- ename = "folding";
- version = "20170925.838";
- src = fetchFromGitHub {
- owner = "jaalto";
- repo = "project-emacs--folding-mode";
- rev = "3bf134fd1ecfa8767ab7020c25281ea5ce9968a2";
- sha256 = "0kcm4k71syz778cbwqf68a63k4vmhygaib3ylwxbm5dq1dmr7iry";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1912296b7879019bea5ba8353d511496e3a9ca2d/recipes/folding";
- sha256 = "0rb4f4llc4z502znmmc0hfi7n07lp01msx4y1iyqijvqzlq2i93y";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/folding";
- license = lib.licenses.free;
- };
- }) {};
- font-lock-profiler = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "font-lock-profiler";
- ename = "font-lock-profiler";
- version = "20170208.1208";
- src = fetchFromGitHub {
- owner = "Lindydancer";
- repo = "font-lock-profiler";
- rev = "6e096458416888a4f63cca0d6bc5965a052753c8";
- sha256 = "186fvyfbakz54fr8j1l7cijvaklw96m1hfbjyw7nha08zc2m1hw5";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/b372892a29376bc3f0101ea5865efead41e1df26/recipes/font-lock-profiler";
- sha256 = "089r74jgi5gwjk9w1bc600vkj0p5ac84rgcl7aqcpqfbh9ylwcp9";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/font-lock-profiler";
- license = lib.licenses.free;
- };
- }) {};
- font-lock-studio = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "font-lock-studio";
- ename = "font-lock-studio";
- version = "20170127.1251";
- src = fetchFromGitHub {
- owner = "Lindydancer";
- repo = "font-lock-studio";
- rev = "12c35967b31233e06946c70627aa3152dacfe261";
- sha256 = "0q0s6f5vi3sfifj7vq2nnsmgyyivp1sd3idk32858md5ri71qif0";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/f8046fef1ac09cac1113dd5d0a6e1bf8e0c77bb1/recipes/font-lock-studio";
- sha256 = "0swwbfaypc78cg4ak24cc92kgxmr1x9vcpaw3jz4zgpm2wzbgmrq";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/font-lock-studio";
- license = lib.licenses.free;
- };
- }) {};
font-utils = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -37294,57 +19906,6 @@
license = lib.licenses.free;
};
}) {};
- forecast = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "forecast";
- ename = "forecast";
- version = "20190124.1028";
- src = fetchFromGitHub {
- owner = "cadadr";
- repo = "elisp";
- rev = "b19b37be332bada6b18d4d895edf6ce78ab420c4";
- sha256 = "0i97l8fdrjjb6dzfcqgss5yj4ibkiaxnj32sm6nyr2s7bijkvi4x";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/a7ea18a56370348715dec91f75adc162c800dd10/recipes/forecast";
- sha256 = "0zng8xdficpfccq484pghzg8yylihcy8aq0vpxd1w6l40m2qf6zn";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/forecast";
- license = lib.licenses.free;
- };
- }) {};
- foreign-regexp = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "foreign-regexp";
- ename = "foreign-regexp";
- version = "20180224.321";
- src = fetchFromGitHub {
- owner = "k-talo";
- repo = "foreign-regexp.el";
- rev = "2ec5c44f27c2396ee487aa0ed77ae47d143fa5aa";
- sha256 = "0zww0q8x99sfwzf05pk7blsi3v8xiw4xgmlwnv1qlf2qxjkz1xhb";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/d05514013948a520cf0dcaf1dc2ef2300dd55e98/recipes/foreign-regexp";
- sha256 = "189cq8n759f28nx10fn3w4qbq7q49bb788kp9l70pj38jgnjn7n7";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/foreign-regexp";
- license = lib.licenses.free;
- };
- }) {};
foreman-mode = callPackage ({ dash
, dash-functional
, emacs
@@ -37375,32 +19936,6 @@
license = lib.licenses.free;
};
}) {};
- forest-blue-theme = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "forest-blue-theme";
- ename = "forest-blue-theme";
- version = "20160627.142";
- src = fetchFromGitHub {
- owner = "olkinn";
- repo = "forest-blue-emacs";
- rev = "58096ce1a25615d2bae806c3775bae3e2775019d";
- sha256 = "1qm74cfnc13wgv0c3657nd3xbgn492r24m5m2i0ipnpq49cddccf";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/49b8686c31f863dde58d56cddf0baa7757a0c453/recipes/forest-blue-theme";
- sha256 = "1pcpwil883k4n5na7jpq7h8a8gw6mily1cj5n5rf25lqqnsz6fxa";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/forest-blue-theme";
- license = lib.licenses.free;
- };
- }) {};
forge = callPackage ({ closql
, dash
, emacs
@@ -37412,18 +19947,18 @@
, let-alist
, lib
, magit
+ , magit-popup
, markdown-mode
- , melpaBuild
- , transient }:
+ , melpaBuild }:
melpaBuild {
pname = "forge";
ename = "forge";
- version = "20190407.915";
+ version = "0.1.0";
src = fetchFromGitHub {
owner = "magit";
repo = "forge";
- rev = "d803da1d817453684c644ef2822c7e29cee768e3";
- sha256 = "1d10wb5j6lnc2r87qhwmfzbs9gav178g8vwsgx9cfhzzk9hyqd02";
+ rev = "f5fc99935e2059ddede9766ce4bb96d99dcd203b";
+ sha256 = "0jipyqj3r4gkdwpcy0m5ij7x510r2admi8fbzwfysqyrwahs60nv";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/23512cf8152161322960d72a5ec49a7595003477/recipes/forge";
@@ -37439,8 +19974,8 @@
graphql
let-alist
magit
+ magit-popup
markdown-mode
- transient
];
meta = {
homepage = "https://melpa.org/#/forge";
@@ -37472,33 +20007,6 @@
license = lib.licenses.free;
};
}) {};
- format-all = callPackage ({ cl-lib ? null
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "format-all";
- ename = "format-all";
- version = "20190330.1206";
- src = fetchFromGitHub {
- owner = "lassik";
- repo = "emacs-format-all-the-code";
- rev = "7dd5c5e9f73ae36bb78567ee429ac88220938b6c";
- sha256 = "0j20k0d7v5zjdr2hkn3r9vymw343qkp1j8gj6jylr3j51c4gd2x3";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/f53143ebd42ef5be793b86d50b23f0a57617d6cc/recipes/format-all";
- sha256 = "1kmnv8ypxvgm3p79cc1wk8032fh7bl1pripys180vw89r2748qs9";
- name = "recipe";
- };
- packageRequires = [ cl-lib emacs ];
- meta = {
- homepage = "https://melpa.org/#/format-all";
- license = lib.licenses.free;
- };
- }) {};
format-sql = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -37551,60 +20059,6 @@
license = lib.licenses.free;
};
}) {};
- forth-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "forth-mode";
- ename = "forth-mode";
- version = "20170527.1230";
- src = fetchFromGitHub {
- owner = "larsbrinkhoff";
- repo = "forth-mode";
- rev = "522256d98d1a909983bcfd3ae20c65226d5929b6";
- sha256 = "110ycl8zkimy2818rhp3hk3mn2y25m695shdsy6dwxnrv90agss6";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/e46832079ee34c655835f06bf565ad5a5ab48ebd/recipes/forth-mode";
- sha256 = "0j60abi5qyy94f4as90zhmkb12jdirysdbq4ajs5h91vi6gb1g3i";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/forth-mode";
- license = lib.licenses.free;
- };
- }) {};
- fortpy = callPackage ({ auto-complete
- , epc
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , pos-tip
- , python-environment }:
- melpaBuild {
- pname = "fortpy";
- ename = "fortpy";
- version = "20150715.1332";
- src = fetchFromGitHub {
- owner = "rosenbrockc";
- repo = "fortpy-el";
- rev = "c614517e9396ef7a78be3b8786fbf303879cf43b";
- sha256 = "1nqx2igxmwswjcrnzdjpx5qcjr60zjy3q9cadq5disms17wdcr6y";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/73b277e19f5f9f6605f3e9b7afac95152dac0599/recipes/fortpy";
- sha256 = "1nn5vx1rspfsijwhilnjhiy0mjw154ds3lwxvkpwxpchygirlyxj";
- name = "recipe";
- };
- packageRequires = [ auto-complete epc pos-tip python-environment ];
- meta = {
- homepage = "https://melpa.org/#/fortpy";
- license = lib.licenses.free;
- };
- }) {};
fortune-cookie = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -37630,85 +20084,6 @@
license = lib.licenses.free;
};
}) {};
- fraktur-mode = callPackage ({ cl-lib ? null
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "fraktur-mode";
- ename = "fraktur-mode";
- version = "20160814.1927";
- src = fetchFromGitHub {
- owner = "grettke";
- repo = "fraktur-mode";
- rev = "514baf5546aed12a0d9fa0fe66e87cdcc7843b08";
- sha256 = "169d9j7jk3li96fkn2sr257835flkcpml24l4bmzp8j3q57a7wxw";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/fraktur-mode";
- sha256 = "0hy2cncbgpp7ysp7qwfpj0r075rxrc77bmc70bw7hf8m1xiw124k";
- name = "recipe";
- };
- packageRequires = [ cl-lib ];
- meta = {
- homepage = "https://melpa.org/#/fraktur-mode";
- license = lib.licenses.free;
- };
- }) {};
- frame-local = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "frame-local";
- ename = "frame-local";
- version = "20180330.240";
- src = fetchFromGitHub {
- owner = "sebastiencs";
- repo = "frame-local";
- rev = "51c0889602626e2dcc6f1c1a812b058bc96df03c";
- sha256 = "1ccq4iw1d4hy3irimci42knh66ix0vfzd3nm2wh63ygiaf1rjakw";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/556179857e2b46f5a48b45e1b71cd460ffd9f7d7/recipes/frame-local";
- sha256 = "1lz4xmz67l99xbyg9gvgzl06yqh61xhr29vfhv68kq5pg5m881vs";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/frame-local";
- license = lib.licenses.free;
- };
- }) {};
- frame-mode = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , s }:
- melpaBuild {
- pname = "frame-mode";
- ename = "frame-mode";
- version = "20190306.1949";
- src = fetchFromGitHub {
- owner = "IvanMalison";
- repo = "frame-mode";
- rev = "4551bf43bc087448ce0edcd67c36f68649e95274";
- sha256 = "0p3j6h8rcxwjmylg9rx86n6y6bysicif1hxan6xdwz3pskkhm3lj";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1e83da89eeee834cc14c0b128d55ef3634f76fd0/recipes/frame-mode";
- sha256 = "0ch58x07fnsx3v3r9cvcmqrqws121m8achjilhqk988hkg7y47c8";
- name = "recipe";
- };
- packageRequires = [ emacs s ];
- meta = {
- homepage = "https://melpa.org/#/frame-mode";
- license = lib.licenses.free;
- };
- }) {};
frame-purpose = callPackage ({ dash
, dash-functional
, emacs
@@ -37737,32 +20112,6 @@
license = lib.licenses.free;
};
}) {};
- frame-tag = callPackage ({ cl-lib ? null
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "frame-tag";
- ename = "frame-tag";
- version = "20170110.1606";
- src = fetchFromGitHub {
- owner = "liangzan";
- repo = "frame-tag.el";
- rev = "73d6163568c7d32952175e663318b872f995a4e5";
- sha256 = "1ks8qw1vq30mjp7bpgrk3f11jhm9viibiap6zjk8r5rykjzl1ifv";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/e69899b53c158903b9b147754021acf1a6136eda/recipes/frame-tag";
- sha256 = "1n13xcc3ny9j9h1h4vslpjl6k9mqksr73kgmqrmkq301p8zps94q";
- name = "recipe";
- };
- packageRequires = [ cl-lib ];
- meta = {
- homepage = "https://melpa.org/#/frame-tag";
- license = lib.licenses.free;
- };
- }) {};
frames-only-mode = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -37816,60 +20165,6 @@
license = lib.licenses.free;
};
}) {};
- framesize = callPackage ({ fetchFromGitHub
- , fetchurl
- , key-chord
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "framesize";
- ename = "framesize";
- version = "20131017.1432";
- src = fetchFromGitHub {
- owner = "nicferrier";
- repo = "emacs-framesize";
- rev = "f2dbf5d2513b2bc45f2085370a55c1754b6025da";
- sha256 = "11h9xw6jnw7dacyv1jch2a77xp7hfb93690m7hhazy6l87xmm4dk";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/c53062af16b26b6f64bd63fa62d7e9db264768f3/recipes/framesize";
- sha256 = "1rwiwx3n7gkpfihbf6ndl1lxza4zi2rlj5av6lfp5qypbw9wddkf";
- name = "recipe";
- };
- packageRequires = [ key-chord ];
- meta = {
- homepage = "https://melpa.org/#/framesize";
- license = lib.licenses.free;
- };
- }) {};
- frecency = callPackage ({ a
- , dash
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "frecency";
- ename = "frecency";
- version = "20170908.2331";
- src = fetchFromGitHub {
- owner = "alphapapa";
- repo = "frecency.el";
- rev = "132130088ef5695cffed6fcacfa219cb0c389026";
- sha256 = "17s34gaq6jvwr6f4l500xyhv33ykwxiwzsq2rrasgs7l301wqsw0";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/d7a6e855d01e0b1c9a23c006af67c487719c50bd/recipes/frecency";
- sha256 = "033zhzwvh23igfqxbiy68cq6i1wflna19pbg81r0hh9kcfg2afpa";
- name = "recipe";
- };
- packageRequires = [ a dash emacs ];
- meta = {
- homepage = "https://melpa.org/#/frecency";
- license = lib.licenses.free;
- };
- }) {};
free-keys = callPackage ({ cl-lib ? null
, fetchFromGitHub
, fetchurl
@@ -37896,31 +20191,6 @@
license = lib.licenses.free;
};
}) {};
- fringe-current-line = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "fringe-current-line";
- ename = "fringe-current-line";
- version = "20140110.2011";
- src = fetchFromGitHub {
- owner = "kyanagi";
- repo = "fringe-current-line";
- rev = "0ef000bac76abae30601222e6f06c7d133ab4942";
- sha256 = "0zwlnzbi91hkfz1jgj9s9pxwi21s21cwp6psdm687wj2a3wy4231";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/eaaa6f7f2f753a7c8489415ae406c4169eda9fa8/recipes/fringe-current-line";
- sha256 = "125yn0wbrrxrmdn7qfxj0f4538sb3xnqb3r2inz3gpblc1vxnqb8";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/fringe-current-line";
- license = lib.licenses.free;
- };
- }) {};
fringe-helper = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -37985,12 +20255,12 @@
melpaBuild {
pname = "fsharp-mode";
ename = "fsharp-mode";
- version = "1.9.13";
+ version = "1.9.14";
src = fetchFromGitHub {
owner = "rneatherway";
repo = "emacs-fsharp-mode-bin";
- rev = "386994e7d420872a31d7dd2eee9610d8ace98faa";
- sha256 = "15blnkcrsmm6896dpdzcx3xqzxzkc0x8d5bg9b5sw7qca6vnjbqk";
+ rev = "e2a63296681d65969d9c21144a22c6fd2f9dd57d";
+ sha256 = "0llv82jhfmxnblhihnc07z343780dsd2167xjm4vrpcqvlpp50g8";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/dc45611e2b629d8bc5f74555368f964420b79541/recipes/fsharp-mode";
@@ -38065,32 +20335,6 @@
license = lib.licenses.free;
};
}) {};
- fuff = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , seq }:
- melpaBuild {
- pname = "fuff";
- ename = "fuff";
- version = "20170202.703";
- src = fetchFromGitHub {
- owner = "joelmo";
- repo = "fuff";
- rev = "278e849913df87bd8756c59382282d87474802c3";
- sha256 = "12s25c0abvghkhfbxcf77d2dc20y3xn9df7mfk8mkfwnlwdss2ga";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/4d0fc6d19559a9ea1bb7fce0c26a2dd65fc71603/recipes/fuff";
- sha256 = "080a2lz6mv629c68z44qrrww080gy2iggfzajdq54rr8i23y14vf";
- name = "recipe";
- };
- packageRequires = [ seq ];
- meta = {
- homepage = "https://melpa.org/#/fuff";
- license = lib.licenses.free;
- };
- }) {};
full-ack = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -38168,84 +20412,6 @@
license = lib.licenses.free;
};
}) {};
- fuo = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "fuo";
- ename = "fuo";
- version = "20180314.948";
- src = fetchFromGitHub {
- owner = "cosven";
- repo = "emacs-fuo";
- rev = "5318bef9d935b53031e6312652554920def69af2";
- sha256 = "02f4kl1y277pry13hz1jscdh2nrbn3xp7zm1dmqyn8yfhn1s1yx2";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/25fb625becf7f582d2a8d53726d6f01d9ea89ecc/recipes/fuo";
- sha256 = "02mvgz2cxrdn5kp5dw0c57rl5nfavqli5yqbxczmbsih164ljdxf";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/fuo";
- license = lib.licenses.free;
- };
- }) {};
- furl = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "furl";
- ename = "furl";
- version = "20150508.2016";
- src = fetchFromGitHub {
- owner = "nex3";
- repo = "furl-el";
- rev = "014438271e0ef27333dfcd599cb247f12a20d870";
- sha256 = "0wrmbvx0risdjkaxqmh4li6iwvg4635cdpjvw32k2wkdsyn2dlsb";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/0fda2b54a0ff0b6fc3bd6d20cfcbbf63cae5380f/recipes/furl";
- sha256 = "1z3yqx95qmvpi6vkkgcwvkmw96s24h8ssd5gc06988picw6vj76f";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/furl";
- license = lib.licenses.free;
- };
- }) {};
- futhark-mode = callPackage ({ cl-lib ? null
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "futhark-mode";
- ename = "futhark-mode";
- version = "20190302.124";
- src = fetchFromGitHub {
- owner = "diku-dk";
- repo = "futhark-mode";
- rev = "7140d0fcd509fac6deeda5b4065ede5ee5922466";
- sha256 = "06dpspyyqqwb2vhdxmxgw0n8kpb2zw5qczp4bck9vkayqxqb8ahn";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/97210774b450b7611d2bfdf36e04a425835d86b9/recipes/futhark-mode";
- sha256 = "1sck984a8m0i9n07jnhpnin6k060756g73ix34ghzd65j5f0pvlw";
- name = "recipe";
- };
- packageRequires = [ cl-lib emacs ];
- meta = {
- homepage = "https://melpa.org/#/futhark-mode";
- license = lib.licenses.free;
- };
- }) {};
fuzzy = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -38347,31 +20513,6 @@
license = lib.licenses.free;
};
}) {};
- fyure = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "fyure";
- ename = "fyure";
- version = "20130216.514";
- src = fetchFromGitHub {
- owner = "mooz";
- repo = "fyure";
- rev = "b6977f1eb148e8b63259f7233b55bb050e44d9b8";
- sha256 = "08x5li0mshrlamr7vswy7xh358bqhh3pngjr4ckswfi0l2r5fjbd";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/27f4188f460060277ad2f5422bc2bde8e6fd3ff3/recipes/fyure";
- sha256 = "0k5z2xqlrzp5lyvp2lr462x38kqdmqld845bvyvkfjd2k4yri71x";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/fyure";
- license = lib.licenses.free;
- };
- }) {};
fzf = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -38398,34 +20539,6 @@
license = lib.licenses.free;
};
}) {};
- gams-ac = callPackage ({ auto-complete
- , emacs
- , fetchFromGitHub
- , fetchurl
- , gams-mode
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "gams-ac";
- ename = "gams-ac";
- version = "20180423.226";
- src = fetchFromGitHub {
- owner = "ShiroTakeda";
- repo = "gams-ac";
- rev = "66d04ff36033f54205c19bc1d893e926d4dbf02e";
- sha256 = "1hjbzwgzwqwpyfm8db1r1q14bbk42hrl5469gqfzjq0423wy7szw";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/ca2681b39ac5a985c2f70b4b84ee3c10af1a7ca4/recipes/gams-ac";
- sha256 = "03w9ffscwaaspwxmrqhrfws0qjk3xxzz63k5wkrhx37899w75qha";
- name = "recipe";
- };
- packageRequires = [ auto-complete emacs gams-mode ];
- meta = {
- homepage = "https://melpa.org/#/gams-ac";
- license = lib.licenses.free;
- };
- }) {};
gams-mode = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -38452,55 +20565,6 @@
license = lib.licenses.free;
};
}) {};
- gandalf-theme = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "gandalf-theme";
- ename = "gandalf-theme";
- version = "20130809.247";
- src = fetchFromGitHub {
- owner = "ptrv";
- repo = "gandalf-theme-emacs";
- rev = "4e472fc851431458537d458d09c1f5895e338536";
- sha256 = "0sn3y1ilbg532mg941qmzipvzq86q31x86ypaf0h0m4015r7l59v";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/4354bbc1ec16783dd286d69fd6e4682ae63e28f9/recipes/gandalf-theme";
- sha256 = "0wkmsg3pdw98gyp3q508wsqkzw821qsqi796ynm53zd7a4jfap4p";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/gandalf-theme";
- license = lib.licenses.free;
- };
- }) {};
- gap-mode = callPackage ({ fetchhg
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "gap-mode";
- ename = "gap-mode";
- version = "20180808.2145";
- src = fetchhg {
- url = "https://bitbucket.com/gvol/gap-mode";
- rev = "00f251070b10";
- sha256 = "0rk5smpzpdqzpmb5cp2l40042i51z3f40fkd3hma40id0ql2gy2w";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/83ec19a4ebac6b2d0fd84939b393848f82620978/recipes/gap-mode";
- sha256 = "07whab3gi4b8gsvy5ijmjnj700lw0rm3bnr1769byhnpi7qpqin2";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/gap-mode";
- license = lib.licenses.free;
- };
- }) {};
gather = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -38526,32 +20590,6 @@
license = lib.licenses.free;
};
}) {};
- gdscript-mode = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "gdscript-mode";
- ename = "gdscript-mode";
- version = "20180117.2056";
- src = fetchFromGitHub {
- owner = "AdamBark";
- repo = "gdscript-mode";
- rev = "31af5283eaec207bc864022a28e2824132471eaf";
- sha256 = "0f24zsklkhhvj6qdyid2j1qcyhjnncxjma93zhr0klvn5j1z3aar";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/52f99eafb2e80a7fa13a98add98b03a147f35e8b/recipes/gdscript-mode";
- sha256 = "0v4ab5xxpq1kya2is5qq61fmfgxgvbigyz7wp907z3mc00kg2818";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/gdscript-mode";
- license = lib.licenses.free;
- };
- }) {};
geben = callPackage ({ cl-lib ? null
, emacs
, fetchFromGitHub
@@ -38607,32 +20645,6 @@
license = lib.licenses.free;
};
}) {};
- geeknote = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "geeknote";
- ename = "geeknote";
- version = "20160717.549";
- src = fetchFromGitHub {
- owner = "avendael";
- repo = "emacs-geeknote";
- rev = "8ed607c76864afcc9c338972ab093caf4501cbf8";
- sha256 = "1dadsyvkzf0rg6immjdjkb0k7iaqh3hm1w9qhap94j54j7v75w2q";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/geeknote";
- sha256 = "03q0ca8m110qw8wczyyx94gwqymwnmamahw30j7fqkq6ry19yqsm";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/geeknote";
- license = lib.licenses.free;
- };
- }) {};
geiser = callPackage ({ fetchFromGitLab
, fetchurl
, lib
@@ -38658,33 +20670,6 @@
license = lib.licenses.free;
};
}) {};
- general = callPackage ({ cl-lib ? null
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "general";
- ename = "general";
- version = "20190308.1342";
- src = fetchFromGitHub {
- owner = "noctuid";
- repo = "general.el";
- rev = "5f1ae7fcf24c0a9d9aec164944796783c8d77d09";
- sha256 = "0xr4jbghr32q31hlsffslc43jj9qnn9pkz2v2pbl1ba4rh8dafjz";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/d86383b443622d78f6d8ff7b8ac74c8d72879d26/recipes/general";
- sha256 = "104ywsfylfymly64p1i3hsy9pnpz3dkpmcq1ygafnld8zjd08gpc";
- name = "recipe";
- };
- packageRequires = [ cl-lib emacs ];
- meta = {
- homepage = "https://melpa.org/#/general";
- license = lib.licenses.free;
- };
- }) {};
genrnc = callPackage ({ concurrent
, deferred
, fetchFromGitHub
@@ -38739,33 +20724,6 @@
license = lib.licenses.free;
};
}) {};
- gerrit-download = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , magit
- , melpaBuild }:
- melpaBuild {
- pname = "gerrit-download";
- ename = "gerrit-download";
- version = "20150714.708";
- src = fetchFromGitHub {
- owner = "chmouel";
- repo = "gerrit-download.el";
- rev = "d568acc7c5935188c9bc19ba72719a6092d9f6fd";
- sha256 = "1ch8yp0mgk57x0pny9bvkknsqj27fd1rcmpm9s7qpryrwqkp1ix4";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/18725e799efd1694ff2397b6c877f926ac5f4ce8/recipes/gerrit-download";
- sha256 = "1rlz0iqgvr8yxnv5qmk29xs1jwf0g0ckzanlyldcxvs7n6mhkjjp";
- name = "recipe";
- };
- packageRequires = [ emacs magit ];
- meta = {
- homepage = "https://melpa.org/#/gerrit-download";
- license = lib.licenses.free;
- };
- }) {};
gf = callPackage ({ fetchFromGitHub
, fetchurl
, ht
@@ -38873,32 +20831,6 @@
license = lib.licenses.free;
};
}) {};
- gh-md = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "gh-md";
- ename = "gh-md";
- version = "20151207.940";
- src = fetchFromGitHub {
- owner = "emacs-pe";
- repo = "gh-md.el";
- rev = "693cb0dcadff70e813e1a9d303d227aff7898557";
- sha256 = "0g3bjpnwgqczw6ddh4mv7pby0zyqzqgywjrjz2ib6hwmdqzyp1s0";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/2794e59d5fea812ce5b376d3d9609f50f6bca40e/recipes/gh-md";
- sha256 = "0b72fl1hj7gkqlqrr8hklq0w3ryqqqfn5qpb7a9i6q0vh98652xm";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/gh-md";
- license = lib.licenses.free;
- };
- }) {};
ghc = callPackage ({ fetchFromGitHub
, fetchurl
, haskell-mode
@@ -38951,84 +20883,6 @@
license = lib.licenses.free;
};
}) {};
- ghci-completion = callPackage ({ cl-lib ? null
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "ghci-completion";
- ename = "ghci-completion";
- version = "20151125.457";
- src = fetchFromGitHub {
- owner = "manzyuk";
- repo = "ghci-completion";
- rev = "c47e23d585d2a3c7b13aac163693fdc4f2bb90e5";
- sha256 = "17fl3k2sqiavbv3bp6rnp3p89j6pnpkkp7wi26pzzk4675r5k45q";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/804aa2f9088dfc1b48b59aaa72a61f82fb5be971/recipes/ghci-completion";
- sha256 = "1a6k47z5kmacj1s5479393jyj27bjx0911yaqfmmwg2hr0yz7vll";
- name = "recipe";
- };
- packageRequires = [ cl-lib emacs ];
- meta = {
- homepage = "https://melpa.org/#/ghci-completion";
- license = lib.licenses.free;
- };
- }) {};
- gherkin-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "gherkin-mode";
- ename = "gherkin-mode";
- version = "20171224.553";
- src = fetchFromGitHub {
- owner = "candera";
- repo = "gherkin-mode";
- rev = "0313492e7da152f0aa73ddf96c0287ded8f51253";
- sha256 = "15m9a2dcxgmbj0ni2qcxg3vpxvs50pyjvlacm3xd2xhm9wd484hr";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/82d80becedead8db441eed6f7856ca64d78815e2/recipes/gherkin-mode";
- sha256 = "0dhrsz24hn0sdf22wpmzbkn66g4540vdkl03pc27kv21gwa9ixxv";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/gherkin-mode";
- license = lib.licenses.free;
- };
- }) {};
- ghost-blog = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , markdown-mode
- , melpaBuild }:
- melpaBuild {
- pname = "ghost-blog";
- ename = "ghost-blog";
- version = "20171023.42";
- src = fetchFromGitHub {
- owner = "javaguirre";
- repo = "ghost-blog-emacs";
- rev = "71b358643cc9a2db1bf752281ff94aba9b59e4cc";
- sha256 = "1fkh7zslkdi7a4x2xrk73acmigbi7yx9k6iaj75zbjfd49gyqj13";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/4a906d461bcb2aa07050b72669feb5787414d809/recipes/ghost-blog";
- sha256 = "0c591cx5kkfmhhqh8jall470iicxdv01mm3m13irq5xhmp3i5kjy";
- name = "recipe";
- };
- packageRequires = [ markdown-mode ];
- meta = {
- homepage = "https://melpa.org/#/ghost-blog";
- license = lib.licenses.free;
- };
- }) {};
ghq = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -39112,84 +20966,6 @@
license = lib.licenses.free;
};
}) {};
- gif-screencast = callPackage ({ emacs
- , fetchFromGitLab
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "gif-screencast";
- ename = "gif-screencast";
- version = "20190326.149";
- src = fetchFromGitLab {
- owner = "Ambrevar";
- repo = "emacs-gif-screencast";
- rev = "248d1e158405e6cba2c65ecaed40e2c59b089cd8";
- sha256 = "19xqi5mgalnnhb4hw0fh7py2s2dllldx1xxbhwhknkdpifai8hl8";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/6d17ca0213ba5ef9dce92002e281e6f08c3492be/recipes/gif-screencast";
- sha256 = "05l46bsnjdnvcgwx5rc5y7ry9p0hvmkf09rlpalgnrp8qpy8xw0q";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/gif-screencast";
- license = lib.licenses.free;
- };
- }) {};
- gift-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "gift-mode";
- ename = "gift-mode";
- version = "20180530.535";
- src = fetchFromGitHub {
- owner = "csrhodes";
- repo = "gift-mode";
- rev = "b0441ae6e02f343be3b611a2d4b40495ecd932f0";
- sha256 = "0dwpmvjsczcdzwhjvpfxrkfha513538z8wq3gr3l1zc1kdggx2bk";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/c4c9081a60bdbf4e5fe1ccc4809c0f6f396d11e4/recipes/gift-mode";
- sha256 = "0sybrjmcg90cjaax7lzzqvacirn5l23hqy9d843c660fsv98scg1";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/gift-mode";
- license = lib.licenses.free;
- };
- }) {};
- gildas-mode = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , polymode }:
- melpaBuild {
- pname = "gildas-mode";
- ename = "gildas-mode";
- version = "20181021.2349";
- src = fetchFromGitHub {
- owner = "smaret";
- repo = "gildas-mode";
- rev = "d0c9e997e2aa0bcd9b8b7db082d69100448cb1b2";
- sha256 = "11290b6daly9nn73iw0s6386hzjk3q2iywdhiazxscxaxzhx2c8c";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/f43d3aec955d31023056baba971805f0ebbb6702/recipes/gildas-mode";
- sha256 = "0bc3d8bnvg1w2chrr4rp9daq1x8p41qgklrniq0bbkr2h93cmkgv";
- name = "recipe";
- };
- packageRequires = [ emacs polymode ];
- meta = {
- homepage = "https://melpa.org/#/gildas-mode";
- license = lib.licenses.free;
- };
- }) {};
gist = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -39321,31 +21097,6 @@
license = lib.licenses.free;
};
}) {};
- git-blamed = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "git-blamed";
- ename = "git-blamed";
- version = "20161028.1226";
- src = fetchFromGitHub {
- owner = "tsgates";
- repo = "git-emacs";
- rev = "cef196abf398e2dd11f775d1e6cd8690567408aa";
- sha256 = "1n6x69z1s3hk6m6w8gpmqyrb2cxfzhi9w7q94d46c3z6r75v18vz";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/87bc01218964a01cfd471ee068ed75976793a568/recipes/git-blamed";
- sha256 = "08az5mwg8kv8xsivs63y4sym54l1n34zc9z6k0iwpfixv9f8bk9p";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/git-blamed";
- license = lib.licenses.free;
- };
- }) {};
git-command = callPackage ({ fetchFromGitHub
, fetchurl
, git-ps1-mode
@@ -39433,31 +21184,6 @@
license = lib.licenses.free;
};
}) {};
- git-dwim = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "git-dwim";
- ename = "git-dwim";
- version = "20170126.414";
- src = fetchFromGitHub {
- owner = "rubikitch";
- repo = "emacs-git-dwim";
- rev = "485c732130686c2f28a026e385366006435394b9";
- sha256 = "0rcrsjx4ifa9y3rd5l4498kvqkh58zx21gl7mqp053jdsqqq1yrx";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/f8e4328cae9b4759a75da0b26ea8b68821bc71af/recipes/git-dwim";
- sha256 = "0xcigah06ak5wdma4ddcix58q2v5hszncb65f272m4lc2racgsfl";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/git-dwim";
- license = lib.licenses.free;
- };
- }) {};
git-gutter = callPackage ({ cl-lib ? null
, emacs
, fetchFromGitHub
@@ -39596,32 +21322,6 @@
license = lib.licenses.free;
};
}) {};
- git-io = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "git-io";
- ename = "git-io";
- version = "20180317.1052";
- src = fetchFromGitHub {
- owner = "tejasbubane";
- repo = "emacs-git-io";
- rev = "48753acba73b48b997bb678fb5e2a938ae63b5d6";
- sha256 = "1zw24j6l0ap761q1knxjaxzdfz11kmfq29aag5av4n87m86rxzr8";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/a713197f227e3c43de3609dd505cf7cd226d94b9/recipes/git-io";
- sha256 = "1acwc9iqchvlvx98fxh4xf3xphv0xzrnxpv8kkl8qaly41izfj0v";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/git-io";
- license = lib.licenses.free;
- };
- }) {};
git-lens = callPackage ({ emacs
, fetchFromGitLab
, fetchurl
@@ -39701,34 +21401,6 @@
license = lib.licenses.free;
};
}) {};
- git-msg-prefix = callPackage ({ dash
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , s }:
- melpaBuild {
- pname = "git-msg-prefix";
- ename = "git-msg-prefix";
- version = "20180118.646";
- src = fetchFromGitHub {
- owner = "kidd";
- repo = "git-msg-prefix.el";
- rev = "c6acf10b014607f1541a398206208e568a4714e4";
- sha256 = "1jpak1ji63xxpivyjxi0wicw66zbyxdc725nbg8dbf5n3h9v80bk";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/bd37811d17beaa54e08eb4968791da960d37b391/recipes/git-msg-prefix";
- sha256 = "0vicaj91yhbzda76wrwmbfby2ikaja52bcm923jx8brjh1wd99wr";
- name = "recipe";
- };
- packageRequires = [ dash emacs s ];
- meta = {
- homepage = "https://melpa.org/#/git-msg-prefix";
- license = lib.licenses.free;
- };
- }) {};
git-ps1-mode = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -39754,31 +21426,6 @@
license = lib.licenses.free;
};
}) {};
- git-time-metric = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "git-time-metric";
- ename = "git-time-metric";
- version = "20181116.1211";
- src = fetchFromGitHub {
- owner = "c301";
- repo = "gtm-emacs-plugin";
- rev = "287108ed1d6885dc795eb3bad4476aa08c626186";
- sha256 = "0cq4jn2vvcm8hyzmmnnvbmffygxnnv0v71kqlgjm8lcil0xsf84d";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/7f6f8839be619d3eeb6ab83b630441bf8c0ca024/recipes/git-time-metric";
- sha256 = "1lwpj3z1i532v59vcpkcp1bkad7i2gmlk2yspjhvyvsgp1slsxl1";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/git-time-metric";
- license = lib.licenses.free;
- };
- }) {};
git-timemachine = callPackage ({ emacs
, fetchFromGitLab
, fetchurl
@@ -39989,57 +21636,6 @@
license = lib.licenses.free;
};
}) {};
- github-issues = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "github-issues";
- ename = "github-issues";
- version = "20160616.1141";
- src = fetchFromGitHub {
- owner = "inkel";
- repo = "github-issues.el";
- rev = "816f7712b0eb05bffec0add3507302862d2629c4";
- sha256 = "1x6jbnx9lwgy64nl9lpp01xcj9cbx5fq435iwhiarjdsm4kvixb5";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/f761e76236e9372d5fae6b5c5dcb1992c5d64d37/recipes/github-issues";
- sha256 = "12c6yb3v7xwkzc51binfgl4jb3sm3al5nlrklbsxhn44alazsvb0";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/github-issues";
- license = lib.licenses.free;
- };
- }) {};
- github-modern-theme = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "github-modern-theme";
- ename = "github-modern-theme";
- version = "20171109.451";
- src = fetchFromGitHub {
- owner = "philiparvidsson";
- repo = "GitHub-Modern-Theme-for-Emacs";
- rev = "a7e7b8e5e9c122138e79e837caf9b7299e748d44";
- sha256 = "0agfy3wiznb2ksfa00g7066mb0vps4g74mj6nl9wkvx847dzg34h";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/35763febad20f29320d459394f810668db6c3353/recipes/github-modern-theme";
- sha256 = "07xv4psw34mrpb1f5fsvj8vcm9k3xlm43zxr6qmj00p46b35z25r";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/github-modern-theme";
- license = lib.licenses.free;
- };
- }) {};
github-notifier = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -40066,64 +21662,6 @@
license = lib.licenses.free;
};
}) {};
- github-pullrequest = callPackage ({ dash
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , magit
- , melpaBuild
- , request }:
- melpaBuild {
- pname = "github-pullrequest";
- ename = "github-pullrequest";
- version = "20170115.2216";
- src = fetchFromGitHub {
- owner = "jakoblind";
- repo = "github-pullrequest";
- rev = "471816e09d1e140a0975911fe020c6c659f71209";
- sha256 = "0y7i2zgln3mjj8sm8r4fi67izzyqdxfzj71m2q43dzr8rkrby0qc";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/github-pullrequest";
- sha256 = "1p5mwpl59iwd1aqczf1b5shcpzhlqwrcy2vp46c276mhqx15r8fr";
- name = "recipe";
- };
- packageRequires = [ dash emacs magit request ];
- meta = {
- homepage = "https://melpa.org/#/github-pullrequest";
- license = lib.licenses.free;
- };
- }) {};
- github-review = callPackage ({ dash
- , emacs
- , fetchFromGitHub
- , fetchurl
- , ghub
- , lib
- , melpaBuild
- , s }:
- melpaBuild {
- pname = "github-review";
- ename = "github-review";
- version = "20190327.32";
- src = fetchFromGitHub {
- owner = "charignon";
- repo = "github-review";
- rev = "9c3ffe30fba5d02e9951e76d1a5be2ed046663da";
- sha256 = "078rv6f2p3wrznhgvmkhd071bwy72007f5l2m2a0r1k2i3vbfaja";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/3b57420d20c799c0472dae4ab7e017d53dafb262/recipes/github-review";
- sha256 = "1vh24bmvafv9px80gwgcgk7d9z6pjxaadzz7fba8r3m3fzhv4v58";
- name = "recipe";
- };
- packageRequires = [ dash emacs ghub s ];
- meta = {
- homepage = "https://melpa.org/#/github-review";
- license = lib.licenses.free;
- };
- }) {};
github-search = callPackage ({ fetchFromGitHub
, fetchurl
, gh
@@ -40151,58 +21689,6 @@
license = lib.licenses.free;
};
}) {};
- github-stars = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , ghub
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "github-stars";
- ename = "github-stars";
- version = "20181117.2048";
- src = fetchFromGitHub {
- owner = "xuchunyang";
- repo = "github-stars.el";
- rev = "807de6da3ab32d278d68a1b709c012f6bfa4d280";
- sha256 = "152gqg2kvfnfflndx15zkyzapzfkv741rwd0g3m7dn37mblnhgvl";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/58df7d536f9711e10ecaa6e0a37b9ad255e8fca5/recipes/github-stars";
- sha256 = "1vljmrjid5xxmq5yfmsaq09js7zd75nmm4gd0kwm3lf71pb3lp6f";
- name = "recipe";
- };
- packageRequires = [ emacs ghub ];
- meta = {
- homepage = "https://melpa.org/#/github-stars";
- license = lib.licenses.free;
- };
- }) {};
- github-theme = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "github-theme";
- ename = "github-theme";
- version = "20170630.1501";
- src = fetchFromGitHub {
- owner = "philiparvidsson";
- repo = "GitHub-Theme-for-Emacs";
- rev = "29f00a51d949a248a5f6355a97131e216747c797";
- sha256 = "16ldfz1k0hxc1b785gzrf70hg0q88ijjxp39hb62iax1k1aw9vlw";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/3416586d4d782cdd61a56159c5f80a0ca9b3ddf4/recipes/github-theme";
- sha256 = "132jahd8vvhzhhkm71dzq6x46wmaakbbxg9s7r9779bfwbrms9j9";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/github-theme";
- license = lib.licenses.free;
- };
- }) {};
gitignore-mode = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -40228,32 +21714,6 @@
license = lib.licenses.free;
};
}) {};
- gitignore-templates = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "gitignore-templates";
- ename = "gitignore-templates";
- version = "20180327.626";
- src = fetchFromGitHub {
- owner = "xuchunyang";
- repo = "gitignore-templates.el";
- rev = "2b729c6b76ec940e15c1599a0105149c2e1f4b17";
- sha256 = "14zsqp128x48d304racw25f1vdi20fadagfqswa5l3rklb0ilbsb";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/4c9aa71eac2e68eb1925ed00a2c659c4375bd39c/recipes/gitignore-templates";
- sha256 = "17zx52pmpd4yqlnj39v7ym728i710mdl0by3lc8zk6ljfz77933w";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/gitignore-templates";
- license = lib.licenses.free;
- };
- }) {};
gitlab = callPackage ({ dash
, fetchFromGitHub
, fetchurl
@@ -40338,35 +21798,6 @@
license = lib.licenses.free;
};
}) {};
- gitolite-clone = callPackage ({ dash
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , pcache
- , s }:
- melpaBuild {
- pname = "gitolite-clone";
- ename = "gitolite-clone";
- version = "20160609.1655";
- src = fetchFromGitHub {
- owner = "IvanMalison";
- repo = "gitolite-clone";
- rev = "d8a4c2875c984e51137c980b5773f42703602721";
- sha256 = "11i9hxj76869w1z9xn7wq370v56hx5hm4d7msn4zgp64glpa66j9";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/gitolite-clone";
- sha256 = "0mv2bdfqqq47wgikkm5kwpr8gajylf1yzk2j6cxljz09amgq6c8q";
- name = "recipe";
- };
- packageRequires = [ dash emacs pcache s ];
- meta = {
- homepage = "https://melpa.org/#/gitolite-clone";
- license = lib.licenses.free;
- };
- }) {};
gitpatch = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -40445,31 +21876,6 @@
license = lib.licenses.free;
};
}) {};
- glsl-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "glsl-mode";
- ename = "glsl-mode";
- version = "20190326.1251";
- src = fetchFromGitHub {
- owner = "jimhourihan";
- repo = "glsl-mode";
- rev = "ee5d6aa5631e26792fa27c7e418224d514454591";
- sha256 = "1acgx4k4cb6pgvwzdgck9v9gk3ffnmvl7ylsljbi7pjxsiqkzp45";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/c416822d54df436f29dcf9a5f26398685fdc17a2/recipes/glsl-mode";
- sha256 = "0d05qb60k5f7wwpsp3amzghayfbwcha6rh8nrslhnklpjbg87aw5";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/glsl-mode";
- license = lib.licenses.free;
- };
- }) {};
gmail-message-mode = callPackage ({ fetchFromGitHub
, fetchurl
, ham-mode
@@ -40573,59 +21979,6 @@
license = lib.licenses.free;
};
}) {};
- gnome-calendar = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "gnome-calendar";
- ename = "gnome-calendar";
- version = "20161110.456";
- src = fetchFromGitHub {
- owner = "NicolasPetton";
- repo = "gnome-calendar.el";
- rev = "668591bec95c23934c5e1ef100cec4824e7cb25d";
- sha256 = "01dgv24snakxr7smkza6334wr74q74g0mrkzd93xwdxrm5k68ahg";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/8e497668d65f0eabd15e39b7492adb395a5a8e75/recipes/gnome-calendar";
- sha256 = "00clamlm5b42zqggxywdqrf6s2dnsxir5rpd8mjpyc502kqmsfn6";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/gnome-calendar";
- license = lib.licenses.free;
- };
- }) {};
- gnomenm = callPackage ({ dash
- , fetchFromGitHub
- , fetchurl
- , kv
- , lib
- , melpaBuild
- , s }:
- melpaBuild {
- pname = "gnomenm";
- ename = "gnomenm";
- version = "20150316.1218";
- src = fetchFromGitHub {
- owner = "nicferrier";
- repo = "emacs-nm";
- rev = "9065cda44ffc9e06239b8189a0154d31314c3b4d";
- sha256 = "1svnvm9fqqx4mrk9jjn11pzqwk71w8kyyd9wwxam8gz22ykw5jb2";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/dd98221d3498528efb0f2d943102d32ebd7b34b3/recipes/gnomenm";
- sha256 = "01vmr64j6hcvdbzg945c5a2g4fiidl18dsk4px7mdf85cv45kzqm";
- name = "recipe";
- };
- packageRequires = [ dash kv s ];
- meta = {
- homepage = "https://melpa.org/#/gnomenm";
- license = lib.licenses.free;
- };
- }) {};
gntp = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -40651,32 +22004,6 @@
license = lib.licenses.free;
};
}) {};
- gnu-apl-mode = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "gnu-apl-mode";
- ename = "gnu-apl-mode";
- version = "20181217.54";
- src = fetchFromGitHub {
- owner = "lokedhs";
- repo = "gnu-apl-mode";
- rev = "3b5b13abeb424e8ed399379fdefc168422664def";
- sha256 = "0nhbfzfwl44ffvhzrnkjxaxz2nfrp1a7zcy6fg6cm13c2z40jslp";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/369a55301bba0c4f7ce27f6e141944a523beaa0f/recipes/gnu-apl-mode";
- sha256 = "0971pzc14gw8f0b4lzvicxww1k3wc58gbr3fd0qvdra2jifk2is6";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/gnu-apl-mode";
- license = lib.licenses.free;
- };
- }) {};
gnuplot = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -40702,56 +22029,6 @@
license = lib.licenses.free;
};
}) {};
- gnuplot-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "gnuplot-mode";
- ename = "gnuplot-mode";
- version = "20171013.916";
- src = fetchFromGitHub {
- owner = "mkmcc";
- repo = "gnuplot-mode";
- rev = "601f6392986f0cba332c87678d31ae0d0a496ce7";
- sha256 = "14f0yh1rjqc3337j4sbqzfb7pjim2c8a7wk1a73xkrdkmjn82vgb";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/d801a2e0ba5ae7c65b5d312fbf41261278a8b1ba/recipes/gnuplot-mode";
- sha256 = "1avpik06cmi4h6v6039c64b4zw1r1nsg3nrryl254gl881pysfxg";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/gnuplot-mode";
- license = lib.licenses.free;
- };
- }) {};
- gnus-alias = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "gnus-alias";
- ename = "gnus-alias";
- version = "20150315.1742";
- src = fetchFromGitHub {
- owner = "hexmode";
- repo = "gnus-alias";
- rev = "9447d3ccb4c0e75d0468899cccff7aa249657bac";
- sha256 = "1i278npayv3kfxxd1ypi9n83q5l402sbc1zkm11pf8g006ifqsp4";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/6176257e00ca09e79fdff03c6dd450af8eb83666/recipes/gnus-alias";
- sha256 = "0mbq9v8fiqqyldpb66v9bc777mzxywaq2dabivabxjg6554s8chf";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/gnus-alias";
- license = lib.licenses.free;
- };
- }) {};
gnus-desktop-notify = callPackage ({ fetchFromGitLab
, fetchurl
, gnus ? null
@@ -40804,56 +22081,6 @@
license = lib.licenses.free;
};
}) {};
- gnus-select-account = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "gnus-select-account";
- ename = "gnus-select-account";
- version = "20170721.2211";
- src = fetchFromGitHub {
- owner = "tumashu";
- repo = "gnus-select-account";
- rev = "ddc8c135eeaf90f5b6692a033af2badae36e68ce";
- sha256 = "0csq8cqv028g3mrvk88l0nlj3dk5fh67c10hdjwvxbf7winv0391";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/e1746d87f65dc4b0d8f47c7d6ba4c7e0dfa35953/recipes/gnus-select-account";
- sha256 = "1yini6kif7vp5msmhnnpfkab5m5px8y4wgvc0f0k79kdd17gvpsx";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/gnus-select-account";
- license = lib.licenses.free;
- };
- }) {};
- gnus-summary-ext = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "gnus-summary-ext";
- ename = "gnus-summary-ext";
- version = "20180113.516";
- src = fetchFromGitHub {
- owner = "vapniks";
- repo = "gnus-summary-ext";
- rev = "025fd853fe9280ae696a89ec2c2cac9befd010aa";
- sha256 = "07ww2nc03daz70f2ajw7b2gin22xa306001zclhrxkm1cpjif2fi";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5ca4a905b5f81991074c7d3e41d4422c7e6713d5/recipes/gnus-summary-ext";
- sha256 = "0svyz8fy4k9ba6gpdymf4cf8zjjpgm71y48vlybxbv507xjm17qf";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/gnus-summary-ext";
- license = lib.licenses.free;
- };
- }) {};
gnus-x-gm-raw = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -40881,32 +22108,6 @@
license = lib.licenses.free;
};
}) {};
- go = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "go";
- ename = "go";
- version = "20161110.1849";
- src = fetchFromGitHub {
- owner = "eschulte";
- repo = "el-go";
- rev = "ff45fb44d9cb6579d8511d8b6156ed0b34d5ac97";
- sha256 = "14av8zcxp9r4ka0h9x73i6gzwbf231wqkin65va3agrzwaf8swz1";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/go";
- sha256 = "1mk1j504xwi3xswc0lfr3czs9j6wcsbrw2halr46mraiy8lnbz6h";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/go";
- license = lib.licenses.free;
- };
- }) {};
go-add-tags = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -40960,33 +22161,6 @@
license = lib.licenses.free;
};
}) {};
- go-complete = callPackage ({ cl-lib ? null
- , fetchFromGitHub
- , fetchurl
- , go-mode
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "go-complete";
- ename = "go-complete";
- version = "20151015.228";
- src = fetchFromGitHub {
- owner = "vibhavp";
- repo = "go-complete";
- rev = "e39efc356f6e19f17db3f3d2c81f28d38b31a55e";
- sha256 = "0phy24cra8cza89xrqsx9xrwg98v9qwqx0fzgm1gwlf333zb3hha";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/4df81abbf3b16f06fa327c1626bef1245ea77758/recipes/go-complete";
- sha256 = "0dl0ibw145f84kd709r5i2kaw07z1sjzn3dmsiqn8dncspcf2vb4";
- name = "recipe";
- };
- packageRequires = [ cl-lib go-mode ];
- meta = {
- homepage = "https://melpa.org/#/go-complete";
- license = lib.licenses.free;
- };
- }) {};
go-direx = callPackage ({ cl-lib ? null
, direx
, fetchFromGitHub
@@ -41118,59 +22292,6 @@
license = lib.licenses.free;
};
}) {};
- go-gen-test = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , s }:
- melpaBuild {
- pname = "go-gen-test";
- ename = "go-gen-test";
- version = "20171022.2058";
- src = fetchFromGitHub {
- owner = "s-kostyaev";
- repo = "go-gen-test";
- rev = "44c202ac97e728e93a35cee028a0ea8dd6e4292c";
- sha256 = "1vi5xsf0xbcbvapi20hsjangwyp38cbgi8kiccpmingnq2kp8ghs";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/0861c126161a2674f0e115eac6f948490b142b44/recipes/go-gen-test";
- sha256 = "1pj8n8xj9ccq9ips4wy4v6hdxxgwv11pwi671l6jjrig38v13dzr";
- name = "recipe";
- };
- packageRequires = [ emacs s ];
- meta = {
- homepage = "https://melpa.org/#/go-gen-test";
- license = lib.licenses.free;
- };
- }) {};
- go-gopath = callPackage ({ cl-lib ? null
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "go-gopath";
- ename = "go-gopath";
- version = "20160705.334";
- src = fetchFromGitHub {
- owner = "iced";
- repo = "go-gopath";
- rev = "5172fc53f21edbf9347d5ee7d1d745da1ec88a15";
- sha256 = "0gqb3k33y42gchc89rw3k1pvb7ai9ka50ljfd4avk31fdpr4dln5";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1ca8d10b10b015c5bdafe1dbc8e53eb4c0d26d9c/recipes/go-gopath";
- sha256 = "0jfy2r3axqpn2cnibp8f9vw36kmx0icixhj6zy43d9xa4znvdqal";
- name = "recipe";
- };
- packageRequires = [ cl-lib ];
- meta = {
- homepage = "https://melpa.org/#/go-gopath";
- license = lib.licenses.free;
- };
- }) {};
go-guru = callPackage ({ cl-lib ? null
, fetchFromGitHub
, fetchurl
@@ -41251,31 +22372,6 @@
license = lib.licenses.free;
};
}) {};
- go-imports = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "go-imports";
- ename = "go-imports";
- version = "20180709.2228";
- src = fetchFromGitHub {
- owner = "yasushi-saito";
- repo = "go-imports";
- rev = "d9950309c868aa46c45f8671413e53f97dc7fe0b";
- sha256 = "1nq0s6zkk87jggj91iza9ap255i8r1c8ahb1118s25pvb5gcfnfv";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/4118ebf0db84cc047fab311c789bfbffd6eb2d92/recipes/go-imports";
- sha256 = "0xxlh4rmyvfxiynsdqng6wd3js7h3azhb8ii0ch7n0hhqkcnda4x";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/go-imports";
- license = lib.licenses.free;
- };
- }) {};
go-mode = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -41329,69 +22425,6 @@
license = lib.licenses.free;
};
}) {};
- go-playground-cli = callPackage ({ cl-lib ? null
- , deferred
- , emacs
- , f
- , fetchFromGitHub
- , fetchurl
- , let-alist
- , lib
- , melpaBuild
- , names
- , request
- , s }:
- melpaBuild {
- pname = "go-playground-cli";
- ename = "go-playground-cli";
- version = "20160503.214";
- src = fetchFromGitHub {
- owner = "kosh04";
- repo = "emacs-go-playground";
- rev = "60beebd98e3930641d41cee0189c579626f223bc";
- sha256 = "1fcm65r1sy2fmcp2i7mwc7mxqiaf4aaxda4i2qrm8s25cxsffir7";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/3af0a72ee1222c133ccfd76f004a346fd6110eee/recipes/go-playground-cli";
- sha256 = "00h89rh8d7lq1di77nv609xbzxmjmffq6mz3cmagylxncflg81jc";
- name = "recipe";
- };
- packageRequires = [ cl-lib deferred emacs f let-alist names request s ];
- meta = {
- homepage = "https://melpa.org/#/go-playground-cli";
- license = lib.licenses.free;
- };
- }) {};
- go-projectile = callPackage ({ fetchFromGitHub
- , fetchurl
- , go-eldoc
- , go-guru
- , go-mode
- , go-rename
- , lib
- , melpaBuild
- , projectile }:
- melpaBuild {
- pname = "go-projectile";
- ename = "go-projectile";
- version = "20181023.1444";
- src = fetchFromGitHub {
- owner = "dougm";
- repo = "go-projectile";
- rev = "7910884b4de560f3fc70b53752f658ef9cdc02cd";
- sha256 = "03bh8k95qrc3q1sja05bbv3jszh6rgdv56jpi8g06yxk53457a1n";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/3559a179be2a5cda71ee0a5a18bead4b3a1a8138/recipes/go-projectile";
- sha256 = "07diik27gr82n11a8k62v1jxq8rhi16f02ybk548f6cn7iqgp2ml";
- name = "recipe";
- };
- packageRequires = [ go-eldoc go-guru go-mode go-rename projectile ];
- meta = {
- homepage = "https://melpa.org/#/go-projectile";
- license = lib.licenses.free;
- };
- }) {};
go-rename = callPackage ({ fetchFromGitHub
, fetchurl
, go-mode
@@ -41445,57 +22478,6 @@
license = lib.licenses.free;
};
}) {};
- go-snippets = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , yasnippet }:
- melpaBuild {
- pname = "go-snippets";
- ename = "go-snippets";
- version = "20180112.2211";
- src = fetchFromGitHub {
- owner = "toumorokoshi";
- repo = "go-snippets";
- rev = "d437df148879566ffe7f2e503a3cf2602aa9fb28";
- sha256 = "0rs2yj9bh0snf13hfj9bvyawl16j8416naz6h52l21q72ymd4b0k";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/ca9f3022e7f4d5391be394cd56f6db75c9cff3b6/recipes/go-snippets";
- sha256 = "1wcbnfzxailv18spxyv4a0nwlqh9l7yf5vxg0qcjcp5ajd2w12kn";
- name = "recipe";
- };
- packageRequires = [ yasnippet ];
- meta = {
- homepage = "https://melpa.org/#/go-snippets";
- license = lib.licenses.free;
- };
- }) {};
- go-stacktracer = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "go-stacktracer";
- ename = "go-stacktracer";
- version = "20150430.1442";
- src = fetchFromGitHub {
- owner = "samertm";
- repo = "go-stacktracer.el";
- rev = "a2ac6d801b389f80ca4e2fcc1ab44513a9e55976";
- sha256 = "0n5nsyfwx2pdlwx6bl35wrfyady5dwraimv92f58mhc344ajd70y";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/401996c585d2ccf97add1bc420250d96188b651a/recipes/go-stacktracer";
- sha256 = "1laz2ggqydnyr7b36ggb7sphlib79dhp7nszw42wssmv212v94cy";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/go-stacktracer";
- license = lib.licenses.free;
- };
- }) {};
go-tag = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -41523,57 +22505,6 @@
license = lib.licenses.free;
};
}) {};
- gobgen = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "gobgen";
- ename = "gobgen";
- version = "20161020.823";
- src = fetchFromGitHub {
- owner = "gergelypolonkai";
- repo = "gobgen.el";
- rev = "ed2c2b0d217deae293096f3cf14aa492791ddd4f";
- sha256 = "1isda941gzrl9r2xxaxbsqjxq146cmnhl04m634m8m0q2d751pwk";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/8c9fed22bb8dbfb359e4fdb0d802ed4b5781f50d/recipes/gobgen";
- sha256 = "0fb0q9x7wj8gs1iyr87q1vpxmfa2d43zy6cgxpzmv2wc26x96vi7";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/gobgen";
- license = lib.licenses.free;
- };
- }) {};
- god-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "god-mode";
- ename = "god-mode";
- version = "20180117.334";
- src = fetchFromGitHub {
- owner = "chrisdone";
- repo = "god-mode";
- rev = "344167ed9b4c212273dd056e7481cf1373b461d0";
- sha256 = "0y7phh7amrdphv9dkf0304z2knyas745ir59ybngh1a55dfc2mf4";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/2dff8dc08583048f9b7b4cb6d8f05a18dd4e8b42/recipes/god-mode";
- sha256 = "01xx2byjh6vlckaxamm2x2qzicd9qc8h6amyjg0bxz3932a4llaa";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/god-mode";
- license = lib.licenses.free;
- };
- }) {};
godoctor = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -41599,32 +22530,6 @@
license = lib.licenses.free;
};
}) {};
- gold-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , sws-mode }:
- melpaBuild {
- pname = "gold-mode";
- ename = "gold-mode";
- version = "20140606.1906";
- src = fetchFromGitHub {
- owner = "yuutayamada";
- repo = "gold-mode-el";
- rev = "6d3aa59602b1b835495271c8c9741ac344c2eab1";
- sha256 = "1k4i9z9h4m0h0y92mncr96jir63q5h1bix5bpnlfxhxl5w8pvk1q";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/6d1991b63067c581c7576df4b69b509ab5a44d5a/recipes/gold-mode";
- sha256 = "1b67hd1fp6xcj65xxp5jcpdjspxsbzxy26v6lqg5kiy8knls57kf";
- name = "recipe";
- };
- packageRequires = [ sws-mode ];
- meta = {
- homepage = "https://melpa.org/#/gold-mode";
- license = lib.licenses.free;
- };
- }) {};
golden-ratio = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -41650,185 +22555,6 @@
license = lib.licenses.free;
};
}) {};
- golden-ratio-scroll-screen = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "golden-ratio-scroll-screen";
- ename = "golden-ratio-scroll-screen";
- version = "20170223.1829";
- src = fetchFromGitHub {
- owner = "jixiuf";
- repo = "golden-ratio-scroll-screen";
- rev = "0428fbe020ddb90811f2932e661796f667bf4ac5";
- sha256 = "1v4rz5ddd0x7szk9pz5hrxp25xqdf6gngrm8y2cf8xgyvrlscyba";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/af044c4a28149362347c2477f0d8d0f8d1dc8c0d/recipes/golden-ratio-scroll-screen";
- sha256 = "1ygh104vr65s7frlkzyhrfi6shrbvp2b2j3ynj5dip253v85xki5";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/golden-ratio-scroll-screen";
- license = lib.licenses.free;
- };
- }) {};
- goldendict = callPackage ({ cl-lib ? null
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "goldendict";
- ename = "goldendict";
- version = "20180121.120";
- src = fetchFromGitHub {
- owner = "stardiviner";
- repo = "goldendict.el";
- rev = "1aac19daaec811deb9afe45eea4929309c09ac8b";
- sha256 = "1il432f6ayj2whl4s804n5wykgs51jhbx4xkcbfgqra58cbjrjhi";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/af87026905478d9134a4a036e792f6afd9c10768/recipes/goldendict";
- sha256 = "0zvrlz169pg9bj1bmks4lh5zn8cygqzwiyzg49na2a7wf2sk9m1f";
- name = "recipe";
- };
- packageRequires = [ cl-lib emacs ];
- meta = {
- homepage = "https://melpa.org/#/goldendict";
- license = lib.licenses.free;
- };
- }) {};
- golint = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "golint";
- ename = "golint";
- version = "20180221.1215";
- src = fetchFromGitHub {
- owner = "golang";
- repo = "lint";
- rev = "0562613f16a6ec439a4a68e817e69e0f7c405c87";
- sha256 = "1lhzas39dkf38965ibrxdfdh7gxsjiyzqas7h51zr5fdx6cyjwnf";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/34f22d829257456abbc020c006b92da9c7a7860e/recipes/golint";
- sha256 = "1q4y6mgll8wyp0c7zx810nzsm0k4wvz0wkly1fbja9z63sjzzxwb";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/golint";
- license = lib.licenses.free;
- };
- }) {};
- gom-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "gom-mode";
- ename = "gom-mode";
- version = "20131007.1953";
- src = fetchFromGitHub {
- owner = "syohex";
- repo = "emacs-gom-mode";
- rev = "972e33df1d38ff323bc97de87477305826013701";
- sha256 = "1anjzlg53kjdqfjcdahbxy8zk9hdha075c1f9nzrnnbbqvmirbbb";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/0a1e5f505e048b36c12de36b23b779beeaefc45f/recipes/gom-mode";
- sha256 = "07zr38gzqb3ds9mpf94c1vhl1rqd0cjh4g4j2bz86q16c0rnmp7m";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/gom-mode";
- license = lib.licenses.free;
- };
- }) {};
- google = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "google";
- ename = "google";
- version = "20140416.1048";
- src = fetchFromGitHub {
- owner = "hober";
- repo = "google-el";
- rev = "3b3189a8b201c8d36fed6e61496274e530dd40bd";
- sha256 = "06p1dpnmg7lhdff1g7c04qq8f9srgkmnm42jlqy85k87j3p5ys2i";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/45237d37da807559498bb958184e05109f880070/recipes/google";
- sha256 = "11a521cq5bj7afl7bqiilg0c81dy00lnhak7h3d9c9kwg7kfljiq";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/google";
- license = lib.licenses.free;
- };
- }) {};
- google-c-style = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "google-c-style";
- ename = "google-c-style";
- version = "20180130.936";
- src = fetchFromGitHub {
- owner = "google";
- repo = "styleguide";
- rev = "505ba68c74eb97e6966f60907ce893001bedc706";
- sha256 = "0277vsj0shrlgb96zgy8lln55l2klzkk6h28g4srbpgkwz5xxsx7";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/b4e7f5f641251e17add561991d3bcf1fde23467b/recipes/google-c-style";
- sha256 = "10gsbg880jbvxs4291vi2ww30ird2f313lbgcb11lswivmhrmd1r";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/google-c-style";
- license = lib.licenses.free;
- };
- }) {};
- google-contacts = callPackage ({ cl-lib ? null
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , oauth2 }:
- melpaBuild {
- pname = "google-contacts";
- ename = "google-contacts";
- version = "20180919.614";
- src = fetchFromGitHub {
- owner = "jd";
- repo = "google-contacts.el";
- rev = "2273582713712a58e71156a8a29972d42e8e690e";
- sha256 = "1iw5khd3mcgq7vmpm2xw1s713glc8c569n4mgrmmggg73sjnj4kf";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/671afe0ff3889ae8c4b2d7b8617a3a25c16f3f0f/recipes/google-contacts";
- sha256 = "0wgi244zy2am90alimgzazshk2z756bk1hchphssfa4j15n16jgn";
- name = "recipe";
- };
- packageRequires = [ cl-lib oauth2 ];
- meta = {
- homepage = "https://melpa.org/#/google-contacts";
- license = lib.licenses.free;
- };
- }) {};
google-maps = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -41905,58 +22631,6 @@
license = lib.licenses.free;
};
}) {};
- goose-theme = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "goose-theme";
- ename = "goose-theme";
- version = "20160828.545";
- src = fetchFromGitHub {
- owner = "tokenrove";
- repo = "goose-theme";
- rev = "acd017b50ab25a75fd1331eb3de66467e2042e9c";
- sha256 = "1mmdvjsgnwgs6akhyj96fgj30mz53djdq85dl5q4cmiznlbma7hy";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/e23a52e068ec0e6d457402254727673ea02bd407/recipes/goose-theme";
- sha256 = "1nw948js678xc5vgrpdkykpcbn1b1id4k1clf87vfv7y5zssvd0x";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/goose-theme";
- license = lib.licenses.free;
- };
- }) {};
- gore-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , go-mode
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "gore-mode";
- ename = "gore-mode";
- version = "20151123.1127";
- src = fetchFromGitHub {
- owner = "sergey-pashaev";
- repo = "gore-mode";
- rev = "94d7f3e99104e06167967c98fdc201049c433c2d";
- sha256 = "0l022aqpnb38q6kgdqpbxrc1r7fljwl7xq14yi5jb7qgzw2v43cz";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/de09fcf14f778efe4247a93fb887b77050258f39/recipes/gore-mode";
- sha256 = "0nljybh2pw8pbbajfsz57r11rs4bvzfxmwpbm5qrdn6dzzv65nq3";
- name = "recipe";
- };
- packageRequires = [ go-mode ];
- meta = {
- homepage = "https://melpa.org/#/gore-mode";
- license = lib.licenses.free;
- };
- }) {};
gorepl-mode = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -42113,32 +22787,6 @@
license = lib.licenses.free;
};
}) {};
- goto-line-preview = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "goto-line-preview";
- ename = "goto-line-preview";
- version = "20190307.2336";
- src = fetchFromGitHub {
- owner = "jcs090218";
- repo = "goto-line-preview";
- rev = "1e361d8c0b9596154db579e6ae5edbd51e12eedc";
- sha256 = "16zil8kjv7lfmy11g88p1cm24j9db319fgkwzsgf2vzp1m15l0pc";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/231e0b056114a63aa472ccfc0cd24f2f12a31600/recipes/goto-line-preview";
- sha256 = "1mbc9p96rrxpafdfx7wq50aj4fd3c47p7pqjwqqfdgk9dskmsjc2";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/goto-line-preview";
- license = lib.licenses.free;
- };
- }) {};
govc = callPackage ({ dash
, emacs
, fetchFromGitHub
@@ -42169,31 +22817,6 @@
license = lib.licenses.free;
};
}) {};
- govet = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "govet";
- ename = "govet";
- version = "20170808.1024";
- src = fetchFromGitHub {
- owner = "meshelton";
- repo = "govet";
- rev = "1b8c044aa856f4b62a682bc57494af19d22a6053";
- sha256 = "1d0gd4awkkfsppqv7367bn5h8k8dlyvrg9cbvsn6mqn5j93mr3fx";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/7e4a5f5031c76056d8f1b64b27a39a512c7c59cd/recipes/govet";
- sha256 = "1rpgngixf1xnnqf0l2vvh6y9q3395qyj9ln1rh0xz5lm7d4pq4hy";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/govet";
- license = lib.licenses.free;
- };
- }) {};
gpastel = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -42501,32 +23124,6 @@
license = lib.licenses.free;
};
}) {};
- graphql-mode = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "graphql-mode";
- ename = "graphql-mode";
- version = "20190320.57";
- src = fetchFromGitHub {
- owner = "davazp";
- repo = "graphql-mode";
- rev = "ebd6502c0901dd2864a6ac893659a0cd74b6ba73";
- sha256 = "169bp2ps0i931qlcn0nsngs8dycqzlr3dcb5smnlmbjylmqi9yjq";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/3850073e6706d4d8151bc6ab12963a19deae8be9/recipes/graphql-mode";
- sha256 = "074dc8fgbrikb5inv837n9bpmz1ami7aaxsqcci1f94x3iw8i74i";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/graphql-mode";
- license = lib.licenses.free;
- };
- }) {};
graphviz-dot-mode = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -42577,83 +23174,6 @@
license = lib.licenses.free;
};
}) {};
- grass-mode = callPackage ({ cl-lib ? null
- , dash
- , fetchhg
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "grass-mode";
- ename = "grass-mode";
- version = "20170503.800";
- src = fetchhg {
- url = "https://bitbucket.com/tws/grass-mode.el";
- rev = "1ae8eae88117";
- sha256 = "1sl3d5759fjm98pb50ykz2c05czb2298ipccwj2qz2hdzq63hfv8";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5b7972602399f9df9139cff177e38653bb0f43ed/recipes/grass-mode";
- sha256 = "1lq6bk4bwgcy4ra3d9rlca3fk87ydg7xnnqcqjg0pw4m9xnr3f7v";
- name = "recipe";
- };
- packageRequires = [ cl-lib dash ];
- meta = {
- homepage = "https://melpa.org/#/grass-mode";
- license = lib.licenses.free;
- };
- }) {};
- grayscale-theme = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "grayscale-theme";
- ename = "grayscale-theme";
- version = "20171005.102";
- src = fetchFromGitHub {
- owner = "belak";
- repo = "emacs-grayscale-theme";
- rev = "917d63c0effc8459502a41e0cad5822d2b200499";
- sha256 = "0vkv34aslcw2fl9yx8j6094s8j5mgpqrwvyf07a1d16rixncffpm";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/2993881c7285cfbfc590b4118db46bfd435817bc/recipes/grayscale-theme";
- sha256 = "0jbzb1zxv5mg3pivii31d4kz75igm339nw4cmx9kgzia9zal5f1r";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/grayscale-theme";
- license = lib.licenses.free;
- };
- }) {};
- greek-polytonic = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "greek-polytonic";
- ename = "greek-polytonic";
- version = "20190303.558";
- src = fetchFromGitHub {
- owner = "jhanschoo";
- repo = "greek-polytonic";
- rev = "114cba0f57cc077871693c799b807df2292341ec";
- sha256 = "09prvjnhvirip6s0rlsp7pyyaj9xswvvjskxb2977ymki8ijxmqf";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/bf0e6206be0e6f416c59323cf10bf052882863f3/recipes/greek-polytonic";
- sha256 = "0rp5iwiznp95r8srxvq72hna2hgcqj4q1dvg2ma86cqzgqwr4xnw";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/greek-polytonic";
- license = lib.licenses.free;
- };
- }) {};
green-is-the-new-black-theme = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -42679,31 +23199,6 @@
license = lib.licenses.free;
};
}) {};
- green-phosphor-theme = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "green-phosphor-theme";
- ename = "green-phosphor-theme";
- version = "20150515.747";
- src = fetchFromGitHub {
- owner = "aalpern";
- repo = "emacs-color-theme-green-phosphor";
- rev = "5549781559ff5daa85c1d6c635c94524c1c5f644";
- sha256 = "0rzbq3vxx8ymgb73smlbjlsffrrrmwp266q93wv6k08h5laj9vwr";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/c6770f5d800232c152833d32efb814005e65ffc6/recipes/green-phosphor-theme";
- sha256 = "1p4l75lahmbjcx74ca5jcyc04828vlcahk7gzv5lr7z9mhvq6fbh";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/green-phosphor-theme";
- license = lib.licenses.free;
- };
- }) {};
green-screen-theme = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -42729,56 +23224,6 @@
license = lib.licenses.free;
};
}) {};
- gregorio-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "gregorio-mode";
- ename = "gregorio-mode";
- version = "20170705.751";
- src = fetchFromGitHub {
- owner = "jsrjenkins";
- repo = "gregorio-mode";
- rev = "2b45f91246286abc449cb71f28583403181051c2";
- sha256 = "1g9x21nmzbm4sqybx5k4pgbjd9x0g27ngwczagplvjzsq9qzv7y6";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/34cdc536cd0509c5a151c16f44f4db2c5b44365f/recipes/gregorio-mode";
- sha256 = "1x3z4gc88h13miz72a597lz9hcn2lxps9jvldl2j62s6nvr88pff";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/gregorio-mode";
- license = lib.licenses.free;
- };
- }) {};
- grep-a-lot = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "grep-a-lot";
- ename = "grep-a-lot";
- version = "20131006.647";
- src = fetchFromGitHub {
- owner = "ZungBang";
- repo = "emacs-grep-a-lot";
- rev = "9f9f645b9e308a0d887b66864ff97d0fca1ba4ad";
- sha256 = "1f8262mrlinzgnn4m49hbj1hm3c1mvzza24py4b37sasn49546lw";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/grep-a-lot";
- sha256 = "1cbl4gl91dx73q3i2glsivfxd8jkanrcrzy35zf6rb7raj7rc1bw";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/grep-a-lot";
- license = lib.licenses.free;
- };
- }) {};
grep-context = callPackage ({ cl-lib ? null
, dash
, emacs
@@ -42807,56 +23252,6 @@
license = lib.licenses.free;
};
}) {};
- greymatters-theme = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "greymatters-theme";
- ename = "greymatters-theme";
- version = "20150621.423";
- src = fetchFromGitHub {
- owner = "mswift42";
- repo = "greymatters-theme";
- rev = "a7220a8c6cf18ccae2b76946b6f01188a7c9d5d1";
- sha256 = "14c09m9p6556rrf0qfad4zsv7qxa5flamzg6fa83cxh0qfg7wjbp";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/d13621f3033b180d06852d90bd3ebe03276031f5/recipes/greymatters-theme";
- sha256 = "10cxajyws5rwk62i4vk26c1ih0dq490kcfx7gijw38q3b5r1l8nr";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/greymatters-theme";
- license = lib.licenses.free;
- };
- }) {};
- grin = callPackage ({ fetchhg
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "grin";
- ename = "grin";
- version = "20110805.2358";
- src = fetchhg {
- url = "https://bitbucket.com/dariusp686/emacs-grin";
- rev = "f541aa22da52";
- sha256 = "0rqpgc50z86j4waijfm6kw4zjmzqfii6nnvyix4rkd4y3ryny1x2";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/grin";
- sha256 = "0rak710fp9c7wx39qn4dc9d0xfjr5w7hwklxh99v1x1ihkla9378";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/grin";
- license = lib.licenses.free;
- };
- }) {};
grizzl = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -43015,31 +23410,6 @@
license = lib.licenses.free;
};
}) {};
- gs-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "gs-mode";
- ename = "gs-mode";
- version = "20151202.206";
- src = fetchFromGitHub {
- owner = "yyr";
- repo = "emacs-grads";
- rev = "1a13051db21b999c7682a015b33a03096ff9d891";
- sha256 = "1d89gxyzv0z0nk7v1aa4qa0xfms2g2dsrr07cw0d99xsnyxfky31";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/bc1aa5335810e3d6572ebe9cd8949932b74d0f46/recipes/gs-mode";
- sha256 = "02ldd92fv1k28nygl34i8gv0b0i1v5qd7nl1l17cf5f3akdwc6iq";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/gs-mode";
- license = lib.licenses.free;
- };
- }) {};
gscholar-bibtex = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -43094,58 +23464,6 @@
license = lib.licenses.free;
};
}) {};
- gtk-pomodoro-indicator = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "gtk-pomodoro-indicator";
- ename = "gtk-pomodoro-indicator";
- version = "20171230.840";
- src = fetchFromGitHub {
- owner = "abo-abo";
- repo = "gtk-pomodoro-indicator";
- rev = "eb59b229de0dde307b20654075a9bbac69899a66";
- sha256 = "0dmaazcscg9mdsmij26873af5jl2np4q9xf2klw1jmcl61wzggb0";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/a58f1acaafc459e055d751acdb68427e4b11275e/recipes/gtk-pomodoro-indicator";
- sha256 = "1lkz1bk3zl51jdgp7pg6sr57drdwz8mlvl9ryky3iv73kr5i0q6c";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/gtk-pomodoro-indicator";
- license = lib.licenses.free;
- };
- }) {};
- guess-language = callPackage ({ cl-lib ? null
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "guess-language";
- ename = "guess-language";
- version = "20190325.736";
- src = fetchFromGitHub {
- owner = "tmalsburg";
- repo = "guess-language.el";
- rev = "e64d88f287a547198e4c96e2fff543e103f2b456";
- sha256 = "0dmbr7gylnc1dsjaldfw51nmli66lizs1w5a8p1zacpf7w5kf7x2";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/6e78cb707943fcaaba0414d7af2af717efce84d0/recipes/guess-language";
- sha256 = "1p8j18hskvsv4pn3cal5s91l19hgshq8hpclmp84z9hlnj9g9fpm";
- name = "recipe";
- };
- packageRequires = [ cl-lib emacs ];
- meta = {
- homepage = "https://melpa.org/#/guess-language";
- license = lib.licenses.free;
- };
- }) {};
guide-key = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -43230,31 +23548,6 @@
license = lib.licenses.free;
};
}) {};
- gulp-task-runner = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "gulp-task-runner";
- ename = "gulp-task-runner";
- version = "20170718.1341";
- src = fetchFromGitHub {
- owner = "NicolasPetton";
- repo = "gulp-task-runner";
- rev = "877990e956b1d71e2d9c7c3e5a129ad199b9debb";
- sha256 = "13qy4x4ap43qm5w2vrsy6w01z2s2kymfr9qvlj2yri4xk3r4vrps";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/34a2bede5ea70cf9df623c32e789d78205f9ebb0/recipes/gulp-task-runner";
- sha256 = "0211mws99bc9ipg7r3qqm1n7gszvwil31psinf0250wliyppjij7";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/gulp-task-runner";
- license = lib.licenses.free;
- };
- }) {};
guru-mode = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -43307,31 +23600,6 @@
license = lib.licenses.free;
};
}) {};
- gvpr-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "gvpr-mode";
- ename = "gvpr-mode";
- version = "20131208.918";
- src = fetchFromGitHub {
- owner = "rodw";
- repo = "gvpr-lib";
- rev = "1fb539b8227200f75d7eeb9706a236f805159a63";
- sha256 = "18902m92yyw4mqr5x3gzpqw13lykwv7llbqvck0kipyp3fpjjn7y";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/ab25afcf4232082dc0e48706734f141a308912a7/recipes/gvpr-mode";
- sha256 = "19p6f06qdjvh2vmgbabajvkfxpn13j899jrivw9mqyssz0cyvzgw";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/gvpr-mode";
- license = lib.licenses.free;
- };
- }) {};
gxref = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -43358,59 +23626,6 @@
license = lib.licenses.free;
};
}) {};
- habamax-theme = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "habamax-theme";
- ename = "habamax-theme";
- version = "20181001.150";
- src = fetchFromGitHub {
- owner = "habamax";
- repo = "habamax-theme";
- rev = "6e86a1b23b6e2aaf40d4374b5673da00a28be447";
- sha256 = "0k96mdxg28bbm14d6rdlin8l4c75i9wicj3mxrd0bys0shxl9jm6";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/77386484ad0b31c2818fae52cd312821c4632cb8/recipes/habamax-theme";
- sha256 = "1rmir9gc1niwkshxg1826nkh8xxmpim5pbhp61wx1m273lfn2h69";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/habamax-theme";
- license = lib.licenses.free;
- };
- }) {};
- habitica = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , org }:
- melpaBuild {
- pname = "habitica";
- ename = "habitica";
- version = "20190401.2121";
- src = fetchFromGitHub {
- owner = "abrochard";
- repo = "emacs-habitica";
- rev = "4f708d0fc0564fa3b624452b9f24ba4a6eeae181";
- sha256 = "1g0flh50j2gzx3414id758klvrxgdk5p26hpxdab46f8kvjylgip";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/cf9543db3564f4806440ed8c5c30fecbbc625fa1/recipes/habitica";
- sha256 = "0g7rb8ip5d6xvlsfk8cvf81hgzlq5p4kw9pkisjq9ri8mvkfmxf3";
- name = "recipe";
- };
- packageRequires = [ emacs org ];
- meta = {
- homepage = "https://melpa.org/#/habitica";
- license = lib.licenses.free;
- };
- }) {};
hack-mode = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -43516,31 +23731,6 @@
license = lib.licenses.free;
};
}) {};
- hal-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "hal-mode";
- ename = "hal-mode";
- version = "20160704.1046";
- src = fetchFromGitHub {
- owner = "machinekoder";
- repo = "hal-mode";
- rev = "cd2f66f219ee520198d4586fb6b169cef7ad3f21";
- sha256 = "0xibwmngijq0wv9hkahs5nh02qj3ma0bkczl07hx8wnl6j27f0nj";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/3416586d4d782cdd61a56159c5f80a0ca9b3ddf4/recipes/hal-mode";
- sha256 = "0nlan5f3llhn04p86a6l47dl9g83a51wzrchs2q8rvfcy4161nn4";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/hal-mode";
- license = lib.licenses.free;
- };
- }) {};
ham-mode = callPackage ({ fetchFromGitHub
, fetchurl
, html-to-markdown
@@ -43568,32 +23758,6 @@
license = lib.licenses.free;
};
}) {};
- hamburg-theme = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "hamburg-theme";
- ename = "hamburg-theme";
- version = "20160122.2340";
- src = fetchFromGitHub {
- owner = "mswift42";
- repo = "hamburg-theme";
- rev = "a05bf090e0c57c34cc59e301f95d9961280db244";
- sha256 = "1k0z2x95lb4in325nsyl1r75m4px61wp077ak2asmp0i2p8g34g7";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/465ac6063c4f91652e59a8bbb493897109791728/recipes/hamburg-theme";
- sha256 = "149ln7670kjyhdfj5j9akxch47dlff2hd58amla7j3297z1nhg4k";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/hamburg-theme";
- license = lib.licenses.free;
- };
- }) {};
hamburger-menu = callPackage ({ emacs
, fetchFromGitLab
, fetchurl
@@ -43646,109 +23810,6 @@
license = lib.licenses.free;
};
}) {};
- hamlet-mode = callPackage ({ cl-lib ? null
- , dash
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , s }:
- melpaBuild {
- pname = "hamlet-mode";
- ename = "hamlet-mode";
- version = "20131207.2324";
- src = fetchFromGitHub {
- owner = "lightquake";
- repo = "hamlet-mode";
- rev = "7362b955e556a3d007fa06945a27e5b99349527d";
- sha256 = "1njrpb1s2v9skyfbgb28clrxyvyp8i4b8kwa68ynvq3vjb4fnws6";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/hamlet-mode";
- sha256 = "16cyfzv2yrf249jklxdahfmsy8rg6hargjpafy4fz4a532fcbw81";
- name = "recipe";
- };
- packageRequires = [ cl-lib dash s ];
- meta = {
- homepage = "https://melpa.org/#/hamlet-mode";
- license = lib.licenses.free;
- };
- }) {};
- handlebars-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "handlebars-mode";
- ename = "handlebars-mode";
- version = "20150211.949";
- src = fetchFromGitHub {
- owner = "danielevans";
- repo = "handlebars-mode";
- rev = "81f6b73fea8f397807781a1b51568397af21a6ef";
- sha256 = "0w443knp6kvjm2m79cni5d17plyhbsl0a4kip7yrpv5nmg370q3p";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/handlebars-mode";
- sha256 = "0wizasjihnabnqzn1226vh4gb571rs7s86bffhvkfvbk95zkiafq";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/handlebars-mode";
- license = lib.licenses.free;
- };
- }) {};
- handlebars-sgml-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "handlebars-sgml-mode";
- ename = "handlebars-sgml-mode";
- version = "20130623.1633";
- src = fetchFromGitHub {
- owner = "jacott";
- repo = "handlebars-sgml-mode";
- rev = "005282c33dfb6dbd2cfd46a4147d261504e8323c";
- sha256 = "1vx9lxwhj7n928ddzj9vzy8mw0fj7vgzx477x8ay79rhpvs8v122";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/87aec68ed80545a61ad46b71e7bd9dbfc7634108/recipes/handlebars-sgml-mode";
- sha256 = "10sxm7v94yxa92mqbwj3shqjs6f3zbxjvwgbvg9m2fh3b7xj617w";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/handlebars-sgml-mode";
- license = lib.licenses.free;
- };
- }) {};
- handoff = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "handoff";
- ename = "handoff";
- version = "20150916.2300";
- src = fetchFromGitHub {
- owner = "rejeep";
- repo = "handoff.el";
- rev = "75dc7a7e352f38679f65d0ca80ad158798e168bd";
- sha256 = "0whn8rc98dhncgizzrb22nx6b6cm655q1cf2fpn6g3knq1c2471r";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/bbdb89413b3f5de680e3f9fa625039c73a377e97/recipes/handoff";
- sha256 = "0iqqvygx50wi2vcbs6bfgqzhcz9a89zrwb7sg0ang9qrkiz5k36w";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/handoff";
- license = lib.licenses.free;
- };
- }) {};
hardcore-mode = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -43981,32 +24042,6 @@
license = lib.licenses.free;
};
}) {};
- hasklig-mode = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "hasklig-mode";
- ename = "hasklig-mode";
- version = "20181110.1059";
- src = fetchFromGitHub {
- owner = "minad";
- repo = "hasklig-mode";
- rev = "386c098c93a744f6b30ad937d193eebf0fd79e1b";
- sha256 = "0m1cn59fzsfqc6j1892yaaddh6g6mwiqnp1ssxhic5fcm2xk00rz";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/15a60278102de9e078b613456126945737718ce9/recipes/hasklig-mode";
- sha256 = "0gz0k9ahk0jpdp893ckbby9ilkac1zp95kpfqdnpfy0a036xfwm7";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/hasklig-mode";
- license = lib.licenses.free;
- };
- }) {};
hasky-extensions = callPackage ({ avy-menu
, emacs
, fetchFromGitHub
@@ -44062,84 +24097,6 @@
license = lib.licenses.free;
};
}) {};
- haste = callPackage ({ fetchFromGitHub
- , fetchurl
- , json ? null
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "haste";
- ename = "haste";
- version = "20141030.1334";
- src = fetchFromGitHub {
- owner = "rlister";
- repo = "emacs-haste-client";
- rev = "f1099c6296fc9575675e281402b89854739114bb";
- sha256 = "1a6almgsh93jzi5h59mmrlwcz805j3fnr8vrcfxnirxpr39159sq";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/haste";
- sha256 = "175kprxqbpmssjxavcm7lyzg1cwsxkrfg9pc72vgqyfmcmjyk34c";
- name = "recipe";
- };
- packageRequires = [ json ];
- meta = {
- homepage = "https://melpa.org/#/haste";
- license = lib.licenses.free;
- };
- }) {};
- haxe-imports = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , pcache
- , s }:
- melpaBuild {
- pname = "haxe-imports";
- ename = "haxe-imports";
- version = "20170330.1604";
- src = fetchFromGitHub {
- owner = "accidentalrebel";
- repo = "emacs-haxe-imports";
- rev = "a4ab31759bd237e78c055dda73e808a4ee1b5fde";
- sha256 = "1x721jwdngahdmj0799ayg91kqxf6jv627b766bbq2hmagsf9si4";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/db7d2b08e914aab7719c6d3a951b142ec7252f34/recipes/haxe-imports";
- sha256 = "10xh57ir49f18pzw9ihpwffchm1mba0ck1zdqsfllh3p5gry1msg";
- name = "recipe";
- };
- packageRequires = [ emacs pcache s ];
- meta = {
- homepage = "https://melpa.org/#/haxe-imports";
- license = lib.licenses.free;
- };
- }) {};
- haxe-mode = callPackage ({ fetchhg
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "haxe-mode";
- ename = "haxe-mode";
- version = "20131004.142";
- src = fetchhg {
- url = "https://bitbucket.com/jpsecher/haxe-mode";
- rev = "850f29d9f70e";
- sha256 = "106a7kpjj4laxl7x8aqpv75ih54569b3bs2a1b8z4rghmikqc4aw";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/haxe-mode";
- sha256 = "07krrpi636dadgyxxhh5037kq527wpnszbl22lk6i5fcxqidcnw9";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/haxe-mode";
- license = lib.licenses.free;
- };
- }) {};
haxor-mode = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -44166,58 +24123,6 @@
license = lib.licenses.free;
};
}) {};
- hayoo = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , json ? null
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "hayoo";
- ename = "hayoo";
- version = "20140831.521";
- src = fetchFromGitHub {
- owner = "benma";
- repo = "hayoo.el";
- rev = "3ca2fb0c4d5f337d0410c21b2702dd147014e984";
- sha256 = "0pjxyhh8a02i54a9jsqr8p1mcqfl6k9b8gv9lnzb242gy4518y3l";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/01c1b96a4d076323264b2762d2c5a61680e21cff/recipes/hayoo";
- sha256 = "1rqvnv5nxlsyvsa5my1wpfm82sw21s7kfbg80vrjmxh0mwlyv4p9";
- name = "recipe";
- };
- packageRequires = [ emacs json ];
- meta = {
- homepage = "https://melpa.org/#/hayoo";
- license = lib.licenses.free;
- };
- }) {};
- hc-zenburn-theme = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "hc-zenburn-theme";
- ename = "hc-zenburn-theme";
- version = "20150928.933";
- src = fetchFromGitHub {
- owner = "edran";
- repo = "hc-zenburn-emacs";
- rev = "fd0024a5191cdce204d91c8f1db99ba31640f6e9";
- sha256 = "0rgcj47h7a67qkw6696pcm1a4g4ryx8nrz55s69fw86958fp08hk";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/01ccd40bd5fc2699a4756ebf503ac50f562cf600/recipes/hc-zenburn-theme";
- sha256 = "0jcddk9ppgcizyyciabj3sgk1pmingl97knf9nmr0mi89h7n2g5y";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/hc-zenburn-theme";
- license = lib.licenses.free;
- };
- }) {};
hcl-mode = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -44244,31 +24149,6 @@
license = lib.licenses.free;
};
}) {};
- headlong = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "headlong";
- ename = "headlong";
- version = "20150417.826";
- src = fetchFromGitHub {
- owner = "abo-abo";
- repo = "headlong";
- rev = "f6830f87f236eee88263cb6976125f72422abe72";
- sha256 = "06hq6p6a4fzprbj4r885vsvzddlvx0wxqk5kik06v5bm7hjmnyrq";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/826e9a8221d9378dd3b9fcc16ce5f50fd6ed2dce/recipes/headlong";
- sha256 = "042ybplkqjb30qf5cpbw5d91j1rdc71b789v277h036bri7hgxz6";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/headlong";
- license = lib.licenses.free;
- };
- }) {};
heaven-and-hell = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -44324,33 +24204,6 @@
license = lib.licenses.free;
};
}) {};
- helm-R = callPackage ({ ess
- , fetchFromGitHub
- , fetchurl
- , helm
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "helm-R";
- ename = "helm-R";
- version = "20120819.1714";
- src = fetchFromGitHub {
- owner = "myuhe";
- repo = "helm-R.el";
- rev = "b0eb9d5f6a483a9dbe6eb6cf1f2024d4f5938bc2";
- sha256 = "0nip0zrmn944wy0x2dc5ryr0m7a948rn2a8cbaajghs7a7zai4cr";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/ce6eb840368f8cbee66dc061478d5096b9dacb68/recipes/helm-R";
- sha256 = "0zq9f2xhgap3ihnrlsrsaxaz0nx014k0820bfsq7lckwcnm0mng1";
- name = "recipe";
- };
- packageRequires = [ ess helm ];
- meta = {
- homepage = "https://melpa.org/#/helm-R";
- license = lib.licenses.free;
- };
- }) {};
helm-ack = callPackage ({ cl-lib ? null
, fetchFromGitHub
, fetchurl
@@ -44378,62 +24231,6 @@
license = lib.licenses.free;
};
}) {};
- helm-ad = callPackage ({ dash
- , fetchFromGitHub
- , fetchurl
- , helm
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "helm-ad";
- ename = "helm-ad";
- version = "20151209.215";
- src = fetchFromGitHub {
- owner = "tnoda";
- repo = "helm-ad";
- rev = "8ac044705d8620ee354a9cfa8cc1b865e83c0d55";
- sha256 = "0hxfgdn56c7qr64r59g9hvxxwa4mw0ad9c9m0z5cj85bsdd7rlx4";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/b44ec4e059ab830a3708697fa95fada5f6a30a91/recipes/helm-ad";
- sha256 = "0h2zjfj9hy7bkpmmjjs0a4a06asbw0yww8mw9rk2xi1gc2aqq4hi";
- name = "recipe";
- };
- packageRequires = [ dash helm ];
- meta = {
- homepage = "https://melpa.org/#/helm-ad";
- license = lib.licenses.free;
- };
- }) {};
- helm-addressbook = callPackage ({ addressbook-bookmark
- , cl-lib ? null
- , emacs
- , fetchFromGitHub
- , fetchurl
- , helm
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "helm-addressbook";
- ename = "helm-addressbook";
- version = "20170903.28";
- src = fetchFromGitHub {
- owner = "emacs-helm";
- repo = "helm-addressbook";
- rev = "62497f72d46afd3a9f9f94b27d062a82fb232de4";
- sha256 = "1lmq7j19qv3pabs5arapx3lv2xhf0sgn4b2hl0l0kzph52fvics7";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/4bb805b0f2d2055aa4e88bd41239d75ec34f5785/recipes/helm-addressbook";
- sha256 = "1d8byi6sr5gz1rx3kglnkp47sn9dqdd83s12d84wyay06ix3cqqi";
- name = "recipe";
- };
- packageRequires = [ addressbook-bookmark cl-lib emacs helm ];
- meta = {
- homepage = "https://melpa.org/#/helm-addressbook";
- license = lib.licenses.free;
- };
- }) {};
helm-ag = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -44461,32 +24258,6 @@
license = lib.licenses.free;
};
}) {};
- helm-ag-r = callPackage ({ fetchFromGitHub
- , fetchurl
- , helm
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "helm-ag-r";
- ename = "helm-ag-r";
- version = "20131123.731";
- src = fetchFromGitHub {
- owner = "yuutayamada";
- repo = "helm-ag-r";
- rev = "67de4ebafe9b088db950eefa5ef590a6d78b4ac8";
- sha256 = "1rifdkhzvf7xd2npban0i8v3rjcji69063dw9rs1d32w4n7fzlfa";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/6aa1cf029db913dafb561e4c8ccc1ca9099524de/recipes/helm-ag-r";
- sha256 = "0ivh7f021lbmbaj6gs4y8m99s63js57w04q7cwx7v4i32cpas7r9";
- name = "recipe";
- };
- packageRequires = [ helm ];
- meta = {
- homepage = "https://melpa.org/#/helm-ag-r";
- license = lib.licenses.free;
- };
- }) {};
helm-aws = callPackage ({ fetchFromGitHub
, fetchurl
, helm
@@ -44600,59 +24371,6 @@
license = lib.licenses.free;
};
}) {};
- helm-bibtexkey = callPackage ({ fetchFromGitHub
- , fetchurl
- , helm
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "helm-bibtexkey";
- ename = "helm-bibtexkey";
- version = "20140214.704";
- src = fetchFromGitHub {
- owner = "kenbeese";
- repo = "helm-bibtexkey";
- rev = "aa1637ea5c8c5f1817e480fc2a3750cafab3d99f";
- sha256 = "10k7hjfz9jmfpbmsv20jy9vr6fqxx1yp8v115hprqvw057iifsl9";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/d35a2e5cb5232d16d5c98168706d8b6426fcfb44/recipes/helm-bibtexkey";
- sha256 = "00i7ni4r73mmxavhfcm0fd7jhx6gxvxx7prax1yxmhs46fpz8jwj";
- name = "recipe";
- };
- packageRequires = [ helm ];
- meta = {
- homepage = "https://melpa.org/#/helm-bibtexkey";
- license = lib.licenses.free;
- };
- }) {};
- helm-bind-key = callPackage ({ bind-key
- , fetchFromGitHub
- , fetchurl
- , helm
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "helm-bind-key";
- ename = "helm-bind-key";
- version = "20141108.2115";
- src = fetchFromGitHub {
- owner = "myuhe";
- repo = "helm-bind-key.el";
- rev = "9da6ad8b7530e72fb4ac67be8c6a482898dddc25";
- sha256 = "1wmcy7q4ys2sf8ya5l4n7a6bq5m9d6m19amjfwkmkh4ajkwl041y";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/9ae8bfd320cdef6c65da2a00439f8108d7ffa7ce/recipes/helm-bind-key";
- sha256 = "1yfj6mmxc165in1i85ccanssch6bg19ib1fcm7sa4i4hv0mgwaid";
- name = "recipe";
- };
- packageRequires = [ bind-key helm ];
- meta = {
- homepage = "https://melpa.org/#/helm-bind-key";
- license = lib.licenses.free;
- };
- }) {};
helm-bitbucket = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -44762,33 +24480,6 @@
license = lib.licenses.free;
};
}) {};
- helm-c-moccur = callPackage ({ color-moccur
- , fetchFromGitHub
- , fetchurl
- , helm
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "helm-c-moccur";
- ename = "helm-c-moccur";
- version = "20151230.124";
- src = fetchFromGitHub {
- owner = "myuhe";
- repo = "helm-c-moccur.el";
- rev = "b0a906f85fa352db091f88b91a9c510de607dfe9";
- sha256 = "0w4svbg32y63v049plvk7djc1m2amjzrr1v979d9s6jbnnpzlb5c";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/462a43341a5811822928bcac331d617a38b52e8a/recipes/helm-c-moccur";
- sha256 = "1i6a4jqjy9amlhdbj5d26wzagndfgszha09vs5qf4760vjl7kn4b";
- name = "recipe";
- };
- packageRequires = [ color-moccur helm ];
- meta = {
- homepage = "https://melpa.org/#/helm-c-moccur";
- license = lib.licenses.free;
- };
- }) {};
helm-c-yasnippet = callPackage ({ cl-lib ? null
, fetchFromGitHub
, fetchurl
@@ -44817,89 +24508,6 @@
license = lib.licenses.free;
};
}) {};
- helm-charinfo = callPackage ({ cl-lib ? null
- , emacs
- , fetchFromGitHub
- , fetchurl
- , helm
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "helm-charinfo";
- ename = "helm-charinfo";
- version = "20170810.531";
- src = fetchFromGitHub {
- owner = "mandoku";
- repo = "helm-charinfo";
- rev = "91798a49dc115342a7e01e48b264e9a0bf5ea414";
- sha256 = "1ifj6zz5k7qjalg06fvfc7rdmlha0n9hll2hiq7mrcj7lfac6jga";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/6667774bba495c45703ef75261f1f14d89684e3a/recipes/helm-charinfo";
- sha256 = "04k6crcwhv2k69f5w75g0dg0f5qsbhyxl93qzxxdb5bnr56ad7f6";
- name = "recipe";
- };
- packageRequires = [ cl-lib emacs helm ];
- meta = {
- homepage = "https://melpa.org/#/helm-charinfo";
- license = lib.licenses.free;
- };
- }) {};
- helm-chrome = callPackage ({ cl-lib ? null
- , emacs
- , fetchFromGitHub
- , fetchurl
- , helm
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "helm-chrome";
- ename = "helm-chrome";
- version = "20160718.2220";
- src = fetchFromGitHub {
- owner = "kawabata";
- repo = "helm-chrome";
- rev = "fd630ace4b4b4f33355a973743bbfe0c90ce4830";
- sha256 = "0r8s85fs5lnwdn377z5zgi3d090k2n1mgiyxwgy49i8yirssgz51";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/7f6ca33fe8ec8a0af8fb166451050f5502838deb/recipes/helm-chrome";
- sha256 = "0p3n2pna83mp4ym8x69lk4r3q4apbj5v2blg2mwcsd9zij153nxz";
- name = "recipe";
- };
- packageRequires = [ cl-lib emacs helm ];
- meta = {
- homepage = "https://melpa.org/#/helm-chrome";
- license = lib.licenses.free;
- };
- }) {};
- helm-chronos = callPackage ({ chronos
- , fetchFromGitHub
- , fetchurl
- , helm
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "helm-chronos";
- ename = "helm-chronos";
- version = "20150528.1336";
- src = fetchFromGitHub {
- owner = "dxknight";
- repo = "helm-chronos";
- rev = "a14fc3d65dd96ce6616234b3f7b8b08b4c1817ef";
- sha256 = "1dmj4f8pris1i7wvfplp4dbnyfm403l6rplxfrfi0cd9afg7m68i";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/b6f5eef6ac62ed8d035f4dd272695655d00a4180/recipes/helm-chronos";
- sha256 = "1a65b680741cx4cyyizyl2c3bss36x3j2m9sh9hjc87xrzarg0s3";
- name = "recipe";
- };
- packageRequires = [ chronos helm ];
- meta = {
- homepage = "https://melpa.org/#/helm-chronos";
- license = lib.licenses.free;
- };
- }) {};
helm-cider = callPackage ({ cider
, emacs
, fetchFromGitHub
@@ -44928,33 +24536,6 @@
license = lib.licenses.free;
};
}) {};
- helm-cider-history = callPackage ({ cider
- , fetchFromGitHub
- , fetchurl
- , helm
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "helm-cider-history";
- ename = "helm-cider-history";
- version = "20150719.1420";
- src = fetchFromGitHub {
- owner = "Kungi";
- repo = "helm-cider-history";
- rev = "c391fcb2e162a02001605a0b9449783575a831fd";
- sha256 = "18j4ikb3q8ygdq74zqzm83wgb39x7w209n3186mm051n8lfmkaif";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/31a9c900d57f2eeed4f0101af73f8a59c20e9a99/recipes/helm-cider-history";
- sha256 = "12l8jyl743zqk8m2xzcz75y1ybdkbkvcbvfkn1k88k09s31kdq4h";
- name = "recipe";
- };
- packageRequires = [ cider helm ];
- meta = {
- homepage = "https://melpa.org/#/helm-cider-history";
- license = lib.licenses.free;
- };
- }) {};
helm-circe = callPackage ({ circe
, cl-lib ? null
, emacs
@@ -44984,58 +24565,6 @@
license = lib.licenses.free;
};
}) {};
- helm-clojuredocs = callPackage ({ edn
- , fetchFromGitHub
- , fetchurl
- , helm
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "helm-clojuredocs";
- ename = "helm-clojuredocs";
- version = "20160405.23";
- src = fetchFromGitHub {
- owner = "mbuczko";
- repo = "helm-clojuredocs";
- rev = "5a7f0f2cb401be0b09e73262a1c18265ab9a3cea";
- sha256 = "015b8zxh91ljhqvn6z43gy08di54xcw9skw0i7frj3d7gk984qhl";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/adb117e04c158b1c77a8c1174329477d7eaca838/recipes/helm-clojuredocs";
- sha256 = "0yz0wlyay9286by8i30gs3ispswq8ayqlcnna1s7bgspjvb7scmk";
- name = "recipe";
- };
- packageRequires = [ edn helm ];
- meta = {
- homepage = "https://melpa.org/#/helm-clojuredocs";
- license = lib.licenses.free;
- };
- }) {};
- helm-cmd-t = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "helm-cmd-t";
- ename = "helm-cmd-t";
- version = "20170125.659";
- src = fetchFromGitHub {
- owner = "emacs-helm";
- repo = "helm-cmd-t";
- rev = "7fa3d4a9f7271512e54c5de999079b27c9eec6bf";
- sha256 = "06jdvkgnmwrgsdh9y2bwzdng7hy4331v3lh11jvdy4704w4khmak";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/helm-cmd-t";
- sha256 = "1w870ldq029wgicgv4cqm31zw2i8vkap3m9hsr9d0i3gv2virnc6";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/helm-cmd-t";
- license = lib.licenses.free;
- };
- }) {};
helm-codesearch = callPackage ({ cl-lib ? null
, dash
, emacs
@@ -45178,61 +24707,6 @@
license = lib.licenses.free;
};
}) {};
- helm-css-scss = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , helm
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "helm-css-scss";
- ename = "helm-css-scss";
- version = "20140626.1725";
- src = fetchFromGitHub {
- owner = "ShingoFukuyama";
- repo = "helm-css-scss";
- rev = "363d5ebe9ecf8fab8422b83a414d054c3eff79fa";
- sha256 = "1wwkcjw7q660a7v7f6qr6hr5blharyylr5ddfz013xa3lnzy72cv";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/9b985973ff12135f893e6d2742223725c2143720/recipes/helm-css-scss";
- sha256 = "0iflwl0rijbkx1b7i1s7984dw7sz1wa1cb74fqij0kcn76kal7ak";
- name = "recipe";
- };
- packageRequires = [ emacs helm ];
- meta = {
- homepage = "https://melpa.org/#/helm-css-scss";
- license = lib.licenses.free;
- };
- }) {};
- helm-ctest = callPackage ({ dash
- , fetchFromGitHub
- , fetchurl
- , helm-core
- , lib
- , melpaBuild
- , s }:
- melpaBuild {
- pname = "helm-ctest";
- ename = "helm-ctest";
- version = "20180821.305";
- src = fetchFromGitHub {
- owner = "danlamanna";
- repo = "helm-ctest";
- rev = "0c73689692a290f56080e95325c15362e90d529b";
- sha256 = "143vyd64w3gycc68jcsji474nz2ggda58hgwq6hyiwb7s0gm1gd3";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1cc85ff5554df10fc2066eec4d90de3b25536923/recipes/helm-ctest";
- sha256 = "1mphc9fsclbw19p5i1xf52qg6ljljbajvbcsl95hisrnvhg89vpm";
- name = "recipe";
- };
- packageRequires = [ dash helm-core s ];
- meta = {
- homepage = "https://melpa.org/#/helm-ctest";
- license = lib.licenses.free;
- };
- }) {};
helm-dash = callPackage ({ cl-lib ? null
, fetchFromGitHub
, fetchurl
@@ -45286,60 +24760,6 @@
license = lib.licenses.free;
};
}) {};
- helm-describe-modes = callPackage ({ cl-lib ? null
- , emacs
- , fetchFromGitHub
- , fetchurl
- , helm
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "helm-describe-modes";
- ename = "helm-describe-modes";
- version = "20160211.2118";
- src = fetchFromGitHub {
- owner = "emacs-helm";
- repo = "helm-describe-modes";
- rev = "d2253c7c2bf4f28b9ff8a2d281bd7527c0106527";
- sha256 = "0li9bi1lm5ldwfpvzahxp7hyfd94jr1kl43rprx0myxb016yk2p5";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/23f0b2025073850c477ba4646c3821b3c7de6c42/recipes/helm-describe-modes";
- sha256 = "0ajy9kwspm8rzafl0df57fad5867s86yjqj29shznqb12r91lpqb";
- name = "recipe";
- };
- packageRequires = [ cl-lib emacs helm ];
- meta = {
- homepage = "https://melpa.org/#/helm-describe-modes";
- license = lib.licenses.free;
- };
- }) {};
- helm-dictionary = callPackage ({ fetchFromGitHub
- , fetchurl
- , helm
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "helm-dictionary";
- ename = "helm-dictionary";
- version = "20160817.1333";
- src = fetchFromGitHub {
- owner = "emacs-helm";
- repo = "helm-dictionary";
- rev = "805ce850d4cbe811227d9c9b16cc51f652198f3f";
- sha256 = "0ambb6i8ipz5y0mnc8jd07j3iiwb7ah87pw8x8pi3phv1r80l0k1";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/b8cc457b06ce271f7c19729cde7728286bb85528/recipes/helm-dictionary";
- sha256 = "1pak8qn0qvbzyclhzvr5ka3pl370i4kiykypfkwbfgvqqwczhl3n";
- name = "recipe";
- };
- packageRequires = [ helm ];
- meta = {
- homepage = "https://melpa.org/#/helm-dictionary";
- license = lib.licenses.free;
- };
- }) {};
helm-directory = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -45394,117 +24814,6 @@
license = lib.licenses.free;
};
}) {};
- helm-dired-recent-dirs = callPackage ({ fetchFromGitHub
- , fetchurl
- , helm
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "helm-dired-recent-dirs";
- ename = "helm-dired-recent-dirs";
- version = "20131228.614";
- src = fetchFromGitHub {
- owner = "yynozk";
- repo = "helm-dired-recent-dirs";
- rev = "3bcd125b44f5a707588ae3868777d91192351523";
- sha256 = "14sifdrfg8ydvi9mj8qm2bfphbffglxrkb5ky4q5b3j96bn8v110";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/3416586d4d782cdd61a56159c5f80a0ca9b3ddf4/recipes/helm-dired-recent-dirs";
- sha256 = "1rm47if91hk6hi4xil9vb6rs415s5kvhwc6zkrmcvay9hiw9vrpw";
- name = "recipe";
- };
- packageRequires = [ helm ];
- meta = {
- homepage = "https://melpa.org/#/helm-dired-recent-dirs";
- license = lib.licenses.free;
- };
- }) {};
- helm-dirset = callPackage ({ cl-lib ? null
- , f
- , fetchFromGitHub
- , fetchurl
- , helm
- , lib
- , melpaBuild
- , s }:
- melpaBuild {
- pname = "helm-dirset";
- ename = "helm-dirset";
- version = "20151208.1612";
- src = fetchFromGitHub {
- owner = "k1LoW";
- repo = "helm-dirset";
- rev = "eb30810cd26e1ee73d84a863e6b2667700e9aead";
- sha256 = "183vj5yi575aqkak19hl8k4mw38r0ki9p1fnpa8nny2srjyy34yb";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/helm-dirset";
- sha256 = "1bwgv1pm047xafidq23mdqj3sdc5bvqlw74s80dj88ybp3vrpvlk";
- name = "recipe";
- };
- packageRequires = [ cl-lib f helm s ];
- meta = {
- homepage = "https://melpa.org/#/helm-dirset";
- license = lib.licenses.free;
- };
- }) {};
- helm-elscreen = callPackage ({ cl-lib ? null
- , elscreen
- , emacs
- , fetchFromGitHub
- , fetchurl
- , helm
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "helm-elscreen";
- ename = "helm-elscreen";
- version = "20170709.214";
- src = fetchFromGitHub {
- owner = "emacs-helm";
- repo = "helm-elscreen";
- rev = "b8212866939dc4a1e1dc23ad572407b688e130e3";
- sha256 = "0gy6lbdngiwfl9vfw32clagbmv70f93slc9zkm3dz3mca37435kz";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/dfe42a7fe2dc051c6c49aa75bce89bfe1b5fdbbb/recipes/helm-elscreen";
- sha256 = "186k66kf2ak2ihha39989cz1aarqrvbgp213y1fwh9qsn1kxclnd";
- name = "recipe";
- };
- packageRequires = [ cl-lib elscreen emacs helm ];
- meta = {
- homepage = "https://melpa.org/#/helm-elscreen";
- license = lib.licenses.free;
- };
- }) {};
- helm-emmet = callPackage ({ emmet-mode
- , fetchFromGitHub
- , fetchurl
- , helm
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "helm-emmet";
- ename = "helm-emmet";
- version = "20160713.531";
- src = fetchFromGitHub {
- owner = "yasuyk";
- repo = "helm-emmet";
- rev = "f0364e736b10cf44232053a78de04133a88185ae";
- sha256 = "1zl6vhzbf29864q97q5v7c318x36y1a4cjm0i7kgj3hc6qla5j88";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/acbc5e9fab159ad2d63b10c0fa6ac18636bb2379/recipes/helm-emmet";
- sha256 = "1dkn9qa3dv2im11lm19wfh5jwwwp42sv7jc0p6qg35rhzwdpfg03";
- name = "recipe";
- };
- packageRequires = [ emmet-mode helm ];
- meta = {
- homepage = "https://melpa.org/#/helm-emmet";
- license = lib.licenses.free;
- };
- }) {};
helm-emms = callPackage ({ cl-lib ? null
, emacs
, emms
@@ -45615,61 +24924,6 @@
license = lib.licenses.free;
};
}) {};
- helm-exwm = callPackage ({ emacs
- , exwm
- , fetchFromGitHub
- , fetchurl
- , helm
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "helm-exwm";
- ename = "helm-exwm";
- version = "20180827.137";
- src = fetchFromGitHub {
- owner = "emacs-helm";
- repo = "helm-exwm";
- rev = "e21c6ffabadd2fe8d6c7805b6027cc59a6f914e9";
- sha256 = "11fyqk3h9cqynifc2zzqn0czrcj082wkdg1qhbj97nl4gcj787rl";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/8ecdf9e00cf19fabbeade12a66d66cd010561366/recipes/helm-exwm";
- sha256 = "0g15c4bg794vqigafl9g2w85jbs1lbw9qplaf8ffx0az4qwhnvqz";
- name = "recipe";
- };
- packageRequires = [ emacs exwm helm ];
- meta = {
- homepage = "https://melpa.org/#/helm-exwm";
- license = lib.licenses.free;
- };
- }) {};
- helm-filesets = callPackage ({ fetchFromGitHub
- , fetchurl
- , filesets-plus
- , helm
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "helm-filesets";
- ename = "helm-filesets";
- version = "20140929.1135";
- src = fetchFromGitHub {
- owner = "gcla";
- repo = "helm-filesets";
- rev = "b352910af4c3099267a8aa0169c7f743b35bb1fa";
- sha256 = "00yhmpv5xjlw1gwbcrznz83gkaby8zlqv74d3p7plca2cwjll1g9";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/71c0d98ede6119e838e3db146dea5c16d8ba8ed8/recipes/helm-filesets";
- sha256 = "1yhhchksi0r4r5c5q1mggz2hykkvk93baq91b5hkaflqi30d1v8f";
- name = "recipe";
- };
- packageRequires = [ filesets-plus helm ];
- meta = {
- homepage = "https://melpa.org/#/helm-filesets";
- license = lib.licenses.free;
- };
- }) {};
helm-firefox = callPackage ({ cl-lib ? null
, emacs
, fetchFromGitHub
@@ -45698,34 +24952,6 @@
license = lib.licenses.free;
};
}) {};
- helm-flx = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , flx
- , helm
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "helm-flx";
- ename = "helm-flx";
- version = "20180102.2116";
- src = fetchFromGitHub {
- owner = "PythonNut";
- repo = "helm-flx";
- rev = "6640fac5cb16bee73c95b8ed1248a4e5e113690e";
- sha256 = "1fh1dy6xpc476hs87mn9fwxhxi97h7clfnnm7dxb7hg43xmgsjjs";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/f1418d260f34d698cec611978001c7fd1d1a8a89/recipes/helm-flx";
- sha256 = "03vxr5f5m4s6k6rm0976w8h3s4c3b5mrdqgmkd281hmyh9q3cslq";
- name = "recipe";
- };
- packageRequires = [ emacs flx helm ];
- meta = {
- homepage = "https://melpa.org/#/helm-flx";
- license = lib.licenses.free;
- };
- }) {};
helm-flycheck = callPackage ({ dash
, fetchFromGitHub
, fetchurl
@@ -45754,138 +24980,6 @@
license = lib.licenses.free;
};
}) {};
- helm-flymake = callPackage ({ fetchFromGitHub
- , fetchurl
- , helm
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "helm-flymake";
- ename = "helm-flymake";
- version = "20160609.1702";
- src = fetchFromGitHub {
- owner = "tam17aki";
- repo = "helm-flymake";
- rev = "72cf18a1a1f843db9bb5d58301739ea9ccb1655b";
- sha256 = "05wpclg4ibp0ida692m3s8nknx4aizfcdgxgfzlwczgdgw0922kn";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/d8547036dceaa466957f4c5a07eb0461f313b924/recipes/helm-flymake";
- sha256 = "0h87yd56nhxpahrcpk6hin142hzv3sdr5bvz0injbv8a2lwnny3b";
- name = "recipe";
- };
- packageRequires = [ helm ];
- meta = {
- homepage = "https://melpa.org/#/helm-flymake";
- license = lib.licenses.free;
- };
- }) {};
- helm-flyspell = callPackage ({ fetchFromGitHub
- , fetchurl
- , helm
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "helm-flyspell";
- ename = "helm-flyspell";
- version = "20170210.1101";
- src = fetchFromGitHub {
- owner = "pronobis";
- repo = "helm-flyspell";
- rev = "8d4d947c687cb650cb149aa2271ad5201ea92594";
- sha256 = "0q0xcgg8w9rrlsrrnk0l7qd8q7jc6x1agm2i769j21wpyfv1nbns";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/f8c5b91762d47a4d3024f1ed7f19666c6f2d5ce5/recipes/helm-flyspell";
- sha256 = "1g6xry2y6396pg7rg8hc0l84z5r3j2df7dpd1jgffxa8xa3i661f";
- name = "recipe";
- };
- packageRequires = [ helm ];
- meta = {
- homepage = "https://melpa.org/#/helm-flyspell";
- license = lib.licenses.free;
- };
- }) {};
- helm-frame = callPackage ({ emacs
- , fetchFromGitLab
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "helm-frame";
- ename = "helm-frame";
- version = "20170515.1250";
- src = fetchFromGitLab {
- owner = "chee";
- repo = "helm-frame";
- rev = "389e6461a423d649b7062ba99a2234bef7770059";
- sha256 = "1z7iwgl1v8nkwyz3h610l97amgq9slrfxxiicsnigc9vgsqlh987";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/febb2599e50518dadb30088bc9576aea2af092a7/recipes/helm-frame";
- sha256 = "18wbwm4r3ra9214whhdbxnjrxzra4pn12wqgq5lxli1khylihm3i";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/helm-frame";
- license = lib.licenses.free;
- };
- }) {};
- helm-fuzzier = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , helm
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "helm-fuzzier";
- ename = "helm-fuzzier";
- version = "20160605.1445";
- src = fetchFromGitHub {
- owner = "EphramPerdition";
- repo = "helm-fuzzier";
- rev = "8798dcf3583b863df5b9dea7fe3b0179ba1c35bc";
- sha256 = "1250mh0ydap0sifcyrgs32dnr6c8d723v4c55yvwm23dzvzwycp8";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/51dc6f01e0e5ee0593bea6616894bc0163878cd0/recipes/helm-fuzzier";
- sha256 = "0qdgf0phs3iz29zj3qjhdgb3i4xvf5r2vi0709pwxx2s6r13pvcc";
- name = "recipe";
- };
- packageRequires = [ emacs helm ];
- meta = {
- homepage = "https://melpa.org/#/helm-fuzzier";
- license = lib.licenses.free;
- };
- }) {};
- helm-fuzzy-find = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , helm
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "helm-fuzzy-find";
- ename = "helm-fuzzy-find";
- version = "20171105.2000";
- src = fetchFromGitHub {
- owner = "xuchunyang";
- repo = "helm-fuzzy-find";
- rev = "de2abbf7ca13609587325bacd4a1ed4376b5c927";
- sha256 = "1dacvnkqqiax02c627z9qi61iyqgr0j3qqmjp29h0v494czvrdbs";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/34f76bb377ed31aa42663858c407cc5476e6fe1f/recipes/helm-fuzzy-find";
- sha256 = "0lczlrpd5jy2vhy9jl3rjcdyiwr136spqm8k2rj8m9s8wpn0v75i";
- name = "recipe";
- };
- packageRequires = [ emacs helm ];
- meta = {
- homepage = "https://melpa.org/#/helm-fuzzy-find";
- license = lib.licenses.free;
- };
- }) {};
helm-ghc = callPackage ({ cl-lib ? null
, emacs
, fetchFromGitHub
@@ -45942,84 +25036,6 @@
license = lib.licenses.free;
};
}) {};
- helm-ghs = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , helm
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "helm-ghs";
- ename = "helm-ghs";
- version = "20170714.2241";
- src = fetchFromGitHub {
- owner = "iory";
- repo = "emacs-helm-ghs";
- rev = "f9d4ab80e8a33b21cd635285289ec5779bbe629f";
- sha256 = "0f7wsln7z2dhqn334pjk6hrj36gvx39vg19g8ds9sj9dq9djlf27";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/0f8d37030806905344a2ca56bfc469f5a238cd69/recipes/helm-ghs";
- sha256 = "0bzy2vr2h9c886cm4gd161n7laym952bzy5fhcibafhzm4abl4sh";
- name = "recipe";
- };
- packageRequires = [ emacs helm ];
- meta = {
- homepage = "https://melpa.org/#/helm-ghs";
- license = lib.licenses.free;
- };
- }) {};
- helm-git = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "helm-git";
- ename = "helm-git";
- version = "20120630.1403";
- src = fetchFromGitHub {
- owner = "maio";
- repo = "helm-git";
- rev = "5b4a6eb7a97b2583236a1f919b75249957918e29";
- sha256 = "1z5q47sly41amjiq5wcvdxf8slhl8wd24crgzpbn6m3lw2jk420r";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/707696fbec477027e675ff01c502e0b81096025c/recipes/helm-git";
- sha256 = "1ib73p7cmkw96csxxpkqwn6m60k1xrd46z6vyp29gj85cs4fpsb8";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/helm-git";
- license = lib.licenses.free;
- };
- }) {};
- helm-git-files = callPackage ({ fetchFromGitHub
- , fetchurl
- , helm
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "helm-git-files";
- ename = "helm-git-files";
- version = "20141212.517";
- src = fetchFromGitHub {
- owner = "kenbeese";
- repo = "helm-git-files";
- rev = "43193960774069369ac6964bbf7c026900206fa8";
- sha256 = "157b525h0kiaknn12fsw67fg26lzb20apx8sssmvlcicqcd51iaw";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/23bfa0b94f242f9da06366b4aefdf6ece72561e7/recipes/helm-git-files";
- sha256 = "02109r956nc1dmqh4v082vkr9wdixh03xhl7icwkzl7ipr5453s6";
- name = "recipe";
- };
- packageRequires = [ helm ];
- meta = {
- homepage = "https://melpa.org/#/helm-git-files";
- license = lib.licenses.free;
- };
- }) {};
helm-git-grep = callPackage ({ fetchFromGitHub
, fetchurl
, helm-core
@@ -46073,35 +25089,6 @@
license = lib.licenses.free;
};
}) {};
- helm-gitignore = callPackage ({ cl-lib ? null
- , fetchFromGitHub
- , fetchurl
- , gitignore-mode
- , helm
- , lib
- , melpaBuild
- , request }:
- melpaBuild {
- pname = "helm-gitignore";
- ename = "helm-gitignore";
- version = "20170210.1608";
- src = fetchFromGitHub {
- owner = "jupl";
- repo = "helm-gitignore";
- rev = "2a2e7da7855a6db0ab3bb6a6a087863d7abd4391";
- sha256 = "07770qhy56cf5l69mk6aq882sryjbfjd05kdk78v65mgmlwv806a";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/3146b9309e8cbe464330dcd1f5b8a9fd8788ad6f/recipes/helm-gitignore";
- sha256 = "01l7mx8g1m5qnwz973hzrgds4gywm56jgl4hcdxqvpi1n56md3x6";
- name = "recipe";
- };
- packageRequires = [ cl-lib gitignore-mode helm request ];
- meta = {
- homepage = "https://melpa.org/#/helm-gitignore";
- license = lib.licenses.free;
- };
- }) {};
helm-gitlab = callPackage ({ dash
, fetchFromGitHub
, fetchurl
@@ -46160,84 +25147,6 @@
license = lib.licenses.free;
};
}) {};
- helm-google = callPackage ({ fetchgit
- , fetchurl
- , helm
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "helm-google";
- ename = "helm-google";
- version = "20180605.2220";
- src = fetchgit {
- url = "https://framagit.org/steckerhalter/helm-google.git";
- rev = "48e91a73d5f48c39d7a219022a24440cff548e1a";
- sha256 = "05xj6bkr330glh56n8c63297zqh1cmlhxlyxpr04srjraifyzba1";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/f0a8eb0eefe88b4ea683a4743c0f8393506e014b/recipes/helm-google";
- sha256 = "0hv7wfrahjn8j4914dp2p4fl2cj85pmxnyxf5cnmv6p97yis0ham";
- name = "recipe";
- };
- packageRequires = [ helm ];
- meta = {
- homepage = "https://melpa.org/#/helm-google";
- license = lib.licenses.free;
- };
- }) {};
- helm-grepint = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , helm
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "helm-grepint";
- ename = "helm-grepint";
- version = "20161001.713";
- src = fetchFromGitHub {
- owner = "kopoli";
- repo = "helm-grepint";
- rev = "a62ca27515ff6a366b89b420500eb16d380cc653";
- sha256 = "1v87v6a34zv998z1dwwcqx49476pvy9g5zml7w5vzfkms0l8l28w";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/26446d6a2215bfa622d86837b30f2754dd25eb4c/recipes/helm-grepint";
- sha256 = "00wr3wk41sbpamxbjkqlby49g8y5z9n79p51sg7ginban4qy91gf";
- name = "recipe";
- };
- packageRequires = [ emacs helm ];
- meta = {
- homepage = "https://melpa.org/#/helm-grepint";
- license = lib.licenses.free;
- };
- }) {};
- helm-growthforecast = callPackage ({ fetchFromGitHub
- , fetchurl
- , helm
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "helm-growthforecast";
- ename = "helm-growthforecast";
- version = "20140119.1944";
- src = fetchFromGitHub {
- owner = "daichirata";
- repo = "helm-growthforecast";
- rev = "0f94ac090d6c354058ad89a86e5c18385c136d9b";
- sha256 = "0p0mk44y2z875ra8mzcb6vlf4rbkiq9yank5hdxvg2x2sxsaambk";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/7d92e66cad586d4dc6b1de12d1b41b818b5232c2/recipes/helm-growthforecast";
- sha256 = "1qlyp263rl0892hr53kgc16jlx3jylw2pplbzlx05a60k5348jjv";
- name = "recipe";
- };
- packageRequires = [ helm ];
- meta = {
- homepage = "https://melpa.org/#/helm-growthforecast";
- license = lib.licenses.free;
- };
- }) {};
helm-gtags = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -46274,12 +25183,12 @@
melpaBuild {
pname = "helm-hatena-bookmark";
ename = "helm-hatena-bookmark";
- version = "2.4.2";
+ version = "2.4.3";
src = fetchFromGitHub {
owner = "masutaka";
repo = "emacs-helm-hatena-bookmark";
- rev = "70b08add4f42ad430441399d266f47773f18835a";
- sha256 = "007ghf8ac104ifm4idc60zy2rn310kncbcv0qg4wr9djl65n2m95";
+ rev = "10b8bfbd7fc4c3f503b2bc01f0c062dac128059e";
+ sha256 = "17f7y7bw15y3x30j7b3ymp3gpnszfvnf8hmlgc1mkwafxvzv06i1";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/3e9335ad16d4151dd4970c4a3ad1fee9a84404fa/recipes/helm-hatena-bookmark";
@@ -46320,166 +25229,6 @@
license = lib.licenses.free;
};
}) {};
- helm-helm-commands = callPackage ({ fetchFromGitHub
- , fetchurl
- , helm
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "helm-helm-commands";
- ename = "helm-helm-commands";
- version = "20130902.1048";
- src = fetchFromGitHub {
- owner = "vapniks";
- repo = "helm-helm-commands";
- rev = "1c37bb0d4cda6877162603cd1ddc9f596a7a5cb9";
- sha256 = "0c31qr8lk58w86n5iisx0vpd19y44vmqg7xnpjh6mnz102xif7rn";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/f8bd33d5d5c8653df5373984d01c3ec87b30c51b/recipes/helm-helm-commands";
- sha256 = "0dq9p37i5rrp2nb1vhqzzqfmdg11va2xr3yz8hdxpwykm1ldqdcf";
- name = "recipe";
- };
- packageRequires = [ helm ];
- meta = {
- homepage = "https://melpa.org/#/helm-helm-commands";
- license = lib.licenses.free;
- };
- }) {};
- helm-hoogle = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , helm
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "helm-hoogle";
- ename = "helm-hoogle";
- version = "20161026.2234";
- src = fetchFromGitHub {
- owner = "jwiegley";
- repo = "helm-hoogle";
- rev = "73969a9d46d2121a849a01a9f7ed3636d01f7bbc";
- sha256 = "043bddm6lldl6wkifr1plqip7laai771z1a1l0x2h35l3g8c64h0";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/8ccc21c2acc76a6794aee94902b1bc4c14119901/recipes/helm-hoogle";
- sha256 = "0vhk4vwqfirdm5d0pppplfpqyc2sfj6jybhzp9n1w8xgrh2d1c0x";
- name = "recipe";
- };
- packageRequires = [ emacs helm ];
- meta = {
- homepage = "https://melpa.org/#/helm-hoogle";
- license = lib.licenses.free;
- };
- }) {};
- helm-hunks = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , helm
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "helm-hunks";
- ename = "helm-hunks";
- version = "20171217.1133";
- src = fetchFromGitHub {
- owner = "torgeir";
- repo = "helm-hunks.el";
- rev = "6392bf716f618eac23ce81140aceb0dfacb9c6d0";
- sha256 = "1ih2pgyhshv8nl7hhchd4h0pbjgj45irp5dy1fq2gy05v4rn7wi4";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/d61cbe53ad42f2405a66de9f551f5b870a60709f/recipes/helm-hunks";
- sha256 = "1fhb9sf7fpz3f3ylc906w5xa4zzfr0gix6m7zc4c8qmz33zbhbp5";
- name = "recipe";
- };
- packageRequires = [ emacs helm ];
- meta = {
- homepage = "https://melpa.org/#/helm-hunks";
- license = lib.licenses.free;
- };
- }) {};
- helm-idris = callPackage ({ fetchFromGitHub
- , fetchurl
- , helm
- , idris-mode
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "helm-idris";
- ename = "helm-idris";
- version = "20141202.957";
- src = fetchFromGitHub {
- owner = "david-christiansen";
- repo = "helm-idris";
- rev = "a2f45d6817974f318b55ad9b7fd19d5df132d47e";
- sha256 = "0128nrhwyzslzl0l7wcjxn3dlx3h1sjmwnbbnp2fj4bjk7chc59q";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/helm-idris";
- sha256 = "04f1963ksbjdza1syajb5vkwwsc9gzk0az6c1m1zgvsianrq4rd9";
- name = "recipe";
- };
- packageRequires = [ helm idris-mode ];
- meta = {
- homepage = "https://melpa.org/#/helm-idris";
- license = lib.licenses.free;
- };
- }) {};
- helm-img = callPackage ({ cl-lib ? null
- , fetchFromGitHub
- , fetchurl
- , helm
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "helm-img";
- ename = "helm-img";
- version = "20151224.1521";
- src = fetchFromGitHub {
- owner = "l3msh0";
- repo = "helm-img";
- rev = "aa3f8a5dce8d0413bf07584f07153a39015c2bfc";
- sha256 = "0py4xs27z2jvg99i6qaf2ccz0mvk6bb9cvdyz8v8ngmnj3rw2vla";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/e0ea97a55f8f4183d375424c94705f372189d6ed/recipes/helm-img";
- sha256 = "0sq9l1wgm97ppfc45w3bdcv0qq5m85ygnanv1bdcp8bxbdl4vg0q";
- name = "recipe";
- };
- packageRequires = [ cl-lib helm ];
- meta = {
- homepage = "https://melpa.org/#/helm-img";
- license = lib.licenses.free;
- };
- }) {};
- helm-img-tiqav = callPackage ({ fetchFromGitHub
- , fetchurl
- , helm-img
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "helm-img-tiqav";
- ename = "helm-img-tiqav";
- version = "20151224.1522";
- src = fetchFromGitHub {
- owner = "l3msh0";
- repo = "helm-img-tiqav";
- rev = "33a7e9508bc8f37d53320b56c92b53d321a57bb0";
- sha256 = "04vdin0n3514c8bycdjrwk3l6pkarrwanlklnm75315b91nkkbcp";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/f6a948f91dc58ce565e54967ab75fe572f37f616/recipes/helm-img-tiqav";
- sha256 = "1m083hiih2rpyy8i439745mj4ldqy85fpnvms8qnv3042b8x35y0";
- name = "recipe";
- };
- packageRequires = [ helm-img ];
- meta = {
- homepage = "https://melpa.org/#/helm-img-tiqav";
- license = lib.licenses.free;
- };
- }) {};
helm-ispell = callPackage ({ fetchFromGitHub
, fetchurl
, helm-core
@@ -46506,309 +25255,6 @@
license = lib.licenses.free;
};
}) {};
- helm-itunes = callPackage ({ fetchFromGitHub
- , fetchurl
- , helm
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "helm-itunes";
- ename = "helm-itunes";
- version = "20151012.2348";
- src = fetchFromGitHub {
- owner = "anschwa";
- repo = "helm-itunes";
- rev = "966de755a5aadbe02311a6cef77bd4790e84c263";
- sha256 = "1czgf5br89x192g3lh3x2n998f79hi1n2f309ll264qnl35kv14w";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/helm-itunes";
- sha256 = "0zi4wyraqkjwp954pkng8b23giv1q9618apd9v3dczsvlmaar9hf";
- name = "recipe";
- };
- packageRequires = [ helm ];
- meta = {
- homepage = "https://melpa.org/#/helm-itunes";
- license = lib.licenses.free;
- };
- }) {};
- helm-j-cheatsheet = callPackage ({ fetchFromGitHub
- , fetchurl
- , helm
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "helm-j-cheatsheet";
- ename = "helm-j-cheatsheet";
- version = "20170217.29";
- src = fetchFromGitHub {
- owner = "abo-abo";
- repo = "helm-j-cheatsheet";
- rev = "6c47e7162b9ba2de4b41221d01180146973d860b";
- sha256 = "0ayv6aqmwjy95gc9cpyx0s71486rvlmn04iwgfn43mr192c38y9p";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/681b43eb224942155b97181bbb78bcd295347d04/recipes/helm-j-cheatsheet";
- sha256 = "0lppzk60vl3ps9fqnrh020awiy5w46gwlb6d91pr889x24ryphmm";
- name = "recipe";
- };
- packageRequires = [ helm ];
- meta = {
- homepage = "https://melpa.org/#/helm-j-cheatsheet";
- license = lib.licenses.free;
- };
- }) {};
- helm-jira = callPackage ({ cl-lib ? null
- , emacs
- , fetchFromGitHub
- , fetchurl
- , helm
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "helm-jira";
- ename = "helm-jira";
- version = "20180802.115";
- src = fetchFromGitHub {
- owner = "DeX3";
- repo = "helm-jira";
- rev = "75d6ed5bd7a041fa8c1adb21cbbbe57b5a7c7cc7";
- sha256 = "08cczc4jnkdgvzs0s3wq2dqmhnsvyhpl65dydmi7pmayl7zg6jir";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/b91a22c2117403e278a8116ea1180bed736ae1e3/recipes/helm-jira";
- sha256 = "1fb2hk97zlr30gzln8b5x7xc3v119ki8kbiyh7shxnaqx7dy1ihs";
- name = "recipe";
- };
- packageRequires = [ cl-lib emacs helm ];
- meta = {
- homepage = "https://melpa.org/#/helm-jira";
- license = lib.licenses.free;
- };
- }) {};
- helm-js-codemod = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , helm-core
- , js-codemod
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "helm-js-codemod";
- ename = "helm-js-codemod";
- version = "20171106.244";
- src = fetchFromGitHub {
- owner = "torgeir";
- repo = "helm-js-codemod.el";
- rev = "18503d94e64418e8ea5c5854f197ae9f3009cdbf";
- sha256 = "0d5fsvfa017gda0jryjdvva1q04nry6grc1433gvgrqqp6vxayxc";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/dd005bfb170df2f0c992043130a5e9588dcf4d77/recipes/helm-js-codemod";
- sha256 = "1m07xh97fjyah8di363yalg9f5g5rfr3k5mbjql3n67lfwgxrz94";
- name = "recipe";
- };
- packageRequires = [ emacs helm-core js-codemod ];
- meta = {
- homepage = "https://melpa.org/#/helm-js-codemod";
- license = lib.licenses.free;
- };
- }) {};
- helm-jstack = callPackage ({ cl-lib ? null
- , emacs
- , fetchFromGitHub
- , fetchurl
- , helm
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "helm-jstack";
- ename = "helm-jstack";
- version = "20150602.2122";
- src = fetchFromGitHub {
- owner = "raghavgautam";
- repo = "helm-jstack";
- rev = "aab0fd9f14794ae3a6e7cfbe7f6a81842ce4c23b";
- sha256 = "133fgmhh5phxssagriw1jsi48va4kyphwbcrha7pfnkmrmr1dgqb";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/a92ffbc4de86248729773dd8729e6487bf56fbb0/recipes/helm-jstack";
- sha256 = "0giix1rv2jrmdxyg990w90ivl8bvgbbvah6nkpj7gb6vbnm15ldz";
- name = "recipe";
- };
- packageRequires = [ cl-lib emacs helm ];
- meta = {
- homepage = "https://melpa.org/#/helm-jstack";
- license = lib.licenses.free;
- };
- }) {};
- helm-kythe = callPackage ({ dash
- , emacs
- , fetchFromGitHub
- , fetchurl
- , helm
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "helm-kythe";
- ename = "helm-kythe";
- version = "20170709.26";
- src = fetchFromGitHub {
- owner = "MaskRay";
- repo = "emacs-helm-kythe";
- rev = "eabbef4948f8ec7c7b2fac498e9145dfdb10ca82";
- sha256 = "1ws7vl0pvznmxb7yj77kfv4l52xkzblhsl68lfkf9cdxcj9g6177";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/dd1a6d0b08ad750a0e44ebdf76109d29ab226bd3/recipes/helm-kythe";
- sha256 = "1yybpic3jzp3yy8xlfdn2jj12h087vn0lj3mqx6xxj2nxd9q4949";
- name = "recipe";
- };
- packageRequires = [ dash emacs helm ];
- meta = {
- homepage = "https://melpa.org/#/helm-kythe";
- license = lib.licenses.free;
- };
- }) {};
- helm-lastpass = callPackage ({ csv
- , emacs
- , fetchFromGitHub
- , fetchurl
- , helm
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "helm-lastpass";
- ename = "helm-lastpass";
- version = "20180722.106";
- src = fetchFromGitHub {
- owner = "xuchunyang";
- repo = "helm-lastpass";
- rev = "82e1ffb6ae77d9d9e29c398eb013cd20ce963f77";
- sha256 = "0pri9zsjg0zii7dpsr56dy5204q0mld5wi22iay3kqpiyxghhssv";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/a39f1b0a5b22e91eb9e298949def6c29e7bc5755/recipes/helm-lastpass";
- sha256 = "0zgq3szds5l3ah39wiacqcc1j0dlbhwm0cjx64j28jx93300kx57";
- name = "recipe";
- };
- packageRequires = [ csv emacs helm ];
- meta = {
- homepage = "https://melpa.org/#/helm-lastpass";
- license = lib.licenses.free;
- };
- }) {};
- helm-lean = callPackage ({ dash
- , emacs
- , fetchFromGitHub
- , fetchurl
- , helm
- , lean-mode
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "helm-lean";
- ename = "helm-lean";
- version = "20171102.754";
- src = fetchFromGitHub {
- owner = "leanprover";
- repo = "lean-mode";
- rev = "c0af876c967fc969d67c467bc6767210d19c5d87";
- sha256 = "04qzck156wb2bvrb8adbn7rx2v0bsjcirlbx4ajajjsqy858ayn9";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/42f4d6438c8aeb94ebc1782f2f5e2abd17f0ffde/recipes/helm-lean";
- sha256 = "0j5ax14lhlyd9mpqk1jwh7nfp090kj71r045v2qjfaw2fa23b7si";
- name = "recipe";
- };
- packageRequires = [ dash emacs helm lean-mode ];
- meta = {
- homepage = "https://melpa.org/#/helm-lean";
- license = lib.licenses.free;
- };
- }) {};
- helm-lib-babel = callPackage ({ cl-lib ? null
- , emacs
- , fetchFromGitHub
- , fetchurl
- , helm
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "helm-lib-babel";
- ename = "helm-lib-babel";
- version = "20180510.624";
- src = fetchFromGitHub {
- owner = "dfeich";
- repo = "helm-lib-babel";
- rev = "41bc0cdea8a604c6c8dc83ed5066644d33688fad";
- sha256 = "1jrpaip5v9kzk0rf8wivsq8irdfd39svxd7p3v80cwgrrl7546xj";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/d6718da5d8849a8c3ec17188b89a1273cf963047/recipes/helm-lib-babel";
- sha256 = "0ddj6xrhz4n0npplkjmblqb43jnd6fmr4i4vv1cigrgb7zj6bjx4";
- name = "recipe";
- };
- packageRequires = [ cl-lib emacs helm ];
- meta = {
- homepage = "https://melpa.org/#/helm-lib-babel";
- license = lib.licenses.free;
- };
- }) {};
- helm-lines = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , helm
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "helm-lines";
- ename = "helm-lines";
- version = "20180601.1333";
- src = fetchFromGitHub {
- owner = "torgeir";
- repo = "helm-lines.el";
- rev = "3bfe15a60c6405682085ab289de3eb364624c4e9";
- sha256 = "1fi0khqx35v48s14jr59jp06bpnhx9dy2rdasj2wn1a34jwgd49i";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/b0aee0be5f388a6d778cb22ce5ad930d21c6f521/recipes/helm-lines";
- sha256 = "110y0vdmab4zr3ab6cpf93b6iidxhanq4rh1cfrzqjf7a7xik78h";
- name = "recipe";
- };
- packageRequires = [ emacs helm ];
- meta = {
- homepage = "https://melpa.org/#/helm-lines";
- license = lib.licenses.free;
- };
- }) {};
- helm-lobsters = callPackage ({ cl-lib ? null
- , fetchFromGitHub
- , fetchurl
- , helm
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "helm-lobsters";
- ename = "helm-lobsters";
- version = "20150213.746";
- src = fetchFromGitHub {
- owner = "julienXX";
- repo = "helm-lobste.rs";
- rev = "4121b232aeded2f82ad2c8a85c7dda17ef9d97bb";
- sha256 = "0nkmc17ggyfi7iz959mvzh6q7116j44zqwi7ydm9i8z49xfpzafy";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/6247e3786131e5b2a7824804e49927ed65d266d5/recipes/helm-lobsters";
- sha256 = "0dkb78n373kywxj8zba2s5a2g85vx19rdswv9i78xjwv1lqh8cpp";
- name = "recipe";
- };
- packageRequires = [ cl-lib helm ];
- meta = {
- homepage = "https://melpa.org/#/helm-lobsters";
- license = lib.licenses.free;
- };
- }) {};
helm-ls-git = callPackage ({ fetchFromGitHub
, fetchurl
, helm
@@ -46861,92 +25307,6 @@
license = lib.licenses.free;
};
}) {};
- helm-ls-svn = callPackage ({ cl-lib ? null
- , emacs
- , fetchFromGitHub
- , fetchurl
- , helm
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "helm-ls-svn";
- ename = "helm-ls-svn";
- version = "20190316.1503";
- src = fetchFromGitHub {
- owner = "emacsmirror";
- repo = "helm-ls-svn";
- rev = "a6043e1187282f649e2cb9f0e722a42daf41294b";
- sha256 = "0jh3q2nx3hn6v1qvip5sbfsvf9zy74ppn1rl037d0hlssh6qir9j";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/be27e728327016b819535ef8cae10020e5a07c2e/recipes/helm-ls-svn";
- sha256 = "10rbplwagmwp8lvhandzlinnzl1vcsvdlnjk9jpj3nw42x9wahx4";
- name = "recipe";
- };
- packageRequires = [ cl-lib emacs helm ];
- meta = {
- homepage = "https://melpa.org/#/helm-ls-svn";
- license = lib.licenses.free;
- };
- }) {};
- helm-lsp = callPackage ({ dash
- , emacs
- , fetchFromGitHub
- , fetchurl
- , helm
- , lib
- , lsp-mode
- , melpaBuild }:
- melpaBuild {
- pname = "helm-lsp";
- ename = "helm-lsp";
- version = "20190104.1334";
- src = fetchFromGitHub {
- owner = "emacs-lsp";
- repo = "helm-lsp";
- rev = "78e2d936589f60f61ebed21c896416a59375aa46";
- sha256 = "1cmcvzffqrmnbyrzi7brh118236ycb5bmr6np6c3h6janmhmml8n";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/67942b34975015dd6f2b5f6b43829cc13b1832c6/recipes/helm-lsp";
- sha256 = "0hzwz243n45xcm3rnzmd6z8zrqy9660fy0l8mb940960cjzsxf3m";
- name = "recipe";
- };
- packageRequires = [ dash emacs helm lsp-mode ];
- meta = {
- homepage = "https://melpa.org/#/helm-lsp";
- license = lib.licenses.free;
- };
- }) {};
- helm-lxc = callPackage ({ cl-lib ? null
- , emacs
- , fetchFromGitHub
- , fetchurl
- , helm
- , lib
- , lxc-tramp
- , melpaBuild }:
- melpaBuild {
- pname = "helm-lxc";
- ename = "helm-lxc";
- version = "20190116.1250";
- src = fetchFromGitHub {
- owner = "montag451";
- repo = "helm-lxc";
- rev = "6f11ea39c48816215fbd2df6c4bdaa90241aeac7";
- sha256 = "19f2jbjid1kfnqyqz9jnzy3blp5is23r14ss9iaky4wwb4gs0847";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/7a7717154a657bb7c27b25579ea2c1b31b5c0b5f/recipes/helm-lxc";
- sha256 = "0mhxbs99isbvls34g0415iy3fry7kanala6624gp5l5isbmn95rm";
- name = "recipe";
- };
- packageRequires = [ cl-lib emacs helm lxc-tramp ];
- meta = {
- homepage = "https://melpa.org/#/helm-lxc";
- license = lib.licenses.free;
- };
- }) {};
helm-make = callPackage ({ fetchFromGitHub
, fetchurl
, helm
@@ -47057,61 +25417,6 @@
license = lib.licenses.free;
};
}) {};
- helm-mu = callPackage ({ fetchFromGitHub
- , fetchurl
- , helm
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "helm-mu";
- ename = "helm-mu";
- version = "20180513.221";
- src = fetchFromGitHub {
- owner = "emacs-helm";
- repo = "helm-mu";
- rev = "77e6fea24e01481418738421dbcfe28ef1bd63cf";
- sha256 = "1lh0ahxdc5b2z18m9p30gwg8sbg33sjwkjr38p7h5xsm5fm7i0fz";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/63ee2e2aa622c96993c1b705d0fd223d6b36fd0f/recipes/helm-mu";
- sha256 = "0pydp6scj5icaqfp3dp5h0q1y2i7z9mfyw1ll6iphsz9qh3x2bj2";
- name = "recipe";
- };
- packageRequires = [ helm ];
- meta = {
- homepage = "https://melpa.org/#/helm-mu";
- license = lib.licenses.free;
- };
- }) {};
- helm-navi = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , helm
- , lib
- , melpaBuild
- , navi-mode
- , s }:
- melpaBuild {
- pname = "helm-navi";
- ename = "helm-navi";
- version = "20181225.1629";
- src = fetchFromGitHub {
- owner = "emacs-helm";
- repo = "helm-navi";
- rev = "3b9abcc39ce7c657bc2dcc054b850dc2a7cf0448";
- sha256 = "1kxv8qx7s51fnzrslwqrgayqvyq30ycnb84p5qy7jf0rf69hxxjh";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/e5ffbc25c0eb30b9c96594d50f47cd0383aa8ebc/recipes/helm-navi";
- sha256 = "0v3amm15pwja2y7zg92hsfhp3scmswwl0q0slg33g11rvj26iiks";
- name = "recipe";
- };
- packageRequires = [ emacs helm navi-mode s ];
- meta = {
- homepage = "https://melpa.org/#/helm-navi";
- license = lib.licenses.free;
- };
- }) {};
helm-nixos-options = callPackage ({ fetchFromGitHub
, fetchurl
, helm
@@ -47362,61 +25667,6 @@
license = lib.licenses.free;
};
}) {};
- helm-phpunit = callPackage ({ fetchFromGitHub
- , fetchurl
- , helm
- , lib
- , melpaBuild
- , phpunit }:
- melpaBuild {
- pname = "helm-phpunit";
- ename = "helm-phpunit";
- version = "20160513.153";
- src = fetchFromGitHub {
- owner = "eric-hansen";
- repo = "helm-phpunit";
- rev = "739f26204ad2ba76c25f45e8eab1e5216f7c3518";
- sha256 = "0wirqnzprfxbppdawfx6ah5rdawgyvl8b4zn2r3zm9mnj9jci4dw";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/96470d7190199bfb13dd54e7e8f5ea50cf0a5039/recipes/helm-phpunit";
- sha256 = "0anbrzlpmashcklifyvnnf2rwv5fk4x0kbls2dp2db1bliw3rdh6";
- name = "recipe";
- };
- packageRequires = [ helm phpunit ];
- meta = {
- homepage = "https://melpa.org/#/helm-phpunit";
- license = lib.licenses.free;
- };
- }) {};
- helm-posframe = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , helm
- , lib
- , melpaBuild
- , posframe }:
- melpaBuild {
- pname = "helm-posframe";
- ename = "helm-posframe";
- version = "20180610.1048";
- src = fetchFromGitHub {
- owner = "tumashu";
- repo = "helm-posframe";
- rev = "d28f96ea92ee9393658901bb552723db10f40dc3";
- sha256 = "1ycf5m06n32axqpm2vkvszff6gxdps1y8gm46682nf8mk2i3xa6f";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/a99c37bc50c371aae8ccc27de8120d4773981cf7/recipes/helm-posframe";
- sha256 = "16mhi17kl3cgwk7ymzg8crakwrwrzsg5p9ijgrdawa7px2z9ym78";
- name = "recipe";
- };
- packageRequires = [ emacs helm posframe ];
- meta = {
- homepage = "https://melpa.org/#/helm-posframe";
- license = lib.licenses.free;
- };
- }) {};
helm-proc = callPackage ({ fetchFromGitHub
, fetchurl
, helm
@@ -47499,33 +25749,6 @@
license = lib.licenses.free;
};
}) {};
- helm-prosjekt = callPackage ({ fetchFromGitHub
- , fetchurl
- , helm
- , lib
- , melpaBuild
- , prosjekt }:
- melpaBuild {
- pname = "helm-prosjekt";
- ename = "helm-prosjekt";
- version = "20140128.2317";
- src = fetchFromGitHub {
- owner = "abingham";
- repo = "prosjekt";
- rev = "f94f970c2d375e0973b66ba99b29c7aa42fd550f";
- sha256 = "1kfifsqxybvrff6mwifjp0igbad11winsks05l8k661blsh7m5ir";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/6d359ec827573dd8c871c4f23df5d1737f1830e7/recipes/helm-prosjekt";
- sha256 = "019rya3bf13cnval8iz680wby3sqlmqg4nbn0a13l1pkhlnv9fvm";
- name = "recipe";
- };
- packageRequires = [ helm prosjekt ];
- meta = {
- homepage = "https://melpa.org/#/helm-prosjekt";
- license = lib.licenses.free;
- };
- }) {};
helm-pt = callPackage ({ fetchFromGitHub
, fetchurl
, helm
@@ -47634,89 +25857,6 @@
license = lib.licenses.free;
};
}) {};
- helm-rage = callPackage ({ dash
- , emacs
- , fetchFromGitHub
- , fetchurl
- , helm
- , lib
- , melpaBuild
- , s }:
- melpaBuild {
- pname = "helm-rage";
- ename = "helm-rage";
- version = "20180118.732";
- src = fetchFromGitHub {
- owner = "bomgar";
- repo = "helm-rage";
- rev = "5d0aefb53d859186181d4bdcfeff7d315339c7b8";
- sha256 = "0msj3rrv9bwhhwz7r1ayr6qvnxjsq7374j0xfhqbrx49pix4qf3q";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/84f831fdc5a0e90c23ac11c79f193f4d3c1ebb04/recipes/helm-rage";
- sha256 = "02pdmkzwnqhf1r0v7b498z5b2il3ng75ykdwgmwd60k6hiygj70x";
- name = "recipe";
- };
- packageRequires = [ dash emacs helm s ];
- meta = {
- homepage = "https://melpa.org/#/helm-rage";
- license = lib.licenses.free;
- };
- }) {};
- helm-rails = callPackage ({ fetchFromGitHub
- , fetchurl
- , helm
- , inflections
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "helm-rails";
- ename = "helm-rails";
- version = "20130424.819";
- src = fetchFromGitHub {
- owner = "asok";
- repo = "helm-rails";
- rev = "723c2a27f3843570ec1039e3c526953e48b4ed40";
- sha256 = "1gpy6jc932p4yiyglnwylriw3jk2f4bs7rrxbwc0z9xzjzzn4qnz";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/3af52fd266364a81ff42eb6d08389fa549bd6c2c/recipes/helm-rails";
- sha256 = "1iihfsmnkpfp08pldghf3w5k8v5dlmy5ns0l4niwdwp5w8lyjcd6";
- name = "recipe";
- };
- packageRequires = [ helm inflections ];
- meta = {
- homepage = "https://melpa.org/#/helm-rails";
- license = lib.licenses.free;
- };
- }) {};
- helm-rb = callPackage ({ fetchFromGitHub
- , fetchurl
- , helm
- , helm-ag-r
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "helm-rb";
- ename = "helm-rb";
- version = "20131123.839";
- src = fetchFromGitHub {
- owner = "yuutayamada";
- repo = "helm-rb";
- rev = "4949d646420a9849af234dacdd8eb34a77c662fd";
- sha256 = "1b74jsr28ldz80mrqz3d1bmykpcprdbhf3fzhc0awd5i5xdnfaid";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/7ba8e94755f5a96881bbf4c4ffbff67bec9b804a/recipes/helm-rb";
- sha256 = "14pkrj1rpi2ihpb7c1hx6xwzvc1x7l41lwr9znp5vn7z93i034fr";
- name = "recipe";
- };
- packageRequires = [ helm helm-ag-r ];
- meta = {
- homepage = "https://melpa.org/#/helm-rb";
- license = lib.licenses.free;
- };
- }) {};
helm-rdefs = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -47799,33 +25939,6 @@
license = lib.licenses.free;
};
}) {};
- helm-rhythmbox = callPackage ({ cl-lib ? null
- , fetchFromGitHub
- , fetchurl
- , helm
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "helm-rhythmbox";
- ename = "helm-rhythmbox";
- version = "20160524.458";
- src = fetchFromGitHub {
- owner = "mrBliss";
- repo = "helm-rhythmbox";
- rev = "c92e1ded34ddd4e62e7e9a558259c232e05193fa";
- sha256 = "1ng73dmligj38xbfdfr8sb69czppks7wfvh5q5xcm2pha828kcwm";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/8a81c43958308ad8035a9d0b2422fd094adc72f0/recipes/helm-rhythmbox";
- sha256 = "0pnm7yvas0q3b38ch5idm7v4ih2fjyfai8217j74xhkpcc2w4g4a";
- name = "recipe";
- };
- packageRequires = [ cl-lib helm ];
- meta = {
- homepage = "https://melpa.org/#/helm-rhythmbox";
- license = lib.licenses.free;
- };
- }) {};
helm-robe = callPackage ({ fetchFromGitHub
, fetchurl
, helm
@@ -47852,34 +25965,6 @@
license = lib.licenses.free;
};
}) {};
- helm-ros = callPackage ({ cl-lib ? null
- , fetchFromGitHub
- , fetchurl
- , helm
- , lib
- , melpaBuild
- , xterm-color }:
- melpaBuild {
- pname = "helm-ros";
- ename = "helm-ros";
- version = "20160812.1052";
- src = fetchFromGitHub {
- owner = "davidlandry93";
- repo = "helm-ros";
- rev = "92b0b215f6a017f0f57f1af15466cc0b2a5a0135";
- sha256 = "1fgph8wsm2nakn53zj19r59mirzn25r601rljmdv2xpw5h3axywg";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/2c9ddf53b4060c33550a445f877aef37dffaeb7e/recipes/helm-ros";
- sha256 = "1q9qqjchkj6anikaamhw998f5aaampc1z7085v9pigg3x11vv9fm";
- name = "recipe";
- };
- packageRequires = [ cl-lib helm xterm-color ];
- meta = {
- homepage = "https://melpa.org/#/helm-ros";
- license = lib.licenses.free;
- };
- }) {};
helm-rtags = callPackage ({ fetchFromGitHub
, fetchurl
, helm
@@ -47907,32 +25992,6 @@
license = lib.licenses.free;
};
}) {};
- helm-rubygems-local = callPackage ({ fetchFromGitHub
- , fetchurl
- , helm
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "helm-rubygems-local";
- ename = "helm-rubygems-local";
- version = "20130711.1811";
- src = fetchFromGitHub {
- owner = "hadashiA";
- repo = "helm-rubygems-local";
- rev = "289cb33d41c703af9791d6da46b55f070013c2e3";
- sha256 = "0s4hb1fvwr9za5gkz8s5w1kh9qjyygz6g59w7vmrg2d8ds2an03d";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/helm-rubygems-local";
- sha256 = "134qyqnh9l05lfj0vizlx35631q8ih6cdblrvka3p8i571300ikh";
- name = "recipe";
- };
- packageRequires = [ helm ];
- meta = {
- homepage = "https://melpa.org/#/helm-rubygems-local";
- license = lib.licenses.free;
- };
- }) {};
helm-rubygems-org = callPackage ({ cl-lib ? null
, emacs
, fetchFromGitHub
@@ -47961,33 +26020,6 @@
license = lib.licenses.free;
};
}) {};
- helm-safari = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , helm
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "helm-safari";
- ename = "helm-safari";
- version = "20160403.2024";
- src = fetchFromGitHub {
- owner = "xuchunyang";
- repo = "helm-safari";
- rev = "664c7f4488829228eed7e90cd53002e14bec555b";
- sha256 = "1ws5zxanaiaaxpgkcb2914qa8wxp6ml019hfnfcp7amjnajq9pyz";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/553e27a3523ade9dc4951086d9340e8240d5d943/recipes/helm-safari";
- sha256 = "0lvwghcl5w67g0lc97r7hfvca7ss0mysy2mxj9axxbpyiq6fmh0y";
- name = "recipe";
- };
- packageRequires = [ emacs helm ];
- meta = {
- homepage = "https://melpa.org/#/helm-safari";
- license = lib.licenses.free;
- };
- }) {};
helm-sage = callPackage ({ cl-lib ? null
, fetchFromGitHub
, fetchurl
@@ -48016,60 +26048,6 @@
license = lib.licenses.free;
};
}) {};
- helm-selected = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , helm
- , lib
- , melpaBuild
- , selected }:
- melpaBuild {
- pname = "helm-selected";
- ename = "helm-selected";
- version = "20171222.1810";
- src = fetchFromGitHub {
- owner = "takaxp";
- repo = "helm-selected";
- rev = "d2609cdfce14052ab2d9c23761d4fe56966a8ed1";
- sha256 = "0nbfs5s6lshxib6kp20dzh1qbmq079hwcqwi1n61ank22qa9qw5x";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/acc087661e614d9f30c23fe4a65c020bd3656a29/recipes/helm-selected";
- sha256 = "0ksyh0r59y4abwls6v6v519yxmcjnaryfnxlam48fqqfrsxv1j0h";
- name = "recipe";
- };
- packageRequires = [ emacs helm selected ];
- meta = {
- homepage = "https://melpa.org/#/helm-selected";
- license = lib.licenses.free;
- };
- }) {};
- helm-sheet = callPackage ({ fetchFromGitHub
- , fetchurl
- , helm
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "helm-sheet";
- ename = "helm-sheet";
- version = "20130630.539";
- src = fetchFromGitHub {
- owner = "yasuyk";
- repo = "helm-sheet";
- rev = "d360b68d0ddb09aa1854e7b2f3cb39caeee26463";
- sha256 = "00wnqcgpf4hqdnqj5zrizr4s0pffb93xwya8k5c3rp4plncrcdzx";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/010c5c5e6ad6e7b05e63936079229739963bf970/recipes/helm-sheet";
- sha256 = "0lx70l5gq43hckgdfna8s6wx287sw5ms9l1z3n6vg2x8nr9m61kc";
- name = "recipe";
- };
- packageRequires = [ helm ];
- meta = {
- homepage = "https://melpa.org/#/helm-sheet";
- license = lib.licenses.free;
- };
- }) {};
helm-slime = callPackage ({ cl-lib ? null
, emacs
, fetchFromGitHub
@@ -48154,87 +26132,6 @@
license = lib.licenses.free;
};
}) {};
- helm-spotify = callPackage ({ fetchFromGitHub
- , fetchurl
- , helm
- , lib
- , melpaBuild
- , multi }:
- melpaBuild {
- pname = "helm-spotify";
- ename = "helm-spotify";
- version = "20160905.1447";
- src = fetchFromGitHub {
- owner = "krisajenkins";
- repo = "helm-spotify";
- rev = "f7a62d1ff88e3127de9be7cd3e818b0a92268ab3";
- sha256 = "0q3h84zj63b1rnlvmsznrpmvvf0qbic5yb9xkdjcz4jz4h8p3h1w";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1bf9eda57cba4742656f37a621b6d394483ff638/recipes/helm-spotify";
- sha256 = "1rzvxnaqh8bm78qp0rhpqs971pc855qrq589r3s8z3gpqzmwlnmf";
- name = "recipe";
- };
- packageRequires = [ helm multi ];
- meta = {
- homepage = "https://melpa.org/#/helm-spotify";
- license = lib.licenses.free;
- };
- }) {};
- helm-spotify-plus = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , helm
- , lib
- , melpaBuild
- , multi }:
- melpaBuild {
- pname = "helm-spotify-plus";
- ename = "helm-spotify-plus";
- version = "20181229.345";
- src = fetchFromGitHub {
- owner = "wandersoncferreira";
- repo = "helm-spotify-plus";
- rev = "8404541463a398007c7a38a28df10d89f3ef9668";
- sha256 = "0mqyzac48pmmazxb9vl9b5jymr53blzlmjbkmdsxnmk6gml27acr";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/306aa9fd29f1495eef71476dfcba3b494223b0a9/recipes/helm-spotify-plus";
- sha256 = "1f39g2kgx4jr7ahhhswkrj0m5rbsykvkgh00d7jy8czpp8r4dl20";
- name = "recipe";
- };
- packageRequires = [ emacs helm multi ];
- meta = {
- homepage = "https://melpa.org/#/helm-spotify-plus";
- license = lib.licenses.free;
- };
- }) {};
- helm-sql-connect = callPackage ({ fetchFromGitHub
- , fetchurl
- , helm
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "helm-sql-connect";
- ename = "helm-sql-connect";
- version = "20170319.551";
- src = fetchFromGitHub {
- owner = "eric-hansen";
- repo = "helm-sql-connect";
- rev = "5aead55b6f8636140945714d8c332b287ab9ef10";
- sha256 = "037gri2r9y135av8gbgi9d8k90qs8jlax0bimzcbwdkyhibhzrcp";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/58347c583dcf4a915c1af1262a5348755f28fe03/recipes/helm-sql-connect";
- sha256 = "1av42580c68iq694yr532hhcq0jn7m58x3cib4ix5c8b4ljvnnvd";
- name = "recipe";
- };
- packageRequires = [ helm ];
- meta = {
- homepage = "https://melpa.org/#/helm-sql-connect";
- license = lib.licenses.free;
- };
- }) {};
helm-swoop = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -48290,61 +26187,6 @@
license = lib.licenses.free;
};
}) {};
- helm-systemd = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , helm
- , lib
- , melpaBuild
- , with-editor }:
- melpaBuild {
- pname = "helm-systemd";
- ename = "helm-systemd";
- version = "20180130.2034";
- src = fetchFromGitHub {
- owner = "Lompik";
- repo = "helm-systemd";
- rev = "96f5cd3ee3412539c2f8d145201f47c4f8e53b4f";
- sha256 = "0wyabh76q2lighd7qxpkzp35fkblxlz8g7p4lpgfwvjid0ixmnvq";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/35763febad20f29320d459394f810668db6c3353/recipes/helm-systemd";
- sha256 = "1m1by9i37ban3zkznyamp5vxizj8zsz06fdscdhmky1grf6ri4r8";
- name = "recipe";
- };
- packageRequires = [ emacs helm with-editor ];
- meta = {
- homepage = "https://melpa.org/#/helm-systemd";
- license = lib.licenses.free;
- };
- }) {};
- helm-tail = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , helm
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "helm-tail";
- ename = "helm-tail";
- version = "20181123.2039";
- src = fetchFromGitHub {
- owner = "akirak";
- repo = "helm-tail";
- rev = "1f5a6355aa3bdb00b9b0bc93db29c17f0d6701e3";
- sha256 = "1ad0khw26m22xpdv0iyg5gac92i8m455sznsfh16vxaa98gq0c4q";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/74b235c2ecf8c8f8206670bca3b915deb4b77c2b/recipes/helm-tail";
- sha256 = "0sw97fzpnrk335l3vjaj3nw87cajhzwsjsxx16r0x6npbiv51wd4";
- name = "recipe";
- };
- packageRequires = [ emacs helm ];
- meta = {
- homepage = "https://melpa.org/#/helm-tail";
- license = lib.licenses.free;
- };
- }) {};
helm-taskswitch = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -48509,142 +26351,6 @@
license = lib.licenses.free;
};
}) {};
- helm-wordnet = callPackage ({ cl-lib ? null
- , emacs
- , fetchFromGitHub
- , fetchurl
- , helm
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "helm-wordnet";
- ename = "helm-wordnet";
- version = "20160128.707";
- src = fetchFromGitHub {
- owner = "raghavgautam";
- repo = "helm-wordnet";
- rev = "a36dbc6fcb570b812870bc1e190f203e0a0042fc";
- sha256 = "03a5hzgqak8wg6i2h2p3fr9ij55lqarcsblml8qrnrj27ghcvzzh";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/11626120951afc589beac4cf5a0f49bffa752349/recipes/helm-wordnet";
- sha256 = "0di8gxsa9r8mzja4akhz0wpgrhlidqyn1s1ix5szplwxklwf2r2f";
- name = "recipe";
- };
- packageRequires = [ cl-lib emacs helm ];
- meta = {
- homepage = "https://melpa.org/#/helm-wordnet";
- license = lib.licenses.free;
- };
- }) {};
- helm-xcdoc = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , helm
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "helm-xcdoc";
- ename = "helm-xcdoc";
- version = "20160116.218";
- src = fetchFromGitHub {
- owner = "fujimisakari";
- repo = "emacs-helm-xcdoc";
- rev = "a85612149a6d8e18ab309b3db2d222ce39c42049";
- sha256 = "1yqr5z5sw7schvaq9pmwg79anp806gikm28s6xvrayzyn4idz2n6";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/e3352ce89039fb48827b74f22fcf543722a27738/recipes/helm-xcdoc";
- sha256 = "1ikphlnj053i4g1l8r2pqaljvdqglj1yk0xx4vygnw98qyzdsx4v";
- name = "recipe";
- };
- packageRequires = [ emacs helm ];
- meta = {
- homepage = "https://melpa.org/#/helm-xcdoc";
- license = lib.licenses.free;
- };
- }) {};
- helm-xref = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , helm
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "helm-xref";
- ename = "helm-xref";
- version = "20190212.2259";
- src = fetchFromGitHub {
- owner = "brotzeit";
- repo = "helm-xref";
- rev = "c258209ee6c21774ba3df89d3c6bd7afbb86af9f";
- sha256 = "1mznr67ivddms0vhaj4aglfkhfzssifrrv65pfm8ny76gwlvx73z";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/6d1796688ed0d6957557d960ca28e450f9bcb6cf/recipes/helm-xref";
- sha256 = "1wyh25gxqgsc151bv4j5l050z1cz0n3yq174m62ihi1fy1pkra4l";
- name = "recipe";
- };
- packageRequires = [ emacs helm ];
- meta = {
- homepage = "https://melpa.org/#/helm-xref";
- license = lib.licenses.free;
- };
- }) {};
- helm-youtube = callPackage ({ cl-lib ? null
- , fetchFromGitHub
- , fetchurl
- , helm
- , lib
- , melpaBuild
- , request }:
- melpaBuild {
- pname = "helm-youtube";
- ename = "helm-youtube";
- version = "20190101.933";
- src = fetchFromGitHub {
- owner = "maximus12793";
- repo = "helm-youtube";
- rev = "e7272f1648c7fa836ea5ac1a61770b4931ab4709";
- sha256 = "062i1gkwa1rmxaw5mf20vc3nqsj6g6hfbggcglgd3wfn9rckvlqb";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/7537f732091b96b6c1b96c0174895278eba6776a/recipes/helm-youtube";
- sha256 = "1qal5q83p06ghn482rflcfklr17mir582r0mvchxabb5ql60dy0b";
- name = "recipe";
- };
- packageRequires = [ cl-lib helm request ];
- meta = {
- homepage = "https://melpa.org/#/helm-youtube";
- license = lib.licenses.free;
- };
- }) {};
- helm-z = callPackage ({ fetchFromGitHub
- , fetchurl
- , helm
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "helm-z";
- ename = "helm-z";
- version = "20171203.1925";
- src = fetchFromGitHub {
- owner = "yynozk";
- repo = "helm-z";
- rev = "37212220bebea8b9c238cb1bbacd8332b7f26c03";
- sha256 = "1vz958yiva01yl1qj2pz84savcx8jgkvbywhcp4c3a8x3fikf0yl";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/48c9b83fff8fc428d9d1ecf0005d47f2adb8cb00/recipes/helm-z";
- sha256 = "1m268zsr4z7a9l5wj0i8qpimv0kyl8glgm0yb3f08959538nlmd1";
- name = "recipe";
- };
- packageRequires = [ helm ];
- meta = {
- homepage = "https://melpa.org/#/helm-z";
- license = lib.licenses.free;
- };
- }) {};
helm-zhihu-daily = callPackage ({ cl-lib ? null
, emacs
, fetchFromGitHub
@@ -48731,133 +26437,6 @@
license = lib.licenses.free;
};
}) {};
- hemera-theme = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "hemera-theme";
- ename = "hemera-theme";
- version = "20180916.224";
- src = fetchFromGitHub {
- owner = "guidoschmidt";
- repo = "emacs-hemera-theme";
- rev = "b67c902b210b37b00cac68726822404543147ba8";
- sha256 = "1q31kz5p97pby26lyb6r0jfcx5pdyax3sfba4lp8dzmxpisz2g2p";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/35763febad20f29320d459394f810668db6c3353/recipes/hemera-theme";
- sha256 = "00d8dmmn7mhzj6ai0qgdkj4hy1qpdcyiriky97prydibjvljq239";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/hemera-theme";
- license = lib.licenses.free;
- };
- }) {};
- hemisu-theme = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "hemisu-theme";
- ename = "hemisu-theme";
- version = "20130508.1144";
- src = fetchFromGitHub {
- owner = "andrzejsliwa";
- repo = "hemisu-theme";
- rev = "ae593ac58e6bffef97467259c1d1472840385e84";
- sha256 = "0vjc6aalwplz9sm9nqca7d07ypijjp366vdzg7gqyfzsvdhr1s0v";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/bb4dd85ccbd2c8936e59ca5c5e6234290b8bdf1b/recipes/hemisu-theme";
- sha256 = "0byzrz74yvk12m8dl47kkmkziwrrql193q72qx974zbqdj8h2sph";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/hemisu-theme";
- license = lib.licenses.free;
- };
- }) {};
- heroku = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "heroku";
- ename = "heroku";
- version = "20120629.1113";
- src = fetchFromGitHub {
- owner = "technomancy";
- repo = "heroku.el";
- rev = "92af1c073b593c4def99c8777c869992aa4d0b3a";
- sha256 = "0c45pib8qpwgyr271g5ddnsn7hzq68mqflv0yyc8803ni06w9vhj";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/heroku";
- sha256 = "1wavsymviybfcmwdfrffbkdwbiydggx55jqg6ql79wf9bx7agacp";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/heroku";
- license = lib.licenses.free;
- };
- }) {};
- heroku-theme = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "heroku-theme";
- ename = "heroku-theme";
- version = "20150522.1919";
- src = fetchFromGitHub {
- owner = "jonathanchu";
- repo = "heroku-theme";
- rev = "7c1e80f8b5087c37008fec687070344638cd4752";
- sha256 = "05h4q7gykh18v9pn9zjhgrzjwbn21z58a2mrifmis3bpwa5zypvd";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/348f0e7aec86c3efd87ab06849a5f1ce90ba23e2/recipes/heroku-theme";
- sha256 = "0mchh9y3pqwamry6105qrv1bp1qg1g0jmz7rzc5svz9giynypwf9";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/heroku-theme";
- license = lib.licenses.free;
- };
- }) {};
- hexo = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "hexo";
- ename = "hexo";
- version = "20180814.1919";
- src = fetchFromGitHub {
- owner = "kuanyui";
- repo = "hexo.el";
- rev = "6bca18f911f6b2cd5c055ed73ddec98c385f9f86";
- sha256 = "1zawz3nry832rhx80hyfqfs0gfw3hyrn96060zj3n75avx13rr8j";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/21de1b7db0fa4af4fc0014207d41893a0713d738/recipes/hexo";
- sha256 = "0fgrxf6gdw0kzs6x6y8qr511cazaaiyk7licgkgznngj4w6g7jyn";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/hexo";
- license = lib.licenses.free;
- };
- }) {};
hfst-mode = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -48883,56 +26462,6 @@
license = lib.licenses.free;
};
}) {};
- hgignore-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "hgignore-mode";
- ename = "hgignore-mode";
- version = "20160430.1707";
- src = fetchFromGitHub {
- owner = "omajid";
- repo = "hgignore-mode";
- rev = "7aa9f3b8a9c610dbd80b952061b40194e1d9c5bd";
- sha256 = "0l22sqi9lmy25idh231p0hgq22b3dxwb9wq60yxk8dck9zlkv7rr";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/f3e325c84d0a30789fab7e897b4fe5040c5093ba/recipes/hgignore-mode";
- sha256 = "0ja71l3cghhn1c6w2pff80km8h8xgzf0j9gcldfyc72ar6ifhjkj";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/hgignore-mode";
- license = lib.licenses.free;
- };
- }) {};
- hgrc-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "hgrc-mode";
- ename = "hgrc-mode";
- version = "20150409.1343";
- src = fetchFromGitHub {
- owner = "omajid";
- repo = "hgrc-mode";
- rev = "314e8320b82cc1ce74b1bd372f296252e7a23090";
- sha256 = "1ky5s7hzqbxgasdz285q3rnvzh3irwsq61rlivjrcxyfdxdjbbvp";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/31a24d95efce2f04f0b555ed16b8d3d5a3aa255a/recipes/hgrc-mode";
- sha256 = "18400dhdackdpndkz6shjmd4klfh6b4vlccnnqlzf3a93alw6vqf";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/hgrc-mode";
- license = lib.licenses.free;
- };
- }) {};
hi2 = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -49009,31 +26538,6 @@
license = lib.licenses.free;
};
}) {};
- hideshow-org = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "hideshow-org";
- ename = "hideshow-org";
- version = "20120223.1450";
- src = fetchFromGitHub {
- owner = "shanecelis";
- repo = "hideshow-org";
- rev = "16419e52e6cdd2f46f755144c0ab11ce00d1a626";
- sha256 = "1dr06b9njzih8z97k62l9w3x0a801x4bp043zvk7av9qkz8izl2r";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/3de48eee24a5cca9c8b7dba2d6d01dfbc679d8d6/recipes/hideshow-org";
- sha256 = "1bzx5ii06r64nra92zv1dvw5zv3im7la2dd3md801hxyfrpb74gc";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/hideshow-org";
- license = lib.licenses.free;
- };
- }) {};
hierarchy = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -49060,30 +26564,6 @@
license = lib.licenses.free;
};
}) {};
- highlight = callPackage ({ fetchgit
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "highlight";
- ename = "highlight";
- version = "20181002.451";
- src = fetchgit {
- url = "https://framagit.org/steckerhalter/highlight.el.git";
- rev = "ea733e17884aeae19172407e20559fc693fdd3a7";
- sha256 = "13ajbhpwvdmk0mzaffj45gxqmq13b57d81iqdpg9q2l2wjk95jq7";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/f0a8eb0eefe88b4ea683a4743c0f8393506e014b/recipes/highlight";
- sha256 = "11icn6f46synw6xvs2a266g43fvpnz8i7d7dyr0iywzjpbpyhsd2";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/highlight";
- license = lib.licenses.free;
- };
- }) {};
highlight-blocks = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -49161,108 +26641,6 @@
license = lib.licenses.free;
};
}) {};
- highlight-doxygen = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "highlight-doxygen";
- ename = "highlight-doxygen";
- version = "20180829.1118";
- src = fetchFromGitHub {
- owner = "Lindydancer";
- repo = "highlight-doxygen";
- rev = "53f2250018725fa19548e1771ee79fcc23641694";
- sha256 = "0l6zh5cmp771h30i16bv3qvcq40pz9fxn3j7a8yx708vanb4d7kc";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/0153353e5abfa7513e74485049eaa384aaddbd58/recipes/highlight-doxygen";
- sha256 = "0jkzf2mqn7y465c77vglaj3mr0cpfy2z810mywd1q21d71lsqmbl";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/highlight-doxygen";
- license = lib.licenses.free;
- };
- }) {};
- highlight-escape-sequences = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "highlight-escape-sequences";
- ename = "highlight-escape-sequences";
- version = "20171117.437";
- src = fetchFromGitHub {
- owner = "dgutov";
- repo = "highlight-escape-sequences";
- rev = "08d846a7aa748209d65fecead2b6a766c3e5cb41";
- sha256 = "05mc3w1f8ykf80914a1yddw6j8cmh0h57llm07xh89s53821v2is";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/cd087f2c5a9524986b0f2c7fd7efd1f296363101/recipes/highlight-escape-sequences";
- sha256 = "0938b29cqapid9v9q4w2jwh8kdb0p70qwzy9xm2nxaairm7436d6";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/highlight-escape-sequences";
- license = lib.licenses.free;
- };
- }) {};
- highlight-function-calls = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "highlight-function-calls";
- ename = "highlight-function-calls";
- version = "20170907.2200";
- src = fetchFromGitHub {
- owner = "alphapapa";
- repo = "highlight-function-calls";
- rev = "f7a1eaf95fc64cc0db4d0567f9ff79ec4ae04787";
- sha256 = "1gbj1awjp69352a5p49ldimvij5mj8cngjp2sh45qw1cm5dpq653";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/2d1eed3f9af218d21ea8db37ee91888e23e59bd5/recipes/highlight-function-calls";
- sha256 = "0wmxijkhx74da3ygnvzsdvbh2iii4f7424wmm01b5skbr7qva690";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/highlight-function-calls";
- license = lib.licenses.free;
- };
- }) {};
- highlight-indent-guides = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "highlight-indent-guides";
- ename = "highlight-indent-guides";
- version = "20190107.1603";
- src = fetchFromGitHub {
- owner = "DarthFennec";
- repo = "highlight-indent-guides";
- rev = "0b10f38c54ffc099861ce8463e16a1b07ddbb203";
- sha256 = "0fa41y9gdci60417zksj9bgjx1knwh781i3dfphkgr7qbx25iky7";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/c8acca65a5c134d4405900a43b422c4f4e18b586/recipes/highlight-indent-guides";
- sha256 = "00ghp677qgb5clxhdjarfl8ab3mbp6v7yfsldm9bn0s14lyaq5pm";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/highlight-indent-guides";
- license = lib.licenses.free;
- };
- }) {};
highlight-indentation = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -49288,32 +26666,6 @@
license = lib.licenses.free;
};
}) {};
- highlight-leading-spaces = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "highlight-leading-spaces";
- ename = "highlight-leading-spaces";
- version = "20151216.422";
- src = fetchFromGitHub {
- owner = "mrBliss";
- repo = "highlight-leading-spaces";
- rev = "840db19d863dd97993fd9f893f5be501627b6354";
- sha256 = "1vy6j63jp83ljdqkrqglpys74yfh7p61sd0lqiwczgr5nqyc60rl";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/74a4af76be764896cef169e24994630498cf19c1/recipes/highlight-leading-spaces";
- sha256 = "0h2ww2vqmarghf4zg0wbwn0wgndmkcjy696mc885rwavck2dav4p";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/highlight-leading-spaces";
- license = lib.licenses.free;
- };
- }) {};
highlight-numbers = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -49341,30 +26693,6 @@
license = lib.licenses.free;
};
}) {};
- highlight-operators = callPackage ({ fetchhg
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "highlight-operators";
- ename = "highlight-operators";
- version = "20170213.1420";
- src = fetchhg {
- url = "https://bitbucket.com/jpkotta/highlight-operators";
- rev = "3938e88e78c5";
- sha256 = "1h5whrc1iphzq0g8x9mmkhjkbmbdg9i9bvr1y8zrwrs8za8k127y";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/e7bd74b7a3484e437c6db4f18613744ebae030f5/recipes/highlight-operators";
- sha256 = "00agrwp2i3mkacnp4qhqcnpwn5qlbj9qv97zrw7a7ldqga0vwvhn";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/highlight-operators";
- license = lib.licenses.free;
- };
- }) {};
highlight-parentheses = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -49416,56 +26744,6 @@
license = lib.licenses.free;
};
}) {};
- highlight-refontification = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "highlight-refontification";
- ename = "highlight-refontification";
- version = "20170211.1224";
- src = fetchFromGitHub {
- owner = "Lindydancer";
- repo = "highlight-refontification";
- rev = "32632897d88c4611fadb08517ca00ef5cbc989b6";
- sha256 = "1k6af947h70ivkj31mk3nv2vkxlfpqvpwq8za53n2l7adsjdlf73";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/d6c59f2b5cf1594248e8365b6ce3324f493c5647/recipes/highlight-refontification";
- sha256 = "0cm9p4d7yhkz5a88m0y4646a6b9lb2ha7q12fcrdikyckpmbkqss";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/highlight-refontification";
- license = lib.licenses.free;
- };
- }) {};
- highlight-stages = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "highlight-stages";
- ename = "highlight-stages";
- version = "20161212.657";
- src = fetchFromGitHub {
- owner = "zk-phi";
- repo = "highlight-stages";
- rev = "87c476f8ca0474912af41680a8de243c0c8d5b46";
- sha256 = "1s7hxv4vpbrpk4makdjn3589flddgfy35scyd3kac629fbqiiz79";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/46884aa6588f55d6f688477a5e9f528f57673131/recipes/highlight-stages";
- sha256 = "0r4kmjmrpi38q3y0q9h5xkxh7x728ha2nbnc152lzw6zfsxnm4x4";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/highlight-stages";
- license = lib.licenses.free;
- };
- }) {};
highlight-symbol = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -49491,83 +26769,6 @@
license = lib.licenses.free;
};
}) {};
- highlight-thing = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "highlight-thing";
- ename = "highlight-thing";
- version = "20181229.501";
- src = fetchFromGitHub {
- owner = "fgeller";
- repo = "highlight-thing.el";
- rev = "361a3301ba37663c8e27ba75d2743a2501f4b8b9";
- sha256 = "07ywg6idbwm91wbzpdp57w3n84pbbjyzmf5gp3m7qvm2h0xxv9av";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/84b6cb403ff9a588771d051e472596f4e3cc974d/recipes/highlight-thing";
- sha256 = "0rvdb1lx9xn9drqw0sw9ih759n10g7k0af39w6n8g0wfr67p96w1";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/highlight-thing";
- license = lib.licenses.free;
- };
- }) {};
- highlight-unique-symbol = callPackage ({ deferred
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "highlight-unique-symbol";
- ename = "highlight-unique-symbol";
- version = "20130611.2242";
- src = fetchFromGitHub {
- owner = "hitode909";
- repo = "emacs-highlight-unique-symbol";
- rev = "d760015b4a5ce31d6da5a30890b599a8e1312be5";
- sha256 = "1sib511n4plbipl4mgjq6vshf03q4h50kga7lyj1qrwf32yxxf10";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/78b7caccef56cd2f1a9d8001417af52cc06d6573/recipes/highlight-unique-symbol";
- sha256 = "0lwl8pkmq0q4dvyflarggnn8vzpvk5hhcnk508r6xml2if1sg9zx";
- name = "recipe";
- };
- packageRequires = [ deferred ];
- meta = {
- homepage = "https://melpa.org/#/highlight-unique-symbol";
- license = lib.licenses.free;
- };
- }) {};
- highlight2clipboard = callPackage ({ fetchFromGitHub
- , fetchurl
- , htmlize
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "highlight2clipboard";
- ename = "highlight2clipboard";
- version = "20151020.1140";
- src = fetchFromGitHub {
- owner = "Lindydancer";
- repo = "highlight2clipboard";
- rev = "6ce58a060d9c5843ccb8c79ec2bba7858c68ac15";
- sha256 = "06nnqry36ncqacfzd8yvc4q59bwk3vgf9a14rkpph2hk2rfvq2m6";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/87afa08061dc406528e7666cd4ee16995839b2d9/recipes/highlight2clipboard";
- sha256 = "19r7abbpm31b0azf2v3xn0rjagg9h01i8g72qapp8dhqb4d9n9r0";
- name = "recipe";
- };
- packageRequires = [ htmlize ];
- meta = {
- homepage = "https://melpa.org/#/highlight2clipboard";
- license = lib.licenses.free;
- };
- }) {};
hindent = callPackage ({ cl-lib ? null
, fetchFromGitHub
, fetchurl
@@ -49594,31 +26795,6 @@
license = lib.licenses.free;
};
}) {};
- hippie-exp-ext = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "hippie-exp-ext";
- ename = "hippie-exp-ext";
- version = "20160502.1626";
- src = fetchFromGitHub {
- owner = "rubikitch";
- repo = "hippie-exp-ext";
- rev = "4eda13f90da51ab217d024701f4c30f91ffcb90e";
- sha256 = "141ikpyns1gd6kjply8m9jy9gifx5xdw5bn4p29hrxgiw994a78d";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/f8e4328cae9b4759a75da0b26ea8b68821bc71af/recipes/hippie-exp-ext";
- sha256 = "142s7cmgjnqdmac21yps3b071sv18lw068kmxchyxb0zsa067g9l";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/hippie-exp-ext";
- license = lib.licenses.free;
- };
- }) {};
hippie-expand-slime = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -49669,32 +26845,6 @@
license = lib.licenses.free;
};
}) {};
- historian = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "historian";
- ename = "historian";
- version = "20190110.1913";
- src = fetchFromGitHub {
- owner = "PythonNut";
- repo = "historian.el";
- rev = "64f4ef8cd4e417dfa090138a2d4ea1e72fd4456a";
- sha256 = "0py43kml7fcf1k28pali7n9nhsjp003j02cpynqcz6hmk8zr7b48";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/f16dacf64c52767c0c8aef653ac5d1a7a3bd0883/recipes/historian";
- sha256 = "00cghcyb3liz2prgygjwsw82d9h70zjddnbf7dvglmj7ph9wn9ab";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/historian";
- license = lib.licenses.free;
- };
- }) {};
history = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -49746,57 +26896,6 @@
license = lib.licenses.free;
};
}) {};
- hive = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , sql ? null }:
- melpaBuild {
- pname = "hive";
- ename = "hive";
- version = "20131217.712";
- src = fetchFromGitHub {
- owner = "r0man";
- repo = "hive-el";
- rev = "131f2816a0cf4d1fee44198ca305e6e2d1cab750";
- sha256 = "1hz1j1jv86k80g8safyy7h40j94xhczxmq6kz70cb1czn5df0zlh";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/b167265dff60950823a5e98a299462b2b535b9a9/recipes/hive";
- sha256 = "1marz8gmk824hb0nkhaw48d4qw1xjk1aad27gviya7f5ilypxrya";
- name = "recipe";
- };
- packageRequires = [ sql ];
- meta = {
- homepage = "https://melpa.org/#/hive";
- license = lib.licenses.free;
- };
- }) {};
- hiwin = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "hiwin";
- ename = "hiwin";
- version = "20150825.127";
- src = fetchFromGitHub {
- owner = "yoshida-mediba";
- repo = "hiwin-mode";
- rev = "6ee8ed051405653bd9b7332d7e9fbb591d954051";
- sha256 = "177blksgncxpxd1zi9kmbcfjnpd3ll1szjxiyc4am8a6hs1dyyqk";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5f050fd2b1038dce05a1302d3670933546f86525/recipes/hiwin";
- sha256 = "0klhxwxsz7xan2vsknw79r1dj4qhhjbfpddr67mk9qzccp8q0w8g";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/hiwin";
- license = lib.licenses.free;
- };
- }) {};
hl-anything = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -49823,60 +26922,6 @@
license = lib.licenses.free;
};
}) {};
- hl-fill-column = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , names }:
- melpaBuild {
- pname = "hl-fill-column";
- ename = "hl-fill-column";
- version = "20181210.404";
- src = fetchFromGitHub {
- owner = "laishulu";
- repo = "hl-fill-column";
- rev = "d6d121a71458052df5371ca2e2d867632d0b2eba";
- sha256 = "122i9f6sl8jhpdy6fwfr287lg66rcynknaq3qhf760wmdx1lpij9";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/68c40d7b6af664e01083b78c60b6a8e66b278a4e/recipes/hl-fill-column";
- sha256 = "1kv77zfz1rd60cajjgljn8b04j6szqwwc3ialfxf6wdzh1w28jd3";
- name = "recipe";
- };
- packageRequires = [ emacs names ];
- meta = {
- homepage = "https://melpa.org/#/hl-fill-column";
- license = lib.licenses.free;
- };
- }) {};
- hl-indent = callPackage ({ cl-lib ? null
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "hl-indent";
- ename = "hl-indent";
- version = "20170429.1404";
- src = fetchFromGitHub {
- owner = "ikirill";
- repo = "hl-indent";
- rev = "bdb2e0177a7c8b29af26998e688b856adc6ded93";
- sha256 = "0fwb64ja5ij97308pnd7g6l5mascavcp7jcar8igxv9yyqnw6pfi";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/3aa6ce8f3d1349e28dd9dea8396c38257e3cea2f/recipes/hl-indent";
- sha256 = "1z42kcwcyinjay65mv042ijh4xfaaiyri368g0sjw0fflsg0ikcr";
- name = "recipe";
- };
- packageRequires = [ cl-lib emacs ];
- meta = {
- homepage = "https://melpa.org/#/hl-indent";
- license = lib.licenses.free;
- };
- }) {};
hl-sentence = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -49928,137 +26973,6 @@
license = lib.licenses.free;
};
}) {};
- hledger-mode = callPackage ({ async
- , emacs
- , fetchFromGitHub
- , fetchurl
- , htmlize
- , lib
- , melpaBuild
- , popup }:
- melpaBuild {
- pname = "hledger-mode";
- ename = "hledger-mode";
- version = "20190222.801";
- src = fetchFromGitHub {
- owner = "narendraj9";
- repo = "hledger-mode";
- rev = "096fdbded583ee1d99719633222baa46231d85f6";
- sha256 = "1zf9d2z53c8n2mral05l55bd28y8xvrixvz4k2dw6zckxlhnfmiv";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/hledger-mode";
- sha256 = "15s8rqc94z70jzv13961nvcm9a9qadq04pf0m6xrzf8qqk71zn52";
- name = "recipe";
- };
- packageRequires = [ async emacs htmlize popup ];
- meta = {
- homepage = "https://melpa.org/#/hledger-mode";
- license = lib.licenses.free;
- };
- }) {};
- hlint-refactor = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "hlint-refactor";
- ename = "hlint-refactor";
- version = "20190115.100";
- src = fetchFromGitHub {
- owner = "mpickering";
- repo = "hlint-refactor-mode";
- rev = "c4307f86aad6d02e32e9b30cb6edc115584c791c";
- sha256 = "1c71w9s34n0i7mm4njchxn6s3ri1y6mh3akgbg4nq41d42h8iap3";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/384ffc463cc6edb4806f8da68bd251e662718e65/recipes/hlint-refactor";
- sha256 = "1311z6y7ycwx0mj67bya7a39j5hiypg72y6yg93dhgpk23wk7frq";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/hlint-refactor";
- license = lib.licenses.free;
- };
- }) {};
- hlinum = callPackage ({ cl-lib ? null
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "hlinum";
- ename = "hlinum";
- version = "20180421.2112";
- src = fetchFromGitHub {
- owner = "tom-tan";
- repo = "hlinum-mode";
- rev = "f17360fe93de6df99a05b4b64b0a1ca4ee45abb6";
- sha256 = "01sfba4sd3mjc7bs1y4qdzryfawg1xzg3hbwy9afwfaz0w5czni8";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/41bca7b89a7ce52d4c9381b9a4046b7103996c4f/recipes/hlinum";
- sha256 = "04b6m0njr7yrbcbpkhqz4hmqpfacmyca3lw75dyw3vpjpsj2g0iv";
- name = "recipe";
- };
- packageRequires = [ cl-lib ];
- meta = {
- homepage = "https://melpa.org/#/hlinum";
- license = lib.licenses.free;
- };
- }) {};
- hmac = callPackage ({ cl-lib ? null
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "hmac";
- ename = "hmac";
- version = "20180429.1310";
- src = fetchFromGitHub {
- owner = "grimnebulin";
- repo = "emacs-hmac";
- rev = "30132cd3fee7d3d91a9f04709d49ca0dcb96d565";
- sha256 = "0l4msj1i8amcn10dk1shcyh6hn49iphma1q03kp2h84ga79xdpi3";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/7cabf363dbdfc87f29ab3dcf63bfe39b9e0920f7/recipes/hmac";
- sha256 = "0am8pbjwf43nvhqa2mppdgiyd7kil7jxnaq7hhi5214bsrqgxk31";
- name = "recipe";
- };
- packageRequires = [ cl-lib emacs ];
- meta = {
- homepage = "https://melpa.org/#/hmac";
- license = lib.licenses.free;
- };
- }) {};
- hoa-mode = callPackage ({ fetchgit
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "hoa-mode";
- ename = "hoa-mode";
- version = "20151203.850";
- src = fetchgit {
- url = "https://gitlab.lrde.epita.fr/spot/emacs-modes.git";
- rev = "3c608e15b655d2375c5f81323ac561c7848dc029";
- sha256 = "19360wx1i7lkr8igddm7zl9yh5hlm3r013rkd512cs18iz1y753x";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/f8b91f35d06f9e7e17c9aaf2fb9ee43a77257113/recipes/hoa-mode";
- sha256 = "06rfqn7sqvmgpvwhfmk17qqs4q0frfzhm597z3p1q7kys2035kiv";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/hoa-mode";
- license = lib.licenses.free;
- };
- }) {};
hoa-pp-mode = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -50086,58 +27000,6 @@
license = lib.licenses.free;
};
}) {};
- holiday-pascha-etc = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "holiday-pascha-etc";
- ename = "holiday-pascha-etc";
- version = "20160821.1758";
- src = fetchFromGitHub {
- owner = "hexmode";
- repo = "holiday-pascha-etc";
- rev = "eb198656f63cb8679fb0e3a8248782df071a0f3c";
- sha256 = "1dd0k7r5kx15sph12vzakhq27zh7vy9r541qdp8w5051k6apw3pw";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/4108926b1fee78e54c9fa68445c7a2b1b20404ea/recipes/holiday-pascha-etc";
- sha256 = "0v2mhga1db6qy1160i730pzzrzisvhl3fjkazj4cjbkpjlshfc5j";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/holiday-pascha-etc";
- license = lib.licenses.free;
- };
- }) {};
- home-end = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , keypress-multi-event
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "home-end";
- ename = "home-end";
- version = "20180817.155";
- src = fetchFromGitHub {
- owner = "Boruch-Baum";
- repo = "emacs-home-end";
- rev = "211914c5e7b25f35f02626575a9b10536f81ba1d";
- sha256 = "1ppjm0sb4svarnqcv6j581sqnjjsps27ghx63759v9wkylqyi995";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/f67c9cf33e0f11a9bd6e1521af86d180177111c4/recipes/home-end";
- sha256 = "0xnpb0n4kd7b0m80g2a88ylfk5gbvkcgwb78nig98dmgjg48z2ly";
- name = "recipe";
- };
- packageRequires = [ emacs keypress-multi-event ];
- meta = {
- homepage = "https://melpa.org/#/home-end";
- license = lib.licenses.free;
- };
- }) {};
homebrew-mode = callPackage ({ dash
, emacs
, fetchFromGitHub
@@ -50166,33 +27028,6 @@
license = lib.licenses.free;
};
}) {};
- honcho = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , sudo-edit }:
- melpaBuild {
- pname = "honcho";
- ename = "honcho";
- version = "20180706.1724";
- src = fetchFromGitHub {
- owner = "emacs-pe";
- repo = "honcho.el";
- rev = "f6a89a27e255b3ecb1f0b13058933558b1f0c6fb";
- sha256 = "06q0rw1vc3h1jd7q544csqn6mkfzcqmdlcr7pcrs7y2jsgb01k4s";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/76487b6776d148325c0200d2f788815f115feac9/recipes/honcho";
- sha256 = "1ywx67dmvackfx19p4fvrb8mm27a7pri3m3bwr2acwd29lrrid2x";
- name = "recipe";
- };
- packageRequires = [ emacs sudo-edit ];
- meta = {
- homepage = "https://melpa.org/#/honcho";
- license = lib.licenses.free;
- };
- }) {};
hookify = callPackage ({ dash
, fetchFromGitHub
, fetchurl
@@ -50220,32 +27055,6 @@
license = lib.licenses.free;
};
}) {};
- horoscope = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "horoscope";
- ename = "horoscope";
- version = "20180408.2341";
- src = fetchFromGitHub {
- owner = "mschuldt";
- repo = "horoscope.el";
- rev = "f4c683e991adce0a8f9023f15050f306f9b9a9ed";
- sha256 = "17k4j4q19l4ahxlzzic1jlbbh7l378j9vgnrcrvpm0lxa9ipclk0";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/180248c19160940a208b32fa7a9660a838f68de5/recipes/horoscope";
- sha256 = "1y2nzhdl7ghi5l3iyzb04xics7gr5981jmb5z5y8y1z04xhqpfs6";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/horoscope";
- license = lib.licenses.free;
- };
- }) {};
hound = callPackage ({ cl-lib ? null
, fetchFromGitHub
, fetchurl
@@ -50273,82 +27082,6 @@
license = lib.licenses.free;
};
}) {};
- howdoi = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "howdoi";
- ename = "howdoi";
- version = "20150203.1643";
- src = fetchFromGitHub {
- owner = "atykhonov";
- repo = "emacs-howdoi";
- rev = "5fbf7069ee160c597a328e5ce5fb32920e1ca88f";
- sha256 = "01sj9c8mxqaif8wh6zz9v2czjaq7vcdi66drldyjmifkln6rg2v8";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/d08f4d6c8bdf16f47d2474f92273fd214179cb18/recipes/howdoi";
- sha256 = "12vgbypawxhhrnjp8dgh0wrcp7pvjccfaxw4yhq7msai7ik3h83b";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/howdoi";
- license = lib.licenses.free;
- };
- }) {};
- howm = callPackage ({ cl-lib ? null
- , fetchgit
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "howm";
- ename = "howm";
- version = "20180929.514";
- src = fetchgit {
- url = "https://scm.osdn.net/gitroot/howm/howm.git";
- rev = "f707233a99f425d67ddb86b197edeaa3f03a280d";
- sha256 = "1k1fv6yyydxcv8rm5f3cyly0fl0vmxgqxdk9wnakabcb14d32ws4";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/0099a1f9b0efb3fc3a1420cfe71a647ec6458998/recipes/howm";
- sha256 = "07wx3wmc51vm42s81km5sdbm600ax2pv83xg0116xsyn05za3bfn";
- name = "recipe";
- };
- packageRequires = [ cl-lib ];
- meta = {
- homepage = "https://melpa.org/#/howm";
- license = lib.licenses.free;
- };
- }) {};
- hsluv = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , seq }:
- melpaBuild {
- pname = "hsluv";
- ename = "hsluv";
- version = "20181127.406";
- src = fetchFromGitHub {
- owner = "hsluv";
- repo = "hsluv-emacs";
- rev = "bc6e27d25b62f5a2f79836a32e8de6125f4d1564";
- sha256 = "08jkba7z0w1ma9j2y93aic3sbgnzxyyiradk69qylnl60q4xnx19";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/b74189f827ed54760c758f0364e573809ab32a22/recipes/hsluv";
- sha256 = "1g7g8434q2a4vpzxa4y5vrplzjali89px3gr8vhzfhscxg6mdcki";
- name = "recipe";
- };
- packageRequires = [ seq ];
- meta = {
- homepage = "https://melpa.org/#/hsluv";
- license = lib.licenses.free;
- };
- }) {};
ht = callPackage ({ dash
, fetchFromGitHub
, fetchurl
@@ -50375,85 +27108,6 @@
license = lib.licenses.free;
};
}) {};
- html-check-frag = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "html-check-frag";
- ename = "html-check-frag";
- version = "20160130.2135";
- src = fetchFromGitHub {
- owner = "TobiasZawada";
- repo = "html-check-frag";
- rev = "feb89765eafd69dfcf07afeebded8985dc456e7c";
- sha256 = "10lbxf56gvy26grzrhhx2p710fzs0h866jd2zmmgkisvyb0vaiay";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/a53c9877f6f4c4e72c565fb8bd7cbe81ddbc565c/recipes/html-check-frag";
- sha256 = "0drancb9ryifiln44b40l6cal0c7nyp597a6q26288s3v909yk2a";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/html-check-frag";
- license = lib.licenses.free;
- };
- }) {};
- html-script-src = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "html-script-src";
- ename = "html-script-src";
- version = "20120403.1115";
- src = fetchFromGitHub {
- owner = "rejeep";
- repo = "html-script-src.el";
- rev = "0efeed7ab948e48128e6f1a7ddff17ef2951e1c2";
- sha256 = "11zffiy5s0zqwi8hxwa87j2k8n2lm54v8knnbwa5zafhqpb53znm";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/html-script-src";
- sha256 = "0pdyc2a9wxxc9rivjm2kgh4ysdxmdp73wg37nfy2nzka1m7qni7j";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/html-script-src";
- license = lib.licenses.free;
- };
- }) {};
- html-to-hiccup = callPackage ({ dash
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , s }:
- melpaBuild {
- pname = "html-to-hiccup";
- ename = "html-to-hiccup";
- version = "20161028.701";
- src = fetchFromGitHub {
- owner = "plexus";
- repo = "html-to-hiccup";
- rev = "99217a5058626d253ed8ada51a7642071fe54ba5";
- sha256 = "1cvlh1iqjdmgwbw254g0rfdshsj7dhqjjp56gwqhn2fqkga44a7i";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/html-to-hiccup";
- sha256 = "0gyghgdil14i4p0yv5mb6la1ajzf8xcgdm1si5i5w7cn72vfapmz";
- name = "recipe";
- };
- packageRequires = [ dash emacs s ];
- meta = {
- homepage = "https://melpa.org/#/html-to-hiccup";
- license = lib.licenses.free;
- };
- }) {};
html-to-markdown = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -50479,32 +27133,6 @@
license = lib.licenses.free;
};
}) {};
- html2org = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "html2org";
- ename = "html2org";
- version = "20170417.2201";
- src = fetchFromGitHub {
- owner = "lujun9972";
- repo = "html2org.el";
- rev = "6904aed40259ad8afccff079ebd8a07bff319ebc";
- sha256 = "0dryk622fz0yj939pbs0fbb9i4m8qjnmkcxjsssws8f90plk06af";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/771e6604edc90182697bbd4827c8c46c34b48289/recipes/html2org";
- sha256 = "1lj4dwmjkc43dfmsc7z4nvydmmf6wrk5v9ms23zf0llnk9h3hvnk";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/html2org";
- license = lib.licenses.free;
- };
- }) {};
htmlize = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -50530,110 +27158,6 @@
license = lib.licenses.free;
};
}) {};
- htmltagwrap = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "htmltagwrap";
- ename = "htmltagwrap";
- version = "20181211.606";
- src = fetchFromGitHub {
- owner = "jcs090218";
- repo = "htmltagwrap";
- rev = "c9722bcaf449ca3e52628827d063233f4c8a7d1f";
- sha256 = "0xd9841b9jfxsnmv5083yhh8d9fskyy7d0h0fhk922qcvhx0swhq";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/3ab8c9de8a9a1d0f8a7dd70d2cb191fec8714592/recipes/htmltagwrap";
- sha256 = "1084vq3qpyjakph5yb95r0f7a4bjqfnhj5pnpv7qk39xnr640mxb";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/htmltagwrap";
- license = lib.licenses.free;
- };
- }) {};
- http = callPackage ({ edit-indirect
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , request }:
- melpaBuild {
- pname = "http";
- ename = "http";
- version = "20181008.1421";
- src = fetchFromGitHub {
- owner = "emacs-pe";
- repo = "http.el";
- rev = "1bbfff5994e16ffc185c4ac28d792cb040da3351";
- sha256 = "0bs2l487mn8zkx3h7zgynm5cq54w8wlr150izaxynqddcpkrr44h";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/c7c63aaf27240706d84e464881d40cfb7cbe9ee3/recipes/http";
- sha256 = "1176jhm8m7s1pzp0zv1sqawcgn4m5zvxghypmsrjyyb5p7m6dalm";
- name = "recipe";
- };
- packageRequires = [ edit-indirect emacs request ];
- meta = {
- homepage = "https://melpa.org/#/http";
- license = lib.licenses.free;
- };
- }) {};
- http-post-simple = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "http-post-simple";
- ename = "http-post-simple";
- version = "20170715.240";
- src = fetchFromGitHub {
- owner = "emacsorphanage";
- repo = "http-post-simple";
- rev = "f53697fca278c741051aeb668b00466b5e0fd3fe";
- sha256 = "0krdbvvvzn323vx554yw7947nddl3icfjk4wf5kfx7fim5v3mdn6";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/ae489be43b1aee93614e40f492ebdf0b98a3fbc1/recipes/http-post-simple";
- sha256 = "0z3zphaqywbm7vn2g1f7fkrdamgsc26i8zydm9y53v9z9fmzch5s";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/http-post-simple";
- license = lib.licenses.free;
- };
- }) {};
- http-twiddle = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "http-twiddle";
- ename = "http-twiddle";
- version = "20160801.1211";
- src = fetchFromGitHub {
- owner = "hassy";
- repo = "http-twiddle";
- rev = "46da2dbc40209925aa88ab19014ca982bcf9ac70";
- sha256 = "03fdpl64lgwlz8yc29ia9scbh0s5xh7g7jbyfvvp6hcy2f0yiyx7";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/http-twiddle";
- sha256 = "1d8xnwhb8lp4p4xnnkryx5c6isd8ckalp0smx66lbi1pa4g6iqsh";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/http-twiddle";
- license = lib.licenses.free;
- };
- }) {};
httpcode = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -50715,31 +27239,6 @@
license = lib.licenses.free;
};
}) {};
- hungarian-holidays = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "hungarian-holidays";
- ename = "hungarian-holidays";
- version = "20161020.438";
- src = fetchFromGitHub {
- owner = "gergelypolonkai";
- repo = "hungarian-holidays";
- rev = "653108769279499d84a79267c90e640d98823872";
- sha256 = "0jjparw5axydjf2lj8asccmksbbj9zgdiv2kc211h122q5712gvm";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/0c2dc20ce4b878a32c540744016a40f6cc2a657a/recipes/hungarian-holidays";
- sha256 = "1bdl0ynlni1i19hq4h48k8j9b2davv2kfgrpd2mrl2xqmjvhm1m2";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/hungarian-holidays";
- license = lib.licenses.free;
- };
- }) {};
hungry-delete = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -50925,55 +27424,6 @@
license = lib.licenses.free;
};
}) {};
- i2b2-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "i2b2-mode";
- ename = "i2b2-mode";
- version = "20140709.1804";
- src = fetchFromGitHub {
- owner = "danlamanna";
- repo = "i2b2-mode";
- rev = "db10efcfc8bed369a516bbf7526ede41f98cb95a";
- sha256 = "17k41rah17l9kf7bvlm83x71nzz4aizgn7254cl5sb59mdhcm8pm";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/i2b2-mode";
- sha256 = "1jnlisdnp9sz54p444vlq00y3080i4ljcvclri9fy382g1s5ags5";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/i2b2-mode";
- license = lib.licenses.free;
- };
- }) {};
- i3wm = callPackage ({ fetchgit
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "i3wm";
- ename = "i3wm";
- version = "20170822.738";
- src = fetchgit {
- url = "https://git.flintfam.org/swf-projects/emacs-i3.git";
- rev = "71391dc61063fee77ad174f3b2ca25c60b41009e";
- sha256 = "16rwqfg517ask3y6mqxw689w8xx4i51nq8js5wnzbz9a55aj776n";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/2e12638554a13ef49ab24da08fe20ed2a53dbd11/recipes/i3wm";
- sha256 = "11246d71g82iv9zrd44013zwkmnf32m1x8zbrbb656dnzx7ps4rl";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/i3wm";
- license = lib.licenses.free;
- };
- }) {};
ialign = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -51000,82 +27450,6 @@
license = lib.licenses.free;
};
}) {};
- iasm-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "iasm-mode";
- ename = "iasm-mode";
- version = "20171023.722";
- src = fetchFromGitHub {
- owner = "RAttab";
- repo = "iasm-mode";
- rev = "abbec7f308f9ce97beeb57e459fff35f559b4c18";
- sha256 = "0hvpcckhlxab5f7w4s6iw5lhdbjrqn0l8gayg1w42rn6gssr3rap";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5c230ec10eb62d1b3f6df10c05c5dbc2e25d4507/recipes/iasm-mode";
- sha256 = "09xh41ayaha07fi5crk3c6pn17gwm3samsf6h71ldkywvz74kipv";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/iasm-mode";
- license = lib.licenses.free;
- };
- }) {};
- ibuffer-git = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "ibuffer-git";
- ename = "ibuffer-git";
- version = "20110508.31";
- src = fetchFromGitHub {
- owner = "jrockway";
- repo = "ibuffer-git";
- rev = "d326319c05ddb8280885b31f9094040c1b365876";
- sha256 = "1s5qvlf310b0z7q9k1xhcf4qmyfqd37jpqd67ciahaxk7cp224rd";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/d341da1b9bac782c75ab931fd53a9525a85c702e/recipes/ibuffer-git";
- sha256 = "048888y07bzmi9x5i43fg6bgqbzdqi3nfjfnn6zr29jvlx366r5z";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/ibuffer-git";
- license = lib.licenses.free;
- };
- }) {};
- ibuffer-project = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "ibuffer-project";
- ename = "ibuffer-project";
- version = "20181216.1325";
- src = fetchFromGitHub {
- owner = "muffinmad";
- repo = "emacs-ibuffer-project";
- rev = "7424e71062f2cb969c3e9951203022414dea37fb";
- sha256 = "02rr81ddpand0hb3yaskklhpknnqfjkcqaa2w77xi4xlzjdima01";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/895d692a678322e2d082ead155b679fa24a3a82d/recipes/ibuffer-project";
- sha256 = "14lpjf9lsjzvkbp5ai95ymgl6h8waq80623hnamg6mv83vg7w135";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/ibuffer-project";
- license = lib.licenses.free;
- };
- }) {};
ibuffer-projectile = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -51102,58 +27476,6 @@
license = lib.licenses.free;
};
}) {};
- ibuffer-rcirc = callPackage ({ cl-lib ? null
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "ibuffer-rcirc";
- ename = "ibuffer-rcirc";
- version = "20150215.1318";
- src = fetchFromGitHub {
- owner = "fgallina";
- repo = "ibuffer-rcirc";
- rev = "8a4409b1c679d65c819dee4085faf929840e79f8";
- sha256 = "15lapyj7qkkw1i1g1aizappm7gxkfnxhvd4fq66lghkzb76clz2m";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/d8bcf68d54fce13fcb0fb0ae0b6aa975e8127a1f/recipes/ibuffer-rcirc";
- sha256 = "1y6pyc6g8j42hs103yynjsdkkxvcq0q4xsz4r93rqwsr3za3wcmc";
- name = "recipe";
- };
- packageRequires = [ cl-lib ];
- meta = {
- homepage = "https://melpa.org/#/ibuffer-rcirc";
- license = lib.licenses.free;
- };
- }) {};
- ibuffer-sidebar = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "ibuffer-sidebar";
- ename = "ibuffer-sidebar";
- version = "20180218.1731";
- src = fetchFromGitHub {
- owner = "jojojames";
- repo = "ibuffer-sidebar";
- rev = "b18a8ca0fac9cbfb6e99bcccc2cea488d5876add";
- sha256 = "1vvzmx4wi0bscig0aqrs9rmxw6mnyyqcxg3mi8mr52j43p1kdmr3";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/19c7c36af8e30b9a9ccc4afda2a7b7e39e8d32ff/recipes/ibuffer-sidebar";
- sha256 = "0rzdybkqaf8r6v19isgw4wv0mwdqxvf55gq1ig4shscjc7ys22wp";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/ibuffer-sidebar";
- license = lib.licenses.free;
- };
- }) {};
ibuffer-tramp = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -51205,57 +27527,6 @@
license = lib.licenses.free;
};
}) {};
- id-manager = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "id-manager";
- ename = "id-manager";
- version = "20170320.546";
- src = fetchFromGitHub {
- owner = "kiwanami";
- repo = "emacs-id-manager";
- rev = "14ebc35db298aac4dedc8aa188bc46bacab81f3b";
- sha256 = "0k9b12gzvjw06y5ycjkigkj8vcmj4rz57d4hyzip27g1v93vvimc";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/64a61b3801a0cafec87b1875eaec5950746f716d/recipes/id-manager";
- sha256 = "13g5fi06hvx0x2wn1d1d8rkfq5n6wbk9g5bhx2b5sar2yw0akmwm";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/id-manager";
- license = lib.licenses.free;
- };
- }) {};
- idea-darkula-theme = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "idea-darkula-theme";
- ename = "idea-darkula-theme";
- version = "20160416.1603";
- src = fetchFromGitHub {
- owner = "fourier";
- repo = "idea-darkula-theme";
- rev = "52602d9b91883e1f297d000951aeed48bf60176e";
- sha256 = "1hknhbm3b5rsba2s84iwspylhzjsm91zdckz22j9gyrq37wjgyrr";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/abf27cce70443010f996b5577d71fe78f7eab6fb/recipes/idea-darkula-theme";
- sha256 = "0lanhwlhd7pbzjc047vd5sgsmi2bx66gr3inr8y57swgrfw3l8sk";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/idea-darkula-theme";
- license = lib.licenses.free;
- };
- }) {};
identica-mode = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -51331,56 +27602,6 @@
license = lib.licenses.free;
};
}) {};
- idle-org-agenda = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "idle-org-agenda";
- ename = "idle-org-agenda";
- version = "20190106.1044";
- src = fetchFromGitHub {
- owner = "enisozgen";
- repo = "idle-org-agenda";
- rev = "bfdf1b4f4096acdd081b3549d6b838f4ca4f7d0d";
- sha256 = "0rv8nhd2mgdbmziz49lm4hcbfyhk1wb5k0l9zsyrgn50rs32akhp";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/de55ad7d9b8b3bed6a646f526a7b20c272eb4e26/recipes/idle-org-agenda";
- sha256 = "12g18gqwb520iqvs4v6jv0fjxsa3m6an1lq13saa4gwqixja1rrv";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/idle-org-agenda";
- license = lib.licenses.free;
- };
- }) {};
- idle-require = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "idle-require";
- ename = "idle-require";
- version = "20090715.1503";
- src = fetchFromGitHub {
- owner = "nschum";
- repo = "idle-require.el";
- rev = "33592bb098223b4432d7a35a1d65ab83f47c1ec1";
- sha256 = "0f8rxvc3dk2hi4x524l18fx73xrxy0qqwbybdma4ca67ck9n6xam";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/idle-require";
- sha256 = "03z8d06ifzaf81h8b3h16ab69cp3ssky3my07spy81rbhbjl5nn3";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/idle-require";
- license = lib.licenses.free;
- };
- }) {};
ido-at-point = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -51407,33 +27628,6 @@
license = lib.licenses.free;
};
}) {};
- ido-clever-match = callPackage ({ cl-lib ? null
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "ido-clever-match";
- ename = "ido-clever-match";
- version = "20151011.1026";
- src = fetchFromGitHub {
- owner = "Bogdanp";
- repo = "ido-clever-match";
- rev = "f173473e99c8b0756f12e4cc8f67e68fa59eadd3";
- sha256 = "14nmldahr0pj2x4vkzpnpx0bsxafmiihgjylk5j5linqvy8q6wk6";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/add68b4815cdfe83402b217595a4a46068f83a2a/recipes/ido-clever-match";
- sha256 = "081i6cjvqyfpgj0nvzc94zrl2v3l6nv6mhfda4zf7c8qqbvx1m8m";
- name = "recipe";
- };
- packageRequires = [ cl-lib emacs ];
- meta = {
- homepage = "https://melpa.org/#/ido-clever-match";
- license = lib.licenses.free;
- };
- }) {};
ido-complete-space-or-hyphen = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -51514,86 +27708,6 @@
license = lib.licenses.free;
};
}) {};
- ido-exit-target = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "ido-exit-target";
- ename = "ido-exit-target";
- version = "20170717.1151";
- src = fetchFromGitHub {
- owner = "waymondo";
- repo = "ido-exit-target";
- rev = "e56fc6928649c87ccf39d56d84ab53ebaced1f73";
- sha256 = "1a1bcvmihf22kr8rpv6kyp4b7x79hla5qdys48d6kl06m53gyckp";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/b815e7492eb0bd39c5d1be5a95784f9fe5612b62/recipes/ido-exit-target";
- sha256 = "17vmg47xwk6yjlbcsswirl8s2q565k291ajzjglnz7qg2fwx6spi";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/ido-exit-target";
- license = lib.licenses.free;
- };
- }) {};
- ido-flex-with-migemo = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , flx-ido
- , lib
- , melpaBuild
- , migemo }:
- melpaBuild {
- pname = "ido-flex-with-migemo";
- ename = "ido-flex-with-migemo";
- version = "20190124.1937";
- src = fetchFromGitHub {
- owner = "ROCKTAKEY";
- repo = "ido-flex-with-migemo";
- rev = "676742cda0b7bb8a0bf6aa06f345cdc43c30cefa";
- sha256 = "0y54mf45540p4w021wgmym9gzm8i4hfx1a3bc94mafs6zw68vxqm";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1647d1ae7400ddbc8367c355ade16b5c360b42fc/recipes/ido-flex-with-migemo";
- sha256 = "1w8f1r17l4r7w5bacckv9zfl9qynv2ivsw639rzr5acg2ndxagv7";
- name = "recipe";
- };
- packageRequires = [ emacs flx-ido migemo ];
- meta = {
- homepage = "https://melpa.org/#/ido-flex-with-migemo";
- license = lib.licenses.free;
- };
- }) {};
- ido-gnus = callPackage ({ fetchFromGitHub
- , fetchurl
- , gnus ? null
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "ido-gnus";
- ename = "ido-gnus";
- version = "20140216.846";
- src = fetchFromGitHub {
- owner = "vapniks";
- repo = "ido-gnus";
- rev = "f5fe3f6aa8086f675ba216abace9e3d5f2e3a089";
- sha256 = "0ifdwd5vnjv2iyb5bnz8pij35lc0ymmyx8j8zhpkbgjigz8f05ip";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/3c5cd46d72a3f99ef1344b5f1156f5bf7a5b9adc/recipes/ido-gnus";
- sha256 = "14ijb8q4s846984h102h72ij713v5bj3k2vfdvr94gw1f0iya2yg";
- name = "recipe";
- };
- packageRequires = [ gnus ];
- meta = {
- homepage = "https://melpa.org/#/ido-gnus";
- license = lib.licenses.free;
- };
- }) {};
ido-grid-mode = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -51620,31 +27734,6 @@
license = lib.licenses.free;
};
}) {};
- ido-hacks = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "ido-hacks";
- ename = "ido-hacks";
- version = "20190206.1353";
- src = fetchFromGitHub {
- owner = "scottjad";
- repo = "ido-hacks";
- rev = "d2153a3e8d23436ee07ecae2a106f434361a10c5";
- sha256 = "0rq5jmij691cccv4x8h8aiclnzx04v08axgz30prp6p71dxlrdms";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/4ac3074d28e76133835366273219e180c6e75b18/recipes/ido-hacks";
- sha256 = "05f9pdkqppnp7wafka2d2yj84gqchjd7vnrl5rcywy1l47gbxiw0";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/ido-hacks";
- license = lib.licenses.free;
- };
- }) {};
ido-load-library = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -51672,58 +27761,6 @@
license = lib.licenses.free;
};
}) {};
- ido-migemo = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , migemo }:
- melpaBuild {
- pname = "ido-migemo";
- ename = "ido-migemo";
- version = "20150921.1544";
- src = fetchFromGitHub {
- owner = "myuhe";
- repo = "ido-migemo.el";
- rev = "eec329e315c4782ab966f162a6c91fd3a01ef358";
- sha256 = "1d7jrfs9vihsi88a0aa139xsad00w5rmzh54s3qp8ismljn8dlql";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/8550601b8989f9838dfa7848977b2509b8e16175/recipes/ido-migemo";
- sha256 = "02hbwchwx2bcwdxz7gz555699l7n9wisfikax1j6idn167n4wdpi";
- name = "recipe";
- };
- packageRequires = [ migemo ];
- meta = {
- homepage = "https://melpa.org/#/ido-migemo";
- license = lib.licenses.free;
- };
- }) {};
- ido-occasional = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "ido-occasional";
- ename = "ido-occasional";
- version = "20150214.448";
- src = fetchFromGitHub {
- owner = "abo-abo";
- repo = "ido-occasional";
- rev = "d405f1795e1e0c63be411ee2825184738d29c33a";
- sha256 = "0zlkq29wxd3a4vg0w6ds2jad5h1pja7ccd3l6ppl0kz1b1517qlr";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/ed49d07aa36dfc742ca3fbfa83a6d624bf2fa525/recipes/ido-occasional";
- sha256 = "1vdh5i9qznzd9r148a6jw9v47swf7ykwyciqfzc3ismv5q909bl2";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/ido-occasional";
- license = lib.licenses.free;
- };
- }) {};
ido-occur = callPackage ({ dash
, fetchFromGitHub
, fetchurl
@@ -51750,109 +27787,6 @@
license = lib.licenses.free;
};
}) {};
- ido-select-window = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "ido-select-window";
- ename = "ido-select-window";
- version = "20131220.1247";
- src = fetchFromGitHub {
- owner = "pjones";
- repo = "ido-select-window";
- rev = "946db3db7a3fec582cc1a0097877f1250303b53a";
- sha256 = "0qvf3h2ljlbf3z36dhywzza62mfi6mqbrfc0sqfsbyia9bn1df4f";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/775c8361322c2ba9026130dd60083e0255170b8f/recipes/ido-select-window";
- sha256 = "03xqfpnagy2sk67yq7n7s6ma3im37d558zzx8sdzd9pbfxy9ij23";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/ido-select-window";
- license = lib.licenses.free;
- };
- }) {};
- ido-skk = callPackage ({ ddskk
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "ido-skk";
- ename = "ido-skk";
- version = "20151111.150";
- src = fetchFromGitHub {
- owner = "tsukimizake";
- repo = "ido-skk";
- rev = "89a2e62799bff2841ff634517c86084c4ce69246";
- sha256 = "149cznbybwj0gkjyvpnh4kn258kxw449m7cn95n9jbh1r45vljvy";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/6da9bd69a646a8edfaf9dc7f2e31e5f057f44b6b/recipes/ido-skk";
- sha256 = "1fyzjkw9xp126bzfv1254bvyakh323iw3wdzrkd9gb4ir39k5jzw";
- name = "recipe";
- };
- packageRequires = [ ddskk emacs ];
- meta = {
- homepage = "https://melpa.org/#/ido-skk";
- license = lib.licenses.free;
- };
- }) {};
- ido-sort-mtime = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "ido-sort-mtime";
- ename = "ido-sort-mtime";
- version = "20171121.59";
- src = fetchFromGitHub {
- owner = "pkkm";
- repo = "ido-sort-mtime";
- rev = "f638ff0c922af862f5211779f2311a27fde428eb";
- sha256 = "0isy3rmw69664fsypg58rs42ql43drf27l90yvplnbcqd7nnnb21";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/36d2f7f1bb0d0694a25c1e83340781e08bee814b/recipes/ido-sort-mtime";
- sha256 = "1dkny9y3x49dv1vjwz78x2qhb6kdq3fa8qh1xkm30jyapvgiwdg2";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/ido-sort-mtime";
- license = lib.licenses.free;
- };
- }) {};
- ido-springboard = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "ido-springboard";
- ename = "ido-springboard";
- version = "20170105.2355";
- src = fetchFromGitHub {
- owner = "jwiegley";
- repo = "springboard";
- rev = "263a8cd4582c81bfc29d7db37d5267e2488b148c";
- sha256 = "14mbmkqnw2kkzcb8f9z1g3c8f8f9lca3zb6f3q8jk9dsyp9vh81z";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/409d847fb464a320e626fae56521a81a8e862a3e/recipes/ido-springboard";
- sha256 = "04jqnag8jiyfbwvc3vd9ikrsmf6cajld7dz2gz9y0zkj1k4gs7zv";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/ido-springboard";
- license = lib.licenses.free;
- };
- }) {};
ido-vertical-mode = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -51957,32 +27891,6 @@
license = lib.licenses.free;
};
}) {};
- ids-edit = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "ids-edit";
- ename = "ids-edit";
- version = "20170818.802";
- src = fetchFromGitHub {
- owner = "kawabata";
- repo = "ids-edit";
- rev = "8562a6cbfb3f2d44bc6f62ab15081a80f8fee502";
- sha256 = "10h64c5n9piq9ly7ipqq33ji8x8vwh9j1h7r05yab8a2sn0h8587";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/ca17de8cdd53bb32a9d3faaeb38f19f92b18ee38/recipes/ids-edit";
- sha256 = "1n4gpcl3qj65cmaq9cdljsmrf84570z4chfvga6slsqjz5him8d1";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/ids-edit";
- license = lib.licenses.free;
- };
- }) {};
iedit = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -52008,31 +27916,6 @@
license = lib.licenses.free;
};
}) {};
- ietf-docs = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "ietf-docs";
- ename = "ietf-docs";
- version = "20150928.257";
- src = fetchFromGitHub {
- owner = "choppsv1";
- repo = "ietf-docs";
- rev = "ede30d6d26044069e1731fd20c0ab2324552c0b4";
- sha256 = "0b86x675g95yrlc0alffx0z9fmficlwv3gpy5cy86z1xvvyh3nzw";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/cedfdfe2c282d0484ea8239726f46a4861ef07ea/recipes/ietf-docs";
- sha256 = "0wnk36z9g7lksmynd04hb2m6rx45wpxnxj1lhrlpjnzsrknhf4k3";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/ietf-docs";
- license = lib.licenses.free;
- };
- }) {};
iflipb = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -52083,30 +27966,6 @@
license = lib.licenses.free;
};
}) {};
- igv = callPackage ({ fetchgit
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "igv";
- ename = "igv";
- version = "20141210.427";
- src = fetchgit {
- url = "https://bitbucket.org/sbarbit/eigv";
- rev = "47ac6ceede252f451348a2c696398c0cb5279555";
- sha256 = "11pss3hfxkfkyi273zfajdj43shdl6pn739zfv9jbm75v7m9bz6f";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/igv";
- sha256 = "0vjqdyj9j26y0hhzmip6lpwc8g1c9vnmgya1p7v77bkgdicgl659";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/igv";
- license = lib.licenses.free;
- };
- }) {};
image-archive = callPackage ({ cl-lib ? null
, emacs
, fetchFromGitHub
@@ -52186,31 +28045,6 @@
license = lib.licenses.free;
};
}) {};
- imakado = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "imakado";
- ename = "imakado";
- version = "20141024.223";
- src = fetchFromGitHub {
- owner = "imakado";
- repo = "emacs-imakado";
- rev = "00a1e7eea2cb9e9066343a23927d6c747707902f";
- sha256 = "0f3xdqhq9nprvl8bnmgrx20h08ddkfak0is29bsqwckkfgn7pmqp";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/ca131089c823065852f58347a88bd49217a22072/recipes/imakado";
- sha256 = "18mj0vpv3dybfpa8hl9jwlagsivbhgqgz8lwb8cswsq9hwv3jgd3";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/imakado";
- license = lib.licenses.free;
- };
- }) {};
imake = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -52340,33 +28174,6 @@
license = lib.licenses.free;
};
}) {};
- imgbb = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , request }:
- melpaBuild {
- pname = "imgbb";
- ename = "imgbb";
- version = "20180609.949";
- src = fetchFromGitHub {
- owner = "ecraven";
- repo = "imgbb.el";
- rev = "a524a46263835aa474f908827ebab4e8fa586001";
- sha256 = "1fhhpz29x9vkhzms2qkxblic96kqzg0rqsxj71vgz6fpwdb4f9gy";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/89d363862890aa7f25db1a5fc5e209bccbadf0bf/recipes/imgbb";
- sha256 = "0p29pasq0f0b5x7yig4g4n1k0y82aiapxazz359pm7n4kjy2s6qp";
- name = "recipe";
- };
- packageRequires = [ emacs request ];
- meta = {
- homepage = "https://melpa.org/#/imgbb";
- license = lib.licenses.free;
- };
- }) {};
immaterial-theme = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -52393,30 +28200,6 @@
license = lib.licenses.free;
};
}) {};
- immortal-scratch = callPackage ({ fetchhg
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "immortal-scratch";
- ename = "immortal-scratch";
- version = "20160517.1418";
- src = fetchhg {
- url = "https://bitbucket.com/jpkotta/immortal-scratch";
- rev = "b354aba33d91";
- sha256 = "1mx9f8pwnbrm6q9ngdyv64aqkw1izj83m0mf7zqlpww7yfhv1q9b";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1f9f4a59d88106ddfee740653abd28e305f6dfe0/recipes/immortal-scratch";
- sha256 = "0rxhaqivvjij59hhv3mh4wwrc0bl0xv144j1i237xhlvhxk6nnn6";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/immortal-scratch";
- license = lib.licenses.free;
- };
- }) {};
immutant-server = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -52577,86 +28360,6 @@
license = lib.licenses.free;
};
}) {};
- indent-info = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "indent-info";
- ename = "indent-info";
- version = "20180423.1212";
- src = fetchFromGitHub {
- owner = "terlar";
- repo = "indent-info.el";
- rev = "d218b4cb3726476caee91db6f6c920856ab992bc";
- sha256 = "0z427rvvhw5raql5391sajm4rk1n2y8khsy2wqr7r66fdv5hg2mg";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1274c0d871c51e358b3de577372dae8e3a04ead0/recipes/indent-info";
- sha256 = "0fa6p5fvyxib1iz025kqak7navb11jlfxw5x2jr47180vv9a1373";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/indent-info";
- license = lib.licenses.free;
- };
- }) {};
- indent-tools = callPackage ({ fetchFromGitLab
- , fetchurl
- , hydra
- , lib
- , melpaBuild
- , s
- , yafolding }:
- melpaBuild {
- pname = "indent-tools";
- ename = "indent-tools";
- version = "20180124.408";
- src = fetchFromGitLab {
- owner = "emacs-stuff";
- repo = "indent-tools";
- rev = "b650b2ca82ccd9ccb4f3142afa0da4737ddd364f";
- sha256 = "01xkkrdfn3c8ivs2wc3ck2278m75gq73wv59fchb6gw1a9d6xj7d";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/indent-tools";
- sha256 = "12rawl9qaihgyascy53yxpkknp95wh8fiqygb5cgl7d761qizvp6";
- name = "recipe";
- };
- packageRequires = [ hydra s yafolding ];
- meta = {
- homepage = "https://melpa.org/#/indent-tools";
- license = lib.licenses.free;
- };
- }) {};
- indicators = callPackage ({ cl-lib ? null
- , dash
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "indicators";
- ename = "indicators";
- version = "20161211.326";
- src = fetchFromGitHub {
- owner = "Fuco1";
- repo = "indicators.el";
- rev = "f62a1201f21453e3aca93f48483e65ae8251432e";
- sha256 = "0n933jigp0awba2hxg3kwscmfmmqn3jwbrxcw3vw9aj0a5rg5bq6";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/72c96bad0d0b5a4f738fd1b2afe5d302eded440d/recipes/indicators";
- sha256 = "1rhmz8sfi2gnv72sbw6kgyzidk43mnp05wnscw9vjvz9v0vwirss";
- name = "recipe";
- };
- packageRequires = [ cl-lib dash ];
- meta = {
- homepage = "https://melpa.org/#/indicators";
- license = lib.licenses.free;
- };
- }) {};
indium = callPackage ({ company
, emacs
, fetchFromGitHub
@@ -52687,31 +28390,6 @@
license = lib.licenses.free;
};
}) {};
- indy = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "indy";
- ename = "indy";
- version = "20150610.1006";
- src = fetchFromGitHub {
- owner = "kwrooijen";
- repo = "indy";
- rev = "faff56fda87bafed6a1e79dc3426800f256ed1a1";
- sha256 = "1p694bcg4g7qzngak6nshcrrnf7mxb8j2cf9yskcznwri1s064dd";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/e997b356b009b3d2ab467fe49b79d728a8cfe24b/recipes/indy";
- sha256 = "118n3n07h1vx576fdv6v5a94aa004q0gmy9hlsnrswpxa30ahnw7";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/indy";
- license = lib.licenses.free;
- };
- }) {};
inf-clojure = callPackage ({ clojure-mode
, emacs
, fetchFromGitHub
@@ -52766,31 +28444,6 @@
license = lib.licenses.free;
};
}) {};
- inf-mongo = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "inf-mongo";
- ename = "inf-mongo";
- version = "20180408.638";
- src = fetchFromGitHub {
- owner = "endofunky";
- repo = "inf-mongo";
- rev = "2e498d1c88bd1904eeec18ed06b1a0cf8bdc2a92";
- sha256 = "1m6skisj6r3fbxadpwwgf3a3934b2qvwb7zj975qksxq56ij0wkq";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/3416586d4d782cdd61a56159c5f80a0ca9b3ddf4/recipes/inf-mongo";
- sha256 = "0f12yb3dgkjnpr4d36jwfnncqzz7kl3bnnrmjw7hv223p2ryzwpx";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/inf-mongo";
- license = lib.licenses.free;
- };
- }) {};
inf-ruby = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -52798,12 +28451,12 @@
melpaBuild {
pname = "inf-ruby";
ename = "inf-ruby";
- version = "2.5.1";
+ version = "2.5.2";
src = fetchFromGitHub {
owner = "nonsequitur";
repo = "inf-ruby";
- rev = "81adadf0f98122b655d0c2bee9c8074d2b6a3ee2";
- sha256 = "1r452h6cyypqlc59q8dx5smkwhck4qjcg1pf9qdw539cpva5q77z";
+ rev = "d2cc45ac1a035286decb12c4f49c696ad5f03d27";
+ sha256 = "0a1hhvfbl6mq8rjsi77fg9fh5a91hi5scjrg9rjqc5ffbql67y0v";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/inf-ruby";
@@ -52843,32 +28496,6 @@
license = lib.licenses.free;
};
}) {};
- info-beamer = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "info-beamer";
- ename = "info-beamer";
- version = "20180604.1422";
- src = fetchFromGitHub {
- owner = "dakra";
- repo = "info-beamer.el";
- rev = "af443795af20481af91ac54a489b20f6a9d90b0a";
- sha256 = "0r938pp10szrqiv37ryzfir4h5pg68farm56cpnh9hh8cnix6nrh";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/e9da9aac33df6e53a8cbabcffd8e3a363298b9f3/recipes/info-beamer";
- sha256 = "0jlwvn96diwnngjbabq6wzp5q6rvmwa6p36d80nv8r7x7ch0740q";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/info-beamer";
- license = lib.licenses.free;
- };
- }) {};
info-buffer = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -52946,31 +28573,6 @@
license = lib.licenses.free;
};
}) {};
- ini-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "ini-mode";
- ename = "ini-mode";
- version = "20170424.209";
- src = fetchFromGitHub {
- owner = "Lindydancer";
- repo = "ini-mode";
- rev = "2194cfa2fd13196a37350ec20b3f00dcf6162b7c";
- sha256 = "0s3dcqywrbggrcn9j5nibhcl4xbnhdndz5sibcp26qswd18jyrdk";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/000cca577d000bafe7bf5711d0bfe7593fb6975a/recipes/ini-mode";
- sha256 = "0f6fbmg4wmlzghcibfbcx3z124b2017rhsasi5smgx9i2vkydzrm";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/ini-mode";
- license = lib.licenses.free;
- };
- }) {};
init-loader = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -53047,57 +28649,6 @@
license = lib.licenses.free;
};
}) {};
- ink-mode = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "ink-mode";
- ename = "ink-mode";
- version = "20160814.416";
- src = fetchFromGitHub {
- owner = "Kungsgeten";
- repo = "ink-mode";
- rev = "e35f26abbaf8ea23c5aa0a0c7ef15334cdfb7b48";
- sha256 = "0ixqgk101gnm2q6f2bjk2pnqlrj41krqz56lss6fmf81xhxavmpp";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/ink-mode";
- sha256 = "02q95xay6z56i4l0j24dszxnfpjbxijlj4150nsadbv55m7nnjcf";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/ink-mode";
- license = lib.licenses.free;
- };
- }) {};
- inkpot-theme = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "inkpot-theme";
- ename = "inkpot-theme";
- version = "20181118.2306";
- src = fetchFromGitHub {
- owner = "ideasman42";
- repo = "emacs-inkpot-theme";
- rev = "054c125b49247a08af5a391992817776fd0e8af6";
- sha256 = "06g4xsirag4gjd9khii4yhca29g5z9507lyyxxk35k36ckarg07i";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/dd3e02aaf8865d8038b9c590c8545e7a1b21d620/recipes/inkpot-theme";
- sha256 = "1m3iygb8vbqcnsxsnwr7g2mq1n2a9r7qxp3pgm1fpwz1lngvaagf";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/inkpot-theme";
- license = lib.licenses.free;
- };
- }) {};
inline-crypt = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -53123,32 +28674,6 @@
license = lib.licenses.free;
};
}) {};
- inline-docs = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "inline-docs";
- ename = "inline-docs";
- version = "20170522.2150";
- src = fetchFromGitHub {
- owner = "stardiviner";
- repo = "inline-docs.el";
- rev = "b57f1681be6147f999cdc12abff414a0442e8897";
- sha256 = "0ji8qgscs4fxp2i29l3v8z9y6i2glga6bysbcsn855pqsn00xkcv";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/inline-docs";
- sha256 = "1imjcx4qgrs5llindgmnvkb73fagnlxfg04s72kckgcy47c4352p";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/inline-docs";
- license = lib.licenses.free;
- };
- }) {};
inlineR = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -53199,55 +28724,6 @@
license = lib.licenses.free;
};
}) {};
- insfactor = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "insfactor";
- ename = "insfactor";
- version = "20141116.1602";
- src = fetchFromGitHub {
- owner = "duelinmarkers";
- repo = "insfactor.el";
- rev = "7ef5446cebb08a17d4106d2e6f3c053e49e1e829";
- sha256 = "112s3c0ii8zjc6vlj2im2qd2pl3hb95pq4zibm86gjpw428wd8iy";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/c9a76a6498c2a0b0d471d3df7ae3d510d027f08c/recipes/insfactor";
- sha256 = "0c6q1d864qc78sqk9iadjpd01xc7myipgnf89pqa2z75yprndvyn";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/insfactor";
- license = lib.licenses.free;
- };
- }) {};
- instapaper = callPackage ({ fetchhg
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "instapaper";
- ename = "instapaper";
- version = "20130104.621";
- src = fetchhg {
- url = "https://bitbucket.com/jfm/emacs-instapaper";
- rev = "8daa0058ede7";
- sha256 = "0krscid3yz2b7kv75gd9fs92zgfl7pnl77dbp5gycv5rmw5mivp8";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5b7972602399f9df9139cff177e38653bb0f43ed/recipes/instapaper";
- sha256 = "1yibdpj3lx6vr33s75s1y415lxqljrk7pqc901f8nfa01kca7axn";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/instapaper";
- license = lib.licenses.free;
- };
- }) {};
intel-hex-mode = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -53298,32 +28774,6 @@
license = lib.licenses.free;
};
}) {};
- interaction-log = callPackage ({ cl-lib ? null
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "interaction-log";
- ename = "interaction-log";
- version = "20160305.501";
- src = fetchFromGitHub {
- owner = "michael-heerdegen";
- repo = "interaction-log.el";
- rev = "0f2d773269d1f7b93c9281226719113f5410cbd0";
- sha256 = "0mvhydb4lfm2kazmb7fab8zh7sd8l9casghn8wl42mqji3v7lfwh";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/b72951c339c601350a7f10aee05a7fb94bac37ea/recipes/interaction-log";
- sha256 = "1r9qbvgssc2zdwgwmmwv5kapvmg1y3px7268gkiakkfanw3kqk6j";
- name = "recipe";
- };
- packageRequires = [ cl-lib ];
- meta = {
- homepage = "https://melpa.org/#/interaction-log";
- license = lib.licenses.free;
- };
- }) {};
interleave = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -53378,214 +28828,6 @@
license = lib.licenses.free;
};
}) {};
- interval-list = callPackage ({ cl-lib ? null
- , dash
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "interval-list";
- ename = "interval-list";
- version = "20150327.1018";
- src = fetchFromGitHub {
- owner = "Fuco1";
- repo = "interval-list";
- rev = "38af7ecf0a493ad8f487074938a2a115f3531177";
- sha256 = "1zv6m24ryls9hvla3hf8wzp6r7fzbxa1lzr1mb0wz0s292l38wjz";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/afee0fed80f4fa444116b12653c034d760f5f1fb/recipes/interval-list";
- sha256 = "0926z3lxkmpxalpq7hj355cjzbgpdiw7z4s8xdrpa1pi818d35zf";
- name = "recipe";
- };
- packageRequires = [ cl-lib dash emacs ];
- meta = {
- homepage = "https://melpa.org/#/interval-list";
- license = lib.licenses.free;
- };
- }) {};
- interval-tree = callPackage ({ dash
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "interval-tree";
- ename = "interval-tree";
- version = "20130325.707";
- src = fetchFromGitHub {
- owner = "Fuco1";
- repo = "interval-tree";
- rev = "301302f480617091cf3ab6989caac385d52543dc";
- sha256 = "0fqnn9xhrc9hkaiziafjgg288l6m05416z9kz8l5845fnqsb7pb3";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/ca0f4b62aee7ff7c4457da29fd25860a5c768319/recipes/interval-tree";
- sha256 = "13zynac3h50x68f1ja72kqdrapjks2zmgqd4g7qwscq92mmh60i9";
- name = "recipe";
- };
- packageRequires = [ dash ];
- meta = {
- homepage = "https://melpa.org/#/interval-tree";
- license = lib.licenses.free;
- };
- }) {};
- inverse-acme-theme = callPackage ({ autothemer
- , cl-lib ? null
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "inverse-acme-theme";
- ename = "inverse-acme-theme";
- version = "20170822.1954";
- src = fetchFromGitHub {
- owner = "dcjohnson";
- repo = "inverse-acme-theme";
- rev = "74d6f3e2f6534371509dd2d77006435156c276d6";
- sha256 = "15fk60ky8kbj665yjylmgc4nn4qsk57fvarqzwv3fns64yfshkv3";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1c44dbc8d3ca29d8715af755b845af7236e95406/recipes/inverse-acme-theme";
- sha256 = "03g6h8dpn42qnr593ryhj22lj1h2nx4rdr1knhkvxygfv3c4lgh5";
- name = "recipe";
- };
- packageRequires = [ autothemer cl-lib ];
- meta = {
- homepage = "https://melpa.org/#/inverse-acme-theme";
- license = lib.licenses.free;
- };
- }) {};
- io-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "io-mode";
- ename = "io-mode";
- version = "20161004.56";
- src = fetchFromGitHub {
- owner = "superbobry";
- repo = "io-mode";
- rev = "fd65ae769093defcf554d6d637eba6e6dfc29f56";
- sha256 = "1x3j4asbczfr9vrqd7bms57ngqzaik73sm2njcgjshf9c3js3aa9";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/29ac993c86f992a452784c75c1511d15c4718c91/recipes/io-mode";
- sha256 = "1fpiml7lvbl4s2xw4wk2y10iifvfza24kd9j8qvi1bgd85qkx42q";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/io-mode";
- license = lib.licenses.free;
- };
- }) {};
- io-mode-inf = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "io-mode-inf";
- ename = "io-mode-inf";
- version = "20140128.1134";
- src = fetchFromGitHub {
- owner = "slackorama";
- repo = "io-emacs";
- rev = "6dd2bac3fd87484bb7d97e135b06c29d70b444b6";
- sha256 = "1ard88kc13c57y9zdkyr012w8rdrwahz8a3fb5v6hwqymg16m20s";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/df121fc9f71af1d060c83555ec611c422cbe8d0d/recipes/io-mode-inf";
- sha256 = "0hwhvf1qwkmzzlzdda1flw6p1jjh9rzxsfwm2sc4795ac2xm6dhc";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/io-mode-inf";
- license = lib.licenses.free;
- };
- }) {};
- ioccur = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "ioccur";
- ename = "ioccur";
- version = "20130821.2248";
- src = fetchFromGitHub {
- owner = "thierryvolpiatto";
- repo = "ioccur";
- rev = "2e4f83ba72bc7d0225606176de2ef7a970ca301c";
- sha256 = "111rrn1l2k40bfpcf6d9n06vhlhxhv3718kgd40ksrqz97pzq0dx";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/308c27227795560adf8c979ba1d046286549843d/recipes/ioccur";
- sha256 = "1a9iy6x4lkm4wgkcb0pv86c2kvpq8ymrc4ssp109r67kwqw7lrr6";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/ioccur";
- license = lib.licenses.free;
- };
- }) {};
- iodine-theme = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "iodine-theme";
- ename = "iodine-theme";
- version = "20151031.939";
- src = fetchFromGitHub {
- owner = "srdja";
- repo = "iodine-theme";
- rev = "02fb780e1d8d8a6b9c709bfac399abe1665c6999";
- sha256 = "14zfxa8fc7h4rkz1hyplwf4q2lga3l5dd7a2xq5kk0kvf2fs4mk3";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/6893ce6309f1e3b3457c99e84611044e653b827a/recipes/iodine-theme";
- sha256 = "05mnq0bgcla0pxsgywpvcdgd4sk2xr7bjlp87l0dx8j121vqripj";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/iodine-theme";
- license = lib.licenses.free;
- };
- }) {};
- ipcalc = callPackage ({ cl-lib ? null
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "ipcalc";
- ename = "ipcalc";
- version = "20170926.105";
- src = fetchFromGitHub {
- owner = "dotemacs";
- repo = "ipcalc.el";
- rev = "2720f7e3e662e04e195f8338b81a499cf321296a";
- sha256 = "1kmqbb9ca3sca59462ha21grbgxkl4wynz2lr4yqb4qk7cijgd6g";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/ipcalc";
- sha256 = "0hw5g30pnqwzvbhf6kggyj6wij5iw7d8jgmr88pyw63kxach8vkv";
- name = "recipe";
- };
- packageRequires = [ cl-lib ];
- meta = {
- homepage = "https://melpa.org/#/ipcalc";
- license = lib.licenses.free;
- };
- }) {};
iplayer = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -53611,30 +28853,6 @@
license = lib.licenses.free;
};
}) {};
- ipretty = callPackage ({ fetchgit
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "ipretty";
- ename = "ipretty";
- version = "20180605.2222";
- src = fetchgit {
- url = "https://framagit.org/steckerhalter/ipretty.git";
- rev = "042f5cc4e6f81d59115e8335c582bb5c571c2585";
- sha256 = "0vk8k4zfqa0869fg1kzbzzgz65xg7six5m4jm8088pb2nvfn1lrr";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/f0a8eb0eefe88b4ea683a4743c0f8393506e014b/recipes/ipretty";
- sha256 = "0nlp7xmgqsipdq8xjld0xpw3q3qlxm31r2k52hxs32rx044y6c71";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/ipretty";
- license = lib.licenses.free;
- };
- }) {};
ipython-shell-send = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -53661,32 +28879,6 @@
license = lib.licenses.free;
};
}) {};
- iqa = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "iqa";
- ename = "iqa";
- version = "20181024.1553";
- src = fetchFromGitHub {
- owner = "a13";
- repo = "iqa.el";
- rev = "b45614f5204ed851de0abe93907aa94de5e37379";
- sha256 = "11wrmiwlp91x59cn9k2j2pqgvzbrnzvf81dqgm9l5ph5fym0jqsd";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/a9bd2e952d98f7ac2dc823581b07b65e951e9e45/recipes/iqa";
- sha256 = "02yrkizk4ssip44s6r62finsrf45hxj9cpil1xrvh8g4jbsmfsw4";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/iqa";
- license = lib.licenses.free;
- };
- }) {};
ir-black-theme = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -53712,31 +28904,6 @@
license = lib.licenses.free;
};
}) {};
- iregister = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "iregister";
- ename = "iregister";
- version = "20150515.1407";
- src = fetchFromGitHub {
- owner = "atykhonov";
- repo = "iregister.el";
- rev = "6a48c66187289de5f300492be11c83e98410c018";
- sha256 = "1ch610b3d0x3nxglp749305syliivamc108rgv9if4ihb67gp8b5";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/a12a51873444b84765758e18c9cf24d85a200e44/recipes/iregister";
- sha256 = "0iq1nlj5czi4nblrszfv3grkl1fni7blh8bhcfccidms8v9r3mdm";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/iregister";
- license = lib.licenses.free;
- };
- }) {};
irony = callPackage ({ cl-lib ? null
, fetchFromGitHub
, fetchurl
@@ -53764,110 +28931,6 @@
license = lib.licenses.free;
};
}) {};
- irony-eldoc = callPackage ({ cl-lib ? null
- , emacs
- , fetchFromGitHub
- , fetchurl
- , irony
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "irony-eldoc";
- ename = "irony-eldoc";
- version = "20170502.1208";
- src = fetchFromGitHub {
- owner = "ikirill";
- repo = "irony-eldoc";
- rev = "0df5831eaae264a25422b061eb2792aadde8b3f2";
- sha256 = "1l5qpr66v1l12fb50yh73grb2rr85xxmbj19mm33b5rdrq2bqmmd";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/fc42459d5c1671bd478d781339f2572b3de2e7d0/recipes/irony-eldoc";
- sha256 = "03m0h13jd37vfvn4mavaq3vbzx4x0lklbs0mbc29zaz8pwqlcwz6";
- name = "recipe";
- };
- packageRequires = [ cl-lib emacs irony ];
- meta = {
- homepage = "https://melpa.org/#/irony-eldoc";
- license = lib.licenses.free;
- };
- }) {};
- isearch-dabbrev = callPackage ({ cl-lib ? null
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "isearch-dabbrev";
- ename = "isearch-dabbrev";
- version = "20141223.2222";
- src = fetchFromGitHub {
- owner = "Dewdrops";
- repo = "isearch-dabbrev";
- rev = "1efe7abba4923015cbc2462395deaec5446a9cc8";
- sha256 = "17d0816awadvsw1qc7r0p6ira75jmgxaj9hsk9ypayxsaf6ynyrb";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/b9dfc7c1112bac8744910c58f77a98a901fd8065/recipes/isearch-dabbrev";
- sha256 = "1hl7zl5vjcsk3z452874g4nfcnmna8m2242dc9cgpl5jddzwqa7x";
- name = "recipe";
- };
- packageRequires = [ cl-lib ];
- meta = {
- homepage = "https://melpa.org/#/isearch-dabbrev";
- license = lib.licenses.free;
- };
- }) {};
- isearch-symbol-at-point = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "isearch-symbol-at-point";
- ename = "isearch-symbol-at-point";
- version = "20130728.1521";
- src = fetchFromGitHub {
- owner = "re5et";
- repo = "isearch-symbol-at-point";
- rev = "51a1029bec1ec414885f9edb7e5947603dffdab2";
- sha256 = "09z49850c32x0rchxg203cxg504xi2b6cjgnd0i4axcs5fmq7gv9";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5733de00a1800645674e83c5e21c80f2890c4e7c/recipes/isearch-symbol-at-point";
- sha256 = "0j5fr7qdvpd5b096h5a83fz8sh9wybdnsgix6v94gv8lkzdsqkr8";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/isearch-symbol-at-point";
- license = lib.licenses.free;
- };
- }) {};
- isend-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "isend-mode";
- ename = "isend-mode";
- version = "20190201.32";
- src = fetchFromGitHub {
- owner = "ffevotte";
- repo = "isend-mode.el";
- rev = "94184d5eb4a7f96e60351d2580eb0d20f22ab72d";
- sha256 = "1wn7ji76pp2xpfh4yiayll5b0wlfxkb11bgk24hpx22bhjnw3ivj";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/8ef6e4dab78a4c333647a85ed07a81da8083ec0c/recipes/isend-mode";
- sha256 = "0sk80a08ny9vqw94klqfgii297qm633000wlcldha76ip8viikdv";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/isend-mode";
- license = lib.licenses.free;
- };
- }) {};
isgd = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -53919,109 +28982,6 @@
license = lib.licenses.free;
};
}) {};
- isortify = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , pythonic }:
- melpaBuild {
- pname = "isortify";
- ename = "isortify";
- version = "20190315.1304";
- src = fetchFromGitHub {
- owner = "proofit404";
- repo = "isortify";
- rev = "4d8ecfcadf58ea51368e66ecf6f2a95a95953fcf";
- sha256 = "0gslib1r9d9dqd9r89dfg8npkybjw2bjdrbs0z2qcnfa82x4fq4z";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/9d4ad18492e7f4a56a1515873bc0b66fa49829bb/recipes/isortify";
- sha256 = "0nlpjd6mrhv8iccdny0x5lb41dpyp6l7kiax4xqra0rb2vq0chcs";
- name = "recipe";
- };
- packageRequires = [ emacs pythonic ];
- meta = {
- homepage = "https://melpa.org/#/isortify";
- license = lib.licenses.free;
- };
- }) {};
- iss-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "iss-mode";
- ename = "iss-mode";
- version = "20141001.1213";
- src = fetchFromGitHub {
- owner = "rasmus-toftdahl-olesen";
- repo = "iss-mode";
- rev = "3b517aff31529bab33f8d7b562bd17aff0107fd1";
- sha256 = "0992lzgar0kz9i1sk5vz17q9qzfgl8fkyxa1q0hmhgnpjf503cnj";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/ecc9f618b9f065f593b91c1c1221a550ab752bae/recipes/iss-mode";
- sha256 = "1my4vi1x07hg0dva97i685lx6m6fcbfk16j1zy93zriyd7z5plkc";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/iss-mode";
- license = lib.licenses.free;
- };
- }) {};
- itail = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "itail";
- ename = "itail";
- version = "20171112.4";
- src = fetchFromGitHub {
- owner = "re5et";
- repo = "itail";
- rev = "6e43c20da03be3b9c6ece93b7dc3495975ec1888";
- sha256 = "044nzxh1hq41faxw3lix0wy78vfz304pjcaa5a11dqfz7q3gx5cv";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/6b810bf1deeb79064144d8b684fab336686018ef/recipes/itail";
- sha256 = "0mcyly88a3c15hl3wll56agpdsyvd26r501h0v64lasfr4k634m7";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/itail";
- license = lib.licenses.free;
- };
- }) {};
- itasca = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "itasca";
- ename = "itasca";
- version = "20170601.922";
- src = fetchFromGitHub {
- owner = "jkfurtney";
- repo = "itasca-emacs";
- rev = "3d15dd1b70d6db69b0f4758a3e28b8b506cc84ca";
- sha256 = "0mfcl7ka7r5mx52xvf13i3799ddkdi9sq2q4p2rkgb96r37ia221";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/itasca";
- sha256 = "0j0lvs9x2j3z5yyhbgmymccswi40vv1gz3sl56bl857m1hlxzshz";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/itasca";
- license = lib.licenses.free;
- };
- }) {};
iter2 = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -54048,88 +29008,6 @@
license = lib.licenses.free;
};
}) {};
- iterator = callPackage ({ cl-lib ? null
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "iterator";
- ename = "iterator";
- version = "20170207.38";
- src = fetchFromGitHub {
- owner = "thierryvolpiatto";
- repo = "iterator";
- rev = "9da54f9aed945b46866782cdf962c9e530419297";
- sha256 = "0r50hdyr9s18p7ggiyv36g011jgg47bgszvjgcmpp23rz131mxyw";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/66aa4c3b43083a0098ee3163005dcc36d7251146/recipes/iterator";
- sha256 = "17q10fw6y0icsv6vv9n968bwmbjlihrpkkyw62d1kfxhs9yw659z";
- name = "recipe";
- };
- packageRequires = [ cl-lib emacs ];
- meta = {
- homepage = "https://melpa.org/#/iterator";
- license = lib.licenses.free;
- };
- }) {};
- ivariants = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , ivs-edit
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "ivariants";
- ename = "ivariants";
- version = "20170822.1924";
- src = fetchFromGitHub {
- owner = "kawabata";
- repo = "emacs-ivariants";
- rev = "ca0b74d32b5d2d77a45cc6ad6edc00be0ee85284";
- sha256 = "16hygfx9gla6yhc3kaiy4m6g910m1hak3v86fnpf12kzvjjs9zfx";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/ca17de8cdd53bb32a9d3faaeb38f19f92b18ee38/recipes/ivariants";
- sha256 = "00fgcm62g4fw4306lw9ld2k7w0c358fcbkxn969k5p009g7pk5bw";
- name = "recipe";
- };
- packageRequires = [ emacs ivs-edit ];
- meta = {
- homepage = "https://melpa.org/#/ivariants";
- license = lib.licenses.free;
- };
- }) {};
- ivs-edit = callPackage ({ cl-lib ? null
- , dash
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "ivs-edit";
- ename = "ivs-edit";
- version = "20170818.741";
- src = fetchFromGitHub {
- owner = "kawabata";
- repo = "ivs-edit";
- rev = "5db39c234aa7393b591168a4fd0a9a4cbbca347d";
- sha256 = "1sdl83cf87zbv0ynvb6qlgbpm4d3dqhdn84jhhs5j247r5qzhmz6";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/ca17de8cdd53bb32a9d3faaeb38f19f92b18ee38/recipes/ivs-edit";
- sha256 = "0gzhvzrfk17j2vwlg82f5ifk4dcfc1yv7barcij38ckran8cqmb2";
- name = "recipe";
- };
- packageRequires = [ cl-lib dash emacs ];
- meta = {
- homepage = "https://melpa.org/#/ivs-edit";
- license = lib.licenses.free;
- };
- }) {};
ivy = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -54327,35 +29205,6 @@
license = lib.licenses.free;
};
}) {};
- ivy-historian = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , flx
- , historian
- , ivy
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "ivy-historian";
- ename = "ivy-historian";
- version = "20190110.1913";
- src = fetchFromGitHub {
- owner = "PythonNut";
- repo = "historian.el";
- rev = "64f4ef8cd4e417dfa090138a2d4ea1e72fd4456a";
- sha256 = "0py43kml7fcf1k28pali7n9nhsjp003j02cpynqcz6hmk8zr7b48";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/fb79cbc9af6cd443b9de97817d24bcc9050d5940/recipes/ivy-historian";
- sha256 = "0yzq3rr51q5d64pfc7x5jszz77x6nwpbjj0g74x5ga3bsw3i67d9";
- name = "recipe";
- };
- packageRequires = [ emacs flx historian ivy ];
- meta = {
- homepage = "https://melpa.org/#/ivy-historian";
- license = lib.licenses.free;
- };
- }) {};
ivy-hydra = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -54384,33 +29233,6 @@
license = lib.licenses.free;
};
}) {};
- ivy-lobsters = callPackage ({ cl-lib ? null
- , fetchFromGitHub
- , fetchurl
- , ivy
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "ivy-lobsters";
- ename = "ivy-lobsters";
- version = "20171202.1241";
- src = fetchFromGitHub {
- owner = "julienXX";
- repo = "ivy-lobsters";
- rev = "4364df4b3685fd1b50865ac9360fb948c0288dd1";
- sha256 = "1cfcy2ks0kb04crwlfp02052zcwg384cgz7xjyafwqynm77d35l0";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/d9774fbf133ce8db3ce996b1a40c586309a2fec6/recipes/ivy-lobsters";
- sha256 = "1g8bwlh4nls21k16r1pmqmb633j19h3jnjbfl2vixyrh2na8ff1w";
- name = "recipe";
- };
- packageRequires = [ cl-lib ivy ];
- meta = {
- homepage = "https://melpa.org/#/ivy-lobsters";
- license = lib.licenses.free;
- };
- }) {};
ivy-mpdel = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -54440,34 +29262,6 @@
license = lib.licenses.free;
};
}) {};
- ivy-omni-org = callPackage ({ dash
- , emacs
- , fetchFromGitHub
- , fetchurl
- , ivy
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "ivy-omni-org";
- ename = "ivy-omni-org";
- version = "20190308.1936";
- src = fetchFromGitHub {
- owner = "akirak";
- repo = "ivy-omni-org";
- rev = "ab18ca56759aa3428ca017da223dd2eb17feb078";
- sha256 = "1c5mk3dbbjan3fh5sy03dhhdmjawbrnqdf6m1sdkpv379hf9py2f";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/4eaad7323462d6c7fd343ede0d2df8c67885e542/recipes/ivy-omni-org";
- sha256 = "1mxdglp0frplv75bik2fl2ybbl0yqfd5r70alcgx1zmba18kaj20";
- name = "recipe";
- };
- packageRequires = [ dash emacs ivy ];
- meta = {
- homepage = "https://melpa.org/#/ivy-omni-org";
- license = lib.licenses.free;
- };
- }) {};
ivy-pages = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -54495,90 +29289,6 @@
license = lib.licenses.free;
};
}) {};
- ivy-pass = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , ivy
- , lib
- , melpaBuild
- , password-store }:
- melpaBuild {
- pname = "ivy-pass";
- ename = "ivy-pass";
- version = "20170812.1255";
- src = fetchFromGitHub {
- owner = "ecraven";
- repo = "ivy-pass";
- rev = "5b523de1151f2109fdd6a8114d0af12eef83d3c5";
- sha256 = "18crb4zh2pjf0cmv3b913m9vfng27girjwfqc3mk7vqd1r5a49yk";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/7bfef855e071442d2b9d1e0ce9b5706937bffc53/recipes/ivy-pass";
- sha256 = "1sb29q22fsjqfxqznf73xcqhzy132bjd45w7r27sfmf825vcysci";
- name = "recipe";
- };
- packageRequires = [ emacs ivy password-store ];
- meta = {
- homepage = "https://melpa.org/#/ivy-pass";
- license = lib.licenses.free;
- };
- }) {};
- ivy-phpunit = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , ivy
- , lib
- , melpaBuild
- , phpunit }:
- melpaBuild {
- pname = "ivy-phpunit";
- ename = "ivy-phpunit";
- version = "20180219.115";
- src = fetchFromGitHub {
- owner = "12pt";
- repo = "ivy-phpunit";
- rev = "ffedb0138d36564e8e36a28fd9bc71ea8944681f";
- sha256 = "0kf1k3jqg2r20x985h6brg92sg7y47c5vkfjky8xp11gqyqw47bi";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/93822c5588f81683e3d43f690785b80c207d331d/recipes/ivy-phpunit";
- sha256 = "1spvcf41lvjdmiwp6058wrpp0hfg1cjld6b7zm28m2ys6mn35ycs";
- name = "recipe";
- };
- packageRequires = [ emacs ivy phpunit ];
- meta = {
- homepage = "https://melpa.org/#/ivy-phpunit";
- license = lib.licenses.free;
- };
- }) {};
- ivy-posframe = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , ivy
- , lib
- , melpaBuild
- , posframe }:
- melpaBuild {
- pname = "ivy-posframe";
- ename = "ivy-posframe";
- version = "20190407.544";
- src = fetchFromGitHub {
- owner = "tumashu";
- repo = "ivy-posframe";
- rev = "3aabf14e24c407c39ee5af85e18cb26f1f157af5";
- sha256 = "04pv0mcl69cys7lcsyr1ms45wjq5xcq9q23d5r351h8qn3q4bcwf";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/9e7c6f7ca439683abf11dcaa38672ac139c0da4f/recipes/ivy-posframe";
- sha256 = "1sv4xvdvb1g8g5m4f1f159lxbxaz96drsmvhh0k43hp1dh3bhj3b";
- name = "recipe";
- };
- packageRequires = [ emacs ivy posframe ];
- meta = {
- homepage = "https://melpa.org/#/ivy-posframe";
- license = lib.licenses.free;
- };
- }) {};
ivy-prescient = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -54689,146 +29399,6 @@
license = lib.licenses.free;
};
}) {};
- ivy-todo = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , ivy
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "ivy-todo";
- ename = "ivy-todo";
- version = "20171208.809";
- src = fetchFromGitHub {
- owner = "Kungsgeten";
- repo = "ivy-todo";
- rev = "964e347cea1a6097854d7113f5b07f6c5ef81df0";
- sha256 = "07208qdk1a77dgh9qmpn164x5mgkzvprsdvb7y35ax12r2q541b8";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/e608f40d00a3b2a80a6997da00e7d04f76d8ef0d/recipes/ivy-todo";
- sha256 = "06mn430zkisnqrmad81gn88pl7lz0m8rm1yvpngpakwwnhwm0q96";
- name = "recipe";
- };
- packageRequires = [ emacs ivy ];
- meta = {
- homepage = "https://melpa.org/#/ivy-todo";
- license = lib.licenses.free;
- };
- }) {};
- ivy-xcdoc = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , ivy
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "ivy-xcdoc";
- ename = "ivy-xcdoc";
- version = "20160917.355";
- src = fetchFromGitHub {
- owner = "hex2010";
- repo = "emacs-ivy-xcdoc";
- rev = "fbf264b0746182567b17fd7409fff8eed3658c71";
- sha256 = "1y55p3qaz054lxb7q8vq00h3spyfbc9xnilm26b4vcps5y0limp6";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/d2fd855c098ca65293d84c3b526b0c39f7b07ade/recipes/ivy-xcdoc";
- sha256 = "1my45325ys2m2l5y8pmi5jnbplqm16b1n7zll37163vv16zwnd53";
- name = "recipe";
- };
- packageRequires = [ emacs ivy ];
- meta = {
- homepage = "https://melpa.org/#/ivy-xcdoc";
- license = lib.licenses.free;
- };
- }) {};
- ivy-xref = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , ivy
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "ivy-xref";
- ename = "ivy-xref";
- version = "20180821.511";
- src = fetchFromGitHub {
- owner = "alexmurray";
- repo = "ivy-xref";
- rev = "61864f82e554121be0a26ba0a1d8f48b669dd5f0";
- sha256 = "0cgl8lzw0rzswqsl8wk6b39bm2781mwvz3qwm06r2n3kjy7c79b4";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/a4cd8724e8a4119b61950a97b88219bf56ce3945/recipes/ivy-xref";
- sha256 = "1p5a0x83b0bc7b654j1d207s7vifffgwmp26pya2mz0czd68ywy8";
- name = "recipe";
- };
- packageRequires = [ emacs ivy ];
- meta = {
- homepage = "https://melpa.org/#/ivy-xref";
- license = lib.licenses.free;
- };
- }) {};
- ivy-yasnippet = callPackage ({ cl-lib ? null
- , dash
- , emacs
- , fetchFromGitHub
- , fetchurl
- , ivy
- , lib
- , melpaBuild
- , yasnippet }:
- melpaBuild {
- pname = "ivy-yasnippet";
- ename = "ivy-yasnippet";
- version = "20181002.955";
- src = fetchFromGitHub {
- owner = "mkcms";
- repo = "ivy-yasnippet";
- rev = "32580b4fd23ebf9ca7dde96704f7d53df6e253cd";
- sha256 = "1wfg6mmd5gl1qgvayyzpxlkh9s7jgn20y8l1vh1zbj1czvv51xp8";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/8c76857d716afab46f5efe46e353935921d5f217/recipes/ivy-yasnippet";
- sha256 = "180q6hrsnkssbf9x9bj74dyy26kym4akbsjlj81x4193nnmc5w67";
- name = "recipe";
- };
- packageRequires = [ cl-lib dash emacs ivy yasnippet ];
- meta = {
- homepage = "https://melpa.org/#/ivy-yasnippet";
- license = lib.licenses.free;
- };
- }) {};
- ivy-ycmd = callPackage ({ dash
- , emacs
- , fetchFromGitHub
- , fetchurl
- , ivy
- , lib
- , melpaBuild
- , ycmd }:
- melpaBuild {
- pname = "ivy-ycmd";
- ename = "ivy-ycmd";
- version = "20180909.525";
- src = fetchFromGitHub {
- owner = "abingham";
- repo = "emacs-ivy-ycmd";
- rev = "25bfee8f676e4ecbb645e4f30b47083410a00c58";
- sha256 = "1ywrkx8ddncy4qhv5gh4qf1cpapyvny42i51p91j9ip7xmihy6lm";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/22e925d1b66f53d25eb1b3a2746dea82e8555783/recipes/ivy-ycmd";
- sha256 = "0vlf75qv9m84gx83rxz0acnlx5lspq92d94q82ba2p4cc6yjyvj3";
- name = "recipe";
- };
- packageRequires = [ dash emacs ivy ycmd ];
- meta = {
- homepage = "https://melpa.org/#/ivy-ycmd";
- license = lib.licenses.free;
- };
- }) {};
ivy-youtube = callPackage ({ cl-lib ? null
, fetchFromGitHub
, fetchurl
@@ -54933,83 +29503,6 @@
license = lib.licenses.free;
};
}) {};
- jabber = callPackage ({ fetchgit
- , fetchurl
- , fsm
- , lib
- , melpaBuild
- , srv }:
- melpaBuild {
- pname = "jabber";
- ename = "jabber";
- version = "20180927.1625";
- src = fetchgit {
- url = "https://github.com/legoscia/emacs-jabber.git";
- rev = "fff33826f42e040dad7ef64ea312d85215d3b0a1";
- sha256 = "1fif38qhiaxskfmqin82n9334bzrkgd1h5ip1djcm571i670gj74";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/ef7dbf3c2ffee5a4d71466ce037c618e0434a346/recipes/jabber";
- sha256 = "04d2jdzs3c790ms70px8xvyip1liqvd3jy2mbs8qqbwyiccb74xx";
- name = "recipe";
- };
- packageRequires = [ fsm srv ];
- meta = {
- homepage = "https://melpa.org/#/jabber";
- license = lib.licenses.free;
- };
- }) {};
- jabber-otr = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , jabber
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "jabber-otr";
- ename = "jabber-otr";
- version = "20150918.444";
- src = fetchFromGitHub {
- owner = "legoscia";
- repo = "emacs-jabber-otr";
- rev = "2692b1530234e0ba9a0d6c1eaa1cbe8679f193c0";
- sha256 = "0yv86nadp6dfzl05vhk8c1kahg2pcrhfmd3mnfjrngp7ksac5lyf";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/9219f685c18c8e799cae3dc43cc1c740c0f67733/recipes/jabber-otr";
- sha256 = "114z5bwhkza03yvfa4nmicaih2jdq83lh6micxjimpddsc8fjgi0";
- name = "recipe";
- };
- packageRequires = [ emacs jabber ];
- meta = {
- homepage = "https://melpa.org/#/jabber-otr";
- license = lib.licenses.free;
- };
- }) {};
- jack-connect = callPackage ({ fetchgit
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "jack-connect";
- ename = "jack-connect";
- version = "20190311.1220";
- src = fetchgit {
- url = "https://bitbucket.org/sbarbit/jack-connect";
- rev = "3be5f03ba39ffab65e974cf1624cf38588639dcb";
- sha256 = "1lb7z060jrbr0ijzif5p3qg70lg21h1a6jyzyfqfhwf2iwa3mkcj";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/c0f5c5f8051f3046baebb08f41b0ca0bf0d73c85/recipes/jack-connect";
- sha256 = "1ssl126wihaf8m2f6ms0l5ai6pz5wn348a09k6l0h3jfww032g1q";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/jack-connect";
- license = lib.licenses.free;
- };
- }) {};
jade-mode = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -55060,32 +29553,6 @@
license = lib.licenses.free;
};
}) {};
- japanese-holidays = callPackage ({ cl-lib ? null
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "japanese-holidays";
- ename = "japanese-holidays";
- version = "20190317.520";
- src = fetchFromGitHub {
- owner = "emacs-jp";
- repo = "japanese-holidays";
- rev = "f04662cf1e96a2ef9fd7be43e9723fe355025d50";
- sha256 = "0zlmr48wpccd1y5xxyzfrc1n7g7j3pjnhx7v0ms57plk9wbz1yp2";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/80088028a1322e99e5fc50bebe08fcb6d1a2a44d/recipes/japanese-holidays";
- sha256 = "0pxpkikkn2ys0kgf3lbrdxv8iym50h5ik2xzza0qk7cw1v93jza9";
- name = "recipe";
- };
- packageRequires = [ cl-lib ];
- meta = {
- homepage = "https://melpa.org/#/japanese-holidays";
- license = lib.licenses.free;
- };
- }) {};
japanlaw = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -55111,107 +29578,6 @@
license = lib.licenses.free;
};
}) {};
- jape-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "jape-mode";
- ename = "jape-mode";
- version = "20140903.806";
- src = fetchFromGitHub {
- owner = "tanzoniteblack";
- repo = "jape-mode";
- rev = "27dbebc4de93eb887038fda7a11671349efe8dbb";
- sha256 = "0bnh5jvqjwrd5wqh1gvbx2z7sjczf8cvah9y58c2v68ia5drxb3z";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/b034024bd31c4be96c478a951b0ef63d8f89a1b7/recipes/jape-mode";
- sha256 = "1gd685r86h0kr36msw81gfgwv7d35hihz6h0jkc6vd22wf6qc3ly";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/jape-mode";
- license = lib.licenses.free;
- };
- }) {};
- jar-manifest-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "jar-manifest-mode";
- ename = "jar-manifest-mode";
- version = "20160430.1726";
- src = fetchFromGitHub {
- owner = "omajid";
- repo = "jar-manifest-mode";
- rev = "270dae14c481300f75ed96dad3a5ae42ca928a1d";
- sha256 = "1p7w3hq2cyn1245q0zn8m7hpjs8nbp7kqfmd2gzi2k209czipy21";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/ed68a9120d4f1e2895606938d1a117fb01abd1bc/recipes/jar-manifest-mode";
- sha256 = "0kx358m3p23r8m7z45454i62ijmdlf4mljlbqc20jkihfanr6wqd";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/jar-manifest-mode";
- license = lib.licenses.free;
- };
- }) {};
- jasminejs-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "jasminejs-mode";
- ename = "jasminejs-mode";
- version = "20150526.1705";
- src = fetchFromGitHub {
- owner = "stoltene2";
- repo = "jasminejs-mode";
- rev = "23637d6718423d376eebbdaa4d6d914c7cab26ed";
- sha256 = "1p31x23cc1xjziydbphfh4pbv43703x2x0i2kz7a8c6hvka07lym";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/8e58e8c102f6110f9a8bda47a4601197db47e743/recipes/jasminejs-mode";
- sha256 = "1a70j3aglrwmaw9g8m99sxad2vs53y4swxh97gqjsgx1rrx03g52";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/jasminejs-mode";
- license = lib.licenses.free;
- };
- }) {};
- jastadd-ast-mode = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "jastadd-ast-mode";
- ename = "jastadd-ast-mode";
- version = "20161219.126";
- src = fetchFromGitHub {
- owner = "rudi";
- repo = "jastadd-ast-mode";
- rev = "a29fdb470cbf0a398164950a3b0d2217de48e0c0";
- sha256 = "01fv0ixkshy7i6wzcgq6xvijvh3n402vyhmh3qzjwi9p0vxvdyxv";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/32d59dd9e796438f1752d36a30d4e062abbb6dd1/recipes/jastadd-ast-mode";
- sha256 = "1cwqxzmqx5wxaax12rq0hy0whpaivqncykym43p3an2sl9s6ngva";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/jastadd-ast-mode";
- license = lib.licenses.free;
- };
- }) {};
java-imports = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -55240,32 +29606,6 @@
license = lib.licenses.free;
};
}) {};
- java-snippets = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , yasnippet }:
- melpaBuild {
- pname = "java-snippets";
- ename = "java-snippets";
- version = "20160626.1952";
- src = fetchFromGitHub {
- owner = "nekop";
- repo = "yasnippet-java-mode";
- rev = "738523debb1018439bda0ce70e00248154a600ac";
- sha256 = "0k9iq8f5ngx80r965hc9bzmaa7y4vwn4vx10v1v9f46h48kmsg0q";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/ec561bb8ee3d6df0d493c20497dd8c5897bf1e5e/recipes/java-snippets";
- sha256 = "0bsmp6sc3khdadkmwqy8khz8kzqijcsv70gimm2cs1kwnbyj6pfp";
- name = "recipe";
- };
- packageRequires = [ yasnippet ];
- meta = {
- homepage = "https://melpa.org/#/java-snippets";
- license = lib.licenses.free;
- };
- }) {};
javadoc-lookup = callPackage ({ cl-lib ? null
, fetchFromGitHub
, fetchurl
@@ -55292,108 +29632,6 @@
license = lib.licenses.free;
};
}) {};
- javap-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "javap-mode";
- ename = "javap-mode";
- version = "20120223.1408";
- src = fetchFromGitHub {
- owner = "hiredman";
- repo = "javap-mode";
- rev = "864c1130e204b2072e1d19cd027b6fce8ebe6629";
- sha256 = "070r4mg4v937n4h2bmzdbn3vsmmq7ijz69nankqs761jxv5gcwlg";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/009ce356c410d980613f21fa7c9f1c97ee9af76f/recipes/javap-mode";
- sha256 = "19p39l4nwgxm52yimy4j6l43845cpk8g5qdrldlwfxd7dvay09ay";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/javap-mode";
- license = lib.licenses.free;
- };
- }) {};
- jaword = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , tinysegmenter }:
- melpaBuild {
- pname = "jaword";
- ename = "jaword";
- version = "20170425.2327";
- src = fetchFromGitHub {
- owner = "zk-phi";
- repo = "jaword";
- rev = "a084558075f8892d61214aa21ff3663dd466cf4c";
- sha256 = "0vjim6a9hy6bkbiaggdljlkbga2gpyv89zrla8sdgw8s2yh8m8bl";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/00fe123ddc7fbcb9fd2b97e8a9fc8a8c5fabbf7f/recipes/jaword";
- sha256 = "05pzh99zfl8n3p6lxdd9abr52m24hqcb105458i1cy0ra840bf4d";
- name = "recipe";
- };
- packageRequires = [ tinysegmenter ];
- meta = {
- homepage = "https://melpa.org/#/jaword";
- license = lib.licenses.free;
- };
- }) {};
- jazz-theme = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "jazz-theme";
- ename = "jazz-theme";
- version = "20170411.711";
- src = fetchFromGitHub {
- owner = "donderom";
- repo = "jazz-theme";
- rev = "b1cb78a97cc4050f19d88a89e455c3e52d98240e";
- sha256 = "0q9gfa40qh9wypvzg3xrv4kh6l51az9swb39133961dc8zrrrinm";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/da25345df9d8d567541ed6b0ec832310cde67115/recipes/jazz-theme";
- sha256 = "0ad8kvrmd3gyb8wfghcl4r3kwzplk5gxlw3p23wsbx6c2xq6xr7g";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/jazz-theme";
- license = lib.licenses.free;
- };
- }) {};
- jbeans-theme = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "jbeans-theme";
- ename = "jbeans-theme";
- version = "20180309.825";
- src = fetchFromGitHub {
- owner = "synic";
- repo = "jbeans-emacs";
- rev = "3caa95998d8492a2ca6c17971de499ca15609871";
- sha256 = "0k8bd5j09753czl55dcwijs4j1vxir4zwcwlgsxli4b4f8sl2z8r";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/6dd4bd78795ec7509d8744fec1e80426ce0557ec/recipes/jbeans-theme";
- sha256 = "0y7ccycfnpykgzr88968w7dl45qazf8b9zlf7ydw3ghkl4f6lbwl";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/jbeans-theme";
- license = lib.licenses.free;
- };
- }) {};
jdecomp = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -55420,36 +29658,6 @@
license = lib.licenses.free;
};
}) {};
- jdee = callPackage ({ dash
- , emacs
- , fetchFromGitHub
- , fetchurl
- , flycheck
- , lib
- , melpaBuild
- , memoize
- , s }:
- melpaBuild {
- pname = "jdee";
- ename = "jdee";
- version = "20190217.229";
- src = fetchFromGitHub {
- owner = "jdee-emacs";
- repo = "jdee";
- rev = "1b1bdf01864d38173c9972234b02f81b47781757";
- sha256 = "08nspkv8gxhiqyqyjlv0gf59ccfrkddxd0664dzygnz9dzannhrs";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/a6d2c98f3bf2075e33d95c7befe205df802e798d/recipes/jdee";
- sha256 = "15n76w0ygjmsa2bym59bkmbbh0kpqx6nacp4zz32hlg48kgz1dx4";
- name = "recipe";
- };
- packageRequires = [ dash emacs flycheck memoize s ];
- meta = {
- homepage = "https://melpa.org/#/jdee";
- license = lib.licenses.free;
- };
- }) {};
jedi = callPackage ({ auto-complete
, emacs
, fetchFromGitHub
@@ -55507,180 +29715,6 @@
license = lib.licenses.free;
};
}) {};
- jedi-direx = callPackage ({ direx
- , fetchFromGitHub
- , fetchurl
- , jedi
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "jedi-direx";
- ename = "jedi-direx";
- version = "20140310.236";
- src = fetchFromGitHub {
- owner = "tkf";
- repo = "emacs-jedi-direx";
- rev = "7a2e677400717ed12b959cb5988e7b3fb1c12117";
- sha256 = "1pgi5vnwz5agrpvy7nwg3gv2nfbbmimhk8dxkg81k6yf1iiqxcap";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/a058c3007e63b2b651689fd17c789f7d69348f83/recipes/jedi-direx";
- sha256 = "1y4n4c2imnm3f1q129bvbi4gzk0iazd8qq959gvq9j9fl1aziiz1";
- name = "recipe";
- };
- packageRequires = [ direx jedi ];
- meta = {
- homepage = "https://melpa.org/#/jedi-direx";
- license = lib.licenses.free;
- };
- }) {};
- jekyll-modes = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , polymode }:
- melpaBuild {
- pname = "jekyll-modes";
- ename = "jekyll-modes";
- version = "20141117.514";
- src = fetchFromGitHub {
- owner = "fred-o";
- repo = "jekyll-modes";
- rev = "7cb10b50fd2883e3f7b10fdfd98f19f2f0b2381c";
- sha256 = "0rx72rid7922mhw21j85kxmx0fhpkmkv9jvxmj9izy01xnjbk00c";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/6667529d56dc35c5c56e4b4a4d1f06b6172df677/recipes/jekyll-modes";
- sha256 = "1305f1yg1mamyw3bkzrk5q3q58ihs8f5k9vjknsww5xvrzz3r1si";
- name = "recipe";
- };
- packageRequires = [ polymode ];
- meta = {
- homepage = "https://melpa.org/#/jekyll-modes";
- license = lib.licenses.free;
- };
- }) {};
- jemdoc-mode = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "jemdoc-mode";
- ename = "jemdoc-mode";
- version = "20170704.1327";
- src = fetchFromGitHub {
- owner = "drdv";
- repo = "jemdoc-mode";
- rev = "529b4d4681e1198b9892f340fdd6c3f1592a047a";
- sha256 = "1f8nn8mv18q3x3k32i6kjis9f3g1ybdjcfaw8hywqwy6k8dr734m";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/49a8c0f885df0b91d758b4d7c92bd67368da8a56/recipes/jemdoc-mode";
- sha256 = "1bl8a9fcilrqjzh92q7nvd16pxjiwmbnj157q2bx36y7bxm60acv";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/jemdoc-mode";
- license = lib.licenses.free;
- };
- }) {};
- jenkins = callPackage ({ dash
- , emacs
- , fetchFromGitHub
- , fetchurl
- , json ? null
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "jenkins";
- ename = "jenkins";
- version = "20170721.236";
- src = fetchFromGitHub {
- owner = "rmuslimov";
- repo = "jenkins.el";
- rev = "1ec967973db685c9d84133ec6a5e06489ce06b62";
- sha256 = "1ai5adv46van2g029x9idj394ycczfacyhyv291sasf8mv9i7j4b";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/2ed2da33db5eaea1a37f86057da174a45cd37ea5/recipes/jenkins";
- sha256 = "0ji42r7p3f3hh643839xf74gb231vr7anycr2xhkga8qy2vwa53s";
- name = "recipe";
- };
- packageRequires = [ dash emacs json ];
- meta = {
- homepage = "https://melpa.org/#/jenkins";
- license = lib.licenses.free;
- };
- }) {};
- jenkins-watch = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "jenkins-watch";
- ename = "jenkins-watch";
- version = "20121004.1626";
- src = fetchFromGitHub {
- owner = "ataylor284";
- repo = "jenkins-watch";
- rev = "37b84dfbd98240a57ff798e1ff8bc7dba2913577";
- sha256 = "0jayhv8j7b527dimhvcs0d7ax25x7v50dk0k6apisqc23psvkq66";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/jenkins-watch";
- sha256 = "1mdmh62rq3b8p23xgaf4i0kzpgq3ldljdxsnk07wa8bp3p7jxvgs";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/jenkins-watch";
- license = lib.licenses.free;
- };
- }) {};
- jest = callPackage ({ cl-lib ? null
- , dash
- , dash-functional
- , emacs
- , fetchFromGitHub
- , fetchurl
- , js2-mode
- , lib
- , magit-popup
- , melpaBuild
- , projectile
- , s }:
- melpaBuild {
- pname = "jest";
- ename = "jest";
- version = "20181215.2059";
- src = fetchFromGitHub {
- owner = "emiller88";
- repo = "emacs-jest";
- rev = "b753aa69511ac1219c39ea1584dd1571b55a221e";
- sha256 = "0csf6ld88b8722j6favx19ilsfc0mc56k6kmv6d2nixj1xl0pl27";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/a656c058c423ea6396b831d45c6dbb9bce6c4881/recipes/jest";
- sha256 = "10xsqcjskh2s6mlh07vf10whaas3aqm18hk3w309r3n1qmqihf75";
- name = "recipe";
- };
- packageRequires = [
- cl-lib
- dash
- dash-functional
- emacs
- js2-mode
- magit-popup
- projectile
- s
- ];
- meta = {
- homepage = "https://melpa.org/#/jest";
- license = lib.licenses.free;
- };
- }) {};
jetbrains = callPackage ({ cl-lib ? null
, emacs
, f
@@ -55709,33 +29743,6 @@
license = lib.licenses.free;
};
}) {};
- jg-quicknav = callPackage ({ cl-lib ? null
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , s }:
- melpaBuild {
- pname = "jg-quicknav";
- ename = "jg-quicknav";
- version = "20170808.1830";
- src = fetchFromGitHub {
- owner = "jeffgran";
- repo = "jg-quicknav";
- rev = "c8d53e774d63e68a944092c08a026b57da741038";
- sha256 = "0rdrryfppgj5smrds5gyyhc4z8x36aq3gxdpckq80rbl4s729chy";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/0fda2b54a0ff0b6fc3bd6d20cfcbbf63cae5380f/recipes/jg-quicknav";
- sha256 = "1pxyv1nbnqb0s177kczy6b6q4l8d2r52xqhx2rdb0wxdmp6m5x9c";
- name = "recipe";
- };
- packageRequires = [ cl-lib s ];
- meta = {
- homepage = "https://melpa.org/#/jg-quicknav";
- license = lib.licenses.free;
- };
- }) {};
jinja2-mode = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -55761,115 +29768,6 @@
license = lib.licenses.free;
};
}) {};
- jira-markup-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "jira-markup-mode";
- ename = "jira-markup-mode";
- version = "20150601.1409";
- src = fetchFromGitHub {
- owner = "mnuessler";
- repo = "jira-markup-mode";
- rev = "53bf083fdbece483f1351f32085b424b38c4c1f2";
- sha256 = "1lqk7x7h8n6xvqzfwjh220gprk5jfi8f87z6afps9rib2scz7kbh";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/e7e0349bff91ed27ad14dfc12178719453a8df55/recipes/jira-markup-mode";
- sha256 = "0f3sw41b4wl0aajq0ap66942rb2015d9iks0ss016jgzashw7zsp";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/jira-markup-mode";
- license = lib.licenses.free;
- };
- }) {};
- jist = callPackage ({ dash
- , emacs
- , fetchFromGitHub
- , fetchurl
- , let-alist
- , lib
- , magit
- , melpaBuild
- , request
- , seq }:
- melpaBuild {
- pname = "jist";
- ename = "jist";
- version = "20161229.921";
- src = fetchFromGitHub {
- owner = "emacs-pe";
- repo = "jist.el";
- rev = "ec4b27eb4051f0084cb3b1e4f19fab9e2db77665";
- sha256 = "163zip2fhyn41wmwhyrx8przcq2qmlq841b6hpm9lw8mm3wfnqbq";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/898bfa0b315240ef9335fde24ff0386a4c6c6595/recipes/jist";
- sha256 = "11m9li1016cfkm4931h69d7g1dc59lwjl83wy3yipswdg3zlw0ar";
- name = "recipe";
- };
- packageRequires = [ dash emacs let-alist magit request seq ];
- meta = {
- homepage = "https://melpa.org/#/jist";
- license = lib.licenses.free;
- };
- }) {};
- jknav = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "jknav";
- ename = "jknav";
- version = "20121006.1325";
- src = fetchFromGitHub {
- owner = "aculich";
- repo = "jknav.el";
- rev = "861245715c728503dad6573278fdd75c271dbf8b";
- sha256 = "1idby2rjkslw85593qd4zy6an9zz71yzwqc6rck57r54xyfs8mij";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/3673aebf53a7a3d54aee4e979b9dc7e37842f4db/recipes/jknav";
- sha256 = "0c0a8plqrlsw8lhmyj9c1lfkj2b48cjkbw9pna8qcizvwgym9089";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/jknav";
- license = lib.licenses.free;
- };
- }) {};
- jonprl-mode = callPackage ({ cl-lib ? null
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , yasnippet }:
- melpaBuild {
- pname = "jonprl-mode";
- ename = "jonprl-mode";
- version = "20160818.1759";
- src = fetchFromGitHub {
- owner = "david-christiansen";
- repo = "jonprl-mode";
- rev = "6059bb64891fae45827174e044d6a87ac07172d8";
- sha256 = "0v4xiq3xf7c52rmyymw8a4ws85ij0xy7pr7625gf15359cs5chs9";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/d26b6aea2b0567b971c4f013b58b598e9eb76af6/recipes/jonprl-mode";
- sha256 = "0763ad65dmpl2l5lw91mlppfdvrjg6ym45brhi8sdwwri1xnyv9z";
- name = "recipe";
- };
- packageRequires = [ cl-lib emacs yasnippet ];
- meta = {
- homepage = "https://melpa.org/#/jonprl-mode";
- license = lib.licenses.free;
- };
- }) {};
jpop = callPackage ({ dash
, emacs
, fetchFromGitHub
@@ -55950,58 +29848,6 @@
license = lib.licenses.free;
};
}) {};
- jquery-doc = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "jquery-doc";
- ename = "jquery-doc";
- version = "20150812.58";
- src = fetchFromGitHub {
- owner = "ananthakumaran";
- repo = "jquery-doc.el";
- rev = "24032284919b942ec27707d929bdd8bf48420062";
- sha256 = "0gh2bgmsbi9lby89ssvl49kpz07jqrfnyg47g6b9xmf5rw42s1z9";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/504d8cfac08f3fcd856610bc2caeb4d4178aeedf/recipes/jquery-doc";
- sha256 = "0pyg90izdrb9mvpbz9nx21mp8m3svqjnz1jr8i7wqgfjxsxdklxj";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/jquery-doc";
- license = lib.licenses.free;
- };
- }) {};
- js-auto-beautify = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , web-beautify
- , web-mode }:
- melpaBuild {
- pname = "js-auto-beautify";
- ename = "js-auto-beautify";
- version = "20161030.2209";
- src = fetchFromGitHub {
- owner = "Qquanwei";
- repo = "auto-beautify.el";
- rev = "6bc9fef474197ca1722cb1e9051b270f80cdd7cc";
- sha256 = "1jj4zbdw76ir7zigdhad4qdw1cabbql71847bzkqh6zzjwpg9h3p";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/js-auto-beautify";
- sha256 = "0hpp6im24xy4g5l1n9kvpmpj26rnxxnf4snf7xgh5gxx6wsiicy1";
- name = "recipe";
- };
- packageRequires = [ web-beautify web-mode ];
- meta = {
- homepage = "https://melpa.org/#/js-auto-beautify";
- license = lib.licenses.free;
- };
- }) {};
js-auto-format-mode = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -56028,32 +29874,6 @@
license = lib.licenses.free;
};
}) {};
- js-codemod = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "js-codemod";
- ename = "js-codemod";
- version = "20171104.454";
- src = fetchFromGitHub {
- owner = "torgeir";
- repo = "js-codemod.el";
- rev = "014e56c846487d1eeaf8a91dd503b9d96eb1510a";
- sha256 = "0s07ypjlqsx2pgq89wmr69w9p7ybc62abqp53kzf5gmdl6fdzgxq";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/81670a2467fa846a3f0e6c81e870e8ae140dd54e/recipes/js-codemod";
- sha256 = "1m5wbyx12sc5qwbrh948ikskck10p6j05ahrrvmmflvfb3q4vpcj";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/js-codemod";
- license = lib.licenses.free;
- };
- }) {};
js-comint = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -56080,87 +29900,6 @@
license = lib.licenses.free;
};
}) {};
- js-doc = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "js-doc";
- ename = "js-doc";
- version = "20160714.2134";
- src = fetchFromGitHub {
- owner = "mooz";
- repo = "js-doc";
- rev = "f0606e89d5aa89146f96edb38cf69af0068a9d1e";
- sha256 = "1ffayl6hca9zanbznh6rkql7fbr53id1lyrj2vllx8zakfac4dyv";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5621f60b3f580db652c347719d004d7168944caa/recipes/js-doc";
- sha256 = "0nafqgb4kf8jgrb7ijfcvigq8kf043ki89h61izda4hccm3c42pk";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/js-doc";
- license = lib.licenses.free;
- };
- }) {};
- js-format = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , js2-mode
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "js-format";
- ename = "js-format";
- version = "20170118.1702";
- src = fetchFromGitHub {
- owner = "futurist";
- repo = "js-format.el";
- rev = "544bda9be72b74ec2d442543ba60cff727d96669";
- sha256 = "18wr2z2w2fqgy51f5m5izrnywarxn6w4qs04lsgbwlsc6ahpwwpf";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/0d6deaa93f7deaba9f5f36f1963522b6dc5c673a/recipes/js-format";
- sha256 = "112zqb3q1gjlaa9zkmhx7vamh0g97dwp9j55215i1sx66lmp18iq";
- name = "recipe";
- };
- packageRequires = [ emacs js2-mode ];
- meta = {
- homepage = "https://melpa.org/#/js-format";
- license = lib.licenses.free;
- };
- }) {};
- js-import = callPackage ({ dash
- , emacs
- , f
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , projectile }:
- melpaBuild {
- pname = "js-import";
- ename = "js-import";
- version = "20190218.519";
- src = fetchFromGitHub {
- owner = "jakoblind";
- repo = "js-import";
- rev = "2ab3b120cc94ebf4bee2d959c8869440bc4c7484";
- sha256 = "1fv8lpjanyn6chf502lz0j438hfxhqz1b0z2kxsd4jgy20ixchmg";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/js-import";
- sha256 = "0r653ls1a4kr7i7249afgfj7vz365gadfm8bc1vmqfabxn8mysd4";
- name = "recipe";
- };
- packageRequires = [ dash emacs f projectile ];
- meta = {
- homepage = "https://melpa.org/#/js-import";
- license = lib.licenses.free;
- };
- }) {};
js2-closure = callPackage ({ fetchFromGitHub
, fetchurl
, js2-mode
@@ -56295,33 +30034,6 @@
license = lib.licenses.free;
};
}) {};
- jscs = callPackage ({ cl-lib ? null
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "jscs";
- ename = "jscs";
- version = "20151015.1049";
- src = fetchFromGitHub {
- owner = "papaeye";
- repo = "emacs-jscs";
- rev = "9d39d0f2355e69a020bf76242504f3a33e013ccf";
- sha256 = "1bqsv2drhcs8ia7nxss33f80p2mhcl4mr1nalphzw6s1f4mq2sgy";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/f59d039a199ff93d7280669511a752f12a74f0bd/recipes/jscs";
- sha256 = "1yw251f6vpj2bikjw79arywprk8qnmmfcki99mvwnqhsqlv1a8iv";
- name = "recipe";
- };
- packageRequires = [ cl-lib emacs ];
- meta = {
- homepage = "https://melpa.org/#/jscs";
- license = lib.licenses.free;
- };
- }) {};
jsfmt = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -56426,33 +30138,6 @@
license = lib.licenses.free;
};
}) {};
- json-rpc = callPackage ({ cl-lib ? null
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "json-rpc";
- ename = "json-rpc";
- version = "20180104.728";
- src = fetchFromGitHub {
- owner = "skeeto";
- repo = "elisp-json-rpc";
- rev = "0992ae71964055230aa5d4d934a1b93b5dfd7eb4";
- sha256 = "0nfccwxss3dz1ig6i3dig703xpsy90m7i96bm3pysrw2jfp4by9s";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/82c6b97cdfe2970f028a00146b01e5734710291b/recipes/json-rpc";
- sha256 = "1v1pfmm9g18p6kgn27q1m1bjgwbzvwfm0jbsxp8gdsssaygky71k";
- name = "recipe";
- };
- packageRequires = [ cl-lib emacs ];
- meta = {
- homepage = "https://melpa.org/#/json-rpc";
- license = lib.licenses.free;
- };
- }) {};
json-snatcher = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -56505,64 +30190,6 @@
license = lib.licenses.free;
};
}) {};
- jss = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , js2-mode
- , lib
- , melpaBuild
- , websocket }:
- melpaBuild {
- pname = "jss";
- ename = "jss";
- version = "20130508.723";
- src = fetchFromGitHub {
- owner = "segv";
- repo = "jss";
- rev = "41749257aecf13c7bd6ed489b5ab3304d06e40bc";
- sha256 = "07yd7sxb5f2mbm2nva7b2nwyxxkmsi2rdd5qig0bq1b2mf3g5l83";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/e3dc3607f512df378ba141327802820da4991a97/recipes/jss";
- sha256 = "050hskqcjz5kc8nni255vj3hc9m936w1rybvg5kqyz4p4lpzj00k";
- name = "recipe";
- };
- packageRequires = [ emacs js2-mode websocket ];
- meta = {
- homepage = "https://melpa.org/#/jss";
- license = lib.licenses.free;
- };
- }) {};
- jst = callPackage ({ dash
- , emacs
- , f
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , pcache
- , s }:
- melpaBuild {
- pname = "jst";
- ename = "jst";
- version = "20150604.438";
- src = fetchFromGitHub {
- owner = "zhangkaiyulw";
- repo = "jst-mode";
- rev = "865ff97449a4cbbcb40d38b4908cf4d7b22a5108";
- sha256 = "066ql5czrzikznlx7vww6m8h0pfkixfm8qnydfwpfndcqq6ypd90";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/3416586d4d782cdd61a56159c5f80a0ca9b3ddf4/recipes/jst";
- sha256 = "1kxf8ckhsh0sgc4xqkkyh7ghk17farqqz35ibvmyrkl9s19ydj1q";
- name = "recipe";
- };
- packageRequires = [ dash emacs f pcache s ];
- meta = {
- homepage = "https://melpa.org/#/jst";
- license = lib.licenses.free;
- };
- }) {};
jsx-mode = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -56588,55 +30215,6 @@
license = lib.licenses.free;
};
}) {};
- jtags = callPackage ({ fetchgit
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "jtags";
- ename = "jtags";
- version = "20160211.1229";
- src = fetchgit {
- url = "https://git.code.sf.net/p/jtags/code";
- rev = "f7d29e1635ef7ee4ee2cdb8f1f6ab83e1015c84a";
- sha256 = "029arf0m39rrb3x81hpd3ljwd4ki37hwa4n38hynn8lfmwrrdy2x";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/caaa21f235c4864f6008fb454d0a970a2fd22a86/recipes/jtags";
- sha256 = "1f3dw9fr31lcqmida14d9rsvy1r1b5d6ihqwdj9hbx5kv7d8jyj7";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/jtags";
- license = lib.licenses.free;
- };
- }) {};
- julia-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "julia-mode";
- ename = "julia-mode";
- version = "20190407.1419";
- src = fetchFromGitHub {
- owner = "JuliaEditorSupport";
- repo = "julia-emacs";
- rev = "8449c95a05ab5d75a48192c2da7f0e7f4d16714c";
- sha256 = "02v1hw7h460ypwn45n3jv6d06jcsg2hm5l764ay22116znvaz9n7";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/3416586d4d782cdd61a56159c5f80a0ca9b3ddf4/recipes/julia-mode";
- sha256 = "1f26j3nxspwrvnsk3kmam8rw4jwikwmi9a5zwsx9aa1rrasg58w3";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/julia-mode";
- license = lib.licenses.free;
- };
- }) {};
julia-repl = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -56663,59 +30241,6 @@
license = lib.licenses.free;
};
}) {};
- julia-shell = callPackage ({ fetchFromGitHub
- , fetchurl
- , julia-mode
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "julia-shell";
- ename = "julia-shell";
- version = "20161125.1110";
- src = fetchFromGitHub {
- owner = "dennisog";
- repo = "julia-shell-mode";
- rev = "583a0b2ca20461ab4356929fd0f2212c22341b69";
- sha256 = "182r7x7w3xnx7c54izz3rlz0khcwh7v21m89qpq99f9dvcs6273k";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/a812c6a8498949d8bd9828a95433c539da87c1c8/recipes/julia-shell";
- sha256 = "0182irlvk6nn71zk4j8xjgcqp4bxi7a2dbj44frrssy6018cd410";
- name = "recipe";
- };
- packageRequires = [ julia-mode ];
- meta = {
- homepage = "https://melpa.org/#/julia-shell";
- license = lib.licenses.free;
- };
- }) {};
- jumblr = callPackage ({ dash
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , s }:
- melpaBuild {
- pname = "jumblr";
- ename = "jumblr";
- version = "20170727.1343";
- src = fetchFromGitHub {
- owner = "mkmcc";
- repo = "jumblr";
- rev = "34533dfb9db8538c005f4eaffafeff7ed193729f";
- sha256 = "0nn2m27c70nykin4iakrna0c61qd1hr09czrfmfpk06k70iifjky";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/b47000c35a181c03263e85e8955eb4b4c9e69e4d/recipes/jumblr";
- sha256 = "1wnawz1m6x95iyzac453p55h7hlr5q0ry5437aqqx0bw7gdwg3dp";
- name = "recipe";
- };
- packageRequires = [ dash s ];
- meta = {
- homepage = "https://melpa.org/#/jumblr";
- license = lib.licenses.free;
- };
- }) {};
jump = callPackage ({ cl-lib ? null
, fetchFromGitHub
, fetchurl
@@ -56744,31 +30269,6 @@
license = lib.licenses.free;
};
}) {};
- jump-char = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "jump-char";
- ename = "jump-char";
- version = "20180601.648";
- src = fetchFromGitHub {
- owner = "lewang";
- repo = "jump-char";
- rev = "1e31a3c687f2b3c71bbfab881c6d75915534bb9e";
- sha256 = "1nzln2l6sy67qz30107sgyhhfacy85im9vdlbv1hp4fzdmxxkx84";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/jump-char";
- sha256 = "1r6d1vhm87zafi7rr7z8jwyz3yy7i7s4774n84jsql24j1rzzwd4";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/jump-char";
- license = lib.licenses.free;
- };
- }) {};
jump-to-line = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -56794,57 +30294,6 @@
license = lib.licenses.free;
};
}) {};
- jump-tree = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "jump-tree";
- ename = "jump-tree";
- version = "20171014.851";
- src = fetchFromGitHub {
- owner = "yangwen0228";
- repo = "jump-tree";
- rev = "282267dc6305889e31d46b405b7ad4dfe5923b66";
- sha256 = "0r6cwpks4aylndvq5lcny3799fag05zm36gd11043wca7sgr90fz";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/fe6b08848929c83e3cdea623b331176c0f20cbe9/recipes/jump-tree";
- sha256 = "1gknpwd1vjpd1jqpi2axhyi6sg4clarr32rfrfz6hi6kmzr848mj";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/jump-tree";
- license = lib.licenses.free;
- };
- }) {};
- jumplist = callPackage ({ cl-lib ? null
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "jumplist";
- ename = "jumplist";
- version = "20151119.1945";
- src = fetchFromGitHub {
- owner = "ganmacs";
- repo = "jumplist";
- rev = "c482d137d95bc5e1bcd790cdbde25b7f729b2502";
- sha256 = "0ykzvy8034mchq6ffyi7vqnwyrj6gnqqgn39ki81pv97qh8hh8yl";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/b2b7c688b881615c5f0b00f3879b9469d380a4e6/recipes/jumplist";
- sha256 = "06xjg1q8b2fwfhfmdkb76bw2id8pgqc61fmwlgri5746jgdmd7nf";
- name = "recipe";
- };
- packageRequires = [ cl-lib ];
- meta = {
- homepage = "https://melpa.org/#/jumplist";
- license = lib.licenses.free;
- };
- }) {};
jupyter = callPackage ({ cl-lib ? null
, emacs
, fetchFromGitHub
@@ -56902,33 +30351,6 @@
license = lib.licenses.free;
};
}) {};
- k8s-mode = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , yaml-mode }:
- melpaBuild {
- pname = "k8s-mode";
- ename = "k8s-mode";
- version = "20181230.2341";
- src = fetchFromGitHub {
- owner = "TxGVNN";
- repo = "emacs-k8s-mode";
- rev = "bd435186d807dc20e40cb72abf57542a3ddcc9c9";
- sha256 = "06hxs2syashv0r4d6w8v8p7pzab3cxwf3ymx5lrpicq5zjc3x3h5";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/44085c3f730315a5fc2a9a003ffa16d5df9f9a52/recipes/k8s-mode";
- sha256 = "14m4s0l61a2h38pdq6iczva24cl3mqdkw99k1q0drisdrvy57f33";
- name = "recipe";
- };
- packageRequires = [ emacs yaml-mode ];
- meta = {
- homepage = "https://melpa.org/#/k8s-mode";
- license = lib.licenses.free;
- };
- }) {};
kaesar = callPackage ({ cl-lib ? null
, fetchFromGitHub
, fetchurl
@@ -57034,109 +30456,6 @@
license = lib.licenses.free;
};
}) {};
- kaleidoscope = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , s }:
- melpaBuild {
- pname = "kaleidoscope";
- ename = "kaleidoscope";
- version = "20170808.117";
- src = fetchFromGitHub {
- owner = "algernon";
- repo = "kaleidoscope.el";
- rev = "b89a243f6024099192f1bc38d8a54e3e7a654090";
- sha256 = "154myfd3nag9nhpc3lrhq13191q7a9bzi0ml8a3k0fwy1810yi29";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/148d47626879be1608f35827ef82a28274ff4de3/recipes/kaleidoscope";
- sha256 = "0nfz207rzpnni7jyzvdvz5lr0zcpzy278a86821cmw8d5l81a3yp";
- name = "recipe";
- };
- packageRequires = [ s ];
- meta = {
- homepage = "https://melpa.org/#/kaleidoscope";
- license = lib.licenses.free;
- };
- }) {};
- kaleidoscope-evil-state-flash = callPackage ({ evil
- , fetchFromGitHub
- , fetchurl
- , kaleidoscope
- , lib
- , melpaBuild
- , s }:
- melpaBuild {
- pname = "kaleidoscope-evil-state-flash";
- ename = "kaleidoscope-evil-state-flash";
- version = "20170728.320";
- src = fetchFromGitHub {
- owner = "algernon";
- repo = "kaleidoscope.el";
- rev = "5b88327350c3d6375ef1d43fb31342eaabd88fdc";
- sha256 = "1rbifir3rpp6i7il13b9yawkwllr2ima1d9rsff46n6h2920d5x1";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/148d47626879be1608f35827ef82a28274ff4de3/recipes/kaleidoscope-evil-state-flash";
- sha256 = "17a4nmdi6h0z4va3kiw4ivaywiisblz6cicypk9d3g9sl92drcvq";
- name = "recipe";
- };
- packageRequires = [ evil kaleidoscope s ];
- meta = {
- homepage = "https://melpa.org/#/kaleidoscope-evil-state-flash";
- license = lib.licenses.free;
- };
- }) {};
- kanban = callPackage ({ fetchhg
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "kanban";
- ename = "kanban";
- version = "20170418.110";
- src = fetchhg {
- url = "https://bitbucket.com/ArneBab/kanban.el";
- rev = "dd11d722b20a";
- sha256 = "07g0spi9jf48vap76f9rgl61sg3jqy03qdxnmchzwlia8wvcsscb";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/kanban";
- sha256 = "1j4qv3xcg0gk07yx3b4kayiy1n3w8yq1r78h07613iljx2ny91fz";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/kanban";
- license = lib.licenses.free;
- };
- }) {};
- kanji-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "kanji-mode";
- ename = "kanji-mode";
- version = "20160826.439";
- src = fetchFromGitHub {
- owner = "wsgac";
- repo = "kanji-mode";
- rev = "5e9d5b72468ece11cfb81b729be6babf63ede425";
- sha256 = "1zh7klqaza840q5f44zzh1wrnd6sqa2k93z3dgx3yhhsxfd1dxvy";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/c9f1fb16f2f7f677d0817fd63633dd071ba2cf12/recipes/kanji-mode";
- sha256 = "0nnkv7lp7ks9qhkbhz15ixm53grc2q0xfspzykxi9c4b59kypcq5";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/kanji-mode";
- license = lib.licenses.free;
- };
- }) {};
kaolin-themes = callPackage ({ autothemer
, cl-lib ? null
, emacs
@@ -57165,61 +30484,6 @@
license = lib.licenses.free;
};
}) {};
- kaomoji = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , helm-core
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "kaomoji";
- ename = "kaomoji";
- version = "20171226.2040";
- src = fetchFromGitHub {
- owner = "kuanyui";
- repo = "kaomoji.el";
- rev = "90a1490743b2a30762f5454c9d9309018eff83dd";
- sha256 = "1jc796nyrck3k50x6jb1wsaawk396y4gk87gkwb8yd5qks7ci35q";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/140c65cb3cdf6c197b085ccf8ba079e1efd15f38/recipes/kaomoji";
- sha256 = "1p61pbqf2lnwr6ryxxc4jkd5bmlgknrc27lg89h3b4pw7k39cqy1";
- name = "recipe";
- };
- packageRequires = [ emacs helm-core ];
- meta = {
- homepage = "https://melpa.org/#/kaomoji";
- license = lib.licenses.free;
- };
- }) {};
- kapacitor = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , magit
- , magit-popup
- , melpaBuild }:
- melpaBuild {
- pname = "kapacitor";
- ename = "kapacitor";
- version = "20180909.2142";
- src = fetchFromGitHub {
- owner = "Manoj321";
- repo = "kapacitor-el";
- rev = "b0e95f98b965f215be6ead14779949d5cf358ea5";
- sha256 = "0ahi9ar32kwf7cinxp29c3yhjfibg509pvxv5s0gn31szdqq216p";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/db1f8cfcda2fa2b9be74a6cd9f95608e8b3f50bb/recipes/kapacitor";
- sha256 = "108b3y71p7s3lcwbqxp7hy2l304yj4hxm2nq8iv7ljr8av1q7kn6";
- name = "recipe";
- };
- packageRequires = [ emacs magit magit-popup ];
- meta = {
- homepage = "https://melpa.org/#/kapacitor";
- license = lib.licenses.free;
- };
- }) {};
karma = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -57245,56 +30509,6 @@
license = lib.licenses.free;
};
}) {};
- kdeconnect = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "kdeconnect";
- ename = "kdeconnect";
- version = "20180126.1540";
- src = fetchFromGitHub {
- owner = "carldotac";
- repo = "kdeconnect.el";
- rev = "ca0cbf9a628ba7b519b43fa85e0d988ca26bf853";
- sha256 = "07aqzfg2nn35bkikrmk1lszqkc6h8vn2551m22mwc19lmdx94p2i";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/c363866d30fb86ae636d30def8c3847711ada762/recipes/kdeconnect";
- sha256 = "1bcwpnwmm1l2jzc5znw8z6f5knysinidsbm12v4r1j8v6v80ydw6";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/kdeconnect";
- license = lib.licenses.free;
- };
- }) {};
- kerl = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "kerl";
- ename = "kerl";
- version = "20150424.1305";
- src = fetchFromGitHub {
- owner = "correl";
- repo = "kerl.el";
- rev = "1732ee26213f021bf040919c45ad276aafcaae14";
- sha256 = "1kkzs7nrcr74qn1m456vaj52a9j3ah4biakimz06hls415l56yk9";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/166afdc776689b0da93576dbeaa71ff6dfb627db/recipes/kerl";
- sha256 = "0f8n7cm5c432pwj28bcpv2jj5z3br3k164xj6nwfis3dvijwsgss";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/kerl";
- license = lib.licenses.free;
- };
- }) {};
key-chord = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -57345,57 +30559,6 @@
license = lib.licenses.free;
};
}) {};
- key-intercept = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "key-intercept";
- ename = "key-intercept";
- version = "20140210.2349";
- src = fetchFromGitHub {
- owner = "tarao";
- repo = "key-intercept-el";
- rev = "d9a60edb4ce893f2d3d94f242164fdcc62d43cf2";
- sha256 = "143nfs8pgi5yy3mjq7nirffplk4vb8kik4q7zypynh2pddip30a4";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/ad758d865bde8c97d27c0d57cabe1606f8b36974/recipes/key-intercept";
- sha256 = "1z776jbpjks5bir6bd0748mlrmz05nf0jy9l4hlmwgyn72dcbx16";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/key-intercept";
- license = lib.licenses.free;
- };
- }) {};
- key-leap = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "key-leap";
- ename = "key-leap";
- version = "20160831.747";
- src = fetchFromGitHub {
- owner = "MartinRykfors";
- repo = "key-leap";
- rev = "b3f6ef15c8a13870475d5af159fa24b30f97dea0";
- sha256 = "1f2k7jpxfvjirxzjc5c4s4lpg1hdgw8k7lfchx362jqijny1ipfp";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/8b56e18063e6292bb2aca2acc7077b32f3d62262/recipes/key-leap";
- sha256 = "0z1fhpf8g0c4rh3bf8dfmdgyhj5w686kavjr214czaga0x7mwlwj";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/key-leap";
- license = lib.licenses.free;
- };
- }) {};
key-seq = callPackage ({ fetchFromGitHub
, fetchurl
, key-chord
@@ -57549,32 +30712,6 @@
license = lib.licenses.free;
};
}) {};
- keypress-multi-event = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "keypress-multi-event";
- ename = "keypress-multi-event";
- version = "20190108.2130";
- src = fetchFromGitHub {
- owner = "Boruch-Baum";
- repo = "emacs-keypress-multi-event";
- rev = "9de65a27e10d8ae47aa6d28c02c3eb82ee8c0b2e";
- sha256 = "1ybbayxfix63rwc8p5kl4wxxlk6vg53abw40fqrlkbc6qrr7nm5c";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/fd02baaf1d49d55b066695d8fa9887c454bb1750/recipes/keypress-multi-event";
- sha256 = "07va7w6vgjf6jqrfzpsq8732b8aka07g29h661yh1xn4x6464hyp";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/keypress-multi-event";
- license = lib.licenses.free;
- };
- }) {};
keyset = callPackage ({ cl-lib ? null
, dash
, fetchFromGitHub
@@ -57602,112 +30739,6 @@
license = lib.licenses.free;
};
}) {};
- keystore-mode = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , origami
- , s
- , seq }:
- melpaBuild {
- pname = "keystore-mode";
- ename = "keystore-mode";
- version = "20190316.700";
- src = fetchFromGitHub {
- owner = "peterpaul";
- repo = "keystore-mode";
- rev = "65ffee8834cb171c53e917ae8c183db6f646f471";
- sha256 = "1lzjqzbaq0wd9gims4mj8rga8wmj4kvig63cvnygd93f0sbbirkk";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/7870d808fc19096ed6ecde5e9297b28254466210/recipes/keystore-mode";
- sha256 = "1r1my7jgjv2zvkhdwd8ml6489x48gzanz4lvdiw5m2hymb53fdg6";
- name = "recipe";
- };
- packageRequires = [ emacs origami s seq ];
- meta = {
- homepage = "https://melpa.org/#/keystore-mode";
- license = lib.licenses.free;
- };
- }) {};
- keyswap = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "keyswap";
- ename = "keyswap";
- version = "20160813.257";
- src = fetchFromGitHub {
- owner = "hardenedapple";
- repo = "keyswap.el";
- rev = "cd682a7c4a8d64d6bae6a005db5045232e5e7b95";
- sha256 = "191i2b2xx6180sly0dd6b1z6npsrzjqhxrbak9wm6yblx7alsgn2";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/ed8303f5009604ae3d83769063d38749e37fc5d8/recipes/keyswap";
- sha256 = "0ck9w2jr4vdk3yjlcdzblsbgw5w5x1cxbx7h1am5vkr6fhxh2hdi";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/keyswap";
- license = lib.licenses.free;
- };
- }) {};
- keyword-search = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "keyword-search";
- ename = "keyword-search";
- version = "20180424.402";
- src = fetchFromGitHub {
- owner = "keyword-search";
- repo = "keyword-search";
- rev = "f8475ecaddb8804a9be6bee47678207c86ac8dee";
- sha256 = "1ymqnpm9his2bkchq23vwazprwyw0d2sdgza7zjxvs3q0f4nj0vx";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/8ecdc51938f2300bf005e2d1b1819e0fa59e0bd7/recipes/keyword-search";
- sha256 = "0wvci1v8pblfbdslfzpi46c149y8pi49kza9jf33jzhj357lp5qa";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/keyword-search";
- license = lib.licenses.free;
- };
- }) {};
- kfg = callPackage ({ f
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "kfg";
- ename = "kfg";
- version = "20140908.2238";
- src = fetchFromGitHub {
- owner = "czipperz";
- repo = "kfg";
- rev = "ffc35b77f227d4c64a1271ec30d31333ffeb0013";
- sha256 = "0y8s2zfz1r1nfwkkfyxc3vfmlagp9wg8i3zpyj3jcifilxq6i63v";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/2990f45632697ce23e7cd9db807d8ae2d3bf61d2/recipes/kfg";
- sha256 = "0kj79wwj2ih2ba57y3hl2l9pwjpsqns5waa8vi5g7agmqva0mh5b";
- name = "recipe";
- };
- packageRequires = [ f ];
- meta = {
- homepage = "https://melpa.org/#/kfg";
- license = lib.licenses.free;
- };
- }) {};
kibit-helper = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -57812,60 +30843,6 @@
license = lib.licenses.free;
};
}) {};
- kite = callPackage ({ fetchFromGitHub
- , fetchurl
- , json ? null
- , lib
- , melpaBuild
- , websocket }:
- melpaBuild {
- pname = "kite";
- ename = "kite";
- version = "20130201.1138";
- src = fetchFromGitHub {
- owner = "jscheid";
- repo = "kite";
- rev = "7ed74d1147a6ddd152d3da65dc30df3517d53144";
- sha256 = "1cr4i66lws6yhyxmyx5jw6d5x7i75435mafkkych4nfa0mv4vicd";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/kite";
- sha256 = "17bpk9ycx2xkwm3j1dxi5216lbzf5lgnscs8i4y0pkpicdn0wyr6";
- name = "recipe";
- };
- packageRequires = [ json websocket ];
- meta = {
- homepage = "https://melpa.org/#/kite";
- license = lib.licenses.free;
- };
- }) {};
- kite-mini = callPackage ({ dash
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , websocket }:
- melpaBuild {
- pname = "kite-mini";
- ename = "kite-mini";
- version = "20160508.406";
- src = fetchFromGitHub {
- owner = "tungd";
- repo = "kite-mini.el";
- rev = "48734092e735033ad7664a9933acd4556e095f79";
- sha256 = "0ralsdjzj09g6nsa04jvyyzr6cgsi0d7gi1ji77f52m31dl0b8cw";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/a9b76d0ee09efc6652d0541cf72c9623760dda66/recipes/kite-mini";
- sha256 = "1g644406zm3db0fjyv704aa8dbd20v1apmysb3mmh2vldbch4iyh";
- name = "recipe";
- };
- packageRequires = [ dash websocket ];
- meta = {
- homepage = "https://melpa.org/#/kite-mini";
- license = lib.licenses.free;
- };
- }) {};
kivy-mode = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -57918,58 +30895,6 @@
license = lib.licenses.free;
};
}) {};
- kixtart-mode = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "kixtart-mode";
- ename = "kixtart-mode";
- version = "20150611.904";
- src = fetchFromGitHub {
- owner = "ryrun";
- repo = "kixtart-mode";
- rev = "1c2356797e7b766bbaaa2b341176a8b10499cd79";
- sha256 = "1ld3ccg8q7hmjrj60rxvmmfy4dpm2lvlshjqdf9ifgjzp221g4vb";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/672cfc166209b6c2ffcb0e549fd2416be7212a5a/recipes/kixtart-mode";
- sha256 = "079bw4lgxbmk65rrfyy8givs8j5wsyhpcjjw915ifkg577gj87qp";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/kixtart-mode";
- license = lib.licenses.free;
- };
- }) {};
- klere-theme = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "klere-theme";
- ename = "klere-theme";
- version = "20180415.1123";
- src = fetchFromGitHub {
- owner = "WammKD";
- repo = "emacs-klere-theme";
- rev = "8e389530dd783dcaab2365e0970181c72d782efb";
- sha256 = "1217yr4qpax4snzyi64wzcr13qjnmd0dcqw7ch3vniqn48vnla92";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/07a3e348d69738ae59fce3570a61b0cdc565fdb8/recipes/klere-theme";
- sha256 = "1lgvk6q2853rpk15i91zf917r8wmrb7bnagp4x02fws49x83hqrs";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/klere-theme";
- license = lib.licenses.free;
- };
- }) {};
know-your-http-well = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -57995,213 +30920,6 @@
license = lib.licenses.free;
};
}) {};
- kodi-remote = callPackage ({ cl-lib ? null
- , fetchFromGitHub
- , fetchurl
- , json ? null
- , let-alist
- , lib
- , melpaBuild
- , request }:
- melpaBuild {
- pname = "kodi-remote";
- ename = "kodi-remote";
- version = "20190322.1303";
- src = fetchFromGitHub {
- owner = "spiderbit";
- repo = "kodi-remote.el";
- rev = "861d81af05b061e1343124753d8493e5a21baf7b";
- sha256 = "1cb1s3ksscva8fw1ss8z6nc530g00njrs2kk3flqisnc41l6njsq";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/08f06dd824e67250afafdecc25128ba794ca971f/recipes/kodi-remote";
- sha256 = "0f3n7b3plsw28xpz07lf5pv71b6s2xjhq2h23gpyg0r69v99chh5";
- name = "recipe";
- };
- packageRequires = [ cl-lib json let-alist request ];
- meta = {
- homepage = "https://melpa.org/#/kodi-remote";
- license = lib.licenses.free;
- };
- }) {};
- kolon-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "kolon-mode";
- ename = "kolon-mode";
- version = "20140122.334";
- src = fetchFromGitHub {
- owner = "samvtran";
- repo = "kolon-mode";
- rev = "5af0955e280ae991862189ebecd3937c5fc8fb9f";
- sha256 = "0yr4yxwxgxp5pm9f8gaqlikxp26inv01inq0ya42dzam5yphkafw";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/b18f38d291303ff362e11ca711bb00bf411e2180/recipes/kolon-mode";
- sha256 = "0wcg8ph3mk4zcmzqpvl2w6rfgvrfvhmgwb14y8agh9b7v5d9xwj3";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/kolon-mode";
- license = lib.licenses.free;
- };
- }) {};
- kooten-theme = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "kooten-theme";
- ename = "kooten-theme";
- version = "20161023.205";
- src = fetchFromGitHub {
- owner = "kootenpv";
- repo = "emacs-kooten-theme";
- rev = "d10197b4dd7af02cd14aeab2573c273a294798c3";
- sha256 = "1vc97d3i7jh4fbpan7lfnmsm32c4gwgrg11j2vq7z3rwm42wkkyr";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/kooten-theme";
- sha256 = "1zhrjli65pn5nshz8pqn5vbsndzk2h8mhbcldq9k0mc7ki2rrdlv";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/kooten-theme";
- license = lib.licenses.free;
- };
- }) {};
- korean-holidays = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "korean-holidays";
- ename = "korean-holidays";
- version = "20190102.758";
- src = fetchFromGitHub {
- owner = "tttuuu888";
- repo = "korean-holidays";
- rev = "3f90ed86f46f8e5533f23baa40e2513ac497ca2b";
- sha256 = "0y88b4mr73qcshr87750jkjzz1mc2wwra6ca3y8spv4qc6cadwls";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/korean-holidays";
- sha256 = "1yf0z9vpiwhlsnyb0fy9wf5rz6f2fzzign96zgj0zd5hwmznbmyr";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/korean-holidays";
- license = lib.licenses.free;
- };
- }) {};
- kosmos-theme = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "kosmos-theme";
- ename = "kosmos-theme";
- version = "20170502.1150";
- src = fetchFromGitHub {
- owner = "habamax";
- repo = "kosmos-theme";
- rev = "616456d2376a75dc31190ad65137d179fbad4336";
- sha256 = "193zwgwfnj0lyk0msa16y0dfg7asp953p3jm56d9wdacggbcraj9";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/kosmos-theme";
- sha256 = "0vj1z69hz0j7kxnzj13c4vck1qj5j1glr9lymk5ns2v8l56gakwb";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/kosmos-theme";
- license = lib.licenses.free;
- };
- }) {};
- kotlin-mode = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "kotlin-mode";
- ename = "kotlin-mode";
- version = "20190116.1255";
- src = fetchFromGitHub {
- owner = "Emacs-Kotlin-Mode-Maintainers";
- repo = "kotlin-mode";
- rev = "0e542ae2f78420618df8b0123dfe168a37dce333";
- sha256 = "1rv3vxw3dx477sapfd0hj3pkl3x0sihdsyl671azbcr02z67xl6p";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/9f2560e913b215821221c96069a1385fe4e19c3e/recipes/kotlin-mode";
- sha256 = "08jn8r4nhhlck0f7n5agibwh049rigdiy12lpmijbwk1zmcvsqws";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/kotlin-mode";
- license = lib.licenses.free;
- };
- }) {};
- kpm-list = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "kpm-list";
- ename = "kpm-list";
- version = "20170924.652";
- src = fetchFromGitHub {
- owner = "KMahoney";
- repo = "kpm-list";
- rev = "e0f5112e5ce8ec1b603f4428fa51681c68bb28f5";
- sha256 = "1achcr3v0d85narnxqpbfxy9qfk537kl83wiq5lyfy3lwqqf7dmp";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/6b7065d016e2da49277b165edf565bef5819d483/recipes/kpm-list";
- sha256 = "0022bhy1mzngjmjydyqnmlgnhww05v4dxsfav034r8nyyc7677z0";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/kpm-list";
- license = lib.licenses.free;
- };
- }) {};
- kroman = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "kroman";
- ename = "kroman";
- version = "20150827.1640";
- src = fetchFromGitHub {
- owner = "zhangkaiyulw";
- repo = "kroman-el";
- rev = "431144a3cd629a2812a668a29ad85182368dc9b0";
- sha256 = "0miywc3vfqi3hjb7lk8baz1y2nbp9phjjxclqriyqra4gw4n0vhc";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/6440f81aed1fcddcaf7afeedb74520e605211986/recipes/kroman";
- sha256 = "0rcy3343pmlqzqzhmz2c3r0b44pn8fsyp39mvn9nmdnaxsn6q3k8";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/kroman";
- license = lib.licenses.free;
- };
- }) {};
ksp-cfg-mode = callPackage ({ cl-lib ? null
, emacs
, fetchFromGitHub
@@ -58229,33 +30947,6 @@
license = lib.licenses.free;
};
}) {};
- kubel = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , magit-popup
- , melpaBuild }:
- melpaBuild {
- pname = "kubel";
- ename = "kubel";
- version = "20190314.1007";
- src = fetchFromGitHub {
- owner = "abrochard";
- repo = "kubel";
- rev = "b8e1c67635dadaec3a289fa28111f6fcb817ef10";
- sha256 = "1dk44xq1bwlji48bbw1l4i4mqszsp1shfmmfs4q6gxyjs0hzbwpg";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/f1c7ff1c44946f232730066d6c8c25d5b41ffda7/recipes/kubel";
- sha256 = "1rm85bwpsqj600jvri508nn5i17ynyd84aanf8cqqxk5d2wf9x1n";
- name = "recipe";
- };
- packageRequires = [ emacs magit-popup ];
- meta = {
- homepage = "https://melpa.org/#/kubel";
- license = lib.licenses.free;
- };
- }) {};
kubernetes = callPackage ({ dash
, emacs
, fetchFromGitHub
@@ -58311,60 +31002,6 @@
license = lib.licenses.free;
};
}) {};
- kubernetes-helm = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , yaml-mode }:
- melpaBuild {
- pname = "kubernetes-helm";
- ename = "kubernetes-helm";
- version = "20190131.1920";
- src = fetchFromGitHub {
- owner = "abrochard";
- repo = "kubernetes-helm";
- rev = "1d50cb87600630e02bd52894a480627630084636";
- sha256 = "03z0mqg4lyvcnb33c1s3z9l0m47c1ahf45vaz80nh5sz3b4maii3";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/269c73e26b3d0cc51bbac8b63bb3782f7428ab40/recipes/kubernetes-helm";
- sha256 = "0rik7qz5m2hxylmdsjdnrlj52sm7c669milxxp5i1a1c44621xa6";
- name = "recipe";
- };
- packageRequires = [ emacs yaml-mode ];
- meta = {
- homepage = "https://melpa.org/#/kubernetes-helm";
- license = lib.licenses.free;
- };
- }) {};
- kubernetes-tramp = callPackage ({ cl-lib ? null
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "kubernetes-tramp";
- ename = "kubernetes-tramp";
- version = "20181228.122";
- src = fetchFromGitHub {
- owner = "gruggiero";
- repo = "kubernetes-tramp";
- rev = "8713571b66940f8f3f496b55baa23cdf1df7a869";
- sha256 = "05xbpdgxglqw7s2chay32s5kmglpd446dg3vh02d1462lh474snf";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/8ea4b15e64a9dc33b9977650488693cacadd1ab1/recipes/kubernetes-tramp";
- sha256 = "15nlx3w2v0gky0zgbx7n0w1mdr6yaj4dh028ay2k19wg8wbsckjq";
- name = "recipe";
- };
- packageRequires = [ cl-lib emacs ];
- meta = {
- homepage = "https://melpa.org/#/kubernetes-tramp";
- license = lib.licenses.free;
- };
- }) {};
kurecolor = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -58392,82 +31029,6 @@
license = lib.licenses.free;
};
}) {};
- kv = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "kv";
- ename = "kv";
- version = "20140108.734";
- src = fetchFromGitHub {
- owner = "nicferrier";
- repo = "emacs-kv";
- rev = "721148475bce38a70e0b678ba8aa923652e8900e";
- sha256 = "0r0lz2s6gvy04fwnafai668jsf4546h4k6zd6isx5wpk0n33pj5m";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/kv";
- sha256 = "0c10r7mhg517p62lc87ccqypsjrm28xh3bgv4f01fnx569jqgzgp";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/kv";
- license = lib.licenses.free;
- };
- }) {};
- kwin = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "kwin";
- ename = "kwin";
- version = "20150308.1112";
- src = fetchFromGitHub {
- owner = "reactormonk";
- repo = "kwin-minor-mode";
- rev = "d4f8f3593598b71ee596e0a87b2c1d6a912a9566";
- sha256 = "0irbfgip493hyh45msnb7climgfwr8f05nvc97bzaqggnay88scy";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/04e6d622a1f1cb765c33297a99f06ed513985498/recipes/kwin";
- sha256 = "1pxnyj81py3ygadmyfrqndb0jkk6xlbf0rg3857hsy3ccblzm7ki";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/kwin";
- license = lib.licenses.free;
- };
- }) {};
- lab-themes = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "lab-themes";
- ename = "lab-themes";
- version = "20190320.1127";
- src = fetchFromGitHub {
- owner = "MetroWind";
- repo = "lab-theme";
- rev = "06b55ef3d82a8ad23189caf8de76ef81fc0aba31";
- sha256 = "0dgs2gp5q3hfp8j1gbdkf26jwjjw04ggx34zrv35wg8yr26ah440";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/c5817cb4cb3a573f93bacfb8ef340bef0e1c5df4/recipes/lab-themes";
- sha256 = "10gvrrbqp6rxc9kwk8315pa1ldmja42vwr31xskjaq0l4fd28kx0";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/lab-themes";
- license = lib.licenses.free;
- };
- }) {};
labburn-theme = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -58493,83 +31054,6 @@
license = lib.licenses.free;
};
}) {};
- lammps-mode = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "lammps-mode";
- ename = "lammps-mode";
- version = "20180801.619";
- src = fetchFromGitHub {
- owner = "HaoZeke";
- repo = "lammps-mode";
- rev = "a5b68d7a59975770b56ee8f6e66fa4f703a72ffe";
- sha256 = "1ma33bszv7d6am47n5r74ja4ks7n46m8xfkkr3vcqymlfhbdpq73";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/8f5471a8e17977c17ad84b12a77fe80f37eda25e/recipes/lammps-mode";
- sha256 = "06i48pxp9vq4z7hffna0cndr6iblapim169659pmhidbc4pp7bm4";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/lammps-mode";
- license = lib.licenses.free;
- };
- }) {};
- lang-refactor-perl = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "lang-refactor-perl";
- ename = "lang-refactor-perl";
- version = "20131122.1327";
- src = fetchFromGitHub {
- owner = "jplindstrom";
- repo = "emacs-lang-refactor-perl";
- rev = "691bd69639de6b7af357e3b7143563ececd9c497";
- sha256 = "135k7inkvdz51j7al3nndaamrkyn989vlv1mxcp8lwx8cgq0rqfj";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/6bbbf89b71364720dd39e2cf902271108151b5ca/recipes/lang-refactor-perl";
- sha256 = "02fv25d76rvxqzxs48j4lkrifdhqayyb1in05ryyz2pk9x5hbax9";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/lang-refactor-perl";
- license = lib.licenses.free;
- };
- }) {};
- langdoc = callPackage ({ cl-lib ? null
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "langdoc";
- ename = "langdoc";
- version = "20150217.2245";
- src = fetchFromGitHub {
- owner = "tom-tan";
- repo = "langdoc";
- rev = "2c7223bacb116992d700ecb19a60df5c09c63424";
- sha256 = "0svci7xs4iysv8ysf93g382arip0xpgi0fllw8xx2vrd70sz7lff";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/defe78f12dbd7137bed7b1a309caa579e220f7dc/recipes/langdoc";
- sha256 = "19i6ys58wswl5ckf33swl6lsfzg4znx850br4icik15yrry65yj7";
- name = "recipe";
- };
- packageRequires = [ cl-lib ];
- meta = {
- homepage = "https://melpa.org/#/langdoc";
- license = lib.licenses.free;
- };
- }) {};
langtool = callPackage ({ cl-lib ? null
, fetchFromGitHub
, fetchurl
@@ -58596,33 +31080,6 @@
license = lib.licenses.free;
};
}) {};
- language-detection = callPackage ({ cl-lib ? null
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "language-detection";
- ename = "language-detection";
- version = "20161123.1013";
- src = fetchFromGitHub {
- owner = "andreasjansson";
- repo = "language-detection.el";
- rev = "38f5d294870678efc6ccf94ce6e8175a58f93025";
- sha256 = "0jm3ybi353kjffvgy489b5x1yd8vi2vxdmn32z4c42zrnmg5a6lv";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/ed2b68d0a11e5db0e7f2f5cbb2eb93c298bcb765/recipes/language-detection";
- sha256 = "1c613dj6j05idqyjd6ix7llw04d0327aicac04cicrb006km3r51";
- name = "recipe";
- };
- packageRequires = [ cl-lib emacs ];
- meta = {
- homepage = "https://melpa.org/#/language-detection";
- license = lib.licenses.free;
- };
- }) {};
language-id = callPackage ({ cl-lib ? null
, emacs
, fetchFromGitHub
@@ -58650,34 +31107,6 @@
license = lib.licenses.free;
};
}) {};
- lastpass = callPackage ({ cl-lib ? null
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , seq }:
- melpaBuild {
- pname = "lastpass";
- ename = "lastpass";
- version = "20171208.216";
- src = fetchFromGitHub {
- owner = "storvik";
- repo = "emacs-lastpass";
- rev = "a4529ce70b8187ed9ac4972997df152af58ef2eb";
- sha256 = "1h4h7swww2is7qblqi5r1vh26a9lfl52c0yq7rgwd1pqclffgc8m";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/46e5e8735baab7728bddce2693cea6bcee0e6360/recipes/lastpass";
- sha256 = "0x4c9c110nqv3v6kzcxdg9a9zcg7yn1hj6ffgrbsd8c3wbrdxrlj";
- name = "recipe";
- };
- packageRequires = [ cl-lib emacs seq ];
- meta = {
- homepage = "https://melpa.org/#/lastpass";
- license = lib.licenses.free;
- };
- }) {};
latex-extra = callPackage ({ auctex
, cl-lib ? null
, fetchFromGitHub
@@ -58730,55 +31159,6 @@
license = lib.licenses.free;
};
}) {};
- latex-pretty-symbols = callPackage ({ fetchhg
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "latex-pretty-symbols";
- ename = "latex-pretty-symbols";
- version = "20151112.244";
- src = fetchhg {
- url = "https://bitbucket.com/mortiferus/latex-pretty-symbols.el";
- rev = "ef4ea64c09ea";
- sha256 = "0h9hncf2ghfkd3i3342ajj1niykhfr0aais3j6sjg1vkm16xbr3b";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5b7972602399f9df9139cff177e38653bb0f43ed/recipes/latex-pretty-symbols";
- sha256 = "1f2s2f64bmsx89a3crm4skhdi4pq9w18z9skxw3i3ydaj15s8jgl";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/latex-pretty-symbols";
- license = lib.licenses.free;
- };
- }) {};
- latex-preview-pane = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "latex-preview-pane";
- ename = "latex-preview-pane";
- version = "20181008.1122";
- src = fetchFromGitHub {
- owner = "jsinglet";
- repo = "latex-preview-pane";
- rev = "5297668a89996b50b2b62f99cba01cc544dbed2e";
- sha256 = "1m4f5p53275k8i9p0y105kkrp9nx1bwn6726my9s5dwnjhr5dnp2";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/bb3227f2e35d701915a8d3479d20581dcbe3a778/recipes/latex-preview-pane";
- sha256 = "1id1l473azmc9hm5vq5wba8gad9np7sv38x94qd2zkf8b78pzkbw";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/latex-preview-pane";
- license = lib.licenses.free;
- };
- }) {};
latex-unicode-math-mode = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -58804,135 +31184,6 @@
license = lib.licenses.free;
};
}) {};
- latexdiff = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "latexdiff";
- ename = "latexdiff";
- version = "20180521.1532";
- src = fetchFromGitHub {
- owner = "galaunay";
- repo = "latexdiff.el";
- rev = "024ee7a4fd235695dacd9f53594fef3d79bee88b";
- sha256 = "17xpkbrwfck0m6zp5d1b9b4slkgyvm8d92nzilb4s1rf9nqf9mvw";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/d164cf118a2c928c04e4d5cbfd47ac732e626fe0/recipes/latexdiff";
- sha256 = "002frvk31q3plrqa6lldadchck51bch4n126y5l33fyfs0ipspfa";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/latexdiff";
- license = lib.licenses.free;
- };
- }) {};
- launch = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "launch";
- ename = "launch";
- version = "20130619.1504";
- src = fetchFromGitHub {
- owner = "sfllaw";
- repo = "emacs-launch";
- rev = "e7c3b573fc05fe4d3d322389079909311542e799";
- sha256 = "0ciycsqzyj6ld60c7sfqjq59ln3jvk3w9vy606kqzpcvj01ihmv1";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/8e46ed1761fa2e69f0dc2f58e422ea1de8a8cb49/recipes/launch";
- sha256 = "043gwz583pa1wv84fl634p1v86lcsldsw7qkjbm6y678q5mms0m6";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/launch";
- license = lib.licenses.free;
- };
- }) {};
- launch-mode = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "launch-mode";
- ename = "launch-mode";
- version = "20170105.2112";
- src = fetchFromGitHub {
- owner = "iory";
- repo = "launch-mode";
- rev = "25ebd4ba77afcbe729901eb74923dbe9ae81c313";
- sha256 = "1pjb4gwzkk6djzyfqqxf6y5xvrsh4bi5ijg60zrdlnhivggnfbvn";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/876755fff14914b10a26d15f0c7ff32be7c51aa3/recipes/launch-mode";
- sha256 = "1za0h16z84ls7da17qzqady0simzy5pk1mlw3mb0nhlg2cfmn060";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/launch-mode";
- license = lib.licenses.free;
- };
- }) {};
- launchctl = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "launchctl";
- ename = "launchctl";
- version = "20150518.609";
- src = fetchFromGitHub {
- owner = "pekingduck";
- repo = "launchctl-el";
- rev = "79842d30134a2f8838ffb909e87f6200ea148428";
- sha256 = "18fmgvfhv3kz1bpf9icipsmq9ifahhplv9q1b3rw8bbjcl5jrnb5";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/66d0d8c6f7cb66e56328a9cfe9cdef6dffc3c1be/recipes/launchctl";
- sha256 = "07fq445cjpv4ndi7hnjmsrmskm2rlp6ghq0k3bcbjxl21smd9vs9";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/launchctl";
- license = lib.licenses.free;
- };
- }) {};
- lavender-theme = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "lavender-theme";
- ename = "lavender-theme";
- version = "20170808.613";
- src = fetchFromGitHub {
- owner = "emacsfodder";
- repo = "emacs-lavender-theme";
- rev = "ef5e959b95d7fb8152137bc186c4c24e986c1e3c";
- sha256 = "0pbpns387fmalkakbdl2q7d2y720m7ai7mnydsinjwlkdrshvj4g";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/641d1959bd31598fcdacd39a3d1bb077dcccfa5c/recipes/lavender-theme";
- sha256 = "1x7mk3dpk44fkzll6xmh2dw270cgb3a9qs3h8bmiq2dw0wrcwcd1";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/lavender-theme";
- license = lib.licenses.free;
- };
- }) {};
lcb-mode = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -58986,37 +31237,6 @@
license = lib.licenses.free;
};
}) {};
- lean-mode = callPackage ({ dash
- , dash-functional
- , emacs
- , f
- , fetchFromGitHub
- , fetchurl
- , flycheck
- , lib
- , melpaBuild
- , s }:
- melpaBuild {
- pname = "lean-mode";
- ename = "lean-mode";
- version = "20180906.945";
- src = fetchFromGitHub {
- owner = "leanprover";
- repo = "lean-mode";
- rev = "a9912c73387aa69183e12e4a5335128a7965c420";
- sha256 = "1w0cmircqnbi0qyi6sl3nnshjy2fdgaav88lj30g3qmnyiac1dnz";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/42f4d6438c8aeb94ebc1782f2f5e2abd17f0ffde/recipes/lean-mode";
- sha256 = "0rdraxsirkrzbinjwg4qam15iy3qiixqgwsckngzw8d9a4s9l6sj";
- name = "recipe";
- };
- packageRequires = [ dash dash-functional emacs f flycheck s ];
- meta = {
- homepage = "https://melpa.org/#/lean-mode";
- license = lib.licenses.free;
- };
- }) {};
leanote = callPackage ({ async
, cl-lib ? null
, emacs
@@ -59101,107 +31321,6 @@
license = lib.licenses.free;
};
}) {};
- leerzeichen = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "leerzeichen";
- ename = "leerzeichen";
- version = "20170422.613";
- src = fetchFromGitHub {
- owner = "fgeller";
- repo = "leerzeichen.el";
- rev = "5acf9855ecb2b2cd5da4402bb48df149e7525cc5";
- sha256 = "1bx4pv51a9x8f51pjrms8jkfrpa3glwkh308svz05gnyi2g0r8hw";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5de7033e75bc28de6e50b2146511cdaac4542ad6/recipes/leerzeichen";
- sha256 = "0h7zpskcgkswr110vckfdbxggz5b3g9grk1j1cbd98pmrpgfqrvp";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/leerzeichen";
- license = lib.licenses.free;
- };
- }) {};
- legalese = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "legalese";
- ename = "legalese";
- version = "20150820.1024";
- src = fetchFromGitHub {
- owner = "jorgenschaefer";
- repo = "legalese";
- rev = "ec23e69d18329456beed9546a1d6c72f96db91cf";
- sha256 = "05zpc8b2pyjz76fvmgr7zkl56g6nf6hi4nmxdg6gkw8fx6p8i19f";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/0fda2b54a0ff0b6fc3bd6d20cfcbbf63cae5380f/recipes/legalese";
- sha256 = "18rkvfknaqwkmhsjpgrf2hknrb2zj61aw8rb4907gsbs9rciqpdd";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/legalese";
- license = lib.licenses.free;
- };
- }) {};
- lemon-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "lemon-mode";
- ename = "lemon-mode";
- version = "20130216.504";
- src = fetchFromGitHub {
- owner = "mooz";
- repo = "lemon-mode";
- rev = "155bfced6c9afc8072a0133d3d1baa54c6d67430";
- sha256 = "0n6jrm5ilm5wzfrh7yjxn3sr5m10hwdm55b179ild32lh4795zj7";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/6163d4cf36031349480039b82de8cdc75c2db169/recipes/lemon-mode";
- sha256 = "0jdf3556kmv55jh85ljqh2gdx0jl2b8zgvpz9a4kf53xifk3lqz5";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/lemon-mode";
- license = lib.licenses.free;
- };
- }) {};
- lenlen-theme = callPackage ({ color-theme-solarized
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "lenlen-theme";
- ename = "lenlen-theme";
- version = "20170328.1945";
- src = fetchFromGitHub {
- owner = "zk-phi";
- repo = "lenlen-theme";
- rev = "3af764f0b381bdbf04b1a9064695abbe7916bbc3";
- sha256 = "1zlgb3s7gdh0ypsjw4ck7ai6hqf54cakd1walj8qqhia23g76mxq";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/47d5b3c931cdbc2351e01d15e2b98c78081c9506/recipes/lenlen-theme";
- sha256 = "1bddkcl9kzj3v071qpzmxzjwywqfj5j6cldz240qgp5mx685r0a9";
- name = "recipe";
- };
- packageRequires = [ color-theme-solarized ];
- meta = {
- homepage = "https://melpa.org/#/lenlen-theme";
- license = lib.licenses.free;
- };
- }) {};
lentic = callPackage ({ dash
, emacs
, f
@@ -59232,33 +31351,6 @@
license = lib.licenses.free;
};
}) {};
- lentic-server = callPackage ({ fetchFromGitHub
- , fetchurl
- , lentic
- , lib
- , melpaBuild
- , web-server }:
- melpaBuild {
- pname = "lentic-server";
- ename = "lentic-server";
- version = "20160717.1352";
- src = fetchFromGitHub {
- owner = "phillord";
- repo = "lentic-server";
- rev = "8e809fafbb27a98f815b544d9d9ee15843eb6a36";
- sha256 = "1wc1c6hqhbb5x4fi7lp30bsrfww9g12c41lphswy92qzlij4zbww";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/10b8cc0b4612d7d02be3a74c21b762cbf7613bd6/recipes/lentic-server";
- sha256 = "1y9idhf9qcsw3dbdj7rwa7bdrn1q0m3bg3r2jzwdnvkq8aas1w56";
- name = "recipe";
- };
- packageRequires = [ lentic web-server ];
- meta = {
- homepage = "https://melpa.org/#/lentic-server";
- license = lib.licenses.free;
- };
- }) {};
less-css-mode = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -59309,107 +31401,6 @@
license = lib.licenses.free;
};
}) {};
- letterbox-mode = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "letterbox-mode";
- ename = "letterbox-mode";
- version = "20170701.1825";
- src = fetchFromGitHub {
- owner = "pacha64";
- repo = "letterbox-mode";
- rev = "88c67a51d67216d569a28e8423200883fde096dd";
- sha256 = "1xzzfr525pn2mj7x6xnvccxhls79bfpi5mqhl9ivisnlgj1bvdjw";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1512e20962ea354e4311c0a2696a22576a099ba9/recipes/letterbox-mode";
- sha256 = "117dj5xzf6givwjyqsciz6axhlcj7xbx0zj91ximm81kb5fswgda";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/letterbox-mode";
- license = lib.licenses.free;
- };
- }) {};
- leuven-theme = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "leuven-theme";
- ename = "leuven-theme";
- version = "20190308.734";
- src = fetchFromGitHub {
- owner = "fniessen";
- repo = "emacs-leuven-theme";
- rev = "916c0f3b562b5b0e4f4294b83decda941fb183b1";
- sha256 = "1garn9rkn1jmv1w329qdw0mbn11j467kfp64902ncajl3590x2ly";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/b09451f4eb2be820e94d3fecbf4ec7cecd2cabdc/recipes/leuven-theme";
- sha256 = "0pm5majr9cmj6g4zr7vb55ypk9fmfbvxx78mgmgignknbasq9g9a";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/leuven-theme";
- license = lib.licenses.free;
- };
- }) {};
- levenshtein = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "levenshtein";
- ename = "levenshtein";
- version = "20090830.340";
- src = fetchFromGitHub {
- owner = "emacsorphanage";
- repo = "levenshtein";
- rev = "070925197ebf6b704e6e00c4f2d2ec783f3df38c";
- sha256 = "1w6rhp723kn1ns7r0gcblp5q8bvncicnjjsgdangbib1a4l2xw79";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/ae489be43b1aee93614e40f492ebdf0b98a3fbc1/recipes/levenshtein";
- sha256 = "1vdbgzs7gfy89a1dzf6z5l3f5jmly1i8lb2fqi2d08qyl5rhb8bl";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/levenshtein";
- license = lib.licenses.free;
- };
- }) {};
- lexbind-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "lexbind-mode";
- ename = "lexbind-mode";
- version = "20141027.729";
- src = fetchFromGitHub {
- owner = "spacebat";
- repo = "lexbind-mode";
- rev = "fa0a6848c1cfd3fbf45db43dc2deef16377d887d";
- sha256 = "167ayfl1k8dnajw173hh67nbwbk4frmjc4fzc515q67m9d7m5932";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/f3a493e642cc90bbe1c70a2d918793f0734464c9/recipes/lexbind-mode";
- sha256 = "1hs9wg45mwp3fwi827rc4g0gjx4fk87zlibq3id9fcqic8q7nrnl";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/lexbind-mode";
- license = lib.licenses.free;
- };
- }) {};
lfe-mode = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -59462,57 +31453,6 @@
license = lib.licenses.free;
};
}) {};
- libgit = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "libgit";
- ename = "libgit";
- version = "20190323.1055";
- src = fetchFromGitHub {
- owner = "magit";
- repo = "libegit2";
- rev = "f80d380156a1ba2a9caf7e964cb96acccde8b514";
- sha256 = "0azq7ni5z2fpl43s63zalnf2n3y55dsq4dp1v2yhq9j6sm5ds1di";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/993a5abe3a9e8b160f0d68283eeca6af033abc79/recipes/libgit";
- sha256 = "05yys8cjli2zhmhdh9w5qz287ibzplqabx5vyyjv9rpk6wgzkzik";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/libgit";
- license = lib.licenses.free;
- };
- }) {};
- libmpdee = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "libmpdee";
- ename = "libmpdee";
- version = "20160117.1501";
- src = fetchFromGitHub {
- owner = "andyetitmoves";
- repo = "libmpdee";
- rev = "a6ca3b7d6687f3ba60996b9b5044ad1d3b228290";
- sha256 = "039awlam3nrgkxrarcapfyc2myvc77aw7whrkcsjjybzylpzv0pr";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/fc91db6f80463a1baea9759f9863b551ae21e180/recipes/libmpdee";
- sha256 = "0z4d8y8jlsjw20b31akkaikh5xl0c05lj77d2i1xbgzam4iixma0";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/libmpdee";
- license = lib.licenses.free;
- };
- }) {};
libmpdel = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -59564,59 +31504,6 @@
license = lib.licenses.free;
};
}) {};
- light-soap-theme = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "light-soap-theme";
- ename = "light-soap-theme";
- version = "20150607.745";
- src = fetchFromGitHub {
- owner = "mswift42";
- repo = "light-soap-theme";
- rev = "76a787bd40c6b567ae68ced7f5d9f9f10725e00d";
- sha256 = "04dik8z2mg6qr4d3fkd26kg29b4c5crvbnc1lfsrzyrik7ipvsi8";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/053be1123bb934d80b4d6db0e7e39b59771be035/recipes/light-soap-theme";
- sha256 = "09p4w51d5szhi81a6a3l0r4zd4ixkrkzxldr938bcmj0qmj62iyk";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/light-soap-theme";
- license = lib.licenses.free;
- };
- }) {};
- line-reminder = callPackage ({ cl-lib ? null
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "line-reminder";
- ename = "line-reminder";
- version = "20190407.809";
- src = fetchFromGitHub {
- owner = "jcs090218";
- repo = "line-reminder";
- rev = "9de2c301f433453dc0ff06e7c78f580dd6f5314f";
- sha256 = "1cza4bi1plw3r4j2bxkm4w57db9nxvcf3p8xfvicipsv556k934r";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/456f760f7f7d4151e18f08b2f1154c5880423b21/recipes/line-reminder";
- sha256 = "0kvqilg5fnr3qb7nwjf4j5ydm1lp4m06ss81i0bq2c6bv74zfcf1";
- name = "recipe";
- };
- packageRequires = [ cl-lib emacs ];
- meta = {
- homepage = "https://melpa.org/#/line-reminder";
- license = lib.licenses.free;
- };
- }) {};
line-up-words = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -59642,32 +31529,6 @@
license = lib.licenses.free;
};
}) {};
- lines-at-once = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "lines-at-once";
- ename = "lines-at-once";
- version = "20180421.1947";
- src = fetchFromGitHub {
- owner = "jiahaowork";
- repo = "lines-at-once.el";
- rev = "a018ba90549384d52ec58c2685fd14a0f65252be";
- sha256 = "0bwc4d2gnfhaqzn455nzrvd9lys7z7ay2v1hxgwp99ndqq93ws6i";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/513d0f0c6976f685fc0df6b6bb0da3162f58f537/recipes/lines-at-once";
- sha256 = "1hiij6i47i9px82ll87dvx5pgp5jzz8qis7hdm8n6hd3c9rnabma";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/lines-at-once";
- license = lib.licenses.free;
- };
- }) {};
lingr = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -59743,84 +31604,6 @@
license = lib.licenses.free;
};
}) {};
- link-hint = callPackage ({ avy
- , cl-lib ? null
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "link-hint";
- ename = "link-hint";
- version = "20190312.1604";
- src = fetchFromGitHub {
- owner = "noctuid";
- repo = "link-hint.el";
- rev = "d74a483652486260c052941fedeadddb1ea71f88";
- sha256 = "0dghxd165fbds6czy9bfwpid3i4irgp3q08n9mg57sfifi0cmij0";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/d24b48fe0bc127ae6ac4084be8059aacb8445afd/recipes/link-hint";
- sha256 = "12fb2zm9jnh92fc2nzmzmwjlhi64rhakwbh9lsydx9svsvkgcs89";
- name = "recipe";
- };
- packageRequires = [ avy cl-lib emacs ];
- meta = {
- homepage = "https://melpa.org/#/link-hint";
- license = lib.licenses.free;
- };
- }) {};
- linphone = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "linphone";
- ename = "linphone";
- version = "20130524.409";
- src = fetchFromGitHub {
- owner = "zabbal";
- repo = "emacs-linphone";
- rev = "99af3db941b7f4e5272bb48bff96c1ce4ceac302";
- sha256 = "01yv6239z90hvncwmm9g5nh4xvyxv2ig3h4hsmxdn4kacfxvc84n";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/c0ea68b186c813faceb6fc663633cb81df666f0e/recipes/linphone";
- sha256 = "0q7mw1npxq24szhwswc93qz5h6magcxw63ymba7hwhif6my65zx7";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/linphone";
- license = lib.licenses.free;
- };
- }) {};
- linum-off = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "linum-off";
- ename = "linum-off";
- version = "20160217.1337";
- src = fetchFromGitHub {
- owner = "mattfidler";
- repo = "linum-off";
- rev = "3e37baaad27d27e405f8dfe01d4ab9cd5b591353";
- sha256 = "1hyy6d9ybdv9r6bibiylw66a8w4dmlvsj5gfkp37vsp5xj66f2iz";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/c3774ed0cf6fb8c6d08553dc709c7e76a745b2e0/recipes/linum-off";
- sha256 = "1yilsdsyxlzmh64dpzirzga9c7lhp1phps9cdgp2898zpnzaclay";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/linum-off";
- license = lib.licenses.free;
- };
- }) {};
linum-relative = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -59846,121 +31629,6 @@
license = lib.licenses.free;
};
}) {};
- liquid-types = callPackage ({ button-lock
- , dash
- , emacs
- , fetchFromGitHub
- , fetchurl
- , flycheck
- , flycheck-liquidhs
- , lib
- , melpaBuild
- , popup
- , pos-tip }:
- melpaBuild {
- pname = "liquid-types";
- ename = "liquid-types";
- version = "20151201.2335";
- src = fetchFromGitHub {
- owner = "ucsd-progsys";
- repo = "liquid-types.el";
- rev = "cc4bacbbf204ef9cf0756f78dfebee2c6ae14d7b";
- sha256 = "06rnma2xj2vnbvy1bnls59cagk6qsf862bj1zp6xbmpr1a5l9m4z";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/d5921fde4068ff1bb288f6f9e2fe03f4a7fdbbda/recipes/liquid-types";
- sha256 = "1g7zyak69l4lcsq952j2jy692xxnill9nqb1xfa17yzp547cgvf2";
- name = "recipe";
- };
- packageRequires = [
- button-lock
- dash
- emacs
- flycheck
- flycheck-liquidhs
- popup
- pos-tip
- ];
- meta = {
- homepage = "https://melpa.org/#/liquid-types";
- license = lib.licenses.free;
- };
- }) {};
- liso-theme = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "liso-theme";
- ename = "liso-theme";
- version = "20160410.1329";
- src = fetchFromGitHub {
- owner = "caisah";
- repo = "liso-theme";
- rev = "844688245eb860d23043455e165ee24503454c81";
- sha256 = "01ycjy3amzbplp3zf0x5fahsja92gyg2252xhzcyiazmhaz7gkrd";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/27b849f3a41a5ae3d497cef02a95c92fd479b93b/recipes/liso-theme";
- sha256 = "014a71dnhnr0dr36sl2h8ffp6il9nasij31ahqz0bjgn4r16s5gy";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/liso-theme";
- license = lib.licenses.free;
- };
- }) {};
- lisp-extra-font-lock = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "lisp-extra-font-lock";
- ename = "lisp-extra-font-lock";
- version = "20181008.1221";
- src = fetchFromGitHub {
- owner = "Lindydancer";
- repo = "lisp-extra-font-lock";
- rev = "4605eccbe1a7fcbd3cacf5b71249435413b4db4f";
- sha256 = "152vcp3mdlv33jf5va4rinl1d0k960gnfhbrqqrafazgx9j3ya8w";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/13e01d4faf9ecb4dde8b6eb4acdb0e48e3e5b6ea/recipes/lisp-extra-font-lock";
- sha256 = "1xchqwhav9x7b02787ghka567fihdc14aamx92jg549c6d14qpwk";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/lisp-extra-font-lock";
- license = lib.licenses.free;
- };
- }) {};
- lispxmp = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "lispxmp";
- ename = "lispxmp";
- version = "20170925.1723";
- src = fetchFromGitHub {
- owner = "rubikitch";
- repo = "lispxmp";
- rev = "7ad077b4ee91ce8a42f84eeddb9fc7ea4eac7814";
- sha256 = "1156jynii783v9sjj3a7s20ysa26mqaq22zk5nbia949hwbibx16";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/ad10a684b4b2f01bc65883374f36fef156ff55d2/recipes/lispxmp";
- sha256 = "1a641v5cx4wy2v8a2swxzn1y9cz4g2bp4mn9q290n3ifpn5356dl";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/lispxmp";
- license = lib.licenses.free;
- };
- }) {};
lispy = callPackage ({ ace-window
, emacs
, fetchFromGitHub
@@ -60017,60 +31685,6 @@
license = lib.licenses.free;
};
}) {};
- lispyville = callPackage ({ cl-lib ? null
- , emacs
- , evil
- , fetchFromGitHub
- , fetchurl
- , lib
- , lispy
- , melpaBuild }:
- melpaBuild {
- pname = "lispyville";
- ename = "lispyville";
- version = "20181217.647";
- src = fetchFromGitHub {
- owner = "noctuid";
- repo = "lispyville";
- rev = "d28b937f0cabd8ce61e2020fe9a733ca80d82c74";
- sha256 = "0f6srwj1qqkfkbmp5n5pjvi6gm7b7xav05p5hrs2i83rjrakzzqx";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/b5d96d3603dc328467fcce29d3ac1b0a02833d51/recipes/lispyville";
- sha256 = "1pj41pd51x399gmy0j3qn9hr3ayw31pcg0h9pzbviqpnwmv2in6b";
- name = "recipe";
- };
- packageRequires = [ cl-lib emacs evil lispy ];
- meta = {
- homepage = "https://melpa.org/#/lispyville";
- license = lib.licenses.free;
- };
- }) {};
- list-environment = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "list-environment";
- ename = "list-environment";
- version = "20151226.1856";
- src = fetchFromGitHub {
- owner = "dgtized";
- repo = "list-environment.el";
- rev = "b7ca30b05905047be2e55199a6475f8d98ce318b";
- sha256 = "1szbs16jlxfj71986dbg0d3j5raaxcwz0xq5ar352731r5mdcqw4";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/696cd1647731eb1a22afb95f558c96a1b4aa5121/recipes/list-environment";
- sha256 = "1zdhrlp8vk8knjwh56pws6dyn003r6avjzvhghlkgnw9nfrdk57h";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/list-environment";
- license = lib.licenses.free;
- };
- }) {};
list-packages-ext = callPackage ({ fetchFromGitHub
, fetchurl
, ht
@@ -60175,58 +31789,6 @@
license = lib.licenses.free;
};
}) {};
- litable = callPackage ({ dash
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "litable";
- ename = "litable";
- version = "20160922.859";
- src = fetchFromGitHub {
- owner = "Fuco1";
- repo = "litable";
- rev = "4a57d7aeddca76448e4df2a46b42d49253e5e625";
- sha256 = "1zryrc0d2avb27w6a6yzqcc73rsr2rp795vi10qhb04ixda4a8w4";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/74f2190b653907985e49a96ded986ab11b4946d7/recipes/litable";
- sha256 = "073yw3ivkl093xxppn5vqyh69jhfc97al505mnyn34fwdj5v8fji";
- name = "recipe";
- };
- packageRequires = [ dash ];
- meta = {
- homepage = "https://melpa.org/#/litable";
- license = lib.licenses.free;
- };
- }) {};
- litecoin-ticker = callPackage ({ fetchFromGitHub
- , fetchurl
- , json ? null
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "litecoin-ticker";
- ename = "litecoin-ticker";
- version = "20160611.1711";
- src = fetchFromGitHub {
- owner = "llcc";
- repo = "btcbox-ticker";
- rev = "3d8047c736e4ee0b8638953f8cc63eaefad34106";
- sha256 = "03iggfi3r5xjh9yhhpr1pgyayriycyybf8qnrhqkqcamh77kq21f";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/4976446a8ae40980d502186615902fc05c15ec7c/recipes/litecoin-ticker";
- sha256 = "14pjizgdckqhm31ihbz35j8g95jdpmf1rd4l5zz38fyx12zbcpx5";
- name = "recipe";
- };
- packageRequires = [ json ];
- meta = {
- homepage = "https://melpa.org/#/litecoin-ticker";
- license = lib.licenses.free;
- };
- }) {};
literal-string = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -60289,12 +31851,12 @@
melpaBuild {
pname = "literate-elisp";
ename = "literate-elisp";
- version = "0.4";
+ version = "0.5";
src = fetchFromGitHub {
owner = "jingtaozf";
repo = "literate-elisp";
- rev = "0724b62d98cb9d9c7f3d171c322a1059648746f5";
- sha256 = "0nnfp8rj4avn462w3fwln8c7sai3psz7kp97r3iyq4v9wavgdni2";
+ rev = "d0f228089f011b8e4f2c40784c55168120181f97";
+ sha256 = "08msx8r3vdpx9ihjf2qd2xlk5jni3h4jyk65a36nm1r3z439jd83";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/fd4c1c4da2a5571babda9a29a56b8972ad0687c0/recipes/literate-elisp";
@@ -60307,32 +31869,6 @@
license = lib.licenses.free;
};
}) {};
- literate-starter-kit = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "literate-starter-kit";
- ename = "literate-starter-kit";
- version = "20150730.1154";
- src = fetchFromGitHub {
- owner = "eschulte";
- repo = "emacs24-starter-kit";
- rev = "6dce1d01781966c14558aa553cfc85008c06e115";
- sha256 = "1v37bii372w2g3pl09n5dcrk6y7glhpg8qiv17zsk9jy3ps2xm1b";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/812860589cd92759fd2ae02d27f287de88f26863/recipes/literate-starter-kit";
- sha256 = "1n2njf007fmrmsb8zrgxbz1cpxmr5nsp8w41yxa934iqc7qygkjy";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/literate-starter-kit";
- license = lib.licenses.free;
- };
- }) {};
live-code-talks = callPackage ({ cl-lib ? null
, emacs
, fetchFromGitHub
@@ -60412,163 +31948,6 @@
license = lib.licenses.free;
};
}) {};
- livereload = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , websocket }:
- melpaBuild {
- pname = "livereload";
- ename = "livereload";
- version = "20170628.2350";
- src = fetchFromGitHub {
- owner = "joaotavora";
- repo = "emacs-livereload";
- rev = "1e501d7e46dbd476c2c7cc9d20b5ac9d41fb1955";
- sha256 = "1z1v2panxrqpam5ysnilx83y6b4dwxmxqhmbgjwfyd1bdmr4iya4";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/330731804c442226fa2faaa3da408e9253a1c051/recipes/livereload";
- sha256 = "1z0dbg82l6znz1b03v19a8fnq6b1smikpvaplpxlgny82xrs9als";
- name = "recipe";
- };
- packageRequires = [ emacs websocket ];
- meta = {
- homepage = "https://melpa.org/#/livereload";
- license = lib.licenses.free;
- };
- }) {};
- livescript-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "livescript-mode";
- ename = "livescript-mode";
- version = "20140612.2121";
- src = fetchFromGitHub {
- owner = "yhisamatsu";
- repo = "livescript-mode";
- rev = "90a918d9686e256e6d4d439cc20f24dad8d3b804";
- sha256 = "0kqjz0i0zapyhh8z57cvc8ifiizngix3ca01mjnvyq3zxg1bqrsg";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1727cd154c841219b1dff1c8714cb09692e2730f/recipes/livescript-mode";
- sha256 = "1fdfhp39zr2mhy5rd6mwqv5fwd8xaypdqig7v3ksv77m5zq7cmmj";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/livescript-mode";
- license = lib.licenses.free;
- };
- }) {};
- livid-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , s
- , skewer-mode }:
- melpaBuild {
- pname = "livid-mode";
- ename = "livid-mode";
- version = "20131116.544";
- src = fetchFromGitHub {
- owner = "pandeiro";
- repo = "livid-mode";
- rev = "dfe5212fa64738bc4138bfebf349fbc8bc237c26";
- sha256 = "178ldzpk8a9m9abn8xlplxn5jgcca71dpkp82bs5g7bsccp3rx6p";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/b14068485afbd888bf0d124aea089fe5fbd5038c/recipes/livid-mode";
- sha256 = "0jy16m6injqznx4gmxzvhys480pclw9g07z4qll2dna37177ww9d";
- name = "recipe";
- };
- packageRequires = [ s skewer-mode ];
- meta = {
- homepage = "https://melpa.org/#/livid-mode";
- license = lib.licenses.free;
- };
- }) {};
- lms = callPackage ({ emacs
- , fetchhg
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "lms";
- ename = "lms";
- version = "20181216.1446";
- src = fetchhg {
- url = "https://bitbucket.com/inigoserna/lms.el";
- rev = "38302acf2aa3";
- sha256 = "0da14qr7lgkfxksnhf37ss5w6wxkw9qv5hvxk7z76jyzwqdc6w4x";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/b8be8497494b8543a8257c9ea92444baf7674951/recipes/lms";
- sha256 = "1ckrh6qbh5y2y3yzl2iyq8nqlpy4qp6vzc72ijcgayvcflb01vr1";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/lms";
- license = lib.licenses.free;
- };
- }) {};
- load-bash-alias = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , seq }:
- melpaBuild {
- pname = "load-bash-alias";
- ename = "load-bash-alias";
- version = "20181220.955";
- src = fetchFromGitHub {
- owner = "daviderestivo";
- repo = "load-bash-alias";
- rev = "50df445bace7896318f10c58d26b673635704215";
- sha256 = "0m84ylx4j4bp898xc43yrkrk3csr2ppv3c51nirx5gdc5hnhykxj";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/063fa99446bb54fadbbad1af90427462afe8bd8d/recipes/load-bash-alias";
- sha256 = "1maq7wykhn3cvxl8fiws3d2d63zlkzgpd3d9jz3rhyi9rcjcjzak";
- name = "recipe";
- };
- packageRequires = [ emacs seq ];
- meta = {
- homepage = "https://melpa.org/#/load-bash-alias";
- license = lib.licenses.free;
- };
- }) {};
- load-env-vars = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "load-env-vars";
- ename = "load-env-vars";
- version = "20180511.1510";
- src = fetchFromGitHub {
- owner = "diasjorge";
- repo = "emacs-load-env-vars";
- rev = "5da97fabb4d36a00a29c40375fce9c16d8005ab3";
- sha256 = "16xvcb0pq0a6c331grcdak7h8xmns752cz1dbvssm44xfv2cqjqi";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/93835267005c49095a02fc1688b2b449f5acfb86/recipes/load-env-vars";
- sha256 = "0yc05qqhbva2zn2rrl4spp38jxblk4gh64q9fd7mgl7i50f2kk00";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/load-env-vars";
- license = lib.licenses.free;
- };
- }) {};
load-relative = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -60594,31 +31973,6 @@
license = lib.licenses.free;
};
}) {};
- load-theme-buffer-local = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "load-theme-buffer-local";
- ename = "load-theme-buffer-local";
- version = "20120702.1336";
- src = fetchFromGitHub {
- owner = "vic";
- repo = "color-theme-buffer-local";
- rev = "bc221a88aefec5bdc137b5d5e449e1f1e55ce901";
- sha256 = "0yhydmzllwygv6l9vyv23jr5rf2mx1fm7y1jv92dn43ys53bv3sb";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/ca7bf43ef8893bf04e9658390e306ef69e80a156/recipes/load-theme-buffer-local";
- sha256 = "13829yrh36qac7gpxanizlk4n7av99ngvv06y6mmi5rq06a4hjx4";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/load-theme-buffer-local";
- license = lib.licenses.free;
- };
- }) {};
loc-changes = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -60644,82 +31998,6 @@
license = lib.licenses.free;
};
}) {};
- loccur = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "loccur";
- ename = "loccur";
- version = "20181203.1238";
- src = fetchFromGitHub {
- owner = "fourier";
- repo = "loccur";
- rev = "194d70e6be82c4622b7460ca46ced38109ac0507";
- sha256 = "136ixa0w94imwacdjispcn81v5i7pb0qqzy6bzgjw2cr9z9539bx";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/72550b043794331e85bc4b124f6d8ab70d969eff/recipes/loccur";
- sha256 = "06pv2i05yzjzal4q21krbnp9rp4bsainxcwvpc98020vsmms0z8h";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/loccur";
- license = lib.licenses.free;
- };
- }) {};
- lockfile-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "lockfile-mode";
- ename = "lockfile-mode";
- version = "20170624.2207";
- src = fetchFromGitHub {
- owner = "preetpalS";
- repo = "emacs-lockfile-mode";
- rev = "496b6035716df0582f879f9488f296947cabead2";
- sha256 = "0sm73w2in65kdb68m9w3jrr5pa392x75bv063r8cdhy868031l49";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/12a383eb6c29acb007dae9dc777ace3ba84edac9/recipes/lockfile-mode";
- sha256 = "13nr983xldja8m02a1rdnyqxc8g045hxjh6649wmqmqk4mk0m310";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/lockfile-mode";
- license = lib.licenses.free;
- };
- }) {};
- lodgeit = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "lodgeit";
- ename = "lodgeit";
- version = "20150312.649";
- src = fetchFromGitHub {
- owner = "ionrock";
- repo = "lodgeit-el";
- rev = "ec9b8e5cbb17bcf8ac4bdddd1d361cb60e59384c";
- sha256 = "1cdnm270kzixa0kpis0xw2ybkw8lqh7kykc7blxkxjrr9yjvbawl";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/c82e72535aefade20e23e38931ca573e3459401e/recipes/lodgeit";
- sha256 = "1ax2w5yxscycjz90g4jdbhd64g9sipzxpfjs7gq3na77s5dcjzsq";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/lodgeit";
- license = lib.licenses.free;
- };
- }) {};
log4e = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -60745,30 +32023,6 @@
license = lib.licenses.free;
};
}) {};
- log4j-mode = callPackage ({ fetchgit
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "log4j-mode";
- ename = "log4j-mode";
- version = "20160108.1118";
- src = fetchgit {
- url = "https://git.code.sf.net/p/log4j-mode/code";
- rev = "a278948ea07ef8f4fdb6d389345a68b50de14fae";
- sha256 = "0fa2k0c0pp55crz358aw6b26q3mgw6lik498vy8p95vmcy6lb9v3";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/caaa21f235c4864f6008fb454d0a970a2fd22a86/recipes/log4j-mode";
- sha256 = "0311jb47fjji8dqy98anr487f7vnvi85p4mn5ymqvxs5c6972gms";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/log4j-mode";
- license = lib.licenses.free;
- };
- }) {};
logalimacs = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -60820,80 +32074,6 @@
license = lib.licenses.free;
};
}) {};
- lognav-mode = callPackage ({ emacs
- , fetchhg
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "lognav-mode";
- ename = "lognav-mode";
- version = "20190217.832";
- src = fetchhg {
- url = "https://bitbucket.com/ellisvelo/lognav-mode";
- rev = "bec9f3eba66e";
- sha256 = "19axhlcny5i4hfrhxivalxrhpghy2czj92cflq0gb5b6ar6zgkyg";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/ad86b93f4982a0c6291c771e12c8f42ace3b88f9/recipes/lognav-mode";
- sha256 = "1941scifg3nn7gmnki3sa9zvwsbb84w5lw2xjmdx0sh8rbxaw8gb";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/lognav-mode";
- license = lib.licenses.free;
- };
- }) {};
- logpad = callPackage ({ fetchhg
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "logpad";
- ename = "logpad";
- version = "20180607.1215";
- src = fetchhg {
- url = "https://bitbucket.com/tux_/logpad.el";
- rev = "506ace0e996f";
- sha256 = "0z9dq37hsrzjkd3pynqmm8gbiv1sbqnjxlqkyq6lpps5fd9n5vsz";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5148207367bf236223e952a1e4fd600f90571b5e/recipes/logpad";
- sha256 = "1r688z3y98wnr15fg6zzcs4c4yw0l6ygah07gjhblj8b7q7i2qgg";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/logpad";
- license = lib.licenses.free;
- };
- }) {};
- logstash-conf = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "logstash-conf";
- ename = "logstash-conf";
- version = "20170524.1229";
- src = fetchFromGitHub {
- owner = "Wilfred";
- repo = "logstash-conf.el";
- rev = "4e127f9aec190786613445aa88efa307ff7c6748";
- sha256 = "119yb1wk1n5ycfzgpffcwy7yx8ar8k1gza0gvbq3r61ha5a9qijs";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/logstash-conf";
- sha256 = "0djf2kl6jypxlfss4x8ij670v733vid1vbyg6yd96pc9781v3zrm";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/logstash-conf";
- license = lib.licenses.free;
- };
- }) {};
logview = callPackage ({ datetime
, emacs
, extmap
@@ -60922,82 +32102,6 @@
license = lib.licenses.free;
};
}) {};
- lolcode-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "lolcode-mode";
- ename = "lolcode-mode";
- version = "20111002.147";
- src = fetchFromGitHub {
- owner = "bodil";
- repo = "lolcode-mode";
- rev = "280a47e0bf02ee3abc7c5b6b14345056f41981f9";
- sha256 = "1j51h2j0n6mkglalrp1mirpc1v7mgrfxfd1k43rhzg800rb4ahhr";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/572d31a0bd8627d8b5f6bab021c953a1fee31d2c/recipes/lolcode-mode";
- sha256 = "0dxdqr3z5bw0vcfxhhhc1499vrfk1xqwxshr0kvlhdalpf59rqiw";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/lolcode-mode";
- license = lib.licenses.free;
- };
- }) {};
- look-dired = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , look-mode
- , melpaBuild }:
- melpaBuild {
- pname = "look-dired";
- ename = "look-dired";
- version = "20160729.1623";
- src = fetchFromGitHub {
- owner = "vapniks";
- repo = "look-dired";
- rev = "9bfa4e5e6f3810705b6426c88493ea0bf6b15640";
- sha256 = "1yagp35ylznrh3a5ahpzrrxi6ma69ppwqsab3cwss54bi4f02ihn";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/ef66b97b2e9034cb0c62dd1e37b2577ffef60834/recipes/look-dired";
- sha256 = "0dddx5nxr519wqdgrbglh0pqjl3alg4ddmank42g4llzycy61wsd";
- name = "recipe";
- };
- packageRequires = [ look-mode ];
- meta = {
- homepage = "https://melpa.org/#/look-dired";
- license = lib.licenses.free;
- };
- }) {};
- look-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "look-mode";
- ename = "look-mode";
- version = "20151211.1026";
- src = fetchFromGitHub {
- owner = "emacsorphanage";
- repo = "look-mode";
- rev = "d65f75e8ea24eff2ac31c53b4835b45127eedd56";
- sha256 = "1adzlviy928wsqx9fvxi71rwv89zyydqmf5g0wrlx66r0ksw3793";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/ae489be43b1aee93614e40f492ebdf0b98a3fbc1/recipes/look-mode";
- sha256 = "0nhhz5s423g4kqqh0vy8k0696r0myhjfv84p2vciliky9gv1wkig";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/look-mode";
- license = lib.licenses.free;
- };
- }) {};
loop = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -61023,31 +32127,6 @@
license = lib.licenses.free;
};
}) {};
- lorem-ipsum = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "lorem-ipsum";
- ename = "lorem-ipsum";
- version = "20140911.1408";
- src = fetchFromGitHub {
- owner = "jschaf";
- repo = "emacs-lorem-ipsum";
- rev = "893a27505734a1497b79bc26e0736a78221b35d9";
- sha256 = "0grzl4kqpc1x6569yfh9xdzzbgmhcskxwk6f7scjpl32acr88cmx";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/0c09f9b82430992d119d9148314c758f067832cd/recipes/lorem-ipsum";
- sha256 = "0p62yifbrknjn8z0613wy2aaknj44liyrgbknhpa0qn0d4fcrp4h";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/lorem-ipsum";
- license = lib.licenses.free;
- };
- }) {};
love-minor-mode = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -61074,87 +32153,6 @@
license = lib.licenses.free;
};
}) {};
- lsp-elixir = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , lsp-mode
- , melpaBuild }:
- melpaBuild {
- pname = "lsp-elixir";
- ename = "lsp-elixir";
- version = "20190105.1259";
- src = fetchFromGitHub {
- owner = "elixir-lsp";
- repo = "lsp-elixir.el";
- rev = "9fd091c092144a09c0df2d477257c1f4c37bb985";
- sha256 = "0m5hxlx0cnx4rdcz5chxqp074z9h1wj1nvg8dzmilsnmg3kmsshx";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/c875a05e68d09ecf37f7e13149f2624c70164ea3/recipes/lsp-elixir";
- sha256 = "0mimb67swcq2yis0s6w2bkk7sgqv7lyvz1hrh48h2q6qr3ywmq0n";
- name = "recipe";
- };
- packageRequires = [ emacs lsp-mode ];
- meta = {
- homepage = "https://melpa.org/#/lsp-elixir";
- license = lib.licenses.free;
- };
- }) {};
- lsp-haskell = callPackage ({ fetchFromGitHub
- , fetchurl
- , haskell-mode
- , lib
- , lsp-mode
- , melpaBuild }:
- melpaBuild {
- pname = "lsp-haskell";
- ename = "lsp-haskell";
- version = "20190328.2248";
- src = fetchFromGitHub {
- owner = "emacs-lsp";
- repo = "lsp-haskell";
- rev = "33e3ac438338b0a78971cd26aa919482d290c51b";
- sha256 = "1ihc6djxsdrd0q9f79bs0qwxxhw3bnw1kxw2rq92drfnypqbiqcq";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1a7b69312e688211089a23b75910c05efb507e35/recipes/lsp-haskell";
- sha256 = "0pdcxnfp8ng24bfk695wpx5wcdqnjrjsfpks0xicih3mcdm1x9l8";
- name = "recipe";
- };
- packageRequires = [ haskell-mode lsp-mode ];
- meta = {
- homepage = "https://melpa.org/#/lsp-haskell";
- license = lib.licenses.free;
- };
- }) {};
- lsp-intellij = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , lsp-mode
- , melpaBuild }:
- melpaBuild {
- pname = "lsp-intellij";
- ename = "lsp-intellij";
- version = "20180831.1351";
- src = fetchFromGitHub {
- owner = "Ruin0x11";
- repo = "lsp-intellij";
- rev = "cf30f0ac63bd0140e758840b8ab070e8313697b2";
- sha256 = "0ghw2as9fbnfhrr1nbqk97jcl7yb451xpmfbksxh7mvjm3lhmyvz";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/9d72cbb85fe4e0c6bea9a704dc1545f88efa56d2/recipes/lsp-intellij";
- sha256 = "0l2ffxqsdzvddypdl3w9rd7qxy2kzw2iwfkr2w7czglyfbnyyg2b";
- name = "recipe";
- };
- packageRequires = [ emacs lsp-mode ];
- meta = {
- homepage = "https://melpa.org/#/lsp-intellij";
- license = lib.licenses.free;
- };
- }) {};
lsp-java = callPackage ({ dash
, dash-functional
, emacs
@@ -61197,34 +32195,6 @@
license = lib.licenses.free;
};
}) {};
- lsp-javacomp = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , lsp-mode
- , melpaBuild
- , s }:
- melpaBuild {
- pname = "lsp-javacomp";
- ename = "lsp-javacomp";
- version = "20190124.955";
- src = fetchFromGitHub {
- owner = "tigersoldier";
- repo = "lsp-javacomp";
- rev = "82aa4ad6ca03a74565c35e855b318b1887bcd89b";
- sha256 = "0r0ig73hsa0gyx8s6hr1mbdgf9m1n2zh2v7yhq3405l4if08s5m6";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/6b8a1c034554579a7e271409fa72020cfe441f68/recipes/lsp-javacomp";
- sha256 = "1gp8dlcpik2lmpicccq2kya498pmw9m8vz9m1fbd725p7wk58fhi";
- name = "recipe";
- };
- packageRequires = [ emacs lsp-mode s ];
- meta = {
- homepage = "https://melpa.org/#/lsp-javacomp";
- license = lib.licenses.free;
- };
- }) {};
lsp-mode = callPackage ({ dash
, dash-functional
, emacs
@@ -61282,93 +32252,6 @@
license = lib.licenses.free;
};
}) {};
- lsp-scala = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , lsp-mode
- , melpaBuild
- , sbt-mode }:
- melpaBuild {
- pname = "lsp-scala";
- ename = "lsp-scala";
- version = "20190116.1332";
- src = fetchFromGitHub {
- owner = "rossabaker";
- repo = "lsp-scala";
- rev = "b68820cc7aaa9c4f818c4f7999188c20655c3be3";
- sha256 = "1zq2kjsdf88wi4i2my14hw8am9q5dpyfryak1mvp2hpy661hmy7k";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/fd494da0c0c2e2e58afc26d8e79aeeea41c6ee09/recipes/lsp-scala";
- sha256 = "1r8ha0q9gphcs6ihqswgvbhs9b6v6n1pvlqxwjnjwpdhsr5fsw1p";
- name = "recipe";
- };
- packageRequires = [ emacs lsp-mode sbt-mode ];
- meta = {
- homepage = "https://melpa.org/#/lsp-scala";
- license = lib.licenses.free;
- };
- }) {};
- lsp-sourcekit = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , lsp-mode
- , melpaBuild }:
- melpaBuild {
- pname = "lsp-sourcekit";
- ename = "lsp-sourcekit";
- version = "20181216.650";
- src = fetchFromGitHub {
- owner = "emacs-lsp";
- repo = "lsp-sourcekit";
- rev = "99cac71aba68b2ae85c9295d71dda8bc513a85e2";
- sha256 = "0z2yj04if4dhqq2c7am5kzdapaj4l3k0blmy1cp55pr0fkhn8mpj";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/a1e15078916dc053ca2413a6afae51df22321e9e/recipes/lsp-sourcekit";
- sha256 = "1n3lkpyk2mb8a5qc2h00d6dgbp4ws8pwzqljplnnm35sqg6an76k";
- name = "recipe";
- };
- packageRequires = [ emacs lsp-mode ];
- meta = {
- homepage = "https://melpa.org/#/lsp-sourcekit";
- license = lib.licenses.free;
- };
- }) {};
- lsp-treemacs = callPackage ({ dash
- , dash-functional
- , emacs
- , f
- , fetchFromGitHub
- , fetchurl
- , ht
- , lib
- , lsp-mode
- , melpaBuild
- , treemacs }:
- melpaBuild {
- pname = "lsp-treemacs";
- ename = "lsp-treemacs";
- version = "20190328.2351";
- src = fetchFromGitHub {
- owner = "emacs-lsp";
- repo = "lsp-treemacs";
- rev = "5b3f0d3242b272cc31b7620766ff7a7a3d997f20";
- sha256 = "1q7qn1m4qy70qghiq3ac3ri69hq3g0kfxp4sf3bzssh9v2yvxwcl";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/b9996b16461fe7c16b315ef30aa6b75c724f8fef/recipes/lsp-treemacs";
- sha256 = "1lgpph7mp4mhvg47fnl7janw2nh8wv1bwap69spgc3qprwbg2hd1";
- name = "recipe";
- };
- packageRequires = [ dash dash-functional emacs f ht lsp-mode treemacs ];
- meta = {
- homepage = "https://melpa.org/#/lsp-treemacs";
- license = lib.licenses.free;
- };
- }) {};
lsp-ui = callPackage ({ dash
, dash-functional
, emacs
@@ -61424,59 +32307,6 @@
license = lib.licenses.free;
};
}) {};
- luarocks = callPackage ({ cl-lib ? null
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "luarocks";
- ename = "luarocks";
- version = "20170430.1605";
- src = fetchFromGitHub {
- owner = "emacs-pe";
- repo = "luarocks.el";
- rev = "cee27ba0716edf338077387969883226dd2b7484";
- sha256 = "0rdsjmmi95agb859997qdhbk0dns2jyx2mlg8rync58wna70nmbn";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/d5abd2b52a071ab206d40057dc85c891183204ea/recipes/luarocks";
- sha256 = "05srrk9gmv1vhq7m5bjhh2hl2siis04j15b31x0sgknxh3ybr33x";
- name = "recipe";
- };
- packageRequires = [ cl-lib emacs ];
- meta = {
- homepage = "https://melpa.org/#/luarocks";
- license = lib.licenses.free;
- };
- }) {};
- lush-theme = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "lush-theme";
- ename = "lush-theme";
- version = "20180816.1500";
- src = fetchFromGitHub {
- owner = "andre-richter";
- repo = "emacs-lush-theme";
- rev = "7cfc993709d712f75c51b505078608c9e1c11466";
- sha256 = "0v17srm3l8p556d4j5im2bn7brxv7v0g2crlm4gb8x1cwjrbajzf";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/8b29b2f36852e711ce3520d71e83921a1dcb9ccf/recipes/lush-theme";
- sha256 = "03kqws8dzm0ay5k86f4v7g2g2ygwk4fzmz2vyzhzhbsj8hrniq9p";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/lush-theme";
- license = lib.licenses.free;
- };
- }) {};
lusty-explorer = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -61527,31 +32357,6 @@
license = lib.licenses.free;
};
}) {};
- lxc = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "lxc";
- ename = "lxc";
- version = "20140410.1322";
- src = fetchFromGitHub {
- owner = "nicferrier";
- repo = "emacs-lxc";
- rev = "88bed56c954d1edd9ff5ce0ced2c02dcf9f71835";
- sha256 = "090gk0il4yyypzjbh2qrjdaldwf90fi30impmh4zcfl73bic5q9q";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/7c16c08c388e3280f617d0768bc1cd75c5897768/recipes/lxc";
- sha256 = "1rv1ybmbjx7n3cavx21nzmvckw63q3jmjsfdr2pcgavrr2ck6lka";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/lxc";
- license = lib.licenses.free;
- };
- }) {};
lxc-tramp = callPackage ({ cl-lib ? null
, emacs
, fetchFromGitHub
@@ -61579,60 +32384,6 @@
license = lib.licenses.free;
};
}) {};
- lxd-tramp = callPackage ({ cl-lib ? null
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "lxd-tramp";
- ename = "lxd-tramp";
- version = "20181022.1707";
- src = fetchFromGitHub {
- owner = "onixie";
- repo = "lxd-tramp";
- rev = "f335c76245f62b02cf67a9376eca6f3863c8a75a";
- sha256 = "0byhafxcc4qw08b16fd00nkyqz1jmq7js0l5q4lda4xdpfgl1a65";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/ef7778f5961eaaa356e5e383ef2323c5713e5bf2/recipes/lxd-tramp";
- sha256 = "0i611z4pksrf4zf0h8wnradqbcad5f43dq8bg3dsik0jdcjlvg5p";
- name = "recipe";
- };
- packageRequires = [ cl-lib emacs ];
- meta = {
- homepage = "https://melpa.org/#/lxd-tramp";
- license = lib.licenses.free;
- };
- }) {};
- lyrics = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , seq }:
- melpaBuild {
- pname = "lyrics";
- ename = "lyrics";
- version = "20180812.1141";
- src = fetchFromGitHub {
- owner = "emacs-pe";
- repo = "lyrics.el";
- rev = "d0b920be634a5be81ad49418cfaada0f0a57d6cd";
- sha256 = "0926avnlxi8qkr1faplk1aj4lji0ixa4lv81badi5zsmpyyrwmm7";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/b04c8f3dfa9fc07cc0ff3df5c4069f864b6db92e/recipes/lyrics";
- sha256 = "0kj8v8cg4yqnz0v1nhq41jxjgd4ivqd6lsr1v5cqhg4m0r7f2nzc";
- name = "recipe";
- };
- packageRequires = [ emacs seq ];
- meta = {
- homepage = "https://melpa.org/#/lyrics";
- license = lib.licenses.free;
- };
- }) {};
m-buffer = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -61685,34 +32436,6 @@
license = lib.licenses.free;
};
}) {};
- maces-game = callPackage ({ cl-lib ? null
- , dash
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "maces-game";
- ename = "maces-game";
- version = "20170903.851";
- src = fetchFromGitHub {
- owner = "pawelbx";
- repo = "maces-game";
- rev = "6a067422d305ac51612842930ed6686dc615ffec";
- sha256 = "07pl2y4qlpcn9ap2vp1gpvdqh4l05gb7pp11c1krlaxybhwdcqjb";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/2c9f33b926ecec48a43ba4f0484c687a7349ce50/recipes/maces-game";
- sha256 = "0wz91dsa0w4xlkl5lbdr8k4pgkgalsqcy27sd0i8xswq3wwiy0ip";
- name = "recipe";
- };
- packageRequires = [ cl-lib dash emacs ];
- meta = {
- homepage = "https://melpa.org/#/maces-game";
- license = lib.licenses.free;
- };
- }) {};
macro-math = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -61764,58 +32487,6 @@
license = lib.licenses.free;
};
}) {};
- madhat2r-theme = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "madhat2r-theme";
- ename = "madhat2r-theme";
- version = "20170202.1630";
- src = fetchFromGitHub {
- owner = "madhat2r";
- repo = "madhat2r-theme";
- rev = "6b387f09de055cfcc15d74981cd4f32f8f9a7323";
- sha256 = "1nnjdqqbarzv62ic3ddc2z9wmh93zjia4nvfjmji8213dngrrf88";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/44a382a388821908306c0b8350fba91218515e1b/recipes/madhat2r-theme";
- sha256 = "0y588skd6c2ykyp54d38ibwrqglnaanr15d45d51cvcvp9k7x508";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/madhat2r-theme";
- license = lib.licenses.free;
- };
- }) {};
- mag-menu = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , splitter }:
- melpaBuild {
- pname = "mag-menu";
- ename = "mag-menu";
- version = "20150505.1150";
- src = fetchFromGitHub {
- owner = "chumpage";
- repo = "mag-menu";
- rev = "9b9277021cd09fb1dba64b1d2a00705d20914bd6";
- sha256 = "1flamyk7z3r723cczqra0f4yabc6kmgwjaw2bvs3kisppqmmz72g";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/00043412ffa4e434de9679204b9b3d2602e76ae0/recipes/mag-menu";
- sha256 = "1r1yisjnqxl9llpf91rwqp4q47jc4qp32xnkl8wzsgr0r2qf5yk2";
- name = "recipe";
- };
- packageRequires = [ splitter ];
- meta = {
- homepage = "https://melpa.org/#/mag-menu";
- license = lib.licenses.free;
- };
- }) {};
magic-filetype = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -61843,58 +32514,6 @@
license = lib.licenses.free;
};
}) {};
- magic-latex-buffer = callPackage ({ cl-lib ? null
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "magic-latex-buffer";
- ename = "magic-latex-buffer";
- version = "20170530.1705";
- src = fetchFromGitHub {
- owner = "zk-phi";
- repo = "magic-latex-buffer";
- rev = "f1172ea243ff74b2013215b906eb8c0066497384";
- sha256 = "0rsq79sbf24cvdib283ddc2vg37sjyh3h0d1siki86psyg1mgaz1";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/07e240ebe71d389d314c4a27bbcfe1f88b215c3b/recipes/magic-latex-buffer";
- sha256 = "0xm4vk4aggyfw96cgya5cp97jzx5ha0xwpf2yfh7c3m8d9cca4y8";
- name = "recipe";
- };
- packageRequires = [ cl-lib emacs ];
- meta = {
- homepage = "https://melpa.org/#/magic-latex-buffer";
- license = lib.licenses.free;
- };
- }) {};
- magik-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "magik-mode";
- ename = "magik-mode";
- version = "20190305.1229";
- src = fetchFromGitHub {
- owner = "roadrunner1776";
- repo = "magik";
- rev = "743c5160ff2993534014862538961515047ed357";
- sha256 = "0sggdkp01ryknmfv828lqc5lkpks2vlqrqc0hblynyxs8w0azmf8";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/291cce8e8e3475348b446ba38833eb1e37d4db65/recipes/magik-mode";
- sha256 = "1d6n7mpwavrajcgai6j0y5khhgc4jaag1ig1xx8w04mr48xrjxqk";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/magik-mode";
- license = lib.licenses.free;
- };
- }) {};
magit = callPackage ({ async
, dash
, emacs
@@ -62126,34 +32745,6 @@
license = lib.licenses.free;
};
}) {};
- magit-lfs = callPackage ({ dash
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , magit
- , melpaBuild }:
- melpaBuild {
- pname = "magit-lfs";
- ename = "magit-lfs";
- version = "20170312.1524";
- src = fetchFromGitHub {
- owner = "Ailrun";
- repo = "magit-lfs";
- rev = "9897c59109ce34755cbd35eff689680351c45fba";
- sha256 = "05cy0pw5lcyzcqxycvwbw39l88405lc92x0w1lvhlbwwylpbhw2s";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/35763febad20f29320d459394f810668db6c3353/recipes/magit-lfs";
- sha256 = "1xc32f2k3dwpqncnrr3xyr2963ywa0006z3c01nypxgs1xkfsbdx";
- name = "recipe";
- };
- packageRequires = [ dash emacs magit ];
- meta = {
- homepage = "https://melpa.org/#/magit-lfs";
- license = lib.licenses.free;
- };
- }) {};
magit-org-todos = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -62181,35 +32772,6 @@
license = lib.licenses.free;
};
}) {};
- magit-p4 = callPackage ({ cl-lib ? null
- , fetchFromGitHub
- , fetchurl
- , lib
- , magit
- , magit-popup
- , melpaBuild
- , p4 }:
- melpaBuild {
- pname = "magit-p4";
- ename = "magit-p4";
- version = "20170414.546";
- src = fetchFromGitHub {
- owner = "qoocku";
- repo = "magit-p4";
- rev = "ef23e89dc504970e78ac9b158731a3eda7d6d7ee";
- sha256 = "1gld0x4y4jshyfr0q8k5icjpgmfrbcfir13sysgzqjz9ssyn2bi5";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/440d47ca465845eaa601ca8a6e4b15fc197e522b/recipes/magit-p4";
- sha256 = "19p7h3a21jjr2h52ika14lyczdv6z36gl7hk1v17bffffac8q069";
- name = "recipe";
- };
- packageRequires = [ cl-lib magit magit-popup p4 ];
- meta = {
- homepage = "https://melpa.org/#/magit-p4";
- license = lib.licenses.free;
- };
- }) {};
magit-popup = callPackage ({ async
, dash
, emacs
@@ -62238,62 +32800,6 @@
license = lib.licenses.free;
};
}) {};
- magit-rbr = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , magit
- , melpaBuild }:
- melpaBuild {
- pname = "magit-rbr";
- ename = "magit-rbr";
- version = "20181009.1316";
- src = fetchFromGitHub {
- owner = "fanatoly";
- repo = "magit-rbr";
- rev = "029203b3e48537205052a058e964f058cd802c3c";
- sha256 = "1z48m0al8bb4ppic483jvika9q47c67g7fazk25431sr5rv9h4d2";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/10427817a1fc2fa8aaf11897719cbb851d9e4b15/recipes/magit-rbr";
- sha256 = "086vb7xrgyrazc3a7bpyhy219szvrvl59l8wlqakimx0mav7qipr";
- name = "recipe";
- };
- packageRequires = [ emacs magit ];
- meta = {
- homepage = "https://melpa.org/#/magit-rbr";
- license = lib.licenses.free;
- };
- }) {};
- magit-reviewboard = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , magit
- , melpaBuild
- , request
- , s }:
- melpaBuild {
- pname = "magit-reviewboard";
- ename = "magit-reviewboard";
- version = "20190211.1444";
- src = fetchFromGitHub {
- owner = "jtamagnan";
- repo = "magit-reviewboard";
- rev = "f3d5ed914243e3930f9c06f59021305e7e43e67d";
- sha256 = "0xlhy328h2wxklpy71dhy1fk7zv6hs2v4jrl1mm9x5mnrbrdfvxx";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/f3715fa1df69350205e4269b7090c46b343d8bf0/recipes/magit-reviewboard";
- sha256 = "1sxqij3370vn6ap52lf4hdlcxfj9mj17sb5r4kk5msjbw3bzdmzr";
- name = "recipe";
- };
- packageRequires = [ emacs magit request s ];
- meta = {
- homepage = "https://melpa.org/#/magit-reviewboard";
- license = lib.licenses.free;
- };
- }) {};
magit-stgit = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -62466,86 +32972,6 @@
license = lib.licenses.free;
};
}) {};
- magma-mode = callPackage ({ cl-lib ? null
- , dash
- , f
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "magma-mode";
- ename = "magma-mode";
- version = "20181205.908";
- src = fetchFromGitHub {
- owner = "ThibautVerron";
- repo = "magma-mode";
- rev = "bded7fd29722dcfd451422530877067915fd7c80";
- sha256 = "0x858v67kjpqbijlg2fbs4qj0g92b3d6f3rjphzcm8776shwp6ry";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/59764a0aab7c3f32b5a872a3d10a7e144f273a7e/recipes/magma-mode";
- sha256 = "1gq6yi51h1h7ivrm1xr6nfrpabx8ylbk0waaw04gnw3bb54dmmvc";
- name = "recipe";
- };
- packageRequires = [ cl-lib dash f ];
- meta = {
- homepage = "https://melpa.org/#/magma-mode";
- license = lib.licenses.free;
- };
- }) {};
- magnatune = callPackage ({ dash
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , s }:
- melpaBuild {
- pname = "magnatune";
- ename = "magnatune";
- version = "20151030.1235";
- src = fetchFromGitHub {
- owner = "eikek";
- repo = "magnatune.el";
- rev = "605b01505ba30589c77ebb4c96834b5072ccbdd4";
- sha256 = "1hqz26zm4bdz5wavna4j9yia3ns4z19dnszl7k0lcpgbgmb0wh8y";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/6dfd5ae62718a32f8c5af4048af06cb53961d7df/recipes/magnatune";
- sha256 = "0fmxlrq5ls6fpbk5fv67aan8gg1c61i1chfw5lhf496pwqzq901d";
- name = "recipe";
- };
- packageRequires = [ dash s ];
- meta = {
- homepage = "https://melpa.org/#/magnatune";
- license = lib.licenses.free;
- };
- }) {};
- majapahit-theme = callPackage ({ fetchFromGitLab
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "majapahit-theme";
- ename = "majapahit-theme";
- version = "20160817.1148";
- src = fetchFromGitLab {
- owner = "franksn";
- repo = "majapahit-theme";
- rev = "77c96df7619666b2102d90d452eeadf04adc89a6";
- sha256 = "0wnhfdk2zwxqfh8d74xmszqgibcgxiq825pq8381zg4nkz5cckfb";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/c9b793878de4107bb646652d09d8799aef8b97e8/recipes/majapahit-theme";
- sha256 = "04k2smrya27rrjlzvnl3a6llg8vj8x4mm9qyk4kwrmckhd6jd68s";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/majapahit-theme";
- license = lib.licenses.free;
- };
- }) {};
major-mode-hydra = callPackage ({ dash
, emacs
, fetchFromGitHub
@@ -62574,34 +33000,6 @@
license = lib.licenses.free;
};
}) {};
- major-mode-icons = callPackage ({ all-the-icons
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , powerline }:
- melpaBuild {
- pname = "major-mode-icons";
- ename = "major-mode-icons";
- version = "20170228.2314";
- src = fetchFromGitHub {
- owner = "stardiviner";
- repo = "major-mode-icons";
- rev = "e6117a236b2ad52e948576550b183053321dfc91";
- sha256 = "0gpp9x23qz7ll8d7hlbvynv891hw907k38i7v0b08s8zh1ilvnwa";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/c8f551bec8bdc5dee4b31edea0c2f92b3c77ec56/recipes/major-mode-icons";
- sha256 = "02p5h9q2j7z3wcmvkbqbbzzk3lyfdq43psppy9x9ypic9fij8j95";
- name = "recipe";
- };
- packageRequires = [ all-the-icons emacs powerline ];
- meta = {
- homepage = "https://melpa.org/#/major-mode-icons";
- license = lib.licenses.free;
- };
- }) {};
make-color = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -62627,62 +33025,6 @@
license = lib.licenses.free;
};
}) {};
- make-it-so = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , swiper }:
- melpaBuild {
- pname = "make-it-so";
- ename = "make-it-so";
- version = "20180128.1307";
- src = fetchFromGitHub {
- owner = "abo-abo";
- repo = "make-it-so";
- rev = "bc3b01d6b9ed6ff66ebbd524234f9d6df60dd4be";
- sha256 = "0833bzlscpnkvjnrg3g54yr246afbjwri8n5wxk8drnsq6acvd8z";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/aad592089ed2200e2f8c5191e8adeac1db4bce54/recipes/make-it-so";
- sha256 = "0a8abz54mb60mfr0bl9ry8yawq99vx9hjl4fm2sivns58qjgfy73";
- name = "recipe";
- };
- packageRequires = [ emacs swiper ];
- meta = {
- homepage = "https://melpa.org/#/make-it-so";
- license = lib.licenses.free;
- };
- }) {};
- makefile-executor = callPackage ({ dash
- , emacs
- , f
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , s }:
- melpaBuild {
- pname = "makefile-executor";
- ename = "makefile-executor";
- version = "20180720.132";
- src = fetchFromGitHub {
- owner = "thiderman";
- repo = "makefile-executor.el";
- rev = "9a7d78f814a4b372d8f8179819cb1b37b83b1973";
- sha256 = "1sw8zqxzrcxs4v211bmlxz5xfrpckrawnbhf1fiji0971cv3hx0r";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/08f8b4d680e4907dbd8ea46a75d98aa0e93c2bb9/recipes/makefile-executor";
- sha256 = "0889rq2a7ks2ynyq91xsa2kpzgd72kzbjxx0b34w8faknpj3b6hi";
- name = "recipe";
- };
- packageRequires = [ dash emacs f s ];
- meta = {
- homepage = "https://melpa.org/#/makefile-executor";
- license = lib.licenses.free;
- };
- }) {};
makey = callPackage ({ cl-lib ? null
, fetchFromGitHub
, fetchurl
@@ -62765,205 +33107,6 @@
license = lib.licenses.free;
};
}) {};
- mallard-snippets = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , mallard-mode
- , melpaBuild
- , yasnippet }:
- melpaBuild {
- pname = "mallard-snippets";
- ename = "mallard-snippets";
- version = "20131023.1151";
- src = fetchFromGitHub {
- owner = "jhradilek";
- repo = "emacs-mallard-snippets";
- rev = "35b7d0558da14fcffd51863f623806216a0093ce";
- sha256 = "0b4g1h2kw00arpm816j7aa3cx10k9rwf5pxy57icjybj4b30irqa";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/57a31a6ac93a864cb5212c925fdfb0961d36b24a/recipes/mallard-snippets";
- sha256 = "0437qd7q9i32pmhxaz3vi2dnfpj4nddmzgnqpwsgl28slhjw2hv8";
- name = "recipe";
- };
- packageRequires = [ mallard-mode yasnippet ];
- meta = {
- homepage = "https://melpa.org/#/mallard-snippets";
- license = lib.licenses.free;
- };
- }) {};
- malyon = callPackage ({ cl-lib ? null
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "malyon";
- ename = "malyon";
- version = "20161208.1325";
- src = fetchFromGitHub {
- owner = "speedenator";
- repo = "malyon";
- rev = "0d9882650720b4a791556f5e2d917388965d6fc0";
- sha256 = "0an1yvp0p624rxd8n5phiwvznw35ripqhlwzwyv2bw7lc1rscllr";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/54b3785cfcdb3b54307f60ee634a101e8bcd9989/recipes/malyon";
- sha256 = "050kj4c1vp9f3fiskf8hld7w46092n4jipdga226x97igx575g3r";
- name = "recipe";
- };
- packageRequires = [ cl-lib ];
- meta = {
- homepage = "https://melpa.org/#/malyon";
- license = lib.licenses.free;
- };
- }) {};
- man-commands = callPackage ({ cl-lib ? null
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "man-commands";
- ename = "man-commands";
- version = "20151221.1421";
- src = fetchFromGitHub {
- owner = "nflath";
- repo = "man-commands";
- rev = "f4ba0c3790855d7544dff92d470d212f24de1d9d";
- sha256 = "1lfq4hsq2n33l58ja5kzy6bwk9jxbcdsg6y8gqlk71lcslzqldrk";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/cefd80c8f65e1577ba36ea665b36c3a3d4032b4b/recipes/man-commands";
- sha256 = "1yl7y0k24gydldfs406v1n523q46m9x6in6pgljgjnjravc67wnq";
- name = "recipe";
- };
- packageRequires = [ cl-lib ];
- meta = {
- homepage = "https://melpa.org/#/man-commands";
- license = lib.licenses.free;
- };
- }) {};
- manage-minor-mode = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "manage-minor-mode";
- ename = "manage-minor-mode";
- version = "20140310.900";
- src = fetchFromGitHub {
- owner = "ShingoFukuyama";
- repo = "manage-minor-mode";
- rev = "a62d044455a022a12749a33e70dff7b2ec8e3561";
- sha256 = "0iq573daxcfpgw6mjhb7ayn95g5p8ayyqs9r1rljdzff35jyfkpw";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/manage-minor-mode";
- sha256 = "0ljdca9b08dw0kx679jmq0wc484xcpbmzwx8zkncw642pnbj9q0j";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/manage-minor-mode";
- license = lib.licenses.free;
- };
- }) {};
- mandm-theme = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "mandm-theme";
- ename = "mandm-theme";
- version = "20180915.1240";
- src = fetchFromGitHub {
- owner = "choppsv1";
- repo = "emacs-mandm-theme";
- rev = "b560aa0129c55a2f4fcc5e67a7d6c66ee4dc3124";
- sha256 = "17af3bs55c6bxf1izvfgg0kag5az64ncbabgbh6ry14nv3r9lwy6";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/mandm-theme";
- sha256 = "0mvzn29ljd3az6axyqq88vkkf1vpcvslc1svlnbyrpdfinphd0mx";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/mandm-theme";
- license = lib.licenses.free;
- };
- }) {};
- mandoku = callPackage ({ fetchFromGitHub
- , fetchurl
- , git
- , github-clone
- , lib
- , magit
- , melpaBuild
- , org }:
- melpaBuild {
- pname = "mandoku";
- ename = "mandoku";
- version = "20180403.406";
- src = fetchFromGitHub {
- owner = "mandoku";
- repo = "mandoku";
- rev = "e3b7678762e9824861b1ce775a94b05b096164f5";
- sha256 = "119q1f3xv024q9inw20c3xb194mgn11igs3x7pqdfapyinrzz6p0";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1aac4ae2c908de2c44624fb22a3f5ccf0b7a4912/recipes/mandoku";
- sha256 = "1pg7ir3y6yk92kfs5agbxapcxf7gy60m353rjv8g3kfkx5zyh3mv";
- name = "recipe";
- };
- packageRequires = [ git github-clone magit org ];
- meta = {
- homepage = "https://melpa.org/#/mandoku";
- license = lib.licenses.free;
- };
- }) {};
- mandoku-tls = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , github-clone
- , helm
- , helm-charinfo
- , hydra
- , lib
- , mandoku
- , melpaBuild
- , org }:
- melpaBuild {
- pname = "mandoku-tls";
- ename = "mandoku-tls";
- version = "20171117.1840";
- src = fetchFromGitHub {
- owner = "mandoku";
- repo = "mandoku-tls";
- rev = "ffeebf5bd451ac1806ddfe1744fbbd036a56f902";
- sha256 = "16399qifjj4hnfw4a62jwxfwnc7k8lmiy3bz8iwzlc91jjic7zdc";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/c97d3f653057eab35c612109792884334be556fe/recipes/mandoku-tls";
- sha256 = "0zny1l548rvjsbbzj47wysz6gk1sqxvpj215r3w84vw5dyrn78bz";
- name = "recipe";
- };
- packageRequires = [
- emacs
- github-clone
- helm
- helm-charinfo
- hydra
- mandoku
- org
- ];
- meta = {
- homepage = "https://melpa.org/#/mandoku-tls";
- license = lib.licenses.free;
- };
- }) {};
map-progress = callPackage ({ cl-lib ? null
, fetchFromGitHub
, fetchurl
@@ -63045,31 +33188,6 @@
license = lib.licenses.free;
};
}) {};
- mark-multiple = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "mark-multiple";
- ename = "mark-multiple";
- version = "20121118.754";
- src = fetchFromGitHub {
- owner = "magnars";
- repo = "mark-multiple.el";
- rev = "f6a53c7c5283d640ae718f4548b0fda78877a375";
- sha256 = "1x3anvy3hlmydxyfzr1rhaiy502yi1yz3v54sg8wc1w7jrvwaj29";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/7efe1814aa552d44c3db2cd7304569f2aae66287/recipes/mark-multiple";
- sha256 = "179wd9g0smm76k92n7j2vgg8gz5wn9lczrns5ggq2yhbc77j0gn4";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/mark-multiple";
- license = lib.licenses.free;
- };
- }) {};
mark-tools = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -63148,32 +33266,6 @@
license = lib.licenses.free;
};
}) {};
- markdown-preview-eww = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "markdown-preview-eww";
- ename = "markdown-preview-eww";
- version = "20160111.702";
- src = fetchFromGitHub {
- owner = "niku";
- repo = "markdown-preview-eww";
- rev = "5853f836425c877c8a956501f0adda137ef1d3b7";
- sha256 = "1i5gr3j9dq41p2zl4bfyvzv6i5z7hgrxzrycmbdc3s7nja36k9z4";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/d9b3ad97a193c41068ca184b4835fa7a7a0ebc9c/recipes/markdown-preview-eww";
- sha256 = "0j6924f84is41dspib68y5lnz1f8nm7pqyhv47alxra50cjrpxnx";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/markdown-preview-eww";
- license = lib.licenses.free;
- };
- }) {};
markdown-preview-mode = callPackage ({ cl-lib ? null
, emacs
, fetchFromGitHub
@@ -63232,58 +33324,6 @@
license = lib.licenses.free;
};
}) {};
- markdownfmt = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "markdownfmt";
- ename = "markdownfmt";
- version = "20160609.541";
- src = fetchFromGitHub {
- owner = "nlamirault";
- repo = "emacs-markdownfmt";
- rev = "af83cd00fafcaa837ffdb50d1fa2b0ac952f16c0";
- sha256 = "1alkjvs21wlai742qgcm0bgf3z3c0f10xgalz48gi4vmwn6in7r7";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/16cee5fe003e3afc7daf6858ed83843b52e44901/recipes/markdownfmt";
- sha256 = "1wzsw90z988bm94cw4jw5gzjcicgiz4qgn1nsdm8nim9rp43bj17";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/markdownfmt";
- license = lib.licenses.free;
- };
- }) {};
- markless = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "markless";
- ename = "markless";
- version = "20190306.202";
- src = fetchFromGitHub {
- owner = "shirakumo";
- repo = "markless.el";
- rev = "78632f86e3b5a1e3d74b2ab86f4c95b10e5eae94";
- sha256 = "1hmf5qlxpli61a9pwg09hbsdn1lg4l8czvrvw09js3vrbv7xh3ds";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5542e142d47f6f52839a44b8ee16327f88869f50/recipes/markless";
- sha256 = "1a5kp46xj4b5kgcypacxcwhjjwi4m7f6shdda8l8my3s3x8ji5bj";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/markless";
- license = lib.licenses.free;
- };
- }) {};
markup = callPackage ({ cl-lib ? null
, fetchFromGitHub
, fetchurl
@@ -63335,34 +33375,6 @@
license = lib.licenses.free;
};
}) {};
- marmalade-client = callPackage ({ fetchFromGitHub
- , fetchurl
- , gh
- , kv
- , lib
- , melpaBuild
- , web }:
- melpaBuild {
- pname = "marmalade-client";
- ename = "marmalade-client";
- version = "20141231.1207";
- src = fetchFromGitHub {
- owner = "nicferrier";
- repo = "emacs-marmalade-upload";
- rev = "f315dea57e4fbebd9ee0668c0bafd4c45c7b754a";
- sha256 = "017k109nfif5mzkj547py8pdnzlr4sxb74yqqsl944znflq67blr";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/834d6d8444169e1e9b66c963a4c2e03ff658e154/recipes/marmalade-client";
- sha256 = "0llwqwwxrf7qdkpdb03ij0iinll0vc9qr557zyr3bn5zb4fad1sq";
- name = "recipe";
- };
- packageRequires = [ gh kv web ];
- meta = {
- homepage = "https://melpa.org/#/marmalade-client";
- license = lib.licenses.free;
- };
- }) {};
marshal = callPackage ({ eieio ? null
, fetchFromGitHub
, fetchurl
@@ -63391,32 +33403,6 @@
license = lib.licenses.free;
};
}) {};
- maruo-macro-mode = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "maruo-macro-mode";
- ename = "maruo-macro-mode";
- version = "20160616.649";
- src = fetchFromGitHub {
- owner = "zonuexe";
- repo = "maruo-macro-mode.el";
- rev = "8fc9a38ad051eafa8eb94038711acc52c5d1d8d5";
- sha256 = "0r005yap50jf6b5jc7314ds17g1nn2irn1agidi74fbrwfbndxgm";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/d0c17243b6c62e179aefc25d5f2ca43e5f6c66c1/recipes/maruo-macro-mode";
- sha256 = "1h7pclpqkkgi8z9yp5n79ffna809yf336bz6082l541xc06pmvcv";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/maruo-macro-mode";
- license = lib.licenses.free;
- };
- }) {};
mastodon = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -63494,81 +33480,6 @@
license = lib.licenses.free;
};
}) {};
- math-symbols = callPackage ({ fetchFromGitHub
- , fetchurl
- , helm
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "math-symbols";
- ename = "math-symbols";
- version = "20170818.759";
- src = fetchFromGitHub {
- owner = "kawabata";
- repo = "math-symbols";
- rev = "3f8b466f002e1b28ddbe9a6f236c9a1352adb17d";
- sha256 = "0r63acgicb43p05gsiz98m7077sj72c1miz18fi8qbzi02p9qjr7";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/d7b0799bddbbbecd12bc1589b56a6250acf76407/recipes/math-symbols";
- sha256 = "0sx9cgyk56npjd6z78y9cldbvjl5ipl7k1nc1sylg1iggkbwxnqx";
- name = "recipe";
- };
- packageRequires = [ helm ];
- meta = {
- homepage = "https://melpa.org/#/math-symbols";
- license = lib.licenses.free;
- };
- }) {};
- matlab-mode = callPackage ({ fetchgit
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "matlab-mode";
- ename = "matlab-mode";
- version = "20180928.826";
- src = fetchgit {
- url = "https://git.code.sf.net/p/matlab-emacs/src";
- rev = "3fbca4259b2584bde08df07ba51944d7e3e2b4f4";
- sha256 = "1diqx2k16iyj5a7kcc58kyl6mzw05cyq6ia4z3fciz716gkspgpi";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/6f78cff288077e04f8c9e4c2e5be9f3c33d8ff49/recipes/matlab-mode";
- sha256 = "1q3sdmahf915ix4lrv65cxsfh6hrs91c8pmyixbqmbhifqi33d0q";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/matlab-mode";
- license = lib.licenses.free;
- };
- }) {};
- maude-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "maude-mode";
- ename = "maude-mode";
- version = "20160222.807";
- src = fetchFromGitHub {
- owner = "rudi";
- repo = "maude-mode";
- rev = "c9543bb8a172fa77af592388e7f520a4a6d38987";
- sha256 = "1sn9bdaq3mf2vss5gzmxhnp9fz43cakxh36qjdgqrvx302nlnv52";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/9c33b8bd62391767a63f57786750e38cbc262bda/recipes/maude-mode";
- sha256 = "1w5v3r905xkwchkm2gzvzpswba5p2m7hqpyg9fzq2ldlr8kk7ah3";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/maude-mode";
- license = lib.licenses.free;
- };
- }) {};
maven-test-mode = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -63674,57 +33585,6 @@
license = lib.licenses.free;
};
}) {};
- mbo70s-theme = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "mbo70s-theme";
- ename = "mbo70s-theme";
- version = "20170808.615";
- src = fetchFromGitHub {
- owner = "emacsfodder";
- repo = "emacs-mbo70s-theme";
- rev = "bed3db8965708ed4e9482b224a9b084765c052f2";
- sha256 = "19hha9xwfqvdgsws69x0mcm93yfllp44hdl1xw9zlhj8f4ihizh5";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/b8d0c1050b3319e136fe75903ae3612a52790189/recipes/mbo70s-theme";
- sha256 = "1abx2rw09xxp122ff7i9sry5djd4l6vn4lfzxs92rknjzkyc40pb";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/mbo70s-theme";
- license = lib.licenses.free;
- };
- }) {};
- mbsync = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "mbsync";
- ename = "mbsync";
- version = "20181001.2340";
- src = fetchFromGitHub {
- owner = "dimitri";
- repo = "mbsync-el";
- rev = "f549eccde6033449d24cd5b6148599484850c403";
- sha256 = "1pdj41rq3pq4jdb5pma5j495xj7w7jgn8pnz1z1zwg75pn7ydfp0";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/3ef6ffa53bb0ce2ba796555e39f59534fc134aa5/recipes/mbsync";
- sha256 = "1q5g76mspi24zwbs7h4m8bmkhab4drskha4d9b516w1f1cyg6hb6";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/mbsync";
- license = lib.licenses.free;
- };
- }) {};
mc-extras = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -63751,31 +33611,6 @@
license = lib.licenses.free;
};
}) {};
- md-readme = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "md-readme";
- ename = "md-readme";
- version = "20160811.946";
- src = fetchFromGitHub {
- owner = "thomas11";
- repo = "md-readme";
- rev = "bf818dd847c8b06b3b5100c5d3cf24cf96662528";
- sha256 = "0gyjadkv572v3zilxivbiz28pvqh0jmi5bh5la1hyim0qnxymli8";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5408d7c12c189d2b5ab9fbb02276de334851e3c8/recipes/md-readme";
- sha256 = "1krq0f79jjrlihr2aqq87pxdqixv2zdjw4hm732sz79g996yxyw3";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/md-readme";
- license = lib.licenses.free;
- };
- }) {};
md4rd = callPackage ({ cl-lib ? null
, dash
, emacs
@@ -63862,57 +33697,6 @@
license = lib.licenses.free;
};
}) {};
- melancholy-theme = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "melancholy-theme";
- ename = "melancholy-theme";
- version = "20190406.1618";
- src = fetchFromGitHub {
- owner = "techquila";
- repo = "melancholy-theme";
- rev = "a5fb97b52c56c612474fec4ec45472fe13bd4c20";
- sha256 = "0syx0h8930j58bky14wnrba8iafzi3hdsb11kvsb48vdqv2minrq";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/8b8f708d1300d401697c099709718fcb70d5db1f/recipes/melancholy-theme";
- sha256 = "1wihbv44234lwsgp5w4hmmi3pgxbcfjvs1nclv0yg600z9s8sn8w";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/melancholy-theme";
- license = lib.licenses.free;
- };
- }) {};
- mellow-theme = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "mellow-theme";
- ename = "mellow-theme";
- version = "20170808.617";
- src = fetchFromGitHub {
- owner = "emacsfodder";
- repo = "emacs-mellow-theme";
- rev = "2bdf18f05f5212b6f269d9a94afe2cf201766891";
- sha256 = "0cj9lkqgiaq1s2k9ky93jgv5pfbmjznsd54r3iqkiy1zshpkir68";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/641d1959bd31598fcdacd39a3d1bb077dcccfa5c/recipes/mellow-theme";
- sha256 = "0kl1psykx7akxwabszk4amszh3zil8ia4bfbjjvr6h9phgx66pb0";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/mellow-theme";
- license = lib.licenses.free;
- };
- }) {};
melpa-upstream-visit = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -63964,33 +33748,6 @@
license = lib.licenses.free;
};
}) {};
- memolist = callPackage ({ ag
- , fetchFromGitHub
- , fetchurl
- , lib
- , markdown-mode
- , melpaBuild }:
- melpaBuild {
- pname = "memolist";
- ename = "memolist";
- version = "20150804.1021";
- src = fetchFromGitHub {
- owner = "mikanfactory";
- repo = "memolist.el";
- rev = "60c296e202a71e9dcf1c3936d47b5c4b95c5839f";
- sha256 = "1jd4rjv812iv7kp4wyxdz8sk7j0442m8x2ypk6hiqis0braxnspm";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/memolist";
- sha256 = "0nvp38qbzcl6dcayjndw32d3r9h8vf2n29i678s1yr280ll8xw6w";
- name = "recipe";
- };
- packageRequires = [ ag markdown-mode ];
- meta = {
- homepage = "https://melpa.org/#/memolist";
- license = lib.licenses.free;
- };
- }) {};
mentor = callPackage ({ async
, cl-lib ? null
, fetchFromGitHub
@@ -64098,31 +33855,6 @@
license = lib.licenses.free;
};
}) {};
- messages-are-flowing = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "messages-are-flowing";
- ename = "messages-are-flowing";
- version = "20170218.1720";
- src = fetchFromGitHub {
- owner = "legoscia";
- repo = "messages-are-flowing";
- rev = "649061753b67b24c54a2eaadc8b3218cafae7376";
- sha256 = "01y9cx5d5sqgvg97dzrnyi7m3yp0q3hm2yqcgknkp111afcgiwm7";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/messages-are-flowing";
- sha256 = "0v74b7cjj87kncndxfpfs6dcc4jcl18wpbirffl7dw6mac2anw6m";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/messages-are-flowing";
- license = lib.licenses.free;
- };
- }) {};
meta-presenter = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -64148,84 +33880,6 @@
license = lib.licenses.free;
};
}) {};
- metalheart-theme = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "metalheart-theme";
- ename = "metalheart-theme";
- version = "20160709.2341";
- src = fetchFromGitHub {
- owner = "mswift42";
- repo = "MetalHeart-Emacs";
- rev = "ec98ea2c11dc1213dae8cbe1fe0cee73ca138bb2";
- sha256 = "0pc86qh74i6vr0ap2j2sn4nl2c0vv15m4m1myyjmggfxx2f27nnc";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/204dd67b24bf4f2305a14efb925c8fe004026694/recipes/metalheart-theme";
- sha256 = "1xqql1mcwp52plm1gp6q4m9zij2w360y15lnjsz9xgjqvslr7gy5";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/metalheart-theme";
- license = lib.licenses.free;
- };
- }) {};
- metamorph = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "metamorph";
- ename = "metamorph";
- version = "20180930.1328";
- src = fetchFromGitHub {
- owner = "AdamNiederer";
- repo = "metamorph";
- rev = "d9dc7037b7eed7b3fe85ea50e91f332e3f831514";
- sha256 = "1zprgjh1wyqbpy1qvng57r6jm10k6vffpb6znm47fm8xx1h0s8k4";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/741982c7ce83a77d0b43d196eeac6e949dc5fd81/recipes/metamorph";
- sha256 = "0mqzqwwzb4x2j6jh6acx5ni9z5k56586jv4n88d3fi4vry9k4mv3";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/metamorph";
- license = lib.licenses.free;
- };
- }) {};
- metascript-mode = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "metascript-mode";
- ename = "metascript-mode";
- version = "20150708.1757";
- src = fetchFromGitHub {
- owner = "metascript";
- repo = "metascript-mode";
- rev = "edb361c7b0e5de231e5334a17b90652fb1df78f9";
- sha256 = "1rascpmv17dksyn9y0llmjb8r4484x5ax54w6r83k1x7ha1iacx5";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/90c03167b5fb4f4edc8a76240b3668203261bc58/recipes/metascript-mode";
- sha256 = "1kgs4ki0s6bxx2ri6zxmsy2b2w56gnr9hjkr6302wcmp3qy7clwn";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/metascript-mode";
- license = lib.licenses.free;
- };
- }) {};
metaweblog = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -64277,31 +33931,6 @@
license = lib.licenses.free;
};
}) {};
- mexican-holidays = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "mexican-holidays";
- ename = "mexican-holidays";
- version = "20160109.1342";
- src = fetchFromGitHub {
- owner = "sggutier";
- repo = "mexican-holidays";
- rev = "43ced1f9e40a04be6927d1a1be64060f9be4f5c5";
- sha256 = "0bhllmyk1r9y63jw5gx10v09791w33lc54qs31gcxbnss094l6py";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/6440f81aed1fcddcaf7afeedb74520e605211986/recipes/mexican-holidays";
- sha256 = "0an6kkr2vwkqc9219rgn74683h7f4cmd1g74lirn0qhqcfcb5yrc";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/mexican-holidays";
- license = lib.licenses.free;
- };
- }) {};
mgmtconfig-mode = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -64354,85 +33983,6 @@
license = lib.licenses.free;
};
}) {};
- mic-paren = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "mic-paren";
- ename = "mic-paren";
- version = "20170731.1207";
- src = fetchFromGitHub {
- owner = "emacsattic";
- repo = "mic-paren";
- rev = "d0410c7d805c9aaf51a1bcefaaef092bed5824c4";
- sha256 = "0f24ibzgra94bwal8b0dpjxa11n42gkmanqswfnjhlvx052v9dxr";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/6f0e54eac31fbbce9a778fb654f07e11aaaa46ca/recipes/mic-paren";
- sha256 = "17j0b8jyr0zx6zds2dz5fzvarm2wh8l5hxds2s90kh5z0kk23r07";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/mic-paren";
- license = lib.licenses.free;
- };
- }) {};
- micgoline = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , powerline }:
- melpaBuild {
- pname = "micgoline";
- ename = "micgoline";
- version = "20160414.2026";
- src = fetchFromGitHub {
- owner = "yzprofile";
- repo = "micgoline";
- rev = "e3e2effe4846175a3b52b4092c0c134ced5978d8";
- sha256 = "1cmpvg4x812hsl764zaq96y8jvjp99nljp552bbx52lbbnb1w5nr";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/2219768cf62b52bcbe73cec291eb74c3fedcc862/recipes/micgoline";
- sha256 = "0xixcy006my2s0wn0isiag0b4rm38kswa5m0xnhg5n30qjjfzf4i";
- name = "recipe";
- };
- packageRequires = [ emacs powerline ];
- meta = {
- homepage = "https://melpa.org/#/micgoline";
- license = lib.licenses.free;
- };
- }) {};
- midje-mode = callPackage ({ cider
- , clojure-mode
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "midje-mode";
- ename = "midje-mode";
- version = "20170808.2103";
- src = fetchFromGitHub {
- owner = "dnaumov";
- repo = "midje-mode";
- rev = "10ad5b6084cd03d5cd268b486a7c3c246d85535f";
- sha256 = "0nag9ks7qbg40h9z954v42x8zi65wbgfhviwvxvb2bmbzv4m4pbs";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/midje-mode";
- sha256 = "16g57mwkm3ypnyqniy1lj9nfn5wj7cyndb5fhl3fym773ywn6hip";
- name = "recipe";
- };
- packageRequires = [ cider clojure-mode ];
- meta = {
- homepage = "https://melpa.org/#/midje-mode";
- license = lib.licenses.free;
- };
- }) {};
migemo = callPackage ({ cl-lib ? null
, fetchFromGitHub
, fetchurl
@@ -64484,107 +34034,6 @@
license = lib.licenses.free;
};
}) {};
- minesweeper = callPackage ({ fetchhg
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "minesweeper";
- ename = "minesweeper";
- version = "20150413.2222";
- src = fetchhg {
- url = "https://bitbucket.com/zck/minesweeper.el";
- rev = "d29af12fc611";
- sha256 = "1b2kn4c90hl07lzdg10wamd4lq8f24wmaj4zvr728pwyga99b2av";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5b7972602399f9df9139cff177e38653bb0f43ed/recipes/minesweeper";
- sha256 = "1n6r3a3rl09pv4jvb7ald1gaipqylfchggza973qv9rgh5g90nag";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/minesweeper";
- license = lib.licenses.free;
- };
- }) {};
- mingus = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , libmpdee
- , melpaBuild }:
- melpaBuild {
- pname = "mingus";
- ename = "mingus";
- version = "20190106.643";
- src = fetchFromGitHub {
- owner = "pft";
- repo = "mingus";
- rev = "4223be618f57f10f18114a74393a71955b568884";
- sha256 = "14i06i999wfpr0a0lvhnh6g4mm5xmawscjd9d7ibc055h94h3i2a";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/6699927f1ded5c97f2ce1861f8e54a5453264cca/recipes/mingus";
- sha256 = "0vw09qk56l792706vvp465f40shf678mcmdh7iw8wsjix4401bzi";
- name = "recipe";
- };
- packageRequires = [ libmpdee ];
- meta = {
- homepage = "https://melpa.org/#/mingus";
- license = lib.licenses.free;
- };
- }) {};
- mini-header-line = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "mini-header-line";
- ename = "mini-header-line";
- version = "20170621.521";
- src = fetchFromGitHub {
- owner = "ksjogo";
- repo = "mini-header-line";
- rev = "73b6724e0a26c4528d93768191c8aa59e6bce2e5";
- sha256 = "187xynmpgkx498an246ywrqdhyyp2ag1l7yxnm0x0rbfgw67q5j1";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/122db5436ff9061713c0d3d8f44c47494067843e/recipes/mini-header-line";
- sha256 = "1yg8i7gsmiv8zwl1wqvgrh2xl2hm5nn3q11rz4hpyxw26355i817";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/mini-header-line";
- license = lib.licenses.free;
- };
- }) {};
- minibuf-isearch = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "minibuf-isearch";
- ename = "minibuf-isearch";
- version = "20151226.1143";
- src = fetchFromGitHub {
- owner = "knagano";
- repo = "minibuf-isearch";
- rev = "2846c6ac369ee623dad4cd3c8a7a6d9078965516";
- sha256 = "1n4b039448826w2jcsv4r2iw3v2vlrsxw8dbci8wcfigmkbfc879";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/ebfd2f3f6a2dbd251c321738a4efaacc2200164b/recipes/minibuf-isearch";
- sha256 = "0n36d152lc53zj9jy38b0c7hlww0z6hx94y3x2njy6cmh3p5g8nh";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/minibuf-isearch";
- license = lib.licenses.free;
- };
- }) {};
minibuffer-complete-cycle = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -64685,31 +34134,6 @@
license = lib.licenses.free;
};
}) {};
- minimal-theme = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "minimal-theme";
- ename = "minimal-theme";
- version = "20190113.1332";
- src = fetchFromGitHub {
- owner = "anler";
- repo = "minimal-theme";
- rev = "063b4d8ca33d55d04c341f0b2b777ec241a3e201";
- sha256 = "0lvg7iym6sxhgl4ab9a6x8c2mh2d32vkf0033bs3vphx657gra6l";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/6f26b8281f9bd05e3c8f2ef21838275711e622c9/recipes/minimal-theme";
- sha256 = "01dar95l7wjjqhbsknvsfbpvv41ka7iqd1fssckz18lgfqpb54bs";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/minimal-theme";
- license = lib.licenses.free;
- };
- }) {};
minions = callPackage ({ dash
, emacs
, fetchFromGitHub
@@ -64763,82 +34187,6 @@
license = lib.licenses.free;
};
}) {};
- minizinc-mode = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "minizinc-mode";
- ename = "minizinc-mode";
- version = "20180201.650";
- src = fetchFromGitHub {
- owner = "m00nlight";
- repo = "minizinc-mode";
- rev = "2512521ba7f8e263a06db88df663fc6b3cca7e16";
- sha256 = "1yrawvvn3ndzzrllh408v4a5n0y0n5p1jczdm9r8pbxqgyknbk1n";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/fc86b4ba54fca6f1ebf1ae3557fe564e05c1e382/recipes/minizinc-mode";
- sha256 = "1blb6mbyqvmdvwp477p1ggs3n6rzi9sdfvi0v1wfzmd7k749b10c";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/minizinc-mode";
- license = lib.licenses.free;
- };
- }) {};
- minor-mode-hack = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "minor-mode-hack";
- ename = "minor-mode-hack";
- version = "20170925.1734";
- src = fetchFromGitHub {
- owner = "rubikitch";
- repo = "minor-mode-hack";
- rev = "c3aa957602c924c01fe07d48d191b8616fb3696a";
- sha256 = "0lmcf7mv2sk33ajngxasc7kmf5qf17fccijllm3yr0lqdnxbx0pa";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/ad10a684b4b2f01bc65883374f36fef156ff55d2/recipes/minor-mode-hack";
- sha256 = "07ga48xvbi641i053bykv9v4wxhka6jhhg76b1ll24rys02az526";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/minor-mode-hack";
- license = lib.licenses.free;
- };
- }) {};
- mip-mode = callPackage ({ fetchFromGitLab
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "mip-mode";
- ename = "mip-mode";
- version = "20151126.2217";
- src = fetchFromGitLab {
- owner = "gaudecker";
- repo = "mip-mode";
- rev = "7c88c383b4c7ed0a4c1dc397735f365c1fcb461c";
- sha256 = "12k9ii4090dn03xvgqisl4zl4qi33054zxyfkqzzpa9wv72h4knc";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/cbfefacda071c0f5ee698a4c345a2d6fea6a0d24/recipes/mip-mode";
- sha256 = "0jr8lzs1qzp2ki7xmm5vrdc6vmzagy8zsil0217vyl89pdfmxnyr";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/mip-mode";
- license = lib.licenses.free;
- };
- }) {};
mips-mode = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -64890,32 +34238,6 @@
license = lib.licenses.free;
};
}) {};
- mkdown = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , markdown-mode
- , melpaBuild }:
- melpaBuild {
- pname = "mkdown";
- ename = "mkdown";
- version = "20140517.718";
- src = fetchFromGitHub {
- owner = "ajtulloch";
- repo = "mkdown.el";
- rev = "8e23de82719af6c5b53b52b3308a02b3a1fb872e";
- sha256 = "1d08i2cfn1q446nyyji0hi9vlw7bzkpxhn6653jz2k77vd2y0wmk";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/mkdown";
- sha256 = "034bwwgh0w1dwawdx2nwn4d6wj65i58aqlvi60kflijfn8l3inr3";
- name = "recipe";
- };
- packageRequires = [ markdown-mode ];
- meta = {
- homepage = "https://melpa.org/#/mkdown";
- license = lib.licenses.free;
- };
- }) {};
mmm-jinja2 = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -64942,31 +34264,6 @@
license = lib.licenses.free;
};
}) {};
- mmm-mako = callPackage ({ fetchhg
- , fetchurl
- , lib
- , melpaBuild
- , mmm-mode }:
- melpaBuild {
- pname = "mmm-mako";
- ename = "mmm-mako";
- version = "20121019.2351";
- src = fetchhg {
- url = "https://bitbucket.com/pjenvey/mmm-mako";
- rev = "5c9ff92137b5";
- sha256 = "0rpp748ym79sxccp9pyrwri14m7624zzb80srfgjfdpysrrs0jrr";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5b7972602399f9df9139cff177e38653bb0f43ed/recipes/mmm-mako";
- sha256 = "0a4af5q9wxafrid8visp30cz6073ig0c961b78vmmgqrwvvxd3kn";
- name = "recipe";
- };
- packageRequires = [ mmm-mode ];
- meta = {
- homepage = "https://melpa.org/#/mmm-mako";
- license = lib.licenses.free;
- };
- }) {};
mmt = callPackage ({ cl-lib ? null
, emacs
, fetchFromGitHub
@@ -64994,83 +34291,6 @@
license = lib.licenses.free;
};
}) {};
- mo-git-blame = callPackage ({ fetchFromGitLab
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "mo-git-blame";
- ename = "mo-git-blame";
- version = "20160129.959";
- src = fetchFromGitLab {
- owner = "mbunkus";
- repo = "mo-git-blame";
- rev = "254a675eb794cdbbdef9fa2b4b7bb510b70089c0";
- sha256 = "1dh92hzpicfvrlg6swrw4igwb771xbsmsf7hxp1a4iry4w8dk398";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/a784f931849ca836557390999b179ef9f6e775f3/recipes/mo-git-blame";
- sha256 = "14ngwwgzrnnysq1k1k681b5i06ad8r3phhgpvn5alp2fj3il03l3";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/mo-git-blame";
- license = lib.licenses.free;
- };
- }) {};
- mo-vi-ment-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "mo-vi-ment-mode";
- ename = "mo-vi-ment-mode";
- version = "20181216.1806";
- src = fetchFromGitHub {
- owner = "AjayMT";
- repo = "mo-vi-ment";
- rev = "e8b525ffc5faa31d36ecc5496b40f0f5c3603c08";
- sha256 = "16ic8yhjfk0ijlcw7a270p7953w750qza3xdbf4vygkiqqkxiv84";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/85487df36bab0a4d2ea034dbe01c8f095a7efddc/recipes/mo-vi-ment-mode";
- sha256 = "1pg889mgpv0waccm135mlvag7q13gzfkzchv2532jngwrn6amqc7";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/mo-vi-ment-mode";
- license = lib.licenses.free;
- };
- }) {};
- mobdebug-mode = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , lua-mode
- , melpaBuild }:
- melpaBuild {
- pname = "mobdebug-mode";
- ename = "mobdebug-mode";
- version = "20140109.1946";
- src = fetchFromGitHub {
- owner = "deftsp";
- repo = "mobdebug-mode";
- rev = "e1d483bc4e341c762bc5c0a8c52306a8d01ea0da";
- sha256 = "04hbd7mv29v3fv4ld0b3skrir0wp9dix2n5nbqp63fj6n5i4cyyz";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/25a48680d9f0d2b86ee64cc2415626a5283136a8/recipes/mobdebug-mode";
- sha256 = "19k0c7igqsqvib6hx0nssig4l5f959dlr4wijd1hp5h1hmcb5vv8";
- name = "recipe";
- };
- packageRequires = [ emacs lua-mode ];
- meta = {
- homepage = "https://melpa.org/#/mobdebug-mode";
- license = lib.licenses.free;
- };
- }) {};
mocha = callPackage ({ fetchFromGitHub
, fetchurl
, js2-mode
@@ -65278,31 +34498,6 @@
license = lib.licenses.free;
};
}) {};
- modtime-skip-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "modtime-skip-mode";
- ename = "modtime-skip-mode";
- version = "20140128.1401";
- src = fetchFromGitHub {
- owner = "jordonbiondo";
- repo = "modtime-skip-mode";
- rev = "c0e49523aa26b2263a8693691ac775988015f592";
- sha256 = "0ri841cwx2mx8ri50lhvifmxnysdc022421mlmklql0252kn775l";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/486a675ca4898f99133bc18202e123fb58af54c0/recipes/modtime-skip-mode";
- sha256 = "1drafwf4kqp83jp47j2ddl2n4a92zf1589fnp6c72hmjqcxv3l28";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/modtime-skip-mode";
- license = lib.licenses.free;
- };
- }) {};
moe-theme = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -65328,81 +34523,6 @@
license = lib.licenses.free;
};
}) {};
- molecule = callPackage ({ emacs
- , fetchgit
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "molecule";
- ename = "molecule";
- version = "20180527.43";
- src = fetchgit {
- url = "https://git.daemons.it/drymer/molecule.el/";
- rev = "2ef72b81d9aa24ea782b71a061a3abdad6cae162";
- sha256 = "0fn16jlpdfy35mz0n27bzdiwgvv8l9nfxf8j4pypgpqarnxzpsgc";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/7421b67dc51abf13bb028e467bb4c83f857a342e/recipes/molecule";
- sha256 = "0kdwmn4gb382igy979y7x2fdqcnfxlb4dvqvm6w7ghs564grzgj4";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/molecule";
- license = lib.licenses.free;
- };
- }) {};
- molokai-theme = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "molokai-theme";
- ename = "molokai-theme";
- version = "20151016.845";
- src = fetchFromGitHub {
- owner = "alloy-d";
- repo = "color-theme-molokai";
- rev = "04a44f21184b6a26caae4f2c92db9019d883309c";
- sha256 = "1hqa59pdrnwfykyl58lr8pfbh2f13sygvmrh707hbwc2aii0jjv2";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/b1fdc89f0c52231f238096a1d42c2c330cb50d2c/recipes/molokai-theme";
- sha256 = "0srdh3yx7j6xs7rgpzmsyzz6ds00kq887rs2sfa0nvk0j0ga6baf";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/molokai-theme";
- license = lib.licenses.free;
- };
- }) {};
- mongo = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "mongo";
- ename = "mongo";
- version = "20150315.519";
- src = fetchFromGitHub {
- owner = "m2ym";
- repo = "mongo-el";
- rev = "595529ddd70ecb9fab8b11daad2c3929941099d6";
- sha256 = "0z8mcfhj425hb91fkj1pyg3apw1kf4mgy8lx6n1sc8zmib38py0x";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/mongo";
- sha256 = "0jb5m611m7w26wgfwijgy0dn65s7p1y6fdcfpfgpxa7j5vrcxasc";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/mongo";
- license = lib.licenses.free;
- };
- }) {};
monitor = callPackage ({ dash
, fetchFromGitHub
, fetchurl
@@ -65454,57 +34574,6 @@
license = lib.licenses.free;
};
}) {};
- monochrome-theme = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "monochrome-theme";
- ename = "monochrome-theme";
- version = "20140326.350";
- src = fetchFromGitHub {
- owner = "fxn";
- repo = "monochrome-theme.el";
- rev = "9cf993670c9e8d198f41d840216e13280585b3e1";
- sha256 = "0x6k0lxhp6y32ws54fgb71j3vfkn864iswhxs0ygg7n1nrkz1ipq";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/d00b78ead693e844e35c760fe2c39b8ed6cb0d81/recipes/monochrome-theme";
- sha256 = "0cq2clliwcwnn1spz1w6y5qw1lgqznw212rcc4q6f1kslq0jyk5x";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/monochrome-theme";
- license = lib.licenses.free;
- };
- }) {};
- monokai-alt-theme = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "monokai-alt-theme";
- ename = "monokai-alt-theme";
- version = "20170630.1348";
- src = fetchFromGitHub {
- owner = "dawidof";
- repo = "emacs-monokai-theme";
- rev = "f342b6afc31f929be0626eca2d696ee9fab78011";
- sha256 = "1lgsqrwf21b0rh4x8nmj08a46ld7dkq4jhwxi1fi7a9xhmi2yd4i";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/6ff05515c2f3bd80cb8d7de9afc8fd983e62ad91/recipes/monokai-alt-theme";
- sha256 = "135bli9vhgl898526q6znjvck356bja1ylsfi95d9445jd136c4v";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/monokai-alt-theme";
- license = lib.licenses.free;
- };
- }) {};
monokai-theme = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -65530,32 +34599,6 @@
license = lib.licenses.free;
};
}) {};
- monotropic-theme = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "monotropic-theme";
- ename = "monotropic-theme";
- version = "20181015.530";
- src = fetchFromGitHub {
- owner = "caffo";
- repo = "monotropic-theme";
- rev = "36df566aa8225e303f6c9d90c00740dd678a415e";
- sha256 = "05n8s3719f6yrh4fi5xyzzlhpsgpbc60mmfmzycxlb4sinq9bfks";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/38222d109ece0030b0bfafb242aa100694b2bfcf/recipes/monotropic-theme";
- sha256 = "129yqjh4gaab1kjijzkzbw50alzdiwmpv9cl3lsy04m8zk02shl8";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/monotropic-theme";
- license = lib.licenses.free;
- };
- }) {};
monroe = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -65589,12 +34632,12 @@
melpaBuild {
pname = "mood-line";
ename = "mood-line";
- version = "1.1.0";
+ version = "1.1.2";
src = fetchFromGitLab {
owner = "jessieh";
repo = "mood-line";
- rev = "f926b6f6c66a15b3af9b8a1d155d7e6f9e506107";
- sha256 = "0h97gxiw44fpdslahk6dzw5m8jcz3r268d4b4h0b1i1mdlz3d9pf";
+ rev = "3560d8aafd8c856a218ff8fab5a30e1aa0db25b6";
+ sha256 = "08qh8x0gd7byvfp03jpkd95h70djh8vrwpm451932zwf66j7fnay";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/b10524f105943648ecf52f007f363b7b5534865e/recipes/mood-line";
@@ -65615,12 +34658,12 @@
melpaBuild {
pname = "mood-one-theme";
ename = "mood-one-theme";
- version = "1.0.2";
+ version = "1.0.3";
src = fetchFromGitLab {
owner = "jessieh";
repo = "mood-one-theme";
- rev = "6a5ef88ca47973b7ecf0a87d89933e7a7ea943ba";
- sha256 = "1r5idjrc9xxwg4ih157igh5ijara3g7wi0cp5xvrjlbzxlk8ybz2";
+ rev = "47fc825547664c3e3eb8f47f1a9cf74b23efc2c6";
+ sha256 = "17zz3nc3r2cm4w99frzqxnh768vnmzs71p9zz9bj03wc222n1kv6";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/44fbe8c54e4052e6c38849a12425db8f7c04fcc1/recipes/mood-one-theme";
@@ -65685,59 +34728,6 @@
license = lib.licenses.free;
};
}) {};
- moonscript = callPackage ({ cl-lib ? null
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "moonscript";
- ename = "moonscript";
- version = "20170831.1526";
- src = fetchFromGitHub {
- owner = "k2052";
- repo = "moonscript-mode";
- rev = "56f90471e2ced2b0a177aed4d8c2f854797e9cc7";
- sha256 = "1v2phdpfngrb01x4qygpfgxdzpgvbprki2kbmpc83vlqxlmkvvjk";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/3046afee95277024830d7d372f2f1c84a0adcb00/recipes/moonscript";
- sha256 = "1fi4hg5gk5zpfkrk0hqghghkzbbi33v48piq2i085i4nc6m3imp0";
- name = "recipe";
- };
- packageRequires = [ cl-lib emacs ];
- meta = {
- homepage = "https://melpa.org/#/moonscript";
- license = lib.licenses.free;
- };
- }) {};
- morganey-mode = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "morganey-mode";
- ename = "morganey-mode";
- version = "20170118.134";
- src = fetchFromGitHub {
- owner = "morganey-lang";
- repo = "morganey-mode";
- rev = "7e33f1be486f58dfcf02adcbf82ccac47f69bd9b";
- sha256 = "1ic3m71ilclrvshc6lasbb1s7ifhjp10iwy0zbjbhfy27n05g3z1";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/morganey-mode";
- sha256 = "18cbmx8lnypgxkisxa3lrh88v8l9k0q8fnai5ps8ngvfgz42rlqp";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/morganey-mode";
- license = lib.licenses.free;
- };
- }) {};
morlock = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -65789,86 +34779,6 @@
license = lib.licenses.free;
};
}) {};
- mote-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , ruby-mode ? null }:
- melpaBuild {
- pname = "mote-mode";
- ename = "mote-mode";
- version = "20160122.1629";
- src = fetchFromGitHub {
- owner = "inkel";
- repo = "mote-mode";
- rev = "666c6641addbd3b337a7aa01fd2742ded2f41b83";
- sha256 = "10mf96r75558scn71pri71aa8nhp6hmnb5rwjxlh5dlf80r5dfd7";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/mote-mode";
- sha256 = "0ccsyl0wvf0nbsw57sxad7w0c0i5al5s5mjrjjq8bnfh4dyj2x0y";
- name = "recipe";
- };
- packageRequires = [ ruby-mode ];
- meta = {
- homepage = "https://melpa.org/#/mote-mode";
- license = lib.licenses.free;
- };
- }) {};
- motion-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , flymake-cursor
- , flymake-easy
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "motion-mode";
- ename = "motion-mode";
- version = "20140919.1856";
- src = fetchFromGitHub {
- owner = "ainame";
- repo = "motion-mode";
- rev = "4c94180e3ecea611a61240a0c0cd48f1032c4a55";
- sha256 = "17570labnwdnwca2cg4ga0mrrm00n0h3wlxry823k5yn3k93rnj1";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/c1e3a2091a73c7d725c929313290566f5ca19404/recipes/motion-mode";
- sha256 = "1lfsc8ayiz2v3dfn8c0mmfch8vpzqyddxw8kscan2lzl2lcj50h0";
- name = "recipe";
- };
- packageRequires = [ flymake-cursor flymake-easy ];
- meta = {
- homepage = "https://melpa.org/#/motion-mode";
- license = lib.licenses.free;
- };
- }) {};
- mouse-slider-mode = callPackage ({ cl-lib ? null
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "mouse-slider-mode";
- ename = "mouse-slider-mode";
- version = "20161021.1214";
- src = fetchFromGitHub {
- owner = "skeeto";
- repo = "mouse-slider-mode";
- rev = "b3c19cd231edecce76787c5a9bbe5e4046d91f88";
- sha256 = "1qkbrwicp3gaknnmfrajf1qdyhj5s0c09cx62869rp2721p8rqaw";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/8fa747999bb928c3836400a43d8ab63939381673/recipes/mouse-slider-mode";
- sha256 = "0aqxjm78k7i8c59w6mw9wsfw3rail1pg40ac1dbcjkm62fjbh5hy";
- name = "recipe";
- };
- packageRequires = [ cl-lib emacs ];
- meta = {
- homepage = "https://melpa.org/#/mouse-slider-mode";
- license = lib.licenses.free;
- };
- }) {};
move-dup = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -65995,84 +34905,6 @@
license = lib.licenses.free;
};
}) {};
- mozc = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "mozc";
- ename = "mozc";
- version = "20180101.0";
- src = fetchFromGitHub {
- owner = "google";
- repo = "mozc";
- rev = "f5ddd0e06f5d94ecc626b38797c982e8598d18e0";
- sha256 = "03ccc2v80033av5a5gq7w90rpk851idfg28979hjq8qfzsizx7x6";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/30fef77e1d7194ee3c3c1d4775c349a4a9f6af2c/recipes/mozc";
- sha256 = "0nslh4xyqpvzdxcgrd1bzaqcdz77bghizh6n2w6wk46cflir8xba";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/mozc";
- license = lib.licenses.free;
- };
- }) {};
- mozc-im = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , mozc }:
- melpaBuild {
- pname = "mozc-im";
- ename = "mozc-im";
- version = "20160411.1722";
- src = fetchFromGitHub {
- owner = "d5884";
- repo = "mozc-im";
- rev = "df614a1076c28a11551fb3e822868bae47e855a5";
- sha256 = "0cpcldizgyr125j7lzkl8l6jw1hc3fb12cwgkpjrl6pjpr80vb15";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/4b651b7f1c15b44577b3c2b7493264ed802cf073/recipes/mozc-im";
- sha256 = "1gqzmm712npj36qfi506zgl0ycd6k7l5m46c7zz2z2lb6jpssw10";
- name = "recipe";
- };
- packageRequires = [ mozc ];
- meta = {
- homepage = "https://melpa.org/#/mozc-im";
- license = lib.licenses.free;
- };
- }) {};
- mozc-popup = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , mozc
- , popup }:
- melpaBuild {
- pname = "mozc-popup";
- ename = "mozc-popup";
- version = "20150223.1634";
- src = fetchFromGitHub {
- owner = "d5884";
- repo = "mozc-popup";
- rev = "f0684b875a7427ec08f8df13939a486e5d5cf420";
- sha256 = "1mbpkjc6sk7qqmgsmr5a5l2ycwnqp8bkwgikdavgs6hnal10bkmn";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/49bdcf035b9f885a689b9dc21817aecdcd09768b/recipes/mozc-popup";
- sha256 = "1n43lwflxzzyskxgzg19rg3hiqqkf5l7vfgaydryf4sk8480x687";
- name = "recipe";
- };
- packageRequires = [ mozc popup ];
- meta = {
- homepage = "https://melpa.org/#/mozc-popup";
- license = lib.licenses.free;
- };
- }) {};
mozc-temp = callPackage ({ dash
, emacs
, fetchFromGitHub
@@ -66101,31 +34933,6 @@
license = lib.licenses.free;
};
}) {};
- mpages = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "mpages";
- ename = "mpages";
- version = "20150710.704";
- src = fetchFromGitHub {
- owner = "slevin";
- repo = "mpages";
- rev = "39a72a0931ab1cdbfdf0ab9f412dc12d43a3829f";
- sha256 = "11c8pr3s77aq34ic32lnsialwh8bw3m78kj838xl2aab2pgrlny2";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/b535c2862c4fad568324466883f23ba9f39e787f/recipes/mpages";
- sha256 = "11scjjwwrpgaz6i4jq9y7m864nfak46vnbfb0w15625znz926jcs";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/mpages";
- license = lib.licenses.free;
- };
- }) {};
mpdel = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -66210,32 +35017,6 @@
license = lib.licenses.free;
};
}) {};
- mqr = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "mqr";
- ename = "mqr";
- version = "20180527.504";
- src = fetchFromGitHub {
- owner = "calancha";
- repo = "multi-replace";
- rev = "4ade19d4620b8b61340290bf63fa56d5e493859f";
- sha256 = "0pkxmv0rla9f2ly9fq3i3mrsa2q8rsrs4pk6w7wpi3v5fbj1jmd6";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/0023747e8173fab8e88143ee95a31540a079c6bf/recipes/mqr";
- sha256 = "1nw713sha29q1zgsxxfrkggkrk6q8vvk9sdi1s539r8h35bc3jx0";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/mqr";
- license = lib.licenses.free;
- };
- }) {};
mqtt-mode = callPackage ({ dash
, emacs
, fetchFromGitHub
@@ -66263,33 +35044,6 @@
license = lib.licenses.free;
};
}) {};
- ms-python = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , lsp-mode
- , melpaBuild }:
- melpaBuild {
- pname = "ms-python";
- ename = "ms-python";
- version = "20190318.1929";
- src = fetchFromGitHub {
- owner = "xhcoding";
- repo = "ms-python";
- rev = "5412bb664b5c8d7fca1a98ccb50ffc5a2592a75c";
- sha256 = "1wp1vhll9wsr5wpq6d2gjzc9nwvn6n61x80kmprr7m1mr6zav9bk";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/6373142d80e84db8dec47abd0cdc562352b16681/recipes/ms-python";
- sha256 = "1zws8vsxmiwiy4ndxlnl8hn98gfkhf50w7mvq9plr4z6z1adzdi0";
- name = "recipe";
- };
- packageRequires = [ emacs lsp-mode ];
- meta = {
- homepage = "https://melpa.org/#/ms-python";
- license = lib.licenses.free;
- };
- }) {};
msvc = callPackage ({ ac-clang
, cedet ? null
, cl-lib ? null
@@ -66345,32 +35099,6 @@
license = lib.licenses.free;
};
}) {};
- mu-cite = callPackage ({ fetchFromGitHub
- , fetchurl
- , flim
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "mu-cite";
- ename = "mu-cite";
- version = "20160130.300";
- src = fetchFromGitHub {
- owner = "ksato9700";
- repo = "mu-cite";
- rev = "aea3c2d01eb3284d5e0124059d368e8c6b6ffddc";
- sha256 = "1gxspy50gh7j4sysvr17fvvp8p417ww39ii5dy0fxncfwczdsa19";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/a80bc6e626f4bc6edfe6560833d12d31ecfd7a51/recipes/mu-cite";
- sha256 = "0ap21sw4r2x774q2np6rhrxh2m2rf3f6ak3k71iar159chx32y6q";
- name = "recipe";
- };
- packageRequires = [ flim ];
- meta = {
- homepage = "https://melpa.org/#/mu-cite";
- license = lib.licenses.free;
- };
- }) {};
mu4e-alert = callPackage ({ alert
, emacs
, fetchFromGitHub
@@ -66400,59 +35128,6 @@
license = lib.licenses.free;
};
}) {};
- mu4e-conversation = callPackage ({ emacs
- , fetchFromGitLab
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "mu4e-conversation";
- ename = "mu4e-conversation";
- version = "20190305.836";
- src = fetchFromGitLab {
- owner = "ambrevar";
- repo = "mu4e-conversation";
- rev = "fc3c9d3aca3cfae87001f95d505fab4fed597df0";
- sha256 = "06br06ld9brvki53jrw2zsarz1fnr4ajd7va9yb6y3sphphz0vc6";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/7638aecc7a2cd4b1646c6e32fe83e18ef212bbaa/recipes/mu4e-conversation";
- sha256 = "16vhjaxjhshw7ch9ihk35r99549xlbmvybwjx0p9mzyqi30dn3s6";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/mu4e-conversation";
- license = lib.licenses.free;
- };
- }) {};
- mu4e-jump-to-list = callPackage ({ cl-lib ? null
- , emacs
- , fetchFromGitLab
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "mu4e-jump-to-list";
- ename = "mu4e-jump-to-list";
- version = "20190129.1548";
- src = fetchFromGitLab {
- owner = "wavexx";
- repo = "mu4e-jump-to-list.el";
- rev = "b63360eab8975acce04e803a5919abbe2daf863c";
- sha256 = "1f7vxkv60smi2zjcg3bl8l7wjhrc35980wprmiy8568lvin6afbh";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/c1cf98dff029d494007fe25d29bd8bcfecc5b8e6/recipes/mu4e-jump-to-list";
- sha256 = "0yl1vi62pjgklwa7ifvr35fciiqqc5zkrc0m4yxjiv0c0dn50b7n";
- name = "recipe";
- };
- packageRequires = [ cl-lib emacs ];
- meta = {
- homepage = "https://melpa.org/#/mu4e-jump-to-list";
- license = lib.licenses.free;
- };
- }) {};
mu4e-maildirs-extension = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -66478,58 +35153,6 @@
license = lib.licenses.free;
};
}) {};
- mu4e-query-fragments = callPackage ({ emacs
- , fetchFromGitLab
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "mu4e-query-fragments";
- ename = "mu4e-query-fragments";
- version = "20170923.622";
- src = fetchFromGitLab {
- owner = "wavexx";
- repo = "mu4e-query-fragments.el";
- rev = "5f2b195dad2d74f38ff35b93edea5dd133112012";
- sha256 = "0frq485lghpzpzcrpw7f4vmc39nx1ph1dp0i0l8hb6h8rl1n4r7n";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/c1cf98dff029d494007fe25d29bd8bcfecc5b8e6/recipes/mu4e-query-fragments";
- sha256 = "1gckwfgw7jvr6dbikcmy07i07wjhlvq66swhac2laaj6w567vc7w";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/mu4e-query-fragments";
- license = lib.licenses.free;
- };
- }) {};
- muban = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "muban";
- ename = "muban";
- version = "20180415.519";
- src = fetchFromGitHub {
- owner = "jiahaowork";
- repo = "muban.el";
- rev = "c134c46e60be1fb3e9a08dba3d07346855e0fcc2";
- sha256 = "1xlkzvfbzhhpmzz008ad4l9sxdvda2cxhq6grn84pcfh5g2ccn2c";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/3576c6b7d79ce6d4df40ce83400fa2468f8fbcdf/recipes/muban";
- sha256 = "1njphxx6sgw952p7v2qkbjwa8sb2mwrxrzv35bzp0d4c84ny2sa0";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/muban";
- license = lib.licenses.free;
- };
- }) {};
multi = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -66556,33 +35179,6 @@
license = lib.licenses.free;
};
}) {};
- multi-compile = callPackage ({ dash
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "multi-compile";
- ename = "multi-compile";
- version = "20160306.1423";
- src = fetchFromGitHub {
- owner = "ReanGD";
- repo = "emacs-multi-compile";
- rev = "bd0331854774e7a269ce8a7dd49580cd397c0ec2";
- sha256 = "1aswpv1m02n26620hgkcfd38f06bzmmijlr9rs5krv6snq5gdb8g";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/b312434c6c8e23ded2b74bf8f144ad0b3170adae/recipes/multi-compile";
- sha256 = "16fv0hpwcjw1771zlbgznph0fix9fbm6yqj2rcz1f9l26iih6apz";
- name = "recipe";
- };
- packageRequires = [ dash emacs ];
- meta = {
- homepage = "https://melpa.org/#/multi-compile";
- license = lib.licenses.free;
- };
- }) {};
multi-line = callPackage ({ cl-lib ? null
, dash
, emacs
@@ -66613,31 +35209,6 @@
license = lib.licenses.free;
};
}) {};
- multi-project = callPackage ({ emacs
- , fetchhg
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "multi-project";
- ename = "multi-project";
- version = "20190217.832";
- src = fetchhg {
- url = "https://bitbucket.com/ellisvelo/multi-project";
- rev = "13bd84412236";
- sha256 = "1i97m9iyslg34vbg2aqjy4hzad78qsi0jjkh83xgrdn0hax2x9wy";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5b7972602399f9df9139cff177e38653bb0f43ed/recipes/multi-project";
- sha256 = "19dy2wl5ad1xldiznlw2vjvr9ja8h9wiv6igcggixq56fhngp40x";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/multi-project";
- license = lib.licenses.free;
- };
- }) {};
multi-run = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -66715,56 +35286,6 @@
license = lib.licenses.free;
};
}) {};
- multicolumn = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "multicolumn";
- ename = "multicolumn";
- version = "20150202.1451";
- src = fetchFromGitHub {
- owner = "Lindydancer";
- repo = "multicolumn";
- rev = "c7a3afecd470859b2e60aa7c554d6e4d436df7fa";
- sha256 = "1ispa0wxpkydm0cyj4scyyacfrbilrip5v8bsrcqfc6qs597z8rf";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/f37a999b0583a0ebc842c2f9fad8d08cb6c9dabf/recipes/multicolumn";
- sha256 = "1ylnc3s4ixvnqn7g2p6nzz8x29ggqc703waci430f1rp1lsd3q09";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/multicolumn";
- license = lib.licenses.free;
- };
- }) {};
- multifiles = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "multifiles";
- ename = "multifiles";
- version = "20130615.1433";
- src = fetchFromGitHub {
- owner = "magnars";
- repo = "multifiles.el";
- rev = "dddfe64b8e1c1cd1f9ccc1f03405477fc0d53897";
- sha256 = "065l04ylplng1vgykkbn2vnkcs3sn1k2cikx1ha2q8wmgx6bkvai";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/8b528544841995045fb1f8344aaaa38946bb3915/recipes/multifiles";
- sha256 = "0m0pi2qjis9p6z9cd8hlxm1r88ynwmd2ks8wg65sffffwsdbg4kz";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/multifiles";
- license = lib.licenses.free;
- };
- }) {};
multiple-cursors = callPackage ({ cl-lib ? null
, fetchFromGitHub
, fetchurl
@@ -66791,33 +35312,6 @@
license = lib.licenses.free;
};
}) {};
- multitran = callPackage ({ cl-lib ? null
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "multitran";
- ename = "multitran";
- version = "20190402.1304";
- src = fetchFromGitHub {
- owner = "zevlg";
- repo = "multitran.el";
- rev = "a0521a3455f95638ab4c37ac112026928eab09a2";
- sha256 = "0i7wy3g229yssf0n75cch4d3sk73br7673razws5dzrwhmmvi3nb";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/d665759fa6491b77103920a75c18a561f6800c1c/recipes/multitran";
- sha256 = "0nxrzzlinl5310zfrb4z5j0553cmg11m9y2gaf990j61afaw8f32";
- name = "recipe";
- };
- packageRequires = [ cl-lib emacs ];
- meta = {
- homepage = "https://melpa.org/#/multitran";
- license = lib.licenses.free;
- };
- }) {};
mustache = callPackage ({ dash
, fetchFromGitHub
, fetchurl
@@ -66871,161 +35365,6 @@
license = lib.licenses.free;
};
}) {};
- mustang-theme = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "mustang-theme";
- ename = "mustang-theme";
- version = "20170719.246";
- src = fetchFromGitHub {
- owner = "mswift42";
- repo = "mustang-theme";
- rev = "dda6d04803f1c9b196b620ef564e7768fee15de2";
- sha256 = "0pg3iay0iinf361v4ay8kizdxs5rm23ir556cwwgz3m3gbs0mgsh";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/2ed3691edd1cba6abc0c30d2aab732e2ba51bf00/recipes/mustang-theme";
- sha256 = "0771l3x6109ki914nwpfz3fj7pbvpcg9vf485mrccq2wlxymr5dr";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/mustang-theme";
- license = lib.licenses.free;
- };
- }) {};
- mustard-theme = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "mustard-theme";
- ename = "mustard-theme";
- version = "20170808.619";
- src = fetchFromGitHub {
- owner = "emacsfodder";
- repo = "emacs-mustard-theme";
- rev = "3b15d992c79590d7ea2503004e2a863b57e274b5";
- sha256 = "01ak4ayk46jqawlbb9cqliiqhnn68cq27kryamibdpds8sq0ch83";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/641d1959bd31598fcdacd39a3d1bb077dcccfa5c/recipes/mustard-theme";
- sha256 = "0izxhivhmv49dja4wy9n0ipd41xdzdza2ql7pfa7ny35ji5hskik";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/mustard-theme";
- license = lib.licenses.free;
- };
- }) {};
- mutant = callPackage ({ dash
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "mutant";
- ename = "mutant";
- version = "20160124.553";
- src = fetchFromGitHub {
- owner = "p-lambert";
- repo = "mutant.el";
- rev = "aff50603a70a110f4ecd7142963ef719e8c11c06";
- sha256 = "1faqbkff0v6pigsnnq2dxnzdra8q62cvlxigscwalwxd27bbz548";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/0fc72d1f18eba7501a040d450a85d8dee4e3070f/recipes/mutant";
- sha256 = "0m5l5r37zb0ig96757ldyl9hbb01lknzqf08ap6dsmdwr1zayvp1";
- name = "recipe";
- };
- packageRequires = [ dash emacs ];
- meta = {
- homepage = "https://melpa.org/#/mutant";
- license = lib.licenses.free;
- };
- }) {};
- mutt-mode = callPackage ({ emacs
- , fetchFromGitLab
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "mutt-mode";
- ename = "mutt-mode";
- version = "20190302.715";
- src = fetchFromGitLab {
- owner = "flexw";
- repo = "mutt-mode";
- rev = "92763c5ff9abbf4ef91ce15fa7cc6b23da1cfa2d";
- sha256 = "0n04500kr4d3qg6g98nzmdjcdy7qqs5r7f9cbi50r15jr9ihsjvx";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/7d9da58f247dee4f06cbcf6ed532134bc474d309/recipes/mutt-mode";
- sha256 = "0k1r2lsh8s054aapyf7diki00sxf1wdm01cavlqxbvv3zg2gym8d";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/mutt-mode";
- license = lib.licenses.free;
- };
- }) {};
- mvn = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "mvn";
- ename = "mvn";
- version = "20181002.917";
- src = fetchFromGitHub {
- owner = "apg";
- repo = "mvn-el";
- rev = "ffa40235b7dabb6c6c165f64f32a963cde8031f0";
- sha256 = "0ximk0aan7jqn5x7fk4pj35bxhi6zaspvyxrmac9kxaiz8znwffr";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/mvn";
- sha256 = "0bpg9zpyfdyn9xvrbmq4gb10hd701mc49np8arlmnilphb3fdgzs";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/mvn";
- license = lib.licenses.free;
- };
- }) {};
- mw-thesaurus = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "mw-thesaurus";
- ename = "mw-thesaurus";
- version = "20180628.2225";
- src = fetchFromGitHub {
- owner = "agzam";
- repo = "mw-thesaurus.el";
- rev = "b3f8c3aae2b68a4e6cc054c6c99d3b3135e781d1";
- sha256 = "01ljvhx2g4i5vgzwibdgp5jl37s01m0j4sfaw7bbsm8nag0h4aw5";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/53e4a552b8a7527433b11c377e1257fabceb8049/recipes/mw-thesaurus";
- sha256 = "10v3a09sz31ndj0ldpz0c3s45s62gyvdw0iq0c0dkg4da2rvicww";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/mw-thesaurus";
- license = lib.licenses.free;
- };
- }) {};
mwim = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -67051,57 +35390,6 @@
license = lib.licenses.free;
};
}) {};
- mxf-view = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "mxf-view";
- ename = "mxf-view";
- version = "20180501.40";
- src = fetchFromGitHub {
- owner = "t-suwa";
- repo = "mxf-view";
- rev = "c4825f35fad81c4624a2fcaea95cc605addf5cbc";
- sha256 = "0ci1kdc7qs04yny6sxhbncb3d4gzcsdhk2w51phpb8m2rilm0xgl";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/e608f40d00a3b2a80a6997da00e7d04f76d8ef0d/recipes/mxf-view";
- sha256 = "1a8hlp0r04p1cww3dmsqdxlm3ll522wjb0rnmj80d7mqizkbf52p";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/mxf-view";
- license = lib.licenses.free;
- };
- }) {};
- myanmar-input-methods = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "myanmar-input-methods";
- ename = "myanmar-input-methods";
- version = "20160106.737";
- src = fetchFromGitHub {
- owner = "yelinkyaw";
- repo = "emacs-myanmar-input-methods";
- rev = "9d4e0d6358c61bde7a2274e430ef71683faea32e";
- sha256 = "0cf0c9g9k2lk1ifi2dlw7c601sh1ycxf3fgl2hy5wliyd6l9rf86";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/76093af2bba82159784994ec9e17a69cd22bf868/recipes/myanmar-input-methods";
- sha256 = "1yg8zy2z18pbyr507ms2b162c0819rna1ilwyp6hb3iv2zjw45sd";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/myanmar-input-methods";
- license = lib.licenses.free;
- };
- }) {};
mykie = callPackage ({ cl-lib ? null
, emacs
, fetchFromGitHub
@@ -67129,32 +35417,6 @@
license = lib.licenses.free;
};
}) {};
- mynt-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , virtualenvwrapper }:
- melpaBuild {
- pname = "mynt-mode";
- ename = "mynt-mode";
- version = "20150512.1349";
- src = fetchFromGitHub {
- owner = "crshd";
- repo = "mynt-mode";
- rev = "23d4489167bfa899634548cb41ed32fdeb3600c9";
- sha256 = "18ml0qz3iipm9w36zvwz77cbbrg885jgvzk6z4a33xcfp524xhma";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/22eaeb5041155d56483d2ac6b32098456411442b/recipes/mynt-mode";
- sha256 = "17s0wdwgh2dcpww6h3qszc9dcs7ki00xkyisvsfn4xqajrmmp75b";
- name = "recipe";
- };
- packageRequires = [ virtualenvwrapper ];
- meta = {
- homepage = "https://melpa.org/#/mynt-mode";
- license = lib.licenses.free;
- };
- }) {};
mysql-to-org = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -67182,31 +35444,6 @@
license = lib.licenses.free;
};
}) {};
- mysql2sqlite = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "mysql2sqlite";
- ename = "mysql2sqlite";
- version = "20170725.1516";
- src = fetchFromGitHub {
- owner = "echosa";
- repo = "emacs-mysql2sqlite";
- rev = "8e6e74451c942e2e92f90dc13222b95a7dbb285e";
- sha256 = "18jriaj391n4wr0qiva68jf482yx9v9l4xagbzl9vw125lszkngb";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/9841d3cfd1ee954eb0ab9b2ca3a3f605eb0fd22a/recipes/mysql2sqlite";
- sha256 = "1jblrbw4rq2jwpb8d1dyna0fiv52b9va3sj881cb17rqx200y3nd";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/mysql2sqlite";
- license = lib.licenses.free;
- };
- }) {};
myterminal-controls = callPackage ({ cl-lib ? null
, emacs
, fetchFromGitHub
@@ -67234,33 +35471,6 @@
license = lib.licenses.free;
};
}) {};
- n4js = callPackage ({ cypher-mode
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "n4js";
- ename = "n4js";
- version = "20150713.1931";
- src = fetchFromGitHub {
- owner = "tmtxt";
- repo = "n4js.el";
- rev = "3991ed8975151d5e8d568e952362df810f7ffab7";
- sha256 = "1pd6c0jc1zxx3i3nk4qdx7gdf1qn8sc9jgqd72pkkpzvdwv998cp";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/82157dfd975635c49ef75eae83e2bdf5fe4ae5c2/recipes/n4js";
- sha256 = "0x7smxs91ffriyxx2df61fh1abpl39gqy4m62k77h7xb6fg7af6m";
- name = "recipe";
- };
- packageRequires = [ cypher-mode emacs ];
- meta = {
- homepage = "https://melpa.org/#/n4js";
- license = lib.licenses.free;
- };
- }) {};
name-this-color = callPackage ({ cl-lib ? null
, dash
, emacs
@@ -67289,111 +35499,6 @@
license = lib.licenses.free;
};
}) {};
- named-timer = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "named-timer";
- ename = "named-timer";
- version = "20181120.1424";
- src = fetchFromGitHub {
- owner = "DarwinAwardWinner";
- repo = "emacs-named-timer";
- rev = "670b81e3eddef2e7353a4eedc9553a85306445db";
- sha256 = "1inbizxlfgndwxsn8cwnpf4vm42rby7pkjqxyzl7ldq4qln7q8v1";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/3e8248bab40fddc97fe48dbd103bc2aa51eb287f/recipes/named-timer";
- sha256 = "1k2gkm193fh02vsj8h9kn0y1azispcz1b3ywwmb3cbif51l956g3";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/named-timer";
- license = lib.licenses.free;
- };
- }) {};
- nameframe = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "nameframe";
- ename = "nameframe";
- version = "20171106.1656";
- src = fetchFromGitHub {
- owner = "john2x";
- repo = "nameframe";
- rev = "aafb8c5c5fbe0510e2f5d5b6b6b5dd0b73abe5d8";
- sha256 = "1ivklkz3j722wg038bh3hmycp9j64zjrig49vl42mkj6d3ggwilg";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/bd314150b3f8ce529a2ae39a71e03bebedfdc6b9/recipes/nameframe";
- sha256 = "0iq8cfii39ha8sxn9w7kyfvys8kwyax8g4l0pkl05q0a0s95padp";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/nameframe";
- license = lib.licenses.free;
- };
- }) {};
- nameframe-perspective = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , nameframe
- , perspective }:
- melpaBuild {
- pname = "nameframe-perspective";
- ename = "nameframe-perspective";
- version = "20170405.1819";
- src = fetchFromGitHub {
- owner = "john2x";
- repo = "nameframe";
- rev = "d14186e99fa800d293e8e3072ba26f383c6624c6";
- sha256 = "0aibzwp39lxafag0vpa36xp8md7nhvgibj1nklzhga2d9nq9l4km";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/2543af5579d37a3eb52e6fea41da315f5590331e/recipes/nameframe-perspective";
- sha256 = "0wgr90m2pazc514slgdl1lin4mr3xxizasc82k7qinvdvdja515x";
- name = "recipe";
- };
- packageRequires = [ nameframe perspective ];
- meta = {
- homepage = "https://melpa.org/#/nameframe-perspective";
- license = lib.licenses.free;
- };
- }) {};
- nameframe-projectile = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , nameframe
- , projectile }:
- melpaBuild {
- pname = "nameframe-projectile";
- ename = "nameframe-projectile";
- version = "20160927.2103";
- src = fetchFromGitHub {
- owner = "john2x";
- repo = "nameframe";
- rev = "696223c61ca8e8f5cc557d2c198801a2f3c32ad3";
- sha256 = "14zrxv0x7p7rfrwdk02kzgvg8n594ij47yrr0c8q7b6vckhrz4gw";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/bc17af8ff1694120d12a0cdbfccec78834810acd/recipes/nameframe-projectile";
- sha256 = "11z64wy8mnnrjmgfs2sjbv3mh136aki8r5f89myx861nfx18hc3k";
- name = "recipe";
- };
- packageRequires = [ nameframe projectile ];
- meta = {
- homepage = "https://melpa.org/#/nameframe-projectile";
- license = lib.licenses.free;
- };
- }) {};
nameless = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -67447,132 +35552,6 @@
license = lib.licenses.free;
};
}) {};
- namespaces = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "namespaces";
- ename = "namespaces";
- version = "20130326.1550";
- src = fetchFromGitHub {
- owner = "chrisbarrett";
- repo = "elisp-namespaces";
- rev = "3d02525d9b9a5ae6e7be3adefd880121436e6270";
- sha256 = "157hhb253m6a9l5wy6x8w5ar3x0qz1326l7a0npxif6pma0dd140";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/de404e9ad3d1e27af24e868e84218d872d5fc795/recipes/namespaces";
- sha256 = "02pb7762khxpah4q6xg8r7dmlv1kwyzinffi7pcaps6ycj29q2fr";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/namespaces";
- license = lib.licenses.free;
- };
- }) {};
- nand2tetris = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "nand2tetris";
- ename = "nand2tetris";
- version = "20171201.1013";
- src = fetchFromGitHub {
- owner = "CestDiego";
- repo = "nand2tetris.el";
- rev = "fe37ee41367ceff6f7d7a472a5f80cf1285e1e01";
- sha256 = "0g1gwayas7claa9cn3mv8dnlz46n78014qxb2ix25428dnsrridy";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/90421372b3f60b59762279ac805c61a984606d11/recipes/nand2tetris";
- sha256 = "1zg9xx7mj8334m2v2zqqfkr5vkj4dzqbj8y13qk6xhzb7qkppyqd";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/nand2tetris";
- license = lib.licenses.free;
- };
- }) {};
- nand2tetris-assembler = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , nand2tetris }:
- melpaBuild {
- pname = "nand2tetris-assembler";
- ename = "nand2tetris-assembler";
- version = "20171201.1013";
- src = fetchFromGitHub {
- owner = "CestDiego";
- repo = "nand2tetris.el";
- rev = "fe37ee41367ceff6f7d7a472a5f80cf1285e1e01";
- sha256 = "0g1gwayas7claa9cn3mv8dnlz46n78014qxb2ix25428dnsrridy";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/90421372b3f60b59762279ac805c61a984606d11/recipes/nand2tetris-assembler";
- sha256 = "1761kgrflipxba8894cnx90ks7f3ba4nj6ci515zzxcx9s45mfyy";
- name = "recipe";
- };
- packageRequires = [ nand2tetris ];
- meta = {
- homepage = "https://melpa.org/#/nand2tetris-assembler";
- license = lib.licenses.free;
- };
- }) {};
- nanowrimo = callPackage ({ fetchhg
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "nanowrimo";
- ename = "nanowrimo";
- version = "20151104.1828";
- src = fetchhg {
- url = "https://bitbucket.com/gvol/nanowrimo.el";
- rev = "25e2ca20ed34";
- sha256 = "1nzkamy53kl1g4y1jm7j5zgpkdsyg5ykp8zp1f0bg5mhy8mmf75w";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5b7972602399f9df9139cff177e38653bb0f43ed/recipes/nanowrimo";
- sha256 = "1nhyj38qyn1x6a5rbrwhcxwfwzyqqjm3dvksdnmam6vfwn3s2r31";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/nanowrimo";
- license = lib.licenses.free;
- };
- }) {};
- naquadah-theme = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "naquadah-theme";
- ename = "naquadah-theme";
- version = "20190225.627";
- src = fetchFromGitHub {
- owner = "jd";
- repo = "naquadah-theme";
- rev = "430c3b7bd51922cb616b3f60301f4e2604816ed8";
- sha256 = "0z2dn05xgbdfw6rwgsq31rm5dr098dk411qk83fbx2bkdxxfr60w";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/671afe0ff3889ae8c4b2d7b8617a3a25c16f3f0f/recipes/naquadah-theme";
- sha256 = "1aml1f2lgn530i86218nrc1pk3zw5n3qd2gw4gylwi7g75i0cqn1";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/naquadah-theme";
- license = lib.licenses.free;
- };
- }) {};
narrow-reindent = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -67626,31 +35605,6 @@
license = lib.licenses.free;
};
}) {};
- nash-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "nash-mode";
- ename = "nash-mode";
- version = "20160830.512";
- src = fetchFromGitHub {
- owner = "tiago4orion";
- repo = "nash-mode.el";
- rev = "bb7ae728a16812a0ef506483b877f6221c92ca9c";
- sha256 = "1n4dxbd388ibghismc5d1nkvxwxdi4r415prsaa3qad8l9s4ivwh";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/c8bd080c81b163a6ddcfffc710316b9711935b4a/recipes/nash-mode";
- sha256 = "1d6nfxn7fc2qv78bf5277sdwfqflag2gihgic8vxrbjlpnizxn1p";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/nash-mode";
- license = lib.licenses.free;
- };
- }) {};
nasm-mode = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -67677,31 +35631,6 @@
license = lib.licenses.free;
};
}) {};
- nav = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "nav";
- ename = "nav";
- version = "20120507.7";
- src = fetchFromGitHub {
- owner = "ijt";
- repo = "emacs-nav";
- rev = "c5eb234c063f435dbdcd1f8bdc46cfc68c973ebe";
- sha256 = "0kfqpji6z3ra8sc951vmm1bzyhkws7vb5q6djvl45wlf1wrgkc4p";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/0fda2b54a0ff0b6fc3bd6d20cfcbbf63cae5380f/recipes/nav";
- sha256 = "0ly1fk4ak1p8gkz3qmmxyslcjgicnfm8bpqqgndvwcznp8pvpjml";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/nav";
- license = lib.licenses.free;
- };
- }) {};
nav-flash = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -67752,31 +35681,6 @@
license = lib.licenses.free;
};
}) {};
- navi2ch = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "navi2ch";
- ename = "navi2ch";
- version = "20150329.1916";
- src = fetchFromGitHub {
- owner = "naota";
- repo = "navi2ch";
- rev = "faebfd15184de9df6903eae436dafb52c38ee86e";
- sha256 = "15l2zmm8bp4ip8m1hfxkvswfwa29pg72kisfya2n5v900r184a4m";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/36bea1eca58de15d6106cbd293d941d12ee3d21c/recipes/navi2ch";
- sha256 = "13xwvyy27dz1abjkkazm3s1p6cw32l2klr1bnln02w0azkbdy7x3";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/navi2ch";
- license = lib.licenses.free;
- };
- }) {};
navorski = callPackage ({ dash
, fetchFromGitHub
, fetchurl
@@ -67831,57 +35735,6 @@
license = lib.licenses.free;
};
}) {};
- nclip = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "nclip";
- ename = "nclip";
- version = "20130617.1315";
- src = fetchFromGitHub {
- owner = "maio";
- repo = "nclip.el";
- rev = "af88e38b1f04be02bf2e57affc662dbd0f828e67";
- sha256 = "178gjv7kq97p9i4naxql7xabvmchw5x8idkpyjqqky3b24v5wkis";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/f03f254afbe561e0a6dd6c287dcc137da05376cd/recipes/nclip";
- sha256 = "016jp1rqrf1baxlxbi3476m88a0l3r405dh6pmly519wm2k8pipw";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/nclip";
- license = lib.licenses.free;
- };
- }) {};
- neato-graph-bar = callPackage ({ emacs
- , fetchFromGitLab
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "neato-graph-bar";
- ename = "neato-graph-bar";
- version = "20181130.849";
- src = fetchFromGitLab {
- owner = "RobertCochran";
- repo = "neato-graph-bar";
- rev = "a7ae35afd67911e8924f36e646bce0d3e3c1bbe6";
- sha256 = "0sx2m2j00xhcb8l7fw595zsn9wjhcj4xb163rjqd3d1wjrk6fpn8";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/49c5bd4e1506a28ada9856e5f70e520890123d16/recipes/neato-graph-bar";
- sha256 = "1p4jmla75ny443cv7djk3nvl3ikchllnsivxx9yds14ynk4jxhgb";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/neato-graph-bar";
- license = lib.licenses.free;
- };
- }) {};
nemerle = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -67958,32 +35811,6 @@
license = lib.licenses.free;
};
}) {};
- nerdtab = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "nerdtab";
- ename = "nerdtab";
- version = "20180810.2039";
- src = fetchFromGitHub {
- owner = "casouri";
- repo = "nerdtab";
- rev = "601d531fa3748db733fbdff157a0f1cdf8a66416";
- sha256 = "0l9pbgpp90rhji42zmcn8rlp6pnhkplnpn8w6xflw51iwhdkm1rb";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/59bc273db1d34997ea5d51cc6adc33ec785bc7f3/recipes/nerdtab";
- sha256 = "0q7dyqxq058195pgb1pjy27gcrr96096xcvvrapkarym7jsa2wy3";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/nerdtab";
- license = lib.licenses.free;
- };
- }) {};
netease-music = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -68009,160 +35836,6 @@
license = lib.licenses.free;
};
}) {};
- netherlands-holidays = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "netherlands-holidays";
- ename = "netherlands-holidays";
- version = "20150202.817";
- src = fetchFromGitHub {
- owner = "abo-abo";
- repo = "netherlands-holidays";
- rev = "26236178cdd650df9958bf5a086e184096559f00";
- sha256 = "1kkflj2qnrn6kzh1l6bjl5n5507qilb22pqj3h0f2m6hfyn0sw5z";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/abdbce47cb5c623696b5d6fcb3bef2d995d90195/recipes/netherlands-holidays";
- sha256 = "181linsbg5wrx1z7zbj3in2d3d4zd2v7drspkj0b6l0c5yfxwayf";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/netherlands-holidays";
- license = lib.licenses.free;
- };
- }) {};
- netrunner = callPackage ({ company
- , fetchFromGitHub
- , fetchurl
- , helm
- , lib
- , melpaBuild
- , popup }:
- melpaBuild {
- pname = "netrunner";
- ename = "netrunner";
- version = "20160910.1632";
- src = fetchFromGitHub {
- owner = "Kungsgeten";
- repo = "netrunner";
- rev = "c64672992175c8c1073c0f56c2e471839db71a0f";
- sha256 = "1jj8qsq4xa93h3srskhw1l6igzf9jhwl8hfa73zvqr8dhqhp149k";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/a8b1d8c31383b6ec3788ad6c9adf0117190484c9/recipes/netrunner";
- sha256 = "1lk5acbv1fw7q9jwpk0l5hqb9wnscg2kj3qn6b4pwn9ggf8axkpv";
- name = "recipe";
- };
- packageRequires = [ company helm popup ];
- meta = {
- homepage = "https://melpa.org/#/netrunner";
- license = lib.licenses.free;
- };
- }) {};
- network-watch = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "network-watch";
- ename = "network-watch";
- version = "20171123.346";
- src = fetchFromGitHub {
- owner = "jamiguet";
- repo = "network-watch";
- rev = "d80b38dbec79f813c3949a8df8fb5f58d48b60ee";
- sha256 = "1c8qbigdj61dqzkf03y6fzywykqgim6zpfmva8631q5ygnhsrnp2";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/e129679b3e2074af3e3de1b2ccce53a2fa5e9f65/recipes/network-watch";
- sha256 = "0y3vjrh9vlfg44c01ylkszisliwfy5zb8c5z3qrmf3yj4q096f42";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/network-watch";
- license = lib.licenses.free;
- };
- }) {};
- never-comment = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "never-comment";
- ename = "never-comment";
- version = "20140104.1407";
- src = fetchFromGitHub {
- owner = "To1ne";
- repo = "never-comment";
- rev = "1996d003cad6bccf1475f7845d79efacbc7cd673";
- sha256 = "16q90lbgdh9iz3njakgip20mhc8dmd0zjsvk02zsc5q5n9c7rs8i";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/ef3f8e712c10d63fea009951d7916fe376267cbe/recipes/never-comment";
- sha256 = "0sn8y57895bfpgiynnj4m9b3x3dbb9v5fwkcwmf9jr39dbf98v6s";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/never-comment";
- license = lib.licenses.free;
- };
- }) {};
- newlisp-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "newlisp-mode";
- ename = "newlisp-mode";
- version = "20160226.745";
- src = fetchFromGitHub {
- owner = "kosh04";
- repo = "newlisp-mode";
- rev = "ac23be40c81a360988ab803d365f1510733f6db4";
- sha256 = "1zzsfyqwj1k4zh30gl491ipavr9pp9djwjq3zz2q3xh7jys68w8r";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/e5c79c56bddfeb498d28f2575184434fbb93465d/recipes/newlisp-mode";
- sha256 = "0i2d2gyzzvpr5qm2cqzbn9my21lfb66315hg9fj86ac5pkc25zrd";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/newlisp-mode";
- license = lib.licenses.free;
- };
- }) {};
- nexus = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "nexus";
- ename = "nexus";
- version = "20140114.505";
- src = fetchFromGitHub {
- owner = "juergenhoetzel";
- repo = "emacs-nexus";
- rev = "c46f499951b90839aa8683779fe43d8f01672a60";
- sha256 = "1xnx6v49i6abzbhq4fl4bp9d0pp9gby40splpcj211xsb8yiry27";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/80d3665e9a31aa3098df456dbeb07043054e42f5/recipes/nexus";
- sha256 = "1mdphgsqg6n4hryr53rk42z58vfv0g5wkar5ipanr4h4iclkf5vd";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/nexus";
- license = lib.licenses.free;
- };
- }) {};
ng2-mode = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -68239,34 +35912,6 @@
license = lib.licenses.free;
};
}) {};
- niconama = callPackage ({ cl-lib ? null
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , request }:
- melpaBuild {
- pname = "niconama";
- ename = "niconama";
- version = "20170910.801";
- src = fetchFromGitHub {
- owner = "NOBUTOKA";
- repo = "niconama.el";
- rev = "96e7553e50e6bf7b58aac50f52c9b0b8edb41c56";
- sha256 = "1gihjzwl6309vgav5z7jzi8jb7is8vx8lr23kb6h373gwws4bi10";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/ad8e7189e9c4c5d86cef268f45be0dda2d702805/recipes/niconama";
- sha256 = "1v4cvcxrl254jhfl1q5ld0gn4598fcvv0pfhilh2jy76w5acqx81";
- name = "recipe";
- };
- packageRequires = [ cl-lib emacs request ];
- meta = {
- homepage = "https://melpa.org/#/niconama";
- license = lib.licenses.free;
- };
- }) {};
night-owl-theme = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -68293,32 +35938,6 @@
license = lib.licenses.free;
};
}) {};
- nikola = callPackage ({ async
- , emacs
- , fetchgit
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "nikola";
- ename = "nikola";
- version = "20170703.1321";
- src = fetchgit {
- url = "https://git.daemons.it/drymer/nikola.el/";
- rev = "964715ac30943c9d6976999cad208dc60d09def0";
- sha256 = "0b0bpw9r2xi1avzq76pl58bbk1shb57d3bmzd9d53d07gj5c9399";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/8ef4f7c2f1c48edd7b4a6fdcda51908d216c631c/recipes/nikola";
- sha256 = "1d0a80y910klayb9jf0ahn5lj9l6xdhwcp2in3ridmqislavrcnv";
- name = "recipe";
- };
- packageRequires = [ async emacs ];
- meta = {
- homepage = "https://melpa.org/#/nikola";
- license = lib.licenses.free;
- };
- }) {};
nim-mode = callPackage ({ commenter
, emacs
, epc
@@ -68349,32 +35968,6 @@
license = lib.licenses.free;
};
}) {};
- nimbus-theme = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "nimbus-theme";
- ename = "nimbus-theme";
- version = "20190405.1111";
- src = fetchFromGitHub {
- owner = "m-cat";
- repo = "nimbus-theme";
- rev = "5d957b3e8939cebd008b113c8c4d581a66aba36c";
- sha256 = "0msdb2pyr51430crcnjvsfajd9j4cbk1l09f5r8z3nqadp5df6cj";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/fc0e6b456b76e2379c64a86ad844362c58146dc6/recipes/nimbus-theme";
- sha256 = "1hy4rc1v5wg7n6nazdq09gadirb0qvn887mmdavwjnnac45xyi18";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/nimbus-theme";
- license = lib.licenses.free;
- };
- }) {};
ninja-mode = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -68483,59 +36076,6 @@
license = lib.licenses.free;
};
}) {};
- nix-sandbox = callPackage ({ dash
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , s }:
- melpaBuild {
- pname = "nix-sandbox";
- ename = "nix-sandbox";
- version = "20171004.1006";
- src = fetchFromGitHub {
- owner = "travisbhartwell";
- repo = "nix-emacs";
- rev = "7007363e773a419203a69798fb0e0731b2eb0f73";
- sha256 = "00hv8fhyahkdh1vfy1qkahqvsik6d81c7mqh4gjiqxrmb2l1vbcb";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/66be755a6566e8c0cfb5aafa50de29b434023c7a/recipes/nix-sandbox";
- sha256 = "13zr0jbc6if2wvyiplay2gkd5548imfm38x1qy1dw6m2vhbzwp0k";
- name = "recipe";
- };
- packageRequires = [ dash s ];
- meta = {
- homepage = "https://melpa.org/#/nix-sandbox";
- license = lib.licenses.free;
- };
- }) {};
- nix-update = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "nix-update";
- ename = "nix-update";
- version = "20190124.1135";
- src = fetchFromGitHub {
- owner = "jwiegley";
- repo = "nix-update-el";
- rev = "fc6c39c2da3fcfa62f4796816c084a6389c8b6e7";
- sha256 = "01cpl4w49m5dfkx7l8g1q183s341iz6vkjv2q4fbx93avd7msjgi";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/c59e828d4cad3d75344b34b9666349250e53b6ea/recipes/nix-update";
- sha256 = "0if83pvjvr0347301j553bsxrrxniyykq20457cdkzlvva52c0b3";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/nix-update";
- license = lib.licenses.free;
- };
- }) {};
nixos-options = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -68591,113 +36131,6 @@
license = lib.licenses.free;
};
}) {};
- nlinum-relative = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , nlinum }:
- melpaBuild {
- pname = "nlinum-relative";
- ename = "nlinum-relative";
- version = "20160526.8";
- src = fetchFromGitHub {
- owner = "CodeFalling";
- repo = "nlinum-relative";
- rev = "5b9950c97ba79a6f0683e38b13da23f39e01031c";
- sha256 = "0h00ghr5sipayfxz7ykzy7bg1p1vkbwxl5xch3x0h8j2cp1dqc3d";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/eb418a464b112f9bb1bbd050e9602b60c0fcce1c/recipes/nlinum-relative";
- sha256 = "15ifh5bfsarkifx6m7d5rhx6hqlnm231plkf623885kar7i85ia4";
- name = "recipe";
- };
- packageRequires = [ emacs nlinum ];
- meta = {
- homepage = "https://melpa.org/#/nlinum-relative";
- license = lib.licenses.free;
- };
- }) {};
- nm = callPackage ({ company
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , notmuch
- , peg }:
- melpaBuild {
- pname = "nm";
- ename = "nm";
- version = "20151110.1110";
- src = fetchFromGitHub {
- owner = "tjim";
- repo = "nevermore";
- rev = "5a3f29174b3a4b2b2e7a700a862f3b16a942687e";
- sha256 = "1skbjmyikzyiic470sngskggs05r35m8vzm69wbmrjapczginnak";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/cdad6565e83dd79db538d3b6a45e932864246da2/recipes/nm";
- sha256 = "004rjbrkc7jalbd8ih170sy97w2g16k3whqrqwywh09pzrzb05kw";
- name = "recipe";
- };
- packageRequires = [ company emacs notmuch peg ];
- meta = {
- homepage = "https://melpa.org/#/nm";
- license = lib.licenses.free;
- };
- }) {};
- nnir-est = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "nnir-est";
- ename = "nnir-est";
- version = "20180710.1403";
- src = fetchFromGitHub {
- owner = "kawabata";
- repo = "nnir-est";
- rev = "6d0d5c8e33f4e4ccbc22350324c0990d2676fb5a";
- sha256 = "1xmv2mddhvcvnyndpyv42gl8zn5dx7lvd03pl43bjp38srn4aj6g";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/ca17de8cdd53bb32a9d3faaeb38f19f92b18ee38/recipes/nnir-est";
- sha256 = "04ih47pipph8sl84nv6ka4xlpd8vhnpwhs5cchgk5k1zv3l5scxv";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/nnir-est";
- license = lib.licenses.free;
- };
- }) {};
- no-emoji = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "no-emoji";
- ename = "no-emoji";
- version = "20180515.1137";
- src = fetchFromGitHub {
- owner = "ecraven";
- repo = "no-emoji";
- rev = "ebceeab50dbfe4d60235180a57633745dbc18c77";
- sha256 = "19wni50073dwspppx0xlryagg2fgg0jiz5kqf1b1wmaq8xn5b8r9";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/af6b04c1f95468254f2cf361964df9fd25d23586/recipes/no-emoji";
- sha256 = "1lr6bzjxwn3yzw0mq36h2k2h8bqb1ngin42swhv022yx6a022zn2";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/no-emoji";
- license = lib.licenses.free;
- };
- }) {};
no-littering = callPackage ({ cl-lib ? null
, fetchFromGitHub
, fetchurl
@@ -68724,35 +36157,6 @@
license = lib.licenses.free;
};
}) {};
- noaa = callPackage ({ cl-lib ? null
- , dash
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , request }:
- melpaBuild {
- pname = "noaa";
- ename = "noaa";
- version = "20190202.834";
- src = fetchFromGitHub {
- owner = "thomp";
- repo = "noaa";
- rev = "532eb14328027ee29e124768feec23a8ef7ee798";
- sha256 = "1qc9im01fw7k9907a9d2a87hndyyn3sk1kw31cylsvrzsb7ss9f9";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1272203f85375e50d951451bd5fd3baffd57bbfa/recipes/noaa";
- sha256 = "11hzpmgapmf6dc5imvj5jvzcy7hfddyz74lqmrq8128i72q1sj0v";
- name = "recipe";
- };
- packageRequires = [ cl-lib dash emacs request ];
- meta = {
- homepage = "https://melpa.org/#/noaa";
- license = lib.licenses.free;
- };
- }) {};
noccur = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -68778,83 +36182,6 @@
license = lib.licenses.free;
};
}) {};
- nocomments-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "nocomments-mode";
- ename = "nocomments-mode";
- version = "20170213.1237";
- src = fetchFromGitHub {
- owner = "Lindydancer";
- repo = "nocomments-mode";
- rev = "5a41a20cc44dfe4a9ea584354ed6dbc15dd92f46";
- sha256 = "0jwwnypa0lx812p3dqqn9c05g27qavnvr23pzphydx9i15nz80g0";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/d88074771b581d21f48b707f93949f7224a28633/recipes/nocomments-mode";
- sha256 = "1qhalhs29fb3kv5ckk8ny9fbqn2c4r4lwnc566j3bb1caqf2j7g0";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/nocomments-mode";
- license = lib.licenses.free;
- };
- }) {};
- noctilux-theme = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "noctilux-theme";
- ename = "noctilux-theme";
- version = "20161113.642";
- src = fetchFromGitHub {
- owner = "sjrmanning";
- repo = "noctilux-theme";
- rev = "a3265a1be7f4d73f44acce6d968ca6f7add1f2ca";
- sha256 = "12xx0v8d97kjvlkj0ii78vxxvzgmcfc4hzv4yvxymg50rsy0zzqi";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/c0a18df34c105da8c5710643cd8027402bb07c95/recipes/noctilux-theme";
- sha256 = "15ymyv3rq0n31d8h0ry0l4w4r5a8as0q63ajm9wb6yrxxjl1imfp";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/noctilux-theme";
- license = lib.licenses.free;
- };
- }) {};
- node-resolver = callPackage ({ cl-lib ? null
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "node-resolver";
- ename = "node-resolver";
- version = "20140930.1023";
- src = fetchFromGitHub {
- owner = "meandavejustice";
- repo = "node-resolver.el";
- rev = "ef9d0486907a746a80b02ffc6208a09c168a9f7c";
- sha256 = "1cgmq00ackabwcl4h0n2bb8y08wz0ir5rzca2q3sk4asly6d02m7";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/60537705dc922bd50220d378a2992cf36464eb0c/recipes/node-resolver";
- sha256 = "1ng4rgm8f745fajqnbjhi2rshvn6icwdpbh5dzpzhim1w9kb3bhh";
- name = "recipe";
- };
- packageRequires = [ cl-lib ];
- meta = {
- homepage = "https://melpa.org/#/node-resolver";
- license = lib.licenses.free;
- };
- }) {};
nodejs-repl = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -68906,57 +36233,6 @@
license = lib.licenses.free;
};
}) {};
- nodenv = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "nodenv";
- ename = "nodenv";
- version = "20181023.843";
- src = fetchFromGitHub {
- owner = "twlz0ne";
- repo = "nodenv.el";
- rev = "832fb0cbac4513edde7ebd6d1ab971c54313be36";
- sha256 = "0hn29y8gv9y9646yacnhirx2iz1z7h0p3wrzjn5axbhw0y382qhq";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/272df58a1112c8c082c740d54bd37469af513d4a/recipes/nodenv";
- sha256 = "15wqlpswp4m19widnls21rm5n0ijfhmw3vyx0ch5k2bhi4a5rip6";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/nodenv";
- license = lib.licenses.free;
- };
- }) {};
- noflet = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "noflet";
- ename = "noflet";
- version = "20141102.654";
- src = fetchFromGitHub {
- owner = "nicferrier";
- repo = "emacs-noflet";
- rev = "7ae84dc3257637af7334101456dafe1759c6b68a";
- sha256 = "0g70gnmfi8n24jzfci9nrj0n9bn1qig7b8f9f325rin8h7x32ypf";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/df33a7230e0e4a67ce75e5cce6a436e2a0d205e8/recipes/noflet";
- sha256 = "0vzamqb52n330mi6rydrd4ls8nbwh5s42fc2gs5y15zakp6mvhr3";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/noflet";
- license = lib.licenses.free;
- };
- }) {};
nofrils-acme-theme = callPackage ({ emacs
, fetchFromGitLab
, fetchurl
@@ -69009,81 +36285,6 @@
license = lib.licenses.free;
};
}) {};
- nordless-theme = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "nordless-theme";
- ename = "nordless-theme";
- version = "20180613.50";
- src = fetchFromGitHub {
- owner = "lthms";
- repo = "nordless-theme.el";
- rev = "e4da9d2465a123ea28e33a507cc7ab69692cde86";
- sha256 = "172ww1amlvd17f9qr69a17ksk0i8zpfma0arkygmf8n951zkqv8d";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/3de9da6cb8c1a75ff1d41a69e156c21be00713b6/recipes/nordless-theme";
- sha256 = "1ylvqh5hf7asdx2mn57fsaa7ncfgfzq1ss50k9665k32zvv3zksx";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/nordless-theme";
- license = lib.licenses.free;
- };
- }) {};
- northcode-theme = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "northcode-theme";
- ename = "northcode-theme";
- version = "20180423.949";
- src = fetchFromGitHub {
- owner = "Northcode";
- repo = "northcode-theme.el";
- rev = "4d3750461ba25ec45321318b5f1af4e8fdf16147";
- sha256 = "1yin5i38jdp47k6b7mc0jkv9ihl8nk5rpqin4qmwbhb871zxn7ma";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/25dcd4dd8189ad0fbf6c31874daa618bf1957863/recipes/northcode-theme";
- sha256 = "0x4dryx174kcjzm11z9q5qqlzr1c9zr0p32zwgbvgypgnvjy6i4g";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/northcode-theme";
- license = lib.licenses.free;
- };
- }) {};
- nose = callPackage ({ fetchhg
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "nose";
- ename = "nose";
- version = "20140520.948";
- src = fetchhg {
- url = "https://bitbucket.com/durin42/nosemacs";
- rev = "194d7789bf79";
- sha256 = "07bhzddaxdjd591xmg59yd657a1is0q515291jd83mjsmgq258bm";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/nose";
- sha256 = "1xdqsxq06x2m9rcfn1qh89g0mz1rvzl246d3sfmciwcyl932x682";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/nose";
- license = lib.licenses.free;
- };
- }) {};
notmuch = callPackage ({ fetchgit
, fetchurl
, lib
@@ -69091,7 +36292,7 @@
melpaBuild {
pname = "notmuch";
ename = "notmuch";
- version = "0.29.-1.1";
+ version = "0.29";
src = fetchgit {
url = "https://git.notmuchmail.org/git/notmuch";
rev = "9300defd64acf68b8e6fa6fbd89b8050168bb63d";
@@ -69162,32 +36363,6 @@
license = lib.licenses.free;
};
}) {};
- nova-theme = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "nova-theme";
- ename = "nova-theme";
- version = "20190220.1638";
- src = fetchFromGitHub {
- owner = "muirmanders";
- repo = "emacs-nova-theme";
- rev = "b37c4cf078a811f40e30dbb790fe26845d601cd9";
- sha256 = "1wxl6b14429kqvrm6mb2zmcxixcz7l4k8p5y408jr0yjdw3rlpki";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/16457166c17fb1cc074a34c61e52ebc285c0eacc/recipes/nova-theme";
- sha256 = "1d2271qd5z48x71pxjg4lngsc5ddw5iqh496p04f63sm08cgaky4";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/nova-theme";
- license = lib.licenses.free;
- };
- }) {};
noxml-fold = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -69239,34 +36414,6 @@
license = lib.licenses.free;
};
}) {};
- nrepl-eval-sexp-fu = callPackage ({ fetchFromGitHub
- , fetchurl
- , highlight
- , lib
- , melpaBuild
- , smartparens
- , thingatpt ? null }:
- melpaBuild {
- pname = "nrepl-eval-sexp-fu";
- ename = "nrepl-eval-sexp-fu";
- version = "20140311.341";
- src = fetchFromGitHub {
- owner = "samaaron";
- repo = "nrepl-eval-sexp-fu";
- rev = "3a24b7d4bca13e87c987a4ddd212da914ff59191";
- sha256 = "1nwj1ax2qmmlab4lik0b7japhqd424d0rb995dfv89p99gp8vmvc";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/nrepl-eval-sexp-fu";
- sha256 = "1mz7a6aa4x23khlfqhhn9ycs3yxg44h5cckg4v4rc6lbif1jzzf8";
- name = "recipe";
- };
- packageRequires = [ highlight smartparens thingatpt ];
- meta = {
- homepage = "https://melpa.org/#/nrepl-eval-sexp-fu";
- license = lib.licenses.free;
- };
- }) {};
nrepl-sync = callPackage ({ cider
, fetchFromGitHub
, fetchurl
@@ -69344,120 +36491,6 @@
license = lib.licenses.free;
};
}) {};
- nswbuff = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "nswbuff";
- ename = "nswbuff";
- version = "20190320.40";
- src = fetchFromGitHub {
- owner = "joostkremers";
- repo = "nswbuff";
- rev = "362da7f3687e2eb5bb11667347de85f4a9d002bc";
- sha256 = "0l2xfz8z5qd4hz3kv6zn7h6qq3narkilri8a071y1n8j31jps4ma";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/c0f7e952f3fbec691df51d19224f701e6530f16e/recipes/nswbuff";
- sha256 = "1fq2dp9jlhfl9rqw6ldh0xnm0hx9ama2wf87s51qgqxxdn9ngk8x";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/nswbuff";
- license = lib.licenses.free;
- };
- }) {};
- nu-mode = callPackage ({ ace-window
- , avy
- , fetchFromGitHub
- , fetchurl
- , lib
- , lv
- , melpaBuild
- , transpose-frame
- , undo-tree
- , which-key }:
- melpaBuild {
- pname = "nu-mode";
- ename = "nu-mode";
- version = "20190404.1332";
- src = fetchFromGitHub {
- owner = "pyluyten";
- repo = "emacs-nu";
- rev = "d5fb4d26d1b0bb383ea2827cc5af5dfb2a269d2b";
- sha256 = "0nd7ypin9kl784iqffznld6kknghdjywqnjw5nwinfgkwhcrjpdd";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/230d5f8fdd965a24b8ff3cc94acf378d04815fca/recipes/nu-mode";
- sha256 = "0nzv3p62k8yyyww6idlxyi94q4d07nis7ydypar8d01jfqlrybkn";
- name = "recipe";
- };
- packageRequires = [
- ace-window
- avy
- lv
- transpose-frame
- undo-tree
- which-key
- ];
- meta = {
- homepage = "https://melpa.org/#/nu-mode";
- license = lib.licenses.free;
- };
- }) {};
- nubox = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "nubox";
- ename = "nubox";
- version = "20170619.210";
- src = fetchFromGitHub {
- owner = "martijnat";
- repo = "nubox";
- rev = "84aa965f0cb4bde293237e4cc586643d1f662f83";
- sha256 = "0i1x0sd61c8k4q9ijgxyz21gvj1gah273990qfjzj9a25r4hzvlj";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/725948568b8a067762b63475bc400f089f478a36/recipes/nubox";
- sha256 = "0snzfsd765i363ykdhqkn65lqy97c79d20lalszrwcl2snm96n1f";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/nubox";
- license = lib.licenses.free;
- };
- }) {};
- number = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "number";
- ename = "number";
- version = "20170901.612";
- src = fetchFromGitHub {
- owner = "chrisdone";
- repo = "number";
- rev = "bbc278d34dbcca83e70e3be855ec98b23debfb99";
- sha256 = "0a1r352zs58mdwkq58561qxrz3m5rwk3xqcaaqhkxc0h9jqs4a9r";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/49d56b297ab729695249143dd65d3c67543cfcc6/recipes/number";
- sha256 = "1nwcdv5ibirxx3sqadh6mnpj40ni3wna7wnjh343mx38dk2dzncf";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/number";
- license = lib.licenses.free;
- };
- }) {};
number-lock = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -69509,57 +36542,6 @@
license = lib.licenses.free;
};
}) {};
- nummm-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "nummm-mode";
- ename = "nummm-mode";
- version = "20131117.214";
- src = fetchFromGitHub {
- owner = "agpchil";
- repo = "nummm-mode";
- rev = "73b1aa8643d86197c82cd28acdaefcb48a1e0abe";
- sha256 = "1022dchkh0hbhsqds6zncfayjgq5zg2x2r5gklr0nyx8j2qd8g7j";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/nummm-mode";
- sha256 = "1gdq00f3x0rxxj917x9381v2x7cl9yabj7559zr5vj1clwza8jn4";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/nummm-mode";
- license = lib.licenses.free;
- };
- }) {};
- nv-delete-back = callPackage ({ emacs
- , fetchFromGitLab
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "nv-delete-back";
- ename = "nv-delete-back";
- version = "20170224.449";
- src = fetchFromGitLab {
- owner = "nivaca";
- repo = "nv-delete-back";
- rev = "44d506105989873dc1725e0cfc675925b35c9c98";
- sha256 = "0lgz0sknnrxmc7iy4lniday1nwpz4q841c3w2hm72aiwn5z21h22";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/7542fa39060b507a6f455225367e45e89d3e2f92/recipes/nv-delete-back";
- sha256 = "13izzym4alda05k7ra67lyjx6dx23fjqz2dqk7mrzhik9x552hsr";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/nv-delete-back";
- license = lib.licenses.free;
- };
- }) {};
nvm = callPackage ({ dash
, dash-functional
, f
@@ -69614,57 +36596,6 @@
license = lib.licenses.free;
};
}) {};
- nyx-theme = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "nyx-theme";
- ename = "nyx-theme";
- version = "20170910.607";
- src = fetchFromGitHub {
- owner = "guidoschmidt";
- repo = "emacs-nyx-theme";
- rev = "afe2b8c3b5421b4c292d182dcf77079b278e93d8";
- sha256 = "1qamw4x3yrygy8qkicy6smxksnsfkkp76hlnivswh7dm3fr23v6m";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/35763febad20f29320d459394f810668db6c3353/recipes/nyx-theme";
- sha256 = "11629h7jfnq2sahwiiqx01qpv3xb0iqvcqm5k9w1zhg01jhjfmw2";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/nyx-theme";
- license = lib.licenses.free;
- };
- }) {};
- nz-holidays = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "nz-holidays";
- ename = "nz-holidays";
- version = "20190307.1437";
- src = fetchFromGitHub {
- owner = "techquila";
- repo = "nz-holidays";
- rev = "b609dbb02e6824600b43d3976c8a428347c7df93";
- sha256 = "10z563jmgwz22jv720rssc3irbl9624icfp059pp0qirnlg2ibx0";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/4dfbe628247fc73d9a0963b7e9b92b07854817c9/recipes/nz-holidays";
- sha256 = "0h6dnwpinm3bxir1l69ggf483gjfglpi46z3ffiac3yl3h00j5m6";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/nz-holidays";
- license = lib.licenses.free;
- };
- }) {};
o-blog = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -69690,84 +36621,6 @@
license = lib.licenses.free;
};
}) {};
- oauth = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "oauth";
- ename = "oauth";
- version = "20130127.1751";
- src = fetchFromGitHub {
- owner = "psanford";
- repo = "emacs-oauth";
- rev = "ee4744ad76a1560281b0c4944575a3bd598c6458";
- sha256 = "058dyk1c3iw0ip8n8rfpskvqiriqilpclkzc18x73msp5svrh3lj";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/oauth";
- sha256 = "0vgxvscb9cr07g3lzpi269kamgzhpac6dir1rlr4qd2wdv0nifl9";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/oauth";
- license = lib.licenses.free;
- };
- }) {};
- ob-ammonite = callPackage ({ ammonite-term-repl
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , s
- , xterm-color }:
- melpaBuild {
- pname = "ob-ammonite";
- ename = "ob-ammonite";
- version = "20190218.2351";
- src = fetchFromGitHub {
- owner = "zwild";
- repo = "ob-ammonite";
- rev = "c9832401f0f782aa5ca73c289c5aaa93076d77a6";
- sha256 = "1igy3c239gaxcby6ap2hhfk0kdh3g1mkfx8hh5f2c46ncv4zrhf0";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/508358506a6994baf120be2acba86762f5727c6c/recipes/ob-ammonite";
- sha256 = "0wr7p3sfn9m8vz87lzas943zcm8vkzgfki9pbs3rh3fxvdc197lb";
- name = "recipe";
- };
- packageRequires = [ ammonite-term-repl s xterm-color ];
- meta = {
- homepage = "https://melpa.org/#/ob-ammonite";
- license = lib.licenses.free;
- };
- }) {};
- ob-applescript = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "ob-applescript";
- ename = "ob-applescript";
- version = "20160914.1327";
- src = fetchFromGitHub {
- owner = "stig";
- repo = "ob-applescript.el";
- rev = "b5c2966b3bab37a3b1f4e9c663d11da8ef9956ec";
- sha256 = "0asab7zppxj9dm20f8i273lr8z19lcrjri7v9gmw1jjn0cshfgjm";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/23b075774be913539c3f057dcb7f24fbc05c37a4/recipes/ob-applescript";
- sha256 = "1gk8cgscj9wbl5k8ahh1a61p271xpk5vk2w64a8y3njnwrwxm9jc";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/ob-applescript";
- license = lib.licenses.free;
- };
- }) {};
ob-async = callPackage ({ async
, dash
, emacs
@@ -69797,32 +36650,6 @@
license = lib.licenses.free;
};
}) {};
- ob-axiom = callPackage ({ axiom-environment
- , emacs
- , fetchgit
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "ob-axiom";
- ename = "ob-axiom";
- version = "20190223.431";
- src = fetchgit {
- url = "https://bitbucket.org/pdo/axiom-environment";
- rev = "3fde83f160e785fe4647ddb849df3cc64b23d27c";
- sha256 = "0n102k1zch706kls2s196fcc84pjsc0mnhasb5vi27bhk229x8q5";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/8b4c6b03c5ff78ce327dcf66b175e266bbc53dbf/recipes/ob-axiom";
- sha256 = "17qh4hsr3aw4d0p81px3qcbax6dv2zjhyn5n9pxqwcp2skm5vff5";
- name = "recipe";
- };
- packageRequires = [ axiom-environment emacs ];
- meta = {
- homepage = "https://melpa.org/#/ob-axiom";
- license = lib.licenses.free;
- };
- }) {};
ob-blockdiag = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -69848,110 +36675,6 @@
license = lib.licenses.free;
};
}) {};
- ob-browser = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , org }:
- melpaBuild {
- pname = "ob-browser";
- ename = "ob-browser";
- version = "20170720.1218";
- src = fetchFromGitHub {
- owner = "krisajenkins";
- repo = "ob-browser";
- rev = "a347d9df1c87b7eb660be8723982c7ad2563631a";
- sha256 = "0q2amf2kh2gkn65132q9nvn87pws5mmnr3wm1ajk23c01kcjf29c";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/c51529213c15d42a7a7b76771f07dd73c036a51f/recipes/ob-browser";
- sha256 = "1yqbzmmazamgf8fi8ipq14ffm8h1pp5d2lkflbxjsagdq61hirxm";
- name = "recipe";
- };
- packageRequires = [ org ];
- meta = {
- homepage = "https://melpa.org/#/ob-browser";
- license = lib.licenses.free;
- };
- }) {};
- ob-cfengine3 = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "ob-cfengine3";
- ename = "ob-cfengine3";
- version = "20190329.1503";
- src = fetchFromGitHub {
- owner = "nickanderson";
- repo = "ob-cfengine3";
- rev = "96e74940351894512dca89cff473c46e74458587";
- sha256 = "04kdg0dwbzdr4pr7y55iiax9ba0y0is8prgn98y9gj9d383r2mif";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/d068233c438e76cbcc6e9a97cbec9b2550a18ed6/recipes/ob-cfengine3";
- sha256 = "1pp3mykc5k629qlqixpl2900m1j604xpp6agrngwagsvf7qkhnvl";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/ob-cfengine3";
- license = lib.licenses.free;
- };
- }) {};
- ob-clojurescript = callPackage ({ emacs
- , fetchFromGitLab
- , fetchurl
- , lib
- , melpaBuild
- , org }:
- melpaBuild {
- pname = "ob-clojurescript";
- ename = "ob-clojurescript";
- version = "20180406.1128";
- src = fetchFromGitLab {
- owner = "statonjr";
- repo = "ob-clojurescript";
- rev = "17ee1558aa94c7b0246fd03f684884122806cfe7";
- sha256 = "1an4m7mpr345xw4fanyf2vznxm1dxbv35987caq1wq9039mzfaxr";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/0c9ccc0d2d034944cb9688d5e184fa5df95f6b31/recipes/ob-clojurescript";
- sha256 = "0h4qjz65k8m1ms7adrm5ypmjcjxx1nws1jmda88c4jjwjyz40jjf";
- name = "recipe";
- };
- packageRequires = [ emacs org ];
- meta = {
- homepage = "https://melpa.org/#/ob-clojurescript";
- license = lib.licenses.free;
- };
- }) {};
- ob-coffee = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , org }:
- melpaBuild {
- pname = "ob-coffee";
- ename = "ob-coffee";
- version = "20170725.724";
- src = fetchFromGitHub {
- owner = "zweifisch";
- repo = "ob-coffee";
- rev = "7f0b330273e8af7777de87a75fe52a89798e4548";
- sha256 = "1w3fw3ka46d7vcsdq03l0wlviwsk52asfjiy9zfk4qabhpqwj9mz";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/e23d7f1d021b07053acb57e2668ece0eaed0f817/recipes/ob-coffee";
- sha256 = "16k8r9rqz4mayxl85pjdfsrz43k2hwcf8k7aff8wnic0ldzp6ivf";
- name = "recipe";
- };
- packageRequires = [ org ];
- meta = {
- homepage = "https://melpa.org/#/ob-coffee";
- license = lib.licenses.free;
- };
- }) {};
ob-coffeescript = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -69977,268 +36700,6 @@
license = lib.licenses.free;
};
}) {};
- ob-crystal = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "ob-crystal";
- ename = "ob-crystal";
- version = "20180125.2318";
- src = fetchFromGitHub {
- owner = "brantou";
- repo = "ob-crystal";
- rev = "b3bb27a21a4cefef3f5aeef52718b694bd51245b";
- sha256 = "0clrvk2vz1ag93rlmsc0dd0pgxb4x22935v51jqjkp2gw3n50kxx";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/b9a7d43199a83ab6f672aaa69ef4e158c868f180/recipes/ob-crystal";
- sha256 = "11mk2spwlddbrvcimhzw43b6d3gxzmi8br58bily1x4qkvl6zy4n";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/ob-crystal";
- license = lib.licenses.free;
- };
- }) {};
- ob-cypher = callPackage ({ cypher-mode
- , dash
- , dash-functional
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , s }:
- melpaBuild {
- pname = "ob-cypher";
- ename = "ob-cypher";
- version = "20170725.720";
- src = fetchFromGitHub {
- owner = "zweifisch";
- repo = "ob-cypher";
- rev = "114bdf6db20ee0ade060bb5df379ddee48ff4f26";
- sha256 = "142d91jvf7nr7q2sj61njy5hv6ljhsq2qkvkdbkfqj07rgpwfgn3";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/dc05c833f64e7974cf5a2ad60a053a04267251cb/recipes/ob-cypher";
- sha256 = "1ygmx0rjvxjl8hifkkwrkk9gpsmdsk6ndb6pg7y78p8hfp5jpyq3";
- name = "recipe";
- };
- packageRequires = [ cypher-mode dash dash-functional s ];
- meta = {
- homepage = "https://melpa.org/#/ob-cypher";
- license = lib.licenses.free;
- };
- }) {};
- ob-dao = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , org }:
- melpaBuild {
- pname = "ob-dao";
- ename = "ob-dao";
- version = "20170816.858";
- src = fetchFromGitHub {
- owner = "xuchunyang";
- repo = "ob-dao";
- rev = "8c62bd800b1f572860e30be4b72c71fa415a2e31";
- sha256 = "12pxn04qn24grinbybaj03qimg6vc1n2cbs9bh94s9zcyg2wv982";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/6284c73f1d0797fa2ed4d9a11d3198076cc5fff9/recipes/ob-dao";
- sha256 = "0nj1qyac0lj5ljrqfqi9g2z0d7z5yihajkvjhlx5kg9zs3lgs5rs";
- name = "recipe";
- };
- packageRequires = [ org ];
- meta = {
- homepage = "https://melpa.org/#/ob-dao";
- license = lib.licenses.free;
- };
- }) {};
- ob-dart = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "ob-dart";
- ename = "ob-dart";
- version = "20170106.824";
- src = fetchFromGitHub {
- owner = "mzimmerm";
- repo = "ob-dart";
- rev = "2e463d83a3fe1c9c86f2040e0d22c06dfa49ecbf";
- sha256 = "0qkyyrrgs0yyqzq6ks1xcb8iwm1qfxwan1n8ichmrsbhwsc05jd3";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/bb3219b9623587365f56e9eeb4bd97f3dc449a11/recipes/ob-dart";
- sha256 = "1lqi4pazkjcxvmm2bdpd9vcakmdclkamb69xwxdl44p68wsq2gn8";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/ob-dart";
- license = lib.licenses.free;
- };
- }) {};
- ob-diagrams = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "ob-diagrams";
- ename = "ob-diagrams";
- version = "20160407.537";
- src = fetchFromGitHub {
- owner = "bergey";
- repo = "org-babel-diagrams";
- rev = "be45815f5596d181592fae709096b7b5f4a71992";
- sha256 = "0kx95lvkvg6h6lhs9knlp8rwi05y8y0i8w8vs7mwm378syls0qk0";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/fbb31def39fef108ecf7be105a901abfa6845f76/recipes/ob-diagrams";
- sha256 = "1r1p9l61az1jb5m4k2dwnkp9j8xlcb588gq4mcg796vnbdscfcy2";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/ob-diagrams";
- license = lib.licenses.free;
- };
- }) {};
- ob-elixir = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , org }:
- melpaBuild {
- pname = "ob-elixir";
- ename = "ob-elixir";
- version = "20170725.719";
- src = fetchFromGitHub {
- owner = "zweifisch";
- repo = "ob-elixir";
- rev = "8990a8178b2f7bd93504a9ab136622aab6e82e32";
- sha256 = "19awvfbjsnd5la14ad8cfd20pdwwlf3d2wxmz7kz6x6rf48x38za";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/287e4758f6f1df0152d68577abd91478c4a3f4ab/recipes/ob-elixir";
- sha256 = "1l5b9hww2vmqnjlsd6lbjpz9walck82ngang1amfnk4xn6d0gdhi";
- name = "recipe";
- };
- packageRequires = [ org ];
- meta = {
- homepage = "https://melpa.org/#/ob-elixir";
- license = lib.licenses.free;
- };
- }) {};
- ob-elvish = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "ob-elvish";
- ename = "ob-elvish";
- version = "20180427.1200";
- src = fetchFromGitHub {
- owner = "zzamboni";
- repo = "ob-elvish";
- rev = "369181ceae1190bf971c71aebf9fc6133bd98c39";
- sha256 = "170bw9qryhzjzmyi84qc1jkzy1y7i8sjz6vmvyfc264ia4j51m9w";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/90e979025f56061bc960f630945b09320a3dd28e/recipes/ob-elvish";
- sha256 = "1rpn3dabwgray1w55jib4ixr3l1afz9j7nyn0ha2r602hs02x1ya";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/ob-elvish";
- license = lib.licenses.free;
- };
- }) {};
- ob-fsharp = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , fsharp-mode
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "ob-fsharp";
- ename = "ob-fsharp";
- version = "20170618.729";
- src = fetchFromGitHub {
- owner = "juergenhoetzel";
- repo = "ob-fsharp";
- rev = "65ec2b626ac55313d8a04e746940370f615fed1e";
- sha256 = "12k6z3zsh8av3avhl2a62v475bpxpcdy56v8i248bv1wgd3ma2mi";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/89bc8c5fe6db0573109e82b3d1350d33d6d8aff5/recipes/ob-fsharp";
- sha256 = "1b9052lvr03vyizkjz3qsa8cw3pjml4kb3yy13jwh09jz5q87qbf";
- name = "recipe";
- };
- packageRequires = [ emacs fsharp-mode ];
- meta = {
- homepage = "https://melpa.org/#/ob-fsharp";
- license = lib.licenses.free;
- };
- }) {};
- ob-go = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "ob-go";
- ename = "ob-go";
- version = "20190201.1240";
- src = fetchFromGitHub {
- owner = "pope";
- repo = "ob-go";
- rev = "2067ed55f4c1d33a43cb3f6948609d240a8915f5";
- sha256 = "069w9dymiv97cvlpzabf193nyw174r38lz5j11x23x956ladvpbw";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/3afb687d6d3d1e52336ca9a7343278a9f37c3d54/recipes/ob-go";
- sha256 = "09d8jrzijf8gr08615rdmf366zgip43dxvyihy0yzhk7j0p3iahj";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/ob-go";
- license = lib.licenses.free;
- };
- }) {};
- ob-html-chrome = callPackage ({ emacs
- , f
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , s }:
- melpaBuild {
- pname = "ob-html-chrome";
- ename = "ob-html-chrome";
- version = "20181219.242";
- src = fetchFromGitHub {
- owner = "nikclayton";
- repo = "ob-html-chrome";
- rev = "7af6e4a24ed0aaf67751bdf752c7ca0ba02bb8d4";
- sha256 = "0h33y11921ajw60b4hqpg0nvdvx3w3cia90wf53c5zg2bckcrfjh";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/ac4380b5ea63c5296e517fccafa4d6a69dc73d0d/recipes/ob-html-chrome";
- sha256 = "1z3bi5i9n6dqvarl32syb6y36px3pf0pppqxn02rrx1rwvg81iql";
- name = "recipe";
- };
- packageRequires = [ emacs f s ];
- meta = {
- homepage = "https://melpa.org/#/ob-html-chrome";
- license = lib.licenses.free;
- };
- }) {};
ob-http = callPackage ({ cl-lib ? null
, fetchFromGitHub
, fetchurl
@@ -70292,113 +36753,6 @@
license = lib.licenses.free;
};
}) {};
- ob-ipython = callPackage ({ dash
- , dash-functional
- , emacs
- , f
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , s }:
- melpaBuild {
- pname = "ob-ipython";
- ename = "ob-ipython";
- version = "20180224.153";
- src = fetchFromGitHub {
- owner = "gregsexton";
- repo = "ob-ipython";
- rev = "7147455230841744fb5b95dcbe03320313a77124";
- sha256 = "1a10fc2jk37ni5sjjvf87s5nyaz2a6h2mlj5dxh4dhv5sd3bb85p";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/557c36e86844c211f2d2ee097ce51ee9db92ea8b/recipes/ob-ipython";
- sha256 = "06llf365k8m81ljmlajqvxlh84qg6h0flp3m6gb0zx71xilvw186";
- name = "recipe";
- };
- packageRequires = [ dash dash-functional emacs f s ];
- meta = {
- homepage = "https://melpa.org/#/ob-ipython";
- license = lib.licenses.free;
- };
- }) {};
- ob-kotlin = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , org }:
- melpaBuild {
- pname = "ob-kotlin";
- ename = "ob-kotlin";
- version = "20180823.621";
- src = fetchFromGitHub {
- owner = "zweifisch";
- repo = "ob-kotlin";
- rev = "b817ffb7fd03a25897eb2aba24af2035bbe3cfa8";
- sha256 = "1w31cj1wbblm9raav4kxbykf124k6rvn0ryxfn6myvv1x900w02a";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/7aa74d349eb55aafddfc4327b6160ae2da80d689/recipes/ob-kotlin";
- sha256 = "19g4s9dnipg9aa360mp0affmnslm6h7byg595rnaz6rz25a3qdpx";
- name = "recipe";
- };
- packageRequires = [ org ];
- meta = {
- homepage = "https://melpa.org/#/ob-kotlin";
- license = lib.licenses.free;
- };
- }) {};
- ob-lfe = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , org }:
- melpaBuild {
- pname = "ob-lfe";
- ename = "ob-lfe";
- version = "20170725.720";
- src = fetchFromGitHub {
- owner = "zweifisch";
- repo = "ob-lfe";
- rev = "f7780f58e650b4d29dfd834c662b1d354b620a8e";
- sha256 = "1ricvb2wxsmsd4jr0301pk30mswx41msy07fjgwhsq8dimxzmngp";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/d595d3b93e6b25ece1cdffc9d1502e8a868eb538/recipes/ob-lfe";
- sha256 = "11cpaxk9wb27b9zhyns75dqpds4gh3cbjcvia4p2bnvmbm8lz4y8";
- name = "recipe";
- };
- packageRequires = [ org ];
- meta = {
- homepage = "https://melpa.org/#/ob-lfe";
- license = lib.licenses.free;
- };
- }) {};
- ob-mermaid = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "ob-mermaid";
- ename = "ob-mermaid";
- version = "20180522.959";
- src = fetchFromGitHub {
- owner = "arnm";
- repo = "ob-mermaid";
- rev = "7f7fb533babc0b783c20e82527ddc7f0ebfbb629";
- sha256 = "0cllrjbbcqgr8qm9n8w7bmvgh2xvrrl3gqjmws3rsn0k7biq3kz5";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/4df483806a4caaeb99fdac42f83bfe648d2e4165/recipes/ob-mermaid";
- sha256 = "0fp57m80ksnb6zs1gndwsqhrphkv9lfysq0h7h8g3parizh2idzs";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/ob-mermaid";
- license = lib.licenses.free;
- };
- }) {};
ob-ml-marklogic = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -70424,58 +36778,6 @@
license = lib.licenses.free;
};
}) {};
- ob-mongo = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , org }:
- melpaBuild {
- pname = "ob-mongo";
- ename = "ob-mongo";
- version = "20170720.1219";
- src = fetchFromGitHub {
- owner = "krisajenkins";
- repo = "ob-mongo";
- rev = "371bf19c7c10eab2f86424f8db8ab685997eb5aa";
- sha256 = "02k4gvh1nqhn0h36h77vvms7xwwak8rdddibbidsrwwspbr4qr1s";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/e020ea3ef89a3787d498c2f698c82c5073c9ee32/recipes/ob-mongo";
- sha256 = "1cgmqsl5dzi8xy3sh5xsfkczl555fpd4q6kgsh9xkn74sz227907";
- name = "recipe";
- };
- packageRequires = [ org ];
- meta = {
- homepage = "https://melpa.org/#/ob-mongo";
- license = lib.licenses.free;
- };
- }) {};
- ob-nim = callPackage ({ cl-lib ? null
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "ob-nim";
- ename = "ob-nim";
- version = "20170809.1130";
- src = fetchFromGitHub {
- owner = "Lompik";
- repo = "ob-nim";
- rev = "742b6b1fccdb245807b540f41f7f422b27f36230";
- sha256 = "0qnx9b40y1vxb7wsznnn29chl80fwlh42g2gm9l1p8jvli3jm2wp";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/35763febad20f29320d459394f810668db6c3353/recipes/ob-nim";
- sha256 = "0j8mk12d29jyhhj4dlc0jykqmqy8g0yrbv7f2sqig83wj531bwza";
- name = "recipe";
- };
- packageRequires = [ cl-lib ];
- meta = {
- homepage = "https://melpa.org/#/ob-nim";
- license = lib.licenses.free;
- };
- }) {};
ob-prolog = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -70501,57 +36803,6 @@
license = lib.licenses.free;
};
}) {};
- ob-restclient = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , restclient }:
- melpaBuild {
- pname = "ob-restclient";
- ename = "ob-restclient";
- version = "20180904.9";
- src = fetchFromGitHub {
- owner = "alf";
- repo = "ob-restclient.el";
- rev = "00b2c5a6637ab6e504708612357ffb29b5416e4b";
- sha256 = "03jsdczywys5df1ac7bmli31wkxvbsymd5k0s6iaz62kc454l3wj";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/28c1d3af3f8b2f598b80b03b64de5d15cbb3f13d/recipes/ob-restclient";
- sha256 = "0nv2wsqmpschym6ch8fr4a79hlnpz31jc8y2flsygaqj0annjkfk";
- name = "recipe";
- };
- packageRequires = [ restclient ];
- meta = {
- homepage = "https://melpa.org/#/ob-restclient";
- license = lib.licenses.free;
- };
- }) {};
- ob-rust = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "ob-rust";
- ename = "ob-rust";
- version = "20180911.835";
- src = fetchFromGitHub {
- owner = "micanzhang";
- repo = "ob-rust";
- rev = "f57b489d931d6a7f9ca2b688af3352fd706f5f6b";
- sha256 = "1fsvfy2yr22mhjkdn0bv3n3i8039a5gw5rs1cq41msv8ghb2cp0i";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/843affc2fd481647c5377bf9a96b636b39718034/recipes/ob-rust";
- sha256 = "1syzwh399wcwqhg1f3fvl12978dr574wji7cknqvll3hyh0zwd65";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/ob-rust";
- license = lib.licenses.free;
- };
- }) {};
ob-sagemath = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -70606,58 +36857,6 @@
license = lib.licenses.free;
};
}) {};
- ob-sql-mode = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "ob-sql-mode";
- ename = "ob-sql-mode";
- version = "20190212.1255";
- src = fetchFromGitHub {
- owner = "nikclayton";
- repo = "ob-sql-mode";
- rev = "49dac3b64f9eaebe9d406e398f95a40b2993e6d0";
- sha256 = "0js5ygc43qi83jzfcri2nv71ii4q7a9yc1m4q34iyn0zli70r4gh";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/ob-sql-mode";
- sha256 = "143agagkmwqwdqc0mbdsqp6v02y12q437v4x6dlh81yihif56rdk";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/ob-sql-mode";
- license = lib.licenses.free;
- };
- }) {};
- ob-swift = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , org }:
- melpaBuild {
- pname = "ob-swift";
- ename = "ob-swift";
- version = "20170921.625";
- src = fetchFromGitHub {
- owner = "zweifisch";
- repo = "ob-swift";
- rev = "ed478ddbbe41ce5373efde06b4dd0c3663c9055f";
- sha256 = "1vwg10d33mwb32bpdbpghfihy3ryiqbc4yydpb5hfv3v5k83vs0x";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/b401383966398d3223032c59baa920ce594e5fef/recipes/ob-swift";
- sha256 = "19mcjfmijbajldm3jz8ij1x2p7d164mbq2ln6yb6iihxmdqnn2q4";
- name = "recipe";
- };
- packageRequires = [ org ];
- meta = {
- homepage = "https://melpa.org/#/ob-swift";
- license = lib.licenses.free;
- };
- }) {};
ob-tmux = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -70713,33 +36912,6 @@
license = lib.licenses.free;
};
}) {};
- ob-typescript = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , org }:
- melpaBuild {
- pname = "ob-typescript";
- ename = "ob-typescript";
- version = "20150804.530";
- src = fetchFromGitHub {
- owner = "lurdan";
- repo = "ob-typescript";
- rev = "9dcbd226cbfb75e790dd9de91d9401dde85a889a";
- sha256 = "1ycqdjqn5361pcnc95hxhjqd3y96cjjnaylrnzwhmacl38jm3vai";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/11733cd33add89b541dcc1f90a732833861b10d9/recipes/ob-typescript";
- sha256 = "1wpy928ndvc076jzi14f6k5fsw8had0pz7f1yjdqql4icszhqa0p";
- name = "recipe";
- };
- packageRequires = [ emacs org ];
- meta = {
- homepage = "https://melpa.org/#/ob-typescript";
- license = lib.licenses.free;
- };
- }) {};
ob-uart = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -70765,31 +36937,6 @@
license = lib.licenses.free;
};
}) {};
- oberon = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "oberon";
- ename = "oberon";
- version = "20120715.209";
- src = fetchFromGitHub {
- owner = "emacsorphanage";
- repo = "oberon";
- rev = "fb57d18ce13835a8a69b6bafecdd9193ca9a59a3";
- sha256 = "16462cgq91jg7i97h440zss5vw2qkxgdy7gm148ns4djr2fchnf6";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5f2a50f62475639af011c99c6cc38928b74b3b0a/recipes/oberon";
- sha256 = "1wna7ld670r6ljdg5yx0ga0grbq1ma8q92gkari0d5czr7s9lggv";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/oberon";
- license = lib.licenses.free;
- };
- }) {};
obfusurl = callPackage ({ cl-lib ? null
, fetchFromGitHub
, fetchurl
@@ -70816,31 +36963,6 @@
license = lib.licenses.free;
};
}) {};
- objc-font-lock = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "objc-font-lock";
- ename = "objc-font-lock";
- version = "20141021.1122";
- src = fetchFromGitHub {
- owner = "Lindydancer";
- repo = "objc-font-lock";
- rev = "34b457d577f97ca94b8792d025f9a909c7610612";
- sha256 = "138c1nm579vr37dqprqsakfkhs2awm3klzyyd6bv9rhkrysrpbqk";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/f6f93d328e137d2ca069328932b60c3bf60b0a4e/recipes/objc-font-lock";
- sha256 = "0njslpgdcph3p3gamrbd6pc04szks07yv4ij3p1l7p5dc2p06rs6";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/objc-font-lock";
- license = lib.licenses.free;
- };
- }) {};
objed = callPackage ({ cl-lib ? null
, emacs
, fetchFromGitHub
@@ -70868,131 +36990,6 @@
license = lib.licenses.free;
};
}) {};
- obsidian-theme = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "obsidian-theme";
- ename = "obsidian-theme";
- version = "20170719.248";
- src = fetchFromGitHub {
- owner = "mswift42";
- repo = "obsidian-theme";
- rev = "f45efb2ebe9942466c1db6abbe2d0e6847b785ea";
- sha256 = "1d36mdq8b1q1x84a2nb93bwnzlpdldiafh7q7qfjjm9dsgbij73b";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/e90227252eb69d3eac81f5a6bd5e3a582d33f335/recipes/obsidian-theme";
- sha256 = "17ckshimdma6fqiis4kxczxkbrsfpm2a0b41m5f3qz3qlhcw2xgr";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/obsidian-theme";
- license = lib.licenses.free;
- };
- }) {};
- occidental-theme = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "occidental-theme";
- ename = "occidental-theme";
- version = "20130312.1258";
- src = fetchFromGitHub {
- owner = "olcai";
- repo = "occidental-theme";
- rev = "fd2db7256d4f78c43d99c3cddb1c39106d479816";
- sha256 = "0pnliw02crqw8hbg088klz54z6s1ih8q2lcn9mq5f12xi752hxm8";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/736fd0b7865cc800800fa6467019a365ddf1c412/recipes/occidental-theme";
- sha256 = "1ra5p8k96wvb04v69xm87jl4jlgi57v4jw2xxzkwbwxbydncnv0b";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/occidental-theme";
- license = lib.licenses.free;
- };
- }) {};
- occur-context-resize = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "occur-context-resize";
- ename = "occur-context-resize";
- version = "20170904.1609";
- src = fetchFromGitHub {
- owner = "dgtized";
- repo = "occur-context-resize.el";
- rev = "cdee5a631ceed9337579d4090e0acf8140747f80";
- sha256 = "0h7ypw45h5rcbwx4c4mn2ps9hp84dpjp3iay2nc9zaavv05n7ysa";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/a2425d82b365784b17ab56af5f77c6095664c784/recipes/occur-context-resize";
- sha256 = "0sp5v4rwqgqdj26gdkrmjvkmbp4g6jq4lrn2c3zm8s2gq0s3l6ri";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/occur-context-resize";
- license = lib.licenses.free;
- };
- }) {};
- occur-x = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "occur-x";
- ename = "occur-x";
- version = "20130610.643";
- src = fetchFromGitHub {
- owner = "juan-leon";
- repo = "occur-x";
- rev = "352f5fab207d8a1d3dd048073ff127a83e97c82b";
- sha256 = "1zj0xhvl5qx42injv0av4lyzd3jsjls1m368dqd2qnswhfw8wfn6";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/occur-x";
- sha256 = "04nydxp4syd0chfnfrz8v1vkx2qasfh86b98qv8719cily1jw76p";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/occur-x";
- license = lib.licenses.free;
- };
- }) {};
- oceanic-theme = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "oceanic-theme";
- ename = "oceanic-theme";
- version = "20161015.119";
- src = fetchFromGitHub {
- owner = "terry3";
- repo = "oceanic-theme";
- rev = "00288f6a5245eb001dc123e36af1820eb3cbe985";
- sha256 = "00qij2h9kha557b3d69a8z3a3jsl8h4iwygxmr4h3i1w63nvy165";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/b9d85588df4e2057ef1c822ff177572054ed979b/recipes/oceanic-theme";
- sha256 = "1i69dy9hfqwfyiykvnqzkqim0lv1p5z5fjsdk84068si4b029gzv";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/oceanic-theme";
- license = lib.licenses.free;
- };
- }) {};
ocodo-svg-modelines = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -71070,84 +37067,6 @@
license = lib.licenses.free;
};
}) {};
- octo-mode = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "octo-mode";
- ename = "octo-mode";
- version = "20161008.529";
- src = fetchFromGitHub {
- owner = "cryon";
- repo = "octo-mode";
- rev = "4b2ed4a61674f73a6ccd390b5ae123474bd0c977";
- sha256 = "1jkmf3j7wmv3b3ngi9fky1d94h4501lz5jcbn6xa3cb477j5nzj8";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/899ec190515d33f706e5279c8e3628514f733a12/recipes/octo-mode";
- sha256 = "1xvpykdrkmxlk302kbqycasrq89f72xvhqlm14qrcd2lqnwhbi07";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/octo-mode";
- license = lib.licenses.free;
- };
- }) {};
- octopress = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "octopress";
- ename = "octopress";
- version = "20190122.1707";
- src = fetchFromGitHub {
- owner = "aaronbieber";
- repo = "octopress.el";
- rev = "f2c92d5420f14fc9167c7de1873836510e652de2";
- sha256 = "0s5sv685h350zky46fr95bs1w814g8ksjndxwmgarldklxilsyji";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/7205d3d43797755077f19f57f531b4b39e77bae3/recipes/octopress";
- sha256 = "0zsir6chjvn5i1irmf5aj6mmb401c553r5wykq796sz7jnjhrjg0";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/octopress";
- license = lib.licenses.free;
- };
- }) {};
- oer-reveal = callPackage ({ emacs
- , fetchFromGitLab
- , fetchurl
- , lib
- , melpaBuild
- , org-re-reveal }:
- melpaBuild {
- pname = "oer-reveal";
- ename = "oer-reveal";
- version = "20190407.1005";
- src = fetchFromGitLab {
- owner = "oer";
- repo = "oer-reveal";
- rev = "a42da802360d3dd90711e353ea83ac4c74f8bbc7";
- sha256 = "0yw9dnz33p8v6084fa2w3cvlcjpi5gi86aphpzfza42cxbc3wwss";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5982e377cd4cc2e72bfe4650c473c9f6b71085e3/recipes/oer-reveal";
- sha256 = "1j43in64p0janfr48v2llh888c337cv66yl6xswidnqysndfg6pg";
- name = "recipe";
- };
- packageRequires = [ emacs org-re-reveal ];
- meta = {
- homepage = "https://melpa.org/#/oer-reveal";
- license = lib.licenses.free;
- };
- }) {};
offlineimap = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -71173,83 +37092,6 @@
license = lib.licenses.free;
};
}) {};
- old-norse-input = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "old-norse-input";
- ename = "old-norse-input";
- version = "20170816.1142";
- src = fetchFromGitHub {
- owner = "david-christiansen";
- repo = "emacs-old-norse-input";
- rev = "c2e21ee72c3768e9152aff6baf12a19cde1d0c53";
- sha256 = "0zybr1v91884p4ncrpr962pr02qsns6hf7kc4c5gyad8sg4pbvxh";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/84780a6ebd1b2294b86ae8c6df5bd6521cf4e85a/recipes/old-norse-input";
- sha256 = "1g00h6ykf61ckr6f3r17j72w3h04p5q65aa3rhr5llk3jk1wv331";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/old-norse-input";
- license = lib.licenses.free;
- };
- }) {};
- oldlace-theme = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "oldlace-theme";
- ename = "oldlace-theme";
- version = "20150705.600";
- src = fetchFromGitHub {
- owner = "mswift42";
- repo = "oldlace-theme";
- rev = "9ecbef999b63021c967846a3c80b3fbfc81f1290";
- sha256 = "1kn25kamsb0s0cdg8mggi8rc7qgz4x6m3w6s42jvqybv41zhv50x";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/b6b11187b012744771380dfabab607cf7e073c45/recipes/oldlace-theme";
- sha256 = "1pxiqqh5x4wsayqgwplzvsbalbj44zvby7x0pijdvwcnsh74znj8";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/oldlace-theme";
- license = lib.licenses.free;
- };
- }) {};
- om-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "om-mode";
- ename = "om-mode";
- version = "20140915.1410";
- src = fetchFromGitHub {
- owner = "danielsz";
- repo = "om-mode";
- rev = "5a6b380f8d1293a865d8a37aa4816d7412c512ce";
- sha256 = "1wbnmg2lfv5xqgwj3axgwkccxmx0i202nf2nnfglg10hffy67rcm";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/om-mode";
- sha256 = "0bnlnxmzch9j39l8sf85npi89xlnkcnkmy4fihmwhrm86mnmayrb";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/om-mode";
- license = lib.licenses.free;
- };
- }) {};
omni-kill = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -71386,34 +37228,6 @@
license = lib.licenses.free;
};
}) {};
- omnibox = callPackage ({ dash
- , emacs
- , fetchFromGitHub
- , fetchurl
- , frame-local
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "omnibox";
- ename = "omnibox";
- version = "20180422.1749";
- src = fetchFromGitHub {
- owner = "sebastiencs";
- repo = "omnibox";
- rev = "8ee75c71c20c438ebc43ba24ef6f543633d118f3";
- sha256 = "19d7djf942dagxsz0c0lnfra4fk09qm6grkc0nihpsw4afjbj01a";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/bf274ff47f167edd214e667249356de281522802/recipes/omnibox";
- sha256 = "05jc9hhr3gnjfyjpdx79ij9b5qwfrsmdf8h2s5ldxbw82q8a0z02";
- name = "recipe";
- };
- packageRequires = [ dash emacs frame-local ];
- meta = {
- homepage = "https://melpa.org/#/omnibox";
- license = lib.licenses.free;
- };
- }) {};
omnisharp = callPackage ({ auto-complete
, cl-lib ? null
, csharp-mode
@@ -71460,137 +37274,6 @@
license = lib.licenses.free;
};
}) {};
- omtose-phellack-theme = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "omtose-phellack-theme";
- ename = "omtose-phellack-theme";
- version = "20161111.1320";
- src = fetchFromGitHub {
- owner = "franksn";
- repo = "omtose-phellack-theme";
- rev = "66f99633e199e65bd28641626435e8e59246529a";
- sha256 = "0imf2pcf93srm473nvaksw5pw5i4caqxb6aqfbq6xww8gdbqfazy";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/478b1e07ed9010408c12598640ec8d154f9eb18d/recipes/omtose-phellack-theme";
- sha256 = "0aj0sw611w13xryn762ws63dfalczxixa5rv3skglmfy9axg3v3b";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/omtose-phellack-theme";
- license = lib.licenses.free;
- };
- }) {};
- on-parens = callPackage ({ dash
- , emacs
- , evil
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , smartparens }:
- melpaBuild {
- pname = "on-parens";
- ename = "on-parens";
- version = "20180202.1441";
- src = fetchFromGitHub {
- owner = "willghatch";
- repo = "emacs-on-parens";
- rev = "7a41bc02bcffd265f8a69ed4b4e0df3c3009aaa4";
- sha256 = "0pkc05plbjqfxrw54amlm6pzg9gcsz0nvqzprplr6rhh7ss419zn";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/2ea1eb5eb5a40e95ba06b0a4ac89ad8843c9cc2c/recipes/on-parens";
- sha256 = "19kyzpkgfl0ipbcgnl8fbfbapnfdxr8w9i7prfkm6rjp6amxyqab";
- name = "recipe";
- };
- packageRequires = [ dash emacs evil smartparens ];
- meta = {
- homepage = "https://melpa.org/#/on-parens";
- license = lib.licenses.free;
- };
- }) {};
- on-screen = callPackage ({ cl-lib ? null
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "on-screen";
- ename = "on-screen";
- version = "20160302.150";
- src = fetchFromGitHub {
- owner = "michael-heerdegen";
- repo = "on-screen.el";
- rev = "206468aa4de299ad26c2db12b757f5ad7290912f";
- sha256 = "1rrby3mbh24qd43nsb3ymcrjxh1cz6iasf1gv0a8fmivmb4f7dyz";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/628f43fdfdb41174800fb8171e71134c27730f6f/recipes/on-screen";
- sha256 = "104jisc2bckzrajxlvj1cfx1drnjj7jhqjblvm89ry32xdnjxmqb";
- name = "recipe";
- };
- packageRequires = [ cl-lib ];
- meta = {
- homepage = "https://melpa.org/#/on-screen";
- license = lib.licenses.free;
- };
- }) {};
- one-themes = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "one-themes";
- ename = "one-themes";
- version = "20181030.442";
- src = fetchFromGitHub {
- owner = "balajisivaraman";
- repo = "emacs-one-themes";
- rev = "1b50f2f88fe5e207cbe6d68db710361e3bc4a9ce";
- sha256 = "1jap6i7kavvwv7bis4x8s7a3ww4srsm3qb05r2vbchfgk7adw92m";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/504fb2fa2fe17eb008f7e9b8f7fb394f4a3ebd28/recipes/one-themes";
- sha256 = "11c6py5vani2cv4qjvizlzz9xvr5v57qxy1chcxy2lq3jlz1q5w0";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/one-themes";
- license = lib.licenses.free;
- };
- }) {};
- one-time-pad-encrypt = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "one-time-pad-encrypt";
- ename = "one-time-pad-encrypt";
- version = "20160329.813";
- src = fetchFromGitHub {
- owner = "garvinguan";
- repo = "emacs-one-time-pad";
- rev = "87cc1f124024ce3d277299ca0ac703f182937d9f";
- sha256 = "0g2hvpnmgyy1k393prv97nqwlqc58nqf71hkrmaijw0cyy9q03nz";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/one-time-pad-encrypt";
- sha256 = "0xl74vxq9dzl84b6wsw8flykxcsxggpd4s47a2ph3irr64mbbgq5";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/one-time-pad-encrypt";
- license = lib.licenses.free;
- };
- }) {};
opam = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -71617,82 +37300,6 @@
license = lib.licenses.free;
};
}) {};
- open-in-msvs = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "open-in-msvs";
- ename = "open-in-msvs";
- version = "20170123.1428";
- src = fetchFromGitHub {
- owner = "evgeny-panasyuk";
- repo = "open-in-msvs.el";
- rev = "e0d071c83188ad5db8f3297d6ce784b4ed554a04";
- sha256 = "0aiccdcll5zjy11fandd9bvld8p8srmhrh3waqc33yp4x8pjkjpd";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/09a462fac31a7ceda4ee84a8550ff1db6d11140f/recipes/open-in-msvs";
- sha256 = "0cng0brxjdriyhwsbn85pfrgqg56chzk24lvkx91rzgz15fbpnv5";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/open-in-msvs";
- license = lib.licenses.free;
- };
- }) {};
- open-junk-file = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "open-junk-file";
- ename = "open-junk-file";
- version = "20161210.314";
- src = fetchFromGitHub {
- owner = "rubikitch";
- repo = "open-junk-file";
- rev = "558bec7372b0fed4c4cb6074ab906535fae615bd";
- sha256 = "0kcgkxn5v9bsbkcvpjxjqhj1w3c29bfb33bmiw32gzbfphmrvhh1";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/f8e4328cae9b4759a75da0b26ea8b68821bc71af/recipes/open-junk-file";
- sha256 = "0r1v9m8a5blv70fzq5miv5i57jx0bm1p0jxh0lwklam0m99znmcj";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/open-junk-file";
- license = lib.licenses.free;
- };
- }) {};
- opencc = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "opencc";
- ename = "opencc";
- version = "20170722.116";
- src = fetchFromGitHub {
- owner = "xuchunyang";
- repo = "emacs-opencc";
- rev = "959d9ffbae095752182026e3bd9b8fd61178c39f";
- sha256 = "0qym9xxjsn4ally7qlfffin7rybdz3w5z4gw1cw2j6ragwcm6w8a";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/71bc5476b3670a9f5c3d3682c2e7852fc6c5fe60/recipes/opencc";
- sha256 = "1dd62x0h3imil4g3psndxykp45jf83fm4afxcvvyayj45z099f4r";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/opencc";
- license = lib.licenses.free;
- };
- }) {};
opencl-mode = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -71775,55 +37382,6 @@
license = lib.licenses.free;
};
}) {};
- openstack-cgit-browse-file = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "openstack-cgit-browse-file";
- ename = "openstack-cgit-browse-file";
- version = "20130819.227";
- src = fetchFromGitHub {
- owner = "chmouel";
- repo = "openstack-cgit-browse-file";
- rev = "244219288b9aef41155044697bb114b7af83ab8f";
- sha256 = "0086pfk4pq6xmknk7a42fihcjgzkcplqqc1rk9fhwmn9j7djbq70";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/bd7035e1ea63d7d8378f8bfda6a5402a5b6bb9e4/recipes/openstack-cgit-browse-file";
- sha256 = "05dl28a4npnnzzipypfcqb21sdww715lwji2xnsabx3fb1h1w5jl";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/openstack-cgit-browse-file";
- license = lib.licenses.free;
- };
- }) {};
- openwith = callPackage ({ fetchhg
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "openwith";
- ename = "openwith";
- version = "20120531.1436";
- src = fetchhg {
- url = "https://bitbucket.com/jpkotta/openwith";
- rev = "aeb78782ec87";
- sha256 = "1wl6gnxsyhaad4cl9bxjc0qbc5jzvlwbwjbajs0n1s6qr07d6r01";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/openwith";
- sha256 = "0l3grbnn349cv26ap2phlmp2h94s68gqznh5zdqwc2cp7lf699sx";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/openwith";
- license = lib.licenses.free;
- };
- }) {};
operate-on-number = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -71849,32 +37407,6 @@
license = lib.licenses.free;
};
}) {};
- orca = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "orca";
- ename = "orca";
- version = "20171030.1216";
- src = fetchFromGitHub {
- owner = "abo-abo";
- repo = "orca";
- rev = "5e1744afb793dda744ddc6fe342144b5e90bea08";
- sha256 = "0gqgs3rmdzm5vqk8azgzwannxjifvrf5fj40n543d0066c2dfsfi";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/f4d9cf89c58a9b36b7c2a42de2aecb3b60001908/recipes/orca";
- sha256 = "012ndbrgm58r09snhvi476rw0lq4m913y0slc0cxb688p9wgz5w3";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/orca";
- license = lib.licenses.free;
- };
- }) {};
ordinal = callPackage ({ cl-lib ? null
, emacs
, fetchFromGitHub
@@ -71984,31 +37516,6 @@
license = lib.licenses.free;
};
}) {};
- org-attach-screenshot = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "org-attach-screenshot";
- ename = "org-attach-screenshot";
- version = "20180419.2225";
- src = fetchFromGitHub {
- owner = "dfeich";
- repo = "org-screenshot";
- rev = "6b1edbd2384191122a30788ac72f2233c2df0294";
- sha256 = "0vyxpc28b9b0cn02a9p48q6iy61qw7gj7gzk37ijdmzg8dzy6hxv";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/f545cd8d1da39e7fbd61020e178de30053ba774b/recipes/org-attach-screenshot";
- sha256 = "0108kahyd499q87wzvirv5d6p7jrb7ckz8r96pwqzgflj3njbnmn";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/org-attach-screenshot";
- license = lib.licenses.free;
- };
- }) {};
org-autolist = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -72139,33 +37646,6 @@
license = lib.licenses.free;
};
}) {};
- org-brain = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , org }:
- melpaBuild {
- pname = "org-brain";
- ename = "org-brain";
- version = "20190305.616";
- src = fetchFromGitHub {
- owner = "Kungsgeten";
- repo = "org-brain";
- rev = "62cf65d3586cfeecb6339adcacc0515a36bbcc63";
- sha256 = "0vjq1nnk5qq0362ccp367sxj1qwz0ahmb4qkfcz92fkpzhxch2v9";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/47480fbae06e4110d50bc89db7df05fa80afc7d3/recipes/org-brain";
- sha256 = "0c05c6lbr740nnjp9p34padrbrc3q1x2pgylkyhsxadm4mfsvj0c";
- name = "recipe";
- };
- packageRequires = [ emacs org ];
- meta = {
- homepage = "https://melpa.org/#/org-brain";
- license = lib.licenses.free;
- };
- }) {};
org-bullets = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -72191,58 +37671,6 @@
license = lib.licenses.free;
};
}) {};
- org-caldav = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , org }:
- melpaBuild {
- pname = "org-caldav";
- ename = "org-caldav";
- version = "20180403.1336";
- src = fetchFromGitHub {
- owner = "dengste";
- repo = "org-caldav";
- rev = "8d3492c27a09f437d2d94f2736c56d7652e87aa0";
- sha256 = "19q83xgbdabkidx26xvff1x7kixk2wllplnwfsy7kggdj9wqpm9l";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/org-caldav";
- sha256 = "1wzb5garpxg8p7zaqp6z5q0l2x8n9m7fjg5xy3vg9878njnqr9kc";
- name = "recipe";
- };
- packageRequires = [ org ];
- meta = {
- homepage = "https://melpa.org/#/org-caldav";
- license = lib.licenses.free;
- };
- }) {};
- org-capture-pop-frame = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "org-capture-pop-frame";
- ename = "org-capture-pop-frame";
- version = "20160518.308";
- src = fetchFromGitHub {
- owner = "tumashu";
- repo = "org-capture-pop-frame";
- rev = "b16fd712de62cf0d1f9befd03be6ab5983cb3301";
- sha256 = "01ffkk79wz2qkh9h9cjl59j34wvbiqzzxbbc9a06lh2rc946wgis";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/e608f40d00a3b2a80a6997da00e7d04f76d8ef0d/recipes/org-capture-pop-frame";
- sha256 = "1k0njip25527nkn8w11yl7dbk3zv9p9lhx0a9xx293havjxygvyi";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/org-capture-pop-frame";
- license = lib.licenses.free;
- };
- }) {};
org-category-capture = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -72270,87 +37698,6 @@
license = lib.licenses.free;
};
}) {};
- org-chef = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , org }:
- melpaBuild {
- pname = "org-chef";
- ename = "org-chef";
- version = "20190320.1617";
- src = fetchFromGitHub {
- owner = "Chobbes";
- repo = "org-chef";
- rev = "22fc63ca946a3e684c4298e0482cec9acb1af0fb";
- sha256 = "1fnlazvj2fhhiv33b5f43d5h32c4n1sz7kav6g5gnb90sb6qnzly";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/23b9e64887a290fca7c7ab2718f627f8d728575f/recipes/org-chef";
- sha256 = "1xzbdrv5z31lxnzzgbp50l10lzlvx6j7kc7ssg76fma49wfpnra5";
- name = "recipe";
- };
- packageRequires = [ emacs org ];
- meta = {
- homepage = "https://melpa.org/#/org-chef";
- license = lib.licenses.free;
- };
- }) {};
- org-cliplink = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "org-cliplink";
- ename = "org-cliplink";
- version = "20181022.539";
- src = fetchFromGitHub {
- owner = "rexim";
- repo = "org-cliplink";
- rev = "7ab98f2b17a627e907b50c27737ec1a8ae8b0f3d";
- sha256 = "0rwh5602d6hd0nvr3j50m2xz48a2kwknnn0f4aabshhb5x0ry5g8";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/7ddb13c59441fdf4eb1ba3816e147279dea7d429/recipes/org-cliplink";
- sha256 = "19l3k9w9csgvdr7n824bzg7jja0f28dmz6caldxh43vankpmlg3p";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/org-cliplink";
- license = lib.licenses.free;
- };
- }) {};
- org-clock-convenience = callPackage ({ cl-lib ? null
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , org }:
- melpaBuild {
- pname = "org-clock-convenience";
- ename = "org-clock-convenience";
- version = "20190130.810";
- src = fetchFromGitHub {
- owner = "dfeich";
- repo = "org-clock-convenience";
- rev = "7d14699a15ad6c5b9a63246a11188c77f8800e94";
- sha256 = "05r6jgh8ys4ihpns7g64n4zbnvyy5fvndf9v7zinq2nk6grb393q";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/a80ed929181cdd28886ca598a0c387a31d239b2e/recipes/org-clock-convenience";
- sha256 = "1zis0fp7q253qfxypm7a69zb3w8jb4cbrbj2rk34d1jisvnn4irw";
- name = "recipe";
- };
- packageRequires = [ cl-lib emacs org ];
- meta = {
- homepage = "https://melpa.org/#/org-clock-convenience";
- license = lib.licenses.free;
- };
- }) {};
org-clock-csv = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -72378,58 +37725,6 @@
license = lib.licenses.free;
};
}) {};
- org-clock-split = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "org-clock-split";
- ename = "org-clock-split";
- version = "20180909.1347";
- src = fetchFromGitHub {
- owner = "justintaft";
- repo = "org-clock-split";
- rev = "b2f1497b62e7f4a767be02e249e4ac95d4f8f21c";
- sha256 = "099jxkyx7ikfqz99sx632a6c0mc630qkix3c307sm7y317jcdz8l";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/dc8517485e39093a3be387213f766d1df7d50061/recipes/org-clock-split";
- sha256 = "1ihqp4ilz4a3qs2lrc3j0lqkjh782510m2nbzba89pasgl4c4jhw";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/org-clock-split";
- license = lib.licenses.free;
- };
- }) {};
- org-clock-today = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "org-clock-today";
- ename = "org-clock-today";
- version = "20161014.220";
- src = fetchFromGitHub {
- owner = "mallt";
- repo = "org-clock-today-mode";
- rev = "02b8fd541a01040405a9a1400c46dcb68b7c2a3a";
- sha256 = "1gbkrgbpsrwkjd199giffim8jvx1n4dqrsyk53sz1swj9dlhxgp9";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/org-clock-today";
- sha256 = "1x9hplz9w2kpa239rz6y02hsl4fgzxlkwr9hhwjy12x1f88x0k73";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/org-clock-today";
- license = lib.licenses.free;
- };
- }) {};
org-commentary = callPackage ({ dash
, emacs
, fetchFromGitHub
@@ -72458,56 +37753,6 @@
license = lib.licenses.free;
};
}) {};
- org-context = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "org-context";
- ename = "org-context";
- version = "20170107.537";
- src = fetchFromGitHub {
- owner = "thisirs";
- repo = "org-context";
- rev = "a3b4a4ce6d15e3c2d45eb5dcb78bea81913f3e21";
- sha256 = "18swz38q8z1nga6l8f1l27b7ba3y5y3ikk0baplmich3hxav58xj";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/f33b6157eb172719a56c3e86233708b1e545e451/recipes/org-context";
- sha256 = "19y8aln7wix9p506ajvfkl641147c5mdmjm98jnq68cx2r4wp6zz";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/org-context";
- license = lib.licenses.free;
- };
- }) {};
- org-cua-dwim = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "org-cua-dwim";
- ename = "org-cua-dwim";
- version = "20120202.2134";
- src = fetchFromGitHub {
- owner = "mattfidler";
- repo = "org-cua-dwim.el";
- rev = "a55d6c7009fc0b22f1110c07de629acc955c85e4";
- sha256 = "0nrfvmqb70phnq0k4wbdj6z666wq6xvabg4pgv8qn62rbrw4yyhm";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/org-cua-dwim";
- sha256 = "0ib3m41b4lh0p0xxhsmfv42qs00xm2cfwwl2cgfdjjp1s57p19xy";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/org-cua-dwim";
- license = lib.licenses.free;
- };
- }) {};
org-d20 = callPackage ({ dash
, emacs
, fetchgit
@@ -72536,32 +37781,6 @@
license = lib.licenses.free;
};
}) {};
- org-dashboard = callPackage ({ cl-lib ? null
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "org-dashboard";
- ename = "org-dashboard";
- version = "20171223.1124";
- src = fetchFromGitHub {
- owner = "bard";
- repo = "org-dashboard";
- rev = "02c0699771d199075a286e4502340ca6e7c9e831";
- sha256 = "0zi23xgv5fq827dljhzp6m2v7ggr3pdw3fpgq8515gs9q4f12v1r";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/11ce0ba772672d9cbae5713ebaf3798eec5fdb3c/recipes/org-dashboard";
- sha256 = "1hvhhbmyx12wsf2n1hd0hg5cy05zyspd82xxcdh04g4s9r3ikqj5";
- name = "recipe";
- };
- packageRequires = [ cl-lib ];
- meta = {
- homepage = "https://melpa.org/#/org-dashboard";
- license = lib.licenses.free;
- };
- }) {};
org-doing = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -72587,33 +37806,6 @@
license = lib.licenses.free;
};
}) {};
- org-dotemacs = callPackage ({ cl-lib ? null
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , org }:
- melpaBuild {
- pname = "org-dotemacs";
- ename = "org-dotemacs";
- version = "20190116.1355";
- src = fetchFromGitHub {
- owner = "vapniks";
- repo = "org-dotemacs";
- rev = "5f504f36af6bcb9dbe9869c7ed54851d3db742e7";
- sha256 = "0pxphad9qxssqxr50g0mf20b7247xjp9a6fmb494bj8yv6wnn9m9";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/4c1847184312c8c95e7e81e5b3b73e5621cc2509/recipes/org-dotemacs";
- sha256 = "1vc391fdkdqd4g0piq66zhrlgqx5s2ijv7qd1rc3a235sjb9i2n4";
- name = "recipe";
- };
- packageRequires = [ cl-lib org ];
- meta = {
- homepage = "https://melpa.org/#/org-dotemacs";
- license = lib.licenses.free;
- };
- }) {};
org-download = callPackage ({ async
, fetchFromGitHub
, fetchurl
@@ -72666,90 +37858,6 @@
license = lib.licenses.free;
};
}) {};
- org-drill-table = callPackage ({ cl-lib ? null
- , dash
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , org
- , s }:
- melpaBuild {
- pname = "org-drill-table";
- ename = "org-drill-table";
- version = "20180115.209";
- src = fetchFromGitHub {
- owner = "chrisbarrett";
- repo = "org-drill-table";
- rev = "e4c4c1b0a17f51cb8de67eafe06a6bffc754f525";
- sha256 = "1nzn890z30l062flbnww9f3nq7wm5x5146rh76az8h7jm6vigvca";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/3347da186765877826b224e1f5d1b585ebd3692c/recipes/org-drill-table";
- sha256 = "1gb5b4hj4xr8nv8bxfar145i38zcic6c34gk98wpshvwzvb43r69";
- name = "recipe";
- };
- packageRequires = [ cl-lib dash emacs org s ];
- meta = {
- homepage = "https://melpa.org/#/org-drill-table";
- license = lib.licenses.free;
- };
- }) {};
- org-dropbox = callPackage ({ dash
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , names }:
- melpaBuild {
- pname = "org-dropbox";
- ename = "org-dropbox";
- version = "20150113.2109";
- src = fetchFromGitHub {
- owner = "heikkil";
- repo = "org-dropbox";
- rev = "2dc677a770c9e82f928ad8e97a7707eb368e58ed";
- sha256 = "1ldyxxlgfm2zskjr06b5kppq560cy75ic2dh9si09hrsw3qj0m4s";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/cd613fbe42c41b125a25dfa0206666446dc5fa40/recipes/org-dropbox";
- sha256 = "0qfvdz13ncqn7qaz03lwabzsnk62z6wqzlxlvdqv5xyllcy9m6ln";
- name = "recipe";
- };
- packageRequires = [ dash emacs names ];
- meta = {
- homepage = "https://melpa.org/#/org-dropbox";
- license = lib.licenses.free;
- };
- }) {};
- org-easy-img-insert = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "org-easy-img-insert";
- ename = "org-easy-img-insert";
- version = "20160915.1308";
- src = fetchFromGitHub {
- owner = "tashrifsanil";
- repo = "org-easy-img-insert";
- rev = "3efb4d70e5a39bfbf7ee4c4033cc61afa89430dd";
- sha256 = "1nijybb8dc251n187ljwffw3hxppb7nhb0lhc7jx4fyymg3r27l3";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/512db70609fc451972405acb4b186a9b3c6944fa/recipes/org-easy-img-insert";
- sha256 = "0gpb9f66gn8dbhwrlw7z2a5rpphbh1fv845wz8yy4v7nv2j3sf54";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/org-easy-img-insert";
- license = lib.licenses.free;
- };
- }) {};
org-edit-latex = callPackage ({ auctex
, emacs
, fetchFromGitHub
@@ -72777,33 +37885,6 @@
license = lib.licenses.free;
};
}) {};
- org-ehtml = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , web-server }:
- melpaBuild {
- pname = "org-ehtml";
- ename = "org-ehtml";
- version = "20150506.1658";
- src = fetchFromGitHub {
- owner = "eschulte";
- repo = "org-ehtml";
- rev = "9df85de1a0fe1e7b2d6c000777c1a0c0217f92d0";
- sha256 = "0kqvwqmwnwg2h7r38fpjg6qlkcj9v8011df8nmsgs1w1mfdvnjsq";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/7f68028b3f4d2455da6d657e90abcab6181db284/recipes/org-ehtml";
- sha256 = "0n82fbd7aircqg2c9m138qfv8csrv0amhya3xlwswdkqn51vn3gw";
- name = "recipe";
- };
- packageRequires = [ emacs web-server ];
- meta = {
- homepage = "https://melpa.org/#/org-ehtml";
- license = lib.licenses.free;
- };
- }) {};
org-elisp-help = callPackage ({ cl-lib ? null
, fetchFromGitHub
, fetchurl
@@ -72831,32 +37912,6 @@
license = lib.licenses.free;
};
}) {};
- org-emms = callPackage ({ emacs
- , fetchFromGitLab
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "org-emms";
- ename = "org-emms";
- version = "20181010.414";
- src = fetchFromGitLab {
- owner = "jagrg";
- repo = "org-emms";
- rev = "07a8917f3d628c32e5de1dbd118ac08203772533";
- sha256 = "1sqsm5sv311xfdk4f4rsnvprdf2v2vm7l1b3vqi7pc0g8adlnw1d";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/4fa5c221790acca40316510fd495951f418c8e15/recipes/org-emms";
- sha256 = "0g7d2y1dgy2hgiwaxz9crxf3nv8aqzxhyf2jmnmhphdv2s9ipvjw";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/org-emms";
- license = lib.licenses.free;
- };
- }) {};
org-evil = callPackage ({ dash
, evil
, fetchFromGitHub
@@ -72886,31 +37941,6 @@
license = lib.licenses.free;
};
}) {};
- org-fancy-priorities = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "org-fancy-priorities";
- ename = "org-fancy-priorities";
- version = "20180328.1631";
- src = fetchFromGitHub {
- owner = "harrybournis";
- repo = "org-fancy-priorities";
- rev = "fc09edc9b139e82395982d08db2825702045cb85";
- sha256 = "0pzqbszjm24c8gfcczcmn242ipprsqi7pmys65bqgz63iypfxpcw";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/712902ae1cf967ceb2052266ed3244e92998f8a7/recipes/org-fancy-priorities";
- sha256 = "13rljgi5fbzlc16cxqj49yg47a5qpyxzj0lswhdyhgzncp1fyq7p";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/org-fancy-priorities";
- license = lib.licenses.free;
- };
- }) {};
org-gcal = callPackage ({ alert
, cl-lib ? null
, emacs
@@ -72969,32 +37999,6 @@
license = lib.licenses.free;
};
}) {};
- org-grep = callPackage ({ cl-lib ? null
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "org-grep";
- ename = "org-grep";
- version = "20151202.429";
- src = fetchFromGitHub {
- owner = "emacsorphanage";
- repo = "org-grep";
- rev = "5bdd04c0f53b8a3d656f36ea17bba3df7f0cb684";
- sha256 = "10jwqzs431mnwz717qdmcn0v8raklw41sbxbnkb36yrgznk8c09c";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5ed0682fb9130a62e628d4e64747bb9c70456681/recipes/org-grep";
- sha256 = "0kpgizy0zxnlmyh0prwdll62ri2c1l4sb0yrkl7yw17cr4gxmkkz";
- name = "recipe";
- };
- packageRequires = [ cl-lib ];
- meta = {
- homepage = "https://melpa.org/#/org-grep";
- license = lib.licenses.free;
- };
- }) {};
org-if = callPackage ({ fetchFromGitLab
, fetchurl
, lib
@@ -73046,34 +38050,6 @@
license = lib.licenses.free;
};
}) {};
- org-iv = callPackage ({ cl-lib ? null
- , fetchFromGitHub
- , fetchurl
- , impatient-mode
- , lib
- , melpaBuild
- , org }:
- melpaBuild {
- pname = "org-iv";
- ename = "org-iv";
- version = "20171001.322";
- src = fetchFromGitHub {
- owner = "kuangdash";
- repo = "org-iv";
- rev = "7f2bb1b32647655fd9d6684f6f09dcc66b61b0cd";
- sha256 = "0s3fi8sk7jm5vr0fz20fbygm4alhpirv0j20jfi1pab14yhhf34h";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/e7db0c34f0f6fb9c3b9e581a74304cc9a26ed342/recipes/org-iv";
- sha256 = "1akhabp6mdw1h7zms6ahlfvwizl07fwsizwxpdzi4viggfccsfwx";
- name = "recipe";
- };
- packageRequires = [ cl-lib impatient-mode org ];
- meta = {
- homepage = "https://melpa.org/#/org-iv";
- license = lib.licenses.free;
- };
- }) {};
org-jira = callPackage ({ cl-lib ? null
, dash
, emacs
@@ -73130,32 +38106,6 @@
license = lib.licenses.free;
};
}) {};
- org-journal-list = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "org-journal-list";
- ename = "org-journal-list";
- version = "20190221.1252";
- src = fetchFromGitHub {
- owner = "huytd";
- repo = "org-journal-list";
- rev = "2b26d00181bb49bff64b31ad020490acd1b6ae02";
- sha256 = "0bcj9b7c4pyyvxlgnysl5lhs9ndp60xwizd85zrkd2mh2m8sbq9v";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/7c0186e507b6b309a35abb076988da740cee8f84/recipes/org-journal-list";
- sha256 = "1aw6pf747n3z00xg8viakckm0bb6m9hnrkxphhhsfvqqgwfpzkb9";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/org-journal-list";
- license = lib.licenses.free;
- };
- }) {};
org-kanban = callPackage ({ dash
, emacs
, fetchFromGitHub
@@ -73185,60 +38135,6 @@
license = lib.licenses.free;
};
}) {};
- org-kindle = callPackage ({ cl-lib ? null
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , seq }:
- melpaBuild {
- pname = "org-kindle";
- ename = "org-kindle";
- version = "20190314.2139";
- src = fetchFromGitHub {
- owner = "stardiviner";
- repo = "org-kindle";
- rev = "612a2894bbbff8a6cf54709d591fee86005755de";
- sha256 = "1h3pbjiy5v8lp3p6dry4jk3pvdp7hpkc517d3w9ldhz6nmaiccgg";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/29d08205620d51d4d76e3a4a6124884b5a6b9db7/recipes/org-kindle";
- sha256 = "17sxvyh3z5pn2353iz2v6xjxp98yxwd4n7wkqsa9nwihsw5mmrrw";
- name = "recipe";
- };
- packageRequires = [ cl-lib emacs seq ];
- meta = {
- homepage = "https://melpa.org/#/org-kindle";
- license = lib.licenses.free;
- };
- }) {};
- org-link-minor-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , org }:
- melpaBuild {
- pname = "org-link-minor-mode";
- ename = "org-link-minor-mode";
- version = "20170805.1152";
- src = fetchFromGitHub {
- owner = "seanohalpin";
- repo = "org-link-minor-mode";
- rev = "7b92df60f3fee7f609d649d80ef243b45771ebea";
- sha256 = "1lz7qj57s391ssawmccvhgxv1w99fj1m9rg3g4pymdl3sgdcz4g4";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/b1d2add7baf96c9a18671766d61c8aa028756796/recipes/org-link-minor-mode";
- sha256 = "1akb670mzzhmldw2202x3k6b7vwfcn0rs55znpxsrc4iqihdgka3";
- name = "recipe";
- };
- packageRequires = [ org ];
- meta = {
- homepage = "https://melpa.org/#/org-link-minor-mode";
- license = lib.licenses.free;
- };
- }) {};
org-link-travis = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -73292,34 +38188,6 @@
license = lib.licenses.free;
};
}) {};
- org-listcruncher = callPackage ({ cl-lib ? null
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , seq }:
- melpaBuild {
- pname = "org-listcruncher";
- ename = "org-listcruncher";
- version = "20180814.2303";
- src = fetchFromGitHub {
- owner = "dfeich";
- repo = "org-listcruncher";
- rev = "daa948f54631dda96ed83a2c63265e176b177ff3";
- sha256 = "0r6gmadd20w3giw40973kyl83954pdmhslxagn6vafh1ygg9vi83";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5bed5078a3e56a825be61d158ca8321763b92f7c/recipes/org-listcruncher";
- sha256 = "05vi7a03gj1waaqcjnkgpij4r45r2087xg7kgfs6ki8zhsyws23q";
- name = "recipe";
- };
- packageRequires = [ cl-lib emacs seq ];
- meta = {
- homepage = "https://melpa.org/#/org-listcruncher";
- license = lib.licenses.free;
- };
- }) {};
org-make-toc = callPackage ({ dash
, emacs
, fetchFromGitHub
@@ -73376,60 +38244,6 @@
license = lib.licenses.free;
};
}) {};
- org-mind-map = callPackage ({ dash
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , org }:
- melpaBuild {
- pname = "org-mind-map";
- ename = "org-mind-map";
- version = "20180826.1640";
- src = fetchFromGitHub {
- owner = "theodorewiles";
- repo = "org-mind-map";
- rev = "41df4b2e30455494f1848b4e06cc9208aa9e902b";
- sha256 = "0y0yjb0w6s5yxklcxkmylmw031plxhl9dvachx325mb9qcwskycp";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/3c8683ee547a6a99f8d258561c3ae157b1f427f2/recipes/org-mind-map";
- sha256 = "07wffzf4dzfj8bplwhr9yscm6l9wbz8y01j0jc8cw943z5b8pdgs";
- name = "recipe";
- };
- packageRequires = [ dash emacs org ];
- meta = {
- homepage = "https://melpa.org/#/org-mind-map";
- license = lib.licenses.free;
- };
- }) {};
- org-mobile-sync = callPackage ({ emacs
- , fetchgit
- , fetchurl
- , lib
- , melpaBuild
- , org }:
- melpaBuild {
- pname = "org-mobile-sync";
- ename = "org-mobile-sync";
- version = "20180605.2224";
- src = fetchgit {
- url = "https://framagit.org/steckerhalter/org-mobile-sync.git";
- rev = "06764b943a528827df1e2acc6bc7806cc2c1351f";
- sha256 = "0qdgs965ppihsz2ihyykdinr4n7nbb89d384z7kn985b17263lvn";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/f0a8eb0eefe88b4ea683a4743c0f8393506e014b/recipes/org-mobile-sync";
- sha256 = "152mswykbz3m9w1grpsvb6wi9rg1vf3clnrl8qy6v911c0hy1s9c";
- name = "recipe";
- };
- packageRequires = [ emacs org ];
- meta = {
- homepage = "https://melpa.org/#/org-mobile-sync";
- license = lib.licenses.free;
- };
- }) {};
org-mru-clock = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -73438,12 +38252,12 @@
melpaBuild {
pname = "org-mru-clock";
ename = "org-mru-clock";
- version = "0.3.0";
+ version = "0.4.1";
src = fetchFromGitHub {
owner = "unhammer";
repo = "org-mru-clock";
- rev = "a816e173ee22ff96f0fef6c54316e2583192af32";
- sha256 = "09zcnvz4mgw1lak5vnpa9b4r4gpskviyl2jwpjqmwqgvjhw31g0v";
+ rev = "1547191254f6fc58b62864d0224356e72bd7d933";
+ sha256 = "0j3gscmf8i05ixj31ipdc88kbb7zqs5sdhbd3ipqpahakmg6axhh";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/b36bf1c1faa4d7e38254416a293e56af96214136/recipes/org-mru-clock";
@@ -73456,33 +38270,6 @@
license = lib.licenses.free;
};
}) {};
- org-msg = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , htmlize
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "org-msg";
- ename = "org-msg";
- version = "20181111.1015";
- src = fetchFromGitHub {
- owner = "jeremy-compostella";
- repo = "org-msg";
- rev = "9c9ae7b37dc1404ff6d4de4b543ae01dd1562914";
- sha256 = "1gbjinnrn1y5506xjp8nmr15gh6pgwnwq1g8q30xmb3dbrrc43hx";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/6aec5f72baa870fe57df0fd366696329651a221f/recipes/org-msg";
- sha256 = "0pznyvjks4ga204nv9v1rn7y7ixki437gknp2h854kpf6pdlb2jy";
- name = "recipe";
- };
- packageRequires = [ emacs htmlize ];
- meta = {
- homepage = "https://melpa.org/#/org-msg";
- license = lib.licenses.free;
- };
- }) {};
org-multiple-keymap = callPackage ({ cl-lib ? null
, emacs
, fetchFromGitHub
@@ -73511,34 +38298,6 @@
license = lib.licenses.free;
};
}) {};
- org-notebook = callPackage ({ cl-lib ? null
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , org }:
- melpaBuild {
- pname = "org-notebook";
- ename = "org-notebook";
- version = "20170321.2152";
- src = fetchFromGitHub {
- owner = "Rahi374";
- repo = "org-notebook";
- rev = "d90c4aeca2442161e6dd89de175561af85aace03";
- sha256 = "15hf0x0v4fz6gxj8qx9pfm6xic7qni33nn4ga6cxbdgpwgyr61wz";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/04149b1f158e857ea824fe120372ac52a000adcf/recipes/org-notebook";
- sha256 = "045xqmrik1s83chl7l7fnlav2p76xrfj21kacpjj215saz1f8nld";
- name = "recipe";
- };
- packageRequires = [ cl-lib emacs org ];
- meta = {
- homepage = "https://melpa.org/#/org-notebook";
- license = lib.licenses.free;
- };
- }) {};
org-noter = callPackage ({ cl-lib ? null
, emacs
, fetchFromGitHub
@@ -73567,91 +38326,6 @@
license = lib.licenses.free;
};
}) {};
- org-octopress = callPackage ({ ctable
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , org
- , orglue }:
- melpaBuild {
- pname = "org-octopress";
- ename = "org-octopress";
- version = "20170820.2115";
- src = fetchFromGitHub {
- owner = "yoshinari-nomura";
- repo = "org-octopress";
- rev = "38598ef98d04076a8eb78d549907ddfde8d3a652";
- sha256 = "0bmj5wkwidj1v3b8ipligr0nkfdaxm82717nz8fqidz967q4xbk6";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/fba6c3c645ba903f636814b5a2bb1baca0b5283b/recipes/org-octopress";
- sha256 = "0r6ms9j4xxsrik4206g7gz4wz41wr4ylpal6yfqs4hhz88yhxrhw";
- name = "recipe";
- };
- packageRequires = [ ctable org orglue ];
- meta = {
- homepage = "https://melpa.org/#/org-octopress";
- license = lib.licenses.free;
- };
- }) {};
- org-onenote = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , oauth2
- , org
- , request }:
- melpaBuild {
- pname = "org-onenote";
- ename = "org-onenote";
- version = "20171007.2200";
- src = fetchFromGitHub {
- owner = "ifree";
- repo = "org-onenote";
- rev = "5ce5cf4edb143180e0b185ac26826d39ae5bc929";
- sha256 = "1jlnnb04ichcl155lklvjw91l8j1dvg77bv1815chak226aq4xqj";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/7705ee9a8733733664b6214bf4eec15d640c6895/recipes/org-onenote";
- sha256 = "0qgmizzryb6747yd80d3nic3546f4h8vjd6c30jr99vv2ildjsfk";
- name = "recipe";
- };
- packageRequires = [ oauth2 org request ];
- meta = {
- homepage = "https://melpa.org/#/org-onenote";
- license = lib.licenses.free;
- };
- }) {};
- org-outline-numbering = callPackage ({ cl-lib ? null
- , emacs
- , fetchFromGitLab
- , fetchurl
- , lib
- , melpaBuild
- , org
- , ov }:
- melpaBuild {
- pname = "org-outline-numbering";
- ename = "org-outline-numbering";
- version = "20180705.801";
- src = fetchFromGitLab {
- owner = "andersjohansson";
- repo = "org-outline-numbering";
- rev = "b95b6a7ed9289637cb512232470633b330ca9713";
- sha256 = "03x3n2ywgk2x7slpzy26bw3l9l000pd964z0yifvf9fqhpbk5d0r";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/6dbd71c2176c1160e8418631d69f4bcba75845fd/recipes/org-outline-numbering";
- sha256 = "131cpvfsiv92bbicq5n7dlr6k643sk7xw31xs0lwmw4pxq44m8sg";
- name = "recipe";
- };
- packageRequires = [ cl-lib emacs org ov ];
- meta = {
- homepage = "https://melpa.org/#/org-outline-numbering";
- license = lib.licenses.free;
- };
- }) {};
org-outlook = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -73706,33 +38380,6 @@
license = lib.licenses.free;
};
}) {};
- org-parser = callPackage ({ dash
- , emacs
- , fetchhg
- , fetchurl
- , ht
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "org-parser";
- ename = "org-parser";
- version = "20190206.2121";
- src = fetchhg {
- url = "https://bitbucket.com/zck/org-parser.el";
- rev = "8610aef8dc87";
- sha256 = "0vqh37y2b0dc8p9c04ici1h9n9ghd1jizcr1c2zvp75cyqsz09wv";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/28d55005cbce276cda21021a8d9368568cb4bcc6/recipes/org-parser";
- sha256 = "06yb78mf486b986dhvqg3avflfyi271vykyars465qpk0v8ahq8h";
- name = "recipe";
- };
- packageRequires = [ dash emacs ht ];
- meta = {
- homepage = "https://melpa.org/#/org-parser";
- license = lib.licenses.free;
- };
- }) {};
org-password-manager = callPackage ({ fetchgit
, fetchurl
, lib
@@ -73786,36 +38433,6 @@
license = lib.licenses.free;
};
}) {};
- org-pivotal = callPackage ({ a
- , dash
- , dash-functional
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , request }:
- melpaBuild {
- pname = "org-pivotal";
- ename = "org-pivotal";
- version = "20181216.636";
- src = fetchFromGitHub {
- owner = "org-pivotal";
- repo = "org-pivotal";
- rev = "d18e91a9f4480b0b25c1b6283ff6522e15276d62";
- sha256 = "1f1n461h8wa7rx3z728dws0sfkgdvww3jjwq120q0dfyjibcfjri";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/c1257d38bbd3a9944135b000e962f30ab28f5464/recipes/org-pivotal";
- sha256 = "1gv4968akh2wx92d7q1i1mpl9ndygkq8ssdwg6cf19wp8mk18088";
- name = "recipe";
- };
- packageRequires = [ a dash dash-functional emacs request ];
- meta = {
- homepage = "https://melpa.org/#/org-pivotal";
- license = lib.licenses.free;
- };
- }) {};
org-pomodoro = callPackage ({ alert
, cl-lib ? null
, fetchFromGitHub
@@ -73843,60 +38460,6 @@
license = lib.licenses.free;
};
}) {};
- org-present = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , org }:
- melpaBuild {
- pname = "org-present";
- ename = "org-present";
- version = "20180303.1530";
- src = fetchFromGitHub {
- owner = "rlister";
- repo = "org-present";
- rev = "d13acd70eff6a1608bc991920232146a0de76b21";
- sha256 = "0jz8xiny3rv9ql0p623byz32pip1b82j2c2nyfz2wd114kiabb6q";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/aba18f15fbaab115456e6afc9433074558a379f5/recipes/org-present";
- sha256 = "09h0cjqjwhqychyrdv1hmiyak677vgf1b94392sdsq3ns70zyjk7";
- name = "recipe";
- };
- packageRequires = [ org ];
- meta = {
- homepage = "https://melpa.org/#/org-present";
- license = lib.licenses.free;
- };
- }) {};
- org-present-remote = callPackage ({ elnode
- , emacs
- , fetchFromGitLab
- , fetchurl
- , lib
- , melpaBuild
- , org-present }:
- melpaBuild {
- pname = "org-present-remote";
- ename = "org-present-remote";
- version = "20181001.1441";
- src = fetchFromGitLab {
- owner = "duncan-bayne";
- repo = "org-present-remote";
- rev = "aca889be14400d68fb6b86bb89702942883e06b9";
- sha256 = "0xmsaza4i702hvm49kg8hh871isr4j5ra8w3yc27n2447jlsniif";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/66b092084565634cac8dd07b7b1694d0ddb236ba/recipes/org-present-remote";
- sha256 = "06xxxa8hxfxx47bs6wxi8nbgqc8nm82c3h0yv1ddlm35qfscggks";
- name = "recipe";
- };
- packageRequires = [ elnode emacs org-present ];
- meta = {
- homepage = "https://melpa.org/#/org-present-remote";
- license = lib.licenses.free;
- };
- }) {};
org-pretty-tags = callPackage ({ emacs
, fetchFromGitLab
, fetchurl
@@ -73923,33 +38486,6 @@
license = lib.licenses.free;
};
}) {};
- org-preview-html = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , org }:
- melpaBuild {
- pname = "org-preview-html";
- ename = "org-preview-html";
- version = "20180624.2319";
- src = fetchFromGitHub {
- owner = "lujun9972";
- repo = "org-preview-html";
- rev = "8ba7ecd7ac624f33b3e2395f477bbff4f1ec4efe";
- sha256 = "1h46v0ckhfzv3fixcfxk7pkmh56c5lana8kpwiknm447q1wmlbx4";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/org-preview-html";
- sha256 = "1dnr046mk5ngmic2yqcmrnn7pzrrx3sg22rk2pc3vgdxs8bhvhf9";
- name = "recipe";
- };
- packageRequires = [ emacs org ];
- meta = {
- homepage = "https://melpa.org/#/org-preview-html";
- license = lib.licenses.free;
- };
- }) {};
org-projectile = callPackage ({ dash
, emacs
, fetchFromGitHub
@@ -74033,33 +38569,6 @@
license = lib.licenses.free;
};
}) {};
- org-radiobutton = callPackage ({ dash
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "org-radiobutton";
- ename = "org-radiobutton";
- version = "20180612.328";
- src = fetchFromGitHub {
- owner = "Fuco1";
- repo = "org-radiobutton";
- rev = "4182aafbe5ae1bdfb0b07efa435bdba8bbd7199d";
- sha256 = "0jm5ijs4pjzvlzpqk3k9qqcvaza2lmz2c0fcxf1g357v643bmaj4";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/105043d8cfcb62ed89ddf9870f615519e6f415e7/recipes/org-radiobutton";
- sha256 = "16ly42iyfh7d34yz4bvdpj3zrlwkw3kmh82gwr25a05mlsdc1d93";
- name = "recipe";
- };
- packageRequires = [ dash emacs ];
- meta = {
- homepage = "https://melpa.org/#/org-radiobutton";
- license = lib.licenses.free;
- };
- }) {};
org-random-todo = callPackage ({ alert
, emacs
, fetchFromGitHub
@@ -74087,34 +38596,6 @@
license = lib.licenses.free;
};
}) {};
- org-randomnote = callPackage ({ dash
- , f
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , org }:
- melpaBuild {
- pname = "org-randomnote";
- ename = "org-randomnote";
- version = "20190403.933";
- src = fetchFromGitHub {
- owner = "mwfogleman";
- repo = "org-randomnote";
- rev = "f35a9d948751ad409aa057bfb68f1d008fdf9442";
- sha256 = "01nf3h5sg74lph1hjj7q77pxn6xxv4zq9cjnd97a7bfbpilq86a0";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/d92cb392b23701948176ba12516df5ae6608e950/recipes/org-randomnote";
- sha256 = "06i42ig7icap1i1mqzv5cqwhnmsrzpjmjbjjn49nv26ljr3mjw0b";
- name = "recipe";
- };
- packageRequires = [ dash f org ];
- meta = {
- homepage = "https://melpa.org/#/org-randomnote";
- license = lib.licenses.free;
- };
- }) {};
org-re-reveal = callPackage ({ emacs
, fetchFromGitLab
, fetchurl
@@ -74143,34 +38624,6 @@
license = lib.licenses.free;
};
}) {};
- org-re-reveal-ref = callPackage ({ emacs
- , fetchFromGitLab
- , fetchurl
- , lib
- , melpaBuild
- , org-re-reveal
- , org-ref }:
- melpaBuild {
- pname = "org-re-reveal-ref";
- ename = "org-re-reveal-ref";
- version = "20190301.704";
- src = fetchFromGitLab {
- owner = "oer";
- repo = "org-re-reveal-ref";
- rev = "7b13e1ab54eecebd92e73bf52a0d504816e5702d";
- sha256 = "0na74q70zn8zh22vc7r3d7r8pnv2610pg28chdvbrn92l0m8i1fw";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/391ef29288507aa2b0ad5d568419b66e5a883b2f/recipes/org-re-reveal-ref";
- sha256 = "0dd5b4g8ih98ma25jwlvdwgfadc75qcxr9zm74x5r6pr87amcb7n";
- name = "recipe";
- };
- packageRequires = [ emacs org-re-reveal org-ref ];
- meta = {
- homepage = "https://melpa.org/#/org-re-reveal-ref";
- license = lib.licenses.free;
- };
- }) {};
org-recent-headings = callPackage ({ dash
, emacs
, fetchFromGitHub
@@ -74200,58 +38653,6 @@
license = lib.licenses.free;
};
}) {};
- org-recur = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , org }:
- melpaBuild {
- pname = "org-recur";
- ename = "org-recur";
- version = "20190304.235";
- src = fetchFromGitHub {
- owner = "m-cat";
- repo = "org-recur";
- rev = "28abdfcfdbcda36702ce568ccd8a5f3e40797d16";
- sha256 = "0gk54251dh73srgxcfqq49q2daf5mp63lzl9c876wcixk5g6qmj6";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/cbdf8c9a3c7c289ce13542a12769a7f3d7f53d72/recipes/org-recur";
- sha256 = "0qlpwia2dg4l00jahc3si0mi27gv6zlvkbdx0rq37dh61dabgkiq";
- name = "recipe";
- };
- packageRequires = [ emacs org ];
- meta = {
- homepage = "https://melpa.org/#/org-recur";
- license = lib.licenses.free;
- };
- }) {};
- org-redmine = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "org-redmine";
- ename = "org-redmine";
- version = "20160711.414";
- src = fetchFromGitHub {
- owner = "gongo";
- repo = "org-redmine";
- rev = "a526c3ac802634486bf10de9c2283ccb1a30ec8d";
- sha256 = "04lfnyq6d86wa3acvjd4w2wvh538z9crsgsg4rgpyahklc5vm01f";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/017a9dd8029d083ca0c1307f2b83be187c7615e5/recipes/org-redmine";
- sha256 = "0y2pm18nnyzm9wjc0j15v46nf3xi7a0wvspfzi360qv08i54skqv";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/org-redmine";
- license = lib.licenses.free;
- };
- }) {};
org-ref = callPackage ({ dash
, emacs
, f
@@ -74323,58 +38724,6 @@
license = lib.licenses.free;
};
}) {};
- org-reverse-datetree = callPackage ({ dash
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "org-reverse-datetree";
- ename = "org-reverse-datetree";
- version = "20190404.2002";
- src = fetchFromGitHub {
- owner = "akirak";
- repo = "org-reverse-datetree";
- rev = "99e7ae3d0860dfe0f4d647ceb045f8b00bf1fe77";
- sha256 = "1ji8c2480ib48n1lq4ypgq524slgzfszpxwsv1q2wyqnjzbc2csv";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/a08612af18bb620955f7b5450eba3f44cdb60673/recipes/org-reverse-datetree";
- sha256 = "0fiwba8hh9617d1zqvxxz2l8p2iq56lkv5c16q7prc69m0s5zhjb";
- name = "recipe";
- };
- packageRequires = [ dash emacs ];
- meta = {
- homepage = "https://melpa.org/#/org-reverse-datetree";
- license = lib.licenses.free;
- };
- }) {};
- org-review = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "org-review";
- ename = "org-review";
- version = "20160906.2237";
- src = fetchFromGitHub {
- owner = "brabalan";
- repo = "org-review";
- rev = "44773bbd9868bb3ddca27cd35d2fc54139a70ab5";
- sha256 = "1iqcxdni680pgl9azi7khx2ns3mh8sgpbq1mcc4ivxkbwrb93crb";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/org-review";
- sha256 = "1v7p7pmrjjyj0my9xw55gsn9vvr9aq5x53x13nmspvqg47z6bd98";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/org-review";
- license = lib.licenses.free;
- };
- }) {};
org-rich-yank = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -74401,59 +38750,6 @@
license = lib.licenses.free;
};
}) {};
- org-rtm = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , rtm }:
- melpaBuild {
- pname = "org-rtm";
- ename = "org-rtm";
- version = "20160214.436";
- src = fetchFromGitHub {
- owner = "pmiddend";
- repo = "org-rtm";
- rev = "adc42ad1fbe92ab447ccc9553780f4456f2508d2";
- sha256 = "1hn8y9933x5x6lxpijcqx97p3hln69ahabqdsl2bmzda3mxm4bn2";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/org-rtm";
- sha256 = "1hdcwmiv2qivdr2g78xz9fl38wn45vj0bn55dbsdj3qx7k7wgfx6";
- name = "recipe";
- };
- packageRequires = [ rtm ];
- meta = {
- homepage = "https://melpa.org/#/org-rtm";
- license = lib.licenses.free;
- };
- }) {};
- org-seek = callPackage ({ ag
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "org-seek";
- ename = "org-seek";
- version = "20161216.2102";
- src = fetchFromGitHub {
- owner = "stardiviner";
- repo = "org-seek.el";
- rev = "1f51e6634e3b9a6a29d335d0d14370a6ffef2265";
- sha256 = "0aq3af6fd16lm9iirzya6hmc8g48kfp8pc4dx51mgb5d6jjiizkv";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/org-seek";
- sha256 = "04ay4abm03kn15cn45ldrzh2rw6gr6ia3qrj7hn5crd75ppwvln7";
- name = "recipe";
- };
- packageRequires = [ ag emacs ];
- meta = {
- homepage = "https://melpa.org/#/org-seek";
- license = lib.licenses.free;
- };
- }) {};
org-snooze = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -74480,61 +38776,6 @@
license = lib.licenses.free;
};
}) {};
- org-sql = callPackage ({ dash
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "org-sql";
- ename = "org-sql";
- version = "20190402.2035";
- src = fetchFromGitHub {
- owner = "ndwarshuis";
- repo = "org-sql";
- rev = "3793b270d5cd5ec047d7a32f2b34033592ffddf9";
- sha256 = "0hlp4qdpdh5a1jnj8mas8vnmfd5j7g6vkyczblgi2f5vvfvls0v6";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/012573a35a302e9bb6f127cf28ac04f93796400e/recipes/org-sql";
- sha256 = "15alnx74pmr6jc2yx2c1dbpk0fbdzil8bffj7cfj7ywj2xadmzpg";
- name = "recipe";
- };
- packageRequires = [ dash emacs ];
- meta = {
- homepage = "https://melpa.org/#/org-sql";
- license = lib.licenses.free;
- };
- }) {};
- org-starter = callPackage ({ dash
- , dash-functional
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "org-starter";
- ename = "org-starter";
- version = "20190406.314";
- src = fetchFromGitHub {
- owner = "akirak";
- repo = "org-starter";
- rev = "4fa28564cab2acfde56ca815882caa9e715c848a";
- sha256 = "1vjv2y3g02v5sg88z0kqig3jn0ryvck9s2syzdjpfsxp2jwbsw7a";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/7bdd9c835184ef1a6fabfaf7adb56a51514b75ea/recipes/org-starter";
- sha256 = "0vb11g5lvkvazrdzgdjvl8w7y5rr5nppg6685gq9pl6hw3sda0bs";
- name = "recipe";
- };
- packageRequires = [ dash dash-functional emacs ];
- meta = {
- homepage = "https://melpa.org/#/org-starter";
- license = lib.licenses.free;
- };
- }) {};
org-static-blog = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -74646,34 +38887,6 @@
license = lib.licenses.free;
};
}) {};
- org-sync-snippets = callPackage ({ emacs
- , f
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , org }:
- melpaBuild {
- pname = "org-sync-snippets";
- ename = "org-sync-snippets";
- version = "20190318.1044";
- src = fetchFromGitHub {
- owner = "abrochard";
- repo = "org-sync-snippets";
- rev = "50cefe5a37196ed1af3d330d6871c3b37fa90d41";
- sha256 = "13d1adymxn3b579syyaszgg98h3kh3hwn97pdfzghfli1cd9fb9y";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/96aff3f39adfa0c68aca8ff8d3b11fbfd889327e/recipes/org-sync-snippets";
- sha256 = "0kv15zqva2cgx7jscp02x9gx20b5ckf525h546hyca86vfaakfbp";
- name = "recipe";
- };
- packageRequires = [ emacs f org ];
- meta = {
- homepage = "https://melpa.org/#/org-sync-snippets";
- license = lib.licenses.free;
- };
- }) {};
org-table-comment = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -74967,32 +39180,6 @@
license = lib.licenses.free;
};
}) {};
- org-variable-pitch = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "org-variable-pitch";
- ename = "org-variable-pitch";
- version = "20190128.1251";
- src = fetchFromGitHub {
- owner = "cadadr";
- repo = "elisp";
- rev = "05bd1d5db68df144bc7552a460371d94a2cb5b3c";
- sha256 = "0v3swpbhi27nlwcav3iwanckqzirjvz6gl49if8kskmp8pdvy5fs";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/9632b7e98772b584d6420f8d0f9652d67118e05e/recipes/org-variable-pitch";
- sha256 = "1xci5zq1bpwnm3adlcsxzpskxywzalb1n3n14lvf787f77ib602c";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/org-variable-pitch";
- license = lib.licenses.free;
- };
- }) {};
org-vcard = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -75018,31 +39205,6 @@
license = lib.licenses.free;
};
}) {};
- org-wc = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "org-wc";
- ename = "org-wc";
- version = "20180609.1953";
- src = fetchFromGitHub {
- owner = "tesujimath";
- repo = "org-wc";
- rev = "0716c1e8276f6953e139e357e97566e792c8be19";
- sha256 = "0wx4z6y3wn6948bz2pgrpffd4jzwgplvjkh0rnra4gihrapg1bv8";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/852e0a5cee285cc9b5e2cd9e18061fc0fe91d5a6/recipes/org-wc";
- sha256 = "1yk2py4bzm2yr8vw6rbgl2hfpd21hf4fga0d5q6y779631klp6wl";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/org-wc";
- license = lib.licenses.free;
- };
- }) {};
org-web-tools = callPackage ({ dash
, emacs
, esxml
@@ -75077,6 +39239,7 @@
org-wild-notifier = callPackage ({ alert
, async
, dash
+ , dash-functional
, emacs
, fetchFromGitHub
, fetchurl
@@ -75085,55 +39248,24 @@
melpaBuild {
pname = "org-wild-notifier";
ename = "org-wild-notifier";
- version = "0.3.0";
+ version = "0.3.1";
src = fetchFromGitHub {
owner = "akhramov";
repo = "org-wild-notifier.el";
- rev = "65054365e4b279cef97acc6d20235c4ca422cf04";
- sha256 = "1h6nb1g075anbqw0a5pdfy5194hldhngvdx20naf5y2nznqj7dn7";
+ rev = "6e194d0f0a21b7d2b09ebdef5ffcd5ffe3633339";
+ sha256 = "0vh8hhb0d5y3bgp0i9msk5c6rpn1mzj9bzqmbk6xwl4qr07hgnxx";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/114552a24f73f13b253e3db4885039b680f6ef33/recipes/org-wild-notifier";
sha256 = "1lmpa614jnkpmfg3m1d2wjn9w0zig3gwd02n3dyjn23n71fiyhkp";
name = "recipe";
};
- packageRequires = [ alert async dash emacs ];
+ packageRequires = [ alert async dash dash-functional emacs ];
meta = {
homepage = "https://melpa.org/#/org-wild-notifier";
license = lib.licenses.free;
};
}) {};
- org-wunderlist = callPackage ({ alert
- , cl-lib ? null
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , org
- , request-deferred
- , s }:
- melpaBuild {
- pname = "org-wunderlist";
- ename = "org-wunderlist";
- version = "20150817.1913";
- src = fetchFromGitHub {
- owner = "myuhe";
- repo = "org-wunderlist.el";
- rev = "18565a018364db123dd0785c3c459a33ac458a2c";
- sha256 = "1yyhh9ys67cg3y64vwi5nsl4vz793lkl4gpbv6jar8j5ryfg0z5w";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/44019e5d9e3d0f3e2cf76fa5828e1f953fd5e60b/recipes/org-wunderlist";
- sha256 = "08zg3wgr80rp89c53ffqzz22ws9bp62a1m74xvxa74x6nq9i4xl0";
- name = "recipe";
- };
- packageRequires = [ alert cl-lib emacs org request-deferred s ];
- meta = {
- homepage = "https://melpa.org/#/org-wunderlist";
- license = lib.licenses.free;
- };
- }) {};
org2blog = callPackage ({ fetchFromGitHub
, fetchurl
, htmlize
@@ -75164,88 +39296,6 @@
license = lib.licenses.free;
};
}) {};
- org2ctex = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "org2ctex";
- ename = "org2ctex";
- version = "20181011.1851";
- src = fetchFromGitHub {
- owner = "tumashu";
- repo = "org2ctex";
- rev = "2143992462594ce63733305f75f7c7d08123710a";
- sha256 = "0xrg66yx4xrmkswbapaz21q4i6qm2199zvxqvgaxd8qyk19fc46c";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/8f77fe537ca8ee2ddb6e3efe71f3b3c560c52c7d/recipes/org2ctex";
- sha256 = "0049zf3ls7vbbcz1hdwai57ih9gppk2j0gzwijzwkb23ccwaf64a";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/org2ctex";
- license = lib.licenses.free;
- };
- }) {};
- org2elcomment = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , org }:
- melpaBuild {
- pname = "org2elcomment";
- ename = "org2elcomment";
- version = "20170324.245";
- src = fetchFromGitHub {
- owner = "cute-jumper";
- repo = "org2elcomment";
- rev = "c88a75d9587c484ead18f7adf08592b09c1cceb0";
- sha256 = "19r7rxnd2cl0vc8bbf86mh5b779pl5z917657ymlc74bqq140m3x";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/8af13650de8b4a814832638d4182bf8ce576244c/recipes/org2elcomment";
- sha256 = "0jv8sskw55rzxw578l6nm4arsycrw1si80ds7gr8i0x352fdydyp";
- name = "recipe";
- };
- packageRequires = [ org ];
- meta = {
- homepage = "https://melpa.org/#/org2elcomment";
- license = lib.licenses.free;
- };
- }) {};
- org2issue = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , gh
- , lib
- , melpaBuild
- , org
- , ox-gfm
- , s }:
- melpaBuild {
- pname = "org2issue";
- ename = "org2issue";
- version = "20160426.1818";
- src = fetchFromGitHub {
- owner = "lujun9972";
- repo = "org2issue";
- rev = "0f7f13463e389f2d8d7d830a928042d0cf1c71eb";
- sha256 = "1lvwkvzqgy9nlz7zmqfl9j8cairjfv3vknpzcqp6rzp6hkq04zk5";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/ad1759854c3bd302aa353dea92cf462e981aff2f/recipes/org2issue";
- sha256 = "1qd5l9ga26smgp1gkc8r9ja2n974kq1jf2z876s5v0489ipa59bz";
- name = "recipe";
- };
- packageRequires = [ emacs gh org ox-gfm s ];
- meta = {
- homepage = "https://melpa.org/#/org2issue";
- license = lib.licenses.free;
- };
- }) {};
org2jekyll = callPackage ({ dash-functional
, deferred
, fetchFromGitHub
@@ -75316,60 +39366,6 @@
license = lib.licenses.free;
};
}) {};
- organic-green-theme = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "organic-green-theme";
- ename = "organic-green-theme";
- version = "20180522.920";
- src = fetchFromGitHub {
- owner = "kostafey";
- repo = "organic-green-theme";
- rev = "200ac4a636eeb6faf1793d1937e62a343debc437";
- sha256 = "18a04grh4k9npf566xki9fiivy5qvpvv5v8mpj66wfx919fwa44c";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/9383ef5f0372724b34f4bb9173ef8ccbb773e19e/recipes/organic-green-theme";
- sha256 = "1fdj3dpcdqx0db5q8dlxag6pr2qn4yiz1hmg3c7dkmh51n85ssw2";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/organic-green-theme";
- license = lib.licenses.free;
- };
- }) {};
- organize-imports-java = callPackage ({ cl-lib ? null
- , emacs
- , f
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , s }:
- melpaBuild {
- pname = "organize-imports-java";
- ename = "organize-imports-java";
- version = "20190304.1047";
- src = fetchFromGitHub {
- owner = "jcs090218";
- repo = "organize-imports-java";
- rev = "e201750cee13876dbea2fba8508ade1b9f76b29a";
- sha256 = "0lnsxa3aiyaww62z4y07ciwak2gxv881qraz6sl5csfjdmbycii1";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/ad0242f941ff44b4897c94d336bc0af498582dd7/recipes/organize-imports-java";
- sha256 = "1k8s7pm268w42fm0lqlqg77mib8mbccw11ppf99r574510a1bni3";
- name = "recipe";
- };
- packageRequires = [ cl-lib emacs f s ];
- meta = {
- homepage = "https://melpa.org/#/organize-imports-java";
- license = lib.licenses.free;
- };
- }) {};
orgbox = callPackage ({ cl-lib ? null
, fetchFromGitHub
, fetchurl
@@ -75454,138 +39450,6 @@
license = lib.licenses.free;
};
}) {};
- orglue = callPackage ({ epic
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , org }:
- melpaBuild {
- pname = "orglue";
- ename = "orglue";
- version = "20171220.426";
- src = fetchFromGitHub {
- owner = "yoshinari-nomura";
- repo = "orglue";
- rev = "ae2a45c19b52e45db7891093a3ff17ba2e51c507";
- sha256 = "0h3b37wz4hlk022c0sq7c9p5z3v4n6cljhy8g1qjhnxac8y7mkr0";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/orglue";
- sha256 = "1kj62y3cf3as2d5s207s6kg5alm09jmw0aag1z6lblrjlzbi1p2j";
- name = "recipe";
- };
- packageRequires = [ epic org ];
- meta = {
- homepage = "https://melpa.org/#/orglue";
- license = lib.licenses.free;
- };
- }) {};
- orgnav = callPackage ({ dash
- , emacs
- , fetchFromGitHub
- , fetchurl
- , helm
- , lib
- , melpaBuild
- , s }:
- melpaBuild {
- pname = "orgnav";
- ename = "orgnav";
- version = "20170608.1013";
- src = fetchFromGitHub {
- owner = "facetframer";
- repo = "orgnav";
- rev = "9e2cac9c1a67af5f0080e60022e821bf7b70312d";
- sha256 = "0764dg3dcsdy4i6syv9aqqmr47civn9dl3638g4lsqdikghw7lvv";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/a41436df126d7ef2c0a8b56d90afb942fe47dc59/recipes/orgnav";
- sha256 = "0z04n5rzv5c0lvn658nrfj6rg3a31n369h5rjgi5bap06qm427ix";
- name = "recipe";
- };
- packageRequires = [ dash emacs helm s ];
- meta = {
- homepage = "https://melpa.org/#/orgnav";
- license = lib.licenses.free;
- };
- }) {};
- orgtbl-aggregate = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "orgtbl-aggregate";
- ename = "orgtbl-aggregate";
- version = "20180731.1454";
- src = fetchFromGitHub {
- owner = "tbanel";
- repo = "orgaggregate";
- rev = "1079dfc3ca0f86fef6ca3e251f3829e031aef8c4";
- sha256 = "17acwy9x23xh2fb3xhy5w3lz6ssnrv5nf33zsqadra9y1cxs9fcc";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/bf64b53c9d49718a8ffc39b14c90539b36840280/recipes/orgtbl-aggregate";
- sha256 = "0gnyjwn6jshs8bzdssm2xppg2s9p2x3rrhp523q39aydskc6ggc9";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/orgtbl-aggregate";
- license = lib.licenses.free;
- };
- }) {};
- orgtbl-ascii-plot = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "orgtbl-ascii-plot";
- ename = "orgtbl-ascii-plot";
- version = "20151215.1351";
- src = fetchFromGitHub {
- owner = "tbanel";
- repo = "orgtblasciiplot";
- rev = "cd91f6ae26a7402e192a1f4fd6248f5797edf19e";
- sha256 = "1vbnp37xz0nrpyi0hah345928zsb1xw915mdb0wybq1fzn93mp1z";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/21b02596ac4b48e592ebe966475b164866bb9d6e/recipes/orgtbl-ascii-plot";
- sha256 = "1ssjbdprbn34nsfx1xjc382l2195rbh8mybpn31d4kcjx6fqf78h";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/orgtbl-ascii-plot";
- license = lib.licenses.free;
- };
- }) {};
- orgtbl-join = callPackage ({ cl-lib ? null
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "orgtbl-join";
- ename = "orgtbl-join";
- version = "20150121.1446";
- src = fetchFromGitHub {
- owner = "tbanel";
- repo = "orgtbljoin";
- rev = "863f0bde0aa226ecc6d000d9bcb1424be407dfb0";
- sha256 = "0issbnl13lkfg3w0ia42mrjyvl8sl2blnmv2kazyd0lzkcfy1kap";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/e43ae8aaa54113f53b51aea3fb2656d608d1032c/recipes/orgtbl-join";
- sha256 = "1kq2h0lb521z8q2xb9bsi37xzzdsa0hw4mm3qkzidi5j9fi3apf1";
- name = "recipe";
- };
- packageRequires = [ cl-lib ];
- meta = {
- homepage = "https://melpa.org/#/orgtbl-join";
- license = lib.licenses.free;
- };
- }) {};
orgtbl-show-header = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -75611,35 +39475,6 @@
license = lib.licenses.free;
};
}) {};
- origami = callPackage ({ cl-lib ? null
- , dash
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , s }:
- melpaBuild {
- pname = "origami";
- ename = "origami";
- version = "20180101.753";
- src = fetchFromGitHub {
- owner = "gregsexton";
- repo = "origami.el";
- rev = "1f38085c8f9af7842765ed63f7d6dfe4dab59366";
- sha256 = "0ha1qsz2p36pqa0sa2sp83lspbgx5lr7930qxnwd585liajzdd9x";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/b816be227dfc7330292a50346c4bb37394d3e998/recipes/origami";
- sha256 = "0rkb55zcvsgxzp190vrnbzdfbcjd8zi6vhbhwpqxi0qmyq6a08pr";
- name = "recipe";
- };
- packageRequires = [ cl-lib dash emacs s ];
- meta = {
- homepage = "https://melpa.org/#/origami";
- license = lib.licenses.free;
- };
- }) {};
osx-browse = callPackage ({ browse-url-dwim
, fetchFromGitHub
, fetchurl
@@ -75718,32 +39553,6 @@
license = lib.licenses.free;
};
}) {};
- osx-lib = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "osx-lib";
- ename = "osx-lib";
- version = "20160919.1700";
- src = fetchFromGitHub {
- owner = "raghavgautam";
- repo = "osx-lib";
- rev = "fdbbb41e07ba64d6a09b54bd142a7c7b83bfd09f";
- sha256 = "0n03yca62znrri1pg0cl4xzm4lkmdqyf1p9sm1vfjwlwxk552z5x";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/b42ae666e3511752f5138927e7bf7965bd9f7ee5/recipes/osx-lib";
- sha256 = "12wvki8jhzqsanxv5yqzjmfx6ifwz9ab9zh6r8nss86bk8864ix4";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/osx-lib";
- license = lib.licenses.free;
- };
- }) {};
osx-location = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -75769,31 +39578,6 @@
license = lib.licenses.free;
};
}) {};
- osx-org-clock-menubar = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "osx-org-clock-menubar";
- ename = "osx-org-clock-menubar";
- version = "20150205.1311";
- src = fetchFromGitHub {
- owner = "jordonbiondo";
- repo = "osx-org-clock-menubar";
- rev = "9964d2a97cc2fb6570dc4116da44f73bd8eb7cb3";
- sha256 = "1rgykby1ysbapq53lnk9yy04r9q4qirnzs2abgvz7g2qjq5fyzag";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/cade09308a6b8c998800f2ad2592ad6ea79f65ca/recipes/osx-org-clock-menubar";
- sha256 = "1y5qxslxl0d93f387nyj8zngz5nh1p4rzdfx0lnbvya6shfaxaf6";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/osx-org-clock-menubar";
- license = lib.licenses.free;
- };
- }) {};
osx-pseudo-daemon = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -75845,83 +39629,6 @@
license = lib.licenses.free;
};
}) {};
- otama = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "otama";
- ename = "otama";
- version = "20160404.332";
- src = fetchFromGitHub {
- owner = "yoshinari-nomura";
- repo = "otama";
- rev = "b69e0740846ace7885b0c0717f7abe8d0419eefd";
- sha256 = "0javkbzsc4bbx121awbn35fb6lyvhskkkh9jb0byd51gpvg74g1r";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/53b1eaef5c8b408eb8fff838af1e0249c4fe9444/recipes/otama";
- sha256 = "04ffyscldb2sn2n26ixrnc07ybvl7iclv2hi1kmhr5hdgxwpyjq9";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/otama";
- license = lib.licenses.free;
- };
- }) {};
- other-emacs-eval = callPackage ({ async
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "other-emacs-eval";
- ename = "other-emacs-eval";
- version = "20180408.648";
- src = fetchFromGitHub {
- owner = "xuchunyang";
- repo = "other-emacs-eval";
- rev = "8ace5acafef65daabf0c6619eff60733d7f5d792";
- sha256 = "1pry1xw2p01b18ks5n0xs895qqqci7v2nrwjiil2vr3m1ys92ymc";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/75b6391726b0d5069e036930c2c5fa177c4e3422/recipes/other-emacs-eval";
- sha256 = "07sr5bb6x9w450cvfg32darg6jlwg11n7c1qhhk0ijcrnlsm09n7";
- name = "recipe";
- };
- packageRequires = [ async emacs ];
- meta = {
- homepage = "https://melpa.org/#/other-emacs-eval";
- license = lib.licenses.free;
- };
- }) {};
- outline-magic = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "outline-magic";
- ename = "outline-magic";
- version = "20180619.1119";
- src = fetchFromGitHub {
- owner = "tj64";
- repo = "outline-magic";
- rev = "2a5f07417b696cf7541d435c43bafcc64817636b";
- sha256 = "1iyslhk2zvhn4ip27apkjzkqw56lfakp2jzwz106jm45f3kllpc8";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/a98ad2ef680eef541ee82e8a65ed73e524df98a1/recipes/outline-magic";
- sha256 = "085yayzph3y7fh6pd5sdjdkhdcvwfzcyqd6y3xlbz7wni5ac6b5f";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/outline-magic";
- license = lib.licenses.free;
- };
- }) {};
outline-minor-faces = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -75948,56 +39655,6 @@
license = lib.licenses.free;
};
}) {};
- outline-toc = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "outline-toc";
- ename = "outline-toc";
- version = "20170730.430";
- src = fetchFromGitHub {
- owner = "abingham";
- repo = "outline-toc.el";
- rev = "31f04bea19cfcfb01a94d1fd2b72391cb02b7463";
- sha256 = "1pqz2ynw51n3f7d9hknz80d42017lccsggkg13zqmn51wkjpc48j";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/64b07ee55e87c4a1125ce18a8ae0a44661380ffe/recipes/outline-toc";
- sha256 = "13hy9ahla68qcbfbm7b5d0yy774qfc3byb6pn9c66k2wg4xh6pxb";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/outline-toc";
- license = lib.licenses.free;
- };
- }) {};
- outlined-elisp-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "outlined-elisp-mode";
- ename = "outlined-elisp-mode";
- version = "20131108.327";
- src = fetchFromGitHub {
- owner = "zk-phi";
- repo = "outlined-elisp-mode";
- rev = "c16cb02b540448919ad148f2be6a41523ee5489c";
- sha256 = "0d9hfr4kb6rkhwacdn70bkfchgam26gj92zfyaqw77a2sgwcmwwv";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/ae918c301e1c0ae39574ae76d70059718724293b/recipes/outlined-elisp-mode";
- sha256 = "165sivmv5h4nvh08ampq95x6b0bkzxgrdjbxjxlq6rv00vaidn7v";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/outlined-elisp-mode";
- license = lib.licenses.free;
- };
- }) {};
outlook = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -76049,32 +39706,6 @@
license = lib.licenses.free;
};
}) {};
- outrespace = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "outrespace";
- ename = "outrespace";
- version = "20180711.732";
- src = fetchFromGitHub {
- owner = "articuluxe";
- repo = "outrespace";
- rev = "7dafed7e1cabf4a0bb55e5c6465e83796e3fdabe";
- sha256 = "0xdaaxvamjjghidxir1hpagrglxws646avl4d196g4z9y479wdyg";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/2659a78181b8fe98ca4a80c75ec8c9b6dff44bb5/recipes/outrespace";
- sha256 = "13xasp9vjb3n0smdhrh9pq1yhhrg3p6z14fmlvf6xqip52rx89hl";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/outrespace";
- license = lib.licenses.free;
- };
- }) {};
outshine = callPackage ({ cl-lib ? null
, fetchFromGitHub
, fetchurl
@@ -76210,85 +39841,6 @@
license = lib.licenses.free;
};
}) {};
- ox-asciidoc = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , org }:
- melpaBuild {
- pname = "ox-asciidoc";
- ename = "ox-asciidoc";
- version = "20181229.2220";
- src = fetchFromGitHub {
- owner = "yashi";
- repo = "org-asciidoc";
- rev = "e931362e641f97d17dc738d22bb461e54045786d";
- sha256 = "045kci7xvlp0kg8gmplnybc7ydv66hkl88dxgd113ac7ipf9zir7";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/3b268064f09ae5c3d15064b7d197c7af767fb278/recipes/ox-asciidoc";
- sha256 = "07b549dqyh1gk226d7zbls1mw6q4mas7kbfwkansmyykax0r2zyr";
- name = "recipe";
- };
- packageRequires = [ org ];
- meta = {
- homepage = "https://melpa.org/#/ox-asciidoc";
- license = lib.licenses.free;
- };
- }) {};
- ox-bibtex-chinese = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "ox-bibtex-chinese";
- ename = "ox-bibtex-chinese";
- version = "20170722.2009";
- src = fetchFromGitHub {
- owner = "tumashu";
- repo = "ox-bibtex-chinese";
- rev = "2ad2364399229144110db7ef6365ad0461d6a38c";
- sha256 = "06lp56na1fv87296hhaxgb6gfnzln39p4v245gfxhk0k27589vxj";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/6c09c708c4372451502923cd3cb756f4f98ba97b/recipes/ox-bibtex-chinese";
- sha256 = "0f3xigrkhc86vv23f76fdd4rjsspsd2ck5c65biq2ds247f4gm61";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/ox-bibtex-chinese";
- license = lib.licenses.free;
- };
- }) {};
- ox-clip = callPackage ({ fetchFromGitHub
- , fetchurl
- , htmlize
- , lib
- , melpaBuild
- , org }:
- melpaBuild {
- pname = "ox-clip";
- ename = "ox-clip";
- version = "20180305.1940";
- src = fetchFromGitHub {
- owner = "jkitchin";
- repo = "ox-clip";
- rev = "594c90953a91948505bb394350adf110e041f19a";
- sha256 = "1alm6hh7qg8sv50cm5p03icx47za2g7b2nvbwzx6kxkrgmgqfq6c";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/6d9ae1e58a1f214a9b88627a2d3254ce7de50740/recipes/ox-clip";
- sha256 = "1sm0ivd8rypnl0z901anjsnbfjwhxqcaagqav82ybdb1z6x1qicv";
- name = "recipe";
- };
- packageRequires = [ htmlize org ];
- meta = {
- homepage = "https://melpa.org/#/ox-clip";
- license = lib.licenses.free;
- };
- }) {};
ox-epub = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -76341,32 +39893,6 @@
license = lib.licenses.free;
};
}) {};
- ox-html5slide = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , org }:
- melpaBuild {
- pname = "ox-html5slide";
- ename = "ox-html5slide";
- version = "20131227.2206";
- src = fetchFromGitHub {
- owner = "coldnew";
- repo = "org-html5slide";
- rev = "4703dfbd9d79161509def673d2c1e118d722a58f";
- sha256 = "19h3w3fcas60jv02v7hxjmh05804sb7bif70jssq3qwisj0j09xm";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/a7a7fd72c9bbb5d90e0e096b791971f2b64b8463/recipes/ox-html5slide";
- sha256 = "0nqk6chg0ky98ap2higa74786prj7dbwx2a3l67m0llmdajw76qn";
- name = "recipe";
- };
- packageRequires = [ org ];
- meta = {
- homepage = "https://melpa.org/#/ox-html5slide";
- license = lib.licenses.free;
- };
- }) {};
ox-hugo = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -76394,32 +39920,6 @@
license = lib.licenses.free;
};
}) {};
- ox-impress-js = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , org }:
- melpaBuild {
- pname = "ox-impress-js";
- ename = "ox-impress-js";
- version = "20150412.1016";
- src = fetchFromGitHub {
- owner = "kinjo";
- repo = "org-impress-js.el";
- rev = "91c6d2af6af308ade352a03355c4fb551b238c6b";
- sha256 = "1kf2si2lyy0xc971bx5zd2j9mnz1smc9s8l0dwc6iksh2v9q8cy9";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/e5e79b4b897daca80f26440107abaddf0a480db9/recipes/ox-impress-js";
- sha256 = "0p0cc51lmxgl0xv951ybdg5n8gbzv8qf0chfgigijizzjypxc21l";
- name = "recipe";
- };
- packageRequires = [ org ];
- meta = {
- homepage = "https://melpa.org/#/ox-impress-js";
- license = lib.licenses.free;
- };
- }) {};
ox-ioslide = callPackage ({ cl-lib ? null
, emacs
, f
@@ -76449,165 +39949,6 @@
license = lib.licenses.free;
};
}) {};
- ox-jekyll-md = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "ox-jekyll-md";
- ename = "ox-jekyll-md";
- version = "20180831.1032";
- src = fetchFromGitHub {
- owner = "gonsie";
- repo = "ox-jekyll-md";
- rev = "f997f41d89afd2360973ef8118b5221f17bba757";
- sha256 = "1padg3nq2fn7f5x96z19iqmknk5z3aa8yyipz0v3bdv0a3iqngli";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/4e7ddae7938158d9da24bee861a88d4875235269/recipes/ox-jekyll-md";
- sha256 = "0lfnrikrismcd2zyfb0sf3pwwx12cyki7kzs2mjlswq3sap8w544";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/ox-jekyll-md";
- license = lib.licenses.free;
- };
- }) {};
- ox-jira = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , org }:
- melpaBuild {
- pname = "ox-jira";
- ename = "ox-jira";
- version = "20171001.216";
- src = fetchFromGitHub {
- owner = "stig";
- repo = "ox-jira.el";
- rev = "23565783ca66e2aafc2aa03796e09dde4ae11c1a";
- sha256 = "169v87xmdr41f0wyjpq4wzmr1kfb8gf6x67c24v9dbb7bldynl2g";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/e8a77d9c903acd6d7fdcb53f63384144e85589c9/recipes/ox-jira";
- sha256 = "088ks14d7slgs2qsqp1kkxvqzzhdkwphdvpg27ix686dz1krxxib";
- name = "recipe";
- };
- packageRequires = [ org ];
- meta = {
- homepage = "https://melpa.org/#/ox-jira";
- license = lib.licenses.free;
- };
- }) {};
- ox-mdx-deck = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , ox-hugo }:
- melpaBuild {
- pname = "ox-mdx-deck";
- ename = "ox-mdx-deck";
- version = "20181115.1047";
- src = fetchFromGitHub {
- owner = "WolfeCub";
- repo = "ox-mdx-deck";
- rev = "f3dbc35870b69a5d8971b1647da8c5468f520c5d";
- sha256 = "0v82d3ylmrh6pbha4kxs3lif40jfa3sd0adqarmz7yyqccv9ixkk";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/13d1a86dfe682f65daf529f9f62dd494fd860be9/recipes/ox-mdx-deck";
- sha256 = "1k41sbqcfrj485ps11f6xdb1kxp7kh22k0zhn9vrjb5mxwdilfyl";
- name = "recipe";
- };
- packageRequires = [ emacs ox-hugo ];
- meta = {
- homepage = "https://melpa.org/#/ox-mdx-deck";
- license = lib.licenses.free;
- };
- }) {};
- ox-mediawiki = callPackage ({ cl-lib ? null
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , s }:
- melpaBuild {
- pname = "ox-mediawiki";
- ename = "ox-mediawiki";
- version = "20180105.1354";
- src = fetchFromGitHub {
- owner = "tomalexander";
- repo = "orgmode-mediawiki";
- rev = "a9327150293e370e500ba55bddfe5fc435c6bf9b";
- sha256 = "0dsq86hli24imdkgsf45asx23kriw9di3d0cf5z8axfpkcbkn770";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/24244d146306ce965df382c8958c7574c74313f2/recipes/ox-mediawiki";
- sha256 = "0lijj2n4saw0xd3jaghbvx9v6a4ldl5gd8wy7s7hfcm30wb75cdb";
- name = "recipe";
- };
- packageRequires = [ cl-lib s ];
- meta = {
- homepage = "https://melpa.org/#/ox-mediawiki";
- license = lib.licenses.free;
- };
- }) {};
- ox-minutes = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "ox-minutes";
- ename = "ox-minutes";
- version = "20180202.934";
- src = fetchFromGitHub {
- owner = "kaushalmodi";
- repo = "ox-minutes";
- rev = "27c29f3fdb9181322ae56f8bace8d95e621230e5";
- sha256 = "10rw12gmg3d6fvkqijmjnk5bdpigvm8fy34435mwg7raw0gmlq75";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/162d0dacbb7252508147edb52fe33b1927a6bd69/recipes/ox-minutes";
- sha256 = "13rwcp0k9h7l5g8xw2s2r1xhsmkibhfqyq6hlicvddv232g724sj";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/ox-minutes";
- license = lib.licenses.free;
- };
- }) {};
- ox-nikola = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , org
- , ox-rst }:
- melpaBuild {
- pname = "ox-nikola";
- ename = "ox-nikola";
- version = "20151114.316";
- src = fetchFromGitHub {
- owner = "msnoigrs";
- repo = "ox-nikola";
- rev = "5bcbc1a38f6619f62294194f13ca0cd4ca14dd48";
- sha256 = "0cc14p6c3d4djfmrkac0abb2jq128vlmayv2a8cyvnyjffyvjbk7";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/4e3fa1b0728ad3058376800ec5e2e9e3847c1d2f/recipes/ox-nikola";
- sha256 = "13k5wggz8bhnfgpsc09jnisk7xdb226d6imp7v6vmd1ax9m2xb0w";
- name = "recipe";
- };
- packageRequires = [ emacs org ox-rst ];
- meta = {
- homepage = "https://melpa.org/#/ox-nikola";
- license = lib.licenses.free;
- };
- }) {};
ox-pandoc = callPackage ({ dash
, emacs
, fetchFromGitHub
@@ -76637,165 +39978,6 @@
license = lib.licenses.free;
};
}) {};
- ox-pukiwiki = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , org }:
- melpaBuild {
- pname = "ox-pukiwiki";
- ename = "ox-pukiwiki";
- version = "20150124.916";
- src = fetchFromGitHub {
- owner = "yashi";
- repo = "org-pukiwiki";
- rev = "b53920abf698fa6682623d671108393e92c68bd7";
- sha256 = "031xl8wry4frbc3d5d0nq7bca6y4plij9v8v8p8rg5ms3sh2fhjq";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/cd4043336e54c6ae3976068a1af5cfe58713e408/recipes/ox-pukiwiki";
- sha256 = "10sfbri5hv5hyx9jc1bzlk4qmzfmpfgfy8wkjkpv7lv2x0axqd8a";
- name = "recipe";
- };
- packageRequires = [ org ];
- meta = {
- homepage = "https://melpa.org/#/ox-pukiwiki";
- license = lib.licenses.free;
- };
- }) {};
- ox-qmd = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , org }:
- melpaBuild {
- pname = "ox-qmd";
- ename = "ox-qmd";
- version = "20170402.957";
- src = fetchFromGitHub {
- owner = "0x60df";
- repo = "ox-qmd";
- rev = "3a24c7a0b3ec80e494b977e14a3dfb94c9f1d8ec";
- sha256 = "030nay81c49ings96akzzy108a6agg91rvpmg0pf05qmjysfysmf";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/e71826e8a8c30b0eb535cce7a379740011b79534/recipes/ox-qmd";
- sha256 = "1i2kdpp6prgphc1l42nz7q6vdfsbcn2vvlf10s7dfhhr8jzcyyy7";
- name = "recipe";
- };
- packageRequires = [ org ];
- meta = {
- homepage = "https://melpa.org/#/ox-qmd";
- license = lib.licenses.free;
- };
- }) {};
- ox-reveal = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , org }:
- melpaBuild {
- pname = "ox-reveal";
- ename = "ox-reveal";
- version = "20161027.226";
- src = fetchFromGitHub {
- owner = "yjwen";
- repo = "org-reveal";
- rev = "d7ffc3fd1b095ed81e0af005ecbb0b42427d13b0";
- sha256 = "0y8cnpm7hw8s3d09j8imdpaddqq914nfy3skjm7i10g9xacrp294";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/8bb4024eef5dc4cc3674bbbed9d92f074d533f35/recipes/ox-reveal";
- sha256 = "092swxkkisvj2y18ynal8dn7wcfi7h4y6n0dlzqq28bfflarbwik";
- name = "recipe";
- };
- packageRequires = [ org ];
- meta = {
- homepage = "https://melpa.org/#/ox-reveal";
- license = lib.licenses.free;
- };
- }) {};
- ox-rfc = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , org }:
- melpaBuild {
- pname = "ox-rfc";
- ename = "ox-rfc";
- version = "20190310.2321";
- src = fetchFromGitHub {
- owner = "choppsv1";
- repo = "org-rfc-export";
- rev = "b0345990036a2322609a6fa360deba079d7001fe";
- sha256 = "05962hwww6wkbd9p4svnc5ynbsgnnfryf900nr65qap41bzxfa3y";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/d3f49159d6a379bf435e2af8920176fd84693a60/recipes/ox-rfc";
- sha256 = "0vqh923223rmhy39p4lwmdv6azba7cddkc1zi5pp3zpcijmhxzk4";
- name = "recipe";
- };
- packageRequires = [ emacs org ];
- meta = {
- homepage = "https://melpa.org/#/ox-rfc";
- license = lib.licenses.free;
- };
- }) {};
- ox-rst = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , org }:
- melpaBuild {
- pname = "ox-rst";
- ename = "ox-rst";
- version = "20180314.1713";
- src = fetchFromGitHub {
- owner = "msnoigrs";
- repo = "ox-rst";
- rev = "a74b60883b0d844c80efb364dac1560b85f2548f";
- sha256 = "0smgz2q7bjj2svx1gdr187m58yxq1hs878bciz9h6jcp03a9sb61";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/85770d6e235217e98dda9d8b9f027a4ba3ebba96/recipes/ox-rst";
- sha256 = "0447q0gvasii57rp391la9prz0w228jnzgi59s785vzswdryww0n";
- name = "recipe";
- };
- packageRequires = [ emacs org ];
- meta = {
- homepage = "https://melpa.org/#/ox-rst";
- license = lib.licenses.free;
- };
- }) {};
- ox-slack = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , org
- , ox-gfm }:
- melpaBuild {
- pname = "ox-slack";
- ename = "ox-slack";
- version = "20181119.331";
- src = fetchFromGitHub {
- owner = "titaniumbones";
- repo = "ox-slack";
- rev = "96d90914e6df1a0141657fc51f1dc5bb8f1da6bd";
- sha256 = "1cda5c35wm7aqyj7yj80wkwb79dgzlzis1dlpysdxv30ahcf4w8p";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/55fda67a19f8799f00c8304a14ab88dde236aa48/recipes/ox-slack";
- sha256 = "0ggw64lx93crfzm1sfwqhsfhaprkbyrjay88nyn43frf7c5l4a63";
- name = "recipe";
- };
- packageRequires = [ org ox-gfm ];
- meta = {
- homepage = "https://melpa.org/#/ox-slack";
- license = lib.licenses.free;
- };
- }) {};
ox-slimhtml = callPackage ({ cl-lib ? null
, emacs
, fetchFromGitHub
@@ -76823,138 +40005,6 @@
license = lib.licenses.free;
};
}) {};
- ox-spectacle = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , org }:
- melpaBuild {
- pname = "ox-spectacle";
- ename = "ox-spectacle";
- version = "20181211.153";
- src = fetchFromGitHub {
- owner = "lorniu";
- repo = "ox-spectacle";
- rev = "9d3ec9a6326289074d8620e97d65e3105307ff51";
- sha256 = "1gm8wwpsq10cfppzl104g3x2g9bha1209p2n8mj9azv71b9mszqx";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/f441e1b3ee30065f8a68c9b0b45d9db0cac8a289/recipes/ox-spectacle";
- sha256 = "1nf4765dihlcjbifhb9dinqin27ivqj2s8wzh1hj4vc3n8mdx5pr";
- name = "recipe";
- };
- packageRequires = [ org ];
- meta = {
- homepage = "https://melpa.org/#/ox-spectacle";
- license = lib.licenses.free;
- };
- }) {};
- ox-textile = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , org }:
- melpaBuild {
- pname = "ox-textile";
- ename = "ox-textile";
- version = "20180502.247";
- src = fetchFromGitHub {
- owner = "yashi";
- repo = "org-textile";
- rev = "b179abaa6616604c6efe32cb509e62ad46e7374e";
- sha256 = "1hwrnnrhrdp5cjn81wipzi5j8zr82kpwlvr6hna2cj2zr3r7a6m8";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/02a68a7a99ecce8f1afa03e72ff1f636edaf5868/recipes/ox-textile";
- sha256 = "01kri7vh16xhy8x5qd6s5z08xr0q964rk6xrligdb3i6x78wfvi4";
- name = "recipe";
- };
- packageRequires = [ org ];
- meta = {
- homepage = "https://melpa.org/#/ox-textile";
- license = lib.licenses.free;
- };
- }) {};
- ox-tiddly = callPackage ({ cl-lib ? null
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , org }:
- melpaBuild {
- pname = "ox-tiddly";
- ename = "ox-tiddly";
- version = "20180626.1352";
- src = fetchFromGitHub {
- owner = "dfeich";
- repo = "org8-wikiexporters";
- rev = "21317d7e963f79e7b883962ca097eab049115799";
- sha256 = "1s5s2h3kpsx5cn1lqzsn9h2w7zlcgh51d679lyy45f9szm26hn3y";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/ox-tiddly";
- sha256 = "1rpbnz152af588r8kafqpg9aq3ngwjfkrsjqk6w90l5rh280yi39";
- name = "recipe";
- };
- packageRequires = [ cl-lib org ];
- meta = {
- homepage = "https://melpa.org/#/ox-tiddly";
- license = lib.licenses.free;
- };
- }) {};
- ox-trac = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , org }:
- melpaBuild {
- pname = "ox-trac";
- ename = "ox-trac";
- version = "20171026.1123";
- src = fetchFromGitHub {
- owner = "JalapenoGremlin";
- repo = "ox-trac";
- rev = "5ac6c81bbc18db6c17e267d6399778c3fb5bf1ee";
- sha256 = "1bg8bis4ykyq3iy6x93wksyigwg7jyzphlhfvvvqk093sp15fgd9";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/4b73753ef9229d0fdfbe237acc63126f1786a494/recipes/ox-trac";
- sha256 = "0f8b3i83vzxzfa91p4ahlqz6njql18xy5nk265sjxpy9zr898rsa";
- name = "recipe";
- };
- packageRequires = [ org ];
- meta = {
- homepage = "https://melpa.org/#/ox-trac";
- license = lib.licenses.free;
- };
- }) {};
- ox-tufte = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , org }:
- melpaBuild {
- pname = "ox-tufte";
- ename = "ox-tufte";
- version = "20160926.907";
- src = fetchFromGitHub {
- owner = "dakrone";
- repo = "ox-tufte";
- rev = "ca1b16eb91b25bb4f05e58e9b6692e8486c8c619";
- sha256 = "0vyb1ilkywdhjx0j8hq1h993jh6ylwshmqiaa04fq4kbk9yqvspf";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/0e1592b788ef7218cfb4b3da8599b6cd23eef357/recipes/ox-tufte";
- sha256 = "15b7aml9nl1kh8gbc086nb155f5mzlh8dmq41zi9frn6gskzjnfk";
- name = "recipe";
- };
- packageRequires = [ emacs org ];
- meta = {
- homepage = "https://melpa.org/#/ox-tufte";
- license = lib.licenses.free;
- };
- }) {};
ox-twbs = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -76980,33 +40030,6 @@
license = lib.licenses.free;
};
}) {};
- ox-twiki = callPackage ({ cl-lib ? null
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , org }:
- melpaBuild {
- pname = "ox-twiki";
- ename = "ox-twiki";
- version = "20170803.1339";
- src = fetchFromGitHub {
- owner = "dfeich";
- repo = "org8-wikiexporters";
- rev = "970bb8ed0e4c4426c37a929b1fe08f944c1cf74f";
- sha256 = "14k9jsz7vkjqxn2xpj71qg54w0laqr99178bzsmbapkfp5yxrib5";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/084da2cc725cc23b02657e7adb14ec31532ad25a/recipes/ox-twiki";
- sha256 = "1p1k0yg5fxcjgwpq2ix9ckh2kn69m7d5rnz76h14hw9p72cb54r0";
- name = "recipe";
- };
- packageRequires = [ cl-lib org ];
- meta = {
- homepage = "https://melpa.org/#/ox-twiki";
- license = lib.licenses.free;
- };
- }) {};
ox-wk = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -77034,31 +40057,6 @@
license = lib.licenses.free;
};
}) {};
- p4 = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "p4";
- ename = "p4";
- version = "20150721.1237";
- src = fetchFromGitHub {
- owner = "gareth-rees";
- repo = "p4.el";
- rev = "eff047caa75dbe4965defca9d1212454cdb755d5";
- sha256 = "12jsnfppif4l548wymvakx0f2zlm63xs6kfrb49hicmk668cq4ra";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/a7e2fa7af647e0dbf5ade5c32d1984b133156b6f/recipes/p4";
- sha256 = "0215li17gn35wmvd84gnp4hkwa2jd81wz4frb1cba2b5j33rlprc";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/p4";
- license = lib.licenses.free;
- };
- }) {};
pabbrev = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -77163,31 +40161,6 @@
license = lib.licenses.free;
};
}) {};
- package-filter = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "package-filter";
- ename = "package-filter";
- version = "20161121.2319";
- src = fetchFromGitHub {
- owner = "milkypostman";
- repo = "package-filter";
- rev = "c8e2531227c02c4c5e9d593f2cdb6a4ab4a6849b";
- sha256 = "001h92jchz6x6pm8bj90law0yzc5xd84f703z7fcwan4k0g1iwl7";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/89312eaf69f3d7ac46647255c847fcb45415e78d/recipes/package-filter";
- sha256 = "0am73zch2fy1hfjwzk8kg0j3lgbcz3hzxjrdf0j0a9w0myp0mmjm";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/package-filter";
- license = lib.licenses.free;
- };
- }) {};
package-lint = callPackage ({ cl-lib ? null
, emacs
, fetchFromGitHub
@@ -77346,88 +40319,6 @@
license = lib.licenses.free;
};
}) {};
- pacmacs = callPackage ({ cl-lib ? null
- , dash
- , dash-functional
- , emacs
- , f
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "pacmacs";
- ename = "pacmacs";
- version = "20160131.32";
- src = fetchFromGitHub {
- owner = "codingteam";
- repo = "pacmacs.el";
- rev = "d813e9c62c2540fe619234824fc60e128c786442";
- sha256 = "0zx72qbqy2n1r6mjylw67zb6nnchp2b49vsdyl0k5bdaq2xyqv6i";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/52ce427e046267655dd9f836e57176d59f23e601/recipes/pacmacs";
- sha256 = "0w0r6z365jrglpbifb94w6c22wqi9x93qgkss9pn820hrndqbqxy";
- name = "recipe";
- };
- packageRequires = [ cl-lib dash dash-functional emacs f ];
- meta = {
- homepage = "https://melpa.org/#/pacmacs";
- license = lib.licenses.free;
- };
- }) {};
- pact-mode = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "pact-mode";
- ename = "pact-mode";
- version = "20180905.947";
- src = fetchFromGitHub {
- owner = "kadena-io";
- repo = "pact-mode";
- rev = "5f401b282e2f8f897fd67e882312875f967be4d6";
- sha256 = "1nqr7jw2anyicr9pxypsmqqwzjn9qnn770gsmdz6r2xam55j81vg";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/b8e11b488c937ac9290f2e6acde92a87024a9012/recipes/pact-mode";
- sha256 = "1awmczhz4cl2vxrn0h1wqkrhy1n9p4j3ayksvgifr4cfhqlsxk6v";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/pact-mode";
- license = lib.licenses.free;
- };
- }) {};
- paganini-theme = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "paganini-theme";
- ename = "paganini-theme";
- version = "20180815.1221";
- src = fetchFromGitHub {
- owner = "onurtemizkan";
- repo = "paganini";
- rev = "255c5a2a8abee9c5935465ec42b9c3604c178c3c";
- sha256 = "0qhmj8dyy722ds8cmwghhxknwwis1w64wix2hdmzs21c5pa5hgkw";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/d6fbb609b411df4fe6f66a7afe27eda7d297f140/recipes/paganini-theme";
- sha256 = "1kypkf52hjlfj75pcmjf2a60m6iwj0y1dspjwqynzz3l48i6ippm";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/paganini-theme";
- license = lib.licenses.free;
- };
- }) {};
page-break-lines = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -77453,82 +40344,6 @@
license = lib.licenses.free;
};
}) {};
- pager = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "pager";
- ename = "pager";
- version = "20151201.1720";
- src = fetchFromGitHub {
- owner = "emacsorphanage";
- repo = "pager";
- rev = "5c791ed23f1136e04040d6f4bc9b4ca5b6dc919f";
- sha256 = "198zlh7zrql1185b9qjim44a09kbbgs9zyahak9nhv1gxqn7mrdf";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5f2a50f62475639af011c99c6cc38928b74b3b0a/recipes/pager";
- sha256 = "0s5zwimkbsivbwlyd7g8dpnjyzqcfc5plg53ij4sljiipgjh5brl";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/pager";
- license = lib.licenses.free;
- };
- }) {};
- pager-default-keybindings = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , pager }:
- melpaBuild {
- pname = "pager-default-keybindings";
- ename = "pager-default-keybindings";
- version = "20130719.1357";
- src = fetchFromGitHub {
- owner = "nflath";
- repo = "pager-default-keybindings";
- rev = "dbbd49c2ac5906d1dabf9e9c832bfebc1ab405b3";
- sha256 = "11msqs8v9wn8sj45dw1fl0ldi3sw33v0xclynbxgmawyabfq3bqm";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/87faee8c9820dd47feccdfbce7fd57dbe2800405/recipes/pager-default-keybindings";
- sha256 = "0vqb3s1fxkl1fxxspq89344s55sfcplz26z0pbh347l1681h3pci";
- name = "recipe";
- };
- packageRequires = [ pager ];
- meta = {
- homepage = "https://melpa.org/#/pager-default-keybindings";
- license = lib.licenses.free;
- };
- }) {};
- palimpsest = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "palimpsest";
- ename = "palimpsest";
- version = "20170119.1232";
- src = fetchFromGitHub {
- owner = "danielsz";
- repo = "Palimpsest";
- rev = "168839453e25f8ff7f1b28170909e5428c8fe5f8";
- sha256 = "0j6cn0bc4vxvviawmkgkzdrmf3j5rbl8f7dkzvv6k1hislzhzpsb";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/14f6d011a0314637a2f4c1b00efa4912e67b7fa4/recipes/palimpsest";
- sha256 = "18kklfdlcg982pdrslh0xqa42h28f91bdm7q2zn890d6dcivp6bk";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/palimpsest";
- license = lib.licenses.free;
- };
- }) {};
pallet = callPackage ({ cask
, dash
, f
@@ -77558,61 +40373,6 @@
license = lib.licenses.free;
};
}) {};
- pamparam = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , hydra
- , lib
- , lispy
- , melpaBuild
- , worf }:
- melpaBuild {
- pname = "pamparam";
- ename = "pamparam";
- version = "20190122.612";
- src = fetchFromGitHub {
- owner = "abo-abo";
- repo = "pamparam";
- rev = "3593cea568da1b479e408180a75890e53d047429";
- sha256 = "0ayvkzxwncx9gqw9j0c06fy9x2i5fs9nbc77fprxcifiz7kl3x9s";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/03de45e491e970cc5733950a825b98545b5ac24b/recipes/pamparam";
- sha256 = "01n35a3fnwbb7w2qpk8b5f9wwmr6d5jcjzcv6gnc1768a43p9yzf";
- name = "recipe";
- };
- packageRequires = [ emacs hydra lispy worf ];
- meta = {
- homepage = "https://melpa.org/#/pamparam";
- license = lib.licenses.free;
- };
- }) {};
- panda = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "panda";
- ename = "panda";
- version = "20190401.2306";
- src = fetchFromGitHub {
- owner = "sebasmonia";
- repo = "panda";
- rev = "a7f2045cc568a5ec8b97734abdbb8618990748ca";
- sha256 = "0a6ravwfjaf70mkkpd174y6w1hp2q18wjl5mmpa9gzyfa0c27v1q";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/69800de45dda180450ed9d47a24181b659d9d1ae/recipes/panda";
- sha256 = "04app7ni9q04v7pi1ppi5qgx5klcpawflmbsj58y33gz29di1zjk";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/panda";
- license = lib.licenses.free;
- };
- }) {};
panda-theme = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -77717,61 +40477,6 @@
license = lib.licenses.free;
};
}) {};
- paper-theme = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "paper-theme";
- ename = "paper-theme";
- version = "20190124.1028";
- src = fetchFromGitHub {
- owner = "cadadr";
- repo = "elisp";
- rev = "b19b37be332bada6b18d4d895edf6ce78ab420c4";
- sha256 = "0i97l8fdrjjb6dzfcqgss5yj4ibkiaxnj32sm6nyr2s7bijkvi4x";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/a7ea18a56370348715dec91f75adc162c800dd10/recipes/paper-theme";
- sha256 = "1ph6c6g907cnxzl74byc754119qia8rs8y7wvaj8i6q3fz2658zr";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/paper-theme";
- license = lib.licenses.free;
- };
- }) {};
- paperless = callPackage ({ cl-lib ? null
- , emacs
- , f
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , s }:
- melpaBuild {
- pname = "paperless";
- ename = "paperless";
- version = "20180224.445";
- src = fetchFromGitHub {
- owner = "atgreen";
- repo = "paperless";
- rev = "04d98b13f591206429a9192c1804b7a2fd6287cb";
- sha256 = "1vk20vdcfjng3p3srf140k85lm8pqp41mfnwnahxm32bi0dx6hl3";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/500be17952ffb6b8d1e524b5b3d316878202fabc/recipes/paperless";
- sha256 = "182arnx2fz0dww6bvg6m70a1picqd3czmzwv92x0rb4ghwrnq2dq";
- name = "recipe";
- };
- packageRequires = [ cl-lib emacs f s ];
- meta = {
- homepage = "https://melpa.org/#/paperless";
- license = lib.licenses.free;
- };
- }) {};
paradox = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -77878,58 +40583,6 @@
license = lib.licenses.free;
};
}) {};
- paredit-menu = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , paredit }:
- melpaBuild {
- pname = "paredit-menu";
- ename = "paredit-menu";
- version = "20160128.933";
- src = fetchFromGitHub {
- owner = "phillord";
- repo = "paredit-menu";
- rev = "cc0ae85bd819f9ebfa4f2a419ab3b2d70e39c9c8";
- sha256 = "15xkanrwxh3qqay3vkfqvhzs88g7nnfv9bqk509qflyhqnvc9sxr";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/8a6379588b373fca2769b8761de4ba13545c082c/recipes/paredit-menu";
- sha256 = "05jp4cc548x5f07k096dgizhivdpaajxq38hin831sm0p9cibm4p";
- name = "recipe";
- };
- packageRequires = [ paredit ];
- meta = {
- homepage = "https://melpa.org/#/paredit-menu";
- license = lib.licenses.free;
- };
- }) {};
- paren-completer = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "paren-completer";
- ename = "paren-completer";
- version = "20160501.352";
- src = fetchFromGitHub {
- owner = "MatthewBregg";
- repo = "paren-completer";
- rev = "74183a8e13fa1266271bdcbcb4bfb29a4f915f0a";
- sha256 = "1il0gbyjnlxhk04z3lgxmvlmlhgc94rmxdf8nl5sk3gblqmr8v3b";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/paren-completer";
- sha256 = "1k71nmsf155b4pvzcsymsc1bn42h9apypapkvc1kxyr6zm29zcr4";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/paren-completer";
- license = lib.licenses.free;
- };
- }) {};
paren-face = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -78033,31 +40686,6 @@
license = lib.licenses.free;
};
}) {};
- parse-csv = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "parse-csv";
- ename = "parse-csv";
- version = "20160512.1023";
- src = fetchFromGitHub {
- owner = "mrc";
- repo = "el-csv";
- rev = "96bef1ffbc89ea12d13311c9fa239c5c3e864890";
- sha256 = "06xg6f74697zmn042wg259qlik2l21k4al08a06xz4gv9a83nsx6";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/010a182f7424928036231774c2fe17b857e3ca40/recipes/parse-csv";
- sha256 = "0khpfxbarw0plx8kka357d8wl1vvdih5797xlld9adc0g3cng0zz";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/parse-csv";
- license = lib.licenses.free;
- };
- }) {};
parsebib = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -78138,60 +40766,6 @@
license = lib.licenses.free;
};
}) {};
- parseedn = callPackage ({ a
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , parseclj }:
- melpaBuild {
- pname = "parseedn";
- ename = "parseedn";
- version = "20190331.358";
- src = fetchFromGitHub {
- owner = "clojure-emacs";
- repo = "parseedn";
- rev = "8f0582da3f1dbce24e93aee7ca26eefea6053f43";
- sha256 = "0lfs8pbqb30iw3zbz0f1lz4g4ryqf737vz1pf01wdf6kwy6qdrf0";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/462a022a83186b8c70e888cc8df42601777504dd/recipes/parseedn";
- sha256 = "0lb0qkvsga90ysa3a1pn8ydf108lsq2azxzzm7xvxbgk0d1xzhjp";
- name = "recipe";
- };
- packageRequires = [ a emacs parseclj ];
- meta = {
- homepage = "https://melpa.org/#/parseedn";
- license = lib.licenses.free;
- };
- }) {};
- pasp-mode = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "pasp-mode";
- ename = "pasp-mode";
- version = "20180404.1000";
- src = fetchFromGitHub {
- owner = "santifa";
- repo = "pasp-mode";
- rev = "59385eb0e8ebcfc8c11dd811fb145d4b0fa3cc92";
- sha256 = "1ar4vws3izzmir7m870mccci620ns3c5j26dcmwaxavhgw45wcmf";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/f3c1bbfc6b3a60f8bb4f0ee77ec4108e9d3f458b/recipes/pasp-mode";
- sha256 = "0aix8siyd5yhgxq94k1sl64a9q2xlfrz6cj9y5mcqhb6qjgmrnva";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/pasp-mode";
- license = lib.licenses.free;
- };
- }) {};
pass = callPackage ({ emacs
, f
, fetchFromGitHub
@@ -78274,56 +40848,6 @@
license = lib.licenses.free;
};
}) {};
- password-generator = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "password-generator";
- ename = "password-generator";
- version = "20150222.1240";
- src = fetchFromGitHub {
- owner = "zargener";
- repo = "emacs-password-genarator";
- rev = "c8193d5e963bda0a2f8e51fd4a94dcf37c76f282";
- sha256 = "1pw401ar114wpayibphv3n6m0gz68zjmiwz60r4lbar45bmxvihx";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/password-generator";
- sha256 = "1ziiz4x4slfadlm7fjpmwvq4a9fi3ird74b6v5na499ylqnzrl59";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/password-generator";
- license = lib.licenses.free;
- };
- }) {};
- password-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "password-mode";
- ename = "password-mode";
- version = "20170411.2329";
- src = fetchFromGitHub {
- owner = "juergenhoetzel";
- repo = "password-mode";
- rev = "ed764a4ec1011526457c71b7c37fa9a659a866ab";
- sha256 = "102zydbkr2zrr7w0j11n7pivnsdmq3c6lykf3qc84jifp7j58pgr";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/28dafa392a378e7de2c6992fe17b33f6379dc6b8/recipes/password-mode";
- sha256 = "1rxh6jg99qxagc6i2xgvswvw93h4ma7j8lhjr4ln44vbgyhzph11";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/password-mode";
- license = lib.licenses.free;
- };
- }) {};
password-store = callPackage ({ emacs
, f
, fetchFromGitHub
@@ -78381,85 +40905,6 @@
license = lib.licenses.free;
};
}) {};
- password-vault = callPackage ({ cl-lib ? null
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "password-vault";
- ename = "password-vault";
- version = "20160126.1020";
- src = fetchFromGitHub {
- owner = "PuercoPop";
- repo = "password-vault";
- rev = "dc56e6c2f5da66f1ab63736cecf08fb2c6c2b30f";
- sha256 = "0921xwg3d3345hiqz4c1iyqwvfyg8rv0wggcnig7xh9qivspag4c";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/71ad3fa96afa18b5002faf9272732c7d09826493/recipes/password-vault";
- sha256 = "17i556xwq6yaxv9v18l1abcpbaz6hygsa4vf4b68fc98vcy7396a";
- name = "recipe";
- };
- packageRequires = [ cl-lib emacs ];
- meta = {
- homepage = "https://melpa.org/#/password-vault";
- license = lib.licenses.free;
- };
- }) {};
- paste-of-code = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , request }:
- melpaBuild {
- pname = "paste-of-code";
- ename = "paste-of-code";
- version = "20170709.1655";
- src = fetchFromGitHub {
- owner = "spebern";
- repo = "paste-of-code.el";
- rev = "92d258e8ec98598d847ecab82903f9224c7c2050";
- sha256 = "1bf2d0i726psjwnqdp0w4h0qk7fnwcbwf1a66q7p8vczavqygfan";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/b29a5101bb6fc01b8b6e1b798ce6f73bc6d34944/recipes/paste-of-code";
- sha256 = "0wjcchpp1689arfz6s7gfq4bxn0svz6qj5azvjwwsyzais1bicdi";
- name = "recipe";
- };
- packageRequires = [ emacs request ];
- meta = {
- homepage = "https://melpa.org/#/paste-of-code";
- license = lib.licenses.free;
- };
- }) {};
- pastebin = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "pastebin";
- ename = "pastebin";
- version = "20101125.1202";
- src = fetchFromGitHub {
- owner = "nicferrier";
- repo = "elpastebin";
- rev = "8e9a829298ce0f747ab80758aa26caeb2af6cb30";
- sha256 = "1hjzpza8zmzb83sacmqcnh9a52m4x5d8xbwvcqvld1ajglv4y124";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/0fda2b54a0ff0b6fc3bd6d20cfcbbf63cae5380f/recipes/pastebin";
- sha256 = "0ff01vzslgdmsj1jp1m2lvnan6immd4l7vz466g1glb5nkb7qfcr";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/pastebin";
- license = lib.licenses.free;
- };
- }) {};
pastehub = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -78538,31 +40983,6 @@
license = lib.licenses.free;
};
}) {};
- path-headerline-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "path-headerline-mode";
- ename = "path-headerline-mode";
- version = "20140423.632";
- src = fetchFromGitHub {
- owner = "7696122";
- repo = "path-headerline-mode";
- rev = "b5b2725c6a8b1cb592fc242b7dbbd54b4dff2e69";
- sha256 = "1ffnkw8djs8kvfjd1crnaqram1vl4w3g1zhsqp74ds0mccsd6830";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/path-headerline-mode";
- sha256 = "0yw2i3cp20v8nd2wj1rs1qad8abghzzasf2sjyla90q06wlna98w";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/path-headerline-mode";
- license = lib.licenses.free;
- };
- }) {};
path-helper = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -78641,56 +41061,6 @@
license = lib.licenses.free;
};
}) {};
- pbcopy = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "pbcopy";
- ename = "pbcopy";
- version = "20150224.2059";
- src = fetchFromGitHub {
- owner = "emacsfodder";
- repo = "pbcopy.el";
- rev = "338f7245746b5de1bb96c5cc2b32bfd9b5d83272";
- sha256 = "138w0dlp3msjmr2x09kfcnxwhdldbz9xjfy7l6lig1x9ima0z5w6";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/2bbde7950ad5b3b801ca6a2a27c0f5294c8b7746/recipes/pbcopy";
- sha256 = "1989pkhaha6s2rmgyswnzps92x9hhzymjz4ng4a5jda1b9snp60q";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/pbcopy";
- license = lib.licenses.free;
- };
- }) {};
- pc-bufsw = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "pc-bufsw";
- ename = "pc-bufsw";
- version = "20181221.56";
- src = fetchFromGitHub {
- owner = "ibukanov";
- repo = "pc-bufsw";
- rev = "762d47b2f278c072643cf2a1ddc785516483d74a";
- sha256 = "1by9p0j6c21y04cc4ls7f87gks631lv1mxk0aqhh41rml5kj4l22";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5f2bbd34d673935846c286e73a1e2efaa00ab01a/recipes/pc-bufsw";
- sha256 = "01d7735ininlsjkql7dy57irgwgk4k9br8bl18wq51vgkg90i5k5";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/pc-bufsw";
- license = lib.licenses.free;
- };
- }) {};
pcache = callPackage ({ eieio ? null
, fetchFromGitHub
, fetchurl
@@ -78717,135 +41087,6 @@
license = lib.licenses.free;
};
}) {};
- pcap-mode = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "pcap-mode";
- ename = "pcap-mode";
- version = "20161025.748";
- src = fetchFromGitHub {
- owner = "orgcandman";
- repo = "pcap-mode";
- rev = "52780669af0ade136f84d73f21b4dbb7ab655416";
- sha256 = "1v218cjs0qy3ac0rbzm22y1x388nxnf0pslh9jrvlymkn227pjs8";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/44f4cb526556a4b58b7e67314002e73413a59a76/recipes/pcap-mode";
- sha256 = "1p6lnr7yr8i3yp63xc8r1hnx8a4v0mz1s7q89zxx7aprk7i9kpv6";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/pcap-mode";
- license = lib.licenses.free;
- };
- }) {};
- pcmpl-args = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "pcmpl-args";
- ename = "pcmpl-args";
- version = "20190223.813";
- src = fetchFromGitHub {
- owner = "JonWaltman";
- repo = "pcmpl-args.el";
- rev = "7bc360c2e5f84e2fc4024a9783c164b4df174acb";
- sha256 = "1gigcf9xh8a4478wr35smglz1csxamnjs82kqb45kbl9cndsz22s";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/pcmpl-args";
- sha256 = "10mgci1rk6sr7wk46mnp5l37v3qxdc6yy5zfvy9mzwzh3va1pw31";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/pcmpl-args";
- license = lib.licenses.free;
- };
- }) {};
- pcmpl-git = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "pcmpl-git";
- ename = "pcmpl-git";
- version = "20170120.1659";
- src = fetchFromGitHub {
- owner = "leoliu";
- repo = "pcmpl-git-el";
- rev = "9472ac70baeda025ef7becd1cf141d72aec93f32";
- sha256 = "17y3rdp7fgyg4i9hwyzgpv1d19i5c6rqdf1gm5bdm2csk12vfg9n";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/6a51c16bed8d0a2fecad0ae9580d58cd44cc8930/recipes/pcmpl-git";
- sha256 = "12y9pg1g4i1ghnjvgfdpa6p84h4bcqrr23y9bazwl9n6aj20cmxk";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/pcmpl-git";
- license = lib.licenses.free;
- };
- }) {};
- pcmpl-homebrew = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "pcmpl-homebrew";
- ename = "pcmpl-homebrew";
- version = "20190212.1918";
- src = fetchFromGitHub {
- owner = "kaihaosw";
- repo = "pcmpl-homebrew";
- rev = "bebc91c1a0392173f2d1ca2127da137565d79b4d";
- sha256 = "11f5xmdlym32j00rkqgwzcnawqwx5i2j7f92n3133r1f7w4gkvix";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/6440f81aed1fcddcaf7afeedb74520e605211986/recipes/pcmpl-homebrew";
- sha256 = "1mfkg9i2hqq8mkhnc8yzc9br9wlhjv17vdvjzwhkybcbmhqf2qkm";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/pcmpl-homebrew";
- license = lib.licenses.free;
- };
- }) {};
- pcmpl-pip = callPackage ({ f
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , s
- , seq }:
- melpaBuild {
- pname = "pcmpl-pip";
- ename = "pcmpl-pip";
- version = "20181229.620";
- src = fetchFromGitHub {
- owner = "kaihaosw";
- repo = "pcmpl-pip";
- rev = "ebb672d4494f876f611639e65df4e28e566c06b5";
- sha256 = "0m0x41ymjqax7y7cy6ssgnrl708vr7xazac3nyznwfdsls1mzmbg";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/6440f81aed1fcddcaf7afeedb74520e605211986/recipes/pcmpl-pip";
- sha256 = "17nmgq4wgv4yl2rsdf32585hfa58j0825mzzajrlwgmjiqx9i778";
- name = "recipe";
- };
- packageRequires = [ f s seq ];
- meta = {
- homepage = "https://melpa.org/#/pcmpl-pip";
- license = lib.licenses.free;
- };
- }) {};
pcomplete-extension = callPackage ({ cl-lib ? null
, emacs
, fetchFromGitHub
@@ -78925,31 +41166,6 @@
license = lib.licenses.free;
};
}) {};
- pdb-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "pdb-mode";
- ename = "pdb-mode";
- version = "20150128.951";
- src = fetchFromGitHub {
- owner = "sixpi";
- repo = "pdb-mode";
- rev = "855fb18ebb73b5df30c8d7677c2bcd0f361b138a";
- sha256 = "1xkkyz7y08jr71rzdacb9v7gk95qsxlsshkdsxq8jp70irq51099";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/6aee132aa24322fe1ac88ae17ee6e77ae1ec8d11/recipes/pdb-mode";
- sha256 = "1ihkxd15kx5m5xb9yxwz8wqbmyk9iaskry9szzdz1j4gjlczb6hy";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/pdb-mode";
- license = lib.licenses.free;
- };
- }) {};
pdf-tools = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -78978,109 +41194,6 @@
license = lib.licenses.free;
};
}) {};
- pdfgrep = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "pdfgrep";
- ename = "pdfgrep";
- version = "20181007.1028";
- src = fetchFromGitHub {
- owner = "jeremy-compostella";
- repo = "pdfgrep";
- rev = "e251cd5c88a4ba5cb69008ba412d329f4d59e1d2";
- sha256 = "0fy6h8ys490kw63l9jigsa0cf1psybyd9gcljpddnjd3nhkdwikw";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/55b0c24f883fe589d1159ce3845cf250a0f47feb/recipes/pdfgrep";
- sha256 = "0q511l57xv1s6z496jrlz6j2nf0fync0dlbm4r800p49lbh4abl3";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/pdfgrep";
- license = lib.licenses.free;
- };
- }) {};
- peacock-theme = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "peacock-theme";
- ename = "peacock-theme";
- version = "20170808.620";
- src = fetchFromGitHub {
- owner = "emacsfodder";
- repo = "emacs-peacock-theme";
- rev = "9e46fbfb562b6e26c6e3d6d618b044b3694da4c8";
- sha256 = "0w4dzdsv2cdldss5jwmdbjb5a62k5j1szwdim4gv8ldifhj7fy22";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/641d1959bd31598fcdacd39a3d1bb077dcccfa5c/recipes/peacock-theme";
- sha256 = "0jpdq090r37d07bm52yx3x9y3gsip6fyxxq1ax1k5k0r0js45kq9";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/peacock-theme";
- license = lib.licenses.free;
- };
- }) {};
- peek-mode = callPackage ({ elnode
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "peek-mode";
- ename = "peek-mode";
- version = "20130620.1246";
- src = fetchFromGitHub {
- owner = "erikriverson";
- repo = "peek-mode";
- rev = "55a7dd011375330c7d57322257a5167516702c71";
- sha256 = "11nv6pll0zj9dkgzlzgav39a6x3sfi7kvfhwm96fa3iy4v8bixrb";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/08384964d8c1f5f60c84c044d26a79105973ab21/recipes/peek-mode";
- sha256 = "07wcnh3jmp2gi9xhd3d8i2n0pr2g9kav497nnz94i85awhzf8fi4";
- name = "recipe";
- };
- packageRequires = [ elnode ];
- meta = {
- homepage = "https://melpa.org/#/peek-mode";
- license = lib.licenses.free;
- };
- }) {};
- peep-dired = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "peep-dired";
- ename = "peep-dired";
- version = "20160321.1537";
- src = fetchFromGitHub {
- owner = "asok";
- repo = "peep-dired";
- rev = "12d7e52cd5ae29fd828db0bf1fbf648020077145";
- sha256 = "159yc9fcpywqhy92kn7i7aid30j3bzybfdz9kxb643026v30nhxq";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/e8e06a916ac18053e34821673d1cf7936b15c2ac/recipes/peep-dired";
- sha256 = "16k5y3h2ip96k071vhx83avg4r4nplnd973b1271vvxbx2bly735";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/peep-dired";
- license = lib.licenses.free;
- };
- }) {};
peg = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -79131,108 +41244,6 @@
license = lib.licenses.free;
};
}) {};
- per-buffer-theme = callPackage ({ cl-lib ? null
- , fetchhg
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "per-buffer-theme";
- ename = "per-buffer-theme";
- version = "20160318.1501";
- src = fetchhg {
- url = "https://bitbucket.com/inigoserna/per-buffer-theme.el";
- rev = "9e6200da91b3";
- sha256 = "0w02l91x624cgzdg33a9spgcwy12m607dsfnr1xbc1fi08np4sd1";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5b7972602399f9df9139cff177e38653bb0f43ed/recipes/per-buffer-theme";
- sha256 = "1czcaybpfmx4mwff7hs07iayyvgvlhifkickccap6kpd0cp4n6hn";
- name = "recipe";
- };
- packageRequires = [ cl-lib ];
- meta = {
- homepage = "https://melpa.org/#/per-buffer-theme";
- license = lib.licenses.free;
- };
- }) {};
- perl6-mode = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , pkg-info }:
- melpaBuild {
- pname = "perl6-mode";
- ename = "perl6-mode";
- version = "20180619.459";
- src = fetchFromGitHub {
- owner = "perl6";
- repo = "perl6-mode";
- rev = "4ad9987e2576ab2f17cc7090ce35d347167449bb";
- sha256 = "0578mgy1pdiz19kam7n6cp98kbq8vmn2q6xc8qsjvzma3rfdsmgv";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/4e912dccdee12f745272d26ea10d5f106a27cabc/recipes/perl6-mode";
- sha256 = "0r5q2nggb9kbjcdfv81d7sm41jqz040j9z52fnck4b9mlz2dy6d0";
- name = "recipe";
- };
- packageRequires = [ emacs pkg-info ];
- meta = {
- homepage = "https://melpa.org/#/perl6-mode";
- license = lib.licenses.free;
- };
- }) {};
- perlbrew = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "perlbrew";
- ename = "perlbrew";
- version = "20161108.2309";
- src = fetchFromGitHub {
- owner = "kentaro";
- repo = "perlbrew.el";
- rev = "3a3406c3307c92aa30f9400d430925c434a3b6f0";
- sha256 = "0kxz8ljc7w69ywp0bb15010sgrr13i1p05hcvhfr9c35l0n62r6p";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/24bd9c2cd848f5003a244a7127e8fc5ef46bdca4/recipes/perlbrew";
- sha256 = "1qadwkcic2qckqy8hgrnj08ajhxayknhpyxkc6ir15vfqjk5crr8";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/perlbrew";
- license = lib.licenses.free;
- };
- }) {};
- persistent-overlays = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "persistent-overlays";
- ename = "persistent-overlays";
- version = "20161127.2300";
- src = fetchFromGitHub {
- owner = "mneilly";
- repo = "Emacs-Persistent-Overlays";
- rev = "f563c8b966edc78c9d806661c4eb80e4781c4eab";
- sha256 = "0csllpkpjf4csw3zfaw8k05jg078najfmjz6pz1jcl6b4sxjdfqa";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/d3673c87c5ca883b4f713efeae912c3ad991c667/recipes/persistent-overlays";
- sha256 = "136acbxqykvsw8a5il1zgpxr7llxmc3347847vf0jnmbzb1b472a";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/persistent-overlays";
- license = lib.licenses.free;
- };
- }) {};
persistent-scratch = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -79339,34 +41350,6 @@
license = lib.licenses.free;
};
}) {};
- persp-mode-projectile-bridge = callPackage ({ cl-lib ? null
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , persp-mode
- , projectile }:
- melpaBuild {
- pname = "persp-mode-projectile-bridge";
- ename = "persp-mode-projectile-bridge";
- version = "20170315.420";
- src = fetchFromGitHub {
- owner = "Bad-ptr";
- repo = "persp-mode-projectile-bridge.el";
- rev = "f6453cd7b8b4352c06e771706f2c5b7e2cdff1ce";
- sha256 = "1gyfn2fhx3bqzr9m1r4b8nyak8pmpcgj7yz2bagnjs21vfngr18c";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/2c049b0067b70577511114dc8abac0a00a9e0588/recipes/persp-mode-projectile-bridge";
- sha256 = "169mpikixa33ljmh2n9sm186yibrik3f5p8m1hcisnzdsc3wgxmp";
- name = "recipe";
- };
- packageRequires = [ cl-lib persp-mode projectile ];
- meta = {
- homepage = "https://melpa.org/#/persp-mode-projectile-bridge";
- license = lib.licenses.free;
- };
- }) {};
persp-projectile = callPackage ({ cl-lib ? null
, fetchFromGitHub
, fetchurl
@@ -79472,56 +41455,6 @@
license = lib.licenses.free;
};
}) {};
- pg = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "pg";
- ename = "pg";
- version = "20130731.1442";
- src = fetchFromGitHub {
- owner = "cbbrowne";
- repo = "pg.el";
- rev = "4f6516ec3946d95dcef49abb6703cc89ecb5183d";
- sha256 = "1zh7v4nnpzvbi8yj1ynlqlawk5bmlxi6s80b5f2y7hkdqb5q26k0";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5c4d1bb21948da2b283a3a9d89d9e3aed11afa13/recipes/pg";
- sha256 = "0n0187ndvwza1nis9a12h584qdqkwqfzhdw21kz5d1i6c43g7gji";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/pg";
- license = lib.licenses.free;
- };
- }) {};
- pgdevenv = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "pgdevenv";
- ename = "pgdevenv";
- version = "20150105.1436";
- src = fetchFromGitHub {
- owner = "dimitri";
- repo = "pgdevenv-el";
- rev = "7f1d5bc734750aca98cf67a9491cdbd5615fd132";
- sha256 = "0c9d4c24ic67y07y74bv5b7vc56b6l0lbh2fbzm870r1dl5zbzcj";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/73ae474fc4792b2c322a0d2b5fd5b7cfe8c2fd05/recipes/pgdevenv";
- sha256 = "0za35sdwwav81wpk4jjqh56icaswwxxyg3bqqp0qiz24llb5ln1w";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/pgdevenv";
- license = lib.licenses.free;
- };
- }) {};
ph = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -79548,36 +41481,6 @@
license = lib.licenses.free;
};
}) {};
- phabricator = callPackage ({ dash
- , emacs
- , f
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , projectile
- , s }:
- melpaBuild {
- pname = "phabricator";
- ename = "phabricator";
- version = "20160510.725";
- src = fetchFromGitHub {
- owner = "ajtulloch";
- repo = "phabricator.el";
- rev = "d09d6f059aea92d3b11c68664a5e80c901182ab8";
- sha256 = "0cmfb5ns335nq27iw94qxvrldpwjga0hw40da9kpdcfg0in4ya0c";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/829010a578f34f0f2dfb36a0de01547c2950bb65/recipes/phabricator";
- sha256 = "07988f2xyp76xjs25b3rdblhmijs2piriz4p0q92jw69bdvkl14c";
- name = "recipe";
- };
- packageRequires = [ dash emacs f projectile s ];
- meta = {
- homepage = "https://melpa.org/#/phabricator";
- license = lib.licenses.free;
- };
- }) {};
phan = callPackage ({ composer
, emacs
, f
@@ -79606,83 +41509,6 @@
license = lib.licenses.free;
};
}) {};
- phi-autopair = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , paredit }:
- melpaBuild {
- pname = "phi-autopair";
- ename = "phi-autopair";
- version = "20170216.1953";
- src = fetchFromGitHub {
- owner = "zk-phi";
- repo = "phi-autopair";
- rev = "3c7556779c3a53b045f5df33ae2a0c67469cbf60";
- sha256 = "16gh2r1mhmirbq20kklym4l60rfcfn8dsj0vv3hx3fj8q81h8qc9";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/f26b586c0126699f3de65bf38dfbf9c4c0149c15/recipes/phi-autopair";
- sha256 = "1ya1bvh28qgz1zg9kdh2lzbsf0w0lx4xr42mdrjwaz3bbfa9asg4";
- name = "recipe";
- };
- packageRequires = [ paredit ];
- meta = {
- homepage = "https://melpa.org/#/phi-autopair";
- license = lib.licenses.free;
- };
- }) {};
- phi-grep = callPackage ({ cl-lib ? null
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "phi-grep";
- ename = "phi-grep";
- version = "20170606.107";
- src = fetchFromGitHub {
- owner = "zk-phi";
- repo = "phi-grep";
- rev = "ab9bd8d25e751a9cbfa108b49839293230b6e8b5";
- sha256 = "0p1i07dgaic0jnwdsnvsnib2913r9w8j98d1p5rx8db2nabjmzc0";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/992655fa4bd209abdf1149572e95f853e595125e/recipes/phi-grep";
- sha256 = "1y5lq6lq9qdydbypb1pjnxryh94a295nnqqh2x27whiwdiysirjj";
- name = "recipe";
- };
- packageRequires = [ cl-lib ];
- meta = {
- homepage = "https://melpa.org/#/phi-grep";
- license = lib.licenses.free;
- };
- }) {};
- phi-rectangle = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "phi-rectangle";
- ename = "phi-rectangle";
- version = "20151207.2254";
- src = fetchFromGitHub {
- owner = "zk-phi";
- repo = "phi-rectangle";
- rev = "0c12716afc71d803d1f39417469521dc465762d9";
- sha256 = "0d2c579rg8wdfmn94nzaix9332jch4wlr939jszls330s38d0iv4";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/phi-rectangle";
- sha256 = "111fqqa7h5cajq92sbiqhavm25l5bcapxhfh38y7irq4mv08xifw";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/phi-rectangle";
- license = lib.licenses.free;
- };
- }) {};
phi-search = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -79708,32 +41534,6 @@
license = lib.licenses.free;
};
}) {};
- phi-search-dired = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , phi-search }:
- melpaBuild {
- pname = "phi-search-dired";
- ename = "phi-search-dired";
- version = "20150405.14";
- src = fetchFromGitHub {
- owner = "zk-phi";
- repo = "phi-search-dired";
- rev = "162a5e4507c72512affae22744bb606a906d4193";
- sha256 = "1b44947hncw4q42fxxrz6fm21habzp4pyp0569xdwysrx2rca2fn";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/57c6dd518648f23927c5e6424210c157ed3cfd95/recipes/phi-search-dired";
- sha256 = "1gf3vs3vrp5kbq4ixnj7adazmnqixi63qswgc2512p10gf7inf8p";
- name = "recipe";
- };
- packageRequires = [ phi-search ];
- meta = {
- homepage = "https://melpa.org/#/phi-search-dired";
- license = lib.licenses.free;
- };
- }) {};
phi-search-mc = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -79761,83 +41561,6 @@
license = lib.licenses.free;
};
}) {};
- phi-search-migemo = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , migemo
- , phi-search }:
- melpaBuild {
- pname = "phi-search-migemo";
- ename = "phi-search-migemo";
- version = "20170618.221";
- src = fetchFromGitHub {
- owner = "zk-phi";
- repo = "phi-search-migemo";
- rev = "723b584d386639d59298d872ad7a035d3f8008b0";
- sha256 = "01j3fpn44vgj8fq4smay1qd3wnh321v5pkgm9vkhpryj1v1g7am1";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/b78e07146a4e954e050349a1798ac46ecba10bab/recipes/phi-search-migemo";
- sha256 = "0qk73s09sasm438w29j5z2bmlb60p1mgbv2ch43rgq8c6kjzg6h6";
- name = "recipe";
- };
- packageRequires = [ migemo phi-search ];
- meta = {
- homepage = "https://melpa.org/#/phi-search-migemo";
- license = lib.licenses.free;
- };
- }) {};
- phoenix-dark-mono-theme = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "phoenix-dark-mono-theme";
- ename = "phoenix-dark-mono-theme";
- version = "20170729.706";
- src = fetchFromGitHub {
- owner = "j0ni";
- repo = "phoenix-dark-mono";
- rev = "a54f515d162148bcb38676980bc2316adb3d7b8b";
- sha256 = "1zr334qsjrajd2vrrlc1rfm4b4kdw15jfh5d102vj5bp7z7ajhb4";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/87e3b036fbcc96b047bbb141345a7b51f19d6951/recipes/phoenix-dark-mono-theme";
- sha256 = "15in299j170n0wxmkg3cx1zzx1n7r1ifraqqzfqhcnk8i8lmc939";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/phoenix-dark-mono-theme";
- license = lib.licenses.free;
- };
- }) {};
- phoenix-dark-pink-theme = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "phoenix-dark-pink-theme";
- ename = "phoenix-dark-pink-theme";
- version = "20170729.703";
- src = fetchFromGitHub {
- owner = "j0ni";
- repo = "phoenix-dark-pink";
- rev = "4defbb76b00c1a29f060813898578152d6be623d";
- sha256 = "03d7ak4ia3fifp0c8fm4qdydizsfsxvcvbzwfxlsk66s28p5wglc";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/87e3b036fbcc96b047bbb141345a7b51f19d6951/recipes/phoenix-dark-pink-theme";
- sha256 = "0bz6iw73d85bi12qqx6fdw3paqknrxvn0asbwjmgdcrlqrfczjlr";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/phoenix-dark-pink-theme";
- license = lib.licenses.free;
- };
- }) {};
php-auto-yasnippets = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -79865,57 +41588,6 @@
license = lib.licenses.free;
};
}) {};
- php-boris = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "php-boris";
- ename = "php-boris";
- version = "20130527.121";
- src = fetchFromGitHub {
- owner = "tomterl";
- repo = "php-boris";
- rev = "4bb7e4d34d9906ddce688205eb24cafe634c6d06";
- sha256 = "1pya68rbn3bs67nn0mprjx2w759byqmixylcvl25v8f645nmxd0r";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/php-boris";
- sha256 = "0kklwk8b98czsg567vgzzdfnv76yn1id3ah2q2qqdhaky1yzw7ak";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/php-boris";
- license = lib.licenses.free;
- };
- }) {};
- php-boris-minor-mode = callPackage ({ fetchgit
- , fetchurl
- , highlight
- , lib
- , melpaBuild
- , php-boris }:
- melpaBuild {
- pname = "php-boris-minor-mode";
- ename = "php-boris-minor-mode";
- version = "20140209.1035";
- src = fetchgit {
- url = "https://framagit.org/steckerhalter/php-boris-minor-mode.git";
- rev = "8648eba604e4ff82ef6594a2c5ee4cb4825e6235";
- sha256 = "00lmvsmh053zhdv56vkcxc4dpzrlx6jyck87vq8vjbj8q9nmkf23";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/f0a8eb0eefe88b4ea683a4743c0f8393506e014b/recipes/php-boris-minor-mode";
- sha256 = "06nzdvzjp6ywq0jf0v0cmcv77wj1vyas2r10kmxd45rzw12hqjd9";
- name = "recipe";
- };
- packageRequires = [ highlight php-boris ];
- meta = {
- homepage = "https://melpa.org/#/php-boris-minor-mode";
- license = lib.licenses.free;
- };
- }) {};
php-cs-fixer = callPackage ({ cl-lib ? null
, fetchFromGitHub
, fetchurl
@@ -79942,31 +41614,6 @@
license = lib.licenses.free;
};
}) {};
- php-eldoc = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "php-eldoc";
- ename = "php-eldoc";
- version = "20140202.1141";
- src = fetchFromGitHub {
- owner = "sabof";
- repo = "php-eldoc";
- rev = "df05064146b884d9081e10657e32dc480f070cfe";
- sha256 = "0hm6myvf91f4d2yfc7fs2xky9m8hfnimx1gkfzmn9f5pcc2l2p0i";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/7af452f42847a947e87edd6aa559f807d08920c1/recipes/php-eldoc";
- sha256 = "1q5fkl8crqrgxik2mxbkqv10qnqhqrazd66rgfw797s3jcchv58j";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/php-eldoc";
- license = lib.licenses.free;
- };
- }) {};
php-mode = callPackage ({ cl-lib ? null
, emacs
, fetchFromGitHub
@@ -79994,31 +41641,6 @@
license = lib.licenses.free;
};
}) {};
- php-refactor-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "php-refactor-mode";
- ename = "php-refactor-mode";
- version = "20171123.2235";
- src = fetchFromGitHub {
- owner = "keelerm84";
- repo = "php-refactor-mode.el";
- rev = "d06dabd9ca743a04067e02282b69d7b7467fb4b7";
- sha256 = "1mdbv079xj0a506hcq99bd8cdpwgq6anhqfkfwm56b3cn7g54qkr";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/ad4a9bb43e131e2eb0d8b09b13245bc268c524a5/recipes/php-refactor-mode";
- sha256 = "0gj0nv6ii7pya0hcxs8haz5pahj0sa12c2ls53c3j85in645zb3s";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/php-refactor-mode";
- license = lib.licenses.free;
- };
- }) {};
php-runtime = callPackage ({ cl-lib ? null
, emacs
, f
@@ -80048,34 +41670,6 @@
license = lib.licenses.free;
};
}) {};
- php-scratch = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , php-mode
- , s }:
- melpaBuild {
- pname = "php-scratch";
- ename = "php-scratch";
- version = "20161103.1517";
- src = fetchFromGitHub {
- owner = "mallt";
- repo = "php-scratch";
- rev = "3aa66d1d53b84b779374edff7a7e6b5f2cd7575d";
- sha256 = "0iyb4y0wrd1yqm56p37riw6nwvrlcgxj1x0nhw8304p8hv76mzdi";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/php-scratch";
- sha256 = "0sl9cccp4xjsidiyjf3sca8wlch3zd23zyac21xys11xm3rjxh9r";
- name = "recipe";
- };
- packageRequires = [ emacs php-mode s ];
- meta = {
- homepage = "https://melpa.org/#/php-scratch";
- license = lib.licenses.free;
- };
- }) {};
phpactor = callPackage ({ cl-lib ? null
, emacs
, f
@@ -80214,160 +41808,6 @@
license = lib.licenses.free;
};
}) {};
- pianobar = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "pianobar";
- ename = "pianobar";
- version = "20180416.1804";
- src = fetchFromGitHub {
- owner = "agrif";
- repo = "pianobar.el";
- rev = "3154c4cb7401017fd441fcd6a7a0b669a4406882";
- sha256 = "0dy51pi85i8ag47zmnhppllsbmxd0bp704azffddkg36pjh4inxk";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/b5659b4c7be20572aabe75caba866301393db012/recipes/pianobar";
- sha256 = "16vsf2cig9qjbh9s58zb5byjmyghxbsxpzpm5hyyrv251jap1jjn";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/pianobar";
- license = lib.licenses.free;
- };
- }) {};
- pickle = callPackage ({ cl-lib ? null
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "pickle";
- ename = "pickle";
- version = "20190122.948";
- src = fetchFromGitHub {
- owner = "ahungry";
- repo = "pickle-mode";
- rev = "0d0b1925b7b79e2c80a1877351e3c6ce52935c4b";
- sha256 = "0hbymja9109fzw34ra5iyxvhfv0x8ffr8sayqihdfmrs2ymh045z";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/4cb71882f074d3fef1f5a7b504dafcb6adff8ed4/recipes/pickle";
- sha256 = "0fryzmrs6bn6r590qp08jyzx9g6jakf1pahxhcfglsv9k3jbfp13";
- name = "recipe";
- };
- packageRequires = [ cl-lib emacs ];
- meta = {
- homepage = "https://melpa.org/#/pickle";
- license = lib.licenses.free;
- };
- }) {};
- picolisp-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "picolisp-mode";
- ename = "picolisp-mode";
- version = "20190104.2320";
- src = fetchFromGitHub {
- owner = "flexibeast";
- repo = "picolisp-mode";
- rev = "39e54f31b5d10483aac2765bf5cc4ad92f9e4467";
- sha256 = "054hmmpcxg56r9qhk006mm7y6b2bb6pjxk48fbynhbwmhwnn79ps";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/fe116998dadeef6e61c0791efb396f9b8befa5d6/recipes/picolisp-mode";
- sha256 = "1n56knbapyfs8n23arzlz27y0q4846r64krwlwh8agfqkcdw9dp5";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/picolisp-mode";
- license = lib.licenses.free;
- };
- }) {};
- picpocket = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "picpocket";
- ename = "picpocket";
- version = "20180914.1119";
- src = fetchFromGitHub {
- owner = "johanclaesson";
- repo = "picpocket";
- rev = "f0f9947a097b2a02901d6d0bb427c7a6e02f2af7";
- sha256 = "0fnafiax2xb97vkvr8fd2x3rpnw72661k0p163mkvp1zp59zy6is";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/e88dc89311d4bfe82dc15f22b84c4b76abb3fd69/recipes/picpocket";
- sha256 = "0p2mrjcd8ig0h7dk0zvyfma4nnfk2ic6gp2dwfqyqq6irb010f45";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/picpocket";
- license = lib.licenses.free;
- };
- }) {};
- pig-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "pig-mode";
- ename = "pig-mode";
- version = "20180520.700";
- src = fetchFromGitHub {
- owner = "motus";
- repo = "pig-mode";
- rev = "4c6c6e1b1bb719d8adc6c47cc24665f6fe558959";
- sha256 = "1vwnybyrzk8nw2cs27yrsipxb6hmx7cs5d60yf00h0wiv3l6v3rr";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/a0d7c07d28e2f229b281201a781ebaceed6465ed/recipes/pig-mode";
- sha256 = "0gmvc4rrqkn0cx8fk1sxk6phfbpf8dcba3k6i24k3idcx8rxsw3x";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/pig-mode";
- license = lib.licenses.free;
- };
- }) {};
- pig-snippets = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , yasnippet }:
- melpaBuild {
- pname = "pig-snippets";
- ename = "pig-snippets";
- version = "20130912.2324";
- src = fetchFromGitHub {
- owner = "motus";
- repo = "pig-mode";
- rev = "69ca24cb756dd516828e284e33274145eba21183";
- sha256 = "1b1wibla851f7mra0jf13xhil1xw4s0m2l53f1s2h36468wb24y1";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/a0d7c07d28e2f229b281201a781ebaceed6465ed/recipes/pig-snippets";
- sha256 = "1sqi0a2dsqgmabkrncxiyrhibyryyy25d11b15ybhlngd05wqbx2";
- name = "recipe";
- };
- packageRequires = [ yasnippet ];
- meta = {
- homepage = "https://melpa.org/#/pig-snippets";
- license = lib.licenses.free;
- };
- }) {};
pillar = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -80394,31 +41834,6 @@
license = lib.licenses.free;
};
}) {};
- pinboard-api = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "pinboard-api";
- ename = "pinboard-api";
- version = "20140324.448";
- src = fetchFromGitHub {
- owner = "danieroux";
- repo = "pinboard-api-el";
- rev = "b7b5214d0c35178f8dca08cf22d6ef3c21f0fce4";
- sha256 = "0wy9c37g6m5khchlp8qvfnjgkwq4r38659adcm5prvzjgzqhlfja";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/7a13787abe600b6f6355a475af573efa0064bf6f/recipes/pinboard-api";
- sha256 = "0yzvgnpkj2fhl01id36nc5pj8vyb05bllraiz3lwwcc66y98h9n0";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/pinboard-api";
- license = lib.licenses.free;
- };
- }) {};
pinboard-popular = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -80471,58 +41886,6 @@
license = lib.licenses.free;
};
}) {};
- pinot = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "pinot";
- ename = "pinot";
- version = "20140211.1226";
- src = fetchFromGitHub {
- owner = "tkf";
- repo = "emacs-pinot-search";
- rev = "67fda555a155b22bb2ce44ba618b4bd6fc5f144a";
- sha256 = "1wc31r5fpcia4n4vbpg7vv3rzrnjzh18yygi3kp4wvl2wzx2azqh";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/f75cd89811b4bb668c1e7a93246b93fbcf5d9c47/recipes/pinot";
- sha256 = "1kjzq02pddnkia637xz2mnjjyglyh6qzragnf7nnxbw9ayiim58i";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/pinot";
- license = lib.licenses.free;
- };
- }) {};
- pinyin = callPackage ({ cl-lib ? null
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "pinyin";
- ename = "pinyin";
- version = "20180620.541";
- src = fetchFromGitHub {
- owner = "xuchunyang";
- repo = "pinyin.el";
- rev = "80b588cbf97973973fce4d720df3cf41306df2e4";
- sha256 = "1crd90f1b603k5k9qsdbi2zdkyhqcim8xk5mqw5w20mxrf39y36n";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/b16f0f7f86021bb0bece6c90878b0dba1657107f/recipes/pinyin";
- sha256 = "1afgz62zpar6d65q4h12s7ijhhl2r2vlrnk79vsjrl560jh7hgfm";
- name = "recipe";
- };
- packageRequires = [ cl-lib emacs ];
- meta = {
- homepage = "https://melpa.org/#/pinyin";
- license = lib.licenses.free;
- };
- }) {};
pinyin-search = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -80599,115 +41962,6 @@
license = lib.licenses.free;
};
}) {};
- pipenv = callPackage ({ emacs
- , f
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , pyvenv
- , s }:
- melpaBuild {
- pname = "pipenv";
- ename = "pipenv";
- version = "20190307.355";
- src = fetchFromGitHub {
- owner = "pwalsh";
- repo = "pipenv.el";
- rev = "189cf5a4d425b6bdcd26742a460cf12cc540f524";
- sha256 = "0dcd7gmjs5s17h55nnpyppxg3zf96p3w8bsb9sk2wy1jwxn566cm";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/d46738976f5dfaf899ee778b1ba6dcee455fd271/recipes/pipenv";
- sha256 = "110ddg6yjglp49rgn1ck41rl97q92nm6zx86mxjmcqq35cxmc6g1";
- name = "recipe";
- };
- packageRequires = [ emacs f pyvenv s ];
- meta = {
- homepage = "https://melpa.org/#/pipenv";
- license = lib.licenses.free;
- };
- }) {};
- pippel = callPackage ({ dash
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , s }:
- melpaBuild {
- pname = "pippel";
- ename = "pippel";
- version = "20180710.156";
- src = fetchFromGitHub {
- owner = "brotzeit";
- repo = "pippel";
- rev = "21a5200e8e5ccaa1911abb4ebf090b76ca839756";
- sha256 = "1amqjm6kn1xda058kdwq3xgk7raz6y9iw0mzrac78sgf57qaczyb";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/6d1796688ed0d6957557d960ca28e450f9bcb6cf/recipes/pippel";
- sha256 = "1li4h0dff1n7njy2lk3d50ndrlw84fphmdg16j0srkbgy7xz90yn";
- name = "recipe";
- };
- packageRequires = [ dash emacs s ];
- meta = {
- homepage = "https://melpa.org/#/pippel";
- license = lib.licenses.free;
- };
- }) {};
- pivotal-tracker = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "pivotal-tracker";
- ename = "pivotal-tracker";
- version = "20170720.816";
- src = fetchFromGitHub {
- owner = "jxa";
- repo = "pivotal-tracker";
- rev = "0311d117037c74512149a4a78b269c2e46d7dfba";
- sha256 = "0g3xzh8jr9lbg6h2hk81cdyxkxx3l79qhxrp4g34rc0dml79rzf9";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/pivotal-tracker";
- sha256 = "0yiyz11sd25ybgr2qmg62qqmcz96va1pq3q866cqmpl38xn7znpj";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/pivotal-tracker";
- license = lib.licenses.free;
- };
- }) {};
- pixie-mode = callPackage ({ clojure-mode
- , fetchFromGitHub
- , fetchurl
- , inf-clojure
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "pixie-mode";
- ename = "pixie-mode";
- version = "20180625.2241";
- src = fetchFromGitHub {
- owner = "johnwalker";
- repo = "pixie-mode";
- rev = "a40c2632cfbe948852a5cdcfd44e6a65db11834d";
- sha256 = "11c5gv88chh7sg2i0rzisbad0mkq1zc7dyi5md8hdi5gqm68704g";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/a57300bfdae57c9996db0411d56a5fc7b35778c3/recipes/pixie-mode";
- sha256 = "16z15yh78837k548xk5widdmy6fv03vym6q54i40knmgf5cllsl8";
- name = "recipe";
- };
- packageRequires = [ clojure-mode inf-clojure ];
- meta = {
- homepage = "https://melpa.org/#/pixie-mode";
- license = lib.licenses.free;
- };
- }) {};
pixiv-novel-mode = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -80810,57 +42064,6 @@
license = lib.licenses.free;
};
}) {};
- plan9-theme = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "plan9-theme";
- ename = "plan9-theme";
- version = "20180804.741";
- src = fetchFromGitHub {
- owner = "john2x";
- repo = "plan9-theme.el";
- rev = "4c1050b8ed42e0f99ef64c77ec370a786bd0003c";
- sha256 = "1l2bgdip617zkd9470rja1qyijpc896dvmc6dgclvaz1ajgjwa9j";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/cdc4c2bafaa09e38edd485a9091db689fbda2fe6/recipes/plan9-theme";
- sha256 = "0bvr877mc79s1shr82b33ipspz09jzc3809c6pkbw0jqpfid44cc";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/plan9-theme";
- license = lib.licenses.free;
- };
- }) {};
- planet-theme = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "planet-theme";
- ename = "planet-theme";
- version = "20161030.1917";
- src = fetchFromGitHub {
- owner = "cmack";
- repo = "emacs-planet-theme";
- rev = "b0a310ff36565fe22224c407cf59569986698a32";
- sha256 = "1xdj59skmldq5dnarirhwq4qycipas86nbyqwl8zsv0bh20nl1rs";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/planet-theme";
- sha256 = "1hr5m08qn51r9804jd0k95ryz3frzkk1dp6wpybil6bf67a2l5lr";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/planet-theme";
- license = lib.licenses.free;
- };
- }) {};
plantuml-mode = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -80887,32 +42090,6 @@
license = lib.licenses.free;
};
}) {};
- plaster = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "plaster";
- ename = "plaster";
- version = "20180127.1250";
- src = fetchFromGitHub {
- owner = "Shirakumo";
- repo = "plaster";
- rev = "11eb23920410818fe444887b97ad4c8722d66c85";
- sha256 = "0lqz8m8a2ahvgm0i9cz0j4bisi34czc4s29z70p5p6rdg4g21fk1";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/7e363cffa021e649c052f38cedb7cc01dbe9e24a/recipes/plaster";
- sha256 = "0vfixc0f5n4flsmdf1iqlbx03yv28w3nqm1ycz2fx6p5jvhkvfqk";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/plaster";
- license = lib.licenses.free;
- };
- }) {};
platformio-mode = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -80992,57 +42169,6 @@
license = lib.licenses.free;
};
}) {};
- playerctl = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "playerctl";
- ename = "playerctl";
- version = "20180301.554";
- src = fetchFromGitHub {
- owner = "thomasluquet";
- repo = "playerctl.el";
- rev = "c75358240a9bc234f31fc3e652929b103b1238b9";
- sha256 = "1yf66kw967xminfwzzdfzimh1313m3lm946bmcdl1zb8db0fcrdc";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/6db0d82c2eef7c5bef5f9f2c15969da4c404b62d/recipes/playerctl";
- sha256 = "1pix3hcsg6ymzajiixwcq4v3clvadpkl0rhplkhachv6wmci327x";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/playerctl";
- license = lib.licenses.free;
- };
- }) {};
- playground = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "playground";
- ename = "playground";
- version = "20180623.2026";
- src = fetchFromGitHub {
- owner = "akirak";
- repo = "emacs-playground";
- rev = "85ab8ce4b574254eead623a3553082a9e6e655af";
- sha256 = "0m780v6h3mjib5hmmv3afjnmh562v5c13l6vam4nnhj4qrq33ri8";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/f062a74fe1746129879ad19c1735621f58509d33/recipes/playground";
- sha256 = "1xjmxkl8h4l87fvv1sr478r6mkmy9gkzw2fxmzqn5fcsahzkyg4d";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/playground";
- license = lib.licenses.free;
- };
- }) {};
plenv = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -81068,31 +42194,6 @@
license = lib.licenses.free;
};
}) {};
- plim-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "plim-mode";
- ename = "plim-mode";
- version = "20140812.1713";
- src = fetchFromGitHub {
- owner = "dongweiming";
- repo = "plim-mode";
- rev = "98cd6d11b7ff3ee7b6cb8845f143b5a692a3e6e8";
- sha256 = "1mcd6c3kgq9a5mv9c9di042vqicjp16nm9i6kz0p8ij3hk2ib22i";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/plim-mode";
- sha256 = "1nrqw5dvb3j5x3wkpsjbpv1d2s367icq9j4h1xv1cahfsn8nn4m9";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/plim-mode";
- license = lib.licenses.free;
- };
- }) {};
plsense = callPackage ({ auto-complete
, fetchFromGitHub
, fetchurl
@@ -81176,30 +42277,6 @@
license = lib.licenses.free;
};
}) {};
- pmdm = callPackage ({ fetchhg
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "pmdm";
- ename = "pmdm";
- version = "20151109.1036";
- src = fetchhg {
- url = "https://bitbucket.com/inigoserna/pmdm.el";
- rev = "f50a54774156";
- sha256 = "0x3s9fj41n6a21la762qm1si9ysv3zj5bbp6ykfskr73sxq6s9ff";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5b7972602399f9df9139cff177e38653bb0f43ed/recipes/pmdm";
- sha256 = "1zmy6cbnqhsbwc5vx30mx45xn88d2186hgrl75ws7vvbl197j03b";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/pmdm";
- license = lib.licenses.free;
- };
- }) {};
po-mode = callPackage ({ fetchgit
, fetchurl
, lib
@@ -81207,11 +42284,11 @@
melpaBuild {
pname = "po-mode";
ename = "po-mode";
- version = "20180505.415";
+ version = "0.19.8.1";
src = fetchgit {
url = "https://git.savannah.gnu.org/git/gettext.git";
- rev = "a57ffdb2f17d040a737e84114544fcd748fa87fa";
- sha256 = "19qg3l6w2lapjv73yvjiy5mj6j8kv7ch1gjpx2b86y2y5mqrqii7";
+ rev = "7fa0c2779d7de8a263271abfbe684185dbf6898b";
+ sha256 = "1w154dzp98kjqsid4g0jq7cnpm4mivgffgjks6gr89dssq9qc3yh";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/caaa21f235c4864f6008fb454d0a970a2fd22a86/recipes/po-mode";
@@ -81224,33 +42301,6 @@
license = lib.licenses.free;
};
}) {};
- pocket-api = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , request }:
- melpaBuild {
- pname = "pocket-api";
- ename = "pocket-api";
- version = "20180402.1809";
- src = fetchFromGitHub {
- owner = "lujun9972";
- repo = "pocket-api.el";
- rev = "3eb9430b9db90bc02e736e433eb86389f7655189";
- sha256 = "0k6a9zzdi02g677cc699llk04i06yb7ddnlnmxndap5jszfyqwfi";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/04e3be76aef4d1b6d5bb3eda533b5deffcc8a5bc/recipes/pocket-api";
- sha256 = "1f5j491wbqgbx6zlb0zdajca5il0628vr9a38y0n3x0h69wm0cx5";
- name = "recipe";
- };
- packageRequires = [ emacs request ];
- meta = {
- homepage = "https://melpa.org/#/pocket-api";
- license = lib.licenses.free;
- };
- }) {};
pocket-lib = callPackage ({ dash
, emacs
, fetchFromGitHub
@@ -81281,33 +42331,6 @@
license = lib.licenses.free;
};
}) {};
- pocket-mode = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , pocket-api }:
- melpaBuild {
- pname = "pocket-mode";
- ename = "pocket-mode";
- version = "20171201.515";
- src = fetchFromGitHub {
- owner = "lujun9972";
- repo = "pocket-mode";
- rev = "229de7d35b7e5605797591c46aa8200d7efc363c";
- sha256 = "0j3axac4lp7p00a7mf7frryqg1y3jwqaw0s475gz606642vg9l45";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/6aa3d04058bfc0bc1da3393d17429d517275e97c/recipes/pocket-mode";
- sha256 = "04zxll5yg021m13vr54w2pnrmqb87ykdbpa8nx2wn9myg2rywh0v";
- name = "recipe";
- };
- packageRequires = [ emacs pocket-api ];
- meta = {
- homepage = "https://melpa.org/#/pocket-mode";
- license = lib.licenses.free;
- };
- }) {};
pocket-reader = callPackage ({ dash
, emacs
, fetchFromGitHub
@@ -81352,32 +42375,6 @@
license = lib.licenses.free;
};
}) {};
- podcaster = callPackage ({ cl-lib ? null
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "podcaster";
- ename = "podcaster";
- version = "20161020.835";
- src = fetchFromGitHub {
- owner = "lujun9972";
- repo = "podcaster";
- rev = "9854517025deb5d556168a68955fb7b662239f5c";
- sha256 = "06ag0idz7cf6i9kg7kqr03js9b6cw6my1jzd1x3wkgazx5slqk4q";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/2649dc294f40d00f3bf1b1cf09879c2ef0d3e43b/recipes/podcaster";
- sha256 = "1kzac0mhg8dk2vfk29ns36jl8vwg6ghbdb3n6kqfzci5ygn96yib";
- name = "recipe";
- };
- packageRequires = [ cl-lib ];
- meta = {
- homepage = "https://melpa.org/#/podcaster";
- license = lib.licenses.free;
- };
- }) {};
poe-lootfilter-mode = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -81404,58 +42401,6 @@
license = lib.licenses.free;
};
}) {};
- poet-client = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , request }:
- melpaBuild {
- pname = "poet-client";
- ename = "poet-client";
- version = "20190123.2254";
- src = fetchFromGitHub {
- owner = "wailo";
- repo = "emacs-poet";
- rev = "bca73c57f1daa33eec7763adcbc9733f65f9864d";
- sha256 = "129xc278kryh097y4jxqkzbsw6y39b8yxxq5sp7y0a1cm10gwdwj";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/a0b003773edaa728ed49f0de2ca64a00cb60d13a/recipes/poet-client";
- sha256 = "11yj57915ly8j2byp5c395lip73iv1chrzxdlxilhnll1brvmaw0";
- name = "recipe";
- };
- packageRequires = [ emacs request ];
- meta = {
- homepage = "https://melpa.org/#/poet-client";
- license = lib.licenses.free;
- };
- }) {};
- poet-theme = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "poet-theme";
- ename = "poet-theme";
- version = "20190127.1420";
- src = fetchFromGitHub {
- owner = "kunalb";
- repo = "poet";
- rev = "e16d47de40c9ec434adb8b861223f0bf95495240";
- sha256 = "1nf34m5agygd93q45bsi3zxbzf9jyz11hncwyi6q8mnanxr2imfa";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/40bbe29dee56f7989d8e87c03f4842e2b191acc3/recipes/poet-theme";
- sha256 = "0pllyp4spj30g6ihzc91hzvnrvcg2zb49adj8wcmbzvq3hxnvls1";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/poet-theme";
- license = lib.licenses.free;
- };
- }) {};
point-pos = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -81481,83 +42426,6 @@
license = lib.licenses.free;
};
}) {};
- point-stack = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "point-stack";
- ename = "point-stack";
- version = "20170808.958";
- src = fetchFromGitHub {
- owner = "dgutov";
- repo = "point-stack";
- rev = "76e17311e3a810314c7d31ac46dc55450ff30fa2";
- sha256 = "1sp3djnyg3f5ci43m4pi0f6clblrz5lrnzc415r87csbavqqgv2z";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/bb3c9e6b3c583f098f75462b4d48cd137a1bcb76/recipes/point-stack";
- sha256 = "0201gka1izqgxyivan60jbg9x1mmsw5dscxacasg97ffsciwbfr9";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/point-stack";
- license = lib.licenses.free;
- };
- }) {};
- pointback = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "pointback";
- ename = "pointback";
- version = "20100210.752";
- src = fetchFromGitHub {
- owner = "emacsorphanage";
- repo = "pointback";
- rev = "e3a02c1784d81b5a1d2477338d049af581ed19f8";
- sha256 = "016cjy5pnnqccjqb0njqc9jq6kf6p165nlki83b8c0sj75yxghav";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5f2a50f62475639af011c99c6cc38928b74b3b0a/recipes/pointback";
- sha256 = "198q511hixvzc13b3ih89xs9g47rdvbiixn5baqakpmpx3a12hz4";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/pointback";
- license = lib.licenses.free;
- };
- }) {};
- pollen-mode = callPackage ({ cl-lib ? null
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "pollen-mode";
- ename = "pollen-mode";
- version = "20190309.2138";
- src = fetchFromGitHub {
- owner = "lijunsong";
- repo = "pollen-mode";
- rev = "819edf830e9519f8ca57e9cef31211e3f444d11a";
- sha256 = "0c06kfbyk2g0kxwlh6g3r7ij06ip6x9ni0bin24drwr0qj2vis2d";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/97bda0616abe3bb632fc4231e5317d9472dfd14f/recipes/pollen-mode";
- sha256 = "1kskvdh6rczlki724h5xym8s4iychqzm0i82qdj87x1cg1kx9i85";
- name = "recipe";
- };
- packageRequires = [ cl-lib emacs ];
- meta = {
- homepage = "https://melpa.org/#/pollen-mode";
- license = lib.licenses.free;
- };
- }) {};
poly-R = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -81860,56 +42728,6 @@
license = lib.licenses.free;
};
}) {};
- pomodoro = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "pomodoro";
- ename = "pomodoro";
- version = "20190201.1352";
- src = fetchFromGitHub {
- owner = "baudtack";
- repo = "pomodoro.el";
- rev = "6cd665ceeaca1f70954aa4caef6f085179f94c69";
- sha256 = "08z2nja3bhjgg6k7bb0cr8v02y8gaxkmxmfcvvgiixw3kfrnkpwn";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/0b5c2c50eb87952d01c1b338b7d3e4b3a4546555/recipes/pomodoro";
- sha256 = "075sbypas8xlhsw8wg3mgi3fn5yf7xb3klyjgyy8wfkgdz0269f8";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/pomodoro";
- license = lib.licenses.free;
- };
- }) {};
- pony-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "pony-mode";
- ename = "pony-mode";
- version = "20170807.822";
- src = fetchFromGitHub {
- owner = "davidmiller";
- repo = "pony-mode";
- rev = "760684d30b6c234d1b88c9a4673a808f36f7f341";
- sha256 = "1y4gxn25i2nszdhqq8jxf9h65mqfgcwbypx5p4wkan5i1v2i3yr1";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/a1fd64317610fb6ef5b14e8bf15e727680d5ff09/recipes/pony-mode";
- sha256 = "1hgiryhpxv30bjlgv9pywzqn2ypimwzdhx03znqvn56zrwn1frnl";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/pony-mode";
- license = lib.licenses.free;
- };
- }) {};
pony-snippets = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -81990,31 +42808,6 @@
license = lib.licenses.free;
};
}) {};
- poporg = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "poporg";
- ename = "poporg";
- version = "20170403.51";
- src = fetchFromGitHub {
- owner = "QBobWatson";
- repo = "poporg";
- rev = "2c58d68c81ecca4140bf179f19ed153ec804b65a";
- sha256 = "1ymqhy0sqd54z154s3cm6q1m4xnr9wkx9dl5f93845k11ay3kvln";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/63502ec265a66d3f72ef93a2f6e7c2e517ff98a3/recipes/poporg";
- sha256 = "08s42689kd78h2fmw230ja5dd3c3b4lx5mzadncwq0lj91y86kd8";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/poporg";
- license = lib.licenses.free;
- };
- }) {};
popup = callPackage ({ cl-lib ? null
, fetchFromGitHub
, fetchurl
@@ -82067,32 +42860,6 @@
license = lib.licenses.free;
};
}) {};
- popup-edit-menu = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "popup-edit-menu";
- ename = "popup-edit-menu";
- version = "20170404.725";
- src = fetchFromGitHub {
- owner = "debugfan";
- repo = "popup-edit-menu";
- rev = "925600a6e29183841199e866cf55e566a6a1b002";
- sha256 = "1dd0ss7cjdjs3c7vkq8p874408iysih80brc8vlfh1f43cnc5v92";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/e824ae5bd9214f8de210059f8145f13a4e62e8a1/recipes/popup-edit-menu";
- sha256 = "1mqni09l1xfxv4g64hskpsla41r5d2xfbw81ncbszwqzlln6k5bf";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/popup-edit-menu";
- license = lib.licenses.free;
- };
- }) {};
popup-imenu = callPackage ({ dash
, fetchFromGitHub
, fetchurl
@@ -82121,60 +42888,6 @@
license = lib.licenses.free;
};
}) {};
- popup-kill-ring = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , popup
- , pos-tip }:
- melpaBuild {
- pname = "popup-kill-ring";
- ename = "popup-kill-ring";
- version = "20131020.1154";
- src = fetchFromGitHub {
- owner = "waymondo";
- repo = "popup-kill-ring";
- rev = "dc50b62ae8b7c2675dde96bb410d9bf0e8643f6a";
- sha256 = "0bpnsc4agy6mcnc79d9a6gi79jiiqrhf3a55pw0p4z16m86vwyqr";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/0b745b067e5d68467b89e0dbade7a9a76de2946c/recipes/popup-kill-ring";
- sha256 = "1jfw669xi2983jj3hiw5lyhc0rc0318qrmqx03f7m4ylg70dgxip";
- name = "recipe";
- };
- packageRequires = [ popup pos-tip ];
- meta = {
- homepage = "https://melpa.org/#/popup-kill-ring";
- license = lib.licenses.free;
- };
- }) {};
- popup-switcher = callPackage ({ cl-lib ? null
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , popup }:
- melpaBuild {
- pname = "popup-switcher";
- ename = "popup-switcher";
- version = "20171205.51";
- src = fetchFromGitHub {
- owner = "kostafey";
- repo = "popup-switcher";
- rev = "f5788a31918e37bb5c04139048c667bcec9f1b62";
- sha256 = "0gfi8dlgynciv3q5a208c7gd66g2r99b3zn0i31ibpppjqy2vcsk";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/ef7d1897c4c4a6f4b4527279e6dad976219d7b78/recipes/popup-switcher";
- sha256 = "1888xiqhrn7fcpjnr3smchmmqwfayfbbyvdkdb79c6drzjcvidp1";
- name = "recipe";
- };
- packageRequires = [ cl-lib popup ];
- meta = {
- homepage = "https://melpa.org/#/popup-switcher";
- license = lib.licenses.free;
- };
- }) {};
popwin = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -82200,33 +42913,6 @@
license = lib.licenses.free;
};
}) {};
- portage-navi = callPackage ({ concurrent
- , ctable
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "portage-navi";
- ename = "portage-navi";
- version = "20141208.555";
- src = fetchFromGitHub {
- owner = "kiwanami";
- repo = "emacs-portage-navi";
- rev = "8016c3e99fe6cef101d479a3d69185796b22ca2f";
- sha256 = "1pm4x74pw67m2izr9dir201dn5g9icgk6h2j8rqvasgx8v8krv3i";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/0a467702b3ac3c8bdc723262e6919f67fd71d524/recipes/portage-navi";
- sha256 = "1wjkh8xj5120v9fz1nrpkd6x4f22ni8h2lfkd82df7kjz6bzdfwg";
- name = "recipe";
- };
- packageRequires = [ concurrent ctable ];
- meta = {
- homepage = "https://melpa.org/#/portage-navi";
- license = lib.licenses.free;
- };
- }) {};
pos-tip = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -82260,12 +42946,12 @@
melpaBuild {
pname = "posframe";
ename = "posframe";
- version = "0.4.3";
+ version = "0.5.0";
src = fetchFromGitHub {
owner = "tumashu";
repo = "posframe";
- rev = "96dbc49f4f434c0aea59242fbcee663c1533ec05";
- sha256 = "0i5xd7x33zmshhkzpsbpcpc8lgvv5vinnl1a07bnp8r1sp4yahm0";
+ rev = "fc90a1a558200e5c3688c65add9afdea695a2c10";
+ sha256 = "1fhjxj7gi2pj5rdnmf0gddiwd8iifgjgjp01c01npz1gwwixyqh3";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/fa3488f2ede1201faf4a147313456ed90271f050/recipes/posframe";
@@ -82278,84 +42964,6 @@
license = lib.licenses.free;
};
}) {};
- postcss-sorting = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "postcss-sorting";
- ename = "postcss-sorting";
- version = "20180211.156";
- src = fetchFromGitHub {
- owner = "P233";
- repo = "postcss-sorting.el";
- rev = "deb0c935d2904c11a965758a9aee5a0e905f21fc";
- sha256 = "03kng7i09px5vizvmmrar7rj3bk27y43bi8hlzxax0ja27k0c66c";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/9fae97430f211786f615f7450936f823e2a04ec4/recipes/postcss-sorting";
- sha256 = "0730b2wddal15yi4k6wzhv9xv1k40iwrn3mivg9bkxabh3mgrl10";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/postcss-sorting";
- license = lib.licenses.free;
- };
- }) {};
- pov-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "pov-mode";
- ename = "pov-mode";
- version = "20161114.2343";
- src = fetchFromGitHub {
- owner = "melmothx";
- repo = "pov-mode";
- rev = "9fc1db3aab7c27155674dd1a87ec62606035d074";
- sha256 = "1399fxivy15y2k4vp7vqqgsi8l1mzxc8aa2mf2x1hksgiyq60acp";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/89d6b4a3d7a5f3cc93e9d13d4c174b5d7de7bad1/recipes/pov-mode";
- sha256 = "1xzdmlfi5ixdh08v0ca80zkh9n3gfn4ql5pnl3jh745wbj9azxp9";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/pov-mode";
- license = lib.licenses.free;
- };
- }) {};
- pow = callPackage ({ cl-lib ? null
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "pow";
- ename = "pow";
- version = "20140420.106";
- src = fetchFromGitHub {
- owner = "yukihr";
- repo = "emacs-pow";
- rev = "782532d5d3582fe8fd67014507b20077f3f2d292";
- sha256 = "0d87h67qk7jw4fpq3kzzsh5v1k2nhrz6yfl1hzi7hqm5mdvnbfc9";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/pow";
- sha256 = "13f3pk52f9lkkl3zi6448j9b39kn6ny9vmnlsvhwa6s0vaz8f220";
- name = "recipe";
- };
- packageRequires = [ cl-lib emacs ];
- meta = {
- homepage = "https://melpa.org/#/pow";
- license = lib.licenses.free;
- };
- }) {};
powerline = callPackage ({ cl-lib ? null
, fetchFromGitHub
, fetchurl
@@ -82382,33 +42990,6 @@
license = lib.licenses.free;
};
}) {};
- powerline-evil = callPackage ({ evil
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , powerline }:
- melpaBuild {
- pname = "powerline-evil";
- ename = "powerline-evil";
- version = "20151112.710";
- src = fetchFromGitHub {
- owner = "raugturi";
- repo = "powerline-evil";
- rev = "98b3a102b6dba6632aa0755a7257300c9b164309";
- sha256 = "1c8y4r7zdr6764kzs5bc64idv2pfjvi78lg2f1d2hp1595ia8y5r";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/a44108579409ab2aab3e75ccabffb207843ec1ee/recipes/powerline-evil";
- sha256 = "0cdnmq9f06lzkj0hs948a7j5sgg6fl5f36bfnyaxgss23akbfjhr";
- name = "recipe";
- };
- packageRequires = [ evil powerline ];
- meta = {
- homepage = "https://melpa.org/#/powerline-evil";
- license = lib.licenses.free;
- };
- }) {};
powershell = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -82434,34 +43015,6 @@
license = lib.licenses.free;
};
}) {};
- powerthesaurus = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , request
- , s }:
- melpaBuild {
- pname = "powerthesaurus";
- ename = "powerthesaurus";
- version = "20180719.208";
- src = fetchFromGitHub {
- owner = "SavchenkoValeriy";
- repo = "emacs-powerthesaurus";
- rev = "ab39b050e801934872f3dcaa60b50b0d30ecf367";
- sha256 = "0l4rny6ssa5wmksc0g1qnyfj15qlffavflm2adcqywr660d93pq9";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/04a7e6d2292e933e0318296107774e1248888f3c/recipes/powerthesaurus";
- sha256 = "011kl3n1hfmz844w198gvh5anjyqj0m4pvryahslc0r1zavik7ni";
- name = "recipe";
- };
- packageRequires = [ emacs request s ];
- meta = {
- homepage = "https://melpa.org/#/powerthesaurus";
- license = lib.licenses.free;
- };
- }) {};
ppd-sr-speedbar = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -82514,31 +43067,6 @@
license = lib.licenses.free;
};
}) {};
- preproc-font-lock = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "preproc-font-lock";
- ename = "preproc-font-lock";
- version = "20151107.1218";
- src = fetchFromGitHub {
- owner = "Lindydancer";
- repo = "preproc-font-lock";
- rev = "565fda9f5fdeb0598986174a07e9fb09f7604397";
- sha256 = "0yrfd9qaz16nqcvjyjm9qci526qgkv6k51q5752h3iyqkxnss1pd";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/582692267795c91bb7f2ec3bffc2b9c2be9f2a32/recipes/preproc-font-lock";
- sha256 = "1ra0lgjv6713zym2h8pblf2ryf0f658l1khbxbwnxl023gkyj9v4";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/preproc-font-lock";
- license = lib.licenses.free;
- };
- }) {};
prescient = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -82565,31 +43093,6 @@
license = lib.licenses.free;
};
}) {};
- preseed-generic-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "preseed-generic-mode";
- ename = "preseed-generic-mode";
- version = "20180209.2100";
- src = fetchFromGitHub {
- owner = "suntong";
- repo = "preseed-generic-mode";
- rev = "3aa8806c4a659064baa01751400c53fbaf847f66";
- sha256 = "02yb5xkgwqxpwghhjmxf2gx0faifi04w2jd8cvfsiwzwqmqyhmv7";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/preseed-generic-mode";
- sha256 = "14vbx6y7h4vqc5kkgj4mbr9zj6gqf6ib3hh2917m203s8y87lsfl";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/preseed-generic-mode";
- license = lib.licenses.free;
- };
- }) {};
presentation = callPackage ({ cl-lib ? null
, emacs
, fetchFromGitHub
@@ -82617,56 +43120,6 @@
license = lib.licenses.free;
};
}) {};
- prettier-js = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "prettier-js";
- ename = "prettier-js";
- version = "20180108.2326";
- src = fetchFromGitHub {
- owner = "prettier";
- repo = "prettier-emacs";
- rev = "0e8b95c4e5898a03e85dbc555c37b4f968292aec";
- sha256 = "0l8i0fbwwyhllkpk8xd6w5gcv65z4ja1ygf6slh5sd1g0ixh29md";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/968ac7bb98b385f8542dc150486982c0ded73187/recipes/prettier-js";
- sha256 = "0mf66sdsdbhf76pwkjkfjsnh26g4j3zb4y1qrbxc9jcvymccb3yq";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/prettier-js";
- license = lib.licenses.free;
- };
- }) {};
- prettify-greek = callPackage ({ fetchFromGitLab
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "prettify-greek";
- ename = "prettify-greek";
- version = "20160603.208";
- src = fetchFromGitLab {
- owner = "fommil";
- repo = "emacs-prettify-greek";
- rev = "698d07a6ffe85f6fb53f3bfec4f49380c25cfd90";
- sha256 = "0g2bxa7mwfkc8navbi2w28rd4f4zqphxi13kwmd2p83g3wavd99v";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/23c8f10205187babb17e3abc3dc40eb1938e6640/recipes/prettify-greek";
- sha256 = "1izl6r6i3zbhd7r7lz2k42yyz6qcng11wfmb7lx4883dj00flsl7";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/prettify-greek";
- license = lib.licenses.free;
- };
- }) {};
pretty-hydra = callPackage ({ dash
, emacs
, fetchFromGitHub
@@ -82721,133 +43174,6 @@
license = lib.licenses.free;
};
}) {};
- pretty-sha-path = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "pretty-sha-path";
- ename = "pretty-sha-path";
- version = "20141105.1026";
- src = fetchFromGitHub {
- owner = "alezost";
- repo = "pretty-sha-path.el";
- rev = "beea38bdf34ed27059d6484e1e2a337a27e1f7ce";
- sha256 = "1hfk3j69r0xva1c7v72vc2hhksdjia7vmxfx82j6j0jfpn6163f1";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/6520d692662aaf92023623273597d966ca3cba9d/recipes/pretty-sha-path";
- sha256 = "0qqsg383391dnsk46xm8plq7xmdmnis3iv7h7dmchpzd99bkm9lq";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/pretty-sha-path";
- license = lib.licenses.free;
- };
- }) {};
- pretty-symbols = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "pretty-symbols";
- ename = "pretty-symbols";
- version = "20140814.259";
- src = fetchFromGitHub {
- owner = "drothlis";
- repo = "pretty-symbols";
- rev = "ab82b3fba129fae14e4031eb7fd648c1a92d0e71";
- sha256 = "12ny0lpqhj7g1hmj3y6012zz7145xx6ivgg381d4lc8791j35djd";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/ed01ef6333e4558877b0e357ff8bf601fb88b757/recipes/pretty-symbols";
- sha256 = "0d1ad2x4md0n3fad3s2355wm8hl311qdhih1gkdqwdaj4i1d6gvb";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/pretty-symbols";
- license = lib.licenses.free;
- };
- }) {};
- private = callPackage ({ aes
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "private";
- ename = "private";
- version = "20150121.1757";
- src = fetchFromGitHub {
- owner = "zhangkaiyulw";
- repo = "private";
- rev = "f57f1c2f6bfe900bd40b252688df4c6ed6a5f44b";
- sha256 = "0720vrb9nwy4c069fk7adw5f50g9dji1wra9s3jwazr8jn45k0mn";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/6440f81aed1fcddcaf7afeedb74520e605211986/recipes/private";
- sha256 = "1mvma2xgjy9vkh468x80xlri6qfr7d494la1j6r1clkjsn5kg7hr";
- name = "recipe";
- };
- packageRequires = [ aes ];
- meta = {
- homepage = "https://melpa.org/#/private";
- license = lib.licenses.free;
- };
- }) {};
- private-diary = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "private-diary";
- ename = "private-diary";
- version = "20151216.857";
- src = fetchFromGitHub {
- owner = "cacology";
- repo = "private-diary";
- rev = "5b1aeb22f22447fd35e1c107b6db44a7b27b8a42";
- sha256 = "14g1hi9m91lb23jf4475pcdnb97fxrm52zblxag628nik3gp7qpb";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/ef39950941c522e64ea991c9eeecfb5f6f18f6a2/recipes/private-diary";
- sha256 = "0dgnf375c00nlkp66kbkzsf469063l03b9miiplbhd63zshlv1i1";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/private-diary";
- license = lib.licenses.free;
- };
- }) {};
- proc-net = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "proc-net";
- ename = "proc-net";
- version = "20130321.1712";
- src = fetchFromGitHub {
- owner = "nicferrier";
- repo = "emacs-proc-net";
- rev = "00bfc92a381787ec387974ed17070118ced6d9ad";
- sha256 = "1df4kpr298hkii3rhx341qqnc9g4nq5vna6w687knzibbm0iixga";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/4a518f37260084fa7e9221e9189aedc09a951f6d/recipes/proc-net";
- sha256 = "0562x2s3kk9vlaavak4lya1nlmn4mwlzlc7nw1l3687q023z4hmv";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/proc-net";
- license = lib.licenses.free;
- };
- }) {};
processing-mode = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -82874,32 +43200,6 @@
license = lib.licenses.free;
};
}) {};
- processing-snippets = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , yasnippet }:
- melpaBuild {
- pname = "processing-snippets";
- ename = "processing-snippets";
- version = "20140426.728";
- src = fetchFromGitHub {
- owner = "ptrv";
- repo = "processing2-emacs";
- rev = "6175b8eef76369c4b1b8608b8df9a37f14b1be5c";
- sha256 = "1mjzn8mynagck6fcw499gxzs1xm7gfqamlmgyqiy58wjni2xllr6";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/ba59561e8a2f259fde170a79844af5e1ef5ed34f/recipes/processing-snippets";
- sha256 = "09vkm9asmjz1in0f63s7bf4amifspsqf5w9pxiy5y0qvmn28fr2r";
- name = "recipe";
- };
- packageRequires = [ yasnippet ];
- meta = {
- homepage = "https://melpa.org/#/processing-snippets";
- license = lib.licenses.free;
- };
- }) {};
prodigy = callPackage ({ dash
, emacs
, f
@@ -82929,31 +43229,6 @@
license = lib.licenses.free;
};
}) {};
- professional-theme = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "professional-theme";
- ename = "professional-theme";
- version = "20150315.400";
- src = fetchFromGitHub {
- owner = "juanjux";
- repo = "emacs-professional-theme";
- rev = "0927d1474049a193f9f366bde5eb1887b9ba20ed";
- sha256 = "0hx7rxa3smdippcpj4j63k0r5l4wflllb0vpnwwknc9j93r7042b";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/bb79514b2afada80da82762890242de5ad88d8de/recipes/professional-theme";
- sha256 = "1l8nisn2c124cpylyahr76hfpdim2125zrns2897p466l5wcxcx5";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/professional-theme";
- license = lib.licenses.free;
- };
- }) {};
prog-fill = callPackage ({ cl-lib ? null
, emacs
, fetchFromGitHub
@@ -82981,82 +43256,6 @@
license = lib.licenses.free;
};
}) {};
- prognth = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "prognth";
- ename = "prognth";
- version = "20130920.1059";
- src = fetchFromGitHub {
- owner = "Fuco1";
- repo = "prognth";
- rev = "2f1ca4d34b1fd581163e1df122c85418137e8e62";
- sha256 = "1szxsbk470fg3jp70r20va9hnnf4jj0mb7kxdkn6rd7ky6w34lwm";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/db6d52b92317aa5ad5024131b62edb5f91f50033/recipes/prognth";
- sha256 = "0hr5a3s0ij4hvn424v885z7pcs62yqm9mamw5b096hgjxgjf6ylm";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/prognth";
- license = lib.licenses.free;
- };
- }) {};
- programmer-dvorak = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "programmer-dvorak";
- ename = "programmer-dvorak";
- version = "20150426.1837";
- src = fetchFromGitHub {
- owner = "yangchenyun";
- repo = "programmer-dvorak";
- rev = "c35d5e3b8b53c1e9341957b5d5db40387ba0c8ee";
- sha256 = "1y2n11d1kbpgb4jivvgd1j4gz409jfrg0kxfa04nx1b0nx4f3gd6";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/89b0f4b5838aa3d4572ca91fe60cf28664368cb6/recipes/programmer-dvorak";
- sha256 = "1w8r35hkl6qy9a89l0m74x9q2vcc4h2hvmi3r2hqcy2ypkn5l5bv";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/programmer-dvorak";
- license = lib.licenses.free;
- };
- }) {};
- project-abbrev = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "project-abbrev";
- ename = "project-abbrev";
- version = "20181206.902";
- src = fetchFromGitHub {
- owner = "jcs090218";
- repo = "project-abbrev";
- rev = "21572d56a70fc95ef2d3782310e634f1a2623bc5";
- sha256 = "0f8vd0yqa7k27jl9hxfqdfk6qs9q8p11j2iabdxi0v3wddhq3s2v";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/11580720cfbbbaeed9d914abb8a48705c195b159/recipes/project-abbrev";
- sha256 = "0771r4a652r3sqb601q5j6348kx1741s7svzxyfr2a4lspfffvqb";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/project-abbrev";
- license = lib.licenses.free;
- };
- }) {};
project-explorer = callPackage ({ cl-lib ? null
, emacs
, es-lib
@@ -83137,57 +43336,6 @@
license = lib.licenses.free;
};
}) {};
- project-root = callPackage ({ fetchhg
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "project-root";
- ename = "project-root";
- version = "20110206.1230";
- src = fetchhg {
- url = "https://bitbucket.com/piranha/project-root";
- rev = "843ca1f4ab2b";
- sha256 = "0nw02f5lmbqdfnw93d3383sdxx1d31szk23zvjlrmmdwv2124281";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5b7972602399f9df9139cff177e38653bb0f43ed/recipes/project-root";
- sha256 = "0xjir204zk254y2x70k9vqwirx2ljmrikpsgn5kn170d1bxvhwmb";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/project-root";
- license = lib.licenses.free;
- };
- }) {};
- project-shells = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , seq }:
- melpaBuild {
- pname = "project-shells";
- ename = "project-shells";
- version = "20171107.51";
- src = fetchFromGitHub {
- owner = "hying-caritas";
- repo = "project-shells";
- rev = "d9401de750e444697c2eb9de1ff79f2a2eba4af8";
- sha256 = "1x16l0gijirmj667s8l87nizsiww2wzjka9ydl4yxzchl7a486cp";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/becf54de5ae9582d7c76382dff16d40b04b1a464/recipes/project-shells";
- sha256 = "0mhifxcpgsfwrhbs7axg6ja4klgzzy9pc0nqa7w3qg45xgi9s4m8";
- name = "recipe";
- };
- packageRequires = [ emacs seq ];
- meta = {
- homepage = "https://melpa.org/#/project-shells";
- license = lib.licenses.free;
- };
- }) {};
projectile = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -83215,62 +43363,6 @@
license = lib.licenses.free;
};
}) {};
- projectile-codesearch = callPackage ({ codesearch
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , projectile }:
- melpaBuild {
- pname = "projectile-codesearch";
- ename = "projectile-codesearch";
- version = "20180508.822";
- src = fetchFromGitHub {
- owner = "abingham";
- repo = "emacs-codesearch";
- rev = "e40efc62e9333db0593bd81b5c78d08b19bfb193";
- sha256 = "04xivg6f19mlpsv77jwasg4ii9vlv8amblm03siwhx53ib9wlcyc";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/6b1b1d3e356c6b9bffdcf98848918efe2fdfa8c7/recipes/projectile-codesearch";
- sha256 = "1457dhmpgrq1qafr3v4ccw26ix10m60c5vlrpyqsfz8vh8lv0bb8";
- name = "recipe";
- };
- packageRequires = [ codesearch projectile ];
- meta = {
- homepage = "https://melpa.org/#/projectile-codesearch";
- license = lib.licenses.free;
- };
- }) {};
- projectile-direnv = callPackage ({ dash
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , projectile
- , s }:
- melpaBuild {
- pname = "projectile-direnv";
- ename = "projectile-direnv";
- version = "20160305.1738";
- src = fetchFromGitHub {
- owner = "christianromney";
- repo = "projectile-direnv";
- rev = "250a902585acb611e10cf0f0248a84416df01522";
- sha256 = "1yzq7zsm76p6gcgq3hz9bg3pgdj709gxx6jzp24mszkfb87jiw79";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/602485c251bc573e855dfd33e4e94052afbab93f/recipes/projectile-direnv";
- sha256 = "1s5dapdcblcbcqyv8df26v8wxl8bhrs9ybl5h5qbzz49gigd8nqh";
- name = "recipe";
- };
- packageRequires = [ dash emacs projectile s ];
- meta = {
- homepage = "https://melpa.org/#/projectile-direnv";
- license = lib.licenses.free;
- };
- }) {};
projectile-git-autofetch = callPackage ({ alert
, fetchFromGitHub
, fetchurl
@@ -83298,35 +43390,6 @@
license = lib.licenses.free;
};
}) {};
- projectile-hanami = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , inf-ruby
- , lib
- , melpaBuild
- , projectile
- , rake }:
- melpaBuild {
- pname = "projectile-hanami";
- ename = "projectile-hanami";
- version = "20160505.611";
- src = fetchFromGitHub {
- owner = "avdgaag";
- repo = "projectile-hanami";
- rev = "b1da03d14b96972b6d369ed6dde40f65b4a2ca41";
- sha256 = "1jsp2ca07w1y0v7zrx47yj0apqmkzx5577labp3ndd751x21bvnj";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/9c0123322baee1e96afd055de3f44827574d2b5f/recipes/projectile-hanami";
- sha256 = "0qi9i4wdggrmihf1j42fqrf38psmb33rlafg3y6da5r7lpn03j1a";
- name = "recipe";
- };
- packageRequires = [ emacs inf-ruby projectile rake ];
- meta = {
- homepage = "https://melpa.org/#/projectile-hanami";
- license = lib.licenses.free;
- };
- }) {};
projectile-rails = callPackage ({ emacs
, f
, fetchFromGitHub
@@ -83412,33 +43475,6 @@
license = lib.licenses.free;
};
}) {};
- projectile-speedbar = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , projectile
- , sr-speedbar }:
- melpaBuild {
- pname = "projectile-speedbar";
- ename = "projectile-speedbar";
- version = "20170516.1943";
- src = fetchFromGitHub {
- owner = "anshulverma";
- repo = "projectile-speedbar";
- rev = "dcab13db72c2084edbebe808e35f1126fe0b3bcd";
- sha256 = "106a4y5r1adjpbnjn734s7d910r6akhjlyjpd6bnczjhp357wyc7";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/eda8cb5a175258404c347ffa30fca002504467a0/recipes/projectile-speedbar";
- sha256 = "0dli4gzsiycivh8dwa00lfpbimyg42qygfachzrhi8qy5413pwlp";
- name = "recipe";
- };
- packageRequires = [ projectile sr-speedbar ];
- meta = {
- homepage = "https://melpa.org/#/projectile-speedbar";
- license = lib.licenses.free;
- };
- }) {};
projectile-trailblazer = callPackage ({ emacs
, f
, fetchFromGitHub
@@ -83497,34 +43533,6 @@
license = lib.licenses.free;
};
}) {};
- projector = callPackage ({ alert
- , cl-lib ? null
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , projectile }:
- melpaBuild {
- pname = "projector";
- ename = "projector";
- version = "20190107.1325";
- src = fetchFromGitHub {
- owner = "waymondo";
- repo = "projector.el";
- rev = "b7ee3f78e54525c969316c3c717ec3b83f074b00";
- sha256 = "09c8cfpz4i4vs7b0q4srg52spjwc1carr8n52xggk6dc5gbrg5wd";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/420ffea4549f59677a16c1ee89c77b866487e302/recipes/projector";
- sha256 = "0hrinplk607wcc2ibn05pl8ghikv9f3zvymncp6nz95jw9brdapf";
- name = "recipe";
- };
- packageRequires = [ alert cl-lib projectile ];
- meta = {
- homepage = "https://melpa.org/#/projector";
- license = lib.licenses.free;
- };
- }) {};
projekt = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -83551,60 +43559,6 @@
license = lib.licenses.free;
};
}) {};
- projmake-mode = callPackage ({ dash
- , fetchFromGitHub
- , fetchurl
- , indicators
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "projmake-mode";
- ename = "projmake-mode";
- version = "20161031.1015";
- src = fetchFromGitHub {
- owner = "ericbmerritt";
- repo = "projmake-mode";
- rev = "a897701f7e8f8cc11459ed44eb0e454db2a460c1";
- sha256 = "0las0xl4af6sn5pbllq16abw2hj1kswwpkyi6lf31sbwr5wnq4qb";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/df23138073d2416fa6522beca86b7a62eb4d42e3/recipes/projmake-mode";
- sha256 = "192gvmhcz1anl80hpmcjwwd08dljyrap9sk6qj0y85mcnaafm882";
- name = "recipe";
- };
- packageRequires = [ dash indicators ];
- meta = {
- homepage = "https://melpa.org/#/projmake-mode";
- license = lib.licenses.free;
- };
- }) {};
- promise = callPackage ({ async
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "promise";
- ename = "promise";
- version = "20190405.105";
- src = fetchFromGitHub {
- owner = "chuntaro";
- repo = "emacs-promise";
- rev = "f237a52200b514d642a5e89f1437b0245f063e5d";
- sha256 = "0k8bdz5lnipyj1bnyf3vwaqyd1y7wc6mxavqigv435r04520fmx7";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/3eaf5ac668008759677b9cc6f11406abd573012a/recipes/promise";
- sha256 = "1y1v3ikcmh9yp5fdwagcjg755bgkyqk714lb6s1hb2606m3ia03s";
- name = "recipe";
- };
- packageRequires = [ async emacs ];
- meta = {
- homepage = "https://melpa.org/#/promise";
- license = lib.licenses.free;
- };
- }) {};
prompt-text = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -83630,32 +43584,6 @@
license = lib.licenses.free;
};
}) {};
- prompts = callPackage ({ dash
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "prompts";
- ename = "prompts";
- version = "20160916.341";
- src = fetchFromGitHub {
- owner = "GuiltyDolphin";
- repo = "prompts.el";
- rev = "1cd5e732ff2a86b47836eb7252e5b59cd4b6ab26";
- sha256 = "10y8x54p64zs1jlq4nf1kixpb42078n2gdf9s62b1siyb1vhl581";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/2395402e72d9b0f7ce2ca5fcb4497919f90a8fe2/recipes/prompts";
- sha256 = "1fz5sbc45jiq64y89lm8nj6lsanq3lzyjzahxzrgqvr7655pphzm";
- name = "recipe";
- };
- packageRequires = [ dash ];
- meta = {
- homepage = "https://melpa.org/#/prompts";
- license = lib.licenses.free;
- };
- }) {};
proof-general = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -83708,85 +43636,6 @@
license = lib.licenses.free;
};
}) {};
- propfont-mixed = callPackage ({ cl-lib ? null
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "propfont-mixed";
- ename = "propfont-mixed";
- version = "20150113.1411";
- src = fetchFromGitHub {
- owner = "ikirill";
- repo = "propfont-mixed";
- rev = "0b461ef4754a469610dba71874a34b6da42176bf";
- sha256 = "0lch20njy248w7bnvgs7jz0zqasskf5dakmykxwpb48llm6kx95v";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/3ccb401b60cb1128ba50a5afecd97feca6d00d7a/recipes/propfont-mixed";
- sha256 = "19k0ydpkiviznsngwcqwn4k30r6j8w34pchgpjlsfwq1bndaai9y";
- name = "recipe";
- };
- packageRequires = [ cl-lib emacs ];
- meta = {
- homepage = "https://melpa.org/#/propfont-mixed";
- license = lib.licenses.free;
- };
- }) {};
- proportional = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "proportional";
- ename = "proportional";
- version = "20171025.1637";
- src = fetchFromGitHub {
- owner = "ksjogo";
- repo = "proportional";
- rev = "f671ffe8fd803e2fc462e2e1844aeeab1a13918e";
- sha256 = "02sbrcb9c27djk64xv41vii6pbw83b6iljrd66w4ad9hgz2pkxzk";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/9e0a7f061df4cce44e5fe98f6e1c31bec4a7338f/recipes/proportional";
- sha256 = "022lhbslzd67wyah8r0gl73vzxgjjwia08l3ssdd08jj3p56m3wx";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/proportional";
- license = lib.licenses.free;
- };
- }) {};
- prosjekt = callPackage ({ dash
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "prosjekt";
- ename = "prosjekt";
- version = "20151127.616";
- src = fetchFromGitHub {
- owner = "abingham";
- repo = "prosjekt";
- rev = "a864a8be5842223043702395f311e3350c28e9db";
- sha256 = "1m8zvrv5aws7b0dffk8y6b5mncdk2c4k90mx69jys10fs0gc5hb3";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/6d359ec827573dd8c871c4f23df5d1737f1830e7/recipes/prosjekt";
- sha256 = "1fn7ii1bq7bjkz27hihclpvx0aabgwy3kv47r9qibjl2jin97rck";
- name = "recipe";
- };
- packageRequires = [ dash ];
- meta = {
- homepage = "https://melpa.org/#/prosjekt";
- license = lib.licenses.free;
- };
- }) {};
protobuf-mode = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -83838,74 +43687,6 @@
license = lib.licenses.free;
};
}) {};
- proxy-mode = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "proxy-mode";
- ename = "proxy-mode";
- version = "20190129.1608";
- src = fetchFromGitHub {
- owner = "stardiviner";
- repo = "proxy-mode";
- rev = "a6c55e97dbe4ec4df9dc21d234cabe806dce3a29";
- sha256 = "13xa19k0xyqq03ypih0lrkm97l2c5zha8mwl264h9vamn81i8vm2";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/25224d3bcdb625314e931d5acc22f60c7192a84b/recipes/proxy-mode";
- sha256 = "0ldjfmxn8k8bzvdrlsfpijsmgn754aza54by5d59k7a1xn6d37mp";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/proxy-mode";
- license = lib.licenses.free;
- };
- }) {};
- psc-ide = callPackage ({ company
- , dash
- , dash-functional
- , emacs
- , fetchFromGitHub
- , fetchurl
- , flycheck
- , let-alist
- , lib
- , melpaBuild
- , s
- , seq }:
- melpaBuild {
- pname = "psc-ide";
- ename = "psc-ide";
- version = "20190326.1410";
- src = fetchFromGitHub {
- owner = "purescript-emacs";
- repo = "psc-ide-emacs";
- rev = "a10cc85565f330ee277698b27f3f715fef2e1ce2";
- sha256 = "1nj8g31zys86p2kb1yrx9w0657qg3ckz5awfwz5wd5w1axxigk23";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/9eb5ff1de1d207317df052ecbd65dbe0f8766f5d/recipes/psc-ide";
- sha256 = "0gvq4cmmnbh4afzhmpqmizlvyr2fmd88jwdcac3w4b25fvhzr8hp";
- name = "recipe";
- };
- packageRequires = [
- company
- dash
- dash-functional
- emacs
- flycheck
- let-alist
- s
- seq
- ];
- meta = {
- homepage = "https://melpa.org/#/psc-ide";
- license = lib.licenses.free;
- };
- }) {};
psci = callPackage ({ dash
, deferred
, f
@@ -84073,31 +43854,6 @@
license = lib.licenses.free;
};
}) {};
- pulseaudio-control = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "pulseaudio-control";
- ename = "pulseaudio-control";
- version = "20190331.18";
- src = fetchFromGitHub {
- owner = "flexibeast";
- repo = "pulseaudio-control";
- rev = "638a02b0b59cd9662abbbb9dc947d0fed115b72d";
- sha256 = "0kiqm9vcp2gi4a4c7isgffppx4bchf03vwlx8h70yhfycns2v0bk";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/7964f226e12c3a27ff856e28f4b030ebf304aea2/recipes/pulseaudio-control";
- sha256 = "1vdhg85lbdx7sj1xg2vhhfmhrrp5q2x560agnsb0gxi2akp6z9r0";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/pulseaudio-control";
- license = lib.licenses.free;
- };
- }) {};
punctuality-logger = callPackage ({ fetchFromGitLab
, fetchurl
, lib
@@ -84150,31 +43906,6 @@
license = lib.licenses.free;
};
}) {};
- punpun-theme = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "punpun-theme";
- ename = "punpun-theme";
- version = "20161103.147";
- src = fetchFromGitHub {
- owner = "wasamasa";
- repo = "punpun-theme";
- rev = "cce8b10b2df6f9187a9eaa0c3f21ff0dda175968";
- sha256 = "1iz1qc9bphl2y2z7abc33fvyaccj733drkl7nzbr1jlpbknkmk2k";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/77a9edbb36dc9474adb23d356e6c596789aab2a2/recipes/punpun-theme";
- sha256 = "1l7nphh8v7w5w790cwmnp6nw5rciwhgzkvynkrvpiv9chhacx0xg";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/punpun-theme";
- license = lib.licenses.free;
- };
- }) {};
puppet-mode = callPackage ({ cl-lib ? null
, emacs
, fetchFromGitHub
@@ -84203,108 +43934,6 @@
license = lib.licenses.free;
};
}) {};
- purescript-mode = callPackage ({ cl-lib ? null
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "purescript-mode";
- ename = "purescript-mode";
- version = "20190227.1345";
- src = fetchFromGitHub {
- owner = "purescript-emacs";
- repo = "purescript-mode";
- rev = "43d8d205506d10ef829e77079fc4b8c569998f44";
- sha256 = "0xbqy408532gnknfj78cnp9raqcmfk4scaxym7nzb8ffh2bd721n";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/55462ed7e9bf353f26c5315015436b2a1b37f9bc/recipes/purescript-mode";
- sha256 = "1g30xbv3xvv52r873465a2lp6fnws9q8dz277697qm0mgxkpimbp";
- name = "recipe";
- };
- packageRequires = [ cl-lib ];
- meta = {
- homepage = "https://melpa.org/#/purescript-mode";
- license = lib.licenses.free;
- };
- }) {};
- purp-theme = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "purp-theme";
- ename = "purp-theme";
- version = "20181211.1102";
- src = fetchFromGitHub {
- owner = "gnuvince";
- repo = "purp";
- rev = "4f5a95b132779f5219f7dc6bd6a412b7de1d8d1b";
- sha256 = "1cbnw3fj5hy4wjkwrzikjpg1mk3dj9ic0bhdiyv9d6sv26d5f1sz";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/9e731ed27d812d822ebb1dbd639441ce59c4ecf7/recipes/purp-theme";
- sha256 = "1ni8nnyfg4g49fw5m4pxa8fr147pyyvqa5gmydggv5r1xmldgsli";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/purp-theme";
- license = lib.licenses.free;
- };
- }) {};
- purple-haze-theme = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "purple-haze-theme";
- ename = "purple-haze-theme";
- version = "20141014.1929";
- src = fetchFromGitHub {
- owner = "emacsfodder";
- repo = "emacs-purple-haze-theme";
- rev = "3e245cbef7cd09e6b3ee124963e372a04e9a6485";
- sha256 = "15myw5rkbnnpgzpiipm5xl4cyzymv8hh66x9al4aalb5nf52dckc";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/6f26b8281f9bd05e3c8f2ef21838275711e622c9/recipes/purple-haze-theme";
- sha256 = "1rvfpm3zkhdv3ikc8pqqngf9pi0niwyi52pg8dq8i056nwc5bk9z";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/purple-haze-theme";
- license = lib.licenses.free;
- };
- }) {};
- purty-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "purty-mode";
- ename = "purty-mode";
- version = "20131004.1559";
- src = fetchFromGitHub {
- owner = "jcatw";
- repo = "purty-mode";
- rev = "ad48149bfd0c765796a728b22d679e03fc124328";
- sha256 = "1gx2c94bq34d2zjdr9mbnafq6alzz8vrlj5pskm15p225s85a2q3";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/purty-mode";
- sha256 = "0gbbwl5kg74jf1i1zsr40zg3gw43qmz1l87k0r578v1xvyqmhm1i";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/purty-mode";
- license = lib.licenses.free;
- };
- }) {};
pushbullet = callPackage ({ fetchFromGitHub
, fetchurl
, grapnel
@@ -84332,56 +43961,6 @@
license = lib.licenses.free;
};
}) {};
- pushover = callPackage ({ cl-lib ? null
- , fetchgit
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "pushover";
- ename = "pushover";
- version = "20170818.1403";
- src = fetchgit {
- url = "https://git.flintfam.org/swf-projects/emacs-pushover.git";
- rev = "bbe3ac8df3c532a72da4552615af960b8a577588";
- sha256 = "187bisngi37n66ik2dq7rg4hy4nlxl9pifqgqq08kf9238y8hd11";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/e9553cd029bc0733c89d2c790cb173d9668a9eba/recipes/pushover";
- sha256 = "0im5bf2r69s2jb6scm8xdk63y1xi5zm4kg9ghfixlvyvipfli4kl";
- name = "recipe";
- };
- packageRequires = [ cl-lib ];
- meta = {
- homepage = "https://melpa.org/#/pushover";
- license = lib.licenses.free;
- };
- }) {};
- px = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "px";
- ename = "px";
- version = "20170317.1630";
- src = fetchFromGitHub {
- owner = "aaptel";
- repo = "preview-latex";
- rev = "0c52f7933eab3ca1642ab0df151db9950430c9e2";
- sha256 = "0f741a2gpc2mdl85ivbiskga620b6ci2x0dwjs7m8c1vk6xrxbpi";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/326fc9b057a5016248ac36ca166e9a38f13babf6/recipes/px";
- sha256 = "0xjmz18m2dslh6yq5z32r43zq3svfxn8mhrfbmihglyv2mkwxw44";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/px";
- license = lib.licenses.free;
- };
- }) {};
py-autopep8 = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -84407,56 +43986,6 @@
license = lib.licenses.free;
};
}) {};
- py-gnitset = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "py-gnitset";
- ename = "py-gnitset";
- version = "20170821.1032";
- src = fetchFromGitHub {
- owner = "quodlibetor";
- repo = "py-gnitset";
- rev = "1e993cc29cbc31e06fe1e335dec198e21972fa55";
- sha256 = "1hslq2bdk95cgza9qbskxf942ckhjb4bqi6nrhbmlnm9agmjqm59";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/d00b78ead693e844e35c760fe2c39b8ed6cb0d81/recipes/py-gnitset";
- sha256 = "0f6ivq4ignb4gfxw2q8qvigvv3fbvvyr87x25wcaz6yipg1lr18r";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/py-gnitset";
- license = lib.licenses.free;
- };
- }) {};
- py-import-check = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "py-import-check";
- ename = "py-import-check";
- version = "20130802.411";
- src = fetchFromGitHub {
- owner = "psibi";
- repo = "emacs-py-import-check";
- rev = "38ad91e67047bd37231497d11d409d064d510f98";
- sha256 = "1irdc740za4vb1ixnp2j33m8xwknybdg5szj1pgy28r72w4lipfy";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/abe81fe96790ceebcf0951595644ea6a82613890/recipes/py-import-check";
- sha256 = "1261dki0q44sw9h0g1305i2fj1dg9xgwzry50jbn2idcrqg4xf7k";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/py-import-check";
- license = lib.licenses.free;
- };
- }) {};
py-isort = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -84482,60 +44011,6 @@
license = lib.licenses.free;
};
}) {};
- py-smart-operator = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , s }:
- melpaBuild {
- pname = "py-smart-operator";
- ename = "py-smart-operator";
- version = "20170531.509";
- src = fetchFromGitHub {
- owner = "rmuslimov";
- repo = "py-smart-operator";
- rev = "0c8a66faca4b35158d0b5885472cb75286039167";
- sha256 = "09pmkp24s7nwh6p4pzsjp1z65ksi9n3n2xv7d3igpa86l8qgcm2d";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/a7491a1825b7aaa5f76aafadb8f04721ab1b1cfe/recipes/py-smart-operator";
- sha256 = "1n0bdr9z2s1ikhmfz642k94gjzb88anwlb61mh27ay8wqdgm74c4";
- name = "recipe";
- };
- packageRequires = [ s ];
- meta = {
- homepage = "https://melpa.org/#/py-smart-operator";
- license = lib.licenses.free;
- };
- }) {};
- py-test = callPackage ({ dash
- , emacs
- , f
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "py-test";
- ename = "py-test";
- version = "20151116.2222";
- src = fetchFromGitHub {
- owner = "Bogdanp";
- repo = "py-test.el";
- rev = "3b2a0bdaacb54df6f2bee8317423e5c0d159d5cf";
- sha256 = "1s39407z3rxz10r5sshv2vj7s23ylkhg59ixasgnpjk82gl4igpf";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/84690ba6b033027772c20bf20432427b32d3231a/recipes/py-test";
- sha256 = "1mbwbzg606winf5af7qkg6a1hg79lc7k2miq4d3mwih496l5sinb";
- name = "recipe";
- };
- packageRequires = [ dash emacs f ];
- meta = {
- homepage = "https://melpa.org/#/py-test";
- license = lib.licenses.free;
- };
- }) {};
py-yapf = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -84588,32 +44063,6 @@
license = lib.licenses.free;
};
}) {};
- pycoverage = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "pycoverage";
- ename = "pycoverage";
- version = "20160324.1812";
- src = fetchFromGitHub {
- owner = "mattharrison";
- repo = "pycoverage.el";
- rev = "dbc152a807efcaac4e50bedb64c026674009a279";
- sha256 = "0qap6iz865l43mixga7541c2z9kdx8zkkdcgdlgn6n8pyv8iz7qs";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/eb0310bbe8427abdcba2b30414ec26475b0b7440/recipes/pycoverage";
- sha256 = "1jaanmpnawk0r6zfzx18crqml7lv412l2l0iabp345xvfvsh8h1m";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/pycoverage";
- license = lib.licenses.free;
- };
- }) {};
pydoc = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -84639,30 +44088,6 @@
license = lib.licenses.free;
};
}) {};
- pydoc-info = callPackage ({ fetchhg
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "pydoc-info";
- ename = "pydoc-info";
- version = "20110301.34";
- src = fetchhg {
- url = "https://bitbucket.com/jonwaltman/pydoc-info";
- rev = "151d877c8fb8";
- sha256 = "1mzyr6yznkyv99x9q8zx2f270ngjh8s94zvnhcbhidi57inpd1nh";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5b7972602399f9df9139cff177e38653bb0f43ed/recipes/pydoc-info";
- sha256 = "0l80g0rzkk3a1wrw2riiywz9wdyxwr5i64jb2h5r8alp9qq1k7mf";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/pydoc-info";
- license = lib.licenses.free;
- };
- }) {};
pyenv-mode = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -84689,87 +44114,6 @@
license = lib.licenses.free;
};
}) {};
- pyenv-mode-auto = callPackage ({ f
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , pyenv-mode
- , s }:
- melpaBuild {
- pname = "pyenv-mode-auto";
- ename = "pyenv-mode-auto";
- version = "20180620.552";
- src = fetchFromGitHub {
- owner = "ssbb";
- repo = "pyenv-mode-auto";
- rev = "b6eef88ad89865a7e0ec8bae8c6ce8239cb649c6";
- sha256 = "1gz7145jnjcky1751pqrlhh3pq02ybsmz49ngx4ip2589nry7iyv";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/f3fcb707356bd16fd0b573c176023534cd69d0d7/recipes/pyenv-mode-auto";
- sha256 = "1l7h4fas1vshkh4skxzpw7v2a11s1hwnb20n6a81yh701pbikqnd";
- name = "recipe";
- };
- packageRequires = [ f pyenv-mode s ];
- meta = {
- homepage = "https://melpa.org/#/pyenv-mode-auto";
- license = lib.licenses.free;
- };
- }) {};
- pyfmt = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "pyfmt";
- ename = "pyfmt";
- version = "20150521.1356";
- src = fetchFromGitHub {
- owner = "aheaume";
- repo = "pyfmt.el";
- rev = "3022283c1ae7da1b6a983fedc90179670725f8d0";
- sha256 = "0p0hjac9qk809ygmg566avv4fkljfnrn7rk1pxh61dsj7al6kzzp";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/68d477025ae5af50bf8f7b37f2adfa9159502e13/recipes/pyfmt";
- sha256 = "112kjsp763c2plhqlhydpngrabhc58ya7cszvi4119xqw2s699g6";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/pyfmt";
- license = lib.licenses.free;
- };
- }) {};
- pygen = callPackage ({ dash
- , elpy
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , python-mode }:
- melpaBuild {
- pname = "pygen";
- ename = "pygen";
- version = "20161120.2106";
- src = fetchFromGitHub {
- owner = "JackCrawley";
- repo = "pygen";
- rev = "3a5d1d1a0640865b15be05cd1eeb33bb4793b622";
- sha256 = "0fzpvdwb7hhmfmjxzvap8413bc81lrx8r3ij3yasqaxyqw3a6vy1";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/e761724e52de6fa4d92950751953645dd439d340/recipes/pygen";
- sha256 = "1ivg7a1ghg0bvz3idz7dzy5yb0ln3b2j7dfizg2g0fi4iwvc4czz";
- name = "recipe";
- };
- packageRequires = [ dash elpy python-mode ];
- meta = {
- homepage = "https://melpa.org/#/pygen";
- license = lib.licenses.free;
- };
- }) {};
pyim = callPackage ({ async
, emacs
, fetchFromGitHub
@@ -84824,32 +44168,6 @@
license = lib.licenses.free;
};
}) {};
- pyim-cangjie5dict = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , pyim }:
- melpaBuild {
- pname = "pyim-cangjie5dict";
- ename = "pyim-cangjie5dict";
- version = "20170729.1946";
- src = fetchFromGitHub {
- owner = "HesperusArcher";
- repo = "pyim-cangjie5dict";
- rev = "c8618590780b818db1a67a29bc47c5d25903517a";
- sha256 = "0p49h2kn8wy3b51zahzyc1cy24h3b44cg5yjpmv4w23dhsr4zlz8";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/9a15a17a5aa78aed72958b2a1bde53f0c0ab5be7/recipes/pyim-cangjie5dict";
- sha256 = "1l2k8kfnfciacp1zps8j1g6ijzv1k3g9198079l8c8xlw789irlv";
- name = "recipe";
- };
- packageRequires = [ pyim ];
- meta = {
- homepage = "https://melpa.org/#/pyim-cangjie5dict";
- license = lib.licenses.free;
- };
- }) {};
pyim-wbdict = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -84903,57 +44221,6 @@
license = lib.licenses.free;
};
}) {};
- pyimpsort = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "pyimpsort";
- ename = "pyimpsort";
- version = "20160129.2053";
- src = fetchFromGitHub {
- owner = "emacs-pe";
- repo = "pyimpsort.el";
- rev = "d5c61d70896b642646dfd3c809c06174ae086c1a";
- sha256 = "05qx1p19dw3nr264shihfn33k579hd0wf4cxki5cqrxi7xzpjgrc";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/97eb7c0934298d393910419fd55d7d5f1b0cfc38/recipes/pyimpsort";
- sha256 = "0kdk3bmryfzvwf8vshfszbih8mwncf4xlb0n0n0yjn0p1n98q99k";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/pyimpsort";
- license = lib.licenses.free;
- };
- }) {};
- pylint = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "pylint";
- ename = "pylint";
- version = "20170402.555";
- src = fetchFromGitHub {
- owner = "PyCQA";
- repo = "pylint";
- rev = "c812c59b31ba0b3f45c4bef6d4d93f561f79949d";
- sha256 = "1234ms5brqvx468hqpslzg4nsj42g9vjza2rp5msn15nj7cdhbxj";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/a073c91d6f4d31b82f6bfee785044c4e3ae96d3f/recipes/pylint";
- sha256 = "1138a8dn9y4ypbphs1zfvr8gr4vdjcy0adsl4xfbgsls4kcdwpxx";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/pylint";
- license = lib.licenses.free;
- };
- }) {};
pynt = callPackage ({ deferred
, ein
, emacs
@@ -84984,60 +44251,6 @@
license = lib.licenses.free;
};
}) {};
- pyramid = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , pythonic
- , tablist }:
- melpaBuild {
- pname = "pyramid";
- ename = "pyramid";
- version = "20181212.404";
- src = fetchFromGitHub {
- owner = "dakra";
- repo = "pyramid.el";
- rev = "277f7c623f489fd31c56d6e131c5481a71b6a926";
- sha256 = "1xpb08m5zjyxpq45mmhfysxgaga2xj9r6nw6zs2rx0zkv6qjklnr";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/f786a47c2a6243c693163680146606c71502d0be/recipes/pyramid";
- sha256 = "149p9k6wjlgamm3vrkkcdj4fqhdfsskv1jqflp1bccfkgqpi5096";
- name = "recipe";
- };
- packageRequires = [ emacs pythonic tablist ];
- meta = {
- homepage = "https://melpa.org/#/pyramid";
- license = lib.licenses.free;
- };
- }) {};
- pytest = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , s }:
- melpaBuild {
- pname = "pytest";
- ename = "pytest";
- version = "20181005.824";
- src = fetchFromGitHub {
- owner = "ionrock";
- repo = "pytest-el";
- rev = "1bfa7549001e61ecd59cd6eae7c6656a924d1ba4";
- sha256 = "1ry0czn0qjjiw75v47jamxbfzh70jxai6lvf3pp5v87wp1xhnznh";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/33a854a27adbaf57d344340199f90d52747b8450/recipes/pytest";
- sha256 = "0ssib65wa20h8r6156f392l481vns5fcax6w70hcawmn84nficdh";
- name = "recipe";
- };
- packageRequires = [ s ];
- meta = {
- homepage = "https://melpa.org/#/pytest";
- license = lib.licenses.free;
- };
- }) {};
pytest-pdb-break = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -85064,81 +44277,6 @@
license = lib.licenses.free;
};
}) {};
- python-cell = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "python-cell";
- ename = "python-cell";
- version = "20190217.1023";
- src = fetchFromGitHub {
- owner = "thisch";
- repo = "python-cell.el";
- rev = "665725446b194dbaaff9645dd880524368dd710a";
- sha256 = "1rjh16jacp98i0l78ij5lfp5f0b42qhfzms2x8zwr9j2aj1csy2h";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/0549866c5e96f673ec9dec298e7ff9d5779d443b/recipes/python-cell";
- sha256 = "07i3vyci52jvslq28djwkgx1r157wvxd99rvqlxnmmsl5yj4k1jf";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/python-cell";
- license = lib.licenses.free;
- };
- }) {};
- python-django = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "python-django";
- ename = "python-django";
- version = "20150821.2104";
- src = fetchFromGitHub {
- owner = "fgallina";
- repo = "python-django.el";
- rev = "fc54ad74f0309670359b939f64d0f1fff68aeac4";
- sha256 = "1qckn5bi1ib54hgqbym5qqwzvbv70ria1w3c2x543xlr0l7zga6h";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/29b2cd21e7b504222aed92ec062402f3e2a818fc/recipes/python-django";
- sha256 = "02whx8g8r02mzng7d7bnbkz5n7gyzp5hcnmvd6a3lq106c0h7w9k";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/python-django";
- license = lib.licenses.free;
- };
- }) {};
- python-docstring = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "python-docstring";
- ename = "python-docstring";
- version = "20170508.156";
- src = fetchFromGitHub {
- owner = "glyph";
- repo = "python-docstring-mode";
- rev = "d35d2e0fbe468743c19a870fec7b28a7e725790d";
- sha256 = "11y208svg5nxw8k7cbgd2iydng40gwpr85bdnxkywd910sac5p7b";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/e159e59ba0b60326cca0e1ea68fac4b85d54cd24/recipes/python-docstring";
- sha256 = "1vi30y71vflsbprp5j4phbp7x1j24vxn9d6sifaddari0g0zxpfw";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/python-docstring";
- license = lib.licenses.free;
- };
- }) {};
python-environment = callPackage ({ deferred
, fetchFromGitHub
, fetchurl
@@ -85165,31 +44303,6 @@
license = lib.licenses.free;
};
}) {};
- python-info = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "python-info";
- ename = "python-info";
- version = "20151228.1052";
- src = fetchFromGitHub {
- owner = "Wilfred";
- repo = "python-info";
- rev = "306f15441b54b25757cdfd3b327b84024ea21ed7";
- sha256 = "0zk6014dzfrb3y3nhs890x082xf044w0a8nmy6rlrj375lvhfn99";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/2a30746451ec5ffab250e160c1d5bd29b8dc6b54/recipes/python-info";
- sha256 = "0kvpz1r2si94rs1iajn1ffmx7a5bgyjnzri36ajdgd5gcgh41dhy";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/python-info";
- license = lib.licenses.free;
- };
- }) {};
python-mode = callPackage ({ fetchFromGitLab
, fetchurl
, lib
@@ -85253,58 +44366,6 @@
license = lib.licenses.free;
};
}) {};
- python-switch-quotes = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "python-switch-quotes";
- ename = "python-switch-quotes";
- version = "20161228.9";
- src = fetchFromGitHub {
- owner = "werehuman";
- repo = "python-switch-quotes";
- rev = "93f1e9b40e061a6cea480139e8b1362b6404abd0";
- sha256 = "1x04hnf3m8cgqp0i566q4n7kh59cayzfxka3g07kv0h543xbys4n";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/d99fbd3d0c486bf89c9c0937e2ebf378be39293f/recipes/python-switch-quotes";
- sha256 = "1wc27q9ac8p7c5mfk3kznbmdd5ds4ray0csgba79n19g152y5jjc";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/python-switch-quotes";
- license = lib.licenses.free;
- };
- }) {};
- python-test = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "python-test";
- ename = "python-test";
- version = "20181017.1729";
- src = fetchFromGitHub {
- owner = "emacs-pe";
- repo = "python-test.el";
- rev = "f899975b133539e19ba822e4b0bfd1a28572967e";
- sha256 = "0ww0qf9hsd8j31dc0p3fmsiqsir3mqbd4pwv4i29qidmbgrk3cv0";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/0ea68b3aa9c057e81a3e90a359a38ac16cb26c2f/recipes/python-test";
- sha256 = "16grx9xzl48dcwflfmv64wigyxlw495a6q01b1ynkqj5sjdl3fkn";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/python-test";
- license = lib.licenses.free;
- };
- }) {};
python-x = callPackage ({ fetchFromGitLab
, fetchurl
, folding
@@ -85387,32 +44448,6 @@
license = lib.licenses.free;
};
}) {};
- q-mode = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "q-mode";
- ename = "q-mode";
- version = "20181216.947";
- src = fetchFromGitHub {
- owner = "psaris";
- repo = "q-mode";
- rev = "7a13fb68a0ad3d843c8cdc188cf0adb9723f42f7";
- sha256 = "0di229ma7jr9jcck36qjrzilkbp428kkx53qs6c9xw9jhv6yklbz";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/fff65433eff01d6239809df4c047f0e4349cc4a9/recipes/q-mode";
- sha256 = "1vv3hynd6k050nxln83l703ymzyh1kl69cdy4yabdvmkqw4gbshz";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/q-mode";
- license = lib.licenses.free;
- };
- }) {};
qiita = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -85515,31 +44550,6 @@
license = lib.licenses.free;
};
}) {};
- quack = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "quack";
- ename = "quack";
- version = "20181106.501";
- src = fetchFromGitHub {
- owner = "emacsmirror";
- repo = "quack";
- rev = "2146805ce2b5a9b155d73929986f11e713787e26";
- sha256 = "005wkji4wjqqilgmqy81rjqr8zx4gl39mari2ahvr9mfps2ypmjz";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/aa58bf19d4b65ec785677a36709794ae5aebded4/recipes/quack";
- sha256 = "18f3py9vr08589g9kvbcn2nvpd074rx45ni9k66cwl3hjb3hdkg5";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/quack";
- license = lib.licenses.free;
- };
- }) {};
quasi-monochrome-theme = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -85565,187 +44575,6 @@
license = lib.licenses.free;
};
}) {};
- quelpa = callPackage ({ emacs
- , fetchgit
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "quelpa";
- ename = "quelpa";
- version = "20190217.450";
- src = fetchgit {
- url = "https://framagit.org/steckerhalter/quelpa.git";
- rev = "716048b5ee048797551a59a4bd121026486db214";
- sha256 = "05926kvgp7mbdmwlfn2sdqzxg0b5nxr41m08p8mywfwjqjvnsvw8";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/a496196d405c152600d44ef4aa28557f489c542c/recipes/quelpa";
- sha256 = "0qm4dxwlvaka6j8ismb4lhar4dzlhpvjsx6524w15ilcbdbyqqjl";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/quelpa";
- license = lib.licenses.free;
- };
- }) {};
- quelpa-use-package = callPackage ({ emacs
- , fetchgit
- , fetchurl
- , lib
- , melpaBuild
- , quelpa
- , use-package }:
- melpaBuild {
- pname = "quelpa-use-package";
- ename = "quelpa-use-package";
- version = "20190210.1038";
- src = fetchgit {
- url = "https://framagit.org/steckerhalter/quelpa-use-package.git";
- rev = "6f3cc87caa6cb8795079c5cab3c6665970859098";
- sha256 = "129pigh1njn50s1lq81blcn54bkb6hwrlxg0sk7m1zsf6rybw0rf";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/a496196d405c152600d44ef4aa28557f489c542c/recipes/quelpa-use-package";
- sha256 = "1rdhnv7iz9clcy68j1gqv8cwq70ip4w12179v553lyikk9icrpp8";
- name = "recipe";
- };
- packageRequires = [ emacs quelpa use-package ];
- meta = {
- homepage = "https://melpa.org/#/quelpa-use-package";
- license = lib.licenses.free;
- };
- }) {};
- quick-buffer-switch = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "quick-buffer-switch";
- ename = "quick-buffer-switch";
- version = "20151007.1508";
- src = fetchFromGitHub {
- owner = "renard";
- repo = "quick-buffer-switch";
- rev = "d5fdd67b4c9f04b7a7122da2215e4ae076a03b1b";
- sha256 = "0kh63nzdzwxksn2ar2i1ds7n96jga2dhhc9gg27p1g2ca66fs6h5";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/30f167afc241f3ec24c092f2f06dbabd4dd11bcc/recipes/quick-buffer-switch";
- sha256 = "1fsnha3x3pgq582libb3dmxb93aagv1avnc0rigpfd7hv6bagj40";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/quick-buffer-switch";
- license = lib.licenses.free;
- };
- }) {};
- quick-peek = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "quick-peek";
- ename = "quick-peek";
- version = "20190208.715";
- src = fetchFromGitHub {
- owner = "cpitclaudel";
- repo = "quick-peek";
- rev = "fd8a6c81422932539d221f39f18c90f2811f2dd9";
- sha256 = "18jr3syd7jd809qq1j61zwaaclmqn24qyb0mv0q8sj6ac4vzl1c3";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/68f59a3048ec6196b138b6584a22ce70baa38284/recipes/quick-peek";
- sha256 = "0ivg6v9c535bw2bv636wmkd4sy037j55054bfm31wvvxk99bndwq";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/quick-peek";
- license = lib.licenses.free;
- };
- }) {};
- quick-preview = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "quick-preview";
- ename = "quick-preview";
- version = "20150828.2139";
- src = fetchFromGitHub {
- owner = "myuhe";
- repo = "quick-preview.el";
- rev = "29c884c6ab385ef67d9aa656ebb7c94cabeb5c35";
- sha256 = "1cp3z05qjy7qvjjv105ws1j9qykx8sl4s13xff0ijwvjza6ga44c";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/98270840568fa1fca2d92f26108444fb24609e83/recipes/quick-preview";
- sha256 = "18janbmhbwb6a46fgc1sxl9ww591v60y3wgh2wqh62vdy4ix3bd9";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/quick-preview";
- license = lib.licenses.free;
- };
- }) {};
- quick-shell-keybind = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "quick-shell-keybind";
- ename = "quick-shell-keybind";
- version = "20171022.2313";
- src = fetchFromGitHub {
- owner = "eyeinsky";
- repo = "quick-shell-keybind";
- rev = "5f4541a5a5554d108bf16b5fd1713e962161ca1b";
- sha256 = "19hqywwf80q6ay886xmcjjpr4pghkw78hzdg0mrpkpkqn2vj06gk";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/e9bf4d78da24d88476545f97b2af0527dde73600/recipes/quick-shell-keybind";
- sha256 = "1f66wk2m0yykcbq6qbalgscpq8s53qshyyqdnimlmdi0g0glif1b";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/quick-shell-keybind";
- license = lib.licenses.free;
- };
- }) {};
- quickref = callPackage ({ dash
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , s }:
- melpaBuild {
- pname = "quickref";
- ename = "quickref";
- version = "20170817.532";
- src = fetchFromGitHub {
- owner = "pd";
- repo = "quickref.el";
- rev = "f368c8b8219bb90498c5ab84e26f00eedaa234cf";
- sha256 = "0nalnfb816qk1dfxjk9j8r5lvzv2k4jf747xdjbj2mcvv07g2jd2";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/acc9b816796b9f142c53f90593952b43c962d2d8/recipes/quickref";
- sha256 = "0jahi84ra9g7h0cvz3c02zkbkknrzgv48zq32n72lkxl958swqn1";
- name = "recipe";
- };
- packageRequires = [ dash s ];
- meta = {
- homepage = "https://melpa.org/#/quickref";
- license = lib.licenses.free;
- };
- }) {};
quickrun = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -85772,31 +44601,6 @@
license = lib.licenses.free;
};
}) {};
- quiet = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "quiet";
- ename = "quiet";
- version = "20160508.556";
- src = fetchFromGitHub {
- owner = "zzkt";
- repo = "quiet";
- rev = "6f20309f99e26fcae2601d1544b342f044e54baf";
- sha256 = "14q7x341gqcxn3bq72wmfxipqmj2dh35kxcrwjkyghbsbd43rv8n";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/443425d9e4412a1e3e8117f97c255c8420223542/recipes/quiet";
- sha256 = "1jq65jpx0rlkc0dzy55gs37ybpjzvcv06ahwiw1lk2n92g4pi96a";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/quiet";
- license = lib.licenses.free;
- };
- }) {};
quilt = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -85905,59 +44709,6 @@
license = lib.licenses.free;
};
}) {};
- racket-mode = callPackage ({ emacs
- , faceup
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , s }:
- melpaBuild {
- pname = "racket-mode";
- ename = "racket-mode";
- version = "20190405.745";
- src = fetchFromGitHub {
- owner = "greghendershott";
- repo = "racket-mode";
- rev = "b2681c50afd180ed3a89345e015926eb31dba30d";
- sha256 = "038f03y8nmzfjdbxcyfg6sd6y9zimlc9yvcs9lggvps1ni2y4j58";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/9af8dea03aba378f21c6109faf48278b4d2bf59f/recipes/racket-mode";
- sha256 = "0cmlz314w5227br0vns5d7jhpspv1byzalgzv8f9v2qjyvk6jvsn";
- name = "recipe";
- };
- packageRequires = [ emacs faceup s ];
- meta = {
- homepage = "https://melpa.org/#/racket-mode";
- license = lib.licenses.free;
- };
- }) {};
- rails-log-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "rails-log-mode";
- ename = "rails-log-mode";
- version = "20140407.2125";
- src = fetchFromGitHub {
- owner = "ananthakumaran";
- repo = "rails-log-mode";
- rev = "ff440003ad7d47cb0ac3300f2a632f4cfd36a446";
- sha256 = "1fh8wsb0pa2isr1kgh3v9zmmxq1nlmqwqk4z34dw5wpaiyihmk84";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/7ebbf4364759c8e38d550e66fd0ce193f4214e15/recipes/rails-log-mode";
- sha256 = "0h7gfg0c5pwfh18qzg1mx7an9p958ygdfqb54s85mbkv8x3rh1a0";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/rails-log-mode";
- license = lib.licenses.free;
- };
- }) {};
railscasts-reloaded-theme = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -85983,31 +44734,6 @@
license = lib.licenses.free;
};
}) {};
- railscasts-theme = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "railscasts-theme";
- ename = "railscasts-theme";
- version = "20150219.725";
- src = fetchFromGitHub {
- owner = "mikenichols";
- repo = "railscasts-theme";
- rev = "1340c3f6c2717761cab95617cf8dcbd962b1095b";
- sha256 = "021x1l5kzsbm0qj5a3bngxa7ickm4lbwsdz81a2ks9pi1ivmw205";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/a0366a9844f6c28dfc3d5ba26201865921981574/recipes/railscasts-theme";
- sha256 = "1z5m8ccx2k18gbzqvg0051mp2myy2qncf4xvv47k80f83pk2hw6r";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/railscasts-theme";
- license = lib.licenses.free;
- };
- }) {};
rainbow-blocks = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -86112,83 +44838,6 @@
license = lib.licenses.free;
};
}) {};
- rally-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , popwin }:
- melpaBuild {
- pname = "rally-mode";
- ename = "rally-mode";
- version = "20161113.1954";
- src = fetchFromGitHub {
- owner = "seanleblanc";
- repo = "rally-mode";
- rev = "0f5e09a6abe2de7613f174b4f54863df93343134";
- sha256 = "1vrsv8ph1v853ii0i3q889xlwxnjdqz4bs3ipi502rjx6g7y5gdz";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/0914825c6d5ad26d2a8035fc33ad98df42df3c53/recipes/rally-mode";
- sha256 = "1vzsh5855bzln3p3235yccl2azpndpc4rh95zrx6p1k62h2kv0y1";
- name = "recipe";
- };
- packageRequires = [ popwin ];
- meta = {
- homepage = "https://melpa.org/#/rally-mode";
- license = lib.licenses.free;
- };
- }) {};
- rand-theme = callPackage ({ cl-lib ? null
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "rand-theme";
- ename = "rand-theme";
- version = "20151219.1535";
- src = fetchFromGitHub {
- owner = "gopar";
- repo = "rand-theme";
- rev = "65a00e5c5150f857aa96803b68f50bc8da0215b7";
- sha256 = "0fmajgqf9j21qn7h35sky5di8cnma432g0ki9d5m41byxp9y1bdl";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/rand-theme";
- sha256 = "0c2xs99jgrhk6f1s6pls8pigg6qwcr4imnwdlngwzr0jz8jhqvxa";
- name = "recipe";
- };
- packageRequires = [ cl-lib ];
- meta = {
- homepage = "https://melpa.org/#/rand-theme";
- license = lib.licenses.free;
- };
- }) {};
- random-splash-image = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "random-splash-image";
- ename = "random-splash-image";
- version = "20151002.1830";
- src = fetchFromGitHub {
- owner = "kakakaya";
- repo = "random-splash-image";
- rev = "907e2db5ceff781ac7f4dbdd65fe71736c36aa22";
- sha256 = "1z25xmz8pl3rsfahw6ay8wx5wbnlxabnzr2dq20m0i5jyci8lqll";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/2bfbfe83143299b86f867c4d7faf6a0d7a070e1e/recipes/random-splash-image";
- sha256 = "1j454jy4ia2wrgi3fxzjfdqi3z8x13hq8kh62lnb84whs7a1nhik";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/random-splash-image";
- license = lib.licenses.free;
- };
- }) {};
ranger = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -86293,33 +44942,6 @@
license = lib.licenses.free;
};
}) {};
- rbt = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , magit
- , melpaBuild
- , popup }:
- melpaBuild {
- pname = "rbt";
- ename = "rbt";
- version = "20170202.1502";
- src = fetchFromGitHub {
- owner = "joeheyming";
- repo = "rbt.el";
- rev = "32bfba9062a014e375451cf4203c29535b5efc1e";
- sha256 = "0jzhyf42m9gqcnsz9gxc9wk8bbb9a7fj78swwyj0wqn9jm8jxbra";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/ca7241985be1e8a26a454b8136a537040b7ae801/recipes/rbt";
- sha256 = "1mrb6v8zybvhh242vvq0kdvg6cvws7gabfhcydrw5g2njhyqkygm";
- name = "recipe";
- };
- packageRequires = [ magit popup ];
- meta = {
- homepage = "https://melpa.org/#/rbt";
- license = lib.licenses.free;
- };
- }) {};
rc-mode = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -86345,107 +44967,6 @@
license = lib.licenses.free;
};
}) {};
- rcirc-alert = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "rcirc-alert";
- ename = "rcirc-alert";
- version = "20141127.247";
- src = fetchFromGitHub {
- owner = "csantosb";
- repo = "rcirc-alert";
- rev = "0adf8ff9c47023fec578f678424be62b0f49057f";
- sha256 = "0xdyrp0zs2v2glpfwlajmj97wygwi0y492zbp6rp3caa5bj3j4z2";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/735aa2256660efffdaf6ecbd61a3e2818a48327f/recipes/rcirc-alert";
- sha256 = "0lyd3gz1sflp93xb7xbvk1gh69w468ync1p144avyh2pybl40q4a";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/rcirc-alert";
- license = lib.licenses.free;
- };
- }) {};
- rcirc-alertify = callPackage ({ alert
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "rcirc-alertify";
- ename = "rcirc-alertify";
- version = "20140406.1819";
- src = fetchFromGitHub {
- owner = "fgallina";
- repo = "rcirc-alertify";
- rev = "ea5cafc55893f375eccbe013d12dbaa94bf6e259";
- sha256 = "1mpk5rzsil298q3ppv5v9jrn274v71jffyz0jihrksh1wbjzwhlx";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/d1559b0e19e571c83c25ac7104e269ebc42d8f14/recipes/rcirc-alertify";
- sha256 = "13448bykmy0jqcajhn2gjiar3m8cingyr8394vxybp2m1zvv0pws";
- name = "recipe";
- };
- packageRequires = [ alert ];
- meta = {
- homepage = "https://melpa.org/#/rcirc-alertify";
- license = lib.licenses.free;
- };
- }) {};
- rcirc-groups = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "rcirc-groups";
- ename = "rcirc-groups";
- version = "20170731.1401";
- src = fetchFromGitHub {
- owner = "dimitri";
- repo = "rcirc-groups";
- rev = "b68ece9d219b909244d4e3c0d8bf6a746d6fead7";
- sha256 = "196x3qg22rhh917diml1q0hszqrqwg0klzp96q1c7c744mlq82fx";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/35b9c9e877c686df0ac9f96855d733a240063829/recipes/rcirc-groups";
- sha256 = "1iws3f8vkwrflcj6ni8nmf1wcw1jrlnssm76kzzhag77ry3iswgx";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/rcirc-groups";
- license = lib.licenses.free;
- };
- }) {};
- rcirc-notify = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "rcirc-notify";
- ename = "rcirc-notify";
- version = "20150219.1404";
- src = fetchFromGitHub {
- owner = "nicferrier";
- repo = "rcirc-notify";
- rev = "841a7b5a6cdb0c11a812df924d2c6a7d364fd455";
- sha256 = "1k4knsrca626pikgaalqbqwy7im4wz1vrmzzhdrdb4lhdz6sq3q3";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/009e2db47c9fe730fff1dc807e52c86b3ab26446/recipes/rcirc-notify";
- sha256 = "0mwhzkbzhpq4jws05p7qp0kbay8kcblb9xikznm0i8drpdyc617v";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/rcirc-notify";
- license = lib.licenses.free;
- };
- }) {};
rcirc-styles = callPackage ({ cl-lib ? null
, fetchFromGitHub
, fetchurl
@@ -86497,56 +45018,6 @@
license = lib.licenses.free;
};
}) {};
- rdp = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "rdp";
- ename = "rdp";
- version = "20120928.1854";
- src = fetchFromGitHub {
- owner = "skeeto";
- repo = "rdp";
- rev = "b620192afada04aec33b38cc130fef0765f41ca9";
- sha256 = "08l96bhghmnckar4i6afj9csqglasmpmby1r7j38ic9bp37z2yqd";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/e2dd8ef80d344c9801f7d0a26b0e3ea33a53bf89/recipes/rdp";
- sha256 = "0lj3idwv4fxz8pi8mnxkbhwhzaa1gs6ib4nzly3fc6yiix9ampkz";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/rdp";
- license = lib.licenses.free;
- };
- }) {};
- rdxmk = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "rdxmk";
- ename = "rdxmk";
- version = "20170629.1834";
- src = fetchFromGitHub {
- owner = "jsalzbergedu";
- repo = "rdxmk";
- rev = "e78749fb29738365ffa4d863ffabeb969ebb0bcf";
- sha256 = "0gwlqjk84ih89c2ckx0rrw07jgwd32wfwj4mibchdrn0ai891md0";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/db54339795e0519f154328e54d47a7a0c80afc71/recipes/rdxmk";
- sha256 = "14iavsgqp28y2ykgly8x69sny34r32dl4bpb47m921vk5n4y6zky";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/rdxmk";
- license = lib.licenses.free;
- };
- }) {};
react-snippets = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -86573,85 +45044,6 @@
license = lib.licenses.free;
};
}) {};
- read-aloud = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "read-aloud";
- ename = "read-aloud";
- version = "20160922.2200";
- src = fetchFromGitHub {
- owner = "gromnitsky";
- repo = "read-aloud.el";
- rev = "d5f80ab72054a957aed25224639c1779cae5f4d1";
- sha256 = "1hbb6diz96jabajxrnancjfpyd9div8vzbwys1f5bddi9z8l2jyy";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/20452bf3112276a7e1c880bfab259150fc70b47a/recipes/read-aloud";
- sha256 = "01fd87k50x71w8qypbi7llgyc1xnmyxifxh4ni9pgbx2ryn72lzv";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/read-aloud";
- license = lib.licenses.free;
- };
- }) {};
- readability = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , oauth
- , ov }:
- melpaBuild {
- pname = "readability";
- ename = "readability";
- version = "20140715.1727";
- src = fetchFromGitHub {
- owner = "ShingoFukuyama";
- repo = "emacs-readability";
- rev = "3329d7c77d010c8fa92215cd2b7cd891eb2f68c7";
- sha256 = "0s226fqhc9y1s49l5y01mlxxz3ah4k3payy4jdgnd8r03rb3gia7";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/eed9bcb1aa238746c9a9f6ecba9dd61b83d8b612/recipes/readability";
- sha256 = "0kg91ma9k3p5ps467jjz2lw13rv1l8ivwc3zpg6c1rl474ds0qqv";
- name = "recipe";
- };
- packageRequires = [ emacs oauth ov ];
- meta = {
- homepage = "https://melpa.org/#/readability";
- license = lib.licenses.free;
- };
- }) {};
- readline-complete = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "readline-complete";
- ename = "readline-complete";
- version = "20150708.737";
- src = fetchFromGitHub {
- owner = "monsanto";
- repo = "readline-complete.el";
- rev = "30c020c37b2741160cc37e656e13c85d826a0ebf";
- sha256 = "1j5b5xapflwzh8a297gva0l12ralwa9vl5z3bb75c9ksjkhi4nm6";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/0cf3b56dae7669b34df9d2abe2d78164cbf064c9/recipes/readline-complete";
- sha256 = "1qymk5ypv6ljk8x49z4jcifz7c2dqcg5181f4hqh67g1byvj2277";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/readline-complete";
- license = lib.licenses.free;
- };
- }) {};
real-auto-save = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -86713,34 +45105,6 @@
license = lib.licenses.free;
};
}) {};
- realgud-byebug = callPackage ({ cl-lib ? null
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , realgud }:
- melpaBuild {
- pname = "realgud-byebug";
- ename = "realgud-byebug";
- version = "20180308.1923";
- src = fetchFromGitHub {
- owner = "realgud";
- repo = "realgud-byebug";
- rev = "de603d58aa9ef72a2619247a0234fccf6bc2cc9a";
- sha256 = "1hk2z7axy1v5yvx4xgkisfk00varq5rf8j88f0l63ywylyw1fwhl";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/6440f81aed1fcddcaf7afeedb74520e605211986/recipes/realgud-byebug";
- sha256 = "1akv9raa6yb5h4lsvz7mxlnd9l7adg2rpgw7ski6036n6facn18a";
- name = "recipe";
- };
- packageRequires = [ cl-lib emacs realgud ];
- meta = {
- homepage = "https://melpa.org/#/realgud-byebug";
- license = lib.licenses.free;
- };
- }) {};
realgud-lldb = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -86769,88 +45133,6 @@
license = lib.licenses.free;
};
}) {};
- realgud-old-debuggers = callPackage ({ cl-lib ? null
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , realgud }:
- melpaBuild {
- pname = "realgud-old-debuggers";
- ename = "realgud-old-debuggers";
- version = "20170316.31";
- src = fetchFromGitHub {
- owner = "realgud";
- repo = "realgud-old-debuggers";
- rev = "1e1d573a6ba731afbe68c1309a316457ca3fbb94";
- sha256 = "1gk8k9lqbvqq4ngw0ffp3sqhkaj23n54m3ndh2ba9gvlmx7mxm7g";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/6440f81aed1fcddcaf7afeedb74520e605211986/recipes/realgud-old-debuggers";
- sha256 = "14kig9yxss9nfc0cc54ph80pbdrmh1mdazypiwxbnj2nk1dk3qsv";
- name = "recipe";
- };
- packageRequires = [ cl-lib emacs realgud ];
- meta = {
- homepage = "https://melpa.org/#/realgud-old-debuggers";
- license = lib.licenses.free;
- };
- }) {};
- realgud-pry = callPackage ({ cl-lib ? null
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , realgud }:
- melpaBuild {
- pname = "realgud-pry";
- ename = "realgud-pry";
- version = "20160805.745";
- src = fetchFromGitHub {
- owner = "realgud";
- repo = "realgud-pry";
- rev = "fca36075a223f6a4a643764199babe3d1dfde2ac";
- sha256 = "08jnav5v5q1mwgk9x100magm3jcprzfhmx8z6x8vcmp7xf79n1pp";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/6440f81aed1fcddcaf7afeedb74520e605211986/recipes/realgud-pry";
- sha256 = "1f8qap30r26gg33i76474zk6fs3r9qjf7jrxpm4xwpbjraggqy3z";
- name = "recipe";
- };
- packageRequires = [ cl-lib emacs realgud ];
- meta = {
- homepage = "https://melpa.org/#/realgud-pry";
- license = lib.licenses.free;
- };
- }) {};
- realgud-rdb2 = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , realgud }:
- melpaBuild {
- pname = "realgud-rdb2";
- ename = "realgud-rdb2";
- version = "20160303.43";
- src = fetchFromGitHub {
- owner = "realgud";
- repo = "realgud-ruby-debugger2";
- rev = "e63eeed131517a9e8225f972c9f6c975c8121e41";
- sha256 = "0skaw5fzvqk56mfk3ciy9n85vznq1sxv6w575v3jd80w2dns4yay";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/6440f81aed1fcddcaf7afeedb74520e605211986/recipes/realgud-rdb2";
- sha256 = "16pk034g26xnbsz0w9z8p76jiaraz8lvbf5hf0mmg1f5f4xlinz7";
- name = "recipe";
- };
- packageRequires = [ realgud ];
- meta = {
- homepage = "https://melpa.org/#/realgud-rdb2";
- license = lib.licenses.free;
- };
- }) {};
realgud-trepan-ni = callPackage ({ cl-lib ? null
, emacs
, fetchFromGitHub
@@ -86958,82 +45240,6 @@
license = lib.licenses.free;
};
}) {};
- rebox2 = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "rebox2";
- ename = "rebox2";
- version = "20121113.500";
- src = fetchFromGitHub {
- owner = "lewang";
- repo = "rebox2";
- rev = "00634eca420cc48657b81e40e599ff8548083985";
- sha256 = "1xh9nxqfg9abcl41ni69rnwjfgyfr0pbl55dzyxsbh6sb36r3h8z";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/fc9132290886694bd551681e32af26e9f4ebae57/recipes/rebox2";
- sha256 = "06ra50afjqac9ck1s9gaxy0sqxcb612wzd28s4q4imicqpgfxzjw";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/rebox2";
- license = lib.licenses.free;
- };
- }) {};
- recentf-ext = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "recentf-ext";
- ename = "recentf-ext";
- version = "20170925.1735";
- src = fetchFromGitHub {
- owner = "rubikitch";
- repo = "recentf-ext";
- rev = "450de5f8544ed6414e88d4924d7daa5caa55b7fe";
- sha256 = "1jylpqgngbl594a1qvd305m9lda48cib4dsasimdqxp20d4c56iy";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/ad10a684b4b2f01bc65883374f36fef156ff55d2/recipes/recentf-ext";
- sha256 = "122kns45l75cdwxbfjznks3kvm5jc89ik714ij2qx14qyik0xmni";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/recentf-ext";
- license = lib.licenses.free;
- };
- }) {};
- recentf-remove-sudo-tramp-prefix = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "recentf-remove-sudo-tramp-prefix";
- ename = "recentf-remove-sudo-tramp-prefix";
- version = "20180204.2156";
- src = fetchFromGitHub {
- owner = "ncaq";
- repo = "recentf-remove-sudo-tramp-prefix";
- rev = "6d23ebc3f52b0a66236c171c45cc77a4d3aba541";
- sha256 = "0rzs9fmy1iqips6px0v57wnplbxmm3sbnk6xcszwhkwwp563hk32";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/0bf1761715ee4917ba0823adbda03859d5b8131a/recipes/recentf-remove-sudo-tramp-prefix";
- sha256 = "01kdpx7kqd39a5hjym5plcj5d8szzghigq9mq186mggayg8q44cr";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/recentf-remove-sudo-tramp-prefix";
- license = lib.licenses.free;
- };
- }) {};
recently = callPackage ({ cl-lib ? null
, emacs
, fetchFromGitHub
@@ -87061,33 +45267,6 @@
license = lib.licenses.free;
};
}) {};
- recompile-on-save = callPackage ({ cl-lib ? null
- , dash
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "recompile-on-save";
- ename = "recompile-on-save";
- version = "20151126.646";
- src = fetchFromGitHub {
- owner = "maio";
- repo = "recompile-on-save.el";
- rev = "92e11446869d878803d4f3dec5d2101380c12bb2";
- sha256 = "0wk28blnfks987iby0p3qpd4nxnz6sqn4fx8g59gyddjhav51lri";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/77805a854da76b105bd7589fd0960b1ef8868b8b/recipes/recompile-on-save";
- sha256 = "0bg2p7pk4jlpqc7lg48mxd6zkwnx15r0r7lmsxgx9dv1ilfwrmgn";
- name = "recipe";
- };
- packageRequires = [ cl-lib dash ];
- meta = {
- homepage = "https://melpa.org/#/recompile-on-save";
- license = lib.licenses.free;
- };
- }) {};
recover-buffers = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -87165,58 +45344,6 @@
license = lib.licenses.free;
};
}) {};
- recursive-narrow = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "recursive-narrow";
- ename = "recursive-narrow";
- version = "20190306.721";
- src = fetchFromGitHub {
- owner = "nflath";
- repo = "recursive-narrow";
- rev = "5e3e2067d5a148d7e64e64e0355d3b6860e4c259";
- sha256 = "1dxghz1fb2l7y7qphqk0kk732vazlk1n1fl6dlqhqhccj450h2qa";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/recursive-narrow";
- sha256 = "15pzwxzyc3dl81v27gk7a4866cxbhzpmmcmfi9n4vrrxmf61h905";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/recursive-narrow";
- license = lib.licenses.free;
- };
- }) {};
- redis = callPackage ({ cl-lib ? null
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "redis";
- ename = "redis";
- version = "20150531.1248";
- src = fetchFromGitHub {
- owner = "emacs-pe";
- repo = "redis.el";
- rev = "2c33f3397bc14e7a8192867b55920492d4eead8c";
- sha256 = "1rjpf23a8rggjmmxvm1997d3xz03kz84xams486b9ky0n2v02d57";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/10fbb970956ee19d812c17900f3c01c5fee0c3f2/recipes/redis";
- sha256 = "1awnilb8bk0izp6yw0187ybh9slf1hc51014xvvmj90darxby79a";
- name = "recipe";
- };
- packageRequires = [ cl-lib emacs ];
- meta = {
- homepage = "https://melpa.org/#/redis";
- license = lib.licenses.free;
- };
- }) {};
redpen-paragraph = callPackage ({ cl-lib ? null
, emacs
, fetchFromGitHub
@@ -87271,32 +45398,6 @@
license = lib.licenses.free;
};
}) {};
- redshank = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , paredit }:
- melpaBuild {
- pname = "redshank";
- ename = "redshank";
- version = "20180729.2107";
- src = fetchFromGitHub {
- owner = "emacsattic";
- repo = "redshank";
- rev = "d059c5841044aa163664f8bf87c1d981bf0a04fe";
- sha256 = "1545z1dd85zg8sg2r5r5gdnmgxbxwjvl5xklx5nvpd0gbxlwbpqk";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/2677a5cf74ebace6510517f47eaa43b35f736683/recipes/redshank";
- sha256 = "0p18rkn09qb4ssr6jix13kqc3jld407qr2z2k8z78i3xy4bfzr5f";
- name = "recipe";
- };
- packageRequires = [ paredit ];
- meta = {
- homepage = "https://melpa.org/#/redshank";
- license = lib.licenses.free;
- };
- }) {};
redtick = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -87323,32 +45424,6 @@
license = lib.licenses.free;
};
}) {};
- redtt = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "redtt";
- ename = "redtt";
- version = "20181120.1621";
- src = fetchFromGitHub {
- owner = "RedPRL";
- repo = "redtt";
- rev = "c95d1a0787fb92eb011df690b4bdc1029a611c0b";
- sha256 = "1l9agj28ik4b57rxai1jp23bc4l832m72znkqacch0gvxx553q2w";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/8db65908885f753bf65849b89ebabe0c4df664f9/recipes/redtt";
- sha256 = "0gnqik2p2rb8c1mp3vrz1xf7z89xfcx5pi4lqsdnwjhxjh2534zk";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/redtt";
- license = lib.licenses.free;
- };
- }) {};
refine = callPackage ({ dash
, emacs
, fetchFromGitHub
@@ -87405,81 +45480,6 @@
license = lib.licenses.free;
};
}) {};
- regex-dsl = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "regex-dsl";
- ename = "regex-dsl";
- version = "20100124.228";
- src = fetchFromGitHub {
- owner = "alk";
- repo = "elisp-regex-dsl";
- rev = "c9d9ce30669e3c4ccfa6030eb4a080083451ac71";
- sha256 = "11lrgygmwgc93av33md601alqr7ffh5ga0r60lvkl3rgwgnxz7iw";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/regex-dsl";
- sha256 = "0c9mxsvmx6mgpq838qnjjr7ra4hafikv7hq4nfab7zw9mxrcr2f9";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/regex-dsl";
- license = lib.licenses.free;
- };
- }) {};
- regex-tool = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "regex-tool";
- ename = "regex-tool";
- version = "20170104.1118";
- src = fetchFromGitHub {
- owner = "jwiegley";
- repo = "regex-tool";
- rev = "0b4a0111143c88ef94bec56624cb2e00c1a054e6";
- sha256 = "03qm8s7nqsj0pjnnb0p84gk7hvad4bywn3rhr3ibzj6hxqvppbqj";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/regex-tool";
- sha256 = "1s4clmy5r7w6aj2bh2vf2fmbcwnainzidj28mf3kc34x3qhybngq";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/regex-tool";
- license = lib.licenses.free;
- };
- }) {};
- region-bindings-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "region-bindings-mode";
- ename = "region-bindings-mode";
- version = "20140407.1514";
- src = fetchFromGitHub {
- owner = "fgallina";
- repo = "region-bindings-mode";
- rev = "3fa5dbdbd7c000bebff6d9d14a4be326ec24b6fc";
- sha256 = "02kfi3c6ydnr7xw611ck66kfjyl5w86dr9vfjv3wjl6ad9jya4zy";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/faba50ed3e8c22991bcb8968880f79fad1748705/recipes/region-bindings-mode";
- sha256 = "141q4x6rilidpnsm9s78qks9i1v6ng0ydhbzqi39xcaccfyyjb69";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/region-bindings-mode";
- license = lib.licenses.free;
- };
- }) {};
region-convert = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -87530,86 +45530,6 @@
license = lib.licenses.free;
};
}) {};
- register-channel = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "register-channel";
- ename = "register-channel";
- version = "20180926.1649";
- src = fetchFromGitHub {
- owner = "YangZhao11";
- repo = "register-channel";
- rev = "9272923757402d177a0b2deab1d9c3c74601c48e";
- sha256 = "0k9qgrbzbxx4sjffnr02qx5wm71i3m61w7mh2j4hq9jf8k6nbkq4";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/ad44618ac36e96d04f5c44c77637ea6229e61b4c/recipes/register-channel";
- sha256 = "037i2fgxxsfb85vd6xk17wyh7ny6fqfixvb0a18lf8m1hib1gyhr";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/register-channel";
- license = lib.licenses.free;
- };
- }) {};
- related = callPackage ({ cl-lib ? null
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "related";
- ename = "related";
- version = "20190327.324";
- src = fetchFromGitHub {
- owner = "julien-montmartin";
- repo = "related";
- rev = "546c7e811b290470288b617f2c27106bd83ccd33";
- sha256 = "0kn07wgnz5bkkq66qfq16rvw9l7zgh0hzrsa705j1zbd6vc3wygs";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/555932a7b9cf11b50a61c2a9dd2636fd6844fac8/recipes/related";
- sha256 = "08cfr5qbm1h5j4v3vf3kjjwb9nxsrk74lx9gi1icdhqw631h3yxf";
- name = "recipe";
- };
- packageRequires = [ cl-lib ];
- meta = {
- homepage = "https://melpa.org/#/related";
- license = lib.licenses.free;
- };
- }) {};
- relative-buffers = callPackage ({ cl-lib ? null
- , dash
- , f
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , s }:
- melpaBuild {
- pname = "relative-buffers";
- ename = "relative-buffers";
- version = "20160221.1123";
- src = fetchFromGitHub {
- owner = "proofit404";
- repo = "relative-buffers";
- rev = "88c24259ed62b85adff6850e34bbbe844caddccf";
- sha256 = "0100maanb1v0hl4pj8ykzlqpr3cvs6ldak5japndm5yngzp6m8ks";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/ab22cea99fbee937bbd6e8fbc8bd27967aeaa8a5/recipes/relative-buffers";
- sha256 = "131182yb0pr0d6jibqd8aag4w8hywdyi87ldp77b95gw4bqhr96i";
- name = "recipe";
- };
- packageRequires = [ cl-lib dash f s ];
- meta = {
- homepage = "https://melpa.org/#/relative-buffers";
- license = lib.licenses.free;
- };
- }) {};
relax = callPackage ({ fetchFromGitHub
, fetchurl
, json ? null
@@ -87636,84 +45556,6 @@
license = lib.licenses.free;
};
}) {};
- remark-mode = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , markdown-mode
- , melpaBuild }:
- melpaBuild {
- pname = "remark-mode";
- ename = "remark-mode";
- version = "20171217.2356";
- src = fetchFromGitHub {
- owner = "torgeir";
- repo = "remark-mode.el";
- rev = "e8a95f25d865d6165a7fdb1cadf5e6f0bb5ee73b";
- sha256 = "01qdaby7mn5d8y95wcbqzwzcbjmf2329g6yjbvmdd1gn6s7qzs0b";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/161a45835a153c6ac81b99311482f5dd36507da1/recipes/remark-mode";
- sha256 = "1zl8k3h4acbgb3hmjs2b4a14g0s0vl3xamrqxrr742zmqpr1h0w0";
- name = "recipe";
- };
- packageRequires = [ emacs markdown-mode ];
- meta = {
- homepage = "https://melpa.org/#/remark-mode";
- license = lib.licenses.free;
- };
- }) {};
- remember-last-theme = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "remember-last-theme";
- ename = "remember-last-theme";
- version = "20170619.1433";
- src = fetchFromGitHub {
- owner = "anler";
- repo = "remember-last-theme";
- rev = "57e8e2a475ea89316dbb5c4d2ea047f56a2cbcdf";
- sha256 = "0sb110rb6pnjnvyqn0kji19bhbn8mk4x32yps00aq2g2v9pc1jzr";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/26edcdddaf8dc8c9a18d6b007e0d49d04fe4ccca/recipes/remember-last-theme";
- sha256 = "0pw36f9mchkl1qhaii39zd0vwrydjlijzanv706ai2bl8r7l0ppy";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/remember-last-theme";
- license = lib.licenses.free;
- };
- }) {};
- renpy = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "renpy";
- ename = "renpy";
- version = "20180907.1234";
- src = fetchFromGitHub {
- owner = "billywade";
- repo = "renpy-mode";
- rev = "cf9c9ead6084210a4c0290a0d999a099b8d00a81";
- sha256 = "1blv8f1qr0nd7j7ciyba05n5a4jijffqmchxjhl7nxljlghwiy27";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/cc928aed12275dc3780d7d8acc6ceca0f69ef63f/recipes/renpy";
- sha256 = "1xfk3j13wzgxg56izbwad0kw4izg0hdzkh7h7cfdmdf4v6mxc7f0";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/renpy";
- license = lib.licenses.free;
- };
- }) {};
repeatable-motion = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -87740,32 +45582,6 @@
license = lib.licenses.free;
};
}) {};
- repeater = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "repeater";
- ename = "repeater";
- version = "20180418.512";
- src = fetchFromGitHub {
- owner = "xuchunyang";
- repo = "repeater";
- rev = "854b874542b186b2408cbc58ad0591fe8eb70b6c";
- sha256 = "0cx6b8l9ssf56fz8xjsmbyhy8mdcj8l0rvsdx37qk86xq4nlz74p";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/10e6c57937b7540f1fbf920765a63292784433ed/recipes/repeater";
- sha256 = "07fq3d6w5ns5ryv4vd23iww2bz34f62syzbg8y643kdd0kp1m772";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/repeater";
- license = lib.licenses.free;
- };
- }) {};
repl-toggle = callPackage ({ fetchFromGitHub
, fetchurl
, fullframe
@@ -87792,57 +45608,6 @@
license = lib.licenses.free;
};
}) {};
- replace-from-region = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "replace-from-region";
- ename = "replace-from-region";
- version = "20170227.1516";
- src = fetchFromGitHub {
- owner = "rubikitch";
- repo = "replace-from-region";
- rev = "dc9318b9b2822da7b00ecc34d1dc965c8f96c9bb";
- sha256 = "05l0wn1gqw2sbl65s1m7afmg3b1ps2qgqqrjkl9r2i26p95kqlq3";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/f8e4328cae9b4759a75da0b26ea8b68821bc71af/recipes/replace-from-region";
- sha256 = "1p77sajghqkjd7k83nma4qpz682la3zg716jdsnpcwcw0qk9ybcb";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/replace-from-region";
- license = lib.licenses.free;
- };
- }) {};
- replace-pairs = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "replace-pairs";
- ename = "replace-pairs";
- version = "20160207.451";
- src = fetchFromGitHub {
- owner = "davidshepherd7";
- repo = "replace-pairs";
- rev = "ef6f2719aab7714f6cb209fd3dd6d2e720681b3c";
- sha256 = "169p85rmgashm0g26apkxynmypqk9ndh76kvh572db5kqb8ix0c6";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/2c578f574bc13edf45330a2836c02dece163688d/recipes/replace-pairs";
- sha256 = "0l9674rba25wh6fskvfwkhv99lwlszb177hsfzx39s6b4hshvlsb";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/replace-pairs";
- license = lib.licenses.free;
- };
- }) {};
replace-symbol = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -88033,31 +45798,6 @@
license = lib.licenses.free;
};
}) {};
- requirejs-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "requirejs-mode";
- ename = "requirejs-mode";
- version = "20130215.1304";
- src = fetchFromGitHub {
- owner = "moricard";
- repo = "requirejs-mode";
- rev = "011849043098b6c4f27571625ae19071b53b8824";
- sha256 = "1dhhwz3910lcyabmpm14ky61dhgj4hvdv87k2nnzm73iwxl876ih";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/requirejs-mode";
- sha256 = "00bl5dz56f77hl9wy3xvjhq81641mv9jbskcd8mcgcz9ycj9g5k2";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/requirejs-mode";
- license = lib.licenses.free;
- };
- }) {};
resize-window = callPackage ({ cl-lib ? null
, emacs
, fetchFromGitHub
@@ -88110,58 +45850,6 @@
license = lib.licenses.free;
};
}) {};
- restclient = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "restclient";
- ename = "restclient";
- version = "20190405.1308";
- src = fetchFromGitHub {
- owner = "pashky";
- repo = "restclient.el";
- rev = "236810ad1d4b13f27e85931c0d8bb3549a35e865";
- sha256 = "0f0hn91k6s4vkqzac3x9sma4sx78m4b6h7fpkc4jslv2v0b0dplv";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/59303304fe1f724596245556dd90f6afffba425d/recipes/restclient";
- sha256 = "0wzp8i89a4hwm7qyxvdk10frknbqcni0isnp8k63nhq7c30s7md4";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/restclient";
- license = lib.licenses.free;
- };
- }) {};
- restclient-helm = callPackage ({ fetchFromGitHub
- , fetchurl
- , helm
- , lib
- , melpaBuild
- , restclient }:
- melpaBuild {
- pname = "restclient-helm";
- ename = "restclient-helm";
- version = "20170314.854";
- src = fetchFromGitHub {
- owner = "pashky";
- repo = "restclient.el";
- rev = "af7420085dd67ed08d199a2402e8ff3e996c3029";
- sha256 = "04c1b0xvhrsxb4r98qvvasn1nbkl4ddinip2rplilacywjy26rsz";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/59303304fe1f724596245556dd90f6afffba425d/recipes/restclient-helm";
- sha256 = "0cpf02ippfr9w6kiw3kng8smabv256ff388322hhn8a8icyjl24j";
- name = "recipe";
- };
- packageRequires = [ helm restclient ];
- meta = {
- homepage = "https://melpa.org/#/restclient-helm";
- license = lib.licenses.free;
- };
- }) {};
restclient-test = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -88214,32 +45902,6 @@
license = lib.licenses.free;
};
}) {};
- reverse-im = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "reverse-im";
- ename = "reverse-im";
- version = "20180213.525";
- src = fetchFromGitHub {
- owner = "a13";
- repo = "reverse-im.el";
- rev = "16931909115a922b1cf3846b1f60509b6590001f";
- sha256 = "0ccpnd1n9z18wpf8m9xyx5gps2xh5kxv8s1q2zan2zs9f46sz9pc";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/f282ebbed8ad01b63b0e708ab273db51bf65fdbb/recipes/reverse-im";
- sha256 = "0c0dxxpa2s6gvhi14zfb0rnb4i7jaqw627a7ngm5fzyh0r9himcf";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/reverse-im";
- license = lib.licenses.free;
- };
- }) {};
reverse-theme = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -88265,57 +45927,6 @@
license = lib.licenses.free;
};
}) {};
- review-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "review-mode";
- ename = "review-mode";
- version = "20181213.1915";
- src = fetchFromGitHub {
- owner = "kmuto";
- repo = "review-el";
- rev = "978be7337628c746f2cb237094c65187a11d7682";
- sha256 = "07zli33hfdz0h4b491dl664gv7naky8db3kajxb3ncbizx99dz9m";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/f2f9e2667389577d0703874ca69ebe4800ae3e01/recipes/review-mode";
- sha256 = "0wapicggkngpdzi0yxc0b24s526fs819rc2d6miv6ix3gnw11n0n";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/review-mode";
- license = lib.licenses.free;
- };
- }) {};
- reykjavik-theme = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "reykjavik-theme";
- ename = "reykjavik-theme";
- version = "20180823.844";
- src = fetchFromGitHub {
- owner = "mswift42";
- repo = "reykjavik-theme";
- rev = "2cd0043ae6d046f812a95bb26398ea23141beccc";
- sha256 = "0rk0fw5b1lz7if779h3bngc86iix8v9k8bz3zw8icwfwmjsgg1fh";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/10bf153e2b84050304ba2532f5eb41c7a4e7632f/recipes/reykjavik-theme";
- sha256 = "1f0q2gfzkmpd374jryrd1lgg8xj6rwdq181jhppj3rfjizgw4l35";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/reykjavik-theme";
- license = lib.licenses.free;
- };
- }) {};
rfc-mode = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -88372,31 +45983,6 @@
license = lib.licenses.free;
};
}) {};
- rhtml-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "rhtml-mode";
- ename = "rhtml-mode";
- version = "20130422.611";
- src = fetchFromGitHub {
- owner = "eschulte";
- repo = "rhtml";
- rev = "a6d71b38a3db867ccf82999c99805db1a3a33c33";
- sha256 = "1qlpv5lzj4yfyjgdykhm6q9izg6g0z5pf5nmynj42vsx7v8bhy1x";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/f9e14e9d8df9c2ce13e290a5f3d3bf9b247037f4/recipes/rhtml-mode";
- sha256 = "038j5jkcckmhlq3vz4h07s5y2scljh1fdn9r614hiyxwgk48lc35";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/rhtml-mode";
- license = lib.licenses.free;
- };
- }) {};
rib-mode = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -88503,32 +46089,6 @@
license = lib.licenses.free;
};
}) {};
- rimero-theme = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "rimero-theme";
- ename = "rimero-theme";
- version = "20180901.648";
- src = fetchFromGitHub {
- owner = "yveszoundi";
- repo = "emacs-rimero-theme";
- rev = "a2e706c2b34f749019979a133f08a2d94a1104b3";
- sha256 = "1kcvvaizggzi7s3dlh611bkirdf6y89kzddc273drdks705s01wh";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/c6d07b0c021001195e6e0951c890566a5a784ce1/recipes/rimero-theme";
- sha256 = "0jbknrp9hc8s956cy2gqffxnx0fgnhmjqp2i4vyp0ywh45wrls5r";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/rimero-theme";
- license = lib.licenses.free;
- };
- }) {};
rinari = callPackage ({ fetchFromGitHub
, fetchurl
, inf-ruby
@@ -88558,31 +46118,6 @@
license = lib.licenses.free;
};
}) {};
- rings = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "rings";
- ename = "rings";
- version = "20160531.1327";
- src = fetchFromGitHub {
- owner = "konr";
- repo = "rings";
- rev = "3590b222eb80652cbd27866f066bd3571d86edfc";
- sha256 = "01mfiyq4cr2qdmvaxid8a094p20w97n2nsiy9vyng77vcmv36sd5";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/113118947e33ab0c8004dbe9b188eba2ea282356/recipes/rings";
- sha256 = "1ncsb4jip07hbrf1l4j9yzn3l0kb63ylhzzsb4bb2yx6as4a66k7";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/rings";
- license = lib.licenses.free;
- };
- }) {};
ripgrep = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -88608,32 +46143,6 @@
license = lib.licenses.free;
};
}) {};
- riscv-mode = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "riscv-mode";
- ename = "riscv-mode";
- version = "20170804.821";
- src = fetchFromGitHub {
- owner = "AdamNiederer";
- repo = "riscv-mode";
- rev = "99febf97d1fa9441e8dada94fe30c2aa439c9749";
- sha256 = "119p926ypz525xdh82m2d1saky1qh5va224fxyqisfbwfrc17arh";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/0853b4b678be7d1906a2f7946bfa1072590faf72/recipes/riscv-mode";
- sha256 = "0496b7xwshmk3gv6s5hggbm9qd60a05racj3xcsxwqzak359lk2b";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/riscv-mode";
- license = lib.licenses.free;
- };
- }) {};
rjsx-mode = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -88661,32 +46170,6 @@
license = lib.licenses.free;
};
}) {};
- rmsbolt = callPackage ({ emacs
- , fetchFromGitLab
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "rmsbolt";
- ename = "rmsbolt";
- version = "20181227.655";
- src = fetchFromGitLab {
- owner = "jgkamat";
- repo = "rmsbolt";
- rev = "246377bbff99734f30daedf2c47c03283c97e7c5";
- sha256 = "05v16g2drc57cjcdjqy9rk5m4i74v8raspgfsc62qbapy4kqvn78";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/798e7978f3ee32b3667956da8dc2dc7f005b6996/recipes/rmsbolt";
- sha256 = "0mgzc4q9mmnqjafp2i9qp0plc7qnh4kmkgjs1c7frk9x07navscf";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/rmsbolt";
- license = lib.licenses.free;
- };
- }) {};
robe = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -88790,107 +46273,6 @@
license = lib.licenses.free;
};
}) {};
- rotate = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "rotate";
- ename = "rotate";
- version = "20160909.136";
- src = fetchFromGitHub {
- owner = "daichirata";
- repo = "emacs-rotate";
- rev = "eb177ec2aba1a358aa757720a9a4c8d8ce4856e8";
- sha256 = "1v8m08hrj3g1vcyhjmkh6wsiczrvjq0v90nqb5y3hy3l40pkag5x";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/7d92e66cad586d4dc6b1de12d1b41b818b5232c2/recipes/rotate";
- sha256 = "11a0svvfq29cb4630jq0hz19xk9jfhfjnssm7vg0dnlzpxqi3vif";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/rotate";
- license = lib.licenses.free;
- };
- }) {};
- roy-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "roy-mode";
- ename = "roy-mode";
- version = "20121208.358";
- src = fetchFromGitHub {
- owner = "folone";
- repo = "roy-mode";
- rev = "e1a4fb5ec0f46e82f569865ca47042ba5934e425";
- sha256 = "1m19hjgh9s21qknb1278pf6gw77a747siy04qdznj4519j12wjjg";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/roy-mode";
- sha256 = "1r49c1v0xjkrpxmq0k2l2nrx95n06b7hbpmr1n7nkil2bxdq275i";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/roy-mode";
- license = lib.licenses.free;
- };
- }) {};
- rpm-spec-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "rpm-spec-mode";
- ename = "rpm-spec-mode";
- version = "20160710.436";
- src = fetchFromGitHub {
- owner = "stigbjorlykke";
- repo = "rpm-spec-mode";
- rev = "c1c38050c48ea330c7cea632b8785d66daeefb2b";
- sha256 = "0427kcvf2ljhzwxskn3jzk0ncrl3f9zcz2sm83d9pmhh5jax2gch";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/bb7e188fffda3d4e42690511775e5e32a11e1b34/recipes/rpm-spec-mode";
- sha256 = "1ygk0pdhq1hvgzd173h79lxb04b9lmvq4hi70qf9244bqbm0m182";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/rpm-spec-mode";
- license = lib.licenses.free;
- };
- }) {};
- rpn-calc = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , popup }:
- melpaBuild {
- pname = "rpn-calc";
- ename = "rpn-calc";
- version = "20181121.354";
- src = fetchFromGitHub {
- owner = "zk-phi";
- repo = "rpn-calc";
- rev = "27279f89c80eb3f28ff9f981eff06502056943e2";
- sha256 = "0klzhscdvzwpcrfkq2v28in5fv01zqabgxdrziyhj666sly1scjq";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/47d5b3c931cdbc2351e01d15e2b98c78081c9506/recipes/rpn-calc";
- sha256 = "04dj2r4035k0c3x6iyjydshzmq381d60pmscp2hg5m7sp7bqn5xs";
- name = "recipe";
- };
- packageRequires = [ popup ];
- meta = {
- homepage = "https://melpa.org/#/rpn-calc";
- license = lib.licenses.free;
- };
- }) {};
rsense = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -88968,32 +46350,6 @@
license = lib.licenses.free;
};
}) {};
- rtm = callPackage ({ cl-lib ? null
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "rtm";
- ename = "rtm";
- version = "20180329.808";
- src = fetchFromGitHub {
- owner = "pmiddend";
- repo = "emacs-rtm";
- rev = "3e3d09387cb84801343ecca8fb02e82f213e7bbe";
- sha256 = "0cc07lhh27i1ra4alrwb6w322ddi6hw0498nkzf388arhn10h3wv";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/rtm";
- sha256 = "1bwbaps76pawz73fs7nzkvbii9d57zmfdccpm18dwn6phaqxbhyc";
- name = "recipe";
- };
- packageRequires = [ cl-lib ];
- meta = {
- homepage = "https://melpa.org/#/rtm";
- license = lib.licenses.free;
- };
- }) {};
rubik = callPackage ({ calc
, cl-lib ? null
, emacs
@@ -89074,33 +46430,6 @@
license = lib.licenses.free;
};
}) {};
- ruby-additional = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , ruby-mode ? null }:
- melpaBuild {
- pname = "ruby-additional";
- ename = "ruby-additional";
- version = "20181221.359";
- src = fetchFromGitHub {
- owner = "ruby";
- repo = "elisp";
- rev = "75bccbb384e6907df47ab69acdccb4536806c890";
- sha256 = "1ic92ga7sy71qknn22xjbxrhpbq3sgb1ngfm2d0gjdmr0x6q8xkc";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/30fa1f6cb1128fc0c0e751330714f228e5616786/recipes/ruby-additional";
- sha256 = "09g4zz6pfzhxlhac2d041bys7qis4w4shpdn4bpskm1rnmvm10s7";
- name = "recipe";
- };
- packageRequires = [ emacs ruby-mode ];
- meta = {
- homepage = "https://melpa.org/#/ruby-additional";
- license = lib.licenses.free;
- };
- }) {};
ruby-compilation = callPackage ({ fetchFromGitHub
, fetchurl
, inf-ruby
@@ -89177,57 +46506,6 @@
license = lib.licenses.free;
};
}) {};
- ruby-extra-highlight = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "ruby-extra-highlight";
- ename = "ruby-extra-highlight";
- version = "20171106.1133";
- src = fetchFromGitHub {
- owner = "Lindydancer";
- repo = "ruby-extra-highlight";
- rev = "83942d18eae361998d24c1c523b308eea821f048";
- sha256 = "18mq0ap7f0b22cdp2wdj0y2fqsahm2ngf7fvdy0mkkfs3818awlp";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/73488b0aea4eb470a1f235fece0753797bfd7e35/recipes/ruby-extra-highlight";
- sha256 = "0dybf39yv0yzy8bsz9k5s64033id6hq4v268m11la4bp5fbv5r37";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/ruby-extra-highlight";
- license = lib.licenses.free;
- };
- }) {};
- ruby-factory = callPackage ({ fetchFromGitHub
- , fetchurl
- , inflections
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "ruby-factory";
- ename = "ruby-factory";
- version = "20160101.2321";
- src = fetchFromGitHub {
- owner = "sshaw";
- repo = "ruby-factory-mode";
- rev = "2bb7ccc2fccb5257376a989aa395bc7b9eb1d55d";
- sha256 = "15b2rs6m4d511qqkc2gc8k15mbqzrgv6s3hpypajl8nvqa79xnyd";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/3ce422ccc34eb325ce432284e44af48607251da2/recipes/ruby-factory";
- sha256 = "0v8009pad0l41zh9r1wzcx1h6vpzhr5rgpq6rb002prxz2lcbd37";
- name = "recipe";
- };
- packageRequires = [ inflections ];
- meta = {
- homepage = "https://melpa.org/#/ruby-factory";
- license = lib.licenses.free;
- };
- }) {};
ruby-hash-syntax = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -89253,57 +46531,6 @@
license = lib.licenses.free;
};
}) {};
- ruby-interpolation = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "ruby-interpolation";
- ename = "ruby-interpolation";
- version = "20131112.852";
- src = fetchFromGitHub {
- owner = "leoc";
- repo = "ruby-interpolation.el";
- rev = "1978e337601222cedf00e117bf4b5cac15d1f203";
- sha256 = "1r2f5jxi6wnkmr1ssvqgshi97gjvxvf3qqc0njg1s33cy39wpqq5";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/ca7bf43ef8893bf04e9658390e306ef69e80a156/recipes/ruby-interpolation";
- sha256 = "07idndxw8vgfrk5zfmjjhmixza35mqxwjhsrbjrq5yy72i5ivznp";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/ruby-interpolation";
- license = lib.licenses.free;
- };
- }) {};
- ruby-refactor = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , ruby-mode ? null }:
- melpaBuild {
- pname = "ruby-refactor";
- ename = "ruby-refactor";
- version = "20160214.850";
- src = fetchFromGitHub {
- owner = "ajvargo";
- repo = "ruby-refactor";
- rev = "e6b7125878a08518bffec6942df0c606f748e9ee";
- sha256 = "13008ih4hwa80bn2dbgj551knbvgpriz5sb241rkf7mifmlfzgsi";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/8d223ef5b9e51265c510f1cf7888b621e47bfdcf/recipes/ruby-refactor";
- sha256 = "0nwinnnhy72h1ihjlnjl8k8z3yf4nl2z7hfv085gwiacr6nn2rby";
- name = "recipe";
- };
- packageRequires = [ ruby-mode ];
- meta = {
- homepage = "https://melpa.org/#/ruby-refactor";
- license = lib.licenses.free;
- };
- }) {};
ruby-test-mode = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -89380,58 +46607,6 @@
license = lib.licenses.free;
};
}) {};
- rum-mode = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "rum-mode";
- ename = "rum-mode";
- version = "20180126.1622";
- src = fetchFromGitHub {
- owner = "rumlang";
- repo = "rum-mode";
- rev = "161471e6476d232d479f9767535918920811d7bf";
- sha256 = "12fh1fmfnfpkgsya5asxqywimdb5361cvw1cqfmhrm1z5pyjgbd7";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/0c9f8ce2dee376f1f34e89e9642c472a148fca77/recipes/rum-mode";
- sha256 = "1838w8rk5pgp1hn7a0m83mfw9jin4qv5mkyl68hl3gj7g9lhn7sd";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/rum-mode";
- license = lib.licenses.free;
- };
- }) {};
- run-stuff = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "run-stuff";
- ename = "run-stuff";
- version = "20180208.2348";
- src = fetchFromGitHub {
- owner = "ideasman42";
- repo = "emacs-run-stuff";
- rev = "ed42a7bc9a197ccf1ca87f9937bf98f0a9ed3f92";
- sha256 = "1w49v868n3723q6887y4bc5q8spd7xync5d581vvxdpi75qgvr0z";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/0d6e9ce2acd859b887f7e161f4b9969be1a0b8ef/recipes/run-stuff";
- sha256 = "0zx96m6cval5g4p0lhy9kpyycp2jygaq3y2njhkpij9gl4nb2ll2";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/run-stuff";
- license = lib.licenses.free;
- };
- }) {};
runner = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -89457,31 +46632,6 @@
license = lib.licenses.free;
};
}) {};
- runtests = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "runtests";
- ename = "runtests";
- version = "20150807.131";
- src = fetchFromGitHub {
- owner = "sunesimonsen";
- repo = "emacs-runtests";
- rev = "ed90249f24cc48290018df48b9b9b7172440be3e";
- sha256 = "18w6gkpxp0g7rzvnrk8vvr267y768dfik447ssq8jpz3jlr5jnq6";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/95c49160919d310256501d7c71102f8367aae5aa/recipes/runtests";
- sha256 = "0m9rqjb5c0yqr2wv5dsdiba21knr63b5pxsqgbkbybi15zgxcicb";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/runtests";
- license = lib.licenses.free;
- };
- }) {};
russian-holidays = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -89507,31 +46657,6 @@
license = lib.licenses.free;
};
}) {};
- rust-auto-use = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "rust-auto-use";
- ename = "rust-auto-use";
- version = "20181124.2237";
- src = fetchFromGitHub {
- owner = "vmalloc";
- repo = "rust-auto-use.el";
- rev = "d924505ecd954625dcb2d56dfba97111dc6a17fa";
- sha256 = "1yw9l13dgkfsdv4kgpbvzx12g8bqycclgq2gk4b1r29mxy72wnpq";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/a9584d883934e36400ec1924755df34149ad2f9f/recipes/rust-auto-use";
- sha256 = "0jdg8xgxry0h9nbb9m446gpw54rymw3152n84lvsg5bv51861114";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/rust-auto-use";
- license = lib.licenses.free;
- };
- }) {};
rust-mode = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -89584,54 +46709,6 @@
license = lib.licenses.free;
};
}) {};
- rustic = callPackage ({ dash
- , emacs
- , f
- , fetchFromGitHub
- , fetchurl
- , ht
- , let-alist
- , lib
- , markdown-mode
- , melpaBuild
- , projectile
- , s
- , seq
- , spinner
- , xterm-color }:
- melpaBuild {
- pname = "rustic";
- ename = "rustic";
- version = "20190318.1112";
- src = fetchFromGitHub {
- owner = "brotzeit";
- repo = "rustic";
- rev = "e73f29bd273670a1193e595ff13641ec0675cfb4";
- sha256 = "1jfvvq4yz3ypw32q10g926ys1y4j1dyskpbl25qgqnw5dwjy7vsk";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/716c14a2ed8f5817c09c1ff530a4980c17b44bb3/recipes/rustic";
- sha256 = "13bwrdqmm6xb34k8r72c0r3b9aym5dwsalp63bkfh9k9kq9hic0n";
- name = "recipe";
- };
- packageRequires = [
- dash
- emacs
- f
- ht
- let-alist
- markdown-mode
- projectile
- s
- seq
- spinner
- xterm-color
- ];
- meta = {
- homepage = "https://melpa.org/#/rustic";
- license = lib.licenses.free;
- };
- }) {};
rvm = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -89657,32 +46734,6 @@
license = lib.licenses.free;
};
}) {};
- ryo-modal = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "ryo-modal";
- ename = "ryo-modal";
- version = "20180331.118";
- src = fetchFromGitHub {
- owner = "Kungsgeten";
- repo = "ryo-modal";
- rev = "42f874467dfdce59b511f883496ce2624b133dd7";
- sha256 = "0k9nmi014vb9c8rymy3w8xbnj1q85xlslpblacz78iqn1kr6wy1z";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/ryo-modal";
- sha256 = "06pm6grsdcldi1khbjfjp7lpi6f6x3pa5ikspp0xdwijnmi0xrrf";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/ryo-modal";
- license = lib.licenses.free;
- };
- }) {};
s = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -89708,87 +46759,6 @@
license = lib.licenses.free;
};
}) {};
- s-buffer = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , noflet
- , s }:
- melpaBuild {
- pname = "s-buffer";
- ename = "s-buffer";
- version = "20130605.1424";
- src = fetchFromGitHub {
- owner = "nicferrier";
- repo = "emacs-s-buffer";
- rev = "f95d234282377f00a2c3a9846681080cb95bb1df";
- sha256 = "06ng960fj2ivnwb0hrn0qic5x8hb0sswjzph01zmwhbfnwykhr85";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/f1bf91527219e7afc8e113134a958f3adb862a5a/recipes/s-buffer";
- sha256 = "07kivgzv24psjq1240gwj9wkndq4bhvjh38x552k90m9v6jz8l6m";
- name = "recipe";
- };
- packageRequires = [ noflet s ];
- meta = {
- homepage = "https://melpa.org/#/s-buffer";
- license = lib.licenses.free;
- };
- }) {};
- s12cpuv2-mode = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "s12cpuv2-mode";
- ename = "s12cpuv2-mode";
- version = "20171013.1351";
- src = fetchFromGitHub {
- owner = "AdamNiederer";
- repo = "s12cpuv2-mode";
- rev = "b17d4cf848dec1e20e66458e5c7ff77a2c051a8c";
- sha256 = "1fc132gv48xwrxiw139kc9f5wkhjgsgqdfm6b7v97xj5025zg6hr";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/6c1b9bbdc4deb17636270c7f2be0b43b647c695a/recipes/s12cpuv2-mode";
- sha256 = "0mrcf5s7vmkyrsdka7qd2vfcmdy8hzf6a6g14la88rxrv4chv29s";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/s12cpuv2-mode";
- license = lib.licenses.free;
- };
- }) {};
- s3ed = callPackage ({ dash
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , seq }:
- melpaBuild {
- pname = "s3ed";
- ename = "s3ed";
- version = "20180204.549";
- src = fetchFromGitHub {
- owner = "mattusifer";
- repo = "s3ed";
- rev = "55b03717caa672b7aebf528b686455fe1d39888c";
- sha256 = "1qh9hy220pzbzandpcxc2p8knl674gyym0qmqi63scx7s8hn8nmh";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/32ba78167bd6908b49f340f6da48643ac38f25f2/recipes/s3ed";
- sha256 = "08scv3aqnidz28rad5npz7b4pz9dx05rs72qkp3ybkk2vhqf2qwa";
- name = "recipe";
- };
- packageRequires = [ dash emacs seq ];
- meta = {
- homepage = "https://melpa.org/#/s3ed";
- license = lib.licenses.free;
- };
- }) {};
sackspace = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -89843,57 +46813,6 @@
license = lib.licenses.free;
};
}) {};
- sailfish-scratchbox = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "sailfish-scratchbox";
- ename = "sailfish-scratchbox";
- version = "20171202.532";
- src = fetchFromGitHub {
- owner = "vityafx";
- repo = "sailfish-scratchbox.el";
- rev = "bb5ed0f0b0cd72f2eb1af065b7587ec81866b089";
- sha256 = "1b53mdqgcmjay3i3fnxnycv8crqi20yvyv57ybgs2ikfl3v282h2";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/e76261e7dffcb607839440843b085709c2c90b26/recipes/sailfish-scratchbox";
- sha256 = "1s0glsi4fm6is7fv9vy1h14frq8a4bgahkc8w08vqfnpiin2r567";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/sailfish-scratchbox";
- license = lib.licenses.free;
- };
- }) {};
- salesforce-utils = callPackage ({ cl-lib ? null
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "salesforce-utils";
- ename = "salesforce-utils";
- version = "20160813.1854";
- src = fetchFromGitHub {
- owner = "grimnebulin";
- repo = "emacs-salesforce";
- rev = "73328baf0fb94ac0d0de645a8f6d42e5ae27f773";
- sha256 = "1zsznz9pn9dj672jii6wcvs47yqyxv3dsm5qy1dax1d6gvvbf4zq";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/salesforce-utils";
- sha256 = "0b70w92zghid6n0ba28dh5r3pckr8jsd1743qyi8vj04ih1dns5i";
- name = "recipe";
- };
- packageRequires = [ cl-lib ];
- meta = {
- homepage = "https://melpa.org/#/salesforce-utils";
- license = lib.licenses.free;
- };
- }) {};
salt-mode = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -89922,32 +46841,6 @@
license = lib.licenses.free;
};
}) {};
- sane-term = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "sane-term";
- ename = "sane-term";
- version = "20181129.1701";
- src = fetchFromGitHub {
- owner = "adamrt";
- repo = "sane-term";
- rev = "ae0b3c024b66275f22809e2b41f428b01c259b96";
- sha256 = "1468byxxd0ysqzmi9ssypfhfyqrjgj5w7sx42qgw66m57sis8ra3";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/sane-term";
- sha256 = "08b8zlr8qzxfrpg9lqiyam3sb8a8rzak79ra4r6ljjppyj4zmwi7";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/sane-term";
- license = lib.licenses.free;
- };
- }) {};
sass-mode = callPackage ({ fetchFromGitHub
, fetchurl
, haml-mode
@@ -89999,81 +46892,6 @@
license = lib.licenses.free;
};
}) {};
- save-load-path = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "save-load-path";
- ename = "save-load-path";
- version = "20140206.414";
- src = fetchFromGitHub {
- owner = "rubikitch";
- repo = "save-load-path";
- rev = "6cb763a37e2b8af505bff2bcd11fd49c9ea04d66";
- sha256 = "0rxcg60lxaabdx9gjj17sfxnr09694viphlhhk355dcc4v5ngbdm";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/f8e4328cae9b4759a75da0b26ea8b68821bc71af/recipes/save-load-path";
- sha256 = "1cl9kkv996m2irm9i5n7f020zqzvrsv9dyscc16ca9jsn16msww2";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/save-load-path";
- license = lib.licenses.free;
- };
- }) {};
- save-visited-files = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "save-visited-files";
- ename = "save-visited-files";
- version = "20170228.2250";
- src = fetchFromGitHub {
- owner = "nflath";
- repo = "save-visited-files";
- rev = "33e8d223f622001f5792c52d8b36661e46b5834c";
- sha256 = "1lf03fhmgjz1pixfahdm3cbqs5vbp6bk4qgm2xkm51vzmp39hfim";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/3f5979e2c2dbfc4e8e3b4d2881cf860c26f63db5/recipes/save-visited-files";
- sha256 = "1pmjz27dlp5yrihgsy8q1bwbhkkj3sn7d79ccvljvzxg5jn1grkd";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/save-visited-files";
- license = lib.licenses.free;
- };
- }) {};
- savekill = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "savekill";
- ename = "savekill";
- version = "20140417.1929";
- src = fetchFromGitHub {
- owner = "rubikitch";
- repo = "savekill";
- rev = "67fc94e3d8fe8ce3ca16f90518f6a46479b63e34";
- sha256 = "0h8bl28p5xrs9daapcjkslm066a4hqlb764i5nz1db0lwrvr0csm";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/f8e4328cae9b4759a75da0b26ea8b68821bc71af/recipes/savekill";
- sha256 = "14hfqia7d2v1dn1wdwsphrrkq9hc57721irms9s9vinign0pqx7h";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/savekill";
- license = lib.licenses.free;
- };
- }) {};
say-what-im-doing = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -90151,57 +46969,6 @@
license = lib.licenses.free;
};
}) {};
- scad-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "scad-mode";
- ename = "scad-mode";
- version = "20180108.1809";
- src = fetchFromGitHub {
- owner = "openscad";
- repo = "openscad";
- rev = "2de6815c7c2ade42e53e86751b9584ac4a5e1ef9";
- sha256 = "188wbnhdgk0820izing6hb7fca1d42hw9bnn405kms157kvcgqsi";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/2d27782b9ac8474fbd4f51535351207c9c84984c/recipes/scad-mode";
- sha256 = "04b4y9jks8sslgmkx54fds8fba9xv54z0cfab52dy99v1301ms3k";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/scad-mode";
- license = lib.licenses.free;
- };
- }) {};
- scad-preview = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , scad-mode }:
- melpaBuild {
- pname = "scad-preview";
- ename = "scad-preview";
- version = "20160206.536";
- src = fetchFromGitHub {
- owner = "zk-phi";
- repo = "scad-preview";
- rev = "fee011589671cc8f1296cb6aa81553e5bb699819";
- sha256 = "13x00dls59zshz69260pnqmx6ydrjg8p2jdjn1rzgf5dsmwfy3sc";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/18a043064223906510adbb837f1be329252dbd50/recipes/scad-preview";
- sha256 = "0wcd2r60ibbc2mzpq8fvyfc1fy172rf9kzdj51p4jyl51r76i86z";
- name = "recipe";
- };
- packageRequires = [ scad-mode ];
- meta = {
- homepage = "https://melpa.org/#/scad-preview";
- license = lib.licenses.free;
- };
- }) {};
scala-mode = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -90227,83 +46994,6 @@
license = lib.licenses.free;
};
}) {};
- scalariform = callPackage ({ f
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , s }:
- melpaBuild {
- pname = "scalariform";
- ename = "scalariform";
- version = "20190113.1815";
- src = fetchFromGitHub {
- owner = "zwild";
- repo = "scalariform";
- rev = "f4b04508a65ce8593d15c260322c527dda5810a3";
- sha256 = "1c2z6kp17gw77h9y6v75dvcp6ywpsyfcxlrzr5iank4ipgplsbha";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1912f795e5842be534160e3879bfb96f3440e163/recipes/scalariform";
- sha256 = "096y63j91910hqsy6qvz16c9lzyi7ni3r7h039z5zw2v97aggh9i";
- name = "recipe";
- };
- packageRequires = [ f s ];
- meta = {
- homepage = "https://melpa.org/#/scalariform";
- license = lib.licenses.free;
- };
- }) {};
- scf-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "scf-mode";
- ename = "scf-mode";
- version = "20151121.1848";
- src = fetchFromGitHub {
- owner = "lewang";
- repo = "scf-mode";
- rev = "dbfcdcd89034f208d65e181af58e0d73ad09f8b2";
- sha256 = "0m7hanpc2skmsz783m0212xd10y31gkj5n6w8gx9s989l1y4i1b8";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/376be7f8903dbea69643600ae14e934ee5e2a11b/recipes/scf-mode";
- sha256 = "0acbrw94q6cr9b29mz1wcbwi1g90pbm7ly2xbaqb2g8081r5rgg0";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/scf-mode";
- license = lib.licenses.free;
- };
- }) {};
- scheme-complete = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "scheme-complete";
- ename = "scheme-complete";
- version = "20181029.555";
- src = fetchFromGitHub {
- owner = "ashinn";
- repo = "scheme-complete";
- rev = "b86ee41d48664839181498313f4f3dc2fef17d6f";
- sha256 = "1by7ky8za6idam4m4xgmf0f5ss0cacd7wv53glhmjb4nslxhgl7d";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/0fda2b54a0ff0b6fc3bd6d20cfcbbf63cae5380f/recipes/scheme-complete";
- sha256 = "1mp9gssd2fx3ra2bjd7w311hwmflhybr5x574qb12603gjkgrp1h";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/scheme-complete";
- license = lib.licenses.free;
- };
- }) {};
schrute = callPackage ({ emacs
, fetchgit
, fetchurl
@@ -90329,113 +47019,6 @@
license = lib.licenses.free;
};
}) {};
- scion = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "scion";
- ename = "scion";
- version = "20130315.555";
- src = fetchFromGitHub {
- owner = "nominolo";
- repo = "scion";
- rev = "99b4589175665687181a932cd836850205625f71";
- sha256 = "0ark720g0nrdqri5bjdpss6kn6k3hz3w3zdvy334wws05mkb17y4";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/faf180d15c3847fc6f832866338494dd99b6654d/recipes/scion";
- sha256 = "17qmc7fpvbamqkzyk8jspp2i0nw93iya4iwddvas7vdpjy7mk81d";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/scion";
- license = lib.licenses.free;
- };
- }) {};
- sclang-extensions = callPackage ({ auto-complete
- , dash
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , s }:
- melpaBuild {
- pname = "sclang-extensions";
- ename = "sclang-extensions";
- version = "20160508.2038";
- src = fetchFromGitHub {
- owner = "chrisbarrett";
- repo = "sclang-extensions";
- rev = "e9cc79732f16fdb582129303110c163dcc0d6da0";
- sha256 = "164dn5615bxvya4n58lly9r739va1xzm00wyfg4shcwgnwm3byqb";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/f2095549944ca28d6a2d6a90d5ab3ba9c27997a8/recipes/sclang-extensions";
- sha256 = "00nirxawsngvlx7bmf5hqg2wk0l1v5pi09r6phzd0q8gyq3kmbbn";
- name = "recipe";
- };
- packageRequires = [ auto-complete dash emacs s ];
- meta = {
- homepage = "https://melpa.org/#/sclang-extensions";
- license = lib.licenses.free;
- };
- }) {};
- sclang-snippets = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , yasnippet }:
- melpaBuild {
- pname = "sclang-snippets";
- ename = "sclang-snippets";
- version = "20130513.51";
- src = fetchFromGitHub {
- owner = "ptrv";
- repo = "sclang-snippets";
- rev = "c840a416b96f83bdd70491e3d1fbe2f1ae8b3f58";
- sha256 = "0vbcghgapwdf3jgjnjdla17dhf5mkmwapz4a8fmlr7sw1wqvj857";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/680e5757e074c16efd31084a7dc5dcea339597f5/recipes/sclang-snippets";
- sha256 = "0q1bh316v737a0hm9afijk1spvg144cgrf45jm0bpd60zhiv7bb2";
- name = "recipe";
- };
- packageRequires = [ yasnippet ];
- meta = {
- homepage = "https://melpa.org/#/sclang-snippets";
- license = lib.licenses.free;
- };
- }) {};
- scp = callPackage ({ cl-lib ? null
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "scp";
- ename = "scp";
- version = "20171203.1851";
- src = fetchFromGitHub {
- owner = "tszg";
- repo = "emacs-scp";
- rev = "3f437ee9f52df7d9f4c57275a8cfb7f06c3c26ff";
- sha256 = "013i4152irybladx0lyi1kriaxpn6dnpnc9bqdxngmgycmwsrn4r";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/62f5c9284de51373a4015cf053d66977cf00d175/recipes/scp";
- sha256 = "1q7v2cr89syw682zqxhavaggv6aqi69rl94vm8bmn745a868gliw";
- name = "recipe";
- };
- packageRequires = [ cl-lib emacs ];
- meta = {
- homepage = "https://melpa.org/#/scp";
- license = lib.licenses.free;
- };
- }) {};
scpaste = callPackage ({ fetchFromGitHub
, fetchurl
, htmlize
@@ -90488,186 +47071,6 @@
license = lib.licenses.free;
};
}) {};
- scratch-ext = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "scratch-ext";
- ename = "scratch-ext";
- version = "20140103.2116";
- src = fetchFromGitHub {
- owner = "kyanagi";
- repo = "scratch-ext-el";
- rev = "388c53cddd0466b451264894667ed64a6947ad67";
- sha256 = "0ng0by647r49mia7vmjqc97gwlwgs8kmaz0lw2y54jdz8m0bbngp";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/a142d336a57d075dfd5caf44fa1c1254b83ac728/recipes/scratch-ext";
- sha256 = "031wxz10k1q4bi5hywhcw1vzi41d5pv5hc09x8jk9s5nzyssvc0y";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/scratch-ext";
- license = lib.licenses.free;
- };
- }) {};
- scratch-log = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "scratch-log";
- ename = "scratch-log";
- version = "20141114.2343";
- src = fetchFromGitHub {
- owner = "mori-dev";
- repo = "scratch-log";
- rev = "1168f7f16d36ca0f4ddf2bb98881f8db62cc5dc0";
- sha256 = "030mcq0cmamizvra8jh2x76f71g5apiavwb10c28j62rl0r5bisk";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/bec9692973db8853f9d329aebc0cc9e81bb34003/recipes/scratch-log";
- sha256 = "1yp3p0dzhmqrd0krqii3x79k4zc3p59148cijhk6my4n1xqnhs69";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/scratch-log";
- license = lib.licenses.free;
- };
- }) {};
- scratch-message = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "scratch-message";
- ename = "scratch-message";
- version = "20170107.536";
- src = fetchFromGitHub {
- owner = "thisirs";
- repo = "scratch-message";
- rev = "3ecc7f5e3b8a597ebd1492fd426d3720a7f34302";
- sha256 = "1kb664r3gbhv2ja8jyyzfw22db99ini8qbgzcy9xsl56lha4x4xi";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/24c5ff6b643de9fb79334eff57b702281b20bc10/recipes/scratch-message";
- sha256 = "1dl9d4gvicwnb662ir9azywjmmm7xv4d0sz42z7mmwy8hl9hi91b";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/scratch-message";
- license = lib.licenses.free;
- };
- }) {};
- scratch-palette = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , popwin }:
- melpaBuild {
- pname = "scratch-palette";
- ename = "scratch-palette";
- version = "20150225.42";
- src = fetchFromGitHub {
- owner = "zk-phi";
- repo = "scratch-palette";
- rev = "f6803b448079f4a81cc699cec7442ef543cd5818";
- sha256 = "00b4r8bqlxc29k18vig0164d5c9fp5bp5q26d28lwr4f0s4a71d2";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/b737bd93008e10ff446b347f405541a6f4127716/recipes/scratch-palette";
- sha256 = "0m6hc2amwnnii4y189kkridhapl9jipkmadvrmwvspgy3lxhlafs";
- name = "recipe";
- };
- packageRequires = [ popwin ];
- meta = {
- homepage = "https://melpa.org/#/scratch-palette";
- license = lib.licenses.free;
- };
- }) {};
- scratch-pop = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , popwin }:
- melpaBuild {
- pname = "scratch-pop";
- ename = "scratch-pop";
- version = "20170510.758";
- src = fetchFromGitHub {
- owner = "zk-phi";
- repo = "scratch-pop";
- rev = "7f4172c792b10bd38898dd8963cf0ade91921869";
- sha256 = "0mwjq7z0cpaqhqygzhfcpfqyx8376jsc1g2874np6ff49389bj4d";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/420fb3408b64f1a3e42316262016728c483bf0c1/recipes/scratch-pop";
- sha256 = "0s7g1fbnc5hgz8gqmp1lynj5g7vvxisj7scxx5wil9qpn2zyggq1";
- name = "recipe";
- };
- packageRequires = [ popwin ];
- meta = {
- homepage = "https://melpa.org/#/scratch-pop";
- license = lib.licenses.free;
- };
- }) {};
- scratches = callPackage ({ dash
- , f
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "scratches";
- ename = "scratches";
- version = "20151005.2116";
- src = fetchFromGitHub {
- owner = "zhangkaiyulw";
- repo = "scratches";
- rev = "9441afe6396ca38f08029123fab5d87429cbf315";
- sha256 = "10hmy0p4pkrzvvyisk4rjc6hqqyk2sir1rszqgmkhrdywl010vlc";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/6440f81aed1fcddcaf7afeedb74520e605211986/recipes/scratches";
- sha256 = "116bjy1m35h83r2c354i2xk1br87nmvd99kbzax0wgkkkcjff8c4";
- name = "recipe";
- };
- packageRequires = [ dash f ];
- meta = {
- homepage = "https://melpa.org/#/scratches";
- license = lib.licenses.free;
- };
- }) {};
- scribble-mode = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "scribble-mode";
- ename = "scribble-mode";
- version = "20181203.1925";
- src = fetchFromGitHub {
- owner = "emacs-pe";
- repo = "scribble-mode";
- rev = "217945d54de5e4bb207033f2116baa28f5c5ecf2";
- sha256 = "1s5ccw1a5ack01wd94ywfcrar9j98agchwdh30q7iyxr0d2z4sii";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/6469c2b389d757003da69da727905228eb564d50/recipes/scribble-mode";
- sha256 = "0idagikxhr86h2k6fb45zdzg73wpmpiszx0gi6d8jx7s1xqd6s50";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/scribble-mode";
- license = lib.licenses.free;
- };
- }) {};
scrollkeeper = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -90694,35 +47097,6 @@
license = lib.licenses.free;
};
}) {};
- scrooge = callPackage ({ cl-lib ? null
- , dash
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , thrift }:
- melpaBuild {
- pname = "scrooge";
- ename = "scrooge";
- version = "20180630.322";
- src = fetchFromGitHub {
- owner = "cosmicexplorer";
- repo = "emacs-scrooge";
- rev = "0a8c58e9e6708abe4ef7e415bc1e0472318bb1b0";
- sha256 = "1my5yz9ppr7d90ad94mkqzkp20c8bym6mdi7jwab2yisbzykmwzc";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/7e3623181fa771dc94a7026eb58ac81fe9d9fc68/recipes/scrooge";
- sha256 = "1gisyfzawrgg55jbwrbnri314f6zd38di19iwy0b2dim8in4sjpg";
- name = "recipe";
- };
- packageRequires = [ cl-lib dash emacs thrift ];
- meta = {
- homepage = "https://melpa.org/#/scrooge";
- license = lib.licenses.free;
- };
- }) {};
scss-mode = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -90748,62 +47122,6 @@
license = lib.licenses.free;
};
}) {};
- sdcv = callPackage ({ cl-lib ? null
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , popup
- , pos-tip
- , showtip }:
- melpaBuild {
- pname = "sdcv";
- ename = "sdcv";
- version = "20180211.833";
- src = fetchFromGitHub {
- owner = "stardiviner";
- repo = "sdcv.el";
- rev = "50ac95be1369fe8cf98d6254e05d6ac343dad421";
- sha256 = "09i7zsizwq5k79wi5sgcfqdlbx0nazrnw3nd6hkn2vfrcffb7pf1";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/173e233b2dacaaf54d92f3bcc06e54d068520dd4/recipes/sdcv";
- sha256 = "1bj3b17sjd9fha686g6w191l4p8a1p8sb9br65xf54n6nd9bmv7a";
- name = "recipe";
- };
- packageRequires = [ cl-lib emacs popup pos-tip showtip ];
- meta = {
- homepage = "https://melpa.org/#/sdcv";
- license = lib.licenses.free;
- };
- }) {};
- sdlang-mode = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "sdlang-mode";
- ename = "sdlang-mode";
- version = "20161130.2311";
- src = fetchFromGitHub {
- owner = "CyberShadow";
- repo = "sdlang-mode";
- rev = "d42a6eedefeb44919fbacf58d302b6df18f05bbc";
- sha256 = "0r6sm7b15scmjcpdcqvm55hdsvyw5d2g7mrfhsx2hs8sqz64gkwc";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/691af79137015f15a3d383439e534e255ba4b36d/recipes/sdlang-mode";
- sha256 = "1z6n374z55dr2c6xdwgvmpznd5gk9y23k136zmy29b68j2kswj6l";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/sdlang-mode";
- license = lib.licenses.free;
- };
- }) {};
search-web = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -90829,57 +47147,6 @@
license = lib.licenses.free;
};
}) {};
- searchq = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "searchq";
- ename = "searchq";
- version = "20150829.511";
- src = fetchFromGitHub {
- owner = "boyw165";
- repo = "searchq";
- rev = "dd510d55ad66a82c6ef022cfe7c4a73ad5365f82";
- sha256 = "0zs08vxmjb3y4dnfq6djnrhmkgyhhwd5zylrjisrd4y7f089fyh4";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/9738c1be0511540bfd8f324334518c72c9c38c94/recipes/searchq";
- sha256 = "0flsc07v887pm62mslrv7zqnhl62l6348nkm77mizm1592q3kjgr";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/searchq";
- license = lib.licenses.free;
- };
- }) {};
- seclusion-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "seclusion-mode";
- ename = "seclusion-mode";
- version = "20121118.1553";
- src = fetchFromGitHub {
- owner = "dleslie";
- repo = "seclusion-mode";
- rev = "9634e76c52bfb7200ff0f9f01404f743429e9ef0";
- sha256 = "15cjhwjiwmrfzmr74hbw5s92si2qdb8i97nmkbsgkj3444rxg239";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/b087d151b00f5251b15ebb071896995874afb274/recipes/seclusion-mode";
- sha256 = "0ff10x6yr37vpp6ffbk1nb027lgmrydwjrb332fskwlf3xmy6v0m";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/seclusion-mode";
- license = lib.licenses.free;
- };
- }) {};
secretaria = callPackage ({ alert
, emacs
, f
@@ -90909,84 +47176,6 @@
license = lib.licenses.free;
};
}) {};
- see-mode = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , language-detection
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "see-mode";
- ename = "see-mode";
- version = "20180510.1741";
- src = fetchFromGitHub {
- owner = "marcelino-m";
- repo = "see-mode";
- rev = "db9e4324f9dcc14d5125cb6a79d6c9fad5b14626";
- sha256 = "0w595mpdd999j7m9dsy18fy7pr9nq4dm666lvjvlzzgdgwwf0zvc";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/6ee64e846c471926194fcecc4824a06effc0aa5b/recipes/see-mode";
- sha256 = "1124x11vxci9mvx3zn56v5h9dhmy7bzd5pilqdgzp3hzjmyydnfi";
- name = "recipe";
- };
- packageRequires = [ emacs language-detection ];
- meta = {
- homepage = "https://melpa.org/#/see-mode";
- license = lib.licenses.free;
- };
- }) {};
- seeing-is-believing = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "seeing-is-believing";
- ename = "seeing-is-believing";
- version = "20170214.520";
- src = fetchFromGitHub {
- owner = "jcinnamond";
- repo = "seeing-is-believing";
- rev = "fbbe246c0fda87bb26227bb826eebadb418a220f";
- sha256 = "1h1b48s2iirswdlvfz41jbflm4x09ksc2lycrc1awzlwd6r8hdhg";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/14bb6de5c051a68284ee1a7e25ecb2c7c19ffd3b/recipes/seeing-is-believing";
- sha256 = "05aja5xycb3kpmxyi234l50h98f5m1fil6ll4f2xkpxwv31ba5rb";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/seeing-is-believing";
- license = lib.licenses.free;
- };
- }) {};
- seethru = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , shadchen }:
- melpaBuild {
- pname = "seethru";
- ename = "seethru";
- version = "20150218.1029";
- src = fetchFromGitHub {
- owner = "Benaiah";
- repo = "seethru";
- rev = "d87e231f99313bea75b1e69e48c0f32968c82060";
- sha256 = "0qd462qbqdx53xh3ddf76chiljxf6s43r28v2ix85gsig7nm5pgr";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/7945732d9789143b386603dd7c96ef14ba68ddaf/recipes/seethru";
- sha256 = "1lcwslkki9s15xr2dmh2iic4ax8ia0j20hjnjmkv612wv04b806v";
- name = "recipe";
- };
- packageRequires = [ shadchen ];
- meta = {
- homepage = "https://melpa.org/#/seethru";
- license = lib.licenses.free;
- };
- }) {};
sekka = callPackage ({ cl-lib ? null
, concurrent
, fetchFromGitHub
@@ -91040,31 +47229,6 @@
license = lib.licenses.free;
};
}) {};
- selected = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "selected";
- ename = "selected";
- version = "20170222.34";
- src = fetchFromGitHub {
- owner = "Kungsgeten";
- repo = "selected.el";
- rev = "03edaeac90bc6000d263f03be3d889b4685e1bf7";
- sha256 = "1d72vw1dcxnyir7vymr3cfxal5dndm1pmm192aa9bcyrcg7aq39g";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/selected";
- sha256 = "1zk9jvsiw30zqh68xjx2zcc71php68ryiwqmws52ghqiaifj50gf";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/selected";
- license = lib.licenses.free;
- };
- }) {};
selectric-mode = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -91090,32 +47254,6 @@
license = lib.licenses.free;
};
}) {};
- semi = callPackage ({ fetchFromGitHub
- , fetchurl
- , flim
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "semi";
- ename = "semi";
- version = "20190405.739";
- src = fetchFromGitHub {
- owner = "wanderlust";
- repo = "semi";
- rev = "13bb56eb978439957964032cc3118a8bea43d7f4";
- sha256 = "0328yis2hwzsgdi6rkrj5yhl5qlz48grnqkp3y56xyb6wf25cn96";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/e78849c2d1df187b7f0ef4c34985a341e640ad3e/recipes/semi";
- sha256 = "01wk3lgln5lac65hp6v83d292bdk7544z23xa1v6a756nhybwv25";
- name = "recipe";
- };
- packageRequires = [ flim ];
- meta = {
- homepage = "https://melpa.org/#/semi";
- license = lib.licenses.free;
- };
- }) {};
seml-mode = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -91144,164 +47282,6 @@
license = lib.licenses.free;
};
}) {};
- sendto = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "sendto";
- ename = "sendto";
- version = "20160425.550";
- src = fetchFromGitHub {
- owner = "lujun9972";
- repo = "sendto.el";
- rev = "076b81d7a53f75b0a59b0ef3448f35570567054c";
- sha256 = "13qqprxz87cv3sjlq5hj0jp0qcfm3djfgasga8cc84ykrcc47p9f";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/31f7c2f97dd186cb77dc8a106baf5e087792c6ab/recipes/sendto";
- sha256 = "00ifasqpmggr4bhdyymzr215840y0ayfnfp0mh7wj99mr6f3zfq0";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/sendto";
- license = lib.licenses.free;
- };
- }) {};
- sensitive = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , sequences }:
- melpaBuild {
- pname = "sensitive";
- ename = "sensitive";
- version = "20170818.551";
- src = fetchFromGitHub {
- owner = "timvisher";
- repo = "sensitive.el";
- rev = "69dd6125a41d8b55f4b6ba61daa4d1aa1f716fa8";
- sha256 = "0nj71ds4frfi16hsfswmp89rfxkvvdvhdlsqizzi9cbvr49s0l1f";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5e5468ce136fabe59e1434f8a7f265f41c5e64c1/recipes/sensitive";
- sha256 = "0v988k0x3mdp7ank2ihghphh8sanvv96s4sg6pnszg5hczak1vr3";
- name = "recipe";
- };
- packageRequires = [ emacs sequences ];
- meta = {
- homepage = "https://melpa.org/#/sensitive";
- license = lib.licenses.free;
- };
- }) {};
- sentence-navigation = callPackage ({ ample-regexps
- , cl-lib ? null
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "sentence-navigation";
- ename = "sentence-navigation";
- version = "20180408.919";
- src = fetchFromGitHub {
- owner = "noctuid";
- repo = "emacs-sentence-navigation";
- rev = "7c5d2edeaed01196aec25031782e89adeaa089f0";
- sha256 = "15za4fg7c8fsih86wz1npyx6gdmw0xhizklfsyfh84416dsmgswp";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/3d097cf9b6c9c1606505d3988a2afdd7b066abc8/recipes/sentence-navigation";
- sha256 = "1p3ch1ab06v038h130fsxpbq45d1yadl67i2ih4l4fh3xah5997m";
- name = "recipe";
- };
- packageRequires = [ ample-regexps cl-lib emacs ];
- meta = {
- homepage = "https://melpa.org/#/sentence-navigation";
- license = lib.licenses.free;
- };
- }) {};
- seoul256-theme = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "seoul256-theme";
- ename = "seoul256-theme";
- version = "20180505.57";
- src = fetchFromGitHub {
- owner = "anandpiyer";
- repo = "seoul256-emacs";
- rev = "8e76d0207489964ef780420723d49e409f68f7d1";
- sha256 = "1fcnq2jh330va1xvpfh6nnd9gbjjisv0ham44zwi5lh0j7424jkj";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/seoul256-theme";
- sha256 = "1nvhnyfvmpqg0a54nq73lhz3h9g94zkbix13bbzv9bp1lg8v6w1x";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/seoul256-theme";
- license = lib.licenses.free;
- };
- }) {};
- sequences = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "sequences";
- ename = "sequences";
- version = "20170818.552";
- src = fetchFromGitHub {
- owner = "timvisher";
- repo = "sequences.el";
- rev = "564ebbd93b0beea4e75acfbf824350e90b5d5738";
- sha256 = "0ym2bl9dpsglz35is0iwxfw5w7zs9398bkln8lgv28nr6kw0ym4s";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/4cf716df68fb2d6a41fe75fac0b41e356bddcf30/recipes/sequences";
- sha256 = "12wnkywkmxfk2sx40h90k53d5qmc8hiky5vhlyf0ws3n39zvhplh";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/sequences";
- license = lib.licenses.free;
- };
- }) {};
- sequential-command = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "sequential-command";
- ename = "sequential-command";
- version = "20170925.1740";
- src = fetchFromGitHub {
- owner = "rubikitch";
- repo = "sequential-command";
- rev = "a48cbcbe273b33edd3ae56e68f44b4100fa3a48a";
- sha256 = "1f05amz22klvs2yqyw7n5bmivgdn5zc7vkv5x6bgc9b5k977lggj";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/ad10a684b4b2f01bc65883374f36fef156ff55d2/recipes/sequential-command";
- sha256 = "0qhrpwcgn89sqdj8yhgax0qk81ycdanlgwx25cxy8wnxkqqcvh9m";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/sequential-command";
- license = lib.licenses.free;
- };
- }) {};
servant = callPackage ({ ansi
, commander
, dash
@@ -91441,31 +47421,6 @@
license = lib.licenses.free;
};
}) {};
- seti-theme = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "seti-theme";
- ename = "seti-theme";
- version = "20190201.1048";
- src = fetchFromGitHub {
- owner = "caisah";
- repo = "seti-theme";
- rev = "9d76db0b91d4f574dd96ac80fad41da35bffa109";
- sha256 = "14fqkkvjbq2gj737k3yz3s0dkya33fi0dj4wds99zyzss2xp37f8";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/088924b78575359996cf30745497b287cfb11f37/recipes/seti-theme";
- sha256 = "1mwkx3hynabwr0a2rm1bh91h7xf38a11h1fb6ys8s3mnr68csd9z";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/seti-theme";
- license = lib.licenses.free;
- };
- }) {};
sexp-move = callPackage ({ fetchFromGitLab
, fetchurl
, lib
@@ -91542,57 +47497,6 @@
license = lib.licenses.free;
};
}) {};
- shadchen = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "shadchen";
- ename = "shadchen";
- version = "20141102.1039";
- src = fetchFromGitHub {
- owner = "VincentToups";
- repo = "shadchen-el";
- rev = "35f2b9c304eec990c16efbd557198289dc7cbb1f";
- sha256 = "0phivbhjdw76gzrx35rp0zybqfb0fdy2hjllf72qf1r0r5gxahl8";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/8a2a36fbfcf457eab05c1ff31cb9c2f68686094e/recipes/shadchen";
- sha256 = "1r1mfmv4cdlc8kzjiqz81kpqdrwbnyciwdgg6n5x0yi4apwpvnl4";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/shadchen";
- license = lib.licenses.free;
- };
- }) {};
- shader-mode = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "shader-mode";
- ename = "shader-mode";
- version = "20180518.457";
- src = fetchFromGitHub {
- owner = "midnightSuyama";
- repo = "shader-mode";
- rev = "d7dc8d0d6fe8914e8b6d5cf2081ad61e6952359c";
- sha256 = "13scj6w3vsdcgmq7zak3pflqpq295wgzsng72rcafgkkr7r12rar";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/4396f3c10a38f91d5f98684efbeb02812e479209/recipes/shader-mode";
- sha256 = "12y84fa1wc82js53rpadaysmbshhqf6wb97889qkksx19n3xmb9g";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/shader-mode";
- license = lib.licenses.free;
- };
- }) {};
shakespeare-mode = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -91643,106 +47547,6 @@
license = lib.licenses.free;
};
}) {};
- shell-command = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "shell-command";
- ename = "shell-command";
- version = "20090830.340";
- src = fetchFromGitHub {
- owner = "emacsorphanage";
- repo = "shell-command";
- rev = "7e22125f746ce9ffbe9b0282d62f4b4bbbe672bd";
- sha256 = "1my2i26a03z8xyyacsnl5wdylnbhhvazn23bpy639d3l4x4l7jzw";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/ae489be43b1aee93614e40f492ebdf0b98a3fbc1/recipes/shell-command";
- sha256 = "01nviashfr64wm78zi3vrqrqdqgsamp76d9kasxv0b7fqmfx7yjk";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/shell-command";
- license = lib.licenses.free;
- };
- }) {};
- shell-current-directory = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "shell-current-directory";
- ename = "shell-current-directory";
- version = "20140101.1554";
- src = fetchFromGitHub {
- owner = "metaperl";
- repo = "shell-current-directory";
- rev = "bf843771bf9a4aa05e054ade799eb8862f3be89a";
- sha256 = "1w42j5cdddr0riz1xjq3wiz5i9f71i9jdzd1l92ir0mlj05wjyic";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/edcb78c3491a5999b39a40087b7f991c2b737e30/recipes/shell-current-directory";
- sha256 = "0bj2gs96ivm5x8l7gwvfckyalr1amh4cb1v2dbl323zmrqddhgkd";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/shell-current-directory";
- license = lib.licenses.free;
- };
- }) {};
- shell-here = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "shell-here";
- ename = "shell-here";
- version = "20150728.1004";
- src = fetchFromGitHub {
- owner = "ieure";
- repo = "shell-here";
- rev = "251309141e18978d2b8014345acc6f5afcd4d509";
- sha256 = "0z04z07r7p5p05zhaka37s48y82hg2dbk0ynap4inph3frn4yyfl";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/88df6e04614547a59aefbeae88c301f3b8394039/recipes/shell-here";
- sha256 = "0csi70v89bqdpbsizji6c5z0jmkx4x4vk1zfclkpap4dalmxxcsh";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/shell-here";
- license = lib.licenses.free;
- };
- }) {};
- shell-history = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "shell-history";
- ename = "shell-history";
- version = "20100505.139";
- src = fetchFromGitHub {
- owner = "emacsorphanage";
- repo = "shell-history";
- rev = "ee371a81f2d2bf5a308344078329ca1e9b5ed38c";
- sha256 = "0jyz31j5a07shcf2ym5gnn16xk5r3s84ls8kxk5myvxi3wkpgdd4";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/ae489be43b1aee93614e40f492ebdf0b98a3fbc1/recipes/shell-history";
- sha256 = "1cmk8rymnj7dscxjq0p23jgwc16yvzw1804ya5wsg95v239gz1hy";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/shell-history";
- license = lib.licenses.free;
- };
- }) {};
shell-pop = callPackage ({ cl-lib ? null
, emacs
, fetchFromGitHub
@@ -91948,58 +47752,6 @@
license = lib.licenses.free;
};
}) {};
- shift-text = callPackage ({ cl-lib ? null
- , es-lib
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "shift-text";
- ename = "shift-text";
- version = "20130831.955";
- src = fetchFromGitHub {
- owner = "sabof";
- repo = "shift-text";
- rev = "1be9cbf994000022172ceb746fe1d597f57ea8ba";
- sha256 = "13zsws8gq9a8nfk4yzlvfsvqjh9zbnanmw68rcna93yc5nc634nr";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/2ad2ea105b895cb958ce0ab2bf2fad2b40d41b2f/recipes/shift-text";
- sha256 = "1v9zk7ycc8k1qk1cfs2y1knygl686msmlilqy5a7mh0w0z9f3a2i";
- name = "recipe";
- };
- packageRequires = [ cl-lib es-lib ];
- meta = {
- homepage = "https://melpa.org/#/shift-text";
- license = lib.licenses.free;
- };
- }) {};
- shimbun = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "shimbun";
- ename = "shimbun";
- version = "20190404.1600";
- src = fetchFromGitHub {
- owner = "emacs-w3m";
- repo = "emacs-w3m";
- rev = "28f7af52ec09f7c6feb608431f0afae59c69d4fa";
- sha256 = "0njaf3pwilcxac1hd1w7ilrcmjv2iaxb4zzkwjnk73f1smgcxy2m";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/c5a423647410357f0e63afba5b52bbe880fce969/recipes/shimbun";
- sha256 = "04d9kkj4fididhq220c1vjmlzmaqnii95c1ca86kzjbm2bqakkcd";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/shimbun";
- license = lib.licenses.free;
- };
- }) {};
shm = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -92025,59 +47777,6 @@
license = lib.licenses.free;
};
}) {};
- shoulda = callPackage ({ cl-lib ? null
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "shoulda";
- ename = "shoulda";
- version = "20140616.1133";
- src = fetchFromGitHub {
- owner = "marcwebbie";
- repo = "shoulda.el";
- rev = "24dc6b6138a06edde9c8d13a6aaa1654d1d7de54";
- sha256 = "18p0z5d8vhdhmw6x5rys2kfk93pb7mzdagls9ml0mjcixsyy7qsc";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/41497a876c80d81d9562ea4b2cc2a83dba98ae8a/recipes/shoulda";
- sha256 = "0lmlhx34nwvn636y2wvw3sprhhh6q3mdg7dzgpjj7ybibvhp1lzk";
- name = "recipe";
- };
- packageRequires = [ cl-lib ];
- meta = {
- homepage = "https://melpa.org/#/shoulda";
- license = lib.licenses.free;
- };
- }) {};
- show-css = callPackage ({ doom
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , s }:
- melpaBuild {
- pname = "show-css";
- ename = "show-css";
- version = "20160210.608";
- src = fetchFromGitHub {
- owner = "8cylinder";
- repo = "showcss-mode";
- rev = "771daeddd4df7a7c10f66419a837145649bab63b";
- sha256 = "11kzjm12hbcdzrshq20r20l29k3555np1sva7afqrhgvd239fdq1";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/show-css";
- sha256 = "0sq15l58macy2affdgbimnchn491fnrqr3bbgn30k3l3xkvkmc7k";
- name = "recipe";
- };
- packageRequires = [ doom s ];
- meta = {
- homepage = "https://melpa.org/#/show-css";
- license = lib.licenses.free;
- };
- }) {};
showtip = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -92292,56 +47991,6 @@
license = lib.licenses.free;
};
}) {};
- sibilant-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "sibilant-mode";
- ename = "sibilant-mode";
- version = "20151119.1345";
- src = fetchFromGitHub {
- owner = "jbr";
- repo = "sibilant-mode";
- rev = "5baf8c3e80ee0736c7298a2a17fb615ba5ac0d2d";
- sha256 = "0lpr3pcmwn51wl732kb9a2cagrkxjsgk384z2b7cq9zs79mdh616";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/de12c8a37d6d42103f437e6bd974a94924242e8f/recipes/sibilant-mode";
- sha256 = "0jd6dsk93nvwi5yia3623hfc4v6zz4s2n8m1wx9bw8x6kv3h3qbq";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/sibilant-mode";
- license = lib.licenses.free;
- };
- }) {};
- sicp = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "sicp";
- ename = "sicp";
- version = "20180823.522";
- src = fetchFromGitHub {
- owner = "webframp";
- repo = "sicp-info";
- rev = "33acfa10a058aa65b6b22084a5b86a82410d794e";
- sha256 = "1l8isy8kicr4xa6iilxj0cf0f5rqmkidzr6pigql74204db56jhd";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1363d7b6e95375ac63f07eed2b3947f4f81bc9ba/recipes/sicp";
- sha256 = "1q7pbhjk8qgwvj27ianrdbmj98pwf3xv10gmpchh7bypmbyir4wz";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/sicp";
- license = lib.licenses.free;
- };
- }) {};
side-notes = callPackage ({ emacs
, fetchgit
, fetchurl
@@ -92392,58 +48041,6 @@
license = lib.licenses.free;
};
}) {};
- signal = callPackage ({ cl-lib ? null
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "signal";
- ename = "signal";
- version = "20160816.738";
- src = fetchFromGitHub {
- owner = "mola-T";
- repo = "signal";
- rev = "aa58327e2297df921d72a0370468b48663efd438";
- sha256 = "1gzfdk3ks56h8q4xk69aaxkhkg9jhs55iqdicyvq7x9wmjn6b7xw";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/35763febad20f29320d459394f810668db6c3353/recipes/signal";
- sha256 = "1g8sbszh7cnhpfaql8jn22bsdjdyjdnjb00xr43krr6smc1dr2xq";
- name = "recipe";
- };
- packageRequires = [ cl-lib emacs ];
- meta = {
- homepage = "https://melpa.org/#/signal";
- license = lib.licenses.free;
- };
- }) {};
- signature = callPackage ({ fetchFromGitLab
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "signature";
- ename = "signature";
- version = "20140730.1249";
- src = fetchFromGitLab {
- owner = "pidu";
- repo = "signature";
- rev = "c47df2e1189a84505f9224aa78e87b6c65d13d37";
- sha256 = "1g4rr7hpy9r3y4vdpv48xpmy8kqvs4j64kvnhnj2rw2wv1grw78j";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/a52b516b7b10bdada2f64499c8f43f85a236f254/recipes/signature";
- sha256 = "0y5xspcsjap662n1gp882kjripiz90wwbhsq27c0qwl1zcx5rrkj";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/signature";
- license = lib.licenses.free;
- };
- }) {};
silkworm-theme = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -92470,31 +48067,6 @@
license = lib.licenses.free;
};
}) {};
- simp = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "simp";
- ename = "simp";
- version = "20180606.1954";
- src = fetchFromGitHub {
- owner = "re5et";
- repo = "simp";
- rev = "d4d4b8547055347828bedccbeffdb4fd2d5a5d34";
- sha256 = "1a60vk46haibzrm6zgssdw085wpssmmqc66bipvkq6xnp2cvchkc";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/45ff5b788e12218f8e2df7e53444796ca4b929fc/recipes/simp";
- sha256 = "0x4lssjkj3fk9fw603f0sggvcj25iw0zbzsm5c949lhl4a3wvc9c";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/simp";
- license = lib.licenses.free;
- };
- }) {};
simple-bookmarks = callPackage ({ cl-lib ? null
, fetchFromGitHub
, fetchurl
@@ -92521,33 +48093,6 @@
license = lib.licenses.free;
};
}) {};
- simple-call-tree = callPackage ({ anaphora
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "simple-call-tree";
- ename = "simple-call-tree";
- version = "20180224.1256";
- src = fetchFromGitHub {
- owner = "vapniks";
- repo = "simple-call-tree";
- rev = "20059eb5549408def76aeb03d0d20839903dedef";
- sha256 = "0gvhn2r7h6jz7a3i3a8gwlmghv1xfzj0sdib25kz645iylazji4h";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/316a5ffcb3080abd623bbe3065077809e6cbfb74/recipes/simple-call-tree";
- sha256 = "1cbv4frsrwd8d3rg8r4sylwnc1hl3hgh595qwbpx0zd3dp5na2yl";
- name = "recipe";
- };
- packageRequires = [ anaphora emacs ];
- meta = {
- homepage = "https://melpa.org/#/simple-call-tree";
- license = lib.licenses.free;
- };
- }) {};
simple-httpd = callPackage ({ cl-lib ? null
, fetchFromGitHub
, fetchurl
@@ -92574,111 +48119,6 @@
license = lib.licenses.free;
};
}) {};
- simple-mpc = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , s }:
- melpaBuild {
- pname = "simple-mpc";
- ename = "simple-mpc";
- version = "20180715.1829";
- src = fetchFromGitHub {
- owner = "jorenvo";
- repo = "simple-mpc";
- rev = "bee8520e81292b4c7353e45b193f9a13b482f5b2";
- sha256 = "1ja06pv007cmzjjgka95jlg31k7d29jrih1yxyblsxv85s9sg21q";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/62d762308c1ec0c1d8f7b4755b7deb285cbac018/recipes/simple-mpc";
- sha256 = "05x2xyys5mf6k7ndh0l6ykyiygaznb4f8bx3npbhvihrsz9ilf8r";
- name = "recipe";
- };
- packageRequires = [ s ];
- meta = {
- homepage = "https://melpa.org/#/simple-mpc";
- license = lib.licenses.free;
- };
- }) {};
- simple-paren = callPackage ({ cl-lib ? null
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "simple-paren";
- ename = "simple-paren";
- version = "20190315.1156";
- src = fetchFromGitHub {
- owner = "andreas-roehler";
- repo = "simple-paren";
- rev = "2530d5419301c80bc584ee4888ce2d048fba8add";
- sha256 = "0zcak1x2b7y0g29c0njblspawxjxkbkgyn3100wawfcswyav3nri";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5e8886feb4a034fddd40d7381508b09db79f608f/recipes/simple-paren";
- sha256 = "0bmw8pkh9864gymy36r3w5yw08pq894gb1n80wfqls4a78zyvkm3";
- name = "recipe";
- };
- packageRequires = [ cl-lib emacs ];
- meta = {
- homepage = "https://melpa.org/#/simple-paren";
- license = lib.licenses.free;
- };
- }) {};
- simple-rtm = callPackage ({ dash
- , fetchFromGitLab
- , fetchurl
- , lib
- , melpaBuild
- , rtm }:
- melpaBuild {
- pname = "simple-rtm";
- ename = "simple-rtm";
- version = "20160222.734";
- src = fetchFromGitLab {
- owner = "mbunkus";
- repo = "simple-rtm";
- rev = "37c5feffea7c9b571279b6f549d06cf9c0720273";
- sha256 = "0rwvlhwg66ny0rm972wjfz41ck9kqmbax49wkagrkimm1cdrjfia";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/a784f931849ca836557390999b179ef9f6e775f3/recipes/simple-rtm";
- sha256 = "0v5f0vr8sh62yvb7znx00wgybb83dfnkvgl8afyk3ry8n9xkhf5b";
- name = "recipe";
- };
- packageRequires = [ dash rtm ];
- meta = {
- homepage = "https://melpa.org/#/simple-rtm";
- license = lib.licenses.free;
- };
- }) {};
- simple-screen = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "simple-screen";
- ename = "simple-screen";
- version = "20161009.220";
- src = fetchFromGitHub {
- owner = "wachikun";
- repo = "simple-screen";
- rev = "596e3a451d9af24730ab31a8fe15c91a4264d09d";
- sha256 = "0mqlwrkipgf977s0gx57fv5xrqli67hixprvra6q64isapr86yh1";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/02db9a649002ed9dec03661a518f74f3c7a176d9/recipes/simple-screen";
- sha256 = "16zvsmqn882w320h26hjjz5lcyl9y0x4amkf2zfps77xxmkmi5n0";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/simple-screen";
- license = lib.licenses.free;
- };
- }) {};
simpleclip = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -92704,31 +48144,6 @@
license = lib.licenses.free;
};
}) {};
- simplenote = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "simplenote";
- ename = "simplenote";
- version = "20141118.640";
- src = fetchFromGitHub {
- owner = "dotemacs";
- repo = "simplenote.el";
- rev = "734603e877b2d642162ca45f799d2f7b956d2ea0";
- sha256 = "1cqdnnj8pshcxzwb0vivvk8zywbw7a3vibcs88kd9zxkxmdwg0fz";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/8c1c3189da03541e3bee44847ac5d02c2a56ef98/recipes/simplenote";
- sha256 = "0rnvm3q2spfj15kx2c8ic1p8hxg7rwiqgf3x2zg34j1xxayn3h2j";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/simplenote";
- license = lib.licenses.free;
- };
- }) {};
simplenote2 = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -92865,57 +48280,6 @@
license = lib.licenses.free;
};
}) {};
- skewer-reload-stylesheets = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , skewer-mode }:
- melpaBuild {
- pname = "skewer-reload-stylesheets";
- ename = "skewer-reload-stylesheets";
- version = "20160725.520";
- src = fetchFromGitHub {
- owner = "NateEag";
- repo = "skewer-reload-stylesheets";
- rev = "3207abca9551660407a6b009cb40fb32bbb550da";
- sha256 = "0fgxil70yrf6annrbvza4lqaagrn65c7pmayg6pr16hy5w8wcgsk";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/aeaa2c89b995f1ab0b0f96493db0cda44cc851ee/recipes/skewer-reload-stylesheets";
- sha256 = "1hcz8q7rs5g7gbj6w72g8prry4niqjmyxvvc0ala83qw76x4cm7k";
- name = "recipe";
- };
- packageRequires = [ skewer-mode ];
- meta = {
- homepage = "https://melpa.org/#/skewer-reload-stylesheets";
- license = lib.licenses.free;
- };
- }) {};
- skype = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "skype";
- ename = "skype";
- version = "20160711.124";
- src = fetchFromGitHub {
- owner = "kiwanami";
- repo = "emacs-skype";
- rev = "8e3b33e620ed355522aa36434ff41e3ced080629";
- sha256 = "078gjgknsrm1n2f0diian9l056kqh1fj2w0y6ildsvzjipygdz1y";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/d3448698a35c9d5d25639f62024f89cac03d5830/recipes/skype";
- sha256 = "06p5s5agajbm9vg9xxpzv817xmjw2kmcahiw4iypn5yzwhv1aykl";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/skype";
- license = lib.licenses.free;
- };
- }) {};
sl = callPackage ({ cl-lib ? null
, fetchFromGitHub
, fetchurl
@@ -92942,37 +48306,6 @@
license = lib.licenses.free;
};
}) {};
- slack = callPackage ({ alert
- , circe
- , emojify
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , oauth2
- , request
- , websocket }:
- melpaBuild {
- pname = "slack";
- ename = "slack";
- version = "20190402.2337";
- src = fetchFromGitHub {
- owner = "yuya373";
- repo = "emacs-slack";
- rev = "53816e274ce1c65fdfbd93fe0076fdaf79bbfbf2";
- sha256 = "0z9cbajam923v07fji0zmn240z3dgqv77csn9aanv5qpi6xkm1sp";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/f0258cc41de809b67811a5dde3d475c429df0695/recipes/slack";
- sha256 = "0mybjx08yskk9vi06ayiknl5ddyd8h0mnr8c0a3zr61p1x4s6anp";
- name = "recipe";
- };
- packageRequires = [ alert circe emojify oauth2 request websocket ];
- meta = {
- homepage = "https://melpa.org/#/slack";
- license = lib.licenses.free;
- };
- }) {};
slideview = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -93106,32 +48439,6 @@
license = lib.licenses.free;
};
}) {};
- slime-theme = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "slime-theme";
- ename = "slime-theme";
- version = "20170808.622";
- src = fetchFromGitHub {
- owner = "emacsfodder";
- repo = "emacs-slime-theme";
- rev = "8e5880ac69e0b6a079103001cc3a90bdb688998f";
- sha256 = "0g90ypwyvpdzilvhj0rgfrp78a5gflply3rix2wx8rncw569qb6g";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/641d1959bd31598fcdacd39a3d1bb077dcccfa5c/recipes/slime-theme";
- sha256 = "1b709cplxip48a6qjdnzcn5qcgsy0jq1m05d7vc8p5ywgr1f9a00";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/slime-theme";
- license = lib.licenses.free;
- };
- }) {};
slime-volleyball = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -93157,83 +48464,6 @@
license = lib.licenses.free;
};
}) {};
- slirm = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "slirm";
- ename = "slirm";
- version = "20160201.625";
- src = fetchFromGitHub {
- owner = "fbie";
- repo = "slirm";
- rev = "9adfbe1fc67580e7d0d90f7e927a25d63a797464";
- sha256 = "0srj0zcvzr0sjcs37zz11xz8w0yv94m69av9ny7mx8ssf4qp0pxa";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/6407db0f265c49fdddaa6e8f85f295e2b90a077b/recipes/slirm";
- sha256 = "061xjj3vjdkkvd979fhp7bc12g5zkxqxywvcz3z9dlkgdks41ld7";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/slirm";
- license = lib.licenses.free;
- };
- }) {};
- slovak-holidays = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "slovak-holidays";
- ename = "slovak-holidays";
- version = "20150418.155";
- src = fetchFromGitHub {
- owner = "Fuco1";
- repo = "slovak-holidays";
- rev = "effb16dfcd14797bf7448f5113085479db339c02";
- sha256 = "1y1gay1h91c0690gly4qibx1my0l1zpb6s3x58lks8m21jdwfw28";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/d5c6b2208ef209dfe57c2c137a88ce08a4eae475/recipes/slovak-holidays";
- sha256 = "1dcw8pa3r9b7n7dc8fgzijz7ywwxb3nlfg7n0by8dnvpjq2c30bg";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/slovak-holidays";
- license = lib.licenses.free;
- };
- }) {};
- slow-keys = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "slow-keys";
- ename = "slow-keys";
- version = "20180830.2159";
- src = fetchFromGitHub {
- owner = "manuel-uberti";
- repo = "slow-keys";
- rev = "b93ad77f9fc1d14e080d7d64864fc9cb222248b6";
- sha256 = "1s4yk6w9fqf6hmimjcq8r7b54v7f2hz3isihiaidj3sv5zclhflw";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5d16756967dd9077399b92cde2ddd7784739b693/recipes/slow-keys";
- sha256 = "03p0qx8a3g8mapjhdf9pjp3n0ng2pxmizpqn87wk8mbc8cmlwk2w";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/slow-keys";
- license = lib.licenses.free;
- };
- }) {};
slstats = callPackage ({ cl-lib ? null
, emacs
, fetchFromGitHub
@@ -93286,391 +48516,6 @@
license = lib.licenses.free;
};
}) {};
- sly-hello-world = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , sly }:
- melpaBuild {
- pname = "sly-hello-world";
- ename = "sly-hello-world";
- version = "20160119.636";
- src = fetchFromGitHub {
- owner = "joaotavora";
- repo = "sly-hello-world";
- rev = "1bfcca692b6ec0670ed309ffe29eb9384397c183";
- sha256 = "1fxsv83fcv5l7cndsysd8salvfwsabvd84sm7zli2ksf678774gp";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/4150455d424326667390f72f6edd22b274d9fa01/recipes/sly-hello-world";
- sha256 = "0mry5r0qc2w9k31kifqfc9slmh8mp2pz44qb36f41i3znckf7xy4";
- name = "recipe";
- };
- packageRequires = [ sly ];
- meta = {
- homepage = "https://melpa.org/#/sly-hello-world";
- license = lib.licenses.free;
- };
- }) {};
- sly-macrostep = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , macrostep
- , melpaBuild
- , sly }:
- melpaBuild {
- pname = "sly-macrostep";
- ename = "sly-macrostep";
- version = "20160119.434";
- src = fetchFromGitHub {
- owner = "joaotavora";
- repo = "sly-macrostep";
- rev = "b0830871e2bd96ed58876aed6b49f1328d78a3cb";
- sha256 = "00lw6hkxs71abjyi7nhzi8j6n55jyhzsp81ycn6f2liyp4rmqgi7";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/4150455d424326667390f72f6edd22b274d9fa01/recipes/sly-macrostep";
- sha256 = "0gg9r5np2008593n1igq5chda1a3x1iblj0r4mqnnxa0r1hdsw3j";
- name = "recipe";
- };
- packageRequires = [ macrostep sly ];
- meta = {
- homepage = "https://melpa.org/#/sly-macrostep";
- license = lib.licenses.free;
- };
- }) {};
- sly-named-readtables = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , sly }:
- melpaBuild {
- pname = "sly-named-readtables";
- ename = "sly-named-readtables";
- version = "20150817.816";
- src = fetchFromGitHub {
- owner = "joaotavora";
- repo = "sly-named-readtables";
- rev = "f3c28a2e636bd1776b6c7dbc563ef5080bed9f5c";
- sha256 = "1yw1fg1vc6l85v7d6bg16lknxpg7ns1gfw0bxyzyb698zmwzsv60";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/4150455d424326667390f72f6edd22b274d9fa01/recipes/sly-named-readtables";
- sha256 = "0wy0z9m8632qlcxb4pw3csc52yaq7dj7gdf3pbg0wb67f32ihihz";
- name = "recipe";
- };
- packageRequires = [ sly ];
- meta = {
- homepage = "https://melpa.org/#/sly-named-readtables";
- license = lib.licenses.free;
- };
- }) {};
- sly-quicklisp = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , sly }:
- melpaBuild {
- pname = "sly-quicklisp";
- ename = "sly-quicklisp";
- version = "20170112.135";
- src = fetchFromGitHub {
- owner = "joaotavora";
- repo = "sly-quicklisp";
- rev = "8a9e3c0c07c6861ec33b338cc46ac12e7ce6a477";
- sha256 = "17xx79s2nx8prmg0xhfs9i8sdprbysaajc8k4131lnahj65v159l";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/4150455d424326667390f72f6edd22b274d9fa01/recipes/sly-quicklisp";
- sha256 = "0j0qkvs2v563dz2rd70dfmd0qpdwicymx59zv3gn57z5a8m14866";
- name = "recipe";
- };
- packageRequires = [ sly ];
- meta = {
- homepage = "https://melpa.org/#/sly-quicklisp";
- license = lib.licenses.free;
- };
- }) {};
- sly-repl-ansi-color = callPackage ({ cl-lib ? null
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , sly }:
- melpaBuild {
- pname = "sly-repl-ansi-color";
- ename = "sly-repl-ansi-color";
- version = "20171020.816";
- src = fetchFromGitHub {
- owner = "PuercoPop";
- repo = "sly-repl-ansi-color";
- rev = "b9cd52d1cf927bf7e08582d46ab0bcf1d4fb5048";
- sha256 = "0fgcn6bwgz8yyjza07kfi86siargvpq4kp4j20hs6b67ckxjxx0x";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/981e01f562c40e02cb6d56dc1347e922fbad9c18/recipes/sly-repl-ansi-color";
- sha256 = "0wz24kfjl6rp4qss0iq2ilav0mkg2spy2ziikypy7v0iqbssmssi";
- name = "recipe";
- };
- packageRequires = [ cl-lib sly ];
- meta = {
- homepage = "https://melpa.org/#/sly-repl-ansi-color";
- license = lib.licenses.free;
- };
- }) {};
- smart-backspace = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "smart-backspace";
- ename = "smart-backspace";
- version = "20171013.2226";
- src = fetchFromGitHub {
- owner = "itome";
- repo = "smart-backspace";
- rev = "acb390628a181a993aa0d137624f2e5283efa6d9";
- sha256 = "08r2821skwvi9gbkj3l8zzvrizbfs3wapzxppgd0ks2mfhcnsqsl";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/88cd95cd623fb00d1bc6800c1dd3c665a0cce349/recipes/smart-backspace";
- sha256 = "152xdxzrr91qiyq25ghvjlbpc627cw4s120axmz2p2d48pinwir9";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/smart-backspace";
- license = lib.licenses.free;
- };
- }) {};
- smart-comment = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "smart-comment";
- ename = "smart-comment";
- version = "20160322.1139";
- src = fetchFromGitHub {
- owner = "paldepind";
- repo = "smart-comment";
- rev = "ad4e0de29115dc010733b9060d3dab02836b15e1";
- sha256 = "0hg0mabh06ggqcfhcjxbw5hsbrk85bk21hafqlvpd0xizwqq0w0a";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/798c3b42e568bea63edc0c1d3ce2c2d913e3440e/recipes/smart-comment";
- sha256 = "0lbrasdrkyj7zybz0f3xick8p0bvci5bhb2kg6pqzz9pw2iaxw12";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/smart-comment";
- license = lib.licenses.free;
- };
- }) {};
- smart-compile = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "smart-compile";
- ename = "smart-compile";
- version = "20180315.2030";
- src = fetchFromGitHub {
- owner = "zenitani";
- repo = "elisp";
- rev = "16ebc3c570f1949b8198fcc8663d6d26df32717a";
- sha256 = "0i5g7inbr90l3n1rsf4152ax4wkbw2q41ks9j3x6a956zxn8q92w";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/93562afd7b62d7535b8010179ba6ac7e8e6280d0/recipes/smart-compile";
- sha256 = "1w3vyb6wz786ydrywkjmazyvgfl0qxamn0fgnqpn17d2c5jr9c4g";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/smart-compile";
- license = lib.licenses.free;
- };
- }) {};
- smart-cursor-color = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "smart-cursor-color";
- ename = "smart-cursor-color";
- version = "20141124.919";
- src = fetchFromGitHub {
- owner = "7696122";
- repo = "smart-cursor-color";
- rev = "fda3510b23a118f152ece09af88c727065ba016a";
- sha256 = "0f6f7vw6kcifl4f9mwxrb6h90r6vmrcf0ayk37g3ymz6k5blj3q4";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/smart-cursor-color";
- sha256 = "19ah55514ashkm4f49nlbnrpwxpwlfn6x3fbi4dv0x2b8v1828ss";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/smart-cursor-color";
- license = lib.licenses.free;
- };
- }) {};
- smart-dash = callPackage ({ fetchhg
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "smart-dash";
- ename = "smart-dash";
- version = "20110130.1916";
- src = fetchhg {
- url = "https://bitbucket.com/malsyned/smart-dash";
- rev = "f8f23121ecb1";
- sha256 = "069jwi74qh9hy152k19c7avdgb89zym989v92kgghbaaiyinng22";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/98a2cf93cc41cb2bba14f91a83b6949267623198/recipes/smart-dash";
- sha256 = "1n3lh0ximwrqawdg8q9ls6aabidrawqca5w67f8vsfmrvyfx48n4";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/smart-dash";
- license = lib.licenses.free;
- };
- }) {};
- smart-forward = callPackage ({ expand-region
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "smart-forward";
- ename = "smart-forward";
- version = "20140430.13";
- src = fetchFromGitHub {
- owner = "magnars";
- repo = "smart-forward.el";
- rev = "7b6dbfdbd4b646376a567c70e1a161545431b72b";
- sha256 = "19l47xqzjhhm9j3izik0imssip5ygg3lnflb9ixsz1js571aaxha";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/091dcc3775ec2137cb61d66df4e72aca4900897a/recipes/smart-forward";
- sha256 = "032yc45c19fl886jmi5q04r6q47xz5rphb040wjvpd4fnb06hr8c";
- name = "recipe";
- };
- packageRequires = [ expand-region ];
- meta = {
- homepage = "https://melpa.org/#/smart-forward";
- license = lib.licenses.free;
- };
- }) {};
- smart-hungry-delete = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "smart-hungry-delete";
- ename = "smart-hungry-delete";
- version = "20170412.643";
- src = fetchFromGitHub {
- owner = "hrehfeld";
- repo = "emacs-smart-hungry-delete";
- rev = "bae1bdf9647dfe0f92cb138fbadf7ee0f842453d";
- sha256 = "120sg7wfq3nly0qwbchhmwjrg8cdra0g3y08fk5zfngc3ddh3gk7";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/abbf52a856b95ab88cde1fdeeebebb81f7c61fa9/recipes/smart-hungry-delete";
- sha256 = "03hw5p055dbayw5z43c1ippf2lnjgs77l7q969ng3fffqkazjq9b";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/smart-hungry-delete";
- license = lib.licenses.free;
- };
- }) {};
- smart-indent-rigidly = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "smart-indent-rigidly";
- ename = "smart-indent-rigidly";
- version = "20141205.1615";
- src = fetchFromGitHub {
- owner = "re5et";
- repo = "smart-indent-rigidly";
- rev = "323d1fe4d0b81e598249aad01bc44adb180ece0e";
- sha256 = "0q5hxg265ad9gpclv2kzikg6jvbf3zzb1mrykxn0n7mnvdfdlhsi";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/3083f497180d2f7d93bb9a4b98af6ae1bcbe57b9/recipes/smart-indent-rigidly";
- sha256 = "12qggg1m28mlvkdn52dig8bwv58pvipkvn1mlc4r7w569arar44x";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/smart-indent-rigidly";
- license = lib.licenses.free;
- };
- }) {};
- smart-jump = callPackage ({ dumb-jump
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "smart-jump";
- ename = "smart-jump";
- version = "20190216.1206";
- src = fetchFromGitHub {
- owner = "jojojames";
- repo = "smart-jump";
- rev = "f8f98f1c032352f5d8d465a45b3b5b49cd9247d6";
- sha256 = "00v6a04ywxvikfwwgf85hr4p77xlm7shyai558ww3vf2gyhw1ily";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/52f29e14e61b28cd1637ca5d6bd878d91a71251f/recipes/smart-jump";
- sha256 = "14c7p6xqasd0fgn70zj1jlpwjxldzqx44bcdqdk6nmjihw0rk632";
- name = "recipe";
- };
- packageRequires = [ dumb-jump emacs ];
- meta = {
- homepage = "https://melpa.org/#/smart-jump";
- license = lib.licenses.free;
- };
- }) {};
- smart-mark = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "smart-mark";
- ename = "smart-mark";
- version = "20150911.1910";
- src = fetchFromGitHub {
- owner = "zhangkaiyulw";
- repo = "smart-mark";
- rev = "d179cdc3f53001a5ce99d5095f493cdf3a792567";
- sha256 = "0kd3rh6idlaqand9i6sc44s1iahg5jdhqs9jpvivxlycj6z9p7m8";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/6440f81aed1fcddcaf7afeedb74520e605211986/recipes/smart-mark";
- sha256 = "0kx34983qqxkx2afql1daj155294dkbinw861lhx537614fq7wmn";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/smart-mark";
- license = lib.licenses.free;
- };
- }) {};
smart-mode-line = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -93698,33 +48543,6 @@
license = lib.licenses.free;
};
}) {};
- smart-mode-line-atom-one-dark-theme = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , smart-mode-line }:
- melpaBuild {
- pname = "smart-mode-line-atom-one-dark-theme";
- ename = "smart-mode-line-atom-one-dark-theme";
- version = "20181220.956";
- src = fetchFromGitHub {
- owner = "daviderestivo";
- repo = "smart-mode-line-atom-one-dark-theme";
- rev = "79261aeafa89664039201e3d3f405bc8b0a6aa8d";
- sha256 = "06x1na621cm7183im2g2gxkvaqm0yfr9b9i0fbz9bwkcmijxrgmw";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/0a6f3addec8d8fa957bfbc81071d3a434e843cf0/recipes/smart-mode-line-atom-one-dark-theme";
- sha256 = "02hasm2vjvw3r9xkdnn2ddsval8vvhvx15dsac0jp3cc1y1qkm27";
- name = "recipe";
- };
- packageRequires = [ emacs smart-mode-line ];
- meta = {
- homepage = "https://melpa.org/#/smart-mode-line-atom-one-dark-theme";
- license = lib.licenses.free;
- };
- }) {};
smart-mode-line-powerline-theme = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -93753,60 +48571,6 @@
license = lib.licenses.free;
};
}) {};
- smart-newline = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "smart-newline";
- ename = "smart-newline";
- version = "20131207.1940";
- src = fetchFromGitHub {
- owner = "ainame";
- repo = "smart-newline.el";
- rev = "c50ab035839b307c66d439083b6761cb7db5e972";
- sha256 = "1k853hngjrhp7n1bj18p2pk30adzk7j03knhl9i3889lfmd5p4yi";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/3f729926f82d6b61f07f5c8a5e19d46afdcad568/recipes/smart-newline";
- sha256 = "1kyk865vkgh05vzlggs3ii81v86fcbcxybfkv5rkyl3fyqpkza1w";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/smart-newline";
- license = lib.licenses.free;
- };
- }) {};
- smart-region = callPackage ({ cl-lib ? null
- , emacs
- , expand-region
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , multiple-cursors }:
- melpaBuild {
- pname = "smart-region";
- ename = "smart-region";
- version = "20150903.703";
- src = fetchFromGitHub {
- owner = "uk-ar";
- repo = "smart-region";
- rev = "5a8017fd8e8dc3483865951c4942cab3f96f69f6";
- sha256 = "0h559cdyln5f4ignx1r86ryi7wizys0gj03dj7lfzaxr7wkd0jaf";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/cf011493ee3ebc38290ee0349c8475b0588ac928/recipes/smart-region";
- sha256 = "1bcvxf62bfi5lmhprma9rh670kka9p9ygbkgmv6dg6ajjfsplgwc";
- name = "recipe";
- };
- packageRequires = [ cl-lib emacs expand-region multiple-cursors ];
- meta = {
- homepage = "https://melpa.org/#/smart-region";
- license = lib.licenses.free;
- };
- }) {};
smart-semicolon = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -93833,56 +48597,6 @@
license = lib.licenses.free;
};
}) {};
- smart-shift = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "smart-shift";
- ename = "smart-shift";
- version = "20150202.2325";
- src = fetchFromGitHub {
- owner = "hbin";
- repo = "smart-shift";
- rev = "a26ab2b240137e62ec4bce1698ed9c5f7b6d13ae";
- sha256 = "0azhfffm1bkgjx4i3p9f6x2gmw8kc3fafzqj4vxxdibhn0nizqk8";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/79726ff0fbfa24a44d303cc9719f5962638b47e0/recipes/smart-shift";
- sha256 = "0azahlflnh6sk081k5dcqal6nmwkjnj4dq8pv8ckwf8684zp23d3";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/smart-shift";
- license = lib.licenses.free;
- };
- }) {};
- smart-tab = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "smart-tab";
- ename = "smart-tab";
- version = "20170902.1407";
- src = fetchFromGitHub {
- owner = "genehack";
- repo = "smart-tab";
- rev = "76a8ec13384975d39aa1b25e5384a02558dba574";
- sha256 = "02mj2is05adq5v64aahivbkx2kzrxmmg2va650hsvl4izj3dr2x3";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/091dcc3775ec2137cb61d66df4e72aca4900897a/recipes/smart-tab";
- sha256 = "0qi8jph2c9fdsv2mqgxd7wb3q4dax3g5x2hc53kbgkjxylagjvp5";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/smart-tab";
- license = lib.licenses.free;
- };
- }) {};
smart-tabs-mode = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -93908,32 +48622,6 @@
license = lib.licenses.free;
};
}) {};
- smart-window = callPackage ({ cl-lib ? null
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "smart-window";
- ename = "smart-window";
- version = "20160716.1830";
- src = fetchFromGitHub {
- owner = "dryman";
- repo = "smart-window.el";
- rev = "5996461b7cbc5ab4509ac48537916eb29a8e4c16";
- sha256 = "0p1cqpdsp2vdx85i22shyzfhz22zwf1k1dxkqcmlgh3y7f4qq8ir";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/smart-window";
- sha256 = "0w24v7v0477yl5zchyk6713yqp8lyfz600myvv4dp3kgppxpgd3f";
- name = "recipe";
- };
- packageRequires = [ cl-lib ];
- meta = {
- homepage = "https://melpa.org/#/smart-window";
- license = lib.licenses.free;
- };
- }) {};
smartparens = callPackage ({ cl-lib ? null
, dash
, fetchFromGitHub
@@ -94011,31 +48699,6 @@
license = lib.licenses.free;
};
}) {};
- smarty-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "smarty-mode";
- ename = "smarty-mode";
- version = "20100703.458";
- src = fetchFromGitHub {
- owner = "emacsorphanage";
- repo = "smarty-mode";
- rev = "3dfdfe1571f5e9ef55a29c51e5a80046d4cb7568";
- sha256 = "1vl3nx0y2skb8sibqxvmc3wrmmd6z88hknbry348d0ik3cbr0ijx";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5f2a50f62475639af011c99c6cc38928b74b3b0a/recipes/smarty-mode";
- sha256 = "06cyr2330asy2dlx81g3h9gq0yhd4pbnmzfvmla7amh4pfnjg14v";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/smarty-mode";
- license = lib.licenses.free;
- };
- }) {};
smbc = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -94061,32 +48724,6 @@
license = lib.licenses.free;
};
}) {};
- smblog = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "smblog";
- ename = "smblog";
- version = "20170419.321";
- src = fetchFromGitHub {
- owner = "aaptel";
- repo = "smblog-mode";
- rev = "5245e7aeac20915121946f59bba30899305d950b";
- sha256 = "0i5q29b3hk644dnc0d98d613l065p0k846ljg13vgawpiic6ld6b";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/6469537a11972509fa2bfb10eb3f8816cc98efed/recipes/smblog";
- sha256 = "1byalkpc1bcb6p4j4g1cwc4q2i7irxjcphb0hqh1b2k1zixrw5rr";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/smblog";
- license = lib.licenses.free;
- };
- }) {};
smeargle = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -94138,56 +48775,6 @@
license = lib.licenses.free;
};
}) {};
- smiles-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "smiles-mode";
- ename = "smiles-mode";
- version = "20160717.420";
- src = fetchFromGitHub {
- owner = "stardiviner";
- repo = "smiles-mode";
- rev = "fbb381758adcb000a0c304be1b797f985f00e2de";
- sha256 = "07lzr1p58v95a4n6zad8y0dpj7chbxlcmb6s144pvcxx8kjwd4dr";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/smiles-mode";
- sha256 = "0wf02aj9bhl2m861342f5jfkx3xws1ggcyszfp9jphlykw6r0v9k";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/smiles-mode";
- license = lib.licenses.free;
- };
- }) {};
- sml-modeline = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "sml-modeline";
- ename = "sml-modeline";
- version = "20170614.1411";
- src = fetchFromGitHub {
- owner = "emacsorphanage";
- repo = "sml-modeline";
- rev = "d2f9f70174c4cf68c67eb3bb8088235735e34d9a";
- sha256 = "18k2k213vgawxskp9m57r8qarg3pnza6nvbpyi6l03jnmf2kcw2b";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/4728fce21f03c95bcc2b562648e99c537fb09cd8/recipes/sml-modeline";
- sha256 = "00kz03ixkfnm4id8dd8aij2rhakzd4arzd790jdac1y3yyd5pp3y";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/sml-modeline";
- license = lib.licenses.free;
- };
- }) {};
smmry = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -94263,81 +48850,6 @@
license = lib.licenses.free;
};
}) {};
- smotitah = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "smotitah";
- ename = "smotitah";
- version = "20150218.230";
- src = fetchFromGitHub {
- owner = "laynor";
- repo = "smotitah";
- rev = "f9ab562128a5460549d016913533778e8c94bcf3";
- sha256 = "1a097f1x9l0m4dizvnb742svlqsm6hlif73rk7qjar081sk1gjxx";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/326c213450fc515573b963e794584b7b5ac995fa/recipes/smotitah";
- sha256 = "1m5qjl3r96riljp48il8k4rb6rwys1xf1pl93d4qjhprwvz57mv2";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/smotitah";
- license = lib.licenses.free;
- };
- }) {};
- smtpmail-multi = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "smtpmail-multi";
- ename = "smtpmail-multi";
- version = "20160218.1549";
- src = fetchFromGitHub {
- owner = "vapniks";
- repo = "smtpmail-multi";
- rev = "81eabfe56f620ee044ff9dd52fa8b6148d0a9f30";
- sha256 = "0zknryfpg4791l7d7xv9hn2fx00rmbqw3737lfm75484hr10lymz";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/835315ec2781ac90785824630510b9eae80c115a/recipes/smtpmail-multi";
- sha256 = "0nc3k8ly4nx7fm3b2apga3p4svz5c9sldnlk86pz2lzra5h3b4ss";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/smtpmail-multi";
- license = lib.licenses.free;
- };
- }) {};
- smyx-theme = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "smyx-theme";
- ename = "smyx-theme";
- version = "20141127.28";
- src = fetchFromGitHub {
- owner = "tacit7";
- repo = "smyx";
- rev = "6263f6b401bbabaed388c8efcfc0be2e58c51401";
- sha256 = "1z2sdnf11wh5hz1rkrbg7fs4ha3zrbj9qnvfzq9005y89d7cs95x";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/40a1aeabb75438252ebea0332fe1deaf028c956d/recipes/smyx-theme";
- sha256 = "1r85yxr864df5akqknl3hsrmzikr4085bqr6ijrbdj27nz00vl61";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/smyx-theme";
- license = lib.licenses.free;
- };
- }) {};
snakemake-mode = callPackage ({ cl-lib ? null
, emacs
, fetchFromGitHub
@@ -94366,32 +48878,6 @@
license = lib.licenses.free;
};
}) {};
- snapshot-timemachine = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "snapshot-timemachine";
- ename = "snapshot-timemachine";
- version = "20161221.129";
- src = fetchFromGitHub {
- owner = "mrBliss";
- repo = "snapshot-timemachine";
- rev = "99efcebab309b11ed512a8dc62555d3834df5efb";
- sha256 = "18qibcyqxjwpvphmpghppb8ky1xcch1dd4pz91qj5f4h42684ips";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/69376b802f0687227a78838877d89163b2893c5b/recipes/snapshot-timemachine";
- sha256 = "0pvh1ilzv0ambc5cridyhjcxs58wq92bxjkisqv42yar3h3z6f8p";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/snapshot-timemachine";
- license = lib.licenses.free;
- };
- }) {};
snapshot-timemachine-rsnapshot = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -94446,31 +48932,6 @@
license = lib.licenses.free;
};
}) {};
- snippet = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "snippet";
- ename = "snippet";
- version = "20130210.1515";
- src = fetchFromGitHub {
- owner = "pkazmier";
- repo = "snippet.el";
- rev = "11d00dd803874b93836f2010b08bd2c97b0f3c63";
- sha256 = "1nyrfbjrg74wrqlh8229rf7ym07k2a0wscjm0kbg3sam9ryc546y";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/snippet";
- sha256 = "1yld7y1hsrqs0f0iq7zfwknil5zqv65npm67nh548hbyy3rhgd68";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/snippet";
- license = lib.licenses.free;
- };
- }) {};
snoopy = callPackage ({ cl-lib ? null
, emacs
, fetchFromGitHub
@@ -94527,82 +48988,6 @@
license = lib.licenses.free;
};
}) {};
- soft-charcoal-theme = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "soft-charcoal-theme";
- ename = "soft-charcoal-theme";
- version = "20140420.943";
- src = fetchFromGitHub {
- owner = "mswift42";
- repo = "soft-charcoal-theme";
- rev = "5607ab977fae6638e78b1495e02da8955c9ba19f";
- sha256 = "07056pnjgsgw06c67776qp7jci96iqbzlprbavzz2l1j8ywz8cwm";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/soft-charcoal-theme";
- sha256 = "1j9yd4kfh7ih5ipmwvxh9qqq6wxv6qk8a9vb5jiyk90dn8a2d7g5";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/soft-charcoal-theme";
- license = lib.licenses.free;
- };
- }) {};
- soft-morning-theme = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "soft-morning-theme";
- ename = "soft-morning-theme";
- version = "20150918.1341";
- src = fetchFromGitHub {
- owner = "mswift42";
- repo = "soft-morning-theme";
- rev = "c0f9c70c97ef2be2a093cf839c4bfe27740a111c";
- sha256 = "06q82v1hndvznsqg0r6jrxvgxhycg9m65kay4db4yy0gmc66v2xf";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/26f26cb5cd4ed288a042d37039da83b38b9923d0/recipes/soft-morning-theme";
- sha256 = "0lzg478ax6idzh6m5sf2ds4gbv096y0c0gn15dai19f58bs63xzr";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/soft-morning-theme";
- license = lib.licenses.free;
- };
- }) {};
- soft-stone-theme = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "soft-stone-theme";
- ename = "soft-stone-theme";
- version = "20140614.135";
- src = fetchFromGitHub {
- owner = "mswift42";
- repo = "soft-stone-theme";
- rev = "fb475514cfb02cf30ce358a61c48e46614344d48";
- sha256 = "030mf8b0sf9mmzwhg85zh0ccvcg768kckwvbm0yzg7vmq1x46hjl";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/e87cea74119e8239662607072a44e5314eeae7ea/recipes/soft-stone-theme";
- sha256 = "05jjw9z6hqln9yj8ya2xrmjnylp7psfdj9206n30m3lwnlwx399v";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/soft-stone-theme";
- license = lib.licenses.free;
- };
- }) {};
solaire-mode = callPackage ({ cl-lib ? null
, emacs
, fetchFromGitHub
@@ -94708,87 +49093,6 @@
license = lib.licenses.free;
};
}) {};
- sonic-pi = callPackage ({ cl-lib ? null
- , dash
- , emacs
- , fetchFromGitHub
- , fetchurl
- , highlight
- , lib
- , melpaBuild
- , osc }:
- melpaBuild {
- pname = "sonic-pi";
- ename = "sonic-pi";
- version = "20171205.405";
- src = fetchFromGitHub {
- owner = "repl-electric";
- repo = "sonic-pi.el";
- rev = "3cf101b3b299735ed91658c7791ea4f04164e076";
- sha256 = "1x2w7qcx9xcvagb47hlc5vsf5aj5mr0mzvnazyd7ajjilbzn48yr";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/sonic-pi";
- sha256 = "0j6n1qgdrma6vvi6f7xiy66qwsl8710pca4ga9i7srhxv0r47x68";
- name = "recipe";
- };
- packageRequires = [ cl-lib dash emacs highlight osc ];
- meta = {
- homepage = "https://melpa.org/#/sonic-pi";
- license = lib.licenses.free;
- };
- }) {};
- soothe-theme = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "soothe-theme";
- ename = "soothe-theme";
- version = "20141027.741";
- src = fetchFromGitHub {
- owner = "emacsfodder";
- repo = "emacs-soothe-theme";
- rev = "0568a61eeec0b074d8911886359a6c5da13d14cb";
- sha256 = "089ph9c6ggpfcd06166s2qgsghlfw5kvkbn8mqq6hjlyc5a9mvns";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/6f26b8281f9bd05e3c8f2ef21838275711e622c9/recipes/soothe-theme";
- sha256 = "124akv3a4q4vrmprdcjmq7rq6x73mz4wqxvnlczglh9vjl39ndbk";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/soothe-theme";
- license = lib.licenses.free;
- };
- }) {};
- sort-words = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "sort-words";
- ename = "sort-words";
- version = "20160929.635";
- src = fetchFromGitHub {
- owner = "dotemacs";
- repo = "sort-words.el";
- rev = "7b6e108f80237363faf7ec28b2c58dec270b8601";
- sha256 = "18cwii9h2planb9bgrih4hkz2cqinbl8wq5sal4b8kwnaq07bbw7";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/0a4bd566392d7cebe8a891d787439512e8d34cf9/recipes/sort-words";
- sha256 = "1hvbq09byjdbqzbyashw3y1h65wins44jnqcdic7vqzd1p1mzwka";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/sort-words";
- license = lib.licenses.free;
- };
- }) {};
sos = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -94897,76 +49201,6 @@
license = lib.licenses.free;
};
}) {};
- soundcloud = callPackage ({ deferred
- , emms
- , fetchFromGitHub
- , fetchurl
- , json ? null
- , lib
- , melpaBuild
- , request
- , request-deferred
- , string-utils }:
- melpaBuild {
- pname = "soundcloud";
- ename = "soundcloud";
- version = "20150501.2026";
- src = fetchFromGitHub {
- owner = "thieman";
- repo = "soundcloud.el";
- rev = "f998d4276ea90258909c698f6a5a51fccb667c08";
- sha256 = "1m8wcm6y80gq5rrm4brd3f20kmk54s6ph26j4lz4cmilxk6gj56v";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/soundcloud";
- sha256 = "06cbr1h03k5ixam6lsr82lx3nh2kkp0416mlig0zfkd4b8a9mf8c";
- name = "recipe";
- };
- packageRequires = [
- deferred
- emms
- json
- request
- request-deferred
- string-utils
- ];
- meta = {
- homepage = "https://melpa.org/#/soundcloud";
- license = lib.licenses.free;
- };
- }) {};
- soundklaus = callPackage ({ cl-lib ? null
- , dash
- , emacs
- , emms
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , pkg-info
- , request
- , s }:
- melpaBuild {
- pname = "soundklaus";
- ename = "soundklaus";
- version = "20160314.531";
- src = fetchFromGitHub {
- owner = "r0man";
- repo = "soundklaus.el";
- rev = "09ec030843482594beae2664b8fe1e0ad1e66472";
- sha256 = "0w5ac515ymj43p5j19nhfqk0c3251c7x3i97r550g780niby1nc5";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/811d0f1d195a0c6533fd412f0e444100e0685f90/recipes/soundklaus";
- sha256 = "0b63sbgwp99ff94dxrqqp2p99j268fjkkzx0g42g726hv80d4fxb";
- name = "recipe";
- };
- packageRequires = [ cl-lib dash emacs emms pkg-info request s ];
- meta = {
- homepage = "https://melpa.org/#/soundklaus";
- license = lib.licenses.free;
- };
- }) {};
sourcekit = callPackage ({ dash
, dash-functional
, emacs
@@ -95022,83 +49256,6 @@
license = lib.licenses.free;
};
}) {};
- sourcerer-theme = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "sourcerer-theme";
- ename = "sourcerer-theme";
- version = "20161014.925";
- src = fetchFromGitHub {
- owner = "gilbertw1";
- repo = "sourcerer-emacs";
- rev = "c7f8e665d53bb48fb72f95f706710d53d24bd407";
- sha256 = "06bxsbjyrn4grp9i17p90cs4x50cmw62k6a2c6gapkw8f1xbv7xv";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/8532e062b1830d8cf4e7f72518131a1f32762b37/recipes/sourcerer-theme";
- sha256 = "0xikcln8sz3cic5a77cdvq2aazy1csf1qfxgmcavpqz54ps14j1z";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/sourcerer-theme";
- license = lib.licenses.free;
- };
- }) {};
- sourcetrail = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "sourcetrail";
- ename = "sourcetrail";
- version = "20170410.1437";
- src = fetchFromGitHub {
- owner = "CoatiSoftware";
- repo = "emacs-sourcetrail";
- rev = "2f4327b32360b1549d84fecfe06ef8a85cfdedb8";
- sha256 = "0q9fipdn77mk8gpjrcmka3cxshnklksaa45v1b5qza0nlqcg3q1y";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/9713bd8030657c8e867409a6aa8173219809173a/recipes/sourcetrail";
- sha256 = "0qa3iw82dbfc1b45505s39m99r0m2473312prws6hch0qhjyji7h";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/sourcetrail";
- license = lib.licenses.free;
- };
- }) {};
- spacegray-theme = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "spacegray-theme";
- ename = "spacegray-theme";
- version = "20150719.1231";
- src = fetchFromGitHub {
- owner = "bruce";
- repo = "emacs-spacegray-theme";
- rev = "7f70ee36297e5ccf9bc90b1f81472024f5a7a749";
- sha256 = "1a8jp7m9zarvljg5d9c8ydir3qcmwx05c3frs696p9nwvapf6lsb";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/fada130a1e2927d98526f4629cc1101d93e787c5/recipes/spacegray-theme";
- sha256 = "0khiddpsywpv9qvynpfdmybd80lbrhm68j3py6ranxlv7p79j9dx";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/spacegray-theme";
- license = lib.licenses.free;
- };
- }) {};
spaceline = callPackage ({ cl-lib ? null
, dash
, emacs
@@ -95158,82 +49315,6 @@
license = lib.licenses.free;
};
}) {};
- spacemacs-theme = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "spacemacs-theme";
- ename = "spacemacs-theme";
- version = "20190116.1307";
- src = fetchFromGitHub {
- owner = "nashamri";
- repo = "spacemacs-theme";
- rev = "3eae3726faf39aa2a9e4c919a657f335282fefb7";
- sha256 = "0csj0mygv3mlvlxi600i5pkxjirqg58fa7rsh205733iyqxpff93";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/6c8ac39214856c1598beca0bd609e011b562346f/recipes/spacemacs-theme";
- sha256 = "0riiim6qb6x9g5hz0k3qgdymgikynlb9l07mrbfmybkv4919p992";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/spacemacs-theme";
- license = lib.licenses.free;
- };
- }) {};
- spaces = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "spaces";
- ename = "spaces";
- version = "20170809.1508";
- src = fetchFromGitHub {
- owner = "chumpage";
- repo = "chumpy-windows";
- rev = "6bdb51e9a346907d60a9625f6180bddd06be6674";
- sha256 = "1wkyvfqmf24c8kb162pwi6wcm88bzf0x9mxljzkx0s8bq9aliny6";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/fa5d57074f73cf11607f2f1610f92a0c77367f2a/recipes/spaces";
- sha256 = "152x7fzjnjjdk9d9h0hbixdp3haqn5vdx3bq1nfqfrkvzychyr06";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/spaces";
- license = lib.licenses.free;
- };
- }) {};
- spark = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "spark";
- ename = "spark";
- version = "20160414.1901";
- src = fetchFromGitHub {
- owner = "alvinfrancis";
- repo = "spark";
- rev = "eec8feae7dbc8547f878fac302f03e0ff7bc9803";
- sha256 = "155ap3vcypcj0pxvjhi2p0a5a9a2rp63hqnsjczsbabmbz1mdsd5";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/f4d1529ab86de7c033579b1a1d0084899c16f454/recipes/spark";
- sha256 = "0dv7ixv9gw6xxhw5zm4gmv2ll4lja8hmn2pdizlqxaizpm245rkn";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/spark";
- license = lib.licenses.free;
- };
- }) {};
sparkline = callPackage ({ cl-lib ? null
, fetchFromGitHub
, fetchurl
@@ -95312,31 +49393,6 @@
license = lib.licenses.free;
};
}) {};
- speechd-el = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "speechd-el";
- ename = "speechd-el";
- version = "20190103.1226";
- src = fetchFromGitHub {
- owner = "brailcom";
- repo = "speechd-el";
- rev = "d97b5d5abb9d51da6e96c0f55ba7e50cb12aaa2e";
- sha256 = "1adx34fi8v6mxvnvlw1gf6baadp3si2wwi71kcvqz1cqcf0fk4p7";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/96669a664122c2fb69acd4cad2d7bf75d3e8272d/recipes/speechd-el";
- sha256 = "0p8zih9s2x6l2xcfjbzriyhsicaiwxz54iq9h3c8szlzq708mayc";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/speechd-el";
- license = lib.licenses.free;
- };
- }) {};
speed-type = callPackage ({ cl-lib ? null
, fetchFromGitHub
, fetchurl
@@ -95363,32 +49419,6 @@
license = lib.licenses.free;
};
}) {};
- speeddating = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "speeddating";
- ename = "speeddating";
- version = "20180319.23";
- src = fetchFromGitHub {
- owner = "xuchunyang";
- repo = "emacs-speeddating";
- rev = "eeaf90cd10e376bff5a295590a3d5f7fd1402523";
- sha256 = "00ybvyr8sr73i7m10cffgpy9lngwp3v8fsa0nbidc6daky84vrdr";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/01e23a3e2a2495e86aba60302dbd06f3b25768b4/recipes/speeddating";
- sha256 = "0b5lcb1inkcx94grib5ssv1qkbzxqryzm115qizlgfs04k8cwz09";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/speeddating";
- license = lib.licenses.free;
- };
- }) {};
sphinx-doc = callPackage ({ cl-lib ? null
, fetchFromGitHub
, fetchurl
@@ -95416,31 +49446,6 @@
license = lib.licenses.free;
};
}) {};
- sphinx-frontend = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "sphinx-frontend";
- ename = "sphinx-frontend";
- version = "20161025.58";
- src = fetchFromGitHub {
- owner = "kostafey";
- repo = "sphinx-frontend";
- rev = "0cbb03361c245382d3e679dded30c4fc1713c252";
- sha256 = "1ksjgd995pcb4lvwip08i8ay0xpin8dcam3hcgnbjjqjg9hja1cf";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/4cf72e71f159b9eaaa0834682d5dd4eb258616cf/recipes/sphinx-frontend";
- sha256 = "0hdn6zjnhzyka0lzdxqfzbj3lrj767ij406zha9zw8ibbkk7cmag";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/sphinx-frontend";
- license = lib.licenses.free;
- };
- }) {};
sphinx-mode = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -95466,63 +49471,6 @@
license = lib.licenses.free;
};
}) {};
- spice-mode = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "spice-mode";
- ename = "spice-mode";
- version = "20171027.2343";
- src = fetchFromGitHub {
- owner = "stardiviner";
- repo = "spice-mode";
- rev = "702bf2d5c3561be44771ea77b476532d32068504";
- sha256 = "1wqcy9nmhpl3vyasvc79msgd25xbbzva9nbxkdrsbpg07p1is9ik";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/spice-mode";
- sha256 = "1my6dbdnf4scshjf299d4n7vsdq3cxhq9kmqvirs45y3qjm7pgpg";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/spice-mode";
- license = lib.licenses.free;
- };
- }) {};
- spiral = callPackage ({ a
- , avy
- , clojure-mode
- , emacs
- , fetchFromGitHub
- , fetchurl
- , highlight
- , lib
- , melpaBuild
- , treepy }:
- melpaBuild {
- pname = "spiral";
- ename = "spiral";
- version = "20180223.340";
- src = fetchFromGitHub {
- owner = "Unrepl";
- repo = "spiral";
- rev = "907b9792467139a942ba7b07ca0276b90770baf9";
- sha256 = "1rggzzvya26abbzd8bc2kpv59kzgm75wqv1vwqnj9c8im1jvs1na";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/35763febad20f29320d459394f810668db6c3353/recipes/spiral";
- sha256 = "074ymaksb3dgrsrdsi6xdlvigki5l2v66r8204xv50yc88z7l8qr";
- name = "recipe";
- };
- packageRequires = [ a avy clojure-mode emacs highlight treepy ];
- meta = {
- homepage = "https://melpa.org/#/spiral";
- license = lib.licenses.free;
- };
- }) {};
splitjoin = callPackage ({ cl-lib ? null
, fetchFromGitHub
, fetchurl
@@ -95549,31 +49497,6 @@
license = lib.licenses.free;
};
}) {};
- splitter = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "splitter";
- ename = "splitter";
- version = "20170809.1508";
- src = fetchFromGitHub {
- owner = "chumpage";
- repo = "chumpy-windows";
- rev = "6bdb51e9a346907d60a9625f6180bddd06be6674";
- sha256 = "1wkyvfqmf24c8kb162pwi6wcm88bzf0x9mxljzkx0s8bq9aliny6";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/129f0d20616226c449bdaf672c43a06e8f281869/recipes/splitter";
- sha256 = "02vdhvipzwnh6mlj25lirzxkc0shfzqfs1p4gn3smkxqx6g7mdb2";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/splitter";
- license = lib.licenses.free;
- };
- }) {};
spotify = callPackage ({ cl-lib ? null
, fetchFromGitHub
, fetchurl
@@ -95600,85 +49523,6 @@
license = lib.licenses.free;
};
}) {};
- spotlight = callPackage ({ counsel
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , swiper }:
- melpaBuild {
- pname = "spotlight";
- ename = "spotlight";
- version = "20150929.55";
- src = fetchFromGitHub {
- owner = "benmaughan";
- repo = "spotlight.el";
- rev = "ab902900f22e7d1ea2dd8169441d2da7155aaa68";
- sha256 = "05knlca2dvpyqp9lw8dc47fl5kh2jb04q57cygkzfjjkzvywdwq8";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/26e0eba715c869c5bd295afb8971d490e80f6e2b/recipes/spotlight";
- sha256 = "0mmr1spr21pi8sfy95dsgqcxn8qfsphdkfjm5w5q97lh7496z65p";
- name = "recipe";
- };
- packageRequires = [ counsel emacs swiper ];
- meta = {
- homepage = "https://melpa.org/#/spotlight";
- license = lib.licenses.free;
- };
- }) {};
- spray = callPackage ({ fetchFromGitLab
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "spray";
- ename = "spray";
- version = "20160304.1420";
- src = fetchFromGitLab {
- owner = "iankelling";
- repo = "spray";
- rev = "69fe48e7bb079e3011476b9f4eb6ac9ae94d6d9b";
- sha256 = "0anidv7w2vwsjv8rwkvhs3x51av3y8dp435456czy5yfq6i6vfbl";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/e4f5053aa4e1af3f636febe9c3ce8c6ae20c090d/recipes/spray";
- sha256 = "1h8lngcqa343mlc091zs419frgsla65khfj93lv9fil3xbgrm7m9";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/spray";
- license = lib.licenses.free;
- };
- }) {};
- springboard = callPackage ({ fetchFromGitHub
- , fetchurl
- , helm
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "springboard";
- ename = "springboard";
- version = "20170105.2355";
- src = fetchFromGitHub {
- owner = "jwiegley";
- repo = "springboard";
- rev = "263a8cd4582c81bfc29d7db37d5267e2488b148c";
- sha256 = "14mbmkqnw2kkzcb8f9z1g3c8f8f9lca3zb6f3q8jk9dsyp9vh81z";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/138b8a589725ead2fc1de9ea76c55e3eb2473872/recipes/springboard";
- sha256 = "17rmsidsbb4p08vr07mfn25m17wnpadcwr4nxvp79glp5a0wyyib";
- name = "recipe";
- };
- packageRequires = [ helm ];
- meta = {
- homepage = "https://melpa.org/#/springboard";
- license = lib.licenses.free;
- };
- }) {};
sprintly-mode = callPackage ({ fetchFromGitHub
, fetchurl
, furl
@@ -95705,31 +49549,6 @@
license = lib.licenses.free;
};
}) {};
- sproto-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "sproto-mode";
- ename = "sproto-mode";
- version = "20151115.1005";
- src = fetchFromGitHub {
- owner = "m2q1n9";
- repo = "sproto-mode";
- rev = "1753277d9f2163fb3bc58b983a9892831cf9874b";
- sha256 = "1brxm6hs2gsnl8mj6ps0s9kj2qp9v388wwccsqmx7s3bi9zjf10c";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/ac2b4207c4eaa3a048e245242489462a69b4af67/recipes/sproto-mode";
- sha256 = "19l6si3sx2i542r5lyr9axby9hblx76m77f17vnsjf32n3r0qgma";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/sproto-mode";
- license = lib.licenses.free;
- };
- }) {};
sprunge = callPackage ({ cl-lib ? null
, fetchFromGitHub
, fetchurl
@@ -95757,60 +49576,6 @@
license = lib.licenses.free;
};
}) {};
- spu = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , signal
- , timp }:
- melpaBuild {
- pname = "spu";
- ename = "spu";
- version = "20161213.1924";
- src = fetchFromGitHub {
- owner = "mola-T";
- repo = "SPU";
- rev = "41eec86b595816e3852e8ad1a8e07e51a27fd065";
- sha256 = "1j77h761vf74y9sfjpidgaznail95hsg9akjs55sz1xiyy7hkgyw";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/8f2ef1e83c924d5411b47a931432f129db95ff2c/recipes/spu";
- sha256 = "0g7j0rz6ga6x6akiijp4vg5iymvqx5d08d60cz6dccq120fi95v8";
- name = "recipe";
- };
- packageRequires = [ emacs signal timp ];
- meta = {
- homepage = "https://melpa.org/#/spu";
- license = lib.licenses.free;
- };
- }) {};
- sql-clickhouse = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "sql-clickhouse";
- ename = "sql-clickhouse";
- version = "20180302.755";
- src = fetchFromGitHub {
- owner = "leethargo";
- repo = "sql-clickhouse";
- rev = "35308c9292622547a79c0cc2659db2fc9de42e93";
- sha256 = "12j9facwvwnwc8ga3nj9yddx3xp3kp28mih6lg4s1b67zj28pccg";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/a0ef23e6825924094eb69bd8526a95d8fab210c1/recipes/sql-clickhouse";
- sha256 = "083i9aaf69yk71mndl5x0pimn3bkkhp3mfppxvy0f5lzf2847q2j";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/sql-clickhouse";
- license = lib.licenses.free;
- };
- }) {};
sql-impala = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -95887,31 +49652,6 @@
license = lib.licenses.free;
};
}) {};
- sqlite = callPackage ({ fetchFromGitLab
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "sqlite";
- ename = "sqlite";
- version = "20180708.1011";
- src = fetchFromGitLab {
- owner = "cnngimenez";
- repo = "sqlite.el";
- rev = "b8c22fdfed10d8554137ff1776b83cf2b4b9c5fd";
- sha256 = "083fzfy9rmiam06ixxkg5djqdxg62ym0p2kpsij01fgi2vjvnhca";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/949556b57cea0fbbfc98b95d894de95257dfe1e5/recipes/sqlite";
- sha256 = "1c5dprdl8q09yd0kvpkm19z60m9rhkilj5zmj938wlj5bmdlydv8";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/sqlite";
- license = lib.licenses.free;
- };
- }) {};
sqlup-mode = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -96066,31 +49806,6 @@
license = lib.licenses.free;
};
}) {};
- ssh = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "ssh";
- ename = "ssh";
- version = "20120904.1342";
- src = fetchFromGitHub {
- owner = "ieure";
- repo = "ssh-el";
- rev = "c17cf5b43df8ac4662a0580f85898e1f078df0d1";
- sha256 = "1rdhdkwdhb727rj53xyxk6i00sjr58a48hfig14m12niy1k739vd";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/ssh";
- sha256 = "1wlzagcg2fxqcbpd3z02wsil2n224kzmhcd54df80jypgq5fa6k3";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/ssh";
- license = lib.licenses.free;
- };
- }) {};
ssh-agency = callPackage ({ dash
, emacs
, fetchFromGitHub
@@ -96118,31 +49833,6 @@
license = lib.licenses.free;
};
}) {};
- ssh-config-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "ssh-config-mode";
- ename = "ssh-config-mode";
- version = "20180922.251";
- src = fetchFromGitHub {
- owner = "jhgorrell";
- repo = "ssh-config-mode-el";
- rev = "1ec676c021269c7b9cf814cf1d12f6acdcc25588";
- sha256 = "14d9zzfks4kqfqp54qzb2m74bd0rb25sff9rx2d90b5svmvbg15p";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/750b16ee631b4c2014f2ebf767609bab4b8ee421/recipes/ssh-config-mode";
- sha256 = "1jlaf1bipmf51552jyp2ax6n4gwg38n2348kyxlwd7d8vwsibbpq";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/ssh-config-mode";
- license = lib.licenses.free;
- };
- }) {};
ssh-deploy = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -96169,61 +49859,6 @@
license = lib.licenses.free;
};
}) {};
- ssh-tunnels = callPackage ({ cl-lib ? null
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "ssh-tunnels";
- ename = "ssh-tunnels";
- version = "20181129.736";
- src = fetchFromGitHub {
- owner = "death";
- repo = "ssh-tunnels";
- rev = "903bfd0d2d225c7e37fcc8c7596bd0a387384f05";
- sha256 = "0idxzza4n7cdhaw56zvz549i0ciihm74bqbq5ivsabvqg07r6qwm";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/b093a3a9a836bae8ce37a21188c64e9a878066e8/recipes/ssh-tunnels";
- sha256 = "0zlf22wg9adkhycsasv6bfim2h0cknsvihyi1q2l2l4pjdp9ypqj";
- name = "recipe";
- };
- packageRequires = [ cl-lib emacs ];
- meta = {
- homepage = "https://melpa.org/#/ssh-tunnels";
- license = lib.licenses.free;
- };
- }) {};
- stack-mode = callPackage ({ cl-lib ? null
- , fetchFromGitHub
- , fetchurl
- , flycheck
- , haskell-mode
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "stack-mode";
- ename = "stack-mode";
- version = "20150923.823";
- src = fetchFromGitHub {
- owner = "commercialhaskell";
- repo = "stack-ide";
- rev = "7e93bd3e03502beafb4613b7bc690fb9f0db1314";
- sha256 = "1zi2s97idylk5whzlv5ybac9ricqckl81vlwcm79rphk0v6xi3zj";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1328a676140e4b8d01af126c4043bcfa8d1b2a8c/recipes/stack-mode";
- sha256 = "0s0m2lj40php7bc2i3fy9ikd5rmx4v7zbxfkp9vadmlc5s7w25gf";
- name = "recipe";
- };
- packageRequires = [ cl-lib flycheck haskell-mode ];
- meta = {
- homepage = "https://melpa.org/#/stack-mode";
- license = lib.licenses.free;
- };
- }) {};
stan-mode = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -96276,58 +49911,6 @@
license = lib.licenses.free;
};
}) {};
- standoff-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "standoff-mode";
- ename = "standoff-mode";
- version = "20171115.931";
- src = fetchFromGitHub {
- owner = "lueck";
- repo = "standoff-mode";
- rev = "cf84b14066d63694d931395c6026fd0245d8a62b";
- sha256 = "0dbcaz3faw8knx91yjsrb988sn2d9k0i5byhs1bi1ww36y6hmgs6";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/98858a45f72c28eec552b119a66479ea99b60f93/recipes/standoff-mode";
- sha256 = "127bzpm1cz103f1pb860yqrh7mr0rdaivrm9p6ssd01kchl9nskp";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/standoff-mode";
- license = lib.licenses.free;
- };
- }) {};
- start-menu = callPackage ({ cl-lib ? null
- , config-parser
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "start-menu";
- ename = "start-menu";
- version = "20160426.525";
- src = fetchFromGitHub {
- owner = "lujun9972";
- repo = "el-start-menu";
- rev = "f7d33fed7ad2dc61156f1c1cff9e1805366fbd69";
- sha256 = "1w3l8ahal9hjisny382bcw9w1nh2swpb1jzf2djww5h0i4r2h36c";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/88d965f6789d3f5ba3856cbf10edbc46e37b12ae/recipes/start-menu";
- sha256 = "1k1lc9i9vcl2am9afq0ksrxwsy6kppl4i0v10h0w2fq5z374rdkv";
- name = "recipe";
- };
- packageRequires = [ cl-lib config-parser ];
- meta = {
- homepage = "https://melpa.org/#/start-menu";
- license = lib.licenses.free;
- };
- }) {};
stash = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -96353,32 +49936,6 @@
license = lib.licenses.free;
};
}) {};
- state = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "state";
- ename = "state";
- version = "20180627.1256";
- src = fetchFromGitHub {
- owner = "thisirs";
- repo = "state";
- rev = "99fb8e0a944d3b543d54769d332cbbfa92266b11";
- sha256 = "173w874iyrbvcv2a8fdylcyxq2a9s5phbabqp3qp095qh6037klf";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/82e955112089569c775e11888d9811119f84a4f8/recipes/state";
- sha256 = "19y3n8wnbpgbpz4jxy2p7hjqxykg09arjp7s5v22yz7il3gn48l2";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/state";
- license = lib.licenses.free;
- };
- }) {};
status = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -96404,83 +49961,6 @@
license = lib.licenses.free;
};
}) {};
- steam = callPackage ({ cl-lib ? null
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "steam";
- ename = "steam";
- version = "20171108.1613";
- src = fetchFromGitHub {
- owner = "Kungsgeten";
- repo = "steam.el";
- rev = "d6ca2a828b0824da51978397e198bf91c51ce793";
- sha256 = "16cxws1b3iwm9aqbiip298zsjm6gwjihpvkia4p0zvzynwhflw8q";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/25a45eb6297168cd0ce4c4db5574362addad5c69/recipes/steam";
- sha256 = "10k408spgbxi266jk8x57zwav989is16nvwg41dknz91l76v63gw";
- name = "recipe";
- };
- packageRequires = [ cl-lib ];
- meta = {
- homepage = "https://melpa.org/#/steam";
- license = lib.licenses.free;
- };
- }) {};
- stem = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "stem";
- ename = "stem";
- version = "20131102.409";
- src = fetchFromGitHub {
- owner = "yuutayamada";
- repo = "stem";
- rev = "dd704c3447bd5d3f5ac0a4840f8987d4f855d87e";
- sha256 = "17x8zgml8sa5i828hg8bimfal84vvqzxlqdicjc7v7p8h0j57cgs";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/8d9c38d0d4dac86848ad0fec0aeeced009c5eac7/recipes/stem";
- sha256 = "1625nbi2bmb7vzjz0s7y1cy7dp8lp83dayiib3nr2bfkv76fwkcq";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/stem";
- license = lib.licenses.free;
- };
- }) {};
- stem-english = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "stem-english";
- ename = "stem-english";
- version = "20180108.1958";
- src = fetchFromGitHub {
- owner = "kawabata";
- repo = "stem-english";
- rev = "c9fc4c6ed6bf82382e479dae80912f4ae17d31f4";
- sha256 = "1bkmgjfp7xir6d0yf782xkjvf595blrqhr3hack26jg5zl8qsrya";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5c8e97e70e7a86b9f5e55bdd2db492994e8abdd5/recipes/stem-english";
- sha256 = "15d13palwdwrki9p804cdls08ph7sxxzd44nl4bhfm3dxic4sw7x";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/stem-english";
- license = lib.licenses.free;
- };
- }) {};
stgit = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -96506,135 +49986,6 @@
license = lib.licenses.free;
};
}) {};
- sticky = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "sticky";
- ename = "sticky";
- version = "20170925.1736";
- src = fetchFromGitHub {
- owner = "rubikitch";
- repo = "sticky";
- rev = "fec4e1af38f17f5cd80eca361d8e8ef8772db366";
- sha256 = "126zs059snzpg83q9mrb51y0pqawwrj9smr3y7rza4q4qkdp1nk0";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/ad10a684b4b2f01bc65883374f36fef156ff55d2/recipes/sticky";
- sha256 = "0g98qagqchwq9j5nvdz315wak8fvdw1l972cfh0fr4yyg7gxi6xr";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/sticky";
- license = lib.licenses.free;
- };
- }) {};
- stickyfunc-enhance = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "stickyfunc-enhance";
- ename = "stickyfunc-enhance";
- version = "20150429.1114";
- src = fetchFromGitHub {
- owner = "tuhdo";
- repo = "semantic-stickyfunc-enhance";
- rev = "13bdba51fcd83ccbc3267959d23afc94d458dcb0";
- sha256 = "16dxjsr5nj20blww4xpd4jzgjprzzh1nwvb810ggdmp9paf4iy0g";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/e24454febf90ec18a587b2c187a2bd2101e1b7b5/recipes/stickyfunc-enhance";
- sha256 = "13dh19c3bljs83l847syqlg07g33hz6sapg6j4s4xv4skix8zfks";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/stickyfunc-enhance";
- license = lib.licenses.free;
- };
- }) {};
- stock-ticker = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , request
- , s }:
- melpaBuild {
- pname = "stock-ticker";
- ename = "stock-ticker";
- version = "20150204.252";
- src = fetchFromGitHub {
- owner = "hagleitn";
- repo = "stock-ticker";
- rev = "74251cc810604af75f48333d51133326c053dd16";
- sha256 = "09rpn1gbxd0ppb0258l6bcnbxj8r5jhcwkvjg335sgh52srgk3ir";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/75e654f7b3f785bdfead3c594fdc09730c5d33b9/recipes/stock-ticker";
- sha256 = "1slcjk2avybr4v9s7gglizmaxbb3yqg6s6gdbg12m3vvj3b72lfi";
- name = "recipe";
- };
- packageRequires = [ request s ];
- meta = {
- homepage = "https://melpa.org/#/stock-ticker";
- license = lib.licenses.free;
- };
- }) {};
- strace-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "strace-mode";
- ename = "strace-mode";
- version = "20171116.1239";
- src = fetchFromGitHub {
- owner = "pkmoore";
- repo = "strace-mode";
- rev = "2901baa968d5180ab985ac40ca22cc20914d01f5";
- sha256 = "1jd930nc2g562n4cqq1ppl2d8dq7bxkr3fh9f0gjms7bcm106kz9";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/9b2003bee9992d9e79124d95d30b573c8a6bdbfe/recipes/strace-mode";
- sha256 = "16v350nqdxmmk1r4z25bssm436xcm4cvnaxm7f3wxwvmg9z0gx8d";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/strace-mode";
- license = lib.licenses.free;
- };
- }) {};
- strie = callPackage ({ cl-lib ? null
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "strie";
- ename = "strie";
- version = "20160211.1422";
- src = fetchFromGitHub {
- owner = "jcatw";
- repo = "strie.el";
- rev = "eb7efb0cccc127c414f6a64db11454869d9c10a8";
- sha256 = "1kcbkf0wbmqy9slxfqg7wsyw5n2rsaz832ibrxszb642j0l8s7pr";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/strie";
- sha256 = "1ngvpbws7laqxk6mm023r5295msap12h8bh9zrsbr05yxfzhlx83";
- name = "recipe";
- };
- packageRequires = [ cl-lib ];
- meta = {
- homepage = "https://melpa.org/#/strie";
- license = lib.licenses.free;
- };
- }) {};
string-edit = callPackage ({ dash
, fetchFromGitHub
, fetchurl
@@ -96762,55 +50113,6 @@
license = lib.licenses.free;
};
}) {};
- stupid-indent-mode = callPackage ({ fetchgit
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "stupid-indent-mode";
- ename = "stupid-indent-mode";
- version = "20170525.417";
- src = fetchgit {
- url = "https://gist.github.com/5487564.git";
- rev = "3295e7de5e2cfddc3bf0e462e852bf58972f5d70";
- sha256 = "00js2jkzvmvh1gbraijknv48y86pqyk9zv264a5n3l4sw5q6kcvk";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/68cd648bde8028a39849f7beae8deae78bfb877b/recipes/stupid-indent-mode";
- sha256 = "12y8qxxs04qzy09m734qg0857g4612qdswx2bh9jk7dp886fpd7p";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/stupid-indent-mode";
- license = lib.licenses.free;
- };
- }) {};
- stylefmt = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "stylefmt";
- ename = "stylefmt";
- version = "20161025.124";
- src = fetchFromGitHub {
- owner = "KeenS";
- repo = "stylefmt.el";
- rev = "7a38f26bf8ff947215f34f0a064c7ca80575ccbc";
- sha256 = "0cx9llbmfjhaxb60mj483ihl78xb30ldvhd1hdldmc9d473xbvmz";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/stylefmt";
- sha256 = "14ap3xklmxyqz61p7z3fwgxbwjqrcbijcmvsmhfbm102x1spgbhz";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/stylefmt";
- license = lib.licenses.free;
- };
- }) {};
stylus-mode = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -96862,31 +50164,6 @@
license = lib.licenses.free;
};
}) {};
- subatomic256-theme = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "subatomic256-theme";
- ename = "subatomic256-theme";
- version = "20130620.1910";
- src = fetchFromGitHub {
- owner = "d11wtq";
- repo = "subatomic256";
- rev = "326177d6f99cd2b1d30df695e67ee3bc441cd96f";
- sha256 = "1w7mimyqc25phlww20l49wlafnxp6c7dwibvphg3vwl61g0llpq8";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/06a6bdf12623847600d87a624c224b233fdf3536/recipes/subatomic256-theme";
- sha256 = "1whjlkpkkirpnvvjryhlpzwphr1syz5zfyg4pb66i0db03hxwwcy";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/subatomic256-theme";
- license = lib.licenses.free;
- };
- }) {};
subemacs = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -96912,31 +50189,6 @@
license = lib.licenses.free;
};
}) {};
- sublime-themes = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "sublime-themes";
- ename = "sublime-themes";
- version = "20170606.1144";
- src = fetchFromGitHub {
- owner = "owainlewis";
- repo = "emacs-color-themes";
- rev = "60ee40af82eb55b79d5ed4026f1911326311603f";
- sha256 = "17fcqvavgyl9cmv1hwcid2bw513vhawlsmac1w2adiz567594i6h";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/648d250c7d341b31581c839f77c1084ac29d3163/recipes/sublime-themes";
- sha256 = "1nahcfcy831c7w3c69i2na0r8jsdgprffgfdvh4c41cnk4rkgdqj";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/sublime-themes";
- license = lib.licenses.free;
- };
- }) {};
sublimity = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -97014,57 +50266,6 @@
license = lib.licenses.free;
};
}) {};
- sudo-ext = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "sudo-ext";
- ename = "sudo-ext";
- version = "20170126.414";
- src = fetchFromGitHub {
- owner = "rubikitch";
- repo = "sudo-ext";
- rev = "9d4580f304121ce7b8104bd4bd3b64e4dfa3c9b3";
- sha256 = "1m9srlxavqg6yxmz6rz61saz1lj5hh029314dic8kh6g3bqdnh2w";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/f8e4328cae9b4759a75da0b26ea8b68821bc71af/recipes/sudo-ext";
- sha256 = "1zlnz68kzdrc7p90qmzs7fsr9ry4rl259xpyv55jh5icry290z4x";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/sudo-ext";
- license = lib.licenses.free;
- };
- }) {};
- sudoku = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "sudoku";
- ename = "sudoku";
- version = "20161110.2306";
- src = fetchFromGitHub {
- owner = "zevlg";
- repo = "sudoku.el";
- rev = "77c11b5041b58fc943cf1668b44b40bae039cb5b";
- sha256 = "18nbs980y6cj6my208i80cb928rnkk5rn3zwc63prk5whjw4y77v";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/f9861d5d4cf18466b17ac8e53f3874df5312d3f3/recipes/sudoku";
- sha256 = "14nbidjnsm9lwknmqgfr721b484z5156j723kr1wbfv70j8h9kys";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/sudoku";
- license = lib.licenses.free;
- };
- }) {};
suggest = callPackage ({ dash
, emacs
, f
@@ -97096,110 +50297,6 @@
license = lib.licenses.free;
};
}) {};
- suggestion-box = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , popup }:
- melpaBuild {
- pname = "suggestion-box";
- ename = "suggestion-box";
- version = "20170830.107";
- src = fetchFromGitHub {
- owner = "yuutayamada";
- repo = "suggestion-box-el";
- rev = "50af0776c8caf3c79c4d37fd51cbf304ea34b68e";
- sha256 = "01lx20kzay5504xcq6m6yhvayyd7wpzaa1r6i67xqjnr25lqyajw";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5b59be8dc0a1850d3e245957fd170e1d01f4e284/recipes/suggestion-box";
- sha256 = "17yai0fh7rfjbp3wz5x5r4src8lxn6qrhf7brp2gjr6cgdv40iac";
- name = "recipe";
- };
- packageRequires = [ emacs popup ];
- meta = {
- homepage = "https://melpa.org/#/suggestion-box";
- license = lib.licenses.free;
- };
- }) {};
- sunburn-theme = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "sunburn-theme";
- ename = "sunburn-theme";
- version = "20180602.1229";
- src = fetchFromGitHub {
- owner = "mvarela";
- repo = "Sunburn-Theme";
- rev = "ddb01b6f1f4f823398f7f8e08900c2b4a7811d3b";
- sha256 = "18qfcrr4xlwwhhaq7dwh31bbl84a53akgrw2c6lynnyyi4vk2wpq";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/e608f40d00a3b2a80a6997da00e7d04f76d8ef0d/recipes/sunburn-theme";
- sha256 = "07nz7vr0yzf5746d8khlzl6ghaj44yfp0ar9ylbpdpfj7rdx17sa";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/sunburn-theme";
- license = lib.licenses.free;
- };
- }) {};
- sunny-day-theme = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "sunny-day-theme";
- ename = "sunny-day-theme";
- version = "20140413.1425";
- src = fetchFromGitHub {
- owner = "mswift42";
- repo = "sunny-day-theme";
- rev = "420e0a6eb33fcc9b75c2c9e88ab60a975d782a00";
- sha256 = "0mhyhkjjwszwl5wzkys9pgvgx9sps9r46k1s1hpzzf4s3vi015mc";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/11642803ccc5c8dde839508c91dea2728b2b78de/recipes/sunny-day-theme";
- sha256 = "1wsfnmmbzzyggzip66vr38yyzy27blxp91wx97bafj7jpg5cyhzw";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/sunny-day-theme";
- license = lib.licenses.free;
- };
- }) {};
- sunshine = callPackage ({ cl-lib ? null
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "sunshine";
- ename = "sunshine";
- version = "20181029.954";
- src = fetchFromGitHub {
- owner = "aaronbieber";
- repo = "sunshine.el";
- rev = "8959dea03377e61aaca0124ac8d2703daaae6b9a";
- sha256 = "1shzhl5bi5dkmvc07mc7sknm5id89iivjkcxsrdcw004g08hr8y0";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/4a0ff9a4ef4bbe8de722a4f77f4a56a851497ff1/recipes/sunshine";
- sha256 = "1lxiqw7k8cpq0v6p5whgxgzqrbx3sd9174r0d4qlkrpn6rcp44vv";
- name = "recipe";
- };
- packageRequires = [ cl-lib ];
- meta = {
- homepage = "https://melpa.org/#/sunshine";
- license = lib.licenses.free;
- };
- }) {};
suomalainen-kalenteri = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -97251,56 +50348,6 @@
license = lib.licenses.free;
};
}) {};
- supergenpass = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "supergenpass";
- ename = "supergenpass";
- version = "20130328.2248";
- src = fetchFromGitHub {
- owner = "ober";
- repo = "sgpass";
- rev = "549072ef7b5b82913cadd4758e8a0a9926f0a04a";
- sha256 = "0m02snzka243adhwwgriml133n4312lhdia3wdqjcq8y2mlp3331";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/091dcc3775ec2137cb61d66df4e72aca4900897a/recipes/supergenpass";
- sha256 = "0ldy6j6l6rf72w0hl195rdnrabml2a5k91200s186k0r5aja4b95";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/supergenpass";
- license = lib.licenses.free;
- };
- }) {};
- suscolors-theme = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "suscolors-theme";
- ename = "suscolors-theme";
- version = "20161109.1215";
- src = fetchFromGitHub {
- owner = "TheSuspiciousWombat";
- repo = "SusColors-emacs";
- rev = "8f5cdf8de5e58db838ef0e803b60b7d74fc2a889";
- sha256 = "1wc4l7zvb8zmh48cgrl7bkbyfj0sflzq28sc8jssghkcl2735cbg";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/6f26b8281f9bd05e3c8f2ef21838275711e622c9/recipes/suscolors-theme";
- sha256 = "0j8yfl3yglp9kfdpbmfj3jw7npc6nlqw48cchiczh4biry204lbw";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/suscolors-theme";
- license = lib.licenses.free;
- };
- }) {};
svg-mode-line-themes = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -97327,32 +50374,6 @@
license = lib.licenses.free;
};
}) {};
- svnwrapper = callPackage ({ e2ansi
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "svnwrapper";
- ename = "svnwrapper";
- version = "20180414.1143";
- src = fetchFromGitHub {
- owner = "Lindydancer";
- repo = "svnwrapper";
- rev = "de5069f5784e5d9e87a0af0159ba5f28a3716583";
- sha256 = "08sg55cmjbk06622mzhv74f5b5dvbay7gb729zsckczxwrp1cayp";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/cb43431d7a7276cdf1ea741b2b218bc46c2722f9/recipes/svnwrapper";
- sha256 = "06nb7dql7fbaa9khhpxdl8jj6zmypi24bak52sfsa0js77v51pf2";
- name = "recipe";
- };
- packageRequires = [ e2ansi ];
- meta = {
- homepage = "https://melpa.org/#/svnwrapper";
- license = lib.licenses.free;
- };
- }) {};
swagger-to-org = callPackage ({ cl-lib ? null
, emacs
, fetchFromGitHub
@@ -97381,57 +50402,6 @@
license = lib.licenses.free;
};
}) {};
- swap-buffers = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "swap-buffers";
- ename = "swap-buffers";
- version = "20150506.1439";
- src = fetchFromGitHub {
- owner = "ekazakov";
- repo = "swap-buffers";
- rev = "46ab31359b70d935add6c6e9533443116dc51103";
- sha256 = "1kn70570r6x0h1xfs1vr8as27pjfanyhml140yms60gdjb4ssf9r";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/2a0172aaebdf4e0b6f6dd3093482e3cf3eb796d4/recipes/swap-buffers";
- sha256 = "0ih5dhnqy3c9nlfz9m2zwy4q4jaam09ykbdqhsxx2hnwjk7p35bw";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/swap-buffers";
- license = lib.licenses.free;
- };
- }) {};
- swap-regions = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "swap-regions";
- ename = "swap-regions";
- version = "20180915.646";
- src = fetchFromGitHub {
- owner = "xuchunyang";
- repo = "swap-regions.el";
- rev = "f4fd9880cf690e003fcde88dcf2b46adbbbb03cd";
- sha256 = "1d45yanqk4w0idqwkrwig1dl22wr820k11r3gynv7an643k4wngp";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/6805c7710618ed1178ffd3488295d4d6b33e8ebe/recipes/swap-regions";
- sha256 = "0gl4vr7wjh5gjskrwbqypaqyfigpgh379bm4l2gvbsbhahsmbj67";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/swap-regions";
- license = lib.licenses.free;
- };
- }) {};
sweetgreen = callPackage ({ cl-lib ? null
, dash
, fetchFromGitHub
@@ -97470,12 +50440,12 @@
melpaBuild {
pname = "swift-mode";
ename = "swift-mode";
- version = "8.0.0";
+ version = "8.0.1";
src = fetchFromGitHub {
owner = "swift-emacs";
repo = "swift-mode";
- rev = "3b6bdad3870ecb87190cfec993bdae0545a8dbaa";
- sha256 = "1x68fli13nd8mwjzc5d7sk2kkjrw22z9xl3srvzh7qqfm8pwcd2r";
+ rev = "86f8f62294aa5a6d44fa872278d75a4a41f403d4";
+ sha256 = "0sszk2nwp6h9qk7vgh5n05pzh264br3x3r1hyj97gwf8jdqzkr74";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/6440f81aed1fcddcaf7afeedb74520e605211986/recipes/swift-mode";
@@ -97620,35 +50590,6 @@
license = lib.licenses.free;
};
}) {};
- swoop = callPackage ({ async
- , emacs
- , fetchFromGitHub
- , fetchurl
- , ht
- , lib
- , melpaBuild
- , pcre2el }:
- melpaBuild {
- pname = "swoop";
- ename = "swoop";
- version = "20160120.915";
- src = fetchFromGitHub {
- owner = "ShingoFukuyama";
- repo = "emacs-swoop";
- rev = "a5e475db7a9f5db02ba3d08cd3c1c3594e2e01d7";
- sha256 = "10ka6f86n07xlf0z7w35db0mzp2zk4xhr6jd19kjdrn2j0ynlcw5";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/swoop";
- sha256 = "0zcxasc0bpldvlp6032f9v1s4vm9r76pzd7sjgwa9dxbajw5h7fs";
- name = "recipe";
- };
- packageRequires = [ async emacs ht pcre2el ];
- meta = {
- homepage = "https://melpa.org/#/swoop";
- license = lib.licenses.free;
- };
- }) {};
sws-mode = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -97780,58 +50721,6 @@
license = lib.licenses.free;
};
}) {};
- symon-lingr = callPackage ({ cl-lib ? null
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , symon }:
- melpaBuild {
- pname = "symon-lingr";
- ename = "symon-lingr";
- version = "20150719.642";
- src = fetchFromGitHub {
- owner = "zk-phi";
- repo = "symon-lingr";
- rev = "056d1a473e36992ff5881e5ce6fdc331cead975f";
- sha256 = "030bglxnvrkf1f9grbhd8n11j4c6sxpabpjdr1ryx522v01fvx8j";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/936e9a83ed73d3b6090e5c401076b6cff5d9732d/recipes/symon-lingr";
- sha256 = "0kyhmw25cn10b4jv2yx7bvp8zkwcswiidpk4amyaisw25820gkv1";
- name = "recipe";
- };
- packageRequires = [ cl-lib symon ];
- meta = {
- homepage = "https://melpa.org/#/symon-lingr";
- license = lib.licenses.free;
- };
- }) {};
- sync-recentf = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "sync-recentf";
- ename = "sync-recentf";
- version = "20160326.1301";
- src = fetchFromGitHub {
- owner = "ffevotte";
- repo = "sync-recentf";
- rev = "0052561d5c5b5c2684faedc3eead776aec06c3ed";
- sha256 = "006siydqxqds0qqds0zxn821dk4pw14wyymyp03n594wgqzw7m8q";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/9858ea35f2a3faacab56b6ccba5672956560456b/recipes/sync-recentf";
- sha256 = "17aji2vcw6zfd823anzwj8pcgyxamxr87bnni085jvlz0vx6gh9c";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/sync-recentf";
- license = lib.licenses.free;
- };
- }) {};
syndicate = callPackage ({ evil
, fetchFromGitHub
, fetchurl
@@ -97858,34 +50747,6 @@
license = lib.licenses.free;
};
}) {};
- synonymous = callPackage ({ cl-lib ? null
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , request }:
- melpaBuild {
- pname = "synonymous";
- ename = "synonymous";
- version = "20180325.1117";
- src = fetchFromGitHub {
- owner = "toroidal-code";
- repo = "synonymous.el";
- rev = "2cb9a674d84fddf3f1b00c9d6b13a853576acb87";
- sha256 = "1l0skavpj96x5gdrx9l8dqj4mrb7zcilv3jj335ak11p2i4ckcq2";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/ecf2c44c63e9f41f1733849bdef0d0c301485580/recipes/synonymous";
- sha256 = "0vawa9qwvv6z1i7vzhkjdl1l9r1yham48yn5y8w8g1xyhxxp6rs5";
- name = "recipe";
- };
- packageRequires = [ cl-lib emacs request ];
- meta = {
- homepage = "https://melpa.org/#/synonymous";
- license = lib.licenses.free;
- };
- }) {};
synosaurus = callPackage ({ cl-lib ? null
, fetchFromGitHub
, fetchurl
@@ -97912,60 +50773,6 @@
license = lib.licenses.free;
};
}) {};
- synquid = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , flycheck
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "synquid";
- ename = "synquid";
- version = "20160930.850";
- src = fetchFromGitHub {
- owner = "cpitclaudel";
- repo = "synquid-emacs";
- rev = "28701ce1a15437202f53ab93a14bcba1de83fd2c";
- sha256 = "0c0pi5w8xvir9gnbjp80g1c4i3rhid65zwh4i4vkyivkh2s29f6i";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/6ccd9f265d90a5f6a95942938532f556b223e4da/recipes/synquid";
- sha256 = "10kmd9g3qbfnyfl2bdf2s70f5sd3pyzalq18dpgq5ijkwqi019k7";
- name = "recipe";
- };
- packageRequires = [ emacs flycheck ];
- meta = {
- homepage = "https://melpa.org/#/synquid";
- license = lib.licenses.free;
- };
- }) {};
- syntactic-close = callPackage ({ cl-lib ? null
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "syntactic-close";
- ename = "syntactic-close";
- version = "20181026.931";
- src = fetchFromGitHub {
- owner = "emacs-berlin";
- repo = "syntactic-close";
- rev = "426975d73c474eb4e6a0af20f34455aac6e89610";
- sha256 = "1gyhz4mzd5gcfy9mx65aym8abz4wfdgy229aj1ng1c0j32fjk9rm";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/f2c15c0c8ee37a1de042a974c6daddbfa7f33f1d/recipes/syntactic-close";
- sha256 = "19lrzxxyzdj1nrzdgzandjz3b8b4pw7akbv86yf0mdf023d9as1f";
- name = "recipe";
- };
- packageRequires = [ cl-lib emacs ];
- meta = {
- homepage = "https://melpa.org/#/syntactic-close";
- license = lib.licenses.free;
- };
- }) {};
syntactic-sugar = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -97991,30 +50798,6 @@
license = lib.licenses.free;
};
}) {};
- syntax-subword = callPackage ({ fetchhg
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "syntax-subword";
- ename = "syntax-subword";
- version = "20160519.1205";
- src = fetchhg {
- url = "https://bitbucket.com/jpkotta/syntax-subword";
- rev = "ad0db0fcb464";
- sha256 = "1wcgr6scvwwfmhhjbpq3riq0gmp4g08ffbl91fpgp72j8zrc1c6x";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5b7972602399f9df9139cff177e38653bb0f43ed/recipes/syntax-subword";
- sha256 = "1as89ffqz2h69fdwybgs5wibnrvskm7hd58vagfjkla9pjlpffpm";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/syntax-subword";
- license = lib.licenses.free;
- };
- }) {};
system-packages = callPackage ({ emacs
, fetchFromGitLab
, fetchurl
@@ -98092,31 +50875,6 @@
license = lib.licenses.free;
};
}) {};
- systemtap-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "systemtap-mode";
- ename = "systemtap-mode";
- version = "20151122.1140";
- src = fetchFromGitHub {
- owner = "ruediger";
- repo = "systemtap-mode";
- rev = "8b5086d6b0050a12bb37e33c24c24d1f420afd3b";
- sha256 = "14hrqz26h89sdgfpfyhwwxvqkv3j0zn67yy8wz0nbla9k2jjf6h8";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/b1df01b4cccfb234971933d24de21a2b5648fd8c/recipes/systemtap-mode";
- sha256 = "1l2jx6mvph0q2pdlhq7p4vwfw72rfl8k1rwi504bbkr5n5xwhhhz";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/systemtap-mode";
- license = lib.licenses.free;
- };
- }) {};
ta = callPackage ({ cl-lib ? null
, emacs
, fetchFromGitHub
@@ -98144,58 +50902,6 @@
license = lib.licenses.free;
};
}) {};
- tab-group = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "tab-group";
- ename = "tab-group";
- version = "20140306.650";
- src = fetchFromGitHub {
- owner = "tarao";
- repo = "tab-group-el";
- rev = "5a290ec2608e4100fb188fd60ecb77affcc3465b";
- sha256 = "0lfvgbgvsm61kv5mcjnhnfjcnr7fy1015y0hndkf9xvdlw4hahr4";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/ad758d865bde8c97d27c0d57cabe1606f8b36974/recipes/tab-group";
- sha256 = "1i5lxpf3wmqnqj9mzgcn4gp1gjxp737awrzl1dml5wnarbbj4fs9";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/tab-group";
- license = lib.licenses.free;
- };
- }) {};
- tab-jump-out = callPackage ({ dash
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "tab-jump-out";
- ename = "tab-jump-out";
- version = "20151005.1830";
- src = fetchFromGitHub {
- owner = "zhangkaiyulw";
- repo = "tab-jump-out";
- rev = "1c3fec1826d2891177ea78e4e7cce1dc67e83e51";
- sha256 = "0h7sfbca1nzcjylwl7zp25yj6wxnlx8g8a50zc6sg6jg4rggi2fm";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/6440f81aed1fcddcaf7afeedb74520e605211986/recipes/tab-jump-out";
- sha256 = "1p2hkj0d9hbiwbf746l3rad8a5x6hk97b0ajl6q6cwbmy2qm3cca";
- name = "recipe";
- };
- packageRequires = [ dash emacs ];
- meta = {
- homepage = "https://melpa.org/#/tab-jump-out";
- license = lib.licenses.free;
- };
- }) {};
tabbar = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -98273,32 +50979,6 @@
license = lib.licenses.free;
};
}) {};
- tabula-rasa = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "tabula-rasa";
- ename = "tabula-rasa";
- version = "20141215.2147";
- src = fetchFromGitHub {
- owner = "idomagal";
- repo = "Tabula-Rasa";
- rev = "e85fff9de18dc31bc6a7aca726e34a95cc5459f5";
- sha256 = "1dbjfq9a7a5s9c18nrp4kcda64jkg5cp8na31kxw0hjcn98dgqa8";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/tabula-rasa";
- sha256 = "14j92inssmm61bn475gyn0dn0rv8kvfnqyl1zq3xliy7a0jn58zz";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/tabula-rasa";
- license = lib.licenses.free;
- };
- }) {};
tagedit = callPackage ({ dash
, fetchFromGitHub
, fetchurl
@@ -98326,107 +51006,6 @@
license = lib.licenses.free;
};
}) {};
- take-off = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , web-server }:
- melpaBuild {
- pname = "take-off";
- ename = "take-off";
- version = "20140531.217";
- src = fetchFromGitHub {
- owner = "tburette";
- repo = "take-off";
- rev = "aa9ea45566fc74febbb6ee9c409ecc4b59246215";
- sha256 = "13zwlb5805cpv0pbr7fj5b4crlg7lb0ibslvcpszm0cz6rlifcvf";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/3d129ad161d8538c9db022bbd4e90eacda998cf4/recipes/take-off";
- sha256 = "05vlajmirbp62rpbdwa2bimpzyl9xc331gg0lhn2rkivc0hma2ar";
- name = "recipe";
- };
- packageRequires = [ emacs web-server ];
- meta = {
- homepage = "https://melpa.org/#/take-off";
- license = lib.licenses.free;
- };
- }) {};
- tango-2-theme = callPackage ({ fetchgit
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "tango-2-theme";
- ename = "tango-2-theme";
- version = "20120312.1325";
- src = fetchgit {
- url = "https://gist.github.com/2024464.git";
- rev = "64e44c98e41ebbe3b827d54280e3b9615787daaa";
- sha256 = "1lqkazis9pfcfdsb2lar4l1n4pd085v60xmnlkdrdllwamqachkk";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/ab432b0eac0bcf0d40c5b3c8a78475bc0fea47d2/recipes/tango-2-theme";
- sha256 = "1a9qmz99h99gpd0sxqb71c08wr8pm3bzsg3p4cvf3vcirvav9lq6";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/tango-2-theme";
- license = lib.licenses.free;
- };
- }) {};
- tango-plus-theme = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "tango-plus-theme";
- ename = "tango-plus-theme";
- version = "20170214.908";
- src = fetchFromGitHub {
- owner = "tmalsburg";
- repo = "tango-plus-theme";
- rev = "8ba8901397e3e9f1d53110487bfa0effc65015e7";
- sha256 = "025dca4yqpai45s74nk41y075v8pv59fdna11c0qqz3ihyrdhbrq";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/tango-plus-theme";
- sha256 = "1p1b48fvmk7a8m3bnddkx2pp7kz5agac0v1ii2r6iqapdqsl22ng";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/tango-plus-theme";
- license = lib.licenses.free;
- };
- }) {};
- tangotango-theme = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "tangotango-theme";
- ename = "tangotango-theme";
- version = "20170924.809";
- src = fetchFromGitHub {
- owner = "juba";
- repo = "color-theme-tangotango";
- rev = "e2f2ea9c35f06dfc43a29c91c14cf0cdb19f2144";
- sha256 = "01gvsvha8z7pyr8c33gh3xmz47lh6b8g0nwf1gzdiw1gd0sfhs4z";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/ebfcfa3ba4ca77443667a9478d59214810cd8cc2/recipes/tangotango-theme";
- sha256 = "05cnvyqmh5h5mqys7qs7d9knzxzmi2x0j1avp77x5l5njzzv59s2";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/tangotango-theme";
- license = lib.licenses.free;
- };
- }) {};
tao-theme = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -98504,115 +51083,6 @@
license = lib.licenses.free;
};
}) {};
- tblui = callPackage ({ cl-lib ? null
- , dash
- , fetchFromGitHub
- , fetchurl
- , lib
- , magit-popup
- , melpaBuild
- , tablist }:
- melpaBuild {
- pname = "tblui";
- ename = "tblui";
- version = "20161007.1212";
- src = fetchFromGitHub {
- owner = "Yuki-Inoue";
- repo = "tblui.el";
- rev = "e280e11b35a2fdbcadf9ce901a2b62684ac7a7a3";
- sha256 = "0alb0gpdny1y90b2c5s25as56qbi3dy8rfnm9ba0k7ifwy0lmfq5";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/f4dd6e9dcc73c57f93371ba16b15f2d98d805dae/recipes/tblui";
- sha256 = "1m0zhk5zyialklnil5az974yz6g1zksw02453cxc0xpn5pf0a3xa";
- name = "recipe";
- };
- packageRequires = [ cl-lib dash magit-popup tablist ];
- meta = {
- homepage = "https://melpa.org/#/tblui";
- license = lib.licenses.free;
- };
- }) {};
- tbx2org = callPackage ({ cl-lib ? null
- , dash
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , s }:
- melpaBuild {
- pname = "tbx2org";
- ename = "tbx2org";
- version = "20140224.759";
- src = fetchFromGitHub {
- owner = "istib";
- repo = "tbx2org";
- rev = "08e9816ba6066f56936050b58d07ceb2187ae6f7";
- sha256 = "1jp80qywcphql1ngd4fr24lqdfwrw0bw6q9hgq5vmzgjwfxwxwd4";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/d616cbf4ad7e49807afd2f7acf0a0fd2f2a0bac4/recipes/tbx2org";
- sha256 = "1yvkw65la4w12c4w6l9ai73lzng170wv4b8gry99m2bakw3wr8m8";
- name = "recipe";
- };
- packageRequires = [ cl-lib dash s ];
- meta = {
- homepage = "https://melpa.org/#/tbx2org";
- license = lib.licenses.free;
- };
- }) {};
- tc = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "tc";
- ename = "tc";
- version = "20181108.2028";
- src = fetchFromGitHub {
- owner = "kanchoku";
- repo = "tc";
- rev = "5496f8dee27c4d925977da3cca6fcacf9b45bc58";
- sha256 = "1clf56sxvrky05qzk5kri01r0jz4zfwysxzs3iix0aljrz8mdi8w";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/9fddfc79ed2c614c33e90ba80f300912fdab88a3/recipes/tc";
- sha256 = "05lnsaizlh4wqjkp0wqcm1756r9ia46as8zf01k8qsi0mm452g6q";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/tc";
- license = lib.licenses.free;
- };
- }) {};
- tco = callPackage ({ dash
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "tco";
- ename = "tco";
- version = "20190308.1655";
- src = fetchFromGitHub {
- owner = "Wilfred";
- repo = "tco.el";
- rev = "482db5313f090b17ed22ccd856f0e141dc75afe6";
- sha256 = "1z7xkbrqznk6ni687qqknp8labcyhl8y6576hjfri89fn21385y9";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/ca33f97f0394585c8ccb31cab0ee776d1655907c/recipes/tco";
- sha256 = "0hfrzwjlgynk3mydrpmic9mckak37r22fdglrfas6zdihgrg152f";
- name = "recipe";
- };
- packageRequires = [ dash emacs ];
- meta = {
- homepage = "https://melpa.org/#/tco";
- license = lib.licenses.free;
- };
- }) {};
tdd-status-mode-line = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -98638,57 +51108,6 @@
license = lib.licenses.free;
};
}) {};
- tea-time = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "tea-time";
- ename = "tea-time";
- version = "20120331.120";
- src = fetchFromGitHub {
- owner = "konzeptual";
- repo = "tea-time";
- rev = "1f6cf0bdd27c5eb3508989c5095427781f858eca";
- sha256 = "0b4cwkwkc4i8lc4j30xc9d6xskm3gqrc2dij60ya75h92aj0lj40";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/tea-time";
- sha256 = "0qypwf0pgsixq6c5avbwp81i3ayy9dd2fngzdvq14pax913q8pg1";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/tea-time";
- license = lib.licenses.free;
- };
- }) {};
- teacode-expand = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "teacode-expand";
- ename = "teacode-expand";
- version = "20181230.2240";
- src = fetchFromGitHub {
- owner = "raguay";
- repo = "TeaCode-Expand";
- rev = "7df6f9ec95da1fb47bbae489bb3f2c27ed3a9b3a";
- sha256 = "0z0297zrvd8zf8bmf4kf9gzf6qajs4abdy6appb3swz3z2v3nqkb";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/8b23b0f701627ed18886f29ffd33ef7fb1f82e04/recipes/teacode-expand";
- sha256 = "1hkh7mzzwrk7a8ihss7kyncw9mkwr4iw06gv5y6kg806qc4f1nn3";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/teacode-expand";
- license = lib.licenses.free;
- };
- }) {};
telepathy = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -98743,62 +51162,6 @@
license = lib.licenses.free;
};
}) {};
- template-overlays = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , ov }:
- melpaBuild {
- pname = "template-overlays";
- ename = "template-overlays";
- version = "20180706.432";
- src = fetchFromGitHub {
- owner = "mmontone";
- repo = "template-overlays";
- rev = "3cbc9a4882dcbbddf9b168883d119a6af0848784";
- sha256 = "1lnrs6zphpk1qi8pg8km9srbv5n9i70f2jvyj5zvxhlpp0jb52l2";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/8856e67aae1f623714bc2a61a7b4773ed1fb2934/recipes/template-overlays";
- sha256 = "0vmadkgzp4i0mh64la67k1anvmlmd4i7iibdlr9ly8z7i3cdsxqn";
- name = "recipe";
- };
- packageRequires = [ emacs ov ];
- meta = {
- homepage = "https://melpa.org/#/template-overlays";
- license = lib.licenses.free;
- };
- }) {};
- temporary-persistent = callPackage ({ dash
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , names
- , s }:
- melpaBuild {
- pname = "temporary-persistent";
- ename = "temporary-persistent";
- version = "20161210.333";
- src = fetchFromGitHub {
- owner = "kostafey";
- repo = "temporary-persistent";
- rev = "1132e940dc1fd27f205758495640cc4a42270cff";
- sha256 = "155yyinh342k8fz8g4xzz0glqkxkjl6p6y2wym6p12phk7v2x3ic";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/e608f40d00a3b2a80a6997da00e7d04f76d8ef0d/recipes/temporary-persistent";
- sha256 = "0afjcad97pzbrjs1v80l6c98vi5asgaxcn2rq95gz1ld7nn0a9zh";
- name = "recipe";
- };
- packageRequires = [ dash emacs names s ];
- meta = {
- homepage = "https://melpa.org/#/temporary-persistent";
- license = lib.licenses.free;
- };
- }) {};
ten-hundred-mode = callPackage ({ cl-lib ? null
, fetchFromGitHub
, fetchurl
@@ -98987,32 +51350,6 @@
license = lib.licenses.free;
};
}) {};
- terminal-focus-reporting = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "terminal-focus-reporting";
- ename = "terminal-focus-reporting";
- version = "20180830.19";
- src = fetchFromGitHub {
- owner = "veelenga";
- repo = "terminal-focus-reporting.el";
- rev = "8b84bf18f4c5f1b59a11692eb706f13c3598d9a5";
- sha256 = "0bbcl0mq62f22n2aipgzx93164x81bgybfd0x7gvsfva76qs8pc4";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/19e7149a0a2db7df7f890a2c1ad22266e97694d7/recipes/terminal-focus-reporting";
- sha256 = "0iwq0rabq0sdn4apa5ibfp912j76w7hzg3q5lbxp7fspfwwynvg2";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/terminal-focus-reporting";
- license = lib.licenses.free;
- };
- }) {};
terminal-here = callPackage ({ cl-lib ? null
, emacs
, fetchFromGitHub
@@ -99040,33 +51377,6 @@
license = lib.licenses.free;
};
}) {};
- terminal-toggle = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , popwin }:
- melpaBuild {
- pname = "terminal-toggle";
- ename = "terminal-toggle";
- version = "20190226.710";
- src = fetchFromGitHub {
- owner = "mtekman";
- repo = "terminal-toggle.el";
- rev = "f824d634aef3600cb7a8e2ddf9e8444c6607c160";
- sha256 = "150xvmr5vsydg0197m1k62mwy2810mzh1iwqj9yl9fg47fbzbg0i";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/673974fe768f88a7c67c929bb6b9b27fc028d4e2/recipes/terminal-toggle";
- sha256 = "0l1gklcgas2g0kx5q59dzhv20pki5hxv4h3rsbrwbpq5rxkxymbx";
- name = "recipe";
- };
- packageRequires = [ emacs popwin ];
- meta = {
- homepage = "https://melpa.org/#/terminal-toggle";
- license = lib.licenses.free;
- };
- }) {};
tern = callPackage ({ cl-lib ? null
, emacs
, fetchFromGitHub
@@ -99179,32 +51489,6 @@
license = lib.licenses.free;
};
}) {};
- test-c = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "test-c";
- ename = "test-c";
- version = "20180423.1020";
- src = fetchFromGitHub {
- owner = "aaptel";
- repo = "test-c";
- rev = "761a576f62c7021ba941f178f153c51289df1553";
- sha256 = "04dxgg4jz8cnw19wxybjwd36z8i9j6an15k9pz3zh3v7m72qzw7c";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/ef915dc2d3bc09ef79eb8edde02101c89733c0b2/recipes/test-c";
- sha256 = "1gy5dxkd4fpzzm2sq9g7bmi1ylwvsgh6hlvjmc1c064wjkha9j9z";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/test-c";
- license = lib.licenses.free;
- };
- }) {};
test-case-mode = callPackage ({ fetchFromGitHub
, fetchurl
, fringe-helper
@@ -99281,31 +51565,6 @@
license = lib.licenses.free;
};
}) {};
- tex-smart-umlauts = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "tex-smart-umlauts";
- ename = "tex-smart-umlauts";
- version = "20190316.1515";
- src = fetchFromGitHub {
- owner = "emacsmirror";
- repo = "tex-smart-umlauts";
- rev = "f15ed781b1fb38bf3e46c481dd602c3999920b99";
- sha256 = "11ky141a33vm961jpj1spz9wxb4mfgw8drqxg2a6yk2rinkf0wcl";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/be27e728327016b819535ef8cae10020e5a07c2e/recipes/tex-smart-umlauts";
- sha256 = "1bygl7fjm83j8lhkipczjs812837x9p3pqn8waykfbb7v05s81fr";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/tex-smart-umlauts";
- license = lib.licenses.free;
- };
- }) {};
texfrag = callPackage ({ auctex
, emacs
, fetchFromGitHub
@@ -99333,31 +51592,6 @@
license = lib.licenses.free;
};
}) {};
- textile-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "textile-mode";
- ename = "textile-mode";
- version = "20170304.916";
- src = fetchFromGitHub {
- owner = "juba";
- repo = "textile-mode";
- rev = "c37aaab809503df008209390e31e19abf4e23630";
- sha256 = "16543im5iymc5hfcix1lglbvpq4v0441vb7sk58nbnffqba83yzy";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/3ebe5e52bc9bb8875ca390b34ac32eb47f4e1252/recipes/textile-mode";
- sha256 = "0c1l7ml9b1zipk5fhmhirrh070h0qwwiagdk84i04yvdmmcjw2nf";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/textile-mode";
- license = lib.licenses.free;
- };
- }) {};
textmate = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -99434,58 +51668,6 @@
license = lib.licenses.free;
};
}) {};
- tf2-conf-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "tf2-conf-mode";
- ename = "tf2-conf-mode";
- version = "20161209.820";
- src = fetchFromGitHub {
- owner = "wynro";
- repo = "emacs-tf2-conf-mode";
- rev = "94c971da4a78d55da2848d1e76d513e5e0a8f7eb";
- sha256 = "0rg3ja6lc2bwq0nw50s0whsb690m7cs6p6an52hlb0qlfwd23mpv";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/c43c53dca64cf0c7d59ffd0b17e9fe60f4aa90d3/recipes/tf2-conf-mode";
- sha256 = "09kvb3ya1dx5pc146a6r9386fg9n9nfpcxm5mmhmyf75h9c6a25g";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/tf2-conf-mode";
- license = lib.licenses.free;
- };
- }) {};
- tfsmacs = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , tablist }:
- melpaBuild {
- pname = "tfsmacs";
- ename = "tfsmacs";
- version = "20180911.1414";
- src = fetchFromGitHub {
- owner = "sebasmonia";
- repo = "tfsmacs";
- rev = "13ee3f528ff616880611f563a68d921250692ef8";
- sha256 = "035avqp9m1mbffvc1xd5qvyg93vsxjsphmf394mq15gawqs33ik4";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/b449d004bdb498c2a1d155671070e0745c7d7598/recipes/tfsmacs";
- sha256 = "0j9rkcjxvgkcdnw2lxgk6bwid3q460n0hjxsj4nklv13s5b1hlyk";
- name = "recipe";
- };
- packageRequires = [ emacs tablist ];
- meta = {
- homepage = "https://melpa.org/#/tfsmacs";
- license = lib.licenses.free;
- };
- }) {};
theme-changer = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -99538,57 +51720,6 @@
license = lib.licenses.free;
};
}) {};
- therapy = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "therapy";
- ename = "therapy";
- version = "20151113.1153";
- src = fetchFromGitHub {
- owner = "abingham";
- repo = "therapy";
- rev = "775a92bb7b6b0fcc5b38c0b5198a9d0a1bef788a";
- sha256 = "12kz4alyf3y2i7lkvi26hcxy55v0blsrxv5srx9fv5jhxkdz1vq1";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/34e1bfdc684aaa7ebfbaa0ed60f8322c3de8a40d/recipes/therapy";
- sha256 = "0y040ghb0y6aq0nchqr09vapz6h6112rkwxkqsx0v7xmqrqfjvhh";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/therapy";
- license = lib.licenses.free;
- };
- }) {};
- thingopt = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "thingopt";
- ename = "thingopt";
- version = "20160520.1618";
- src = fetchFromGitHub {
- owner = "m2ym";
- repo = "thingopt-el";
- rev = "5679815852652479f3b3c9f3a98affc927384b2c";
- sha256 = "12zpn0sy2yg37jjjx12h3kln56241b3z09bn5zavmjfdwnr9jd0a";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/1b82d4102fa2c7622e76dae1154aaa8340b7f4b8/recipes/thingopt";
- sha256 = "0yvzq1z2nrldr8vhcvxqgzvh4gbrjjwfmprg59p4v5hlxvhxsb1y";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/thingopt";
- license = lib.licenses.free;
- };
- }) {};
thinks = callPackage ({ cl-lib ? null
, fetchFromGitHub
, fetchurl
@@ -99615,58 +51746,6 @@
license = lib.licenses.free;
};
}) {};
- thread-dump = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "thread-dump";
- ename = "thread-dump";
- version = "20170816.1150";
- src = fetchFromGitHub {
- owner = "nd";
- repo = "thread-dump.el";
- rev = "204c9600242756d4b514bb5ff6293e052bf4b49d";
- sha256 = "11qx194gwizqg7p2mqy7mdfii85bdayabxfd388dmrm916i4w47n";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/091dcc3775ec2137cb61d66df4e72aca4900897a/recipes/thread-dump";
- sha256 = "0dzr86jyf2j49gq40q6qd6lppa57n65n94xzpdjjbs182hxzavp2";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/thread-dump";
- license = lib.licenses.free;
- };
- }) {};
- threes = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , seq }:
- melpaBuild {
- pname = "threes";
- ename = "threes";
- version = "20160820.542";
- src = fetchFromGitHub {
- owner = "xuchunyang";
- repo = "threes.el";
- rev = "6981acb30b856c77cba6aba63fefbf102cbdfbb2";
- sha256 = "1a7zqq6kmqxgzbsg8yczlvipzv65n10c8j26mc507p4m47nlikgv";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/bff7d9ffbca45629f310743aff776b762c8507cc/recipes/threes";
- sha256 = "03zwcaibdj88a6whccc5ysqsnfwi76yhsgjsfp3lxjcmlkwqzjbs";
- name = "recipe";
- };
- packageRequires = [ emacs seq ];
- meta = {
- homepage = "https://melpa.org/#/threes";
- license = lib.licenses.free;
- };
- }) {};
thrift = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -99675,7 +51754,7 @@
melpaBuild {
pname = "thrift";
ename = "thrift";
- version = "2019.6.3.0";
+ version = "2019.6.10.0";
src = fetchFromGitHub {
owner = "facebook";
repo = "fbthrift";
@@ -99693,31 +51772,6 @@
license = lib.licenses.free;
};
}) {};
- thumb-through = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "thumb-through";
- ename = "thumb-through";
- version = "20120118.2134";
- src = fetchFromGitHub {
- owner = "apg";
- repo = "thumb-through";
- rev = "08d8fb720f93c6172653e035191a8fa9c3305e63";
- sha256 = "0nypcryqwwsdawqxi7hgsv6fp28zqslj9phw7zscqqxzc3svaywn";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/thumb-through";
- sha256 = "1544xw9lar199idk135z4d6i3n9w0v7g2bq7fnz0rjjw10kxvpcx";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/thumb-through";
- license = lib.licenses.free;
- };
- }) {};
tickscript-mode = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -99801,87 +51855,6 @@
license = lib.licenses.free;
};
}) {};
- tile = callPackage ({ dash
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , s
- , stream }:
- melpaBuild {
- pname = "tile";
- ename = "tile";
- version = "20161224.1957";
- src = fetchFromGitHub {
- owner = "IvanMalison";
- repo = "tile";
- rev = "22660f21f6e95de5aba55cd5d293d4841e9a4661";
- sha256 = "1qxhrm852j93sqi1lznlrjn7s0vscsixm48g46ja70gl320chyzm";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/424cfd28378ef328721bb0dc3651808e64c01306/recipes/tile";
- sha256 = "1795048ilpg6y9pn0jj0js5446hwxhwm6qmk50hds0hpcb396vbv";
- name = "recipe";
- };
- packageRequires = [ dash emacs s stream ];
- meta = {
- homepage = "https://melpa.org/#/tile";
- license = lib.licenses.free;
- };
- }) {};
- time-ext = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "time-ext";
- ename = "time-ext";
- version = "20170126.415";
- src = fetchFromGitHub {
- owner = "rubikitch";
- repo = "time-ext";
- rev = "d128becf660fe3f30178eb1b05cd266741f4784a";
- sha256 = "0ynxmik33hh0znmznrf7lkmsh5xggbrvbdhiqa61r0b7gs3jk5fd";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/f8e4328cae9b4759a75da0b26ea8b68821bc71af/recipes/time-ext";
- sha256 = "133vd63p8258wam4fvblhfg37w2zqy4a5c5c5nafwx0cy90sngwz";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/time-ext";
- license = lib.licenses.free;
- };
- }) {};
- timecop = callPackage ({ cl-lib ? null
- , datetime-format
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "timecop";
- ename = "timecop";
- version = "20160520.352";
- src = fetchFromGitHub {
- owner = "emacs-php";
- repo = "emacs-datetime";
- rev = "3a1871613facc928ff250ed8f12fbc7073e46b75";
- sha256 = "0pabb260d3vcr57jqqxqk90vp2qnm63sky37rgvhv508zix2hbva";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/eb13cb0dba1696cc51132cd1ff723fa17f892a7c/recipes/timecop";
- sha256 = "1hnmxcc2hjx9a4jyavx2v9hxmqacmmg1xj86rxqx3ms32hgigji5";
- name = "recipe";
- };
- packageRequires = [ cl-lib datetime-format ];
- meta = {
- homepage = "https://melpa.org/#/timecop";
- license = lib.licenses.free;
- };
- }) {};
timer-revert = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -99966,242 +51939,6 @@
license = lib.licenses.free;
};
}) {};
- timp = callPackage ({ cl-lib ? null
- , emacs
- , fetchFromGitHub
- , fetchurl
- , fifo-class
- , lib
- , melpaBuild
- , signal }:
- melpaBuild {
- pname = "timp";
- ename = "timp";
- version = "20160618.103";
- src = fetchFromGitHub {
- owner = "mola-T";
- repo = "timp";
- rev = "59657bf603904635d88c3fe4ff1ce45ee6572428";
- sha256 = "13adchpry39fv3rz3mnc21hr66d176d52hbgmgh5p8p9ylay7xha";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/27896aeb813215a43aec07a5ddf0ab2176df38fb/recipes/timp";
- sha256 = "1vh2wsgd8bclkbzn59zqbzzfzs0xx6x82004l7vnma8z97swvhgs";
- name = "recipe";
- };
- packageRequires = [ cl-lib emacs fifo-class signal ];
- meta = {
- homepage = "https://melpa.org/#/timp";
- license = lib.licenses.free;
- };
- }) {};
- tinkerer = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , s }:
- melpaBuild {
- pname = "tinkerer";
- ename = "tinkerer";
- version = "20170906.524";
- src = fetchFromGitHub {
- owner = "yyr";
- repo = "tinkerer.el";
- rev = "e34135555f3748b578c7f8706dfd0c888fb87581";
- sha256 = "0lzrarqh965ysd7w0z5rbisl45j11fbibyxmgivgy9parvhg59hk";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/8a28e1dfe987287bac7c45f83ae6e754bc13e345/recipes/tinkerer";
- sha256 = "0qh6pzjn98jlpxcm9zf25ga0y3d3v53275a9zgswyhz33mafd7pd";
- name = "recipe";
- };
- packageRequires = [ s ];
- meta = {
- homepage = "https://melpa.org/#/tinkerer";
- license = lib.licenses.free;
- };
- }) {};
- tiny = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "tiny";
- ename = "tiny";
- version = "20170903.249";
- src = fetchFromGitHub {
- owner = "abo-abo";
- repo = "tiny";
- rev = "481d36e47e51f27e64c826633c01518459f17d1c";
- sha256 = "1wdv017pc7ggxd3vwmhjckybxwkfkbk9inkkz6pnc58k0fflsp7l";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/d3029dab001fff5d12e8a2bace6ddbf897842c26/recipes/tiny";
- sha256 = "183qczyb6c8zmdgmsjsj4hddmvnzzq4c7syslm861xcyxia94icy";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/tiny";
- license = lib.licenses.free;
- };
- }) {};
- tiny-menu = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "tiny-menu";
- ename = "tiny-menu";
- version = "20161213.435";
- src = fetchFromGitHub {
- owner = "aaronbieber";
- repo = "tiny-menu.el";
- rev = "f1fc844f514f57fd93602ff5e00c6125b0e93254";
- sha256 = "125ckmfsvzacd5icsnldcbfl4rkxpfal6qfindy80i84vk0qw47g";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/82700c97ca40130e7508c151f60220d3f23bf23c/recipes/tiny-menu";
- sha256 = "1nngf6vsqfr9fx82mj8dl8zw0fpwf4kr74sflxxk7qxj4aw1jirk";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/tiny-menu";
- license = lib.licenses.free;
- };
- }) {};
- tinysegmenter = callPackage ({ cl-lib ? null
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "tinysegmenter";
- ename = "tinysegmenter";
- version = "20141124.213";
- src = fetchFromGitHub {
- owner = "myuhe";
- repo = "tinysegmenter.el";
- rev = "872134704bd25c13a4c59552433da4c6881b5230";
- sha256 = "1n8cn6mr26hgmsm2mkbj5gs6dv61d0pap8ija4g0n1vsibfhzd8j";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/4f189290799f84282ff7cdecbb12a2a7cdfd1043/recipes/tinysegmenter";
- sha256 = "005yy2f8vghvwdcwakz5sr9n1gzk6cfyglm6d8b74y90d8fng0r6";
- name = "recipe";
- };
- packageRequires = [ cl-lib ];
- meta = {
- homepage = "https://melpa.org/#/tinysegmenter";
- license = lib.licenses.free;
- };
- }) {};
- tj3-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "tj3-mode";
- ename = "tj3-mode";
- version = "20180519.528";
- src = fetchFromGitHub {
- owner = "csrhodes";
- repo = "tj3-mode";
- rev = "1d98eb23f1606392f34ef1b80517cfc940fb9950";
- sha256 = "1gzi8pvdgj4s9c54m2a8hicvg8dzac6253kyd2h71bljm4ilwl0f";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/dcf0f535a543bf36df9fb2e59c7fb9dfc00820f7/recipes/tj3-mode";
- sha256 = "06mhg0jc80cymplbri6axyzv18ayxppqz3vggywq9g2ba1vqj41h";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/tj3-mode";
- license = lib.licenses.free;
- };
- }) {};
- tldr = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "tldr";
- ename = "tldr";
- version = "20180122.312";
- src = fetchFromGitHub {
- owner = "kuanyui";
- repo = "tldr.el";
- rev = "398b197c8d2238628b07e1b32d0f373876279f4c";
- sha256 = "0iq7qlis6c6r2qkdpncrhh5vsihkhvy5x4y1y8cjb7zxkh62w33f";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/45af2c5d1a36fcbf739812594c5cc878bf319a26/recipes/tldr";
- sha256 = "1f1xsmkbf4j1c876qqr9h8fgx3zxjgdfzvzf6capxlx2svhxzvc9";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/tldr";
- license = lib.licenses.free;
- };
- }) {};
- tmmofl = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "tmmofl";
- ename = "tmmofl";
- version = "20121025.401";
- src = fetchFromGitHub {
- owner = "phillord";
- repo = "tmmofl";
- rev = "532aa6978e994e2b069ffe37aaf9a0011a07dadc";
- sha256 = "1ypbv9jbdnwv3xjsfzq8i3nmqdvziynv2rqsd6fm2r1xw0q06xd6";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/8d29def44ae42dc4b60c1d254a57572bd09faf51/recipes/tmmofl";
- sha256 = "1idflc5ky8hwdkps1rihdqy3i6cmhrh83sxz3kgf2kqjh365yr8b";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/tmmofl";
- license = lib.licenses.free;
- };
- }) {};
- tmux-pane = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , names
- , s }:
- melpaBuild {
- pname = "tmux-pane";
- ename = "tmux-pane";
- version = "20181210.410";
- src = fetchFromGitHub {
- owner = "laishulu";
- repo = "emacs-tmux-pane";
- rev = "5e83ec65a1d38af9b8a389bdf34a78d13437e63d";
- sha256 = "1451d51ml36i1pgksjkd4x2y8zjf4in9q8m6gda3b25v57fnkg2i";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/8bc165e115a2c457e44ac2762cf6a9f07f1b99c4/recipes/tmux-pane";
- sha256 = "0mv5y367i1wmk5kp8ms09xhrwvb4cwa08p39qy6mkakdhiby5m9q";
- name = "recipe";
- };
- packageRequires = [ emacs names s ];
- meta = {
- homepage = "https://melpa.org/#/tmux-pane";
- license = lib.licenses.free;
- };
- }) {};
toc-org = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -100227,310 +51964,6 @@
license = lib.licenses.free;
};
}) {};
- todotxt = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "todotxt";
- ename = "todotxt";
- version = "20180626.1530";
- src = fetchFromGitHub {
- owner = "rpdillon";
- repo = "todotxt.el";
- rev = "f13e404304c9d26c105de872f96b4601441b3875";
- sha256 = "1yvy2pl2ncgkz1xz598qjvp2v3g66m57wz7nra2vira7m4kq4671";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/todotxt";
- sha256 = "1ravnkj6y2p027yhba2lan10079xzd2q7l8gyb8n6bwq14jif127";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/todotxt";
- license = lib.licenses.free;
- };
- }) {};
- todotxt-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "todotxt-mode";
- ename = "todotxt-mode";
- version = "20150424.704";
- src = fetchFromGitHub {
- owner = "avillafiorita";
- repo = "todotxt-mode";
- rev = "dc6ae151edee88f329ba7abc5d39b7440002232f";
- sha256 = "1k9ywi7cdgb6i600wr04r2l00423l6vr7k93qa7i7svv856nbbc7";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/cdc1926c5de86749caba1ad2d1e75225a31a8558/recipes/todotxt-mode";
- sha256 = "1bs4air13ifx3xkhcfi80z29alsd63r436gnyvjyxlph2ip37v7k";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/todotxt-mode";
- license = lib.licenses.free;
- };
- }) {};
- togetherly = callPackage ({ cl-lib ? null
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "togetherly";
- ename = "togetherly";
- version = "20170425.2316";
- src = fetchFromGitHub {
- owner = "zk-phi";
- repo = "togetherly";
- rev = "65072b1d5e04c7098c318ebf1af279f596039ef9";
- sha256 = "1gjqwxpl1ysrjcmbs9w39hvim1avac7nm4rhmqhmrgwn84bxm2fl";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/05da36e2d57a57255423a24a34742cbac2f6c9a5/recipes/togetherly";
- sha256 = "01ks160dfmgh05lx0lmyg020hba8nw49mj51dp1afcsmx4dkis2f";
- name = "recipe";
- };
- packageRequires = [ cl-lib ];
- meta = {
- homepage = "https://melpa.org/#/togetherly";
- license = lib.licenses.free;
- };
- }) {};
- toggle = callPackage ({ cl-lib ? null
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "toggle";
- ename = "toggle";
- version = "20180315.1703";
- src = fetchFromGitHub {
- owner = "zenspider";
- repo = "elisp";
- rev = "ee8a9c3052446876057ff853369d136aea7831f5";
- sha256 = "15sla4n88003fclni5nhsrw3ib7bql11ks8pb7rgjyjddqrq274r";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/bd02426ce7ab46361363c7a6c56b1575642003e0/recipes/toggle";
- sha256 = "08lk8h2dk5s8k93j5vmxdlgg453pif8wbcx2w3xkjlh43dw1vdfq";
- name = "recipe";
- };
- packageRequires = [ cl-lib ];
- meta = {
- homepage = "https://melpa.org/#/toggle";
- license = lib.licenses.free;
- };
- }) {};
- toggle-quotes = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "toggle-quotes";
- ename = "toggle-quotes";
- version = "20140710.226";
- src = fetchFromGitHub {
- owner = "toctan";
- repo = "toggle-quotes.el";
- rev = "33abc221d6887f0518337851318065cd86c34b03";
- sha256 = "1w1lmqgzn9bp59h9y9plv80y53k6qhjgfmnnlqyyqfl45z3si7kg";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/0f6e83e3184d336891f76c4740f64646d58ea980/recipes/toggle-quotes";
- sha256 = "16w453v4g7ww93bydim62p785x7w4vssp9l5liy0h3ppfmgvmxhp";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/toggle-quotes";
- license = lib.licenses.free;
- };
- }) {};
- toggle-test = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "toggle-test";
- ename = "toggle-test";
- version = "20140722.2237";
- src = fetchFromGitHub {
- owner = "rags";
- repo = "toggle-test";
- rev = "a0b64834101c2b8b24da365baea1d36e57b069b5";
- sha256 = "1xx314cqi71iy7drd7nfia6hylyhwjd9jja1022l1p3imfmy2gyp";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/8ea51a54b745d9978c5177182cd8501912aa2d01/recipes/toggle-test";
- sha256 = "0n8m325jcjhz8g75ysb9whsd12gpxw8598y5065j7c7gxjzv45l1";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/toggle-test";
- license = lib.licenses.free;
- };
- }) {};
- toggle-window = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "toggle-window";
- ename = "toggle-window";
- version = "20141207.748";
- src = fetchFromGitHub {
- owner = "deadghost";
- repo = "toggle-window";
- rev = "e82c60e543933880402ede11e9423e48a17dde53";
- sha256 = "0f86aij1glmvgpbhmfpi441zy0r37zblb0q3ycgq0dp92x8yny5r";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5505f778052353abce10f9ceef56ce95f5a5b662/recipes/toggle-window";
- sha256 = "1z080jywqj99xiwbvfclr6gjkc6spr3dqjb9kq1g4971vx4w8n9g";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/toggle-window";
- license = lib.licenses.free;
- };
- }) {};
- tomatinho = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "tomatinho";
- ename = "tomatinho";
- version = "20180621.1048";
- src = fetchFromGitHub {
- owner = "konr";
- repo = "tomatinho";
- rev = "b53354b9b9f496c0388d6a573b06b7d6fc53d0bd";
- sha256 = "0vf2b1c9raa723iy2gfdmxjv4q0ivixy1vbs1x5q09cibca8kp4x";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/3fe20de5b2b5e5abe5be7468cea7c87f5b26b237/recipes/tomatinho";
- sha256 = "1ad3kr73v75vjrc09mdvb7a3ws834k5y5xha3v0ldah38cl1pmjz";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/tomatinho";
- license = lib.licenses.free;
- };
- }) {};
- toml = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "toml";
- ename = "toml";
- version = "20130903.555";
- src = fetchFromGitHub {
- owner = "gongo";
- repo = "emacs-toml";
- rev = "9633a6872928e737a2335aae1065768b23d8c3b3";
- sha256 = "1b3bkla6i5nvanifxchph6ab6ldrskdf240hy4d27dkmmnr3pban";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/bab369a63ca0e7fcfacfcb9ac3847ac4e631b28c/recipes/toml";
- sha256 = "0kqv6zkywa7kqh8kg1dzcgkbi91lwx335przdakndm1lfai38i9b";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/toml";
- license = lib.licenses.free;
- };
- }) {};
- toml-mode = callPackage ({ cl-lib ? null
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "toml-mode";
- ename = "toml-mode";
- version = "20161107.1000";
- src = fetchFromGitHub {
- owner = "dryman";
- repo = "toml-mode.el";
- rev = "f6c61817b00f9c4a3cab1bae9c309e0fc45cdd06";
- sha256 = "05b4ksay85c8y5ncax0qsvnmplwsfiw24z16a58gkarjz938hb57";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/f8157d7d11f1e1848f0ba384249b4b8c6354830b/recipes/toml-mode";
- sha256 = "0yghf2ixl3dkcaxnkr4qzxfa9k1rrac7w5qpw1jx2bvic0cfs40l";
- name = "recipe";
- };
- packageRequires = [ cl-lib emacs ];
- meta = {
- homepage = "https://melpa.org/#/toml-mode";
- license = lib.licenses.free;
- };
- }) {};
- tommyh-theme = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "tommyh-theme";
- ename = "tommyh-theme";
- version = "20131004.1630";
- src = fetchFromGitHub {
- owner = "wglass";
- repo = "tommyh-theme";
- rev = "46d1c69ee0a1ca7c67b569b891a2f28fed89e7d5";
- sha256 = "0pwbd5gzmpr6js20438870w605671930291070nhmhswvxfcdvay";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/da9b40184e1559c33edd5e6dac6447013710cb79/recipes/tommyh-theme";
- sha256 = "0nb9r407h08yxxdihxqx0c645bcz6qywbh2l654s3zfzdsqi1aj4";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/tommyh-theme";
- license = lib.licenses.free;
- };
- }) {};
- tornado-template-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "tornado-template-mode";
- ename = "tornado-template-mode";
- version = "20141128.208";
- src = fetchFromGitHub {
- owner = "paradoxxxzero";
- repo = "tornado-template-mode";
- rev = "667c0663dbbd279b6c345446b9f2bc50eb52b747";
- sha256 = "0wv49gn1daylnjmnallpqsqy7630ynrp45agpiwi6kwyyqk1kdvv";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/f329baae028fd17618824128f312a49aa0a0807e/recipes/tornado-template-mode";
- sha256 = "1sdv9rlhnabydws2sppsjcgqr0lg6bjapv753ksq5aaq21qsps0h";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/tornado-template-mode";
- license = lib.licenses.free;
- };
- }) {};
torus = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -100583,33 +52016,6 @@
license = lib.licenses.free;
};
}) {};
- totd = callPackage ({ cl-lib ? null
- , fetchFromGitLab
- , fetchurl
- , lib
- , melpaBuild
- , s }:
- melpaBuild {
- pname = "totd";
- ename = "totd";
- version = "20150519.740";
- src = fetchFromGitLab {
- owner = "egh";
- repo = "emacs-totd";
- rev = "a715f7f2df416b8a6c827a9493ce7004180a3a4f";
- sha256 = "08awv1vbqg0x0h7f036sh07vypm8lq6b5g36gq9dmyfaqci9ccw6";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/9dc1e001585e1743047108ace180dfd7664ab8f1/recipes/totd";
- sha256 = "1bp07xl9yh9x6bi6cn8wz11x90jhv1rhxaig540iydjn5b0ny9m0";
- name = "recipe";
- };
- packageRequires = [ cl-lib s ];
- meta = {
- homepage = "https://melpa.org/#/totd";
- license = lib.licenses.free;
- };
- }) {};
tox = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -100635,57 +52041,6 @@
license = lib.licenses.free;
};
}) {};
- toxi-theme = callPackage ({ emacs
- , fetchhg
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "toxi-theme";
- ename = "toxi-theme";
- version = "20160424.1426";
- src = fetchhg {
- url = "https://bitbucket.com/postspectacular/toxi-theme";
- rev = "b322fc7497a5";
- sha256 = "1pnsky541m8kzcv81w98jkv0hgajh04hxqlmgddc1y0wbvi849j0";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5b7972602399f9df9139cff177e38653bb0f43ed/recipes/toxi-theme";
- sha256 = "032m3qbxfd0qp81qwayd5g9k7vz55g4yhw0d35qkxzf4qf58x9sd";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/toxi-theme";
- license = lib.licenses.free;
- };
- }) {};
- tql-mode = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "tql-mode";
- ename = "tql-mode";
- version = "20170723.1954";
- src = fetchFromGitHub {
- owner = "tiros-dev";
- repo = "tql-mode";
- rev = "488add79eb3fc8ec02aedaa997fe1ed9e5c3e638";
- sha256 = "09vkqr5n66w1q5f7m1vgiv0555v23wg6j46ri52lnnslsxpxhlyv";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/6a7c3dec5d970a4e819c0166a4b9846d74484b08/recipes/tql-mode";
- sha256 = "0nrycix119vail6vk1kgqsli4l4cw8x49grc368n53w0xwngh0ns";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/tql-mode";
- license = lib.licenses.free;
- };
- }) {};
traad = callPackage ({ dash
, deferred
, fetchFromGitHub
@@ -100749,109 +52104,6 @@
license = lib.licenses.free;
};
}) {};
- tracwiki-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , xml-rpc }:
- melpaBuild {
- pname = "tracwiki-mode";
- ename = "tracwiki-mode";
- version = "20150119.821";
- src = fetchFromGitHub {
- owner = "merickson";
- repo = "tracwiki-mode";
- rev = "6a620444d59b438f42383b48cd4c19c03105dba6";
- sha256 = "1m25l1lyff4h0h4vjrcsziwbf8svqg2llvvgl8i2b4jbh7k7pk5f";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/2e1e7315ee0e8d90df046e16948398f6f78aa3b2/recipes/tracwiki-mode";
- sha256 = "1k983f0lj42rxr5szpq9l9harykfn8jr13y3y6fav86zzd1fb8j0";
- name = "recipe";
- };
- packageRequires = [ xml-rpc ];
- meta = {
- homepage = "https://melpa.org/#/tracwiki-mode";
- license = lib.licenses.free;
- };
- }) {};
- tramp-hdfs = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "tramp-hdfs";
- ename = "tramp-hdfs";
- version = "20170821.620";
- src = fetchFromGitHub {
- owner = "raghavgautam";
- repo = "tramp-hdfs";
- rev = "b64f24d0419a80dffaa2c4ecec317aa2bba56e35";
- sha256 = "1bfqzwn19w6fs5npslw0sjqrwdswsv5m3wcdnk438pz1lp199wfy";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/4c185553314a2a9fe18907fd9251077777b33538/recipes/tramp-hdfs";
- sha256 = "1l7s2z8yk3cbnffig9fds75jkjlkng76qglx5ankzva61dz1kf2b";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/tramp-hdfs";
- license = lib.licenses.free;
- };
- }) {};
- tramp-term = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "tramp-term";
- ename = "tramp-term";
- version = "20180223.727";
- src = fetchFromGitHub {
- owner = "randymorris";
- repo = "tramp-term.el";
- rev = "7c29f888de0385a676dbf9a4e17bac0111f5c10a";
- sha256 = "1ch9y632kggl3q6yx3g685j3dfbhy7yiwqh8cbxs3wja3rvml8xa";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5c84660c641f0bdf3cca8ad2a0f8f6e5d18b59c3/recipes/tramp-term";
- sha256 = "1vbdwj8q66j6h5ijqzxhyaqf8wf9rbs03x8ppfijxl5qd2bhc1dy";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/tramp-term";
- license = lib.licenses.free;
- };
- }) {};
- transfer-sh = callPackage ({ async
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "transfer-sh";
- ename = "transfer-sh";
- version = "20180603.731";
- src = fetchFromGitHub {
- owner = "SRoskamp";
- repo = "transfer-sh.el";
- rev = "55da85f963d347255a2b46568954923679331798";
- sha256 = "0yv4i4ps379kz1q9qmjh4q3pk5ik77xw86faxmwpjx4yzp1wsz9v";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/6440f81aed1fcddcaf7afeedb74520e605211986/recipes/transfer-sh";
- sha256 = "0xc6dkmayk935grmy8883l4cyv4zrq3fb77fj16knfj4yw8w6c9j";
- name = "recipe";
- };
- packageRequires = [ async ];
- meta = {
- homepage = "https://melpa.org/#/transfer-sh";
- license = lib.licenses.free;
- };
- }) {};
transient = callPackage ({ dash
, emacs
, fetchFromGitHub
@@ -100907,56 +52159,6 @@
license = lib.licenses.free;
};
}) {};
- transpose-frame = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "transpose-frame";
- ename = "transpose-frame";
- version = "20151126.626";
- src = fetchFromGitHub {
- owner = "emacsorphanage";
- repo = "transpose-frame";
- rev = "011f420c3496b69fc22d789f64cb8091834feba7";
- sha256 = "1nhbinwv1ld13c0b0lxlvfm9s6bvxcz2vgfccqg45ncg9rx70rsw";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/ae489be43b1aee93614e40f492ebdf0b98a3fbc1/recipes/transpose-frame";
- sha256 = "1ksdc4d9k05452hcq4xx0j5nfl9n01z8abbca6j7j66bdf3m4l1b";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/transpose-frame";
- license = lib.licenses.free;
- };
- }) {};
- transpose-mark = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "transpose-mark";
- ename = "transpose-mark";
- version = "20150405.16";
- src = fetchFromGitHub {
- owner = "kwrooijen";
- repo = "transpose-mark";
- rev = "667327602004794de97214cf336ac61650ef75b7";
- sha256 = "03wc50vn1kmrgnzzhs06pwpap2p2rx84wwzxw0hawsg1f1l35m2x";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/e997b356b009b3d2ab467fe49b79d728a8cfe24b/recipes/transpose-mark";
- sha256 = "1q1icp1szm1bxz9ywwyrfbsm1wmx0h4cvzywrh9q0fj1fq387qvv";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/transpose-mark";
- license = lib.licenses.free;
- };
- }) {};
travis = callPackage ({ dash
, fetchFromGitHub
, fetchurl
@@ -100986,31 +52188,6 @@
license = lib.licenses.free;
};
}) {};
- tree-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "tree-mode";
- ename = "tree-mode";
- version = "20151104.531";
- src = fetchFromGitHub {
- owner = "emacsorphanage";
- repo = "tree-mode";
- rev = "b06078826d5875d74b0e7b7ac47b0d0917610534";
- sha256 = "13bbdhdmqg4x9yghanhr8fsbsxbnypzxdxgicz31sjjm675kpnix";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/84f836338818946a6bb31d35d6ae959571128ed5/recipes/tree-mode";
- sha256 = "1b15xgh96j4qas1kh4ghczcn7hb1ri86wnjgn9wz2d6bw3c6077b";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/tree-mode";
- license = lib.licenses.free;
- };
- }) {};
treemacs = callPackage ({ ace-window
, cl-lib ? null
, dash
@@ -101182,35 +52359,6 @@
license = lib.licenses.free;
};
}) {};
- trident-mode = callPackage ({ dash
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , skewer-mode
- , slime }:
- melpaBuild {
- pname = "trident-mode";
- ename = "trident-mode";
- version = "20190329.433";
- src = fetchFromGitHub {
- owner = "johnmastro";
- repo = "trident-mode.el";
- rev = "a128f766e1138e6e04146312b7c8ebbad0dae131";
- sha256 = "141gvvwzql7pnv0d161cj2hpvpkav27lp1gdk1ilf45b3fqqqa87";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/091dcc3775ec2137cb61d66df4e72aca4900897a/recipes/trident-mode";
- sha256 = "0l81hs7bp46jlk41b9fk1lkvlp17fqc5hcz8k8kkal7rh7ari1fd";
- name = "recipe";
- };
- packageRequires = [ dash emacs skewer-mode slime ];
- meta = {
- homepage = "https://melpa.org/#/trident-mode";
- license = lib.licenses.free;
- };
- }) {};
trinary = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -101314,31 +52462,6 @@
license = lib.licenses.free;
};
}) {};
- ts-comint = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "ts-comint";
- ename = "ts-comint";
- version = "20181218.2319";
- src = fetchFromGitHub {
- owner = "emacs-typescript";
- repo = "ts-comint";
- rev = "b280cfe9fe5ecec9d5970043b6b2866f644b39ad";
- sha256 = "15lf20w3diixcbpsw3vdqlpnpjp3v1spgxkiymq05q1mcy30n39n";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/4a1c08c22704ac689235b8d5cc36cc437ba7356a/recipes/ts-comint";
- sha256 = "0cmh8ww6myiaz42867d0dqfi64lxrbna1lcwl6x6rmdgf15k6c1m";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/ts-comint";
- license = lib.licenses.free;
- };
- }) {};
tss = callPackage ({ auto-complete
, fetchFromGitHub
, fetchurl
@@ -101368,55 +52491,6 @@
license = lib.licenses.free;
};
}) {};
- tt-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "tt-mode";
- ename = "tt-mode";
- version = "20130804.410";
- src = fetchFromGitHub {
- owner = "davorg";
- repo = "tt-mode";
- rev = "85ed3832e7eef391f7879d9990d59c7a3493c15e";
- sha256 = "1gvqxk67cf779szyg907815i4m9jzrpmn5cnsmnwd62k3r3z4nxm";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/62959f554db7aa24b2565baded19766b01e61f62/recipes/tt-mode";
- sha256 = "02dzyycn5znbibbz50b243bh1kcccp8xwknjqwljk00gpf196vzf";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/tt-mode";
- license = lib.licenses.free;
- };
- }) {};
- ttl-mode = callPackage ({ fetchhg
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "ttl-mode";
- ename = "ttl-mode";
- version = "20160505.132";
- src = fetchhg {
- url = "https://bitbucket.com/nxg/ttl-mode";
- rev = "d790eb85ef4d";
- sha256 = "14kfnpp7fcd84ly9ng7hm5hzx2sdpn2x6d8frwbkdxfb0x81kmmf";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/d56140a50abeab0953825d3646122d6e6ed19a7c/recipes/ttl-mode";
- sha256 = "1nnn2y0n9rj3a8r85y2vp6qja5rm4drcbnj9q793zzqfjl9akqd4";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/ttl-mode";
- license = lib.licenses.free;
- };
- }) {};
tuareg = callPackage ({ caml
, fetchFromGitHub
, fetchurl
@@ -101468,34 +52542,6 @@
license = lib.licenses.free;
};
}) {};
- tumblesocks = callPackage ({ fetchFromGitHub
- , fetchurl
- , htmlize
- , lib
- , markdown-mode
- , melpaBuild
- , oauth }:
- melpaBuild {
- pname = "tumblesocks";
- ename = "tumblesocks";
- version = "20140215.1247";
- src = fetchFromGitHub {
- owner = "gcr";
- repo = "tumblesocks";
- rev = "9fd3dc5359d4e39a0f673546427935aa934cf339";
- sha256 = "17kcprr4bhnh7h799wcxb79d54vvs226fl2rqj89gf10gr6bc3fr";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/tumblesocks";
- sha256 = "005w7vfzi4qpm59pxhq9nhp8hlwh4m1i7zj6l4knizcwm5xrm4ab";
- name = "recipe";
- };
- packageRequires = [ htmlize markdown-mode oauth ];
- meta = {
- homepage = "https://melpa.org/#/tumblesocks";
- license = lib.licenses.free;
- };
- }) {};
tup-mode = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -101547,83 +52593,6 @@
license = lib.licenses.free;
};
}) {};
- turkish = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "turkish";
- ename = "turkish";
- version = "20170910.811";
- src = fetchFromGitHub {
- owner = "emres";
- repo = "turkish-mode";
- rev = "9831a316c176bb21a1b91226323ea4133163e00c";
- sha256 = "0nrxi845gd24d5vymbmxz696jwld4rn6nw2dz1gzmdaks7bbv87m";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/12cdbdf404fa859a48d1bb69f058321d7595d2a2/recipes/turkish";
- sha256 = "0pdapxjbpj3lg3hxvwjn9v51jqaiz7a8053z2bmk4485vzs34532";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/turkish";
- license = lib.licenses.free;
- };
- }) {};
- turnip = callPackage ({ dash
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , s }:
- melpaBuild {
- pname = "turnip";
- ename = "turnip";
- version = "20150308.2329";
- src = fetchFromGitHub {
- owner = "kljohann";
- repo = "turnip.el";
- rev = "2fd32562fc6fc1cda6d91aa939cfb29f9b16e9de";
- sha256 = "0khl4q22x6vdn87xdqqg5f535d4dqpnfbhk6qhlh187p1w7qaiq4";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/73c341fec986ed965a46954b898f92a4725fdee6/recipes/turnip";
- sha256 = "1vfqv71j47fn53klz3jl8r8hscywd01kkl4w96a308sac3lhbrps";
- name = "recipe";
- };
- packageRequires = [ dash s ];
- meta = {
- homepage = "https://melpa.org/#/turnip";
- license = lib.licenses.free;
- };
- }) {};
- twig-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "twig-mode";
- ename = "twig-mode";
- version = "20130220.1050";
- src = fetchFromGitHub {
- owner = "moljac024";
- repo = "twig-mode";
- rev = "51bcd41666a234119a855b9fd348d3dae7832de1";
- sha256 = "068m06d0gf6608zd270c5nxkjczzfw55df58r2zfbpzgdi4cxm7j";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/400c75bf336b8d610f0a2c1732cc78beb502e1f3/recipes/twig-mode";
- sha256 = "1m3xjgmkqg8aj536wcg2f2hf4y6whscbsh7z7448hl4b5qjwii4n";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/twig-mode";
- license = lib.licenses.free;
- };
- }) {};
twilight-anti-bright-theme = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -101649,56 +52618,6 @@
license = lib.licenses.free;
};
}) {};
- twilight-bright-theme = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "twilight-bright-theme";
- ename = "twilight-bright-theme";
- version = "20130605.143";
- src = fetchFromGitHub {
- owner = "jimeh";
- repo = "twilight-bright-theme.el";
- rev = "9859474333fee9f907474dbd8763f617e8bfd89c";
- sha256 = "02hiyk5v41ki0rlchj6didg3b5a9fxaw50d9shrv1v861z4hrq24";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/twilight-bright-theme";
- sha256 = "039mg147cvb0pk59q3c1bpx7562bajgrs74xymylr89hvrxivxqh";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/twilight-bright-theme";
- license = lib.licenses.free;
- };
- }) {};
- twilight-theme = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "twilight-theme";
- ename = "twilight-theme";
- version = "20120412.603";
- src = fetchFromGitHub {
- owner = "developernotes";
- repo = "twilight-theme";
- rev = "77c4741cb3dcf16e53d06d6c2ffdc660c40afb5b";
- sha256 = "0d7vd1h0rwwgrh7f9kmdgy2ni0p20da9c8ylwlg33nsb26345wfs";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/twilight-theme";
- sha256 = "0g9bbb6m7q8x4zcw5gfmg7ljsfdmjh0335sq53b0lva0h3ra6kzx";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/twilight-theme";
- license = lib.licenses.free;
- };
- }) {};
twittering-mode = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -101749,56 +52668,6 @@
license = lib.licenses.free;
};
}) {};
- typing = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "typing";
- ename = "typing";
- version = "20180830.1503";
- src = fetchFromGitHub {
- owner = "kensanata";
- repo = "typing";
- rev = "a2ef25dde2d8eb91bd9c0c6164cb5208208647fa";
- sha256 = "1dbh0srbf54lgd60ia79y9cfnq3kxlgw01qzdjs9mk3nfazzpgnv";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/e6e75695594ce17b618ad8786c8a04e283f68b11/recipes/typing";
- sha256 = "0k2lplqzq3323nn7rybcs377sr87kbww8ci99rrka3yyb5bh1fa1";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/typing";
- license = lib.licenses.free;
- };
- }) {};
- typing-game = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "typing-game";
- ename = "typing-game";
- version = "20160426.520";
- src = fetchFromGitHub {
- owner = "lujun9972";
- repo = "el-typing-game";
- rev = "616435a5270274f4c7b698697674dbb2039049a4";
- sha256 = "0dkrnn9fzqv793wvd3nc7dbslayj37q5na1w1g63g32z2s8aq09j";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/e6ced22932f0462c77d121a631c494c01a0a4eaa/recipes/typing-game";
- sha256 = "0k85j9bcqp0gbzdh44q5a9wlkv5mc0g0m42ziq1bzmp6993wkmy2";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/typing-game";
- license = lib.licenses.free;
- };
- }) {};
typit = callPackage ({ emacs
, f
, fetchFromGitHub
@@ -101852,33 +52721,6 @@
license = lib.licenses.free;
};
}) {};
- typoscript-mode = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , use-package }:
- melpaBuild {
- pname = "typoscript-mode";
- ename = "typoscript-mode";
- version = "20170126.112";
- src = fetchFromGitHub {
- owner = "ksjogo";
- repo = "typoscript-mode";
- rev = "44e7567e921573c4f33c537b827f71fb1f565c32";
- sha256 = "0i7l9s3lhxnld32mqyrvasiv1hilhwnp2fwvpdv2cx9r902q6kc8";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/701de09cb97cbfa49a3a81aaeb9577817566efa2/recipes/typoscript-mode";
- sha256 = "18i2wwbn8vj5dbgxp2ds29n12v8ldvxjd1zb6h1g9lfh8iyrnjmx";
- name = "recipe";
- };
- packageRequires = [ emacs use-package ];
- meta = {
- homepage = "https://melpa.org/#/typoscript-mode";
- license = lib.licenses.free;
- };
- }) {};
ubuntu-theme = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -101932,106 +52774,6 @@
license = lib.licenses.free;
};
}) {};
- uimage = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "uimage";
- ename = "uimage";
- version = "20160901.521";
- src = fetchFromGitHub {
- owner = "lujun9972";
- repo = "uimage";
- rev = "9893d09160ef7e8c0ecdcd74fca99ffeb5f9d70d";
- sha256 = "1ri50nab778kpq49m54ra75z8dphagp9sz92is0636j4qy3sbih1";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/346cb25abdfdd539d121a9f34bce75b2fc5a16be/recipes/uimage";
- sha256 = "0i6qpk6v4pmpk3zswygdy0dd7rxy8kl7qn8a1xanpi4aqg7wlbmd";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/uimage";
- license = lib.licenses.free;
- };
- }) {};
- ujelly-theme = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "ujelly-theme";
- ename = "ujelly-theme";
- version = "20180214.824";
- src = fetchFromGitHub {
- owner = "marktran";
- repo = "color-theme-ujelly";
- rev = "bf724ce7806a738d2043544061e5f9bbfc56e674";
- sha256 = "0pz26q5qfq4wiqcpfkq26f19q5gyiv8q71sq4k77hkss5a5b5fqg";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/091dcc3775ec2137cb61d66df4e72aca4900897a/recipes/ujelly-theme";
- sha256 = "0b7zgmpsdn5p3jx4kif7phxz8pb85snmmfr3yz98xf6p7h6w60gw";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/ujelly-theme";
- license = lib.licenses.free;
- };
- }) {};
- ukrainian-holidays = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "ukrainian-holidays";
- ename = "ukrainian-holidays";
- version = "20130720.649";
- src = fetchFromGitHub {
- owner = "abo-abo";
- repo = "ukrainian-holidays";
- rev = "e52b0c92843e9f4d0415a7ba3b8559785497d23d";
- sha256 = "033v4ck979lhkpwblci5clacfc1xnkq03p5d1m566wff8dp5flwz";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/8a8b5ec722600bcd5bf5fcc2b20262597a9e8c40/recipes/ukrainian-holidays";
- sha256 = "0kbfj2l1rcv74c88nabkwkcl7k9pkim835l24q61zv3i6wf9sykf";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/ukrainian-holidays";
- license = lib.licenses.free;
- };
- }) {};
- uncrustify-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "uncrustify-mode";
- ename = "uncrustify-mode";
- version = "20130707.659";
- src = fetchFromGitHub {
- owner = "koko1000ban";
- repo = "emacs-uncrustify-mode";
- rev = "2c00d5cf2d1868a5955347438746f4dd82b3b9fc";
- sha256 = "1pzg49l982a0kajnix0jl3gk7g37d7pgqg9lx838i2sk3jfwayf9";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5327aa1a1143c2257e9454663ff140f2371d07e3/recipes/uncrustify-mode";
- sha256 = "0amdxdfc8i99zjrw4iqmxzb47h0airs60fwmc32bc8b0ds66c3kd";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/uncrustify-mode";
- license = lib.licenses.free;
- };
- }) {};
undercover = callPackage ({ dash
, emacs
, fetchFromGitHub
@@ -102111,58 +52853,6 @@
license = lib.licenses.free;
};
}) {};
- undo-propose = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "undo-propose";
- ename = "undo-propose";
- version = "20190322.917";
- src = fetchFromGitHub {
- owner = "jackkamm";
- repo = "undo-propose-el";
- rev = "036e66c1ac4b0358b34727d2c9b65853347dad89";
- sha256 = "1ah2x0fwf2ybz3i4cjs19fmx7aq1xfgnh4x623qy12v7ab4pvd3m";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/308eec15ebfd301b34f0d9f019250c9089c4d6e2/recipes/undo-propose";
- sha256 = "0r0xswj9n24ghw44l1m1izapjqrfvcw8qn3qp61s2ly0i7la185j";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/undo-propose";
- license = lib.licenses.free;
- };
- }) {};
- undohist = callPackage ({ cl-lib ? null
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "undohist";
- ename = "undohist";
- version = "20150315.542";
- src = fetchFromGitHub {
- owner = "m2ym";
- repo = "undohist-el";
- rev = "d2239a5f736724ceb9e3b6bcaa86f4064805cda0";
- sha256 = "1c0daw246ky7b1x5b8h55x79pl1pjqk1k348l487bdd8zdj4w9wx";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/aebd16ca1ac51d9982eae5437c6084a2a3946b88/recipes/undohist";
- sha256 = "0zzfzh8sf2dkz8h3kidv7zmwz2c2qq9n9qz2mab2lk0y44njzwhn";
- name = "recipe";
- };
- packageRequires = [ cl-lib ];
- meta = {
- homepage = "https://melpa.org/#/undohist";
- license = lib.licenses.free;
- };
- }) {};
unfill = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -102188,31 +52878,6 @@
license = lib.licenses.free;
};
}) {};
- unicode-emoticons = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "unicode-emoticons";
- ename = "unicode-emoticons";
- version = "20150204.308";
- src = fetchFromGitHub {
- owner = "hagleitn";
- repo = "unicode-emoticons";
- rev = "52a09955c2afc1807c0f37f1467ccfc1e1da690a";
- sha256 = "0z7aaw5ib1q8whnrhvybzxa4cm18qsw5sg8gv31j3yxi638yvi89";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/unicode-emoticons";
- sha256 = "0sp4sb2yw9msyqxgp4q5z9pzfvqwhizd1sx8w63g1vis6n2h254r";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/unicode-emoticons";
- license = lib.licenses.free;
- };
- }) {};
unicode-enbox = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -102306,56 +52971,6 @@
license = lib.licenses.free;
};
}) {};
- unicode-input = callPackage ({ fetchhg
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "unicode-input";
- ename = "unicode-input";
- version = "20141218.2320";
- src = fetchhg {
- url = "https://bitbucket.com/m00nlight/unicode-input";
- rev = "e76ccb549e6a";
- sha256 = "0kzcg1wxi1z424jdn7pibk9zyfyi85kligav08sl1c2hdldzya4l";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5b7972602399f9df9139cff177e38653bb0f43ed/recipes/unicode-input";
- sha256 = "17sf3xnl8yyx4ln4mrjlrvfinb8dvabh81l3qyr9pkn5skpgqgj8";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/unicode-input";
- license = lib.licenses.free;
- };
- }) {};
- unicode-math-input = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "unicode-math-input";
- ename = "unicode-math-input";
- version = "20181230.423";
- src = fetchFromGitHub {
- owner = "astoff";
- repo = "unicode-math-input.el";
- rev = "6ad698bf4a8c64dd969ac58cf09ee66783cfcdce";
- sha256 = "0g72zh4a8mimmsiq53k0y9w4xmfhvdymksxdrkiygc3vji2jv6na";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/e0d39bc129500e55b99c11b3d27e042619777414/recipes/unicode-math-input";
- sha256 = "1hra3vf6nzh99piagbxsmp0sizvki2jl7qkfmlwd5nwmicw0ykrq";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/unicode-math-input";
- license = lib.licenses.free;
- };
- }) {};
unicode-progress-reporter = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -102385,31 +53000,6 @@
license = lib.licenses.free;
};
}) {};
- unicode-troll-stopper = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "unicode-troll-stopper";
- ename = "unicode-troll-stopper";
- version = "20190208.2011";
- src = fetchFromGitHub {
- owner = "camsaul";
- repo = "emacs-unicode-troll-stopper";
- rev = "5e8be35a7bf6382384a701663f7438ee27e4b67c";
- sha256 = "0xjh017kjhj93j72r5hdpiabv76szlmpivlfyhg9vzysdmix45qv";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/b463925a98b7dde78d85693c7681fd2346d90895/recipes/unicode-troll-stopper";
- sha256 = "0a10lq0xsfyp052iw4xjbhsdkbyg25x2gk68gys4k7p6l92la0k5";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/unicode-troll-stopper";
- license = lib.licenses.free;
- };
- }) {};
unicode-whitespace = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -102438,31 +53028,6 @@
license = lib.licenses.free;
};
}) {};
- unidecode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "unidecode";
- ename = "unidecode";
- version = "20180312.1226";
- src = fetchFromGitHub {
- owner = "sindikat";
- repo = "unidecode";
- rev = "5502ada9287b4012eabb879f12f5b0a9df52c5b7";
- sha256 = "03x3nakbhmakwm977mwrf8jifvjnfwzpjv6wrwpizbqjnkgfchmn";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/f9ba8e425e37e80a2236832c3f12568546d4c7c9/recipes/unidecode";
- sha256 = "0vhghnyj8a5mcqq5rzajrm1izzfry77pd1wxhmra5yp9ribw2sv5";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/unidecode";
- license = lib.licenses.free;
- };
- }) {};
unify-opening = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -102489,108 +53054,6 @@
license = lib.licenses.free;
};
}) {};
- unipoint = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "unipoint";
- ename = "unipoint";
- version = "20140113.1424";
- src = fetchFromGitHub {
- owner = "apg";
- repo = "unipoint";
- rev = "5da04aebac35a5c9e1d8704f2231808d42f4b36a";
- sha256 = "1wl9rzys1zr2c41h5i57y6hxsavix1b26f453l2izmb6r0b1dvh0";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/unipoint";
- sha256 = "0fm7anwcmga9adyfwlri7x014rpvfl1r6nccyi6lrpx126wy008s";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/unipoint";
- license = lib.licenses.free;
- };
- }) {};
- unison = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "unison";
- ename = "unison";
- version = "20160704.40";
- src = fetchFromGitHub {
- owner = "unhammer";
- repo = "unison.el";
- rev = "a78a04c0d1398d00f75a1bd4799622a65bcb0f28";
- sha256 = "1jn23wlhpka5pv0caipxi8bg3cc6wj1fg09abibhydy4p3mb3bi5";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/ee7ee1a68486f822c1627fb0bf066c4ae8bc0776/recipes/unison";
- sha256 = "03v10r6d4r6z66s9q7mg1iyxh53f3l6q7dij7pfbf32migqjgpir";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/unison";
- license = lib.licenses.free;
- };
- }) {};
- unison-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "unison-mode";
- ename = "unison-mode";
- version = "20160513.801";
- src = fetchFromGitHub {
- owner = "impaktor";
- repo = "unison-mode";
- rev = "0bd6a65c0d12f87fcf7bdff15fe54444959b93bf";
- sha256 = "1snbvhvx2csw1f314dbdwny8yvfq834plpkzx0vl4k3wddmr3a66";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/bd5b5c16e504ee8e511bbc65acbc0ff65f99eaf4/recipes/unison-mode";
- sha256 = "03kyr1h5pm51vn4bykj13rm4ybln266rpnxh65y2ygw8f8md88gl";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/unison-mode";
- license = lib.licenses.free;
- };
- }) {};
- universal-emotions-emoticons = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "universal-emotions-emoticons";
- ename = "universal-emotions-emoticons";
- version = "20180729.1241";
- src = fetchFromGitHub {
- owner = "grettke";
- repo = "universal-emotions-emoticons";
- rev = "9cedd09ee65cb9fa71f27b0ab46a8353bdc00902";
- sha256 = "17blqfnf384l2hd2igrw5p0zblw6bxz69vvzli22nr84kpkh5jx4";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/57f913112c98db2248cf69e44deb69fd09cee042/recipes/universal-emotions-emoticons";
- sha256 = "1aj3k3yrvasn3zmfwz5si046hlyhnjdmxh7i8li6rc0v0qwl7p86";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/universal-emotions-emoticons";
- license = lib.licenses.free;
- };
- }) {};
unkillable-scratch = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -102617,60 +53080,6 @@
license = lib.licenses.free;
};
}) {};
- untitled-new-buffer = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , magic-filetype
- , melpaBuild }:
- melpaBuild {
- pname = "untitled-new-buffer";
- ename = "untitled-new-buffer";
- version = "20161212.708";
- src = fetchFromGitHub {
- owner = "zonuexe";
- repo = "untitled-new-buffer.el";
- rev = "e359ae63bc6310e315b7c25157858f9b9796ed3d";
- sha256 = "0wgyc798pn9224ck3c4xndrrmsd4j12qdxhy6i7y7i27y1gw6ckj";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/de62e48115e1e5f9506e6d47a3b23c0420c1205b/recipes/untitled-new-buffer";
- sha256 = "1hpv7k7jhpif9csdrd2gpz71s3fp4svsvrd1nh8hbx7avjl66pjf";
- name = "recipe";
- };
- packageRequires = [ emacs magic-filetype ];
- meta = {
- homepage = "https://melpa.org/#/untitled-new-buffer";
- license = lib.licenses.free;
- };
- }) {};
- upbo = callPackage ({ dash
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "upbo";
- ename = "upbo";
- version = "20180422.122";
- src = fetchFromGitHub {
- owner = "shiren";
- repo = "upbo";
- rev = "63514c484e70cd6eeae828f7e58216e1a3429184";
- sha256 = "0dwff302v38hxxspfap49w1afx8g3scl4gm30ksybnfph1pa29l4";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/e5232078b065dcca04388ccc76aa01a6159395d5/recipes/upbo";
- sha256 = "15rqz9z49363anrhli08vk155wp21hq3j7xsvd98lkq9ip6aglns";
- name = "recipe";
- };
- packageRequires = [ dash emacs ];
- meta = {
- homepage = "https://melpa.org/#/upbo";
- license = lib.licenses.free;
- };
- }) {};
uptimes = callPackage ({ cl-lib ? null
, emacs
, fetchFromGitHub
@@ -102698,56 +53107,6 @@
license = lib.licenses.free;
};
}) {};
- url-shortener = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "url-shortener";
- ename = "url-shortener";
- version = "20170804.1942";
- src = fetchFromGitHub {
- owner = "yuyang0";
- repo = "url-shortener";
- rev = "06db8270213b9e352d6c335b0663059a1353d05e";
- sha256 = "1ndcajgvfl46zw2iwgghvcldsy9p778pifkhlanivc6azajhpjhh";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/url-shortener";
- sha256 = "08zsirsndhr8xny2vkzznkvjs0b6490lzd915ws6crdwxp6mx5si";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/url-shortener";
- license = lib.licenses.free;
- };
- }) {};
- urlenc = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "urlenc";
- ename = "urlenc";
- version = "20140116.656";
- src = fetchFromGitHub {
- owner = "buzztaiki";
- repo = "urlenc-el";
- rev = "835a6dcb783bbe84714bae87a3464aa0b128bfac";
- sha256 = "0xwr0v4f64d7hi5ldig4r5yjn8h3f8by49g5820187lsp7ng2nw4";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5c36c416a13328ab762041dd62407b7b0696de93/recipes/urlenc";
- sha256 = "0n6shh95m11162zsnf62zy1ljswdjznjilxx2dbqyqdrn7qr2dgh";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/urlenc";
- license = lib.licenses.free;
- };
- }) {};
urscript-mode = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -102774,31 +53133,6 @@
license = lib.licenses.free;
};
}) {};
- usage-memo = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "usage-memo";
- ename = "usage-memo";
- version = "20170925.1737";
- src = fetchFromGitHub {
- owner = "rubikitch";
- repo = "usage-memo";
- rev = "88e15a9942a3e0a6e36e9c3e51e3edb746067b1a";
- sha256 = "1aalrgyk8pwsc07qmczqhgccjli6mcckkbgpass3kvrkcfxdl2zk";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/ad10a684b4b2f01bc65883374f36fef156ff55d2/recipes/usage-memo";
- sha256 = "0fv96xd6gk12nv98zccwncr00qms0pmrp0cv7iipbz54s20g0745";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/usage-memo";
- license = lib.licenses.free;
- };
- }) {};
use-package = callPackage ({ bind-key
, emacs
, fetchFromGitHub
@@ -102935,33 +53269,6 @@
license = lib.licenses.free;
};
}) {};
- use-ttf = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , s }:
- melpaBuild {
- pname = "use-ttf";
- ename = "use-ttf";
- version = "20181206.902";
- src = fetchFromGitHub {
- owner = "jcs090218";
- repo = "use-ttf";
- rev = "569b5df758bb85b69a98b3bed108b0735179eed9";
- sha256 = "0ama7qqi32vp5mgsdbz6vixp6h5jhkq1m82jqrrgddcd5ih8zan1";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/8af853b2db58300ba1685e3547a9f96c05b04df6/recipes/use-ttf";
- sha256 = "08bylry03q1vy1dx8vcdc4drrn4c97hr45nsz5xc0369jmfvqavs";
- name = "recipe";
- };
- packageRequires = [ emacs s ];
- meta = {
- homepage = "https://melpa.org/#/use-ttf";
- license = lib.licenses.free;
- };
- }) {};
usql = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -103014,56 +53321,6 @@
license = lib.licenses.free;
};
}) {};
- uuid = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "uuid";
- ename = "uuid";
- version = "20120910.151";
- src = fetchFromGitHub {
- owner = "nicferrier";
- repo = "emacs-uuid";
- rev = "1519bfeb0e31602b840bc8dd35d7c7e732c159fe";
- sha256 = "0r74gw8gcbrr62rvj4anz0c3n6kwi1xpb42d3pkzlh4igblhi5zj";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/uuid";
- sha256 = "0d69z9686gnd1bb17wa44v1rbbgccacn4kicwf9niwwp05nccfw6";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/uuid";
- license = lib.licenses.free;
- };
- }) {};
- uuidgen = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "uuidgen";
- ename = "uuidgen";
- version = "20140918.1601";
- src = fetchFromGitHub {
- owner = "kanru";
- repo = "uuidgen-el";
- rev = "7eb96415484c3854a3f383d1a3e10b87ae674e22";
- sha256 = "19bf6vpc2b9hfjkjanji96fflvk1lbillasnpwcb6zzyq0cs47bw";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/8bdeb5848d0b160a74e834ed918e83653d7342bf/recipes/uuidgen";
- sha256 = "1qaz7hg0wsdkl0jb7v7vrkjs554i2zgpxl8xq2f8q7m4bs2m5k48";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/uuidgen";
- license = lib.licenses.free;
- };
- }) {};
v2ex-mode = callPackage ({ cl-lib ? null
, fetchFromGitHub
, fetchurl
@@ -103117,83 +53374,6 @@
license = lib.licenses.free;
};
}) {};
- vagrant-tramp = callPackage ({ dash
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "vagrant-tramp";
- ename = "vagrant-tramp";
- version = "20190125.1059";
- src = fetchFromGitHub {
- owner = "dougm";
- repo = "vagrant-tramp";
- rev = "77256deca35bb797cbba499837f3658d1a17d2e3";
- sha256 = "0j7ff9b3ic4a6kzn7k0c52knlgangql7sjsxahwvym6w18r52d5a";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/baea9f16e245aec3f62e55471358c7208f61372d/recipes/vagrant-tramp";
- sha256 = "0ij7k27zj22sl7inx141l4dg0ymywnvyabjvaqzc0xjdj0cky5c5";
- name = "recipe";
- };
- packageRequires = [ dash ];
- meta = {
- homepage = "https://melpa.org/#/vagrant-tramp";
- license = lib.licenses.free;
- };
- }) {};
- vala-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "vala-mode";
- ename = "vala-mode";
- version = "20150324.1525";
- src = fetchFromGitHub {
- owner = "emacsorphanage";
- repo = "vala-mode";
- rev = "fb2871a4492d75d03d72e60474919ab89adb267b";
- sha256 = "10vs4d8csww781j1ps3f6dczy5zzza36z7a8zqk40fg4x57ikw44";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/cea26fa67a524b7c14be2952cfbd4f657431415f/recipes/vala-mode";
- sha256 = "164dhlsiflhpdymk3q5x0bv8gpbwfp34lnkhm2x90kdakfzqf91p";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/vala-mode";
- license = lib.licenses.free;
- };
- }) {};
- vala-snippets = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , yasnippet }:
- melpaBuild {
- pname = "vala-snippets";
- ename = "vala-snippets";
- version = "20150428.2052";
- src = fetchFromGitHub {
- owner = "gopar";
- repo = "vala-snippets";
- rev = "671439501060449bd100b9fffd524a86064fbfbb";
- sha256 = "0iscaz8lm4fk6w13f68ysqk8ppng2wj9fkkkq1rfqz77ws66f8nq";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/70f130c5751f47c1ead5f8915680e817e0239a2a/recipes/vala-snippets";
- sha256 = "14hmmic0px3z38dm2dg0kis6cz1p3p1hj7xaqnqjmv02dkx2mmcy";
- name = "recipe";
- };
- packageRequires = [ yasnippet ];
- meta = {
- homepage = "https://melpa.org/#/vala-snippets";
- license = lib.licenses.free;
- };
- }) {};
vbasense = callPackage ({ auto-complete
, fetchFromGitHub
, fetchurl
@@ -103222,107 +53402,6 @@
license = lib.licenses.free;
};
}) {};
- vc-auto-commit = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "vc-auto-commit";
- ename = "vc-auto-commit";
- version = "20170107.533";
- src = fetchFromGitHub {
- owner = "thisirs";
- repo = "vc-auto-commit";
- rev = "446f664f4ec835532f4f18ba18b5fb731f6030aa";
- sha256 = "18jjl656ps75p7n3hf16mcjrgiagnjvb8m8dl4i261cbnq98qmav";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/770ab1e99fe63789726fc6c8c5d7e9a0287bc5fa/recipes/vc-auto-commit";
- sha256 = "1xpp7vbld3jgcr249m5h7il919kfg7d5ap3zs64i27axzdhv26zk";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/vc-auto-commit";
- license = lib.licenses.free;
- };
- }) {};
- vc-check-status = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "vc-check-status";
- ename = "vc-check-status";
- version = "20170107.534";
- src = fetchFromGitHub {
- owner = "thisirs";
- repo = "vc-check-status";
- rev = "37734beb16bfd8633ea328059bf9a47eed826d5c";
- sha256 = "0mspksr2i6hkb7bhs38ydmn0d2mn7g1hjva60paq86kl7k76f7ra";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/0387e08dd7ed69b291e896d85bd975c4f5dcbd09/recipes/vc-check-status";
- sha256 = "1kwnxa0ndfj8b211xy5d47sxkwmsay0kk8q7azfm5ag5dkg56zgi";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/vc-check-status";
- license = lib.licenses.free;
- };
- }) {};
- vc-darcs = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "vc-darcs";
- ename = "vc-darcs";
- version = "20170904.2020";
- src = fetchFromGitHub {
- owner = "velkyel";
- repo = "vc-darcs";
- rev = "390fb1ebdda1ffac45b9be02626dde3b6d95ac11";
- sha256 = "1fcqkavc7hlbhswx5nnaqhash42cjsbr72ijznx5cplr582g3mfq";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/54f89c50ae45365e86bdadcf67b2411c0f4c5603/recipes/vc-darcs";
- sha256 = "1xskl9wjxkbdpi0fm769ymbvya70vssi944x5252w2d3layibm6m";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/vc-darcs";
- license = lib.licenses.free;
- };
- }) {};
- vc-fossil = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "vc-fossil";
- ename = "vc-fossil";
- version = "20180215.835";
- src = fetchFromGitHub {
- owner = "venks1";
- repo = "emacs-fossil";
- rev = "7c5af95181213db38f81f5f9586f3334301a3ea0";
- sha256 = "1c18ywvs0l5w7ip2igksjy48awzas8mph7plpvp1v8c67a3a3m2m";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/31c5ee4b625b90c1af66d7d11a25af8e1aa307b1/recipes/vc-fossil";
- sha256 = "11ps2wrkjrjm1d984mf80wwj1hzskw5qrn0nv7md21lp75kxsvxb";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/vc-fossil";
- license = lib.licenses.free;
- };
- }) {};
vc-hgcmd = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -103331,12 +53410,12 @@
melpaBuild {
pname = "vc-hgcmd";
ename = "vc-hgcmd";
- version = "1.6.7";
+ version = "1.6.8";
src = fetchFromGitHub {
owner = "muffinmad";
repo = "emacs-vc-hgcmd";
- rev = "e0f6e412c66bb8d57549d0d83dcdcab5b71db664";
- sha256 = "0mcdyy3qcci0x78q06kilfxm14nzmwfzwg7n3njh93i2h1plr7ic";
+ rev = "5edf2b9ebbe68a05e1d9ad119e239154577953bf";
+ sha256 = "1yswz1mhdpp52zsyzryyr1psi9pnm1x4ri4i24vbmsxvj9vzhkmp";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/111142342ab81dcaa88a831ba620be499a334c3f/recipes/vc-hgcmd";
@@ -103376,31 +53455,6 @@
license = lib.licenses.free;
};
}) {};
- vc-osc = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "vc-osc";
- ename = "vc-osc";
- version = "20190402.1649";
- src = fetchFromGitHub {
- owner = "aspiers";
- repo = "vc-osc";
- rev = "bf5a515ed85f7d7cdfe66ed5bf4ef7554f8561e5";
- sha256 = "1jk09vspns327j9mfy32dd71n3nfynn17h2njc4sczrgd4yzc2wd";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/70a1fa5fdfdfa9ec5607524be62eb44fe82e91b0/recipes/vc-osc";
- sha256 = "0rp33945xk5d986brganqnn55psmlkj6glbimxakhgv9a1r85sxz";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/vc-osc";
- license = lib.licenses.free;
- };
- }) {};
vcomp = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -103615,112 +53669,6 @@
license = lib.licenses.free;
};
}) {};
- veri-kompass = callPackage ({ cl-lib ? null
- , emacs
- , fetchFromGitLab
- , fetchurl
- , lib
- , melpaBuild
- , org }:
- melpaBuild {
- pname = "veri-kompass";
- ename = "veri-kompass";
- version = "20181110.133";
- src = fetchFromGitLab {
- owner = "koral";
- repo = "veri-kompass";
- rev = "72aa690da9a349601c9befe454d456d46b17fee6";
- sha256 = "0da47w45a1q04srsc0kgjp4lacgaa6abf2b11qjgckm3drahifgg";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/18c3a69bec780e3e7456b310db6f0eec2a35c753/recipes/veri-kompass";
- sha256 = "103x4003qj0z9ki6xz4hymamyhipzfxz94x4gszk3k2qnvkjkxnj";
- name = "recipe";
- };
- packageRequires = [ cl-lib emacs org ];
- meta = {
- homepage = "https://melpa.org/#/veri-kompass";
- license = lib.licenses.free;
- };
- }) {};
- verify-url = callPackage ({ cl-lib ? null
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "verify-url";
- ename = "verify-url";
- version = "20160426.528";
- src = fetchFromGitHub {
- owner = "lujun9972";
- repo = "verify-url";
- rev = "d6f3623cda8cd526a2d198619b137059cb1ba1ab";
- sha256 = "1y6vjw5qzaxr37spg5d4nxffmhiipzsrd7mvh8bs3jcfrsg3080n";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/2070f7b1901c83e59468f6498bd5f79077ccb79d/recipes/verify-url";
- sha256 = "1gd83rb1q0kywchd0345p5axqj1sv4f5kadympx5pbp4n5p1dqb2";
- name = "recipe";
- };
- packageRequires = [ cl-lib ];
- meta = {
- homepage = "https://melpa.org/#/verify-url";
- license = lib.licenses.free;
- };
- }) {};
- vertica = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , sql ? null }:
- melpaBuild {
- pname = "vertica";
- ename = "vertica";
- version = "20131217.711";
- src = fetchFromGitHub {
- owner = "r0man";
- repo = "vertica-el";
- rev = "3c9647b425c5c13c30bf0cba483646af18196588";
- sha256 = "1mp71axs3vdrdwlhgywfldvnr6a1g2qbxiywmpfmcv59n5n58p1j";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/f98a06b794ef0936db953f63679a63232295a849/recipes/vertica";
- sha256 = "1ljjk6zrbr2k0s0iaqd9iq3j45cavijcx0rqdidliswnfllav4ng";
- name = "recipe";
- };
- packageRequires = [ sql ];
- meta = {
- homepage = "https://melpa.org/#/vertica";
- license = lib.licenses.free;
- };
- }) {};
- vertica-snippets = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , yasnippet }:
- melpaBuild {
- pname = "vertica-snippets";
- ename = "vertica-snippets";
- version = "20190403.256";
- src = fetchFromGitHub {
- owner = "baron42bba";
- repo = "vertica-snippets";
- rev = "b7a2e9660762a213fa001355e67ca671d9496339";
- sha256 = "0n5f5zgg7yvy6f5l746vi7z4y9gmjk7m9bdk68xhfz8pgyjaji3s";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/d3c8cb5c0fdbb6820a08091d8936dd53a3c43c56/recipes/vertica-snippets";
- sha256 = "0044qcf6dyxp2h14ij6w19zs7ikx9xalfrz6jqbl8sy35wcihmhn";
- name = "recipe";
- };
- packageRequires = [ yasnippet ];
- meta = {
- homepage = "https://melpa.org/#/vertica-snippets";
- license = lib.licenses.free;
- };
- }) {};
vertigo = callPackage ({ dash
, fetchFromGitHub
, fetchurl
@@ -103747,162 +53695,35 @@
license = lib.licenses.free;
};
}) {};
- vhdl-capf = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "vhdl-capf";
- ename = "vhdl-capf";
- version = "20160221.934";
- src = fetchFromGitHub {
- owner = "sh-ow";
- repo = "vhdl-capf";
- rev = "290abe217050f33532bc9ccb04f894123402f414";
- sha256 = "185a7962h94122q783ih7s8r28xifm0bcrqvkd0g4p64mijlbh3d";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/6192f5777bc8be6ddc5523f92ab641ed3af1a504/recipes/vhdl-capf";
- sha256 = "06dkw5ra9wnscpgrnx851vyfgr5797xd60qdimsr2v1bqd8si9km";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/vhdl-capf";
- license = lib.licenses.free;
- };
- }) {};
vhdl-tools = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
, ggtags
, helm
+ , helm-rg
, lib
- , melpaBuild
- , outshine }:
+ , melpaBuild }:
melpaBuild {
pname = "vhdl-tools";
ename = "vhdl-tools";
- version = "5.9";
+ version = "6.0";
src = fetchFromGitHub {
owner = "csantosb";
repo = "vhdl-tools";
- rev = "4e9df06c3519be22f1f713d18c80d325a5b0c3d2";
- sha256 = "0n6mmbg8g3ip3dkbc4kxqxsd4p1h7jry25n1cqvzm24x1adwlcfm";
+ rev = "054b75353905d867b4c5b53258bc3180ce48c767";
+ sha256 = "0q5d0938h31snl8i3r0c81w88qk99i25c65xsjdvn0hs8g2lpwir";
};
recipe = fetchurl {
url = "https://raw.githubusercontent.com/milkypostman/melpa/69fe2f8fb98ac1af1d3185f62ae1c89e646cfebf/recipes/vhdl-tools";
sha256 = "006d9xv60a90xalagczkziiimwsr1np9nn25zvnc4nlbf8j3fbbw";
name = "recipe";
};
- packageRequires = [ emacs ggtags helm outshine ];
+ packageRequires = [ emacs ggtags helm helm-rg ];
meta = {
homepage = "https://melpa.org/#/vhdl-tools";
license = lib.licenses.free;
};
}) {};
- vi-tilde-fringe = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "vi-tilde-fringe";
- ename = "vi-tilde-fringe";
- version = "20141027.1942";
- src = fetchFromGitHub {
- owner = "syl20bnr";
- repo = "vi-tilde-fringe";
- rev = "e6e15638e8c45a5e68d0874d5d8c9a46c4f38a54";
- sha256 = "08bsman85x2l94ighzcj3xkis1snjc96bmgc8yfk63vqlybv5pw9";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/8b3359d57148f8205f8a863a21d92fe4912f31cc/recipes/vi-tilde-fringe";
- sha256 = "0jhwv46gjwjbs1ai65nm6k15y0q4yl9m5mawgp3n4f45dh02cawp";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/vi-tilde-fringe";
- license = lib.licenses.free;
- };
- }) {};
- viewer = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "viewer";
- ename = "viewer";
- version = "20170106.1802";
- src = fetchFromGitHub {
- owner = "rubikitch";
- repo = "viewer";
- rev = "6c8db025bf4021428f7f2c3ef9d74fb13f5d267a";
- sha256 = "1sj4a9zwfv94m0ac503gan6hf9sl2658khab1fnj8szcq7hrdvq1";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/f8e4328cae9b4759a75da0b26ea8b68821bc71af/recipes/viewer";
- sha256 = "10rw3b8akd2fl8gsqf1m24zi6q4n0z68lvvv1vx9c9b7ghqcqxw1";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/viewer";
- license = lib.licenses.free;
- };
- }) {};
- viking-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "viking-mode";
- ename = "viking-mode";
- version = "20160705.1327";
- src = fetchFromGitHub {
- owner = "TLINDEN";
- repo = "viking-mode";
- rev = "c76aa265d13ad91d6890d242e142d05e31f0340b";
- sha256 = "1944p3kbskzj4d9w9prbi7z59lrn087v3gphbhwjplz6mvwbl8g6";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/35763febad20f29320d459394f810668db6c3353/recipes/viking-mode";
- sha256 = "12z9807ya0gsgx7h3zdvpx7jksjjrglz3qqyz65wj71sibjfry4m";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/viking-mode";
- license = lib.licenses.free;
- };
- }) {};
- vim-empty-lines-mode = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "vim-empty-lines-mode";
- ename = "vim-empty-lines-mode";
- version = "20150110.2026";
- src = fetchFromGitHub {
- owner = "jmickelin";
- repo = "vim-empty-lines-mode";
- rev = "442a29b0ba1635a3b352c9dd1faf9ce99656d048";
- sha256 = "09x857vbx35rpyc5x1322ajby613gva090x4vawaczk22idq65h4";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/e93a8dcd2ff159203288e71da6b8f28eab0d2006/recipes/vim-empty-lines-mode";
- sha256 = "17bl1g4ais73ws596mha0l8dgckfqhx9k2v9m9k0gw7kg7dcjhnb";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/vim-empty-lines-mode";
- license = lib.licenses.free;
- };
- }) {};
vim-region = callPackage ({ expand-region
, fetchFromGitHub
, fetchurl
@@ -103957,56 +53778,6 @@
license = lib.licenses.free;
};
}) {};
- vimrc-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "vimrc-mode";
- ename = "vimrc-mode";
- version = "20181116.1119";
- src = fetchFromGitHub {
- owner = "mcandre";
- repo = "vimrc-mode";
- rev = "13bc150a870d5d4a95f1111e4740e2b22813c30e";
- sha256 = "0026dqs3hwygk2k2xfra90w5sfnxrfj7l69jz7sq5glavbf340pk";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/vimrc-mode";
- sha256 = "05zmr624qwsj9wqsmjlhjvjl1fc1qxz4vvbb3ljr5fbpxdjrbnpn";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/vimrc-mode";
- license = lib.licenses.free;
- };
- }) {};
- virtualenv = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "virtualenv";
- ename = "virtualenv";
- version = "20140220.1501";
- src = fetchFromGitHub {
- owner = "aculich";
- repo = "virtualenv.el";
- rev = "cc82856b6316d5e78073de717f0d5d1a4ee35fa6";
- sha256 = "1appaxy44njjyp5jp8l0nyqrvbi8hkdvbdfvvf5n08ad43g281p1";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/923e4fcf29423ad55b13132d53759bc436466ef9/recipes/virtualenv";
- sha256 = "1djqzzlbwsp9xyjqjbjwdck73wzikbpq19irzamybk90nc98wirl";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/virtualenv";
- license = lib.licenses.free;
- };
- }) {};
virtualenvwrapper = callPackage ({ dash
, fetchFromGitHub
, fetchurl
@@ -104059,31 +53830,6 @@
license = lib.licenses.free;
};
}) {};
- visual-ascii-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "visual-ascii-mode";
- ename = "visual-ascii-mode";
- version = "20150129.246";
- src = fetchFromGitHub {
- owner = "Dewdrops";
- repo = "visual-ascii-mode";
- rev = "99285a099a17472ddd9f1b4f74e9d092dd8c5947";
- sha256 = "1cv8mf3l92a9p8qmkfiphk3r81f2ihg2gyw2r4jbbd5ppwbxkl0n";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/21df748a3f383d62c921e184e2a4c9ae4118ca98/recipes/visual-ascii-mode";
- sha256 = "1h0143h39dq61afswlzlgpknk0gv574x91ar6klqmnaf1snab59g";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/visual-ascii-mode";
- license = lib.licenses.free;
- };
- }) {};
visual-fill-column = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -104187,32 +53933,6 @@
license = lib.licenses.free;
};
}) {};
- vmd-mode = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "vmd-mode";
- ename = "vmd-mode";
- version = "20180223.556";
- src = fetchFromGitHub {
- owner = "blak3mill3r";
- repo = "vmd-mode";
- rev = "24e38a20951dfad6e3e985c7cc6286c1e271da5f";
- sha256 = "00anpbnf0h6iikhpqz4mss507j41xwvv27svw41kpgcwsnrmrqwm";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/vmd-mode";
- sha256 = "1xjyl2xh3vig2rzjqm1a4h2ridygbanmal78s4yc32hacy0lfyrx";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/vmd-mode";
- license = lib.licenses.free;
- };
- }) {};
voca-builder = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -104263,57 +53983,6 @@
license = lib.licenses.free;
};
}) {};
- volume = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "volume";
- ename = "volume";
- version = "20150718.1309";
- src = fetchFromGitHub {
- owner = "dbrock";
- repo = "volume.el";
- rev = "ecc1550b3c8b501d37e0f0116b54b535d15f90f6";
- sha256 = "0ymibjq6iwab5ia1fglhz4gm5cnbi792018fmrabcqkisj2zsjb7";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/6440f81aed1fcddcaf7afeedb74520e605211986/recipes/volume";
- sha256 = "1gm2zaf6qwbdhayaj153882qm21cl4qdyjkdnqrlssb2mcgf017w";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/volume";
- license = lib.licenses.free;
- };
- }) {};
- vscode-icon = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "vscode-icon";
- ename = "vscode-icon";
- version = "20180922.1450";
- src = fetchFromGitHub {
- owner = "jojojames";
- repo = "vscode-icon-emacs";
- rev = "3ad83ee122d312775a101c975424a2c87c3a80b1";
- sha256 = "0pd9j1bp8lqda8r6kgmxinf6x8aqfg1aikgk2svlcf1g8z31m66i";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/90a07c96a9223a9ad477cbea895ba522523c5be4/recipes/vscode-icon";
- sha256 = "0rhsqzgxl7hs52kniyi8yn4f953g7dgx49j4lzf2yr33ydxiw9d3";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/vscode-icon";
- license = lib.licenses.free;
- };
- }) {};
vue-html-mode = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -104368,32 +54037,6 @@
license = lib.licenses.free;
};
}) {};
- vyper-mode = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "vyper-mode";
- ename = "vyper-mode";
- version = "20180707.1235";
- src = fetchFromGitHub {
- owner = "ralexstokes";
- repo = "vyper-mode";
- rev = "323dfddfc38f0b11697e9ebaf04d1b53297e54e5";
- sha256 = "1vxqgc9c1lj61ipaw05xfby3nl7wn3kp5ga6kpr17v0jlm0667s5";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/492d42d60bc188a567c5e438b838a275a124c699/recipes/vyper-mode";
- sha256 = "0mf1w4mw0ijmd9zxip1df85cp15fbvv9j5dqjmb8lfm4m43wpd96";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/vyper-mode";
- license = lib.licenses.free;
- };
- }) {};
w32-browser = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -104419,31 +54062,6 @@
license = lib.licenses.free;
};
}) {};
- w3m = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "w3m";
- ename = "w3m";
- version = "20190404.1609";
- src = fetchFromGitHub {
- owner = "emacs-w3m";
- repo = "emacs-w3m";
- rev = "0b85cb2dd4deb348edff25b40e17332af49ad981";
- sha256 = "0sjc6giwzvkndyh6r6v2jiggdqln6y8v39809dn9lj0gj9wz3p4d";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/85c53c48caab0845101c487e4fee7e2cda15f706/recipes/w3m";
- sha256 = "1fnib1y79g50jz9wll63j0xf2awgkrlk6hwx0w6nzg0xsbfbkdvk";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/w3m";
- license = lib.licenses.free;
- };
- }) {};
wacspace = callPackage ({ cl-lib ? null
, dash
, fetchFromGitHub
@@ -104471,162 +54089,6 @@
license = lib.licenses.free;
};
}) {};
- waf-mode = callPackage ({ fetchgit
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "waf-mode";
- ename = "waf-mode";
- version = "20170403.1240";
- src = fetchgit {
- url = "https://bitbucket.org/dvalchuk/waf-mode";
- rev = "91c761336aa137b85b88b53b3f0cc60786d70800";
- sha256 = "1j2bqhmxjfai343m6iv3a8z37hv154h9kbidbi39d1pz2fl5lv43";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/44c1aa152ba47113a91878df78d9b56eead98744/recipes/waf-mode";
- sha256 = "16rplrs599a67dcxcdc33zb9bqivv4a2mvrshvyip1lp75f36r5h";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/waf-mode";
- license = lib.licenses.free;
- };
- }) {};
- waher-theme = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "waher-theme";
- ename = "waher-theme";
- version = "20141115.430";
- src = fetchFromGitHub {
- owner = "emacsfodder";
- repo = "emacs-waher-theme";
- rev = "60d31519fcfd8e797723d47961b255ae2f2e2c0a";
- sha256 = "0w59ix8cbbcyhh882c8vkrbh84i8d03h9w7dchr3qy233b8wcxlc";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/c734ba401d7d9255e0934c31ca5269866af035db/recipes/waher-theme";
- sha256 = "091kipkb6z6x9ic4chprim9rvnmx4yj4419ijmvpn70w69aspnb5";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/waher-theme";
- license = lib.licenses.free;
- };
- }) {};
- wakatime-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "wakatime-mode";
- ename = "wakatime-mode";
- version = "20180920.2";
- src = fetchFromGitHub {
- owner = "wakatime";
- repo = "wakatime-mode";
- rev = "2531cb58287770883ba534d20b3288955c4d6ef3";
- sha256 = "12wa845lwvwg38801mk880izfhjs50ssy5alj1743c2bz7ig5grk";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/a46036a0e53afbebacafd3bc9545c99af79ccfcc/recipes/wakatime-mode";
- sha256 = "1rhy2bwkqlha4bj3zmb0iassiglch7yb2kbas0bbpl3d0hdki2i8";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/wakatime-mode";
- license = lib.licenses.free;
- };
- }) {};
- wakib-keys = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "wakib-keys";
- ename = "wakib-keys";
- version = "20180818.1129";
- src = fetchFromGitHub {
- owner = "darkstego";
- repo = "wakib-keys";
- rev = "a858979620bd22801e5ce214dd46d69b19ccd357";
- sha256 = "1zvjwm4qr82zhp4nb9mjzklqxa2iasw3i623fwp9a2fzn3c2cyx5";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/b8ef5ae0dcb92e1cf019be3d53ab9b47d89f45bd/recipes/wakib-keys";
- sha256 = "1cgd15zwl15k2bxy3by17pphh6x1z8lanwkfjy4qyp5sxkjvw1cl";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/wakib-keys";
- license = lib.licenses.free;
- };
- }) {};
- walkclj = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , parseclj
- , treepy }:
- melpaBuild {
- pname = "walkclj";
- ename = "walkclj";
- version = "20180718.200";
- src = fetchFromGitHub {
- owner = "plexus";
- repo = "walkclj";
- rev = "2e54fa813b11d1a87c890cdf117f30165a193024";
- sha256 = "0bgvniw3ibcjsmzwrndg6pxwbpnpnxsb8ijs2gxg5kbm1hqqly32";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/44472b35938fe70d4cb3d15397495fe321fcd464/recipes/walkclj";
- sha256 = "0m971dlazildhgj8jqg4x679i6s6p80mbpri7l24ynxk45wix22m";
- name = "recipe";
- };
- packageRequires = [ emacs parseclj treepy ];
- meta = {
- homepage = "https://melpa.org/#/walkclj";
- license = lib.licenses.free;
- };
- }) {};
- wand = callPackage ({ dash
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , s }:
- melpaBuild {
- pname = "wand";
- ename = "wand";
- version = "20180815.331";
- src = fetchFromGitHub {
- owner = "cmpitg";
- repo = "wand";
- rev = "5c0d4833a3afc57e4b2398250139729cc9131d16";
- sha256 = "1d7zv5mk9mqlp40hzbf62y080a2aqvjw4x7y9frh33217r8h5b6i";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/38be840bbb32094b753ec169b717a70817006655/recipes/wand";
- sha256 = "052zq5dp800hynd9fb6c645kjb9rp3bpkz41ifazjnx4h4864r0l";
- name = "recipe";
- };
- packageRequires = [ dash s ];
- meta = {
- homepage = "https://melpa.org/#/wand";
- license = lib.licenses.free;
- };
- }) {};
wandbox = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -104655,108 +54117,6 @@
license = lib.licenses.free;
};
}) {};
- wanderlust = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , semi }:
- melpaBuild {
- pname = "wanderlust";
- ename = "wanderlust";
- version = "20190406.601";
- src = fetchFromGitHub {
- owner = "wanderlust";
- repo = "wanderlust";
- rev = "6528a0032342ec7bf6a95dda9b60d67292eaadfc";
- sha256 = "0pdqz0ypdxr90zlna7jhcvvxbqjn367amxh91f76npvrcpi1s016";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/426172b72026d1adeb1bf3fcc6b0407875047333/recipes/wanderlust";
- sha256 = "0lq7fvqc0isv49lcm7ql6prc3hpcj5cx4kf8f4gcnfv5k8159cq9";
- name = "recipe";
- };
- packageRequires = [ semi ];
- meta = {
- homepage = "https://melpa.org/#/wanderlust";
- license = lib.licenses.free;
- };
- }) {};
- warm-night-theme = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "warm-night-theme";
- ename = "warm-night-theme";
- version = "20161101.728";
- src = fetchFromGitHub {
- owner = "mswift42";
- repo = "warm-night-theme";
- rev = "020f084d23409b5035150508ba6e57c2509edd64";
- sha256 = "1jmjyx06p0cvqi1vlg5px2g965q9pgi3j61msxjf5skzw53vlc88";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/312e3298d51b8ed72028df34dbd7620cdd03d8dd/recipes/warm-night-theme";
- sha256 = "1nrjkrr64rry6fjya22b0lcs0f8a2ijvr87192z311y9mw5rvb29";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/warm-night-theme";
- license = lib.licenses.free;
- };
- }) {};
- watch-buffer = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "watch-buffer";
- ename = "watch-buffer";
- version = "20120331.1344";
- src = fetchFromGitHub {
- owner = "mjsteger";
- repo = "watch-buffer";
- rev = "a01cf15608c5bf91df253104053041ca1afdf411";
- sha256 = "1gbhcvysrgg3xxyvkl3lkyafqmzxhfg5nb7k3zwlvmxmndnzssg8";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/watch-buffer";
- sha256 = "05f58kg05kfl4srwwjaf7w9jml50yx6bn4x8m1npswp882dsjyh9";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/watch-buffer";
- license = lib.licenses.free;
- };
- }) {};
- wavefront-obj-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "wavefront-obj-mode";
- ename = "wavefront-obj-mode";
- version = "20170808.1016";
- src = fetchFromGitHub {
- owner = "abend";
- repo = "wavefront-obj-mode";
- rev = "34027915de6496460d8e68b5991dd24d47d54859";
- sha256 = "0yj4wb5sdsbh3gp0sh2ajrrn6s8vg492809g4gxkxp30jhr6xc9q";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/d48e4fdc6c7079a1ca70c1e879473a98c11bbe6c/recipes/wavefront-obj-mode";
- sha256 = "0qqismh6g2fvi45q2q52lq0n9nrh95wgamlsy5j4rx4syfgzxbrk";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/wavefront-obj-mode";
- license = lib.licenses.free;
- };
- }) {};
wc-goal-mode = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -104832,31 +54192,6 @@
license = lib.licenses.free;
};
}) {};
- wdl-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "wdl-mode";
- ename = "wdl-mode";
- version = "20180831.1246";
- src = fetchFromGitHub {
- owner = "zhanxw";
- repo = "wdl-mode";
- rev = "cef86e5afc136ae5ad9324cd6e6d6f860b889bcf";
- sha256 = "0j7sv3dcpq2fvcip9834v6k8q1d8bpnbxnvz1g691lmc58z1a86a";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/8cf1f20913d765ae36ecc2c9a69470ff51124e56/recipes/wdl-mode";
- sha256 = "1zhrs0cdsr8mxh9zn8cy6inzxcygk0lgsyw1d190253v1kk6072i";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/wdl-mode";
- license = lib.licenses.free;
- };
- }) {};
weather-metno = callPackage ({ cl-lib ? null
, emacs
, fetchFromGitHub
@@ -104884,33 +54219,6 @@
license = lib.licenses.free;
};
}) {};
- web = callPackage ({ dash
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , s }:
- melpaBuild {
- pname = "web";
- ename = "web";
- version = "20141231.1201";
- src = fetchFromGitHub {
- owner = "nicferrier";
- repo = "emacs-web";
- rev = "483188dac4bc6b409b985c9dae45f3324a425efd";
- sha256 = "03xcadplw1hg5hxw6bfrhw5xkkxk3i4105f114c6m3d2525jq4y5";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/web";
- sha256 = "141idn49b7x7llz249zbg2yq8snjxpmlpchsd3n1axlrbmx6pfpz";
- name = "recipe";
- };
- packageRequires = [ dash s ];
- meta = {
- homepage = "https://melpa.org/#/web";
- license = lib.licenses.free;
- };
- }) {};
web-beautify = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -105014,32 +54322,6 @@
license = lib.licenses.free;
};
}) {};
- web-narrow-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , web-mode }:
- melpaBuild {
- pname = "web-narrow-mode";
- ename = "web-narrow-mode";
- version = "20170406.1910";
- src = fetchFromGitHub {
- owner = "Qquanwei";
- repo = "web-narrow-mode";
- rev = "b25fae07844875d5b62d14b98442c88817b7e139";
- sha256 = "1yk390g41yxh84lsxnbf72x67yik6hqv20magxlazrfrwngvk0cx";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/a910da9e0566344d4b195423b5f270cb2bdcc1e5/recipes/web-narrow-mode";
- sha256 = "09k3xp4l235wrffl7a4026wpikxhp10fh3182dlp4pa4wr2vzipi";
- name = "recipe";
- };
- packageRequires = [ web-mode ];
- meta = {
- homepage = "https://melpa.org/#/web-narrow-mode";
- license = lib.licenses.free;
- };
- }) {};
web-search = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -105066,85 +54348,6 @@
license = lib.licenses.free;
};
}) {};
- web-server = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "web-server";
- ename = "web-server";
- version = "20190309.1813";
- src = fetchFromGitHub {
- owner = "eschulte";
- repo = "emacs-web-server";
- rev = "cafa5b7582c57252a0884b2c33da9b18fb678713";
- sha256 = "1c0lfqmbs5hvz3fh3c8wgp6ipwmxrwx9xj264bjpj3phixd5419y";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/70e724b4e6c76d0299d5ea8d2211f48c1c611afe/recipes/web-server";
- sha256 = "1f0iyvwq1kq3zfxx2v596cmah7jfk2a04g2rjllbgxxnzwms29z3";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/web-server";
- license = lib.licenses.free;
- };
- }) {};
- webkit-color-picker = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , posframe }:
- melpaBuild {
- pname = "webkit-color-picker";
- ename = "webkit-color-picker";
- version = "20180325.36";
- src = fetchFromGitHub {
- owner = "osener";
- repo = "emacs-webkit-color-picker";
- rev = "765cac80144cad4bc0bf59025ea0199f0486f737";
- sha256 = "0a6nirdn1l7cymjycbns38ja9an1z4l5lwjk5h428aly3pmkvdqj";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/af9d2e39385c6833eff6b7c7e5a039238563c00f/recipes/webkit-color-picker";
- sha256 = "1i9244zghabyavxhz86d22fn40qspzdn2sjql8pl3mm8ks7a49a3";
- name = "recipe";
- };
- packageRequires = [ emacs posframe ];
- meta = {
- homepage = "https://melpa.org/#/webkit-color-picker";
- license = lib.licenses.free;
- };
- }) {};
- weblogger = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , xml-rpc }:
- melpaBuild {
- pname = "weblogger";
- ename = "weblogger";
- version = "20110926.918";
- src = fetchFromGitHub {
- owner = "hexmode";
- repo = "weblogger-el";
- rev = "40cfbfc69be6a619173804441db2f407e3fa1731";
- sha256 = "1z7ld9d0crwdh778fyaapx75vpnlnslsh9nf07ywkylhz4w68yyv";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/e8ccb10a5d1f4db3b20f96dee3c14ee64f4674e2/recipes/weblogger";
- sha256 = "0k0l715lnqb0a4hlkfjkyhr8i1jaml8z2xzhal7ryhjgvf8xinvs";
- name = "recipe";
- };
- packageRequires = [ xml-rpc ];
- meta = {
- homepage = "https://melpa.org/#/weblogger";
- license = lib.licenses.free;
- };
- }) {};
webpaste = callPackage ({ cl-lib ? null
, emacs
, fetchFromGitHub
@@ -105199,31 +54402,6 @@
license = lib.licenses.free;
};
}) {};
- wedge-ws = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "wedge-ws";
- ename = "wedge-ws";
- version = "20140714.1449";
- src = fetchFromGitHub {
- owner = "aes";
- repo = "wedge-ws";
- rev = "4669115f02d9c6fee067cc5369bb38c0f9db88b2";
- sha256 = "19hgb5knqqc4rb8yl8s604xql8ar6m9r4d379cfakn15jvwqnl98";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/42fb11fe717b5fe73f4a6fa4e199ef4c58a85eb2/recipes/wedge-ws";
- sha256 = "07i2dr807np4fwq3ryxlw11vbc1sik1iv7x5740q258jyc9zfgll";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/wedge-ws";
- license = lib.licenses.free;
- };
- }) {};
weechat = callPackage ({ cl-lib ? null
, emacs
, fetchFromGitHub
@@ -105253,34 +54431,6 @@
license = lib.licenses.free;
};
}) {};
- weechat-alert = callPackage ({ alert
- , cl-lib ? null
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , weechat }:
- melpaBuild {
- pname = "weechat-alert";
- ename = "weechat-alert";
- version = "20160416.548";
- src = fetchFromGitHub {
- owner = "Kungi";
- repo = "weechat-alert";
- rev = "a8fd557c8f335322f132c1c6c08b6741d6394e2e";
- sha256 = "1hkhim2jfdywx6ks4qfcizycp5qsx4ms6929kbgmzzb8i7j380x6";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/7a69ad48eabb166f66e6eb5c5cdc75aefc8b989f/recipes/weechat-alert";
- sha256 = "026hkddvd4a6wy7s8s0lklw8b99fpjawdgi7amvpcrn79ylwbf22";
- name = "recipe";
- };
- packageRequires = [ alert cl-lib weechat ];
- meta = {
- homepage = "https://melpa.org/#/weechat-alert";
- license = lib.licenses.free;
- };
- }) {};
weibo = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -105435,31 +54585,6 @@
license = lib.licenses.free;
};
}) {};
- what-the-commit = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "what-the-commit";
- ename = "what-the-commit";
- version = "20150901.616";
- src = fetchFromGitHub {
- owner = "danielbarbarito";
- repo = "what-the-commit.el";
- rev = "42604410cfd5be715c8aa730aef4673773454e8b";
- sha256 = "00fnjjlmc64bqjzmyprscfqr8fa1jbzfj6xjvm19an2qhnzh126q";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/6d22725c2fce506c659bd33aabca182be0048905/recipes/what-the-commit";
- sha256 = "0nnyb6hq6r21wf1x3q41ab48b3dmcz5lyli771a59dk1gs8qpgak";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/what-the-commit";
- license = lib.licenses.free;
- };
- }) {};
which-key = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -105540,58 +54665,6 @@
license = lib.licenses.free;
};
}) {};
- white-sand-theme = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "white-sand-theme";
- ename = "white-sand-theme";
- version = "20151117.848";
- src = fetchFromGitHub {
- owner = "mswift42";
- repo = "white-sand-theme";
- rev = "97621edd69267dd143760d94393db2c2558c9ea4";
- sha256 = "0sh92g5vd518f80klvljqkjpw4ji909439dpc3sfaccf5jiwn9xn";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/b124575c4a4f783b6726d0526b83e67b4ad65cc9/recipes/white-sand-theme";
- sha256 = "19qsiic6yf7g60ygjmw7kg1i28nqpm3zja8cmdh33ny2bbkwxsz5";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/white-sand-theme";
- license = lib.licenses.free;
- };
- }) {};
- white-theme = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "white-theme";
- ename = "white-theme";
- version = "20160917.1043";
- src = fetchFromGitHub {
- owner = "anler";
- repo = "white-theme.el";
- rev = "e9e6d5b9d43da6eb15e86f5fbc8b1ba83abe8c78";
- sha256 = "1yqfq1gzkrw79myvj16nfi30ynfyz8yrpbzjcj8nhsc5rfrrmym2";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/white-theme";
- sha256 = "04l5hjhd465w9clrqc4dr8bx8hj4i9dx4nfr9hympgv101bpgy4x";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/white-theme";
- license = lib.licenses.free;
- };
- }) {};
whitespace-cleanup-mode = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -105668,31 +54741,6 @@
license = lib.licenses.free;
};
}) {};
- wide-column = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "wide-column";
- ename = "wide-column";
- version = "20170925.913";
- src = fetchFromGitHub {
- owner = "phillord";
- repo = "wide-column";
- rev = "ce9ef4675485a7bea381077866368ef875226b10";
- sha256 = "0qh8hy4jl59bfg4323a8h4q4a78gn4hsglfk2h23hqssbv4mhsp2";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/8d29def44ae42dc4b60c1d254a57572bd09faf51/recipes/wide-column";
- sha256 = "1kyyvq9fgaypvhiy9vbvr99xsac5vhylkbjsxn5fhylyc5n867sb";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/wide-column";
- license = lib.licenses.free;
- };
- }) {};
widget-mvc = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -105718,35 +54766,6 @@
license = lib.licenses.free;
};
}) {};
- widgetjs = callPackage ({ fetchFromGitHub
- , fetchurl
- , js2-mode
- , js2-refactor
- , lib
- , makey
- , melpaBuild
- , s }:
- melpaBuild {
- pname = "widgetjs";
- ename = "widgetjs";
- version = "20160719.804";
- src = fetchFromGitHub {
- owner = "foretagsplatsen";
- repo = "emacs-js";
- rev = "a1e91bdcecdea50c80f5ff87f7a4f7a2c249713e";
- sha256 = "1gr430rf8k282ra587qnbgwvccg47ar1n09m6czig5splhnf0086";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/78d7a15152f45a193384741fa00d0649c4bba91e/recipes/widgetjs";
- sha256 = "0y5h1ag2m7w47l4nx4d18yz3fvd411rm1h5w7zz4xh67bnx4zyy1";
- name = "recipe";
- };
- packageRequires = [ js2-mode js2-refactor makey s ];
- meta = {
- homepage = "https://melpa.org/#/widgetjs";
- license = lib.licenses.free;
- };
- }) {};
wiki-nav = callPackage ({ button-lock
, fetchFromGitHub
, fetchurl
@@ -105774,60 +54793,6 @@
license = lib.licenses.free;
};
}) {};
- wiki-summary = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "wiki-summary";
- ename = "wiki-summary";
- version = "20181010.1124";
- src = fetchFromGitHub {
- owner = "jozefg";
- repo = "wiki-summary.el";
- rev = "fa41ab6e50b3b80e54148af9d4bac18fd0405000";
- sha256 = "0qcnqwiylkkb7132bzra49k7jg8kq13jif8096vpg4xzpcq5lpj2";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/31877f182ab82fd5bb73ec4ddd8526a032d9edf9/recipes/wiki-summary";
- sha256 = "1hiyi3w6rvins8hfxd96bgpihxarmv192q96sadqcwshcqi14zmw";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/wiki-summary";
- license = lib.licenses.free;
- };
- }) {};
- wilt = callPackage ({ dash
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , s }:
- melpaBuild {
- pname = "wilt";
- ename = "wilt";
- version = "20180220.54";
- src = fetchFromGitHub {
- owner = "sixty-north";
- repo = "emacs-wilt";
- rev = "04dbe37fa35d0b24c791421785d2c97a8cbfe2cc";
- sha256 = "197kqp22pyy1in2rq063mahvrf00vrfvgnfkqp0zy7hpkhiiqvim";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/eea4f2ca8b4f9ea93cc02151fdda6cfee5b68b70/recipes/wilt";
- sha256 = "0nw6zr06zq60j72qfjmbqrxyz022fnisb0bsh6xmlnd1k1kqlrz6";
- name = "recipe";
- };
- packageRequires = [ dash emacs s ];
- meta = {
- homepage = "https://melpa.org/#/wilt";
- license = lib.licenses.free;
- };
- }) {};
win-switch = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -105853,31 +54818,6 @@
license = lib.licenses.free;
};
}) {};
- windata = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "windata";
- ename = "windata";
- version = "20090830.340";
- src = fetchFromGitHub {
- owner = "emacsorphanage";
- repo = "windata";
- rev = "a723fc446ceaec23d5f29ecc8245d94c99d91625";
- sha256 = "0y8yw5hazsir5kjskrh4mr63mmz87dc7yy5ddmlwpmn03wanqpha";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/84f836338818946a6bb31d35d6ae959571128ed5/recipes/windata";
- sha256 = "1mah2vy46pxwjd6c6ac14d2qfcixs2yrgwmzmisnfgsvprdlxryb";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/windata";
- license = lib.licenses.free;
- };
- }) {};
window-end-visible = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -105903,31 +54843,6 @@
license = lib.licenses.free;
};
}) {};
- window-jump = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "window-jump";
- ename = "window-jump";
- version = "20170809.1508";
- src = fetchFromGitHub {
- owner = "chumpage";
- repo = "chumpy-windows";
- rev = "6bdb51e9a346907d60a9625f6180bddd06be6674";
- sha256 = "1wkyvfqmf24c8kb162pwi6wcm88bzf0x9mxljzkx0s8bq9aliny6";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/d44fc32e12f00bbaa799b4054e9ff0fc0d3bfbfb/recipes/window-jump";
- sha256 = "1gmqb7j5fb3q3krgx7arrln5nvyg9vcpph6wlxj6py679wfa3lwr";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/window-jump";
- license = lib.licenses.free;
- };
- }) {};
window-layout = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -105953,31 +54868,6 @@
license = lib.licenses.free;
};
}) {};
- window-number = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "window-number";
- ename = "window-number";
- version = "20170731.1851";
- src = fetchFromGitHub {
- owner = "nikolas";
- repo = "window-number";
- rev = "d41722de646ffeb3f70d26e4a86a5a1ba5c6be87";
- sha256 = "1ifs7zp8c5m9da5dz0y4cq7pgqgdkz63v00ib07xdycnfjp4w17i";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/74523af6e22ebae2f5fe7c4da4e8af8fac5fa074/recipes/window-number";
- sha256 = "1ivd701h6q48i263fxxi44haacaz8cjg562ry8dxd10rbhhsjsq0";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/window-number";
- license = lib.licenses.free;
- };
- }) {};
window-numbering = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -106056,85 +54946,6 @@
license = lib.licenses.free;
};
}) {};
- windwow = callPackage ({ cl-lib ? null
- , dash
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "windwow";
- ename = "windwow";
- version = "20170815.1848";
- src = fetchFromGitHub {
- owner = "vijumathew";
- repo = "windwow";
- rev = "77bad26f651744b68d31b389389147014d250f23";
- sha256 = "0vbmmf8wm76k389g5ncs0grwlpwp3glpwvhdi5dfxaqcp2phaaad";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/12aba18872021ce0affa96c46a17353c7d073ca2/recipes/windwow";
- sha256 = "0cbkp98pwzj484akdbidvdz4kqxv6ix6paimpxnag6fffciq245h";
- name = "recipe";
- };
- packageRequires = [ cl-lib dash emacs ];
- meta = {
- homepage = "https://melpa.org/#/windwow";
- license = lib.licenses.free;
- };
- }) {};
- winnow = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "winnow";
- ename = "winnow";
- version = "20170903.506";
- src = fetchFromGitHub {
- owner = "dgtized";
- repo = "winnow.el";
- rev = "9ea0ac309d6a7a4aedb2647a13e9106a3b59c46d";
- sha256 = "0zsnd03mydzhskpcvffmlwbsi28dq0akz1nph7idn4zqca8sx2ia";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/58891c2057ec834f999e3bf82af15e0617a4d4cf/recipes/winnow";
- sha256 = "07kwjdmvzgvg7gc53dv10jfi212m0pimzrhiga38lrqrnrw631m0";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/winnow";
- license = lib.licenses.free;
- };
- }) {};
- winpoint = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "winpoint";
- ename = "winpoint";
- version = "20131023.1013";
- src = fetchFromGitHub {
- owner = "jorgenschaefer";
- repo = "winpoint";
- rev = "b32ab55f7b8797b9b042a8a89d89d6f79bc356a9";
- sha256 = "0qbsmqg4mh20k2lf7j92mc8p8qkvjc1a58klhqivpdl60z906z2a";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/665e24e490618c7caeae4a9d17d1f614dc0a2617/recipes/winpoint";
- sha256 = "10ji7xd9ipmy6c2qxljqdxgqf5sb8h7lwz43mr6ixbn7v1b7pp6w";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/winpoint";
- license = lib.licenses.free;
- };
- }) {};
winring = callPackage ({ fetchFromGitLab
, fetchurl
, lib
@@ -106187,30 +54998,6 @@
license = lib.licenses.free;
};
}) {};
- wisp-mode = callPackage ({ fetchhg
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "wisp-mode";
- ename = "wisp-mode";
- version = "20180520.58";
- src = fetchhg {
- url = "https://bitbucket.com/ArneBab/wisp";
- rev = "62d6a170aefd";
- sha256 = "1hz5f70s6zi1mnz8si2zwj8n15jfqgqn5ag06h3x50w53hvzk41p";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5b7972602399f9df9139cff177e38653bb0f43ed/recipes/wisp-mode";
- sha256 = "10zkp1qbvl8dmxij7zz4p1fixs3891xr1nr57vyb3llar9fgzglc";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/wisp-mode";
- license = lib.licenses.free;
- };
- }) {};
wispjs-mode = callPackage ({ clojure-mode
, fetchFromGitHub
, fetchurl
@@ -106264,33 +55051,6 @@
license = lib.licenses.free;
};
}) {};
- with-namespace = callPackage ({ dash
- , fetchFromGitHub
- , fetchurl
- , lib
- , loop
- , melpaBuild }:
- melpaBuild {
- pname = "with-namespace";
- ename = "with-namespace";
- version = "20130407.1122";
- src = fetchFromGitHub {
- owner = "Wilfred";
- repo = "with-namespace.el";
- rev = "36828a40428c8e53c117f2df830b2f7a59ddd306";
- sha256 = "0qq8ckk5w3hlm4wihhnlpn75gij62aa2nafmvin7q8i454pxbg7a";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/091dcc3775ec2137cb61d66df4e72aca4900897a/recipes/with-namespace";
- sha256 = "1199k1xvvv7ald6ywrh2sfpw2v42ckpcsw6mcj617bg3b5m7770i";
- name = "recipe";
- };
- packageRequires = [ dash loop ];
- meta = {
- homepage = "https://melpa.org/#/with-namespace";
- license = lib.licenses.free;
- };
- }) {};
with-simulated-input = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -106397,32 +55157,6 @@
license = lib.licenses.free;
};
}) {};
- wolfram-mode = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "wolfram-mode";
- ename = "wolfram-mode";
- version = "20180306.1613";
- src = fetchFromGitHub {
- owner = "kawabata";
- repo = "wolfram-mode";
- rev = "be680190cac6ccf579dbce107deaae495928d1b3";
- sha256 = "1cvdw28gvhbr9l65xkv8ld12rb0pcf53jd55gns2b0abz1lg1jc4";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/40ded2302e413e233d867caa4776c54a778b8b99/recipes/wolfram-mode";
- sha256 = "0rc39vvpyhpn0m52i4hs23j6avqfddmrkhjqg339apfq7z35fpli";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/wolfram-mode";
- license = lib.licenses.free;
- };
- }) {};
wonderland = callPackage ({ dash
, dash-functional
, emacs
@@ -106479,32 +55213,6 @@
license = lib.licenses.free;
};
}) {};
- wordnut = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "wordnut";
- ename = "wordnut";
- version = "20180312.2143";
- src = fetchFromGitHub {
- owner = "gromnitsky";
- repo = "wordnut";
- rev = "feac531404041855312c1a046bde7ea18c674915";
- sha256 = "1jl0b6g64a9w0q7bfvwha67vgws5xd15b7mkfyb5gkz3pymqhfxn";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/321c5e171eb4da85980968ac3c8ef4300101c0b1/recipes/wordnut";
- sha256 = "1gqmjb2f9izra0x9ds1jyk7h204qsll6viwkvdnmxczyyc0wx44n";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/wordnut";
- license = lib.licenses.free;
- };
- }) {};
wordsmith-mode = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -106558,31 +55266,6 @@
license = lib.licenses.free;
};
}) {};
- workgroups = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "workgroups";
- ename = "workgroups";
- version = "20110726.941";
- src = fetchFromGitHub {
- owner = "tlh";
- repo = "workgroups.el";
- rev = "9572b3492ee09054dc329f64ed846c962b395e39";
- sha256 = "0q32z54qafj8ap3ybx82i3fm1msmzwvpxgmkaglzhi8nccgzbn2n";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/585d3f522920b41845294af50b1da99dff256f8d/recipes/workgroups";
- sha256 = "1v01yr3lk6l0qn80i3r8fq3di0a8bmqjyhwx19hcgiap57xl80h8";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/workgroups";
- license = lib.licenses.free;
- };
- }) {};
workgroups2 = callPackage ({ anaphora
, cl-lib ? null
, dash
@@ -106612,58 +55295,6 @@
license = lib.licenses.free;
};
}) {};
- world-time-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "world-time-mode";
- ename = "world-time-mode";
- version = "20140627.107";
- src = fetchFromGitHub {
- owner = "nicferrier";
- repo = "emacs-world-time-mode";
- rev = "ce7a3b45c87eb24cfe61eee453175d64f741d7cc";
- sha256 = "0i00xm4rynbp2v3gm6h46ajgj8h8nxnsjh6db1659b0hbpnah0ji";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/f1429650400baf2b1523b5556eaf6a2178d515d4/recipes/world-time-mode";
- sha256 = "10gdlz4l9iqw1zdlk5i3knysn36iqxdh3xabjq8kq04jkl7i36dl";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/world-time-mode";
- license = lib.licenses.free;
- };
- }) {};
- wotd = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , org }:
- melpaBuild {
- pname = "wotd";
- ename = "wotd";
- version = "20170328.1248";
- src = fetchFromGitHub {
- owner = "cute-jumper";
- repo = "emacs-word-of-the-day";
- rev = "d2937a3d91e014f8028a1f33d21c18cc0b065a64";
- sha256 = "0nwq5ymj9kx1fx3kfc789nkd80gwzljwmk7xxzzsrdrv47gm047m";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/7a52690a9bae634825bdfb5b6b17e5faccb93e13/recipes/wotd";
- sha256 = "145knl4n35kpqqzqkz1vd18d619nw011d93f8qp5h82xm92p3sb5";
- name = "recipe";
- };
- packageRequires = [ emacs org ];
- meta = {
- homepage = "https://melpa.org/#/wotd";
- license = lib.licenses.free;
- };
- }) {};
wrap-region = callPackage ({ dash
, fetchFromGitHub
, fetchurl
@@ -106690,35 +55321,6 @@
license = lib.licenses.free;
};
}) {};
- writefreely = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , org
- , ox-gfm
- , request }:
- melpaBuild {
- pname = "writefreely";
- ename = "writefreely";
- version = "20190326.835";
- src = fetchFromGitHub {
- owner = "dangom";
- repo = "writefreely.el";
- rev = "61296a15f31aef92972ffa6865edadaf4f4127ca";
- sha256 = "19ksdcnm0rm1imzysl9lb3nx5ysnfyx07krqghxs8kbd9c5zvlyc";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/55ea1ad03ce5b5178435b8042be383065795ee71/recipes/writefreely";
- sha256 = "1lvar4kmzq3x7nmidklcryqscb5xzvkzbyn59a8ns0bml5sfrqyj";
- name = "recipe";
- };
- packageRequires = [ emacs org ox-gfm request ];
- meta = {
- homepage = "https://melpa.org/#/writefreely";
- license = lib.licenses.free;
- };
- }) {};
writegood-mode = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -106874,111 +55476,6 @@
license = lib.licenses.free;
};
}) {};
- wwtime = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "wwtime";
- ename = "wwtime";
- version = "20151122.810";
- src = fetchFromGitHub {
- owner = "ndw";
- repo = "wwtime";
- rev = "d04d8fa814b5d3644efaeb28f25520ada69acbbd";
- sha256 = "0ba193ilqmp7l35hhzfym4kvbnj9h57m8mwsxdj6rdj2cwrifx8r";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/28f034fbabe9de76e2e4ae44be8c8240b08f0535/recipes/wwtime";
- sha256 = "0n37k23lkjgaj9wxnr41yk3mwvy62mc9im5l86czqmw5gy4l63ic";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/wwtime";
- license = lib.licenses.free;
- };
- }) {};
- www-synonyms = callPackage ({ cl-lib ? null
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , request }:
- melpaBuild {
- pname = "www-synonyms";
- ename = "www-synonyms";
- version = "20170128.1451";
- src = fetchFromGitHub {
- owner = "spebern";
- repo = "www-synonyms";
- rev = "7e37ea35064ff31c9945f0198a653647d408c936";
- sha256 = "0l4fvq5zdzqvlwxqgqbfx9x0aimvk4x3la9yz9gw3vvj1rwf340i";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/2fe69ac09c3e24af9c4e24308e57d7c3c3425096/recipes/www-synonyms";
- sha256 = "0rp5p26hd67k4dsb40hj7jv24i9wncaay88dmiqla48843j4ymgh";
- name = "recipe";
- };
- packageRequires = [ cl-lib request ];
- meta = {
- homepage = "https://melpa.org/#/www-synonyms";
- license = lib.licenses.free;
- };
- }) {};
- x-path-walker = callPackage ({ fetchFromGitHub
- , fetchurl
- , helm-core
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "x-path-walker";
- ename = "x-path-walker";
- version = "20160922.1135";
- src = fetchFromGitHub {
- owner = "Lompik";
- repo = "x-path-walker";
- rev = "3b01dbd7a039c6c84fdf8c8ee53ba72090ee950a";
- sha256 = "1gb3lnl3gvckbakc4fy22fcvif3xdfkdaw334xmp33phjb8gjqvj";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/35763febad20f29320d459394f810668db6c3353/recipes/x-path-walker";
- sha256 = "1k72c0i17k31p404nkzqkw25cpcfk66bmd0vjzwg34cnwcgfhnjg";
- name = "recipe";
- };
- packageRequires = [ helm-core ];
- meta = {
- homepage = "https://melpa.org/#/x-path-walker";
- license = lib.licenses.free;
- };
- }) {};
- x509-mode = callPackage ({ cl-lib ? null
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "x509-mode";
- ename = "x509-mode";
- version = "20180921.103";
- src = fetchFromGitHub {
- owner = "jobbflykt";
- repo = "x509-mode";
- rev = "9eb24c8721dcad9888b70213d06d770bc2386db7";
- sha256 = "1gr099bn4qn2b5jasbs4r04pf6wqsnpf2632vzvshzm9nkz4qnhg";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/27145423eb4e68e006ef96868a35b99d119a3099/recipes/x509-mode";
- sha256 = "15k3pxj3a2vaf64cl2xrzzlvzbqzqc29qyfd8brhq6yc69snr0vj";
- name = "recipe";
- };
- packageRequires = [ cl-lib emacs ];
- meta = {
- homepage = "https://melpa.org/#/x509-mode";
- license = lib.licenses.free;
- };
- }) {};
x86-lookup = callPackage ({ cl-lib ? null
, emacs
, fetchFromGitHub
@@ -107006,265 +55503,6 @@
license = lib.licenses.free;
};
}) {};
- xah-css-mode = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "xah-css-mode";
- ename = "xah-css-mode";
- version = "20180629.107";
- src = fetchFromGitHub {
- owner = "xahlee";
- repo = "xah-css-mode";
- rev = "9293a1a21cb7c2a6fb4ae9af0e581f30d2e45016";
- sha256 = "0wlci3z71qk3l19pkxddd4f3w9mg2si9ab4l3da381hnpi6d3iyp";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/05eed39bae37cc8359d2cc678052cbbcc946e379/recipes/xah-css-mode";
- sha256 = "1kkwfyf94v3ni3d4szy28v49p6f3hy8ww9mlris2vvgc726wy6hr";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/xah-css-mode";
- license = lib.licenses.free;
- };
- }) {};
- xah-elisp-mode = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "xah-elisp-mode";
- ename = "xah-elisp-mode";
- version = "20190124.2246";
- src = fetchFromGitHub {
- owner = "xahlee";
- repo = "xah-elisp-mode";
- rev = "a09c51e450bf4b39bdc3f4063c2946baec7ae3b1";
- sha256 = "0hpdm6qns2i5zpavqq6zd7dyl9lxsxyic52jzjfisqv3gjrz8zpp";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/05eed39bae37cc8359d2cc678052cbbcc946e379/recipes/xah-elisp-mode";
- sha256 = "0cl07hw1hd3hj7wrzkh20m8vcs7mqsajxjmnlbnk2yg927yyijij";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/xah-elisp-mode";
- license = lib.licenses.free;
- };
- }) {};
- xah-find = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "xah-find";
- ename = "xah-find";
- version = "20190314.1339";
- src = fetchFromGitHub {
- owner = "xahlee";
- repo = "xah-find";
- rev = "a39f1ff9a7cf56e92b56c6f179741569b9172a48";
- sha256 = "16d2dh08dxdm06ik3sfx00filxqpy646vv1qh5kb36zs8ydzjg3z";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/05eed39bae37cc8359d2cc678052cbbcc946e379/recipes/xah-find";
- sha256 = "1d3x9yhm7my3yhvgqnjxr2v28g5w1h4ri40sy6dqcx09bjf3jhyq";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/xah-find";
- license = lib.licenses.free;
- };
- }) {};
- xah-fly-keys = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "xah-fly-keys";
- ename = "xah-fly-keys";
- version = "20190222.2316";
- src = fetchFromGitHub {
- owner = "xahlee";
- repo = "xah-fly-keys";
- rev = "cc8b3bc26998bc29f82e87667c0d1ef90894ff66";
- sha256 = "19q20mp5gzkm0ch5wz1jxajkb8cqmknsldlzb7jsa8hzyvl2mb7m";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/05eed39bae37cc8359d2cc678052cbbcc946e379/recipes/xah-fly-keys";
- sha256 = "0bzfz8q7yd1jai0pgngxwjp82nsfx5ivn24cb20vc5r8hhzj17cs";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/xah-fly-keys";
- license = lib.licenses.free;
- };
- }) {};
- xah-get-thing = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "xah-get-thing";
- ename = "xah-get-thing";
- version = "20170821.353";
- src = fetchFromGitHub {
- owner = "xahlee";
- repo = "xah-get-thing-or-selection";
- rev = "e3ef069ea9fea3a092689d45c94c6211b51d0ea4";
- sha256 = "0z9pflz99p2i7czccpzvw7bkbshfycpb6js9n8a12yhc1ndbz6z0";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/05eed39bae37cc8359d2cc678052cbbcc946e379/recipes/xah-get-thing";
- sha256 = "0m61bmfgqy19h4ivw655mqj547ga8hrpaswcp48hx00hx8mqzcvg";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/xah-get-thing";
- license = lib.licenses.free;
- };
- }) {};
- xah-lookup = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "xah-lookup";
- ename = "xah-lookup";
- version = "20181225.1142";
- src = fetchFromGitHub {
- owner = "xahlee";
- repo = "lookup-word-on-internet";
- rev = "2cafbf3605a8f2ac4c56392c5b1f75adc3b11f24";
- sha256 = "1xr2fp6dylv098g7m7x31j7jllr87545snab3qw5r32rzsa7fswz";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/05eed39bae37cc8359d2cc678052cbbcc946e379/recipes/xah-lookup";
- sha256 = "0z0h1myw6wmybyd0z2lw4l59vgm6q6kh492q77kf3s0fssc0facc";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/xah-lookup";
- license = lib.licenses.free;
- };
- }) {};
- xah-math-input = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "xah-math-input";
- ename = "xah-math-input";
- version = "20190206.858";
- src = fetchFromGitHub {
- owner = "xahlee";
- repo = "xah-math-input";
- rev = "af787f87815b85d56c35bbe0f22e03a31c8e670d";
- sha256 = "05fqjyzz6c0nclhqc7qxs3hg99d3yxb3qjzn1wc26m6jcmm2l6zd";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/05eed39bae37cc8359d2cc678052cbbcc946e379/recipes/xah-math-input";
- sha256 = "1afikjk46sjf97fb5fc8h63h7b9af010wxhsbpnmabsb4j72rx5a";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/xah-math-input";
- license = lib.licenses.free;
- };
- }) {};
- xah-reformat-code = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "xah-reformat-code";
- ename = "xah-reformat-code";
- version = "20170821.411";
- src = fetchFromGitHub {
- owner = "xahlee";
- repo = "xah-reformat-code";
- rev = "7fec8b28e46b8cc2813fac5149e3bbb56c0aa6b1";
- sha256 = "0mz47laig0p7fwwiv66x60f5jg0kh8zvjd1vg3nnn3xvk37lv2cw";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/05eed39bae37cc8359d2cc678052cbbcc946e379/recipes/xah-reformat-code";
- sha256 = "1sj407nbh4x586hvsq4ycr0ahhxin0wgfwdj0551cz8793wvjpzp";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/xah-reformat-code";
- license = lib.licenses.free;
- };
- }) {};
- xah-replace-pairs = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "xah-replace-pairs";
- ename = "xah-replace-pairs";
- version = "20180507.1949";
- src = fetchFromGitHub {
- owner = "xahlee";
- repo = "xah-replace-pairs";
- rev = "4d845cfbce32d45befd7c454e3476c3ce40d2b43";
- sha256 = "1mkglrc8mbsjag3pc9zrmqa9x3n009hza1p1jvn3n97wjpc1qxlk";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/05eed39bae37cc8359d2cc678052cbbcc946e379/recipes/xah-replace-pairs";
- sha256 = "0r4aq9davh3ypzcjixr3aw9g659dhiblwbmcyhm8iqhkavcpqr1x";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/xah-replace-pairs";
- license = lib.licenses.free;
- };
- }) {};
- xahk-mode = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "xahk-mode";
- ename = "xahk-mode";
- version = "20170821.407";
- src = fetchFromGitHub {
- owner = "xahlee";
- repo = "xahk-mode.el";
- rev = "02012b20603c00e3b2ef32159a690ed1e05d12c3";
- sha256 = "09nakcfczb95vd48f8z77igmi1kbcblmgpzfzm9i7df4jcfkkh3c";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/05eed39bae37cc8359d2cc678052cbbcc946e379/recipes/xahk-mode";
- sha256 = "1bs12z7lnqlhm44hq0l98d0ka1bjgvm2yv97yivaj9akd53znca9";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/xahk-mode";
- license = lib.licenses.free;
- };
- }) {};
xbm-life = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -107290,35 +55528,6 @@
license = lib.licenses.free;
};
}) {};
- xcode-mode = callPackage ({ dash
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , multiple-cursors
- , s }:
- melpaBuild {
- pname = "xcode-mode";
- ename = "xcode-mode";
- version = "20160907.508";
- src = fetchFromGitHub {
- owner = "nicklanasa";
- repo = "xcode-mode";
- rev = "5b5f0a4f505d44840a4924b24e3ef73b8528d98b";
- sha256 = "0g2vc13rc9vk20m9l1a1rxkdsc099k33pya3z10sg9pa09a4a2a2";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/845c731bed7dbe9c41c09e47e219299f17d0d489/recipes/xcode-mode";
- sha256 = "1d8r2bc7fiwma1lcrzd9gxhdpvyf2pc6kplx7nyr40ghsb9jlpiw";
- name = "recipe";
- };
- packageRequires = [ dash emacs multiple-cursors s ];
- meta = {
- homepage = "https://melpa.org/#/xcode-mode";
- license = lib.licenses.free;
- };
- }) {};
xcode-project = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -107396,31 +55605,6 @@
license = lib.licenses.free;
};
}) {};
- xml-quotes = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "xml-quotes";
- ename = "xml-quotes";
- version = "20151230.1449";
- src = fetchFromGitHub {
- owner = "ndw";
- repo = "xml-quotes";
- rev = "26db170e80b9295861227cdf970721b12539ed44";
- sha256 = "0z3yd3dzcsd7584jchv9q55fx04ig4yjzp8ay2pa112lykv4jxxd";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/ab315d783765730aceab43b4fd8c4872a1f1cc05/recipes/xml-quotes";
- sha256 = "1lmafa695xkhd90k6yiv8a57ch1jx33l1zpm39z0kj546mn6y8aq";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/xml-quotes";
- license = lib.licenses.free;
- };
- }) {};
xml-rpc = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -107471,82 +55655,6 @@
license = lib.licenses.free;
};
}) {};
- xmlunicode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "xmlunicode";
- ename = "xmlunicode";
- version = "20160319.912";
- src = fetchFromGitHub {
- owner = "ndw";
- repo = "xmlunicode";
- rev = "f5d185da46414c0509ebd0aa0fab416becf94612";
- sha256 = "178bdfwiinhf98qm88ivmgy6rd0qjx5gnckkclanybva0r8l6832";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/b636126a389a337a3685f9d0dcbca9bf8e784f20/recipes/xmlunicode";
- sha256 = "1ylpvx2p5l863r9qv9jdsm9rbv989c8xn0zpjl8zkcfxqxix4h4p";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/xmlunicode";
- license = lib.licenses.free;
- };
- }) {};
- xo = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "xo";
- ename = "xo";
- version = "20160402.2346";
- src = fetchFromGitHub {
- owner = "j-em";
- repo = "xo-emacs";
- rev = "72fcd867cfa332fdb82f732925cf8977e690af78";
- sha256 = "0761amc73mbgaydp3iyfzgyjxp77yk440s24h69hvk87c5vn1cz3";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/fd8cec754da662e4873186c23c1ba13c52cccbba/recipes/xo";
- sha256 = "0kpbnxh8sa2dk8anrvgc7d39qap13pyjxh154gpm8xdb9zhfwl25";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/xo";
- license = lib.licenses.free;
- };
- }) {};
- xquery-mode = callPackage ({ cl-lib ? null
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "xquery-mode";
- ename = "xquery-mode";
- version = "20170214.319";
- src = fetchFromGitHub {
- owner = "xquery-mode";
- repo = "xquery-mode";
- rev = "19e6f9553ce05380843582b879712de00679e4ab";
- sha256 = "0q04p75qkcbij7cqvhwnfx2729f1v4si05xjv433v7f6dfxxkhhl";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/e8ea1c9e26963f290d912df21b81afd689543658/recipes/xquery-mode";
- sha256 = "13xrvygk7wdby6599q6yxw8cm45qqki8szrm49fc3b6pr6vzpidg";
- name = "recipe";
- };
- packageRequires = [ cl-lib ];
- meta = {
- homepage = "https://melpa.org/#/xquery-mode";
- license = lib.licenses.free;
- };
- }) {};
xquery-tool = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -107650,34 +55758,6 @@
license = lib.licenses.free;
};
}) {};
- xterm-keybinder = callPackage ({ cl-lib ? null
- , emacs
- , fetchFromGitHub
- , fetchurl
- , let-alist
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "xterm-keybinder";
- ename = "xterm-keybinder";
- version = "20160522.1756";
- src = fetchFromGitHub {
- owner = "yuutayamada";
- repo = "xterm-keybinder-el";
- rev = "b29c4f700b0fa0c9f627f6725b36462b8fab06d6";
- sha256 = "0ya7c73acwp29glwjd1hf19h8jij2afwmwq7a3h91qx5zdn09wvh";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/656f8e27b4e6055a634249f134a4fc0667fa0e95/recipes/xterm-keybinder";
- sha256 = "1n0zp1mc7x7z0671lf7p9r4qxic90bkf5q3zwz4vinpiw2qh88lz";
- name = "recipe";
- };
- packageRequires = [ cl-lib emacs let-alist ];
- meta = {
- homepage = "https://melpa.org/#/xterm-keybinder";
- license = lib.licenses.free;
- };
- }) {};
xtest = callPackage ({ cl-lib ? null
, fetchFromGitHub
, fetchurl
@@ -107704,57 +55784,6 @@
license = lib.licenses.free;
};
}) {};
- xwidgete = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "xwidgete";
- ename = "xwidgete";
- version = "20171118.1316";
- src = fetchFromGitHub {
- owner = "tuhdo";
- repo = "xwidgete";
- rev = "e4e8410fe32176df85b46234717824519443fb04";
- sha256 = "04j4xwcdxlnrwxs89605zmwxszbi2j0z67v80651pshgnhj5p19i";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/xwidgete";
- sha256 = "1v1dfykkb6nwjwz2623i6x1rl53z4457l6fpa4nv4krdqq79gl5d";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/xwidgete";
- license = lib.licenses.free;
- };
- }) {};
- yabin = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "yabin";
- ename = "yabin";
- version = "20140205.1951";
- src = fetchFromGitHub {
- owner = "d5884";
- repo = "yabin";
- rev = "db8c404507560ef9147fcce2b94cd706fbfa03b5";
- sha256 = "0f6pvwzhncycw8gnjy24h6q1qglfgvdjfs5dzqx9s43j3yg63lzm";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/cc44b28e32ff9b35f60744a175c2d1e3036db8bc/recipes/yabin";
- sha256 = "1kmpm2rbb43c9cgp44qwd24d90mj48k3gyiir3vb6zf6k3syrc17";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/yabin";
- license = lib.licenses.free;
- };
- }) {};
yafolding = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -107806,83 +55835,6 @@
license = lib.licenses.free;
};
}) {};
- yahoo-weather = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "yahoo-weather";
- ename = "yahoo-weather";
- version = "20181025.2020";
- src = fetchFromGitHub {
- owner = "lujun9972";
- repo = "yahoo-weather-mode";
- rev = "1d2db14daa1706e03dfe4379397eb89234a56400";
- sha256 = "01hydsjj427j4xyy8cwiz5kn67vwwi1qnih5qfyw04w29r9njh1n";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/ae5ca93d48a2d24787c3d4ed7ab3a65aa8023f4f/recipes/yahoo-weather";
- sha256 = "1kzi6yp186wfcqh5q1v9vw6b1h8x89sba6wlnacfpjbarwapfif0";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/yahoo-weather";
- license = lib.licenses.free;
- };
- }) {};
- yahtzee = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "yahtzee";
- ename = "yahtzee";
- version = "20171022.712";
- src = fetchFromGitHub {
- owner = "drdv";
- repo = "yahtzee";
- rev = "5263fb8883d37d79a4ed34dd3216a8947d2ae4a0";
- sha256 = "1qv8p3zpxkkp0ncq3cs8sq2bj4jrxs4s5jfc5hbs905a9z8bsnq9";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/200169fdabce0ae3a2ecb6f4f3255c15ec3ed094/recipes/yahtzee";
- sha256 = "1fnywiami9mszagmms27dmak6chcichdi7q70x5c6aimc4jb98jk";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/yahtzee";
- license = lib.licenses.free;
- };
- }) {};
- yalinum = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "yalinum";
- ename = "yalinum";
- version = "20130217.243";
- src = fetchFromGitHub {
- owner = "tm8st";
- repo = "emacs-yalinum";
- rev = "d3e0cbe3f4f5ca311e3298e684901d6fea3ad973";
- sha256 = "12dd4ahg9f1493982d49g7sxx0n6ss4xcfhxwzyaqxckwzfranp0";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/091dcc3775ec2137cb61d66df4e72aca4900897a/recipes/yalinum";
- sha256 = "0jzsvkcvy2mkfmri4bzgrlgw2y0z3hxz44md83s5zmw09mshkahf";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/yalinum";
- license = lib.licenses.free;
- };
- }) {};
yaml-imenu = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -107936,57 +55888,6 @@
license = lib.licenses.free;
};
}) {};
- yaml-tomato = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild
- , s }:
- melpaBuild {
- pname = "yaml-tomato";
- ename = "yaml-tomato";
- version = "20151122.2353";
- src = fetchFromGitHub {
- owner = "RadekMolenda";
- repo = "yaml-tomato";
- rev = "1272c502fac6ce6b0f8b7f8a9beb353f0b35e13c";
- sha256 = "0caz0ls8qlh92hr75xv593d2sk27yscb8nzhgzhiarpdxx447jzz";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/yaml-tomato";
- sha256 = "1asy4nf759lcgksah2g7jvzwwlq9lxfkiji460csk5ycsv8aa99s";
- name = "recipe";
- };
- packageRequires = [ s ];
- meta = {
- homepage = "https://melpa.org/#/yaml-tomato";
- license = lib.licenses.free;
- };
- }) {};
- yandex-weather = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "yandex-weather";
- ename = "yandex-weather";
- version = "20160311.1237";
- src = fetchFromGitHub {
- owner = "abstractionlayer";
- repo = "yandex-weather.el";
- rev = "6f823fd9e04ff9efb2aa65f333079e9f7e6e5b28";
- sha256 = "0pw44klm8ldsdjphybzkknv8yh23xhzwg76w3d9cqs79jkd0rw8w";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5221cee4c89dde5cebd9cddb3b4e4c5814b898d7/recipes/yandex-weather";
- sha256 = "11hspadm520cjlv1wk2bdpzg7hg2g0chbh26qijj9jgvca26x0md";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/yandex-weather";
- license = lib.licenses.free;
- };
- }) {};
yang-mode = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -108062,32 +55963,6 @@
license = lib.licenses.free;
};
}) {};
- yara-mode = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "yara-mode";
- ename = "yara-mode";
- version = "20170719.2351";
- src = fetchFromGitHub {
- owner = "binjo";
- repo = "yara-mode";
- rev = "af5c05b34a29fc1bd73a6d21c82cc76320b33e5c";
- sha256 = "1v8z3cwwla42d3r317091g5i7bj1hlbr9sd1p9s9b7y134gpd1xp";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/ef22d2dad1bae62721710bbff4b7228204d7c425/recipes/yara-mode";
- sha256 = "12j25nbfg65bkil4wv6f27sszlj3jm6h0zczr0v26xr5syppis17";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/yara-mode";
- license = lib.licenses.free;
- };
- }) {};
yard-mode = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -108113,31 +55988,6 @@
license = lib.licenses.free;
};
}) {};
- yari = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "yari";
- ename = "yari";
- version = "20151127.2339";
- src = fetchFromGitHub {
- owner = "hron";
- repo = "yari.el";
- rev = "a2cb9656ee5dfe1fc2ee3854f3079a1c8e85dbe9";
- sha256 = "0w9a6j0ndpfwaz1g974vv5jqgbzxw26l19kq51j3ah73063cavpf";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/091dcc3775ec2137cb61d66df4e72aca4900897a/recipes/yari";
- sha256 = "0sch9x899mzwdacg55w5j583k2r4vn71ish7gqpghd7cj13ii66h";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/yari";
- license = lib.licenses.free;
- };
- }) {};
yarn-mode = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -108268,30 +56118,6 @@
license = lib.licenses.free;
};
}) {};
- yatex = callPackage ({ fetchhg
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "yatex";
- ename = "yatex";
- version = "20190406.910";
- src = fetchhg {
- url = "https://www.yatex.org/hgrepos/yatex";
- rev = "2ed79846fd53";
- sha256 = "0yx4679h2g7c8di7vbg9a2341fr988badibn1i38b1qjcrinfm1b";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/9854c39fc1889891fe460d0d5ac9224de3f6c635/recipes/yatex";
- sha256 = "1qbqdsqf5s61hyyzx84csnby242n5sdcmcw55pa8r16j8kyzgrc0";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/yatex";
- license = lib.licenses.free;
- };
- }) {};
yaxception = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -108317,31 +56143,6 @@
license = lib.licenses.free;
};
}) {};
- ycm = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "ycm";
- ename = "ycm";
- version = "20150822.1136";
- src = fetchFromGitHub {
- owner = "neuromage";
- repo = "ycm.el";
- rev = "4da8a14abcd0f4fa3235042ade2e12b5068c0601";
- sha256 = "0znchya89zzk30mwl4qfm0q9sfa5m3jspapb892ydj0mck5n4nyj";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/44e168f757cb51249db2deb9f781eff99cf6fb7c/recipes/ycm";
- sha256 = "16ahgvi85ddjlrjxld14zm2vvam0m89mwskizjd5clcz0snk51sc";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/ycm";
- license = lib.licenses.free;
- };
- }) {};
ycmd = callPackage ({ cl-lib ? null
, dash
, deferred
@@ -108411,33 +56212,6 @@
license = lib.licenses.free;
};
}) {};
- yequake = callPackage ({ dash
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "yequake";
- ename = "yequake";
- version = "20190114.1155";
- src = fetchFromGitHub {
- owner = "alphapapa";
- repo = "yequake";
- rev = "e1e62d802db8d6ca513ebeaadf808c8a3b748086";
- sha256 = "1rpfqxr3735v0avbsqw01amxncd6wn4avky7k08k9p7n6kn3m4m2";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/194968f221b2f60042a3684e1ca3e1c18adbde8e/recipes/yequake";
- sha256 = "1ps5r6k2903w9qbr3aszw3l3mgcg2zlnxlzbak99314if5k6aiak";
- name = "recipe";
- };
- packageRequires = [ dash emacs ];
- meta = {
- homepage = "https://melpa.org/#/yequake";
- license = lib.licenses.free;
- };
- }) {};
yesql-ghosts = callPackage ({ cider
, dash
, fetchFromGitHub
@@ -108466,31 +56240,6 @@
license = lib.licenses.free;
};
}) {};
- yoficator = callPackage ({ fetchFromGitLab
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "yoficator";
- ename = "yoficator";
- version = "20181220.555";
- src = fetchFromGitLab {
- owner = "link2xt";
- repo = "yoficator";
- rev = "95840df90063ba16a5f43c84de0746af6dfc01fc";
- sha256 = "1k9fxvc4jwbxddakig5lnk5xy79g3f6wn5151wdfk9ynq0m2fyrf";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/5156f01564978718dd99ab3a54f19b6512de5c3c/recipes/yoficator";
- sha256 = "0b6lv6wk5ammhb9rws9kig02wkm84i5avm7a1vd4sb7wkgm9nj9r";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/yoficator";
- license = lib.licenses.free;
- };
- }) {};
yoshi-theme = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -108545,58 +56294,6 @@
license = lib.licenses.free;
};
}) {};
- z3-mode = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , flycheck
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "z3-mode";
- ename = "z3-mode";
- version = "20151120.1455";
- src = fetchFromGitHub {
- owner = "zv";
- repo = "z3-mode";
- rev = "163dc01d59e9880b4dc188d4e1ad84d6c0c852e1";
- sha256 = "1k7m3xk5ksbr2s3ypz5yqafz9sfav1m0qk2jz1xyi3fdaw2j0w2z";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/e056fb14b46b97ff31b1db3b8bd31e395a54cd87/recipes/z3-mode";
- sha256 = "183lzhgjj480ca2939za3rlnsbfn24mgi501n66h5wim950v7vgd";
- name = "recipe";
- };
- packageRequires = [ emacs flycheck ];
- meta = {
- homepage = "https://melpa.org/#/z3-mode";
- license = lib.licenses.free;
- };
- }) {};
- zeal-at-point = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "zeal-at-point";
- ename = "zeal-at-point";
- version = "20180131.1554";
- src = fetchFromGitHub {
- owner = "jinzhu";
- repo = "zeal-at-point";
- rev = "0fc3263f44e95acd3e9d91057677621ce4d297ee";
- sha256 = "0aq9w9pjyzdgf63hwffhph6k43vv3cxmffklrjkjj3hqv796k8yd";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/4bcb472b6b18b75acd9c68e1fc7ecce4c2a40d8f/recipes/zeal-at-point";
- sha256 = "1cz53plk5bax5azm13y7xz530qcfh0scm0cgrkrgwja2wwlxirnw";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/zeal-at-point";
- license = lib.licenses.free;
- };
- }) {};
zel = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -108624,31 +56321,6 @@
license = lib.licenses.free;
};
}) {};
- zen-and-art-theme = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "zen-and-art-theme";
- ename = "zen-and-art-theme";
- version = "20120622.737";
- src = fetchFromGitHub {
- owner = "developernotes";
- repo = "zen-and-art-theme";
- rev = "a7226cbce0bca2501d69a620cb2aeabfc396c232";
- sha256 = "0dnaxhsw549k54j0mgydm7qbl4pizgipfyzc15f9afsxa107rpnl";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/692cfa0e9edbc1b7114e2ae2f36bef34b20ad17c/recipes/zen-and-art-theme";
- sha256 = "0b2lflji955z90xl9iz2y1vm04yljghbw4948gh5vv5p7mwibgf2";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/zen-and-art-theme";
- license = lib.licenses.free;
- };
- }) {};
zenburn-theme = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -108674,82 +56346,6 @@
license = lib.licenses.free;
};
}) {};
- zencoding-mode = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "zencoding-mode";
- ename = "zencoding-mode";
- version = "20140213.22";
- src = fetchFromGitHub {
- owner = "rooney";
- repo = "zencoding";
- rev = "58e42af182c98cb9941d27cd042d227fbf4e146c";
- sha256 = "1y3wj15kfbgskl29glmba6lzq43rcm141p4i5s180aqcw7ydp5vr";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/e7f2ebb9d860aa4f0797cdaadaa35fb3f5c4460b/recipes/zencoding-mode";
- sha256 = "1fclad1dyngyg9ncfkcqfxybvy8482i2bd409cgxi9y4h1wc7ws7";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/zencoding-mode";
- license = lib.licenses.free;
- };
- }) {};
- zenity-color-picker = callPackage ({ emacs
- , fetchgit
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "zenity-color-picker";
- ename = "zenity-color-picker";
- version = "20160302.354";
- src = fetchgit {
- url = "https://bitbucket.org/Soft/zenity-color-picker.el";
- rev = "bdece51052ef7037e0a3481fc1f487939f57777e";
- sha256 = "12s2zw99q1zn3a1rn5i27mp506nhqh23v3df5inzfsq1b3dji2bl";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/8b4c6b03c5ff78ce327dcf66b175e266bbc53dbf/recipes/zenity-color-picker";
- sha256 = "0rim1mbhlb2lj302c58rs5l7bd168nxg1jpir6cbpf8rp0k35ldb";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/zenity-color-picker";
- license = lib.licenses.free;
- };
- }) {};
- zeno-theme = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "zeno-theme";
- ename = "zeno-theme";
- version = "20181026.1818";
- src = fetchFromGitHub {
- owner = "jbharat";
- repo = "zeno-theme";
- rev = "0914c4a5b1b9499e7f1ca5699b1c3ea2f4be3f1a";
- sha256 = "1zl1ks7n35i9mn5w7ac3j15820fbgpbcmmysv25crvi4g9z94mqj";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/9703a222f51dc283e9462cceb5afeb009f7401dc/recipes/zeno-theme";
- sha256 = "0bqv1gdqlh7i48ckpgss6h9mmc9hpkqlb94aam0kkq2ga125gmwc";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/zeno-theme";
- license = lib.licenses.free;
- };
- }) {};
zephir-mode = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -108804,57 +56400,6 @@
license = lib.licenses.free;
};
}) {};
- zig-mode = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "zig-mode";
- ename = "zig-mode";
- version = "20190108.1817";
- src = fetchFromGitHub {
- owner = "ziglang";
- repo = "zig-mode";
- rev = "c2deea85dd65c3e73c2771c56a998cbdeb9ff717";
- sha256 = "10k7i2fj3imbq09fkcgd4kjp7n1dn46119jqrd6kbx5inlkq1782";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/6440f81aed1fcddcaf7afeedb74520e605211986/recipes/zig-mode";
- sha256 = "1kg1x0l65nqqpzn5np41ya9khr1yqcg5ki7z3jw0g4wxdbz7lrbx";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/zig-mode";
- license = lib.licenses.free;
- };
- }) {};
- zlc = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "zlc";
- ename = "zlc";
- version = "20151010.1857";
- src = fetchFromGitHub {
- owner = "mooz";
- repo = "emacs-zlc";
- rev = "4dd2ba267ecdeac845a7cbb3147294ee7daa25f4";
- sha256 = "1gb51bqdf87yibs1zngk6q090p05293cpwlwbwzhnih9sl6wkq8x";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/zlc";
- sha256 = "0qw0qf14l09mcnw7h0ccbw17psfpra76qfawkc10zpdb5a2167d0";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/zlc";
- license = lib.licenses.free;
- };
- }) {};
zmq = callPackage ({ cl-lib ? null
, emacs
, fetchFromGitHub
@@ -108882,57 +56427,6 @@
license = lib.licenses.free;
};
}) {};
- znc = callPackage ({ cl-lib ? null
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "znc";
- ename = "znc";
- version = "20160627.1332";
- src = fetchFromGitHub {
- owner = "sshirokov";
- repo = "ZNC.el";
- rev = "ce468d185e4a949c45fdd7586313144bc69d4fe5";
- sha256 = "0jh11lbzsndsz9i143av7510417nzwy4j3mmpq7cjixfbmnxdq06";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/znc";
- sha256 = "1017dlzbpb3ww0zb370bgsdrzr4kcc72ddby9j63d95chz2jg0hb";
- name = "recipe";
- };
- packageRequires = [ cl-lib ];
- meta = {
- homepage = "https://melpa.org/#/znc";
- license = lib.licenses.free;
- };
- }) {};
- zombie = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "zombie";
- ename = "zombie";
- version = "20141222.816";
- src = fetchFromGitHub {
- owner = "zk-phi";
- repo = "zombie";
- rev = "ff8cd1b4cdbb4b0b9b8fd1ec8f6fb93eba249345";
- sha256 = "1gm3ly6czbw4vrxcslm50jy6nxf2qsl656cjwbyhw251wppn75cg";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/0da12385908c0e2ecd087ea7572fedf0a2dcf03f/recipes/zombie";
- sha256 = "0ji3nsxwbxmmygd6plpbc1lkw6i5zw4y6x3r5n2ah3ds4vjr7cnv";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/zombie";
- license = lib.licenses.free;
- };
- }) {};
zombie-trellys-mode = callPackage ({ cl-lib ? null
, emacs
, fetchFromGitHub
@@ -108987,85 +56481,6 @@
license = lib.licenses.free;
};
}) {};
- zone-rainbow = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "zone-rainbow";
- ename = "zone-rainbow";
- version = "20160120.534";
- src = fetchFromGitHub {
- owner = "kawabata";
- repo = "zone-rainbow";
- rev = "2ba4f1a87c69c4712124ebf12c1f3ea171e1af36";
- sha256 = "0w550l9im3mhxhja1b7cr9phdcbvx5lprw551lj0d1lv7qvjasz0";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/c8f678d32c8cd1bcc8ec042e7e68ca3a5259da65/recipes/zone-rainbow";
- sha256 = "0l51fmhvx9vsxbs62cbjgqphb691397f651nqin7cj3dfvchzh4j";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/zone-rainbow";
- license = lib.licenses.free;
- };
- }) {};
- zone-select = callPackage ({ dash
- , emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "zone-select";
- ename = "zone-select";
- version = "20160118.619";
- src = fetchFromGitHub {
- owner = "kawabata";
- repo = "zone-select";
- rev = "bf30da12f1625fe6563448fccf3c506acad10af7";
- sha256 = "17mrzf85ym0x5ih4l6sjdjlcmviabf8c8rpvpkd90gp9qxd8pyx1";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/ecad1475d9a04ddd84f86ed950f742f68bcf71f8/recipes/zone-select";
- sha256 = "05kc211invmy4ajwf71vgr2b7bdgn99c4a26m95gcjqgy3sh5xzz";
- name = "recipe";
- };
- packageRequires = [ dash emacs ];
- meta = {
- homepage = "https://melpa.org/#/zone-select";
- license = lib.licenses.free;
- };
- }) {};
- zone-sl = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "zone-sl";
- ename = "zone-sl";
- version = "20160201.410";
- src = fetchFromGitHub {
- owner = "kawabata";
- repo = "zone-sl";
- rev = "737b21b4b35c28a487ad8a31598e745bc183b209";
- sha256 = "0m1q45pza61j0fp8cxkgmds5fyjrk0nqpwhg8m91610m3pvyc3ap";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/11c976519e0cb320e48f40f4d735e557b3dfc1b9/recipes/zone-sl";
- sha256 = "04rwd6vj3abk3bzhq3swxwcq5da2n9cldrcmvnqgjr975np4cgs3";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/zone-sl";
- license = lib.licenses.free;
- };
- }) {};
zoom = callPackage ({ emacs
, fetchFromGitHub
, fetchurl
@@ -109144,32 +56559,6 @@
license = lib.licenses.free;
};
}) {};
- zossima = callPackage ({ fetchFromGitHub
- , fetchurl
- , inf-ruby
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "zossima";
- ename = "zossima";
- version = "20121123.1635";
- src = fetchFromGitHub {
- owner = "technomancy";
- repo = "zossima";
- rev = "0b3f17c77bc1791687cdb4e15c889f774f9e2c0f";
- sha256 = "11ygifz67zyrqqqmjs5xrrch796n2na4c9g1mrpdspf7ndiqjbw2";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/b7566fe6fffc38981ea33582d783c58f3842fe28/recipes/zossima";
- sha256 = "11kmnbqv4s8arindg7cxcdhbvfxsckks332wn7aiyb3bjhcgzwjb";
- name = "recipe";
- };
- packageRequires = [ inf-ruby ];
- meta = {
- homepage = "https://melpa.org/#/zossima";
- license = lib.licenses.free;
- };
- }) {};
zotelo = callPackage ({ fetchFromGitHub
, fetchurl
, lib
@@ -109246,137 +56635,6 @@
license = lib.licenses.free;
};
}) {};
- zpl-mode = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "zpl-mode";
- ename = "zpl-mode";
- version = "20180906.359";
- src = fetchFromGitHub {
- owner = "ax487";
- repo = "zpl-mode";
- rev = "35e7e23c6baf31b5e65dd7405c8ab9b13c70637e";
- sha256 = "147d7ylpk77zcsjim0my6cbyms28yd7mfaigmzm009jc1bn4r7f5";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/0bf11cd6ceb2633f968134d80f37d32f91c48227/recipes/zpl-mode";
- sha256 = "0wqhwzanvc1gpnykfqzi02p9zx0c1n6gnavg5dv1mlmc8x0hr67s";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/zpl-mode";
- license = lib.licenses.free;
- };
- }) {};
- zpresent = callPackage ({ dash
- , emacs
- , fetchhg
- , fetchurl
- , lib
- , melpaBuild
- , org-parser
- , request }:
- melpaBuild {
- pname = "zpresent";
- ename = "zpresent";
- version = "20180604.2138";
- src = fetchhg {
- url = "https://bitbucket.com/zck/zpresent.el";
- rev = "55fc14b66e2e";
- sha256 = "17wkhl1a7jmg4ks011lf5h4f2vbhf8dl6vgzdzlmljk15f9hmw35";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/3aae38ad54490fa650c832fb7d22e2c73b0fb060/recipes/zpresent";
- sha256 = "0316qyspmdbg94aw620133ilh8kfpr3db1p2cifgccgcacjv3v5j";
- name = "recipe";
- };
- packageRequires = [ dash emacs org-parser request ];
- meta = {
- homepage = "https://melpa.org/#/zpresent";
- license = lib.licenses.free;
- };
- }) {};
- zprint-mode = callPackage ({ emacs
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "zprint-mode";
- ename = "zprint-mode";
- version = "20181111.1145";
- src = fetchFromGitHub {
- owner = "pesterhazy";
- repo = "zprint-mode.el";
- rev = "6b979f6cb50d1f3da0ec44f39fd0dd893785ca44";
- sha256 = "0fbm0klda8rbybp6rb1296czn8gc1c7bvcyd40qlg5jy1wxwjbd3";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/125f6358dd8d715b61b12de5d39215453e53ea10/recipes/zprint-mode";
- sha256 = "07ziwnk1c620s7rp42fylpw5vgin0p7aapp3g8aif60vcb8g3m7y";
- name = "recipe";
- };
- packageRequires = [ emacs ];
- meta = {
- homepage = "https://melpa.org/#/zprint-mode";
- license = lib.licenses.free;
- };
- }) {};
- ztree = callPackage ({ cl-lib ? null
- , fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "ztree";
- ename = "ztree";
- version = "20180512.1150";
- src = fetchFromGitHub {
- owner = "fourier";
- repo = "ztree";
- rev = "50412fa553fb68fcd7218cc44cf66b5342ab6889";
- sha256 = "00s3sa90yi6q0260ziqqmx00xl0nnf46mwcl8fbr5mdw14hvk9dl";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/f151e057c05407748991f23c021e94c178b87248/recipes/ztree";
- sha256 = "1fk5xz8qq3azc66f954x5qvym94xnv4fg6wy83ihdfwycsas7j20";
- name = "recipe";
- };
- packageRequires = [ cl-lib ];
- meta = {
- homepage = "https://melpa.org/#/ztree";
- license = lib.licenses.free;
- };
- }) {};
- zweilight-theme = callPackage ({ fetchFromGitHub
- , fetchurl
- , lib
- , melpaBuild }:
- melpaBuild {
- pname = "zweilight-theme";
- ename = "zweilight-theme";
- version = "20170112.2205";
- src = fetchFromGitHub {
- owner = "philiparvidsson";
- repo = "Zweilight-Theme-for-Emacs";
- rev = "890f27c939d8a358c9ef0f402fc3314f475ec874";
- sha256 = "0pl254c61405n6sgr01qj4z42vqdvbmf59nz55cl23l2q7kdbfdv";
- };
- recipe = fetchurl {
- url = "https://raw.githubusercontent.com/milkypostman/melpa/6440f81aed1fcddcaf7afeedb74520e605211986/recipes/zweilight-theme";
- sha256 = "1j8skn9hz1zkpdg7q0njv5b50cbvrixjjmkp43p58gx98q02p0kq";
- name = "recipe";
- };
- packageRequires = [];
- meta = {
- homepage = "https://melpa.org/#/zweilight-theme";
- license = lib.licenses.free;
- };
- }) {};
zygospore = callPackage ({ fetchFromGitHub
, fetchurl
, lib
diff --git a/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix b/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix
index f108dfd17b8..49486df9a3f 100644
--- a/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix
+++ b/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix
@@ -207,10 +207,6 @@ self:
window-numbering = markBroken super.window-numbering;
};
- melpaStablePackages =
- removeAttrs (super // overrides)
- [
- "lenlen-theme" # missing dependency: color-theme-solarized
- ];
+ melpaStablePackages = super // overrides;
in
melpaStablePackages // { inherit melpaStablePackages; }
diff --git a/pkgs/applications/editors/quilter/default.nix b/pkgs/applications/editors/quilter/default.nix
index b22b04bac65..c27a85d260b 100644
--- a/pkgs/applications/editors/quilter/default.nix
+++ b/pkgs/applications/editors/quilter/default.nix
@@ -4,13 +4,13 @@
stdenv.mkDerivation rec {
pname = "quilter";
- version = "1.8.4";
+ version = "1.9.1";
src = fetchFromGitHub {
owner = "lainsce";
repo = pname;
rev = version;
- sha256 = "14qbkkz1l4zj6kwds5d82swnh3ynj6diyvjl0pafgp5i1i27j4rh";
+ sha256 = "1sjk8n0y9039xs47zw9a4l4vd36vkm30gf6x3fzaib81hnh1fx7v";
};
nativeBuildInputs = [
diff --git a/pkgs/applications/graphics/fondo/default.nix b/pkgs/applications/graphics/fondo/default.nix
index af6eaa2904a..f7d5f099f84 100644
--- a/pkgs/applications/graphics/fondo/default.nix
+++ b/pkgs/applications/graphics/fondo/default.nix
@@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
pname = "fondo";
- version = "1.2.2";
+ version = "1.3.0";
src = fetchFromGitHub {
owner = "calo001";
repo = pname;
rev = version;
- sha256 = "0mh3s2726zf3va6nj7kj2nbmq5q65xrbnsllss3sqf8a838zqfn6";
+ sha256 = "1xflkqzdbyvdjybarvb13vw6p8f2xjlvpr155yaxgjjzjcr1j86y";
};
nativeBuildInputs = [
diff --git a/pkgs/applications/graphics/freecad/default.nix b/pkgs/applications/graphics/freecad/default.nix
index 298b03cf430..92fc74242a2 100644
--- a/pkgs/applications/graphics/freecad/default.nix
+++ b/pkgs/applications/graphics/freecad/default.nix
@@ -38,6 +38,10 @@ in stdenv.mkDerivation rec {
wrapProgram $out/bin/FreeCAD --prefix PYTHONPATH : $PYTHONPATH \
--set COIN_GL_NO_CURRENT_CONTEXT_CHECK 1
'';
+
+ postFixup = ''
+ mv $out/share/doc $out
+ '';
meta = with stdenv.lib; {
description = "General purpose Open Source 3D CAD/MCAD/CAx/CAE/PLM modeler";
diff --git a/pkgs/applications/misc/prusa-slicer/default.nix b/pkgs/applications/misc/prusa-slicer/default.nix
new file mode 100644
index 00000000000..cc6f63c0960
--- /dev/null
+++ b/pkgs/applications/misc/prusa-slicer/default.nix
@@ -0,0 +1,89 @@
+{ stdenv, lib, fetchFromGitHub, makeWrapper, cmake, pkgconfig
+, boost, curl, expat, glew, libpng, tbb, wxGTK30
+, gtest, nlopt, xorg, makeDesktopItem
+}:
+let
+ nloptVersion = if lib.hasAttr "version" nlopt
+ then lib.getAttr "version" nlopt
+ else "2.4";
+in
+stdenv.mkDerivation rec {
+ name = "prusa-slicer-${version}";
+ version = "2.0.0";
+
+ enableParallelBuilding = true;
+
+ nativeBuildInputs = [
+ cmake
+ makeWrapper
+ pkgconfig
+ ];
+
+ # We could add Eigen, but it doesn't currently compile with the version in
+ # nixpkgs.
+ buildInputs = [
+ boost
+ curl
+ expat
+ glew
+ libpng
+ tbb
+ wxGTK30
+ xorg.libX11
+ ] ++ checkInputs;
+
+ checkInputs = [ gtest ];
+
+ # The build system uses custom logic - defined in
+ # xs/src/libnest2d/cmake_modules/FindNLopt.cmake in the package source -
+ # for finding the nlopt library, which doesn't pick up the package in the nix store.
+ # We need to set the path via the NLOPT environment variable instead.
+ NLOPT = "${nlopt}";
+
+ prePatch = ''
+ # In nix ioctls.h isn't available from the standard kernel-headers package
+ # on other distributions. As the copy in glibc seems to be identical to the
+ # one in the kernel, we use that one instead.
+ sed -i 's|"/usr/include/asm-generic/ioctls.h"||g' src/libslic3r/GCodeSender.cpp
+ '' + lib.optionalString (lib.versionOlder "2.5" nloptVersion) ''
+ # Since version 2.5.0 of nlopt we need to link to libnlopt, as libnlopt_cxx
+ # now seems to be integrated into the main lib.
+ sed -i 's|nlopt_cxx|nlopt|g' src/libnest2d/cmake_modules/FindNLopt.cmake
+ '';
+
+ src = fetchFromGitHub {
+ owner = "prusa3d";
+ repo = "PrusaSlicer";
+ sha256 = "135wn2sza2f2kvbja1haxil5kx1b74lc1i7dsa35i1y3phabykhz";
+ rev = "version_${version}";
+ };
+
+ cmakeFlags = [
+ "-DSLIC3R_FHS=1"
+ "-DSLIC3R_WX_STABLE=1" # necessary when compiling against wxGTK 3.0
+ ];
+
+ postInstall = ''
+ mkdir -p "$out/share/pixmaps/"
+ ln -s "$out/share/PrusaSlicer/icons/PrusaSlicer.png" "$out/share/pixmaps/PrusaSlicer.png"
+ mkdir -p "$out/share/applications"
+ cp "$desktopItem"/share/applications/* "$out/share/applications/"
+ '';
+
+ desktopItem = makeDesktopItem {
+ name = "PrusaSlicer";
+ exec = "prusa-slicer";
+ icon = "PrusaSlicer";
+ comment = "G-code generator for 3D printers";
+ desktopName = "PrusaSlicer";
+ genericName = "3D printer tool";
+ categories = "Application;Development;";
+ };
+
+ meta = with stdenv.lib; {
+ description = "G-code generator for 3D printer";
+ homepage = https://github.com/prusa3d/PrusaSlicer;
+ license = licenses.agpl3;
+ maintainers = with maintainers; [ tweber ];
+ };
+}
diff --git a/pkgs/applications/misc/slic3r/prusa3d.nix b/pkgs/applications/misc/slic3r/prusa3d.nix
deleted file mode 100644
index 1f0a3a71be8..00000000000
--- a/pkgs/applications/misc/slic3r/prusa3d.nix
+++ /dev/null
@@ -1,147 +0,0 @@
-{ stdenv, lib, fetchFromGitHub, makeWrapper, which, cmake, perl, perlPackages,
- boost, tbb, wxGTK30, pkgconfig, gtk3, fetchurl, gtk2, libGLU,
- glew, eigen, curl, gtest, nlopt, pcre, xorg, makeDesktopItem }:
-let
- AlienWxWidgets = perlPackages.buildPerlPackage rec {
- name = "Alien-wxWidgets-0.69";
- src = fetchurl {
- url = "mirror://cpan/authors/id/M/MD/MDOOTSON/${name}.tar.gz";
- sha256 = "075m880klf66pbcfk0la2nl60vd37jljizqndrklh5y4zvzdy1nr";
- };
- propagatedBuildInputs = [
- pkgconfig perlPackages.ModulePluggable perlPackages.ModuleBuild
- gtk2 gtk3 wxGTK30
- ];
- };
-
- Wx = perlPackages.Wx.overrideAttrs (oldAttrs: {
- propagatedBuildInputs = [
- perlPackages.ExtUtilsXSpp
- AlienWxWidgets
- ];
- });
-
- WxGLCanvas = perlPackages.buildPerlPackage rec {
- name = "Wx-GLCanvas-0.09";
- src = fetchurl {
- url = "mirror://cpan/authors/id/M/MB/MBARBON/${name}.tar.gz";
- sha256 = "1q4gvj4gdx4l8k4mkgiix24p9mdfy1miv7abidf0my3gy2gw5lka";
- };
- propagatedBuildInputs = [ Wx perlPackages.OpenGL libGLU ];
- doCheck = false;
- };
-in
-stdenv.mkDerivation rec {
- name = "slic3r-prusa-edition-${version}";
- version = "1.41.3";
-
- enableParallelBuilding = true;
-
- nativeBuildInputs = [
- cmake
- makeWrapper
- ];
-
- buildInputs = [
- curl
- eigen
- glew
- pcre
- perl
- tbb
- which
- Wx
- WxGLCanvas
- xorg.libXdmcp
- xorg.libpthreadstubs
- ] ++ checkInputs ++ (with perlPackages; [
- boost
- ClassXSAccessor
- EncodeLocale
- ExtUtilsMakeMaker
- ExtUtilsTypemapsDefault
- ExtUtilsXSpp
- GrowlGNTP
- ImportInto
- IOStringy
- locallib
- LWP
- MathClipper
- MathConvexHullMonotoneChain
- MathGeometryVoronoi
- MathPlanePath
- ModuleBuildWithXSpp
- Moo
- NetDBus
- OpenGL
- XMLSAX
- ]);
-
- checkInputs = [ gtest ];
-
- # The build system uses custom logic - defined in
- # xs/src/libnest2d/cmake_modules/FindNLopt.cmake in the package source -
- # for finding the nlopt library, which doesn't pick up the package in the nix store.
- # We need to set the path via the NLOPT environment variable instead.
- NLOPT = "${nlopt}";
-
- prePatch = ''
- # In nix ioctls.h isn't available from the standard kernel-headers package
- # on other distributions. As the copy in glibc seems to be identical to the
- # one in the kernel, we use that one instead.
- sed -i 's|"/usr/include/asm-generic/ioctls.h"||g' xs/src/libslic3r/GCodeSender.cpp
-
- # PERL_VENDORARCH and PERL_VENDORLIB aren't set correctly by the build
- # system, so we have to override them. Setting them as environment variables
- # doesn't work though, so substituting the paths directly in CMakeLists.txt
- # seems to be the easiest way.
- sed -i "s|\''${PERL_VENDORARCH}|$out/lib/slic3r-prusa3d|g" xs/CMakeLists.txt
- sed -i "s|\''${PERL_VENDORLIB}|$out/lib/slic3r-prusa3d|g" xs/CMakeLists.txt
- '' + lib.optionalString (lib.versionOlder "2.5" nlopt.version) ''
- # Since version 2.5.0 of nlopt we need to link to libnlopt, as libnlopt_cxx
- # now seems to be integrated into the main lib.
- sed -i 's|nlopt_cxx|nlopt|g' xs/src/libnest2d/cmake_modules/FindNLopt.cmake
- '';
-
- postInstall = ''
- echo 'postInstall'
- wrapProgram "$out/bin/slic3r-prusa3d" \
- --prefix PERL5LIB : "$out/lib/slic3r-prusa3d:$PERL5LIB"
-
- # it seems we need to copy the icons...
- mkdir -p $out/bin/var
- cp -r ../resources/icons/* $out/bin/var/
- cp -r ../resources $out/bin/
-
-
- mkdir -p "$out/share/pixmaps/"
- ln -s "$out/bin/var/Slic3r.png" "$out/share/pixmaps/slic3r-prusa.png"
- mkdir -p "$out/share/applications"
- cp "$desktopItem"/share/applications/* "$out/share/applications/"
- '';
-
- src = fetchFromGitHub {
- owner = "prusa3d";
- repo = "Slic3r";
- sha256 = "145dfsv610c5p0sngab9z7lzbk5383pq9l26mrrpf1wxdlxgljpl";
- rev = "version_${version}";
- };
-
- desktopItem = makeDesktopItem {
- name = "slic3r-Prusa-Edition";
- exec = "slic3r-prusa3d";
- icon = "slic3r-prusa";
- comment = "G-code generator for 3D printers";
- desktopName = "Slic3r Prusa Edition";
- genericName = "3D printer tool";
- categories = "Application;Development;";
- };
-
- meta = with stdenv.lib; {
- description = "G-code generator for 3D printer";
- homepage = https://github.com/prusa3d/Slic3r;
- license = licenses.agpl3;
- maintainers = with maintainers; [ tweber ];
- broken = stdenv.hostPlatform.isAarch64;
- };
-}
diff --git a/pkgs/applications/misc/wtf/default.nix b/pkgs/applications/misc/wtf/default.nix
index 78ae194f32d..13e4ed81a59 100644
--- a/pkgs/applications/misc/wtf/default.nix
+++ b/pkgs/applications/misc/wtf/default.nix
@@ -5,13 +5,13 @@
buildGoModule rec {
pname = "wtf";
- version = "0.10.3";
+ version = "0.11.0";
src = fetchFromGitHub {
owner = "wtfutil";
repo = pname;
rev = "v${version}";
- sha256 = "0ffpydxlc2c9rpr6rnlqk3ca8xc4hjl2107wzcxzx9id1hw8fb40";
+ sha256 = "1b671jhf3xaaisgpiad5apmvwkp40qr2hm4n21m0ya7k5ckps09z";
};
modSha256 = "0as736nnx7ci4w9gdp27g55g6dny9bh1fryz3g89gxm2sa2nlb9l";
diff --git a/pkgs/applications/networking/instant-messengers/telegram/tdesktop/default.nix b/pkgs/applications/networking/instant-messengers/telegram/tdesktop/default.nix
index f906d4712f9..fa7afa2f97f 100644
--- a/pkgs/applications/networking/instant-messengers/telegram/tdesktop/default.nix
+++ b/pkgs/applications/networking/instant-messengers/telegram/tdesktop/default.nix
@@ -4,8 +4,8 @@ let
mkTelegram = args: qt5.callPackage (import ./generic.nix args) { };
stableVersion = {
stable = true;
- version = "1.7.3";
- sha256Hash = "0y0chdfxq75ydx8lz40yfpbx8ycm8vdkl5dvll6glxjq5m21kxf9";
+ version = "1.7.7";
+ sha256Hash = "0w3jq02qzpx58xlmwaj0lgav5lx6s9hdidnq9v1npp4qmpdnsn75";
# svn log svn://svn.archlinux.org/community/telegram-desktop/trunk
archPatchesRevision = "476826";
archPatchesHash = "1vnlvba60hxd5jlh0fvsa50xmb9xgcphdsx6j1ld7f12m7ik68zr";
diff --git a/pkgs/applications/networking/insync/default.nix b/pkgs/applications/networking/insync/default.nix
index 9c1aa8f86f6..3719a69138c 100644
--- a/pkgs/applications/networking/insync/default.nix
+++ b/pkgs/applications/networking/insync/default.nix
@@ -2,12 +2,12 @@
stdenv.mkDerivation rec {
name = "insync-${version}";
- version = "1.5.5.37367";
+ version = "1.5.7.37371";
src =
if stdenv.hostPlatform.system == "x86_64-linux" then
fetchurl {
url = "http://s.insynchq.com/builds/insync-portable_${version}_amd64.tar.bz2";
- sha256 = "1yz8l8xjr0pm30hvv4w59wzs569xzkpn8lv12pyl82r1l16h5zp3";
+ sha256 = "1cm3q6y2crw6pcsvh21sbkmh1hin7xl4fyslc96nbyql8rxsky5n";
}
else
throw "${name} is not supported on ${stdenv.hostPlatform.system}";
diff --git a/pkgs/applications/networking/ipfs/default.nix b/pkgs/applications/networking/ipfs/default.nix
index 7b4d40a5a63..54943533b85 100644
--- a/pkgs/applications/networking/ipfs/default.nix
+++ b/pkgs/applications/networking/ipfs/default.nix
@@ -1,21 +1,21 @@
-{ stdenv, buildGoPackage, fetchFromGitHub }:
+{ stdenv, buildGoModule, fetchFromGitHub }:
-buildGoPackage rec {
- name = "ipfs-${version}";
- version = "0.4.20";
+buildGoModule rec {
+ pname = "ipfs";
+ version = "0.4.21";
rev = "v${version}";
goPackagePath = "github.com/ipfs/go-ipfs";
- goDeps = ./deps.nix;
-
src = fetchFromGitHub {
owner = "ipfs";
repo = "go-ipfs";
inherit rev;
- sha256 = "1xnjn4pcgknywfndrp2zwln3v1msaffhhfiym5mdz543rsxav0yp";
+ sha256 = "0jlj89vjy4nw3x3j45r16y8bph5ss5lp907pjgqvad0naxbf99b0";
};
+ modSha256 = "0d9rq0hig9jwv9jfajfyj2111arikqzdnyhf5aqkwahcblpx54iy";
+
meta = with stdenv.lib; {
description = "A global, versioned, peer-to-peer filesystem";
homepage = https://ipfs.io/;
diff --git a/pkgs/applications/networking/ipfs/deps.nix b/pkgs/applications/networking/ipfs/deps.nix
deleted file mode 100644
index 181b55d28d9..00000000000
--- a/pkgs/applications/networking/ipfs/deps.nix
+++ /dev/null
@@ -1,2190 +0,0 @@
-# file generated from go.mod using vgo2nix (https://github.com/adisbladis/vgo2nix)
-[
- {
- goPackagePath = "github.com/dgraph-io/badger";
- fetch = {
- type = "git";
- url = "https://github.com/dgraph-io/badger";
- rev = "1fcc96ec";
- sha256 = "09sdr64ay8wbw4m8a7dppha357wx2395vpni554353v7b22gyk59";
- };
- }
- {
- goPackagePath = "bazil.org/fuse";
- fetch = {
- type = "git";
- url = "https://github.com/bazil/fuse";
- rev = "65cc252bf669";
- sha256 = "0qjm9yrhc5h632wwhklqzhalid4lxcm9iwsqs3jahp303rm27vpk";
- };
- }
- {
- goPackagePath = "github.com/AndreasBriese/bbloom";
- fetch = {
- type = "git";
- url = "https://github.com/AndreasBriese/bbloom";
- rev = "343706a395b7";
- sha256 = "0pz4wph915gm2b0admq4bc5d2ir218s954z27gmc86l0rik13a5d";
- };
- }
- {
- goPackagePath = "github.com/Kubuxu/go-os-helper";
- fetch = {
- type = "git";
- url = "https://github.com/Kubuxu/go-os-helper";
- rev = "v0.0.1";
- sha256 = "08v88ylhvv65hdqr2pp94qf2ncppzib5sx66fv432vhgkz00ddyr";
- };
- }
- {
- goPackagePath = "github.com/Kubuxu/gocovmerge";
- fetch = {
- type = "git";
- url = "https://github.com/Kubuxu/gocovmerge";
- rev = "7ecaa51963cd";
- sha256 = "0xbx83h44hsiidmr69sn4k0zn7bmbwcna76fn0akjb5il1r4bjyr";
- };
- }
- {
- goPackagePath = "github.com/Stebalien/go-bitfield";
- fetch = {
- type = "git";
- url = "https://github.com/Stebalien/go-bitfield";
- rev = "076a62f9ce6e";
- sha256 = "17iqkx2dyh6ykgapgvbyrm8c15qw24pspjhi3ww2sx4y0qhkycf4";
- };
- }
- {
- goPackagePath = "github.com/aead/siphash";
- fetch = {
- type = "git";
- url = "https://github.com/aead/siphash";
- rev = "v1.0.1";
- sha256 = "01kd1z82sc4nh3nj9c25aryyp396s7jrqc2kz9d7qq1vy2hdbznc";
- };
- }
- {
- goPackagePath = "github.com/beorn7/perks";
- fetch = {
- type = "git";
- url = "https://github.com/beorn7/perks";
- rev = "3a771d992973";
- sha256 = "1l2lns4f5jabp61201sh88zf3b0q793w4zdgp9nll7mmfcxxjif3";
- };
- }
- {
- goPackagePath = "github.com/blang/semver";
- fetch = {
- type = "git";
- url = "https://github.com/blang/semver";
- rev = "v3.5.1";
- sha256 = "13ws259bwcibkclbr82ilhk6zadm63kxklxhk12wayklj8ghhsmy";
- };
- }
- {
- goPackagePath = "github.com/bren2010/proquint";
- fetch = {
- type = "git";
- url = "https://github.com/bren2010/proquint";
- rev = "38337c27106d";
- sha256 = "1ws3hb27n4c4mfp2pfj9nc59ch6dv93333a83n7qazf74lhf8ixl";
- };
- }
- {
- goPackagePath = "github.com/btcsuite/btcd";
- fetch = {
- type = "git";
- url = "https://github.com/btcsuite/btcd";
- rev = "306aecffea32";
- sha256 = "130np0bfic9q7ga8a9y5gd3amy6mgfb7igd3lgicikjclfhiqwf4";
- };
- }
- {
- goPackagePath = "github.com/btcsuite/btclog";
- fetch = {
- type = "git";
- url = "https://github.com/btcsuite/btclog";
- rev = "84c8d2346e9f";
- sha256 = "02dl46wcnfpg9sqvg0ipipkpnd7lrf4fnvb9zy56jqa7mfcwc7wk";
- };
- }
- {
- goPackagePath = "github.com/btcsuite/btcutil";
- fetch = {
- type = "git";
- url = "https://github.com/btcsuite/btcutil";
- rev = "4c204d697803";
- sha256 = "16s27k8xnvhlpv0ibs60sqgnyn3zhnvprv1647svmzs3rwcsqgvp";
- };
- }
- {
- goPackagePath = "github.com/btcsuite/go-socks";
- fetch = {
- type = "git";
- url = "https://github.com/btcsuite/go-socks";
- rev = "4720035b7bfd";
- sha256 = "18cv2icj059lq4s99p6yh91hlas5f2gi3f1p4c10sjgwrs933d7b";
- };
- }
- {
- goPackagePath = "github.com/btcsuite/goleveldb";
- fetch = {
- type = "git";
- url = "https://github.com/btcsuite/goleveldb";
- rev = "7834afc9e8cd";
- sha256 = "0gy156sn2cy2maii3p058f7q60gjdbmba34i9qvk8msxlg7hlfjv";
- };
- }
- {
- goPackagePath = "github.com/btcsuite/snappy-go";
- fetch = {
- type = "git";
- url = "https://github.com/btcsuite/snappy-go";
- rev = "0bdef8d06723";
- sha256 = "00i5fsb1wf2dwal1jfwbpk9a7cbzjyg7rnz2xib3qfz9h82kd4jw";
- };
- }
- {
- goPackagePath = "github.com/btcsuite/websocket";
- fetch = {
- type = "git";
- url = "https://github.com/btcsuite/websocket";
- rev = "31079b680792";
- sha256 = "0xpkf257ml6fpfdgv7hxxc41n0d5yxxm3njm50qpzp7j71l9cjwa";
- };
- }
- {
- goPackagePath = "github.com/btcsuite/winsvc";
- fetch = {
- type = "git";
- url = "https://github.com/btcsuite/winsvc";
- rev = "v1.0.0";
- sha256 = "0nsw8y86a5hzr2a3j6ch9myrpccj5bnsgaxpgajhzfk5d31xlw1z";
- };
- }
- {
- goPackagePath = "github.com/cenkalti/backoff";
- fetch = {
- type = "git";
- url = "https://github.com/cenkalti/backoff";
- rev = "v2.1.1";
- sha256 = "1mf4lsl3rbb8kk42x0mrhzzy4ikqy0jf6nxpzhkr02rdgwh6rjk8";
- };
- }
- {
- goPackagePath = "github.com/cheekybits/genny";
- fetch = {
- type = "git";
- url = "https://github.com/cheekybits/genny";
- rev = "v1.0.0";
- sha256 = "1pcir5ic86713aqa51581rfb67rgc3m0c72ddjfcp3yakv9vyq87";
- };
- }
- {
- goPackagePath = "github.com/coreos/go-semver";
- fetch = {
- type = "git";
- url = "https://github.com/coreos/go-semver";
- rev = "v0.2.0";
- sha256 = "1gghi5bnqj50hfxhqc1cxmynqmh2yk9ii7ab9gsm75y5cp94ymk0";
- };
- }
- {
- goPackagePath = "github.com/cskr/pubsub";
- fetch = {
- type = "git";
- url = "https://github.com/cskr/pubsub";
- rev = "v1.0.2";
- sha256 = "0wr8cg5axrlz9xg33r9dqvkp5ix9q8h8c7qw78mj22qprwh3zj9f";
- };
- }
- {
- goPackagePath = "github.com/davecgh/go-spew";
- fetch = {
- type = "git";
- url = "https://github.com/davecgh/go-spew";
- rev = "v1.1.1";
- sha256 = "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y";
- };
- }
- {
- goPackagePath = "github.com/davidlazar/go-crypto";
- fetch = {
- type = "git";
- url = "https://github.com/davidlazar/go-crypto";
- rev = "dcfb0a7ac018";
- sha256 = "1lir8slwykn0h5bg5lj22qsdg4kw09kcqlks974g1428d42rqlcp";
- };
- }
- {
- goPackagePath = "github.com/dgryski/go-farm";
- fetch = {
- type = "git";
- url = "https://github.com/dgryski/go-farm";
- rev = "3adb47b1fb0f";
- sha256 = "04bkvr6xvfh83cn83gqzyxx45wbk3j1bdpgrck0b424x48z2x4jh";
- };
- }
- {
- goPackagePath = "github.com/dustin/go-humanize";
- fetch = {
- type = "git";
- url = "https://github.com/dustin/go-humanize";
- rev = "v1.0.0";
- sha256 = "1kqf1kavdyvjk7f8kx62pnm7fbypn9z1vbf8v2qdh3y7z7a0cbl3";
- };
- }
- {
- goPackagePath = "github.com/elgris/jsondiff";
- fetch = {
- type = "git";
- url = "https://github.com/elgris/jsondiff";
- rev = "765b5c24c302";
- sha256 = "0jm1q0s531hmkqdx8jqphfpmzysn44aphkpwlzqwp3hkz89g4d4q";
- };
- }
- {
- goPackagePath = "github.com/facebookgo/atomicfile";
- fetch = {
- type = "git";
- url = "https://github.com/facebookgo/atomicfile";
- rev = "2de1f203e7d5";
- sha256 = "1vsx6r6y601jxvjqc8msbpr5v1037dfxxdd8h1q3s8wm6xhvj2v6";
- };
- }
- {
- goPackagePath = "github.com/fatih/color";
- fetch = {
- type = "git";
- url = "https://github.com/fatih/color";
- rev = "v1.7.0";
- sha256 = "0v8msvg38r8d1iiq2i5r4xyfx0invhc941kjrsg5gzwvagv55inv";
- };
- }
- {
- goPackagePath = "github.com/fsnotify/fsnotify";
- fetch = {
- type = "git";
- url = "https://github.com/fsnotify/fsnotify";
- rev = "v1.4.7";
- sha256 = "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g";
- };
- }
- {
- goPackagePath = "github.com/go-check/check";
- fetch = {
- type = "git";
- url = "https://github.com/go-check/check";
- rev = "788fd7840127";
- sha256 = "0v3bim0j375z81zrpr5qv42knqs0y2qv2vkjiqi5axvb78slki1a";
- };
- }
- {
- goPackagePath = "github.com/gogo/protobuf";
- fetch = {
- type = "git";
- url = "https://github.com/gogo/protobuf";
- rev = "v1.2.1";
- sha256 = "06yqa6h0kw3gr5pc3qmas7f7435a96zf7iw7p0l00r2hqf6fqq6m";
- };
- }
- {
- goPackagePath = "github.com/golang/mock";
- fetch = {
- type = "git";
- url = "https://github.com/golang/mock";
- rev = "v1.2.0";
- sha256 = "12ddj2g8ab87id6n2n67vnbhq6p8dvgsq1pzpqfriym4dk8w54fg";
- };
- }
- {
- goPackagePath = "github.com/golang/protobuf";
- fetch = {
- type = "git";
- url = "https://github.com/golang/protobuf";
- rev = "v1.3.0";
- sha256 = "0dm1ip7742qz2k1cr6ywy0av6mpcxd2kc4ayfqi8cxz3ai7zhbdr";
- };
- }
- {
- goPackagePath = "github.com/golang/snappy";
- fetch = {
- type = "git";
- url = "https://github.com/golang/snappy";
- rev = "2e65f85255db";
- sha256 = "05w6mpc4qcy0pv8a2bzng8nf4s5rf5phfang4jwy9rgf808q0nxf";
- };
- }
- {
- goPackagePath = "github.com/google/go-cmp";
- fetch = {
- type = "git";
- url = "https://github.com/google/go-cmp";
- rev = "v0.2.0";
- sha256 = "1fbv0x27k9sn8svafc0hjwsnckk864lv4yi7bvzrxvmd3d5hskds";
- };
- }
- {
- goPackagePath = "github.com/google/uuid";
- fetch = {
- type = "git";
- url = "https://github.com/google/uuid";
- rev = "v1.1.1";
- sha256 = "0hfxcf9frkb57k6q0rdkrmnfs78ms21r1qfk9fhlqga2yh5xg8zb";
- };
- }
- {
- goPackagePath = "github.com/gopherjs/gopherjs";
- fetch = {
- type = "git";
- url = "https://github.com/gopherjs/gopherjs";
- rev = "0766667cb4d1";
- sha256 = "13pfc9sxiwjky2lm1xb3i3lcisn8p6mgjk2d927l7r92ysph8dmw";
- };
- }
- {
- goPackagePath = "github.com/gorilla/websocket";
- fetch = {
- type = "git";
- url = "https://github.com/gorilla/websocket";
- rev = "v1.4.0";
- sha256 = "00i4vb31nsfkzzk7swvx3i75r2d960js3dri1875vypk3v2s0pzk";
- };
- }
- {
- goPackagePath = "github.com/gxed/go-shellwords";
- fetch = {
- type = "git";
- url = "https://github.com/gxed/go-shellwords";
- rev = "v1.0.3";
- sha256 = "1pg7pl25wvpl2dbpyrv9p1r7prnqimxlf6136vn0dfm54j2x4mnr";
- };
- }
- {
- goPackagePath = "github.com/gxed/hashland";
- fetch = {
- type = "git";
- url = "https://github.com/gxed/hashland";
- rev = "v0.0.1";
- sha256 = "1b921dh9i6zw7y8jfzwvrmdbhnwid12a5z1zjawslfq2vvsajwmm";
- };
- }
- {
- goPackagePath = "github.com/gxed/pubsub";
- fetch = {
- type = "git";
- url = "https://github.com/gxed/pubsub";
- rev = "26ebdf44f824";
- sha256 = "0q0r6bvimjxwi3yd0w2wjkx1x8m0d9pwi25b7n4s4g10h36rabjp";
- };
- }
- {
- goPackagePath = "github.com/hashicorp/errwrap";
- fetch = {
- type = "git";
- url = "https://github.com/hashicorp/errwrap";
- rev = "v1.0.0";
- sha256 = "0slfb6w3b61xz04r32bi0a1bygc82rjzhqkxj2si2074wynqnr1c";
- };
- }
- {
- goPackagePath = "github.com/hashicorp/go-multierror";
- fetch = {
- type = "git";
- url = "https://github.com/hashicorp/go-multierror";
- rev = "v1.0.0";
- sha256 = "00nyn8llqzbfm8aflr9kwsvpzi4kv8v45c141v88xskxp5xf6z49";
- };
- }
- {
- goPackagePath = "github.com/hashicorp/golang-lru";
- fetch = {
- type = "git";
- url = "https://github.com/hashicorp/golang-lru";
- rev = "v0.5.1";
- sha256 = "13f870cvk161bzjj6x41l45r5x9i1z9r2ymwmvm7768kg08zznpy";
- };
- }
- {
- goPackagePath = "github.com/hpcloud/tail";
- fetch = {
- type = "git";
- url = "https://github.com/hpcloud/tail";
- rev = "v1.0.0";
- sha256 = "1njpzc0pi1acg5zx9y6vj9xi6ksbsc5d387rd6904hy6rh2m6kn0";
- };
- }
- {
- goPackagePath = "github.com/hsanjuan/go-libp2p-gostream";
- fetch = {
- type = "git";
- url = "https://github.com/hsanjuan/go-libp2p-gostream";
- rev = "v0.0.31";
- sha256 = "0q4k1ahns9j061iajp8525330mwgbdv5mnyzldpg64r5c2igp9qf";
- };
- }
- {
- goPackagePath = "github.com/hsanjuan/go-libp2p-http";
- fetch = {
- type = "git";
- url = "https://github.com/hsanjuan/go-libp2p-http";
- rev = "v0.0.2";
- sha256 = "0pq80qvhm2f53gx438ws5nnj1r2ara48radzxc5br57scp2bjlgk";
- };
- }
- {
- goPackagePath = "github.com/huin/goupnp";
- fetch = {
- type = "git";
- url = "https://github.com/huin/goupnp";
- rev = "v1.0.0";
- sha256 = "12f7rigf1f4xh1an1qis61xkj5s1r8ygk48zahf3n4gaqxmgm7i6";
- };
- }
- {
- goPackagePath = "github.com/huin/goutil";
- fetch = {
- type = "git";
- url = "https://github.com/huin/goutil";
- rev = "1ca381bf3150";
- sha256 = "0alhyacsfqic2wxyqn4gvk9wzjl4pkmy8rhvqjk84xsghgx5xf12";
- };
- }
- {
- goPackagePath = "github.com/ipfs/bbloom";
- fetch = {
- type = "git";
- url = "https://github.com/ipfs/bbloom";
- rev = "v0.0.1";
- sha256 = "0ji1dgxvg338wx2agh0ld9x6wwr6zc8zwjxs5mwdb99p56dc34nz";
- };
- }
- {
- goPackagePath = "github.com/ipfs/dir-index-html";
- fetch = {
- type = "git";
- url = "https://github.com/ipfs/dir-index-html";
- rev = "v1.0.3";
- sha256 = "1asd58w53i97jxk2r1asy8h5lgq0086lnjq3gi7fs20xvgv20bfy";
- };
- }
- {
- goPackagePath = "github.com/ipfs/go-bitswap";
- fetch = {
- type = "git";
- url = "https://github.com/ipfs/go-bitswap";
- rev = "v0.0.4";
- sha256 = "0998qyxzp5frmkf5kjqxrhdwl4c0i7a2kh24rldix934afbmfz3r";
- };
- }
- {
- goPackagePath = "github.com/ipfs/go-block-format";
- fetch = {
- type = "git";
- url = "https://github.com/ipfs/go-block-format";
- rev = "v0.0.2";
- sha256 = "1j73r946z0gs98a2r1z7q3vkpk8v7wqwc68x8c3ngiff9sijq1kf";
- };
- }
- {
- goPackagePath = "github.com/ipfs/go-blockservice";
- fetch = {
- type = "git";
- url = "https://github.com/ipfs/go-blockservice";
- rev = "v0.0.3";
- sha256 = "1c2fnrqlvg16xf7jla1x38qi56yw61w1ms70kghhafmw008bgkvn";
- };
- }
- {
- goPackagePath = "github.com/ipfs/go-cid";
- fetch = {
- type = "git";
- url = "https://github.com/ipfs/go-cid";
- rev = "v0.0.1";
- sha256 = "11hdrac0wf82m69fkpwby1mg2k7swmw884rv3250i0kymwi93lak";
- };
- }
- {
- goPackagePath = "github.com/ipfs/go-cidutil";
- fetch = {
- type = "git";
- url = "https://github.com/ipfs/go-cidutil";
- rev = "v0.0.1";
- sha256 = "00bdn7cg7rg8amh8zaqakf6phd14sn2z9kw73cscfhpyg9di1p9h";
- };
- }
- {
- goPackagePath = "github.com/ipfs/go-datastore";
- fetch = {
- type = "git";
- url = "https://github.com/ipfs/go-datastore";
- rev = "v0.0.3";
- sha256 = "147nnmgb2b4iiky4hsn5wn4hk0kp39xs1yj3blm2gxxxkmjqsdk4";
- };
- }
- {
- goPackagePath = "github.com/ipfs/go-detect-race";
- fetch = {
- type = "git";
- url = "https://github.com/ipfs/go-detect-race";
- rev = "v0.0.1";
- sha256 = "0rqb0q66d7z852j5mhlr025dz698c44w014g4mx587amr1rvwqna";
- };
- }
- {
- goPackagePath = "github.com/ipfs/go-ds-badger";
- fetch = {
- type = "git";
- url = "https://github.com/ipfs/go-ds-badger";
- rev = "v0.0.3";
- sha256 = "0bl7zh8gmas54577v501n17z1254f1yaggkgslz9qjz4rihq4wq1";
- };
- }
- {
- goPackagePath = "github.com/ipfs/go-ds-flatfs";
- fetch = {
- type = "git";
- url = "https://github.com/ipfs/go-ds-flatfs";
- rev = "v0.0.2";
- sha256 = "1z6z717pkv2yqb0wdhw73vir253305wkqcg5pln8km8kl2fjwwyi";
- };
- }
- {
- goPackagePath = "github.com/ipfs/go-ds-leveldb";
- fetch = {
- type = "git";
- url = "https://github.com/ipfs/go-ds-leveldb";
- rev = "v0.0.2";
- sha256 = "0x70z31g0l04lm6nsv1p0wnhdwqvck2pzy59ygfxk707n0x5vqpc";
- };
- }
- {
- goPackagePath = "github.com/ipfs/go-ds-measure";
- fetch = {
- type = "git";
- url = "https://github.com/ipfs/go-ds-measure";
- rev = "v0.0.1";
- sha256 = "1ndb10x5g95g8kapfr116qa3cav2xcwwm4dppp99bi15kq1yk742";
- };
- }
- {
- goPackagePath = "github.com/ipfs/go-fs-lock";
- fetch = {
- type = "git";
- url = "https://github.com/ipfs/go-fs-lock";
- rev = "v0.0.1";
- sha256 = "02mr83xkflf0sjrii11pd9k4a4545jggqgq6pdpsmkx2r3b01j2q";
- };
- }
- {
- goPackagePath = "github.com/ipfs/go-ipfs-addr";
- fetch = {
- type = "git";
- url = "https://github.com/ipfs/go-ipfs-addr";
- rev = "v0.0.1";
- sha256 = "02f7vhf6kra7h58ny71zfb0k5q9mz6yplypnk36i6gv4fn5v9c5i";
- };
- }
- {
- goPackagePath = "github.com/ipfs/go-ipfs-blockstore";
- fetch = {
- type = "git";
- url = "https://github.com/ipfs/go-ipfs-blockstore";
- rev = "v0.0.1";
- sha256 = "0vw6i4n9xss21yri5wkj9pvzapm9yqgxh5l6vq2858n50xz72r31";
- };
- }
- {
- goPackagePath = "github.com/ipfs/go-ipfs-blocksutil";
- fetch = {
- type = "git";
- url = "https://github.com/ipfs/go-ipfs-blocksutil";
- rev = "v0.0.1";
- sha256 = "06bip9adk70i0g0hkf4aczvhkhd3s31x19668ls26dl62rq9h7di";
- };
- }
- {
- goPackagePath = "github.com/ipfs/go-ipfs-chunker";
- fetch = {
- type = "git";
- url = "https://github.com/ipfs/go-ipfs-chunker";
- rev = "v0.0.1";
- sha256 = "19p8a4xfi62fj5nw7ad81yppn0slq3pddk0gb0c3zydaxcjkhzw6";
- };
- }
- {
- goPackagePath = "github.com/ipfs/go-ipfs-cmdkit";
- fetch = {
- type = "git";
- url = "https://github.com/ipfs/go-ipfs-cmdkit";
- rev = "v0.0.1";
- sha256 = "1aqdpszvibkm1h7p852ajzb9gjgsz5jlk4j2s9j8q1wbmz3vslms";
- };
- }
- {
- goPackagePath = "github.com/ipfs/go-ipfs-cmds";
- fetch = {
- type = "git";
- url = "https://github.com/ipfs/go-ipfs-cmds";
- rev = "v0.0.5";
- sha256 = "1b302hvah5scykcjn5al9a6jf7sygqi6snd664a6sxf2xgpwk0s8";
- };
- }
- {
- goPackagePath = "github.com/ipfs/go-ipfs-config";
- fetch = {
- type = "git";
- url = "https://github.com/ipfs/go-ipfs-config";
- rev = "v0.0.1";
- sha256 = "055igsi5bv312p2590dvpr9d290c4c0cwbzvwv52l7j60v79vlkc";
- };
- }
- {
- goPackagePath = "github.com/ipfs/go-ipfs-delay";
- fetch = {
- type = "git";
- url = "https://github.com/ipfs/go-ipfs-delay";
- rev = "v0.0.1";
- sha256 = "0a5acj622sk1hibnh893mya4h86nsy1dan0wlh9q444c04iqpviw";
- };
- }
- {
- goPackagePath = "github.com/ipfs/go-ipfs-ds-help";
- fetch = {
- type = "git";
- url = "https://github.com/ipfs/go-ipfs-ds-help";
- rev = "v0.0.1";
- sha256 = "173kmvyk2f5f1p30avb8nzvkcmq9xkdfpydavqw3bxg0yq0714ic";
- };
- }
- {
- goPackagePath = "github.com/ipfs/go-ipfs-exchange-interface";
- fetch = {
- type = "git";
- url = "https://github.com/ipfs/go-ipfs-exchange-interface";
- rev = "v0.0.1";
- sha256 = "12h4pj5g9d1j5gmd8gf774fqwkx0x5cm3pg7c81hi0f43x5lrmwn";
- };
- }
- {
- goPackagePath = "github.com/ipfs/go-ipfs-exchange-offline";
- fetch = {
- type = "git";
- url = "https://github.com/ipfs/go-ipfs-exchange-offline";
- rev = "v0.0.1";
- sha256 = "0nlb5llmj9kjas2p5jqg2x3krk5jm40xd36k0g5l87c992dy7f0i";
- };
- }
- {
- goPackagePath = "github.com/ipfs/go-ipfs-files";
- fetch = {
- type = "git";
- url = "https://github.com/ipfs/go-ipfs-files";
- rev = "v0.0.2";
- sha256 = "12554whcmg60rgnzyd7673hgxnrs1j176lw8839wf260pjq6rs39";
- };
- }
- {
- goPackagePath = "github.com/ipfs/go-ipfs-flags";
- fetch = {
- type = "git";
- url = "https://github.com/ipfs/go-ipfs-flags";
- rev = "v0.0.1";
- sha256 = "0pf9nq0n6nlfxbfhn9v46a2s7kkkwmvl04si8ihz08nahanb13r6";
- };
- }
- {
- goPackagePath = "github.com/ipfs/go-ipfs-posinfo";
- fetch = {
- type = "git";
- url = "https://github.com/ipfs/go-ipfs-posinfo";
- rev = "v0.0.1";
- sha256 = "0hh88i9sk5h53z2xx2nwxrpcx0r0jhlb5sq54x5qyhp5mjfqbyi2";
- };
- }
- {
- goPackagePath = "github.com/ipfs/go-ipfs-pq";
- fetch = {
- type = "git";
- url = "https://github.com/ipfs/go-ipfs-pq";
- rev = "v0.0.1";
- sha256 = "05q7b7g49ni59c6593v51kkkd6ppc2ipkfsx05qbfg8md9r7a93x";
- };
- }
- {
- goPackagePath = "github.com/ipfs/go-ipfs-routing";
- fetch = {
- type = "git";
- url = "https://github.com/ipfs/go-ipfs-routing";
- rev = "v0.0.1";
- sha256 = "15vvvc0z5sbyhmwl3nfrpziiy3gsivb02xcalsz6mxvam68xy4x5";
- };
- }
- {
- goPackagePath = "github.com/ipfs/go-ipfs-util";
- fetch = {
- type = "git";
- url = "https://github.com/ipfs/go-ipfs-util";
- rev = "v0.0.1";
- sha256 = "1j87wqxh8ap5qqvnhnhz3zg6fn50axnnd69wqg287hh36xcpy6ss";
- };
- }
- {
- goPackagePath = "github.com/ipfs/go-ipld-cbor";
- fetch = {
- type = "git";
- url = "https://github.com/ipfs/go-ipld-cbor";
- rev = "v0.0.1";
- sha256 = "0zppzca1ar8pqrzi68ysx4ih1mnhlyrg046xwj7sggr4aki1fh5j";
- };
- }
- {
- goPackagePath = "github.com/ipfs/go-ipld-format";
- fetch = {
- type = "git";
- url = "https://github.com/ipfs/go-ipld-format";
- rev = "v0.0.1";
- sha256 = "0lb4wp30jlamk604bagzf28zf2hm2b4lxnayqvq7rh0jxhbdb61d";
- };
- }
- {
- goPackagePath = "github.com/ipfs/go-ipld-git";
- fetch = {
- type = "git";
- url = "https://github.com/ipfs/go-ipld-git";
- rev = "v0.0.1";
- sha256 = "0d5kl3kvam1hv589cg9cg1dkjyanzp727zrnzyjnrysv3fk8yv66";
- };
- }
- {
- goPackagePath = "github.com/ipfs/go-ipns";
- fetch = {
- type = "git";
- url = "https://github.com/ipfs/go-ipns";
- rev = "v0.0.1";
- sha256 = "1r9531v35336sf36s8pzi3jiyqd22ld9p7xpaznzmp57ygwfxlwj";
- };
- }
- {
- goPackagePath = "github.com/ipfs/go-log";
- fetch = {
- type = "git";
- url = "https://github.com/ipfs/go-log";
- rev = "v0.0.1";
- sha256 = "0r3pk46g9vjjb9ljaxda18w488xa9vyj30g23y9vprknkd9dqfgw";
- };
- }
- {
- goPackagePath = "github.com/ipfs/go-merkledag";
- fetch = {
- type = "git";
- url = "https://github.com/ipfs/go-merkledag";
- rev = "v0.0.3";
- sha256 = "0j7dgca9vyhj6ra074cddblcjkxh1c1k51krch09lqxxjwasgg60";
- };
- }
- {
- goPackagePath = "github.com/ipfs/go-metrics-interface";
- fetch = {
- type = "git";
- url = "https://github.com/ipfs/go-metrics-interface";
- rev = "v0.0.1";
- sha256 = "09xc71175sfnqlizkbw066jagnbag9ihvs240z6g6dm2yx3w5xgy";
- };
- }
- {
- goPackagePath = "github.com/ipfs/go-metrics-prometheus";
- fetch = {
- type = "git";
- url = "https://github.com/ipfs/go-metrics-prometheus";
- rev = "v0.0.2";
- sha256 = "1z1zwjj0a3gyzs4r25b9kl7z3kmsqp3jskvy7x02a3v1dlr3nkfp";
- };
- }
- {
- goPackagePath = "github.com/ipfs/go-mfs";
- fetch = {
- type = "git";
- url = "https://github.com/ipfs/go-mfs";
- rev = "v0.0.4";
- sha256 = "13jjxbfjl6wd89nxqibvp8q3hd2vzh0vpfhp3vrbapghkzp08rbb";
- };
- }
- {
- goPackagePath = "github.com/ipfs/go-path";
- fetch = {
- type = "git";
- url = "https://github.com/ipfs/go-path";
- rev = "v0.0.3";
- sha256 = "019zpy92k2rilkhn928jf91d8y3x8cxcw04mc2pxv5ja29nkyc91";
- };
- }
- {
- goPackagePath = "github.com/ipfs/go-todocounter";
- fetch = {
- type = "git";
- url = "https://github.com/ipfs/go-todocounter";
- rev = "v0.0.1";
- sha256 = "1nsf56hh6n2y3m14b1ismcpsyi65ffxa5i6ks6il9qppm21mm5nx";
- };
- }
- {
- goPackagePath = "github.com/ipfs/go-unixfs";
- fetch = {
- type = "git";
- url = "https://github.com/ipfs/go-unixfs";
- rev = "v0.0.4";
- sha256 = "0fbqqi9h2xalnyc58ppaiyac3qd6hb4ycn46wwnr7idp0z7wxl5j";
- };
- }
- {
- goPackagePath = "github.com/ipfs/go-verifcid";
- fetch = {
- type = "git";
- url = "https://github.com/ipfs/go-verifcid";
- rev = "v0.0.1";
- sha256 = "06ii8934s52d9n1lvzx29didh667pm2i7qdag443vqn0ilmkjvh9";
- };
- }
- {
- goPackagePath = "github.com/ipfs/hang-fds";
- fetch = {
- type = "git";
- url = "https://github.com/ipfs/hang-fds";
- rev = "v0.0.1";
- sha256 = "0axgmx1vcqsvys4vhqfrixfss2vk3qly1cqlm0aqrlhscggflkn4";
- };
- }
- {
- goPackagePath = "github.com/ipfs/interface-go-ipfs-core";
- fetch = {
- type = "git";
- url = "https://github.com/ipfs/interface-go-ipfs-core";
- rev = "v0.0.6";
- sha256 = "13sr18vzsfsik1nnkdcmi7afagbcnzh95mxzlbss366x802g8d8q";
- };
- }
- {
- goPackagePath = "github.com/ipfs/iptb";
- fetch = {
- type = "git";
- url = "https://github.com/ipfs/iptb";
- rev = "v1.4.0";
- sha256 = "0nfiqf1k114ydp6c37yq4qn6j3bmw94wvc096vfljq8493jr8jvv";
- };
- }
- {
- goPackagePath = "github.com/ipfs/iptb-plugins";
- fetch = {
- type = "git";
- url = "https://github.com/ipfs/iptb-plugins";
- rev = "v0.0.2";
- sha256 = "10kyvjhmlvza3xlmfvwhndscjm6807pmk9nld7d2660mvh18w626";
- };
- }
- {
- goPackagePath = "github.com/jackpal/gateway";
- fetch = {
- type = "git";
- url = "https://github.com/jackpal/gateway";
- rev = "v1.0.5";
- sha256 = "1ird5xmizj632l3dq24s2xgb8w1dn6v8xznlqz252gvngyr2gjl1";
- };
- }
- {
- goPackagePath = "github.com/jackpal/go-nat-pmp";
- fetch = {
- type = "git";
- url = "https://github.com/jackpal/go-nat-pmp";
- rev = "v1.0.1";
- sha256 = "0sr23mcxbv9f65is4p1amb5yn026p7cfamlwpb2f8q218idwy3zk";
- };
- }
- {
- goPackagePath = "github.com/jbenet/go-cienv";
- fetch = {
- type = "git";
- url = "https://github.com/jbenet/go-cienv";
- rev = "1bb1476777ec";
- sha256 = "0mk04dk572gdd0y63vark0362y42w7kbwdlmmw9bg78qmmiikjb3";
- };
- }
- {
- goPackagePath = "github.com/jbenet/go-context";
- fetch = {
- type = "git";
- url = "https://github.com/jbenet/go-context";
- rev = "d14ea06fba99";
- sha256 = "0q91f5549n81w3z5927n4a1mdh220bdmgl42zi3h992dcc4ls0sl";
- };
- }
- {
- goPackagePath = "github.com/jbenet/go-is-domain";
- fetch = {
- type = "git";
- url = "https://github.com/jbenet/go-is-domain";
- rev = "v1.0.2";
- sha256 = "1cf4qmlg54975z5j7njyqsq0vr8gsxzg85c5iys08nr3cizr7551";
- };
- }
- {
- goPackagePath = "github.com/jbenet/go-random";
- fetch = {
- type = "git";
- url = "https://github.com/jbenet/go-random";
- rev = "123a90aedc0c";
- sha256 = "0kgx19m8p76rmin8s8y6j1padciv1dx37qzy7jkh9bw49ai3haw3";
- };
- }
- {
- goPackagePath = "github.com/jbenet/go-random-files";
- fetch = {
- type = "git";
- url = "https://github.com/jbenet/go-random-files";
- rev = "31b3f20ebded";
- sha256 = "0d52wwzgxxh2a1bwmixfa6nfhhqdq6l9g4s6kmsdnc6kqf38c818";
- };
- }
- {
- goPackagePath = "github.com/jbenet/go-temp-err-catcher";
- fetch = {
- type = "git";
- url = "https://github.com/jbenet/go-temp-err-catcher";
- rev = "aac704a3f4f2";
- sha256 = "1fyqkcggnrzwxa8iii15g60w2jikdm26sr7l36km7y0nc2kvf7jc";
- };
- }
- {
- goPackagePath = "github.com/jbenet/goprocess";
- fetch = {
- type = "git";
- url = "https://github.com/jbenet/goprocess";
- rev = "b497e2f366b8";
- sha256 = "1lnvkzki7vnqn5c4m6bigk0k85haicmg27w903kwg30rdvblm82s";
- };
- }
- {
- goPackagePath = "github.com/jessevdk/go-flags";
- fetch = {
- type = "git";
- url = "https://github.com/jessevdk/go-flags";
- rev = "1679536dcc89";
- sha256 = "15jgsymwg0wjslxrw391sw7qzwwjcnjxiiksq84z7ng9sqy96c1c";
- };
- }
- {
- goPackagePath = "github.com/jonboulle/clockwork";
- fetch = {
- type = "git";
- url = "https://github.com/jonboulle/clockwork";
- rev = "v0.1.0";
- sha256 = "1pqxhsdavbp1n5grgyx2j6ylvql2fzn2cvpsgkc8li69dil7sibl";
- };
- }
- {
- goPackagePath = "github.com/jrick/logrotate";
- fetch = {
- type = "git";
- url = "https://github.com/jrick/logrotate";
- rev = "v1.0.0";
- sha256 = "0srl6figwjqpi3nbp7br8sxpmvh4v8lzbny1b4lar4ny0156p5nl";
- };
- }
- {
- goPackagePath = "github.com/jtolds/gls";
- fetch = {
- type = "git";
- url = "https://github.com/jtolds/gls";
- rev = "v4.2.1";
- sha256 = "1vm37pvn0k4r6d3m620swwgama63laz8hhj3pyisdhxwam4m2g1h";
- };
- }
- {
- goPackagePath = "github.com/kisielk/errcheck";
- fetch = {
- type = "git";
- url = "https://github.com/kisielk/errcheck";
- rev = "v1.1.0";
- sha256 = "19vd4rxmqbk5lpiav3pf7df3yjlz0l0dwx9mn0gjq5f998iyhy6y";
- };
- }
- {
- goPackagePath = "github.com/kisielk/gotool";
- fetch = {
- type = "git";
- url = "https://github.com/kisielk/gotool";
- rev = "v1.0.0";
- sha256 = "14af2pa0ssyp8bp2mvdw184s5wcysk6akil3wzxmr05wwy951iwn";
- };
- }
- {
- goPackagePath = "github.com/kkdai/bstream";
- fetch = {
- type = "git";
- url = "https://github.com/kkdai/bstream";
- rev = "f391b8402d23";
- sha256 = "1hd9caz0yf3r8kciw2pqwrsr8z4w0rhbqv1z7iq08d0542s05j3z";
- };
- }
- {
- goPackagePath = "github.com/koron/go-ssdp";
- fetch = {
- type = "git";
- url = "https://github.com/koron/go-ssdp";
- rev = "4a0ed625a78b";
- sha256 = "11d1xf07xs4j7qbxpndxbrfk2zk48k9fa3cxnhfb5lh24bd4sa0f";
- };
- }
- {
- goPackagePath = "github.com/kr/pretty";
- fetch = {
- type = "git";
- url = "https://github.com/kr/pretty";
- rev = "v0.1.0";
- sha256 = "18m4pwg2abd0j9cn5v3k2ksk9ig4vlwxmlw9rrglanziv9l967qp";
- };
- }
- {
- goPackagePath = "github.com/kr/pty";
- fetch = {
- type = "git";
- url = "https://github.com/kr/pty";
- rev = "v1.1.1";
- sha256 = "0383f0mb9kqjvncqrfpidsf8y6ns5zlrc91c6a74xpyxjwvzl2y6";
- };
- }
- {
- goPackagePath = "github.com/kr/text";
- fetch = {
- type = "git";
- url = "https://github.com/kr/text";
- rev = "v0.1.0";
- sha256 = "1gm5bsl01apvc84bw06hasawyqm4q84vx1pm32wr9jnd7a8vjgj1";
- };
- }
- {
- goPackagePath = "github.com/libp2p/go-addr-util";
- fetch = {
- type = "git";
- url = "https://github.com/libp2p/go-addr-util";
- rev = "v0.0.1";
- sha256 = "1kjdk5214l8gna7f4hvb0iwmmlzsfccjankkxjmil80ibhcvjw60";
- };
- }
- {
- goPackagePath = "github.com/libp2p/go-buffer-pool";
- fetch = {
- type = "git";
- url = "https://github.com/libp2p/go-buffer-pool";
- rev = "v0.0.1";
- sha256 = "1239hkhckgx1fzd43k56q3c0283p1mjl8w7i2j4xymvs6f6q6ygi";
- };
- }
- {
- goPackagePath = "github.com/libp2p/go-conn-security";
- fetch = {
- type = "git";
- url = "https://github.com/libp2p/go-conn-security";
- rev = "v0.0.1";
- sha256 = "0z1zw0aq5jcks0vcdm5zxjyz9z6c6jklm0s74gc2m7jfs2jj2r5r";
- };
- }
- {
- goPackagePath = "github.com/libp2p/go-conn-security-multistream";
- fetch = {
- type = "git";
- url = "https://github.com/libp2p/go-conn-security-multistream";
- rev = "v0.0.1";
- sha256 = "19slvlmapzs952gfn4aym4dg0l49x0vpn5v696vf80v2k00ipa32";
- };
- }
- {
- goPackagePath = "github.com/libp2p/go-flow-metrics";
- fetch = {
- type = "git";
- url = "https://github.com/libp2p/go-flow-metrics";
- rev = "v0.0.1";
- sha256 = "04zrwl579qkhiw3b655cw7lnlp2yvq1xl3f1rkxnhx8llwsy3x49";
- };
- }
- {
- goPackagePath = "github.com/libp2p/go-libp2p";
- fetch = {
- type = "git";
- url = "https://github.com/libp2p/go-libp2p";
- rev = "v0.0.12";
- sha256 = "04hm36fi45jpq5zjl1a7jlyq82adwwrgvvgnkllppq2zg85mlvvi";
- };
- }
- {
- goPackagePath = "github.com/libp2p/go-libp2p-autonat";
- fetch = {
- type = "git";
- url = "https://github.com/libp2p/go-libp2p-autonat";
- rev = "v0.0.4";
- sha256 = "03523s4kdwswgfnwly5ynld2lny142j8xl6mr88vni4xn7pijn1l";
- };
- }
- {
- goPackagePath = "github.com/libp2p/go-libp2p-autonat-svc";
- fetch = {
- type = "git";
- url = "https://github.com/libp2p/go-libp2p-autonat-svc";
- rev = "v0.0.5";
- sha256 = "0plph1nnh0ig9d54hizpiyhfrlrwhb1ylx6pry5jcppgpxngi79c";
- };
- }
- {
- goPackagePath = "github.com/libp2p/go-libp2p-blankhost";
- fetch = {
- type = "git";
- url = "https://github.com/libp2p/go-libp2p-blankhost";
- rev = "v0.0.1";
- sha256 = "1q29b880l95811ara95187y9pmqq542bxh50cg0ykwzfj94xgla4";
- };
- }
- {
- goPackagePath = "github.com/libp2p/go-libp2p-circuit";
- fetch = {
- type = "git";
- url = "https://github.com/libp2p/go-libp2p-circuit";
- rev = "v0.0.4";
- sha256 = "1bnwjf3p5r8ng360l2fjx0szdiwm2yfiifjkwflin00hx0gzyq7d";
- };
- }
- {
- goPackagePath = "github.com/libp2p/go-libp2p-connmgr";
- fetch = {
- type = "git";
- url = "https://github.com/libp2p/go-libp2p-connmgr";
- rev = "v0.0.1";
- sha256 = "07kvnhavr4k1birgqp9c4y0yl1ii3pl1cc8pn4dzci87krachz2z";
- };
- }
- {
- goPackagePath = "github.com/libp2p/go-libp2p-crypto";
- fetch = {
- type = "git";
- url = "https://github.com/libp2p/go-libp2p-crypto";
- rev = "v0.0.1";
- sha256 = "0wgq0ayg1656gvmi4d1nwgq7dbnyyb30xp3z571q495mmq483fbk";
- };
- }
- {
- goPackagePath = "github.com/libp2p/go-libp2p-daemon";
- fetch = {
- type = "git";
- url = "https://github.com/libp2p/go-libp2p-daemon";
- rev = "v0.0.6";
- sha256 = "0pq6557ykbi3a8pasvm9zlhdysrq6h1fj48z4imv2gq30nmy3l6l";
- };
- }
- {
- goPackagePath = "github.com/libp2p/go-libp2p-discovery";
- fetch = {
- type = "git";
- url = "https://github.com/libp2p/go-libp2p-discovery";
- rev = "v0.0.1";
- sha256 = "06h621llfx7bmkcnrkkxb3j85221albf18ig8mbh9c8wrpmsi438";
- };
- }
- {
- goPackagePath = "github.com/libp2p/go-libp2p-host";
- fetch = {
- type = "git";
- url = "https://github.com/libp2p/go-libp2p-host";
- rev = "v0.0.1";
- sha256 = "102qyl7qkmq8p1gpxbfi5z2lrd8mysji28fx25ma4h312ci96rqz";
- };
- }
- {
- goPackagePath = "github.com/libp2p/go-libp2p-interface-connmgr";
- fetch = {
- type = "git";
- url = "https://github.com/libp2p/go-libp2p-interface-connmgr";
- rev = "v0.0.1";
- sha256 = "107khappq5w48p17s22cp7djd5ii1bbg968wsa9bq9znzxdkzm43";
- };
- }
- {
- goPackagePath = "github.com/libp2p/go-libp2p-interface-pnet";
- fetch = {
- type = "git";
- url = "https://github.com/libp2p/go-libp2p-interface-pnet";
- rev = "v0.0.1";
- sha256 = "1kqxm4rpcss2ajfnc3gzww4ng5pjj5qc0szr5x2vz15vvx2kp9bi";
- };
- }
- {
- goPackagePath = "github.com/libp2p/go-libp2p-kad-dht";
- fetch = {
- type = "git";
- url = "https://github.com/libp2p/go-libp2p-kad-dht";
- rev = "v0.0.7";
- sha256 = "1nbq4240vnd3sfmiy8ry6pwnnf2k7hnwn1ln32mgqq32dywx664r";
- };
- }
- {
- goPackagePath = "github.com/libp2p/go-libp2p-kbucket";
- fetch = {
- type = "git";
- url = "https://github.com/libp2p/go-libp2p-kbucket";
- rev = "v0.1.1";
- sha256 = "0pgy89mp9r23axs8gapnkzks89q7539l2g46r6ffyd4a675qampg";
- };
- }
- {
- goPackagePath = "github.com/libp2p/go-libp2p-loggables";
- fetch = {
- type = "git";
- url = "https://github.com/libp2p/go-libp2p-loggables";
- rev = "v0.0.1";
- sha256 = "15whxhipm06fnd8ky7gxf59bvbw2wxl44g0v2dbnbr2j9a2n5ivv";
- };
- }
- {
- goPackagePath = "github.com/libp2p/go-libp2p-metrics";
- fetch = {
- type = "git";
- url = "https://github.com/libp2p/go-libp2p-metrics";
- rev = "v0.0.1";
- sha256 = "14wvnmcwr40iwbpvfwdcbb6cff7rcrhqf42z32aqjhisp32irn1x";
- };
- }
- {
- goPackagePath = "github.com/libp2p/go-libp2p-nat";
- fetch = {
- type = "git";
- url = "https://github.com/libp2p/go-libp2p-nat";
- rev = "v0.0.4";
- sha256 = "179d5jj4sznjns9p17gmrd86pf7ba7k4qq5kiv17ra4b666kd88f";
- };
- }
- {
- goPackagePath = "github.com/libp2p/go-libp2p-net";
- fetch = {
- type = "git";
- url = "https://github.com/libp2p/go-libp2p-net";
- rev = "v0.0.2";
- sha256 = "0cfi57hvkz6yhi2nw63p2p7fnaw91zrcphxmchk2a4xn5rnwgjak";
- };
- }
- {
- goPackagePath = "github.com/libp2p/go-libp2p-netutil";
- fetch = {
- type = "git";
- url = "https://github.com/libp2p/go-libp2p-netutil";
- rev = "v0.0.1";
- sha256 = "1zzkfddfmja6dsk8nxybi5cccd2v38sahp8xx676a38g3ydvqvs6";
- };
- }
- {
- goPackagePath = "github.com/libp2p/go-libp2p-peer";
- fetch = {
- type = "git";
- url = "https://github.com/libp2p/go-libp2p-peer";
- rev = "v0.0.1";
- sha256 = "0hixdbj47njyzj885fzm9dlylw21g406yqxfidag2qrn06b2qicl";
- };
- }
- {
- goPackagePath = "github.com/libp2p/go-libp2p-peerstore";
- fetch = {
- type = "git";
- url = "https://github.com/libp2p/go-libp2p-peerstore";
- rev = "v0.0.2";
- sha256 = "1asfl9sp3mi5pg9gpy45wvsc8hpdf48i7ml37sh5sjmn30aj4f6i";
- };
- }
- {
- goPackagePath = "github.com/libp2p/go-libp2p-pnet";
- fetch = {
- type = "git";
- url = "https://github.com/libp2p/go-libp2p-pnet";
- rev = "v0.0.1";
- sha256 = "1gh2hw0dbywwp7vr4n9xws8nxraa00rigzxa86g8nf50n9cdq2cr";
- };
- }
- {
- goPackagePath = "github.com/libp2p/go-libp2p-protocol";
- fetch = {
- type = "git";
- url = "https://github.com/libp2p/go-libp2p-protocol";
- rev = "v0.0.1";
- sha256 = "18fhmhfsdzw7dd618y4344qka08zq4b5jzpdgxbglar9dkkralg7";
- };
- }
- {
- goPackagePath = "github.com/libp2p/go-libp2p-pubsub";
- fetch = {
- type = "git";
- url = "https://github.com/libp2p/go-libp2p-pubsub";
- rev = "v0.0.1";
- sha256 = "1n67ajql9527mzrc06jk4rb3xb63vmlnzx6i4aywcfn66pjg9kmh";
- };
- }
- {
- goPackagePath = "github.com/libp2p/go-libp2p-pubsub-router";
- fetch = {
- type = "git";
- url = "https://github.com/libp2p/go-libp2p-pubsub-router";
- rev = "v0.0.3";
- sha256 = "1cjscq213ky11vzdalcfnkqkj2s53npymzjvv6ahn34c6bidan4s";
- };
- }
- {
- goPackagePath = "github.com/libp2p/go-libp2p-quic-transport";
- fetch = {
- type = "git";
- url = "https://github.com/libp2p/go-libp2p-quic-transport";
- rev = "v0.0.3";
- sha256 = "0kiisb35fvblg4xaz188by4rn90chynzm94f83prqq7h9y9b3s5s";
- };
- }
- {
- goPackagePath = "github.com/libp2p/go-libp2p-record";
- fetch = {
- type = "git";
- url = "https://github.com/libp2p/go-libp2p-record";
- rev = "v0.0.1";
- sha256 = "131zjkplylwam3gnw8f9lfvjgzi8xbjhb2qf57fys4c89pz868mg";
- };
- }
- {
- goPackagePath = "github.com/libp2p/go-libp2p-routing";
- fetch = {
- type = "git";
- url = "https://github.com/libp2p/go-libp2p-routing";
- rev = "v0.0.1";
- sha256 = "09mm12abdzy6k1dw3ix8v2c8w3warc52jazvwwwvwhlq924jzdp0";
- };
- }
- {
- goPackagePath = "github.com/libp2p/go-libp2p-routing-helpers";
- fetch = {
- type = "git";
- url = "https://github.com/libp2p/go-libp2p-routing-helpers";
- rev = "v0.0.2";
- sha256 = "0lxpf1vzhapj2q18wv5g7kkqhnwz1b08lyxjp57qa33z5j4jclgw";
- };
- }
- {
- goPackagePath = "github.com/libp2p/go-libp2p-secio";
- fetch = {
- type = "git";
- url = "https://github.com/libp2p/go-libp2p-secio";
- rev = "v0.0.1";
- sha256 = "1v51whaww3bv14kl7gpapq6ld6m6v7w9cipkflh8czpgrs096yyq";
- };
- }
- {
- goPackagePath = "github.com/libp2p/go-libp2p-swarm";
- fetch = {
- type = "git";
- url = "https://github.com/libp2p/go-libp2p-swarm";
- rev = "v0.0.2";
- sha256 = "0v75wb96rddjxd8faqri076xba5ffqg4bpddw16k4bw8kk2b46w0";
- };
- }
- {
- goPackagePath = "github.com/libp2p/go-libp2p-transport";
- fetch = {
- type = "git";
- url = "https://github.com/libp2p/go-libp2p-transport";
- rev = "v0.0.4";
- sha256 = "0pgyxzb489xzcm9q11br6sgsz166cw65xhfcksy3yy5n0c1c6mvb";
- };
- }
- {
- goPackagePath = "github.com/libp2p/go-libp2p-transport-upgrader";
- fetch = {
- type = "git";
- url = "https://github.com/libp2p/go-libp2p-transport-upgrader";
- rev = "v0.0.1";
- sha256 = "0czy16zvbz2k9jn8w7iddf7xph3bn054abxybjxm4dhp7g83mf65";
- };
- }
- {
- goPackagePath = "github.com/libp2p/go-maddr-filter";
- fetch = {
- type = "git";
- url = "https://github.com/libp2p/go-maddr-filter";
- rev = "v0.0.1";
- sha256 = "039qj86k4dam6kch52kcdk5dsg36gfrfwambqjg1nv2xaq8j1hx8";
- };
- }
- {
- goPackagePath = "github.com/libp2p/go-mplex";
- fetch = {
- type = "git";
- url = "https://github.com/libp2p/go-mplex";
- rev = "v0.0.1";
- sha256 = "1f0h2hmh4c0xvv1fsjciyc8v7sn0ymanr9my2smr6z1nar7nziqn";
- };
- }
- {
- goPackagePath = "github.com/libp2p/go-msgio";
- fetch = {
- type = "git";
- url = "https://github.com/libp2p/go-msgio";
- rev = "v0.0.1";
- sha256 = "1my8w8k7c3mz2aazsg45q7nlr4ywmix6jspri2sv7fqrs1kjxrjm";
- };
- }
- {
- goPackagePath = "github.com/libp2p/go-nat";
- fetch = {
- type = "git";
- url = "https://github.com/libp2p/go-nat";
- rev = "v0.0.3";
- sha256 = "19ihybcpmz2wpi6mk3rhgjbv4cgiiang92d9ym3xw7y3iv8mlzc0";
- };
- }
- {
- goPackagePath = "github.com/libp2p/go-reuseport";
- fetch = {
- type = "git";
- url = "https://github.com/libp2p/go-reuseport";
- rev = "v0.0.1";
- sha256 = "1qbxhycckjv7mazg06llbx9708f1z4453yaxxp4641gwcrbns7zk";
- };
- }
- {
- goPackagePath = "github.com/libp2p/go-reuseport-transport";
- fetch = {
- type = "git";
- url = "https://github.com/libp2p/go-reuseport-transport";
- rev = "v0.0.2";
- sha256 = "14lqhdkx5nmrvislim7qlvnx78dnfngxvcrll9d851r04p703qrn";
- };
- }
- {
- goPackagePath = "github.com/libp2p/go-stream-muxer";
- fetch = {
- type = "git";
- url = "https://github.com/libp2p/go-stream-muxer";
- rev = "v0.0.1";
- sha256 = "1swqw77jn00a7cl3lb7x5wyybhv4mkqk36z407ihid44gds7djqh";
- };
- }
- {
- goPackagePath = "github.com/libp2p/go-tcp-transport";
- fetch = {
- type = "git";
- url = "https://github.com/libp2p/go-tcp-transport";
- rev = "v0.0.2";
- sha256 = "0qrl4mgs16wnc0dnwg3x2k3mlv9grzl8maclbkq22vqk34c5in4y";
- };
- }
- {
- goPackagePath = "github.com/libp2p/go-testutil";
- fetch = {
- type = "git";
- url = "https://github.com/libp2p/go-testutil";
- rev = "v0.0.1";
- sha256 = "1jmqk6cyp52fgmayx0dwas27rswrvn9lpsiv6bnabhz1gvb91ahp";
- };
- }
- {
- goPackagePath = "github.com/libp2p/go-ws-transport";
- fetch = {
- type = "git";
- url = "https://github.com/libp2p/go-ws-transport";
- rev = "v0.0.2";
- sha256 = "1j321z8m82a43v70jmglh2v0hv1wmgsizr5zrlgwqsx3wsih9phx";
- };
- }
- {
- goPackagePath = "github.com/lucas-clemente/quic-go";
- fetch = {
- type = "git";
- url = "https://github.com/lucas-clemente/quic-go";
- rev = "v0.11.1";
- sha256 = "1vhswcbiyaq94rwc6vd8vl13x3lfwilpfw7kqx7bflxj7zvvd18y";
- };
- }
- {
- goPackagePath = "github.com/marten-seemann/qtls";
- fetch = {
- type = "git";
- url = "https://github.com/marten-seemann/qtls";
- rev = "v0.2.3";
- sha256 = "0b9p7bwkm9hfg1mb565q4nw5k7xyks0z2xagz5fp95azy2psbnfg";
- };
- }
- {
- goPackagePath = "github.com/mattn/go-colorable";
- fetch = {
- type = "git";
- url = "https://github.com/mattn/go-colorable";
- rev = "v0.1.1";
- sha256 = "0l640974j804c1yyjfgyxqlsivz0yrzmbql4mhcw2azryigkp08p";
- };
- }
- {
- goPackagePath = "github.com/mattn/go-isatty";
- fetch = {
- type = "git";
- url = "https://github.com/mattn/go-isatty";
- rev = "v0.0.5";
- sha256 = "114d5xm8rfxplzd7nxz97gfngb4bhqy102szl084d1afcxsvm4aa";
- };
- }
- {
- goPackagePath = "github.com/mattn/go-runewidth";
- fetch = {
- type = "git";
- url = "https://github.com/mattn/go-runewidth";
- rev = "v0.0.4";
- sha256 = "00b3ssm7wiqln3k54z2wcnxr3k3c7m1ybyhb9h8ixzbzspld0qzs";
- };
- }
- {
- goPackagePath = "github.com/matttproud/golang_protobuf_extensions";
- fetch = {
- type = "git";
- url = "https://github.com/matttproud/golang_protobuf_extensions";
- rev = "v1.0.1";
- sha256 = "1d0c1isd2lk9pnfq2nk0aih356j30k3h1gi2w0ixsivi5csl7jya";
- };
- }
- {
- goPackagePath = "github.com/mgutz/ansi";
- fetch = {
- type = "git";
- url = "https://github.com/mgutz/ansi";
- rev = "9520e82c474b";
- sha256 = "00bz22314j26736w1f0q4jy9d9dfaml17vn890n5zqy3cmvmww1j";
- };
- }
- {
- goPackagePath = "github.com/miekg/dns";
- fetch = {
- type = "git";
- url = "https://github.com/miekg/dns";
- rev = "v1.1.4";
- sha256 = "17apnm7q5v7bhmpvrk3rbi0gjqk8z3cwkm90q1dfzrfvbvp71z5d";
- };
- }
- {
- goPackagePath = "github.com/minio/blake2b-simd";
- fetch = {
- type = "git";
- url = "https://github.com/minio/blake2b-simd";
- rev = "3f5f724cb5b1";
- sha256 = "0b6jbnj62c0gmmfd4zdmh8xbg01p80f13yygir9xprqkzk6fikmd";
- };
- }
- {
- goPackagePath = "github.com/minio/sha256-simd";
- fetch = {
- type = "git";
- url = "https://github.com/minio/sha256-simd";
- rev = "2d45a736cd16";
- sha256 = "1hfhpy8fczd0mnwvxkp2nk3dydv1nzqx59ig8ajqjraq6kli66p5";
- };
- }
- {
- goPackagePath = "github.com/mitchellh/go-homedir";
- fetch = {
- type = "git";
- url = "https://github.com/mitchellh/go-homedir";
- rev = "v1.1.0";
- sha256 = "0ydzkipf28hwj2bfxqmwlww47khyk6d152xax4bnyh60f4lq3nx1";
- };
- }
- {
- goPackagePath = "github.com/mr-tron/base58";
- fetch = {
- type = "git";
- url = "https://github.com/mr-tron/base58";
- rev = "v1.1.0";
- sha256 = "00w28mhinf8dvzrh71dijryfhrggi7j9wqiiyddpk41ixx3rmfy4";
- };
- }
- {
- goPackagePath = "github.com/multiformats/go-base32";
- fetch = {
- type = "git";
- url = "https://github.com/multiformats/go-base32";
- rev = "v0.0.3";
- sha256 = "1f4pjnqw4687p8l7vr1qaq6g6i9pcr80fc4pk2kpgrcwzpd1lprg";
- };
- }
- {
- goPackagePath = "github.com/multiformats/go-multiaddr";
- fetch = {
- type = "git";
- url = "https://github.com/multiformats/go-multiaddr";
- rev = "v0.0.1";
- sha256 = "1r1w4036bpi97xb70833bpdpdhqm5gl6m8fllfdxqbg10ab1a938";
- };
- }
- {
- goPackagePath = "github.com/multiformats/go-multiaddr-dns";
- fetch = {
- type = "git";
- url = "https://github.com/multiformats/go-multiaddr-dns";
- rev = "v0.0.2";
- sha256 = "1fnv7lbd7q1kssaxp2fgrvj9dhn5aiqspd4090iqwys5hjr1xvmf";
- };
- }
- {
- goPackagePath = "github.com/multiformats/go-multiaddr-net";
- fetch = {
- type = "git";
- url = "https://github.com/multiformats/go-multiaddr-net";
- rev = "v0.0.1";
- sha256 = "1075xs6gbiblfbwgf84yvg1nrywmvvrrxzqa8wp9j75zyakab81p";
- };
- }
- {
- goPackagePath = "github.com/multiformats/go-multibase";
- fetch = {
- type = "git";
- url = "https://github.com/multiformats/go-multibase";
- rev = "v0.0.1";
- sha256 = "083adnq79pyxhngv91saygh076196qin1nw1vppz7nk04zw4aymg";
- };
- }
- {
- goPackagePath = "github.com/multiformats/go-multicodec";
- fetch = {
- type = "git";
- url = "https://github.com/multiformats/go-multicodec";
- rev = "v0.1.6";
- sha256 = "08wnxhb4rd7rln2mzxnhv3csy19l9qgf5dx3437x4zsgkaqabb96";
- };
- }
- {
- goPackagePath = "github.com/multiformats/go-multihash";
- fetch = {
- type = "git";
- url = "https://github.com/multiformats/go-multihash";
- rev = "v0.0.1";
- sha256 = "1aw4ra22g3l98bk7c3h1n968vi5a3gk528g4byj3xig76r0r731n";
- };
- }
- {
- goPackagePath = "github.com/multiformats/go-multistream";
- fetch = {
- type = "git";
- url = "https://github.com/multiformats/go-multistream";
- rev = "v0.0.1";
- sha256 = "1k79w7zd92cs9sjvsr31vi6n3j30xqz83mb3a3pqva11wl1gbnlz";
- };
- }
- {
- goPackagePath = "github.com/onsi/ginkgo";
- fetch = {
- type = "git";
- url = "https://github.com/onsi/ginkgo";
- rev = "v1.7.0";
- sha256 = "14wgpdrvpc35rdz3859bz53sc1g4vpr1fysy15wy3ff9gmqs14yg";
- };
- }
- {
- goPackagePath = "github.com/onsi/gomega";
- fetch = {
- type = "git";
- url = "https://github.com/onsi/gomega";
- rev = "v1.4.3";
- sha256 = "1c8rqg5i2hz3snmq7s41yar1zjnzilb0fyiyhkg83v97afcfx79v";
- };
- }
- {
- goPackagePath = "github.com/opentracing/opentracing-go";
- fetch = {
- type = "git";
- url = "https://github.com/opentracing/opentracing-go";
- rev = "v1.0.2";
- sha256 = "0i0ghg94dg8lk05mw5n23983wq04yjvkjmdkc9z5y1f3508938h9";
- };
- }
- {
- goPackagePath = "github.com/pkg/errors";
- fetch = {
- type = "git";
- url = "https://github.com/pkg/errors";
- rev = "v0.8.1";
- sha256 = "0g5qcb4d4fd96midz0zdk8b9kz8xkzwfa8kr1cliqbg8sxsy5vd1";
- };
- }
- {
- goPackagePath = "github.com/pmezard/go-difflib";
- fetch = {
- type = "git";
- url = "https://github.com/pmezard/go-difflib";
- rev = "v1.0.0";
- sha256 = "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw";
- };
- }
- {
- goPackagePath = "github.com/polydawn/refmt";
- fetch = {
- type = "git";
- url = "https://github.com/polydawn/refmt";
- rev = "df39d6c2d992";
- sha256 = "07hj5wimwgwj8xzzbvk0y7d6fmqf44d7fjicp1digh4kvjsbg3dz";
- };
- }
- {
- goPackagePath = "github.com/prometheus/client_golang";
- fetch = {
- type = "git";
- url = "https://github.com/prometheus/client_golang";
- rev = "v0.9.2";
- sha256 = "02b4yg6rfag0m3j0i39sillcm5xczwv8h133vn12yr8qw04cnigs";
- };
- }
- {
- goPackagePath = "github.com/prometheus/client_model";
- fetch = {
- type = "git";
- url = "https://github.com/prometheus/client_model";
- rev = "5c3871d89910";
- sha256 = "04psf81l9fjcwascsys428v03fx4fi894h7fhrj2vvcz723q57k0";
- };
- }
- {
- goPackagePath = "github.com/prometheus/common";
- fetch = {
- type = "git";
- url = "https://github.com/prometheus/common";
- rev = "4724e9255275";
- sha256 = "0pcx8hlnrxx5nnmpk786cn99rsgqk1jrd3c9f6fsx8qd8y5iwjy6";
- };
- }
- {
- goPackagePath = "github.com/prometheus/procfs";
- fetch = {
- type = "git";
- url = "https://github.com/prometheus/procfs";
- rev = "1dc9a6cbc91a";
- sha256 = "1zlv1x30xp7z5c3vn5vp870v4bjim0zcidzc3mr2l3xhazc0svab";
- };
- }
- {
- goPackagePath = "github.com/rs/cors";
- fetch = {
- type = "git";
- url = "https://github.com/rs/cors";
- rev = "v1.6.0";
- sha256 = "12j838rj6xl9y1xqs1mnh9zkc3dkpn94iqkp6jkdkxw631aa94dr";
- };
- }
- {
- goPackagePath = "github.com/sirupsen/logrus";
- fetch = {
- type = "git";
- url = "https://github.com/sirupsen/logrus";
- rev = "v1.0.5";
- sha256 = "0g5z7al7kky11ai2dhac6gkp3b5pxsvx72yj3xg4wg3265gbn7yz";
- };
- }
- {
- goPackagePath = "github.com/smartystreets/assertions";
- fetch = {
- type = "git";
- url = "https://github.com/smartystreets/assertions";
- rev = "b2de0cb4f26d";
- sha256 = "1i7ldgavgl35c7gk25p7bvdr282ckng090zr4ch9mk1705akx09y";
- };
- }
- {
- goPackagePath = "github.com/smartystreets/goconvey";
- fetch = {
- type = "git";
- url = "https://github.com/smartystreets/goconvey";
- rev = "a17d461953aa";
- sha256 = "1942lhpv7c16dq27wjj2cjxsgra5lpsnxn52a9zvj8d0nip8nhq6";
- };
- }
- {
- goPackagePath = "github.com/spaolacci/murmur3";
- fetch = {
- type = "git";
- url = "https://github.com/spaolacci/murmur3";
- rev = "f09979ecbc72";
- sha256 = "1lv3zyz3jy2d76bhvvs8svygx66606iygdvwy5cwc0p5z8yghq25";
- };
- }
- {
- goPackagePath = "github.com/spf13/pflag";
- fetch = {
- type = "git";
- url = "https://github.com/spf13/pflag";
- rev = "v1.0.1";
- sha256 = "0nr4mdpfhhk94hq4ymn5b2sxc47b29p1akxd8b0hx4dvdybmipb5";
- };
- }
- {
- goPackagePath = "github.com/stretchr/objx";
- fetch = {
- type = "git";
- url = "https://github.com/stretchr/objx";
- rev = "v0.1.0";
- sha256 = "19ynspzjdynbi85xw06mh8ad5j0qa1vryvxjgvbnyrr8rbm4vd8w";
- };
- }
- {
- goPackagePath = "github.com/stretchr/testify";
- fetch = {
- type = "git";
- url = "https://github.com/stretchr/testify";
- rev = "v1.3.0";
- sha256 = "0wjchp2c8xbgcbbq32w3kvblk6q6yn533g78nxl6iskq6y95lxsy";
- };
- }
- {
- goPackagePath = "github.com/syndtr/goleveldb";
- fetch = {
- type = "git";
- url = "https://github.com/syndtr/goleveldb";
- rev = "v1.0.0";
- sha256 = "042k0gbzs5waqpxmd7nv5h93mlva861s66c3s9gfg1fym5dx4vmd";
- };
- }
- {
- goPackagePath = "github.com/texttheater/golang-levenshtein";
- fetch = {
- type = "git";
- url = "https://github.com/texttheater/golang-levenshtein";
- rev = "d188e65d659e";
- sha256 = "0dmaxmwz2vx2v51hybjpcwz260apaq3v8gm84ran38fcs8xl529c";
- };
- }
- {
- goPackagePath = "github.com/urfave/cli";
- fetch = {
- type = "git";
- url = "https://github.com/urfave/cli";
- rev = "v1.20.0";
- sha256 = "0y6f4sbzkiiwrxbl15biivj8c7qwxnvm3zl2dd3mw4wzg4x10ygj";
- };
- }
- {
- goPackagePath = "github.com/warpfork/go-wish";
- fetch = {
- type = "git";
- url = "https://github.com/warpfork/go-wish";
- rev = "5ad1f5abf436";
- sha256 = "1jns04jdb07f695ipf0pfal2k7ss47jxgdi2ahqmskzglb26zm62";
- };
- }
- {
- goPackagePath = "github.com/whyrusleeping/base32";
- fetch = {
- type = "git";
- url = "https://github.com/whyrusleeping/base32";
- rev = "c30ac30633cc";
- sha256 = "060jj8j9rnm3m47vv7jfz9ddybch3ryvn1p9vhc63bqn73knalhf";
- };
- }
- {
- goPackagePath = "github.com/whyrusleeping/cbor";
- fetch = {
- type = "git";
- url = "https://github.com/whyrusleeping/cbor";
- rev = "63513f603b11";
- sha256 = "0v3kgzk8grz17my2vhv12qi9dgpx3z86hy9ff1c4qw83mg8hm67s";
- };
- }
- {
- goPackagePath = "github.com/whyrusleeping/chunker";
- fetch = {
- type = "git";
- url = "https://github.com/whyrusleeping/chunker";
- rev = "fe64bd25879f";
- sha256 = "13q4flp9iwwyi0izqar786h42713rf3m22qlvg0masbmdi69qjr2";
- };
- }
- {
- goPackagePath = "github.com/whyrusleeping/go-ctrlnet";
- fetch = {
- type = "git";
- url = "https://github.com/whyrusleeping/go-ctrlnet";
- rev = "f564fbbdaa95";
- sha256 = "1ni4fb9bbaiicy8yd9w8i442v94k59czlmpvjqg0y5am67x73gxk";
- };
- }
- {
- goPackagePath = "github.com/whyrusleeping/go-keyspace";
- fetch = {
- type = "git";
- url = "https://github.com/whyrusleeping/go-keyspace";
- rev = "5b898ac5add1";
- sha256 = "0fkk7i7qxwbz1g621mm6a6inb69lr57cyc9ayyfiwhnjwfz78rbb";
- };
- }
- {
- goPackagePath = "github.com/whyrusleeping/go-logging";
- fetch = {
- type = "git";
- url = "https://github.com/whyrusleeping/go-logging";
- rev = "0457bb6b88fc";
- sha256 = "1bl180mhg03hdqhyr5sfjcg16ns2ppal625g9ag5m10l2pvlwnqn";
- };
- }
- {
- goPackagePath = "github.com/whyrusleeping/go-notifier";
- fetch = {
- type = "git";
- url = "https://github.com/whyrusleeping/go-notifier";
- rev = "097c5d47330f";
- sha256 = "081h4a33603n0mlh53by1mg21rr42xjvxk7r10x8l4v671bq0kha";
- };
- }
- {
- goPackagePath = "github.com/whyrusleeping/go-smux-multiplex";
- fetch = {
- type = "git";
- url = "https://github.com/whyrusleeping/go-smux-multiplex";
- rev = "v3.0.16";
- sha256 = "0y696zqrbdyvz9gkxd9armhxa82z2fg0wpm8yqp7swyxdsg15f8k";
- };
- }
- {
- goPackagePath = "github.com/whyrusleeping/go-smux-multistream";
- fetch = {
- type = "git";
- url = "https://github.com/whyrusleeping/go-smux-multistream";
- rev = "v2.0.2";
- sha256 = "0sbxmn56fx1py6nijk9prkm4rqswynsw68frvlm11w5m57szi5pj";
- };
- }
- {
- goPackagePath = "github.com/whyrusleeping/go-smux-yamux";
- fetch = {
- type = "git";
- url = "https://github.com/whyrusleeping/go-smux-yamux";
- rev = "v2.0.9";
- sha256 = "046nx0d9974shd6y3ic2dznij0yzaijp6z6g46kpa4iwf2w41jwk";
- };
- }
- {
- goPackagePath = "github.com/whyrusleeping/go-sysinfo";
- fetch = {
- type = "git";
- url = "https://github.com/whyrusleeping/go-sysinfo";
- rev = "4a357d4b90b1";
- sha256 = "0s6yjp9incc579wbbga33vq0hcanv8j2xh9l90ya0r4fihz39jiq";
- };
- }
- {
- goPackagePath = "github.com/whyrusleeping/mafmt";
- fetch = {
- type = "git";
- url = "https://github.com/whyrusleeping/mafmt";
- rev = "v1.2.8";
- sha256 = "0sr602pbxid3ncfd8v0dgjd1a79qg3k4bzniq811jjdq9zm9jccv";
- };
- }
- {
- goPackagePath = "github.com/whyrusleeping/mdns";
- fetch = {
- type = "git";
- url = "https://github.com/whyrusleeping/mdns";
- rev = "ef14215e6b30";
- sha256 = "17hid8s9asqyqgbw20wp4ip5sy03b5sayzld2i09w9l42217502q";
- };
- }
- {
- goPackagePath = "github.com/whyrusleeping/multiaddr-filter";
- fetch = {
- type = "git";
- url = "https://github.com/whyrusleeping/multiaddr-filter";
- rev = "e903e4adabd7";
- sha256 = "0ksd8vnp207dvphmhrazwldj8if900fnyc1pqa9pfvj04qp92640";
- };
- }
- {
- goPackagePath = "github.com/whyrusleeping/tar-utils";
- fetch = {
- type = "git";
- url = "https://github.com/whyrusleeping/tar-utils";
- rev = "8c6c8ba81d5c";
- sha256 = "14jjdw3yics0k467xsyk388684wdpi0bbx8nqj0y4pqxa0s0in6s";
- };
- }
- {
- goPackagePath = "github.com/whyrusleeping/timecache";
- fetch = {
- type = "git";
- url = "https://github.com/whyrusleeping/timecache";
- rev = "cfcb2f1abfee";
- sha256 = "0nnra7ivq7cj34rj2ib8hgfdpik3smr1hy7x18svhfin8z1xsj2s";
- };
- }
- {
- goPackagePath = "github.com/whyrusleeping/yamux";
- fetch = {
- type = "git";
- url = "https://github.com/whyrusleeping/yamux";
- rev = "v1.1.5";
- sha256 = "08a4v0akdxg16g6mi32ixsldjbg3pp3j4x0xicaxc4fd6cfmi1wv";
- };
- }
- {
- goPackagePath = "go4.org";
- fetch = {
- type = "git";
- url = "https://github.com/go4org/go4";
- rev = "ce4c26f7be8e";
- sha256 = "0lzvmspdqqf251lrgawnss2wn3bnd3pj89xjxlvpgg6q0853580j";
- };
- }
- {
- goPackagePath = "golang.org/x/crypto";
- fetch = {
- type = "git";
- url = "https://go.googlesource.com/crypto";
- rev = "8dd112bcdc25";
- sha256 = "0gbcz7gxmgg88s28vb90dsp1vdq0har7zvg2adsqbp8bm05x9q6b";
- };
- }
- {
- goPackagePath = "golang.org/x/net";
- fetch = {
- type = "git";
- url = "https://go.googlesource.com/net";
- rev = "c95aed5357e7";
- sha256 = "0b1vjnzd67sp9lggs0yn9qfgp6f5djqgx40lyncd7j720q04kk2h";
- };
- }
- {
- goPackagePath = "golang.org/x/sync";
- fetch = {
- type = "git";
- url = "https://go.googlesource.com/sync";
- rev = "42b317875d0f";
- sha256 = "0mrjhk7al7yyh76x9flvxy4jm5jyqh2fxbxagpaazxn1xdgkaif3";
- };
- }
- {
- goPackagePath = "golang.org/x/sys";
- fetch = {
- type = "git";
- url = "https://go.googlesource.com/sys";
- rev = "b6889370fb10";
- sha256 = "01c1ag1qr95iksp38rypfbrlk6sdqjhk7jgj3qf342ndhvqb08sa";
- };
- }
- {
- goPackagePath = "golang.org/x/text";
- fetch = {
- type = "git";
- url = "https://go.googlesource.com/text";
- rev = "v0.3.0";
- sha256 = "0r6x6zjzhr8ksqlpiwm5gdd7s209kwk5p4lw54xjvz10cs3qlq19";
- };
- }
- {
- goPackagePath = "golang.org/x/tools";
- fetch = {
- type = "git";
- url = "https://go.googlesource.com/tools";
- rev = "90fa682c2a6e";
- sha256 = "03ic2xsy51jw9749wl7gszdbz99iijbd2bckgygl6cm9w5m364ak";
- };
- }
- {
- goPackagePath = "golang.org/x/xerrors";
- fetch = {
- type = "git";
- url = "https://go.googlesource.com/xerrors";
- rev = "a5947ffaace3";
- sha256 = "1bgn7j704mf891qcwcbqzr5sq9ar7z2a81887k8pp0b1g2giwgfz";
- };
- }
- {
- goPackagePath = "google.golang.org/genproto";
- fetch = {
- type = "git";
- url = "https://github.com/google/go-genproto";
- rev = "11092d34479b";
- sha256 = "12qcrjq658zga5fj4n0wgm11pzpr3gafwg25cinl5qcq4p9cnl0r";
- };
- }
- {
- goPackagePath = "gopkg.in/airbrake/gobrake.v2";
- fetch = {
- type = "git";
- url = "https://gopkg.in/airbrake/gobrake.v2";
- rev = "v2.0.9";
- sha256 = "1x06f7n7qlyzqgyz0sdfcidf3w4ldn6zs6qx2mhibggk2z4whcjw";
- };
- }
- {
- goPackagePath = "gopkg.in/check.v1";
- fetch = {
- type = "git";
- url = "https://gopkg.in/check.v1";
- rev = "788fd7840127";
- sha256 = "0v3bim0j375z81zrpr5qv42knqs0y2qv2vkjiqi5axvb78slki1a";
- };
- }
- {
- goPackagePath = "gopkg.in/cheggaaa/pb.v1";
- fetch = {
- type = "git";
- url = "https://gopkg.in/cheggaaa/pb.v1";
- rev = "v1.0.28";
- sha256 = "13a66cqbpdif804qj12z9ad8r24va9q41gfk71qbc4zg1wsxs3rh";
- };
- }
- {
- goPackagePath = "gopkg.in/fsnotify.v1";
- fetch = {
- type = "git";
- url = "https://gopkg.in/fsnotify.v1";
- rev = "v1.4.7";
- sha256 = "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g";
- };
- }
- {
- goPackagePath = "gopkg.in/gemnasium/logrus-airbrake-hook.v2";
- fetch = {
- type = "git";
- url = "https://gopkg.in/gemnasium/logrus-airbrake-hook.v2";
- rev = "v2.1.2";
- sha256 = "0sbg0dn6cysmf8f2bi209jwl4jnpiwp4rdghnxlzirw3c32ms5y5";
- };
- }
- {
- goPackagePath = "gopkg.in/tomb.v1";
- fetch = {
- type = "git";
- url = "https://gopkg.in/tomb.v1";
- rev = "dd632973f1e7";
- sha256 = "1lqmq1ag7s4b3gc3ddvr792c5xb5k6sfn0cchr3i2s7f1c231zjv";
- };
- }
- {
- goPackagePath = "gopkg.in/yaml.v2";
- fetch = {
- type = "git";
- url = "https://gopkg.in/yaml.v2";
- rev = "v2.2.1";
- sha256 = "0dwjrs2lp2gdlscs7bsrmyc5yf6mm4fvgw71bzr9mv2qrd2q73s1";
- };
- }
- {
- goPackagePath = "gotest.tools";
- fetch = {
- type = "git";
- url = "https://github.com/gotestyourself/gotest.tools";
- rev = "v2.1.0";
- sha256 = "11k6hmfhaf0qxpddp3i5kfpacdx51q6pv4n1kn3jnf1hjs0yny2k";
- };
- }
- {
- goPackagePath = "gotest.tools/gotestsum";
- fetch = {
- type = "git";
- url = "https://github.com/gotestyourself/gotestsum";
- rev = "v0.3.3";
- sha256 = "0wkh49yixvh5y1z96sanjfyvd7c63pvryz605lz0hzdbvcwciy7i";
- };
- }
-]
diff --git a/pkgs/applications/networking/mailreaders/aerc/default.nix b/pkgs/applications/networking/mailreaders/aerc/default.nix
index e4585f345ea..e5d8c728a19 100644
--- a/pkgs/applications/networking/mailreaders/aerc/default.nix
+++ b/pkgs/applications/networking/mailreaders/aerc/default.nix
@@ -5,11 +5,11 @@
buildGoModule rec {
pname = "aerc";
- version = "0.1.0";
+ version = "0.1.1";
src = fetchurl {
url = "https://git.sr.ht/~sircmpwn/aerc/archive/${version}.tar.gz";
- sha256 = "0wx9l097s51ih4khk231f9fs3vw55an8l2jx3q13v7y20522wgnk";
+ sha256 = "0rpwjjnaq8mj619ajzyl3kad7sysbz87qz2ds0jyy7kvyzv6r7zb";
};
nativeBuildInputs = [
@@ -43,7 +43,7 @@ buildGoModule rec {
${stdenv.lib.makeBinPath [ w3m dante ]}
'';
- modSha256 = "1h0vr01s2y0k3jjigz0h8ngjv1mhk6kw8mdisp5pr017jbhijfsi";
+ modSha256 = "0p8lp6xwg6jacrnxzw3q73mqxy9wzj5vs0k1saa48ardqd2f7b00";
meta = with stdenv.lib; {
description = "aerc is an email client for your terminal";
diff --git a/pkgs/applications/networking/p2p/synapse-bt/default.nix b/pkgs/applications/networking/p2p/synapse-bt/default.nix
index 6e37a87dc9f..f3c7f8ccf18 100644
--- a/pkgs/applications/networking/p2p/synapse-bt/default.nix
+++ b/pkgs/applications/networking/p2p/synapse-bt/default.nix
@@ -2,13 +2,13 @@
rustPlatform.buildRustPackage rec {
pname = "synapse-bt";
- version = "unstable-2019-05-26";
+ version = "1.0";
src = fetchFromGitHub {
owner = "Luminarys";
repo = "synapse";
- rev = "4a6e6c33b4c36eca89d216906d615797ba9a519e";
- sha256 = "0110y3lkzfhgvmdg6q71jyp5q9jjp2bzdb6cwnkp8c734c2k1gfw";
+ rev = version;
+ sha256 = "01npv3zwia5d534zdwisd9xfng507adv4qkljf8z0zm0khqqn71a";
};
cargoSha256 = "0m4jigz6la3mf4yq217849ilcncb7d97mqyw2qicff4rbscdgf6h";
diff --git a/pkgs/applications/networking/remote/rdesktop/default.nix b/pkgs/applications/networking/remote/rdesktop/default.nix
index 4caa9ae63f7..9cd6083f40c 100644
--- a/pkgs/applications/networking/remote/rdesktop/default.nix
+++ b/pkgs/applications/networking/remote/rdesktop/default.nix
@@ -1,4 +1,6 @@
-{stdenv, fetchurl, openssl, libX11, libgssglue, pkgconfig} :
+{stdenv, fetchurl, openssl, libX11, libgssglue, pkgconfig
+, enableCredssp ? (!stdenv.isDarwin)
+} :
stdenv.mkDerivation (rec {
pname = "rdesktop";
@@ -11,18 +13,19 @@ stdenv.mkDerivation (rec {
};
nativeBuildInputs = [pkgconfig];
- buildInputs = [openssl libX11 libgssglue];
+ buildInputs = [openssl libX11]
+ ++ stdenv.lib.optional enableCredssp libgssglue;
configureFlags = [
"--with-ipv6"
"--with-openssl=${openssl.dev}"
"--disable-smartcard"
- ];
+ ] ++ stdenv.lib.optional (!enableCredssp) "--disable-credssp";
meta = {
description = "Open source client for Windows Terminal Services";
homepage = http://www.rdesktop.org/;
- platforms = stdenv.lib.platforms.linux;
+ platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin;
license = stdenv.lib.licenses.gpl2;
};
})
diff --git a/pkgs/applications/networking/syncplay/default.nix b/pkgs/applications/networking/syncplay/default.nix
index 4f4eaf30245..c8610d80ca7 100644
--- a/pkgs/applications/networking/syncplay/default.nix
+++ b/pkgs/applications/networking/syncplay/default.nix
@@ -1,21 +1,23 @@
-{ stdenv, fetchurl, python3Packages }:
+{ lib, fetchFromGitHub, buildPythonApplication, pyside, twisted, certifi }:
-python3Packages.buildPythonApplication rec {
+buildPythonApplication rec {
name = "syncplay-${version}";
version = "1.6.3";
format = "other";
- src = fetchurl {
- url = https://github.com/Syncplay/syncplay/archive/v1.6.3.tar.gz;
- sha256 = "151p1njlp3dp3pfr3l3m6ia5829zvjyjh4p45j6rgnicbh8sqrgs";
+ src = fetchFromGitHub {
+ owner = "Syncplay";
+ repo = "syncplay";
+ rev = "v${version}";
+ sha256 = "03xw44lxdk1h9kbvfviqzpmxxld6zvp07i0hvdm1chchyp0a109h";
};
- propagatedBuildInputs = with python3Packages; [ pyside twisted ];
+ propagatedBuildInputs = [ pyside twisted certifi ] ++ twisted.extras.tls;
makeFlags = [ "DESTDIR=" "PREFIX=$(out)" ];
- meta = with stdenv.lib; {
+ meta = with lib; {
homepage = https://syncplay.pl/;
description = "Free software that synchronises media players";
license = licenses.asl20;
diff --git a/pkgs/applications/office/atlassian-cli/default.nix b/pkgs/applications/office/atlassian-cli/default.nix
index 462e6fbb7a0..91b12d8a33c 100644
--- a/pkgs/applications/office/atlassian-cli/default.nix
+++ b/pkgs/applications/office/atlassian-cli/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
name = "atlassian-cli-${version}";
- version = "8.2.0";
+ version = "8.5.0";
src = fetchzip {
url = "https://bobswift.atlassian.net/wiki/download/attachments/16285777/${name}-distribution.zip";
- sha256 = "0lcyyay2fyywcn096y33d77r6fpvwggv5qdkky5qy16lh6rfx1lm";
+ sha256 = "0c9jq7q0bx0db0zhdh89bv1ijfg7cddbx04v451vl8caqcyhkfgz";
extraPostFetch = "chmod go-w $out";
};
diff --git a/pkgs/applications/science/electronics/pulseview/default.nix b/pkgs/applications/science/electronics/pulseview/default.nix
index 4e86d1d917f..c91443bf64a 100644
--- a/pkgs/applications/science/electronics/pulseview/default.nix
+++ b/pkgs/applications/science/electronics/pulseview/default.nix
@@ -4,11 +4,11 @@
}:
stdenv.mkDerivation rec {
- name = "pulseview-0.4.0";
+ name = "pulseview-0.4.1";
src = fetchurl {
url = "https://sigrok.org/download/source/pulseview/${name}.tar.gz";
- sha256 = "1f8f2342d5yam98mmcb8f9g2vslcwv486bmi4x45pxn68l82ky3q";
+ sha256 = "0bvgmkgz37n2bi9niskpl05hf7rsj1lj972fbrgnlz25s4ywxrwy";
};
nativeBuildInputs = [ cmake pkgconfig ];
diff --git a/pkgs/applications/science/logic/z3/0001-fix-2131.patch b/pkgs/applications/science/logic/z3/0001-fix-2131.patch
deleted file mode 100644
index 0b21b8fffd4..00000000000
--- a/pkgs/applications/science/logic/z3/0001-fix-2131.patch
+++ /dev/null
@@ -1,66 +0,0 @@
-From c5df6ce96e068eceb77019e48634721c6a5bb607 Mon Sep 17 00:00:00 2001
-From: Nikolaj Bjorner
-Date: Sun, 10 Feb 2019 10:07:24 -0800
-Subject: [PATCH 1/1] fix #2131
-
-Signed-off-by: Nikolaj Bjorner
----
- src/api/python/README.txt | 10 +++-------
- src/api/python/setup.py | 2 +-
- src/ast/recfun_decl_plugin.h | 2 +-
- 3 files changed, 5 insertions(+), 9 deletions(-)
-
-diff --git a/src/api/python/README.txt b/src/api/python/README.txt
-index 9312b1119..561b8dedc 100644
---- a/src/api/python/README.txt
-+++ b/src/api/python/README.txt
-@@ -1,8 +1,4 @@
--You can learn more about Z3Py at:
--http://rise4fun.com/Z3Py/tutorial/guide
--
--On Windows, you must build Z3 before using Z3Py.
--To build Z3, you should executed the following command
-+On Windows, to build Z3, you should executed the following command
- in the Z3 root directory at the Visual Studio Command Prompt
-
- msbuild /p:configuration=external
-@@ -12,8 +8,8 @@ If you are using a 64-bit Python interpreter, you should use
- msbuild /p:configuration=external /p:platform=x64
-
-
--On Linux and macOS, you must install Z3Py, before trying example.py.
--To install Z3Py on Linux and macOS, you should execute the following
-+On Linux and macOS, you must install python bindings, before trying example.py.
-+To install python on Linux and macOS, you should execute the following
- command in the Z3 root directory
-
- sudo make install-z3py
-diff --git a/src/api/python/setup.py b/src/api/python/setup.py
-index 2a750fee6..063680e2b 100644
---- a/src/api/python/setup.py
-+++ b/src/api/python/setup.py
-@@ -178,7 +178,7 @@ setup(
- name='z3-solver',
- version=_z3_version(),
- description='an efficient SMT solver library',
-- long_description='Z3 is a theorem prover from Microsoft Research with support for bitvectors, booleans, arrays, floating point numbers, strings, and other data types.\n\nFor documentation, please read http://z3prover.github.io/api/html/z3.html\n\nIn the event of technical difficulties related to configuration, compiliation, or installation, please submit issues to https://github.com/angr/angr-z3',
-+ long_description='Z3 is a theorem prover from Microsoft Research with support for bitvectors, booleans, arrays, floating point numbers, strings, and other data types.\n\nFor documentation, please read http://z3prover.github.io/api/html/z3.html\n\nIn the event of technical difficulties related to configuration, compilation, or installation, please submit issues to https://github.com/angr/angr-z3',
- author="The Z3 Theorem Prover Project",
- maintainer="Audrey Dutcher",
- maintainer_email="audrey@rhelmot.io",
-diff --git a/src/ast/recfun_decl_plugin.h b/src/ast/recfun_decl_plugin.h
-index 0247335e8..b294cdfce 100644
---- a/src/ast/recfun_decl_plugin.h
-+++ b/src/ast/recfun_decl_plugin.h
-@@ -56,7 +56,7 @@ namespace recfun {
- friend class def;
- func_decl_ref m_pred; // qtbase != null && qtsvg != null && qtx11extras != null);
stdenv.mkDerivation rec {
name = "vlc-${version}";
- version = "3.0.6";
+ version = "3.0.7";
src = fetchurl {
url = "http://get.videolan.org/vlc/${version}/${name}.tar.xz";
- sha256 = "1lvyyahv6g9zv7m5g5qinyrwmw47zdsd5ysimb862j7kw15nvh8q";
+ sha256 = "05irswyg9acflxzy4vfyvgi643r72vsvagv118zawjqg1wagxdaw";
};
# VLC uses a *ton* of libraries for various pieces of functionality, many of
diff --git a/pkgs/applications/virtualization/conmon/default.nix b/pkgs/applications/virtualization/conmon/default.nix
new file mode 100644
index 00000000000..4ef02af106e
--- /dev/null
+++ b/pkgs/applications/virtualization/conmon/default.nix
@@ -0,0 +1,34 @@
+{ stdenv
+, fetchFromGitHub
+, pkgconfig
+, glib
+, glibc
+, systemd
+}:
+
+stdenv.mkDerivation rec {
+ project = "conmon";
+ name = "${project}-${version}";
+ version = "0.2.0";
+
+ src = fetchFromGitHub {
+ owner = "containers";
+ repo = project;
+ rev = "v${version}";
+ sha256 = "08fgkbv7hq62lcq39za9pm2s2j92ismgrkvfm7acwbvajqh9syjb";
+ };
+
+ nativeBuildInputs = [ pkgconfig ];
+ buildInputs = [ glib systemd ] ++
+ stdenv.lib.optionals (!stdenv.hostPlatform.isMusl) [ glibc glibc.static ];
+
+ installPhase = "install -Dm755 bin/${project} $out/bin/${project}";
+
+ meta = with stdenv.lib; {
+ homepage = https://github.com/containers/conmon;
+ description = "An OCI container runtime monitor";
+ license = licenses.asl20;
+ maintainers = with maintainers; [ vdemeester saschagrunert ];
+ platforms = platforms.linux;
+ };
+}
diff --git a/pkgs/applications/virtualization/cri-o/default.nix b/pkgs/applications/virtualization/cri-o/default.nix
index 51dd2b1e6df..2e7b476443f 100644
--- a/pkgs/applications/virtualization/cri-o/default.nix
+++ b/pkgs/applications/virtualization/cri-o/default.nix
@@ -41,15 +41,10 @@ buildGoPackage rec {
buildPhase = ''
pushd go/src/${goPackagePath}
- # Build conmon and pause
+ # Build pause
go build -tags ${makeFlags} -o bin/crio-config -buildmode=pie \
-ldflags '-s -w ${ldflags}' ${goPackagePath}/cmd/crio-config
- pushd conmon
- ../bin/crio-config
- popd
-
- make -C conmon
make -C pause
# Build the crio binary
@@ -60,7 +55,6 @@ buildGoPackage rec {
install -Dm755 bin/crio $bin/bin/crio${flavor}
mkdir -p $bin/libexec/crio
- install -Dm755 bin/conmon $bin/libexec/crio/conmon${flavor}
install -Dm755 bin/pause $bin/libexec/crio/pause${flavor}
'';
diff --git a/pkgs/applications/virtualization/podman/conmon.nix b/pkgs/applications/virtualization/podman/conmon.nix
deleted file mode 100644
index dfc3cc35316..00000000000
--- a/pkgs/applications/virtualization/podman/conmon.nix
+++ /dev/null
@@ -1,31 +0,0 @@
-{ stdenv, lib, fetchFromGitHub, pkgconfig, glib }:
-
-with lib;
-with builtins;
-
-stdenv.mkDerivation rec {
- pname = "conmon";
- version = "0.2.0";
-
- src = fetchFromGitHub {
- owner = "containers";
- repo = pname;
- rev = "v${version}";
- sha256 = "08fgkbv7hq62lcq39za9pm2s2j92ismgrkvfm7acwbvajqh9syjb";
- };
-
- nativeBuildInputs = [ pkgconfig ];
- buildInputs = [ glib ];
-
- installPhase = ''
- install -D -m 555 bin/conmon $out/bin/conmon
- '';
-
- meta = {
- homepage = https://github.com/containers/conmon;
- description = "An OCI container runtime monitor";
- license = licenses.asl20;
- maintainers = with maintainers; [ vdemeester ];
- platforms = platforms.linux;
- };
-}
diff --git a/pkgs/applications/window-managers/neocomp/default.nix b/pkgs/applications/window-managers/neocomp/default.nix
new file mode 100644
index 00000000000..722566ea2e9
--- /dev/null
+++ b/pkgs/applications/window-managers/neocomp/default.nix
@@ -0,0 +1,85 @@
+{ stdenv
+, fetchFromGitHub
+, asciidoc
+, docbook_xml_dtd_45
+, docbook_xsl
+, freetype
+, judy
+, libGL
+, libconfig
+, libdrm
+, libxml2
+, libxslt
+, libXcomposite
+, libXdamage
+, libXext
+, libXinerama
+, libXrandr
+, libXrender
+, pcre
+, pkgconfig
+}:
+let
+ rev = "v0.6-17-g271e784";
+in
+stdenv.mkDerivation rec {
+ name = "neocomp-unstable-${version}";
+ version = "2019-03-12";
+
+ src = fetchFromGitHub {
+ inherit rev;
+ owner = "DelusionalLogic";
+ repo = "NeoComp";
+ sha256 = "1mp338vz1jm5pwf7pi5azx4hzykmvpkwzx1kw6a9anj272f32zpg";
+ };
+
+ buildInputs = [
+ asciidoc
+ docbook_xml_dtd_45
+ docbook_xsl
+ freetype
+ judy
+ libGL
+ libconfig
+ libdrm
+ libxml2
+ libxslt
+ libXcomposite
+ libXdamage
+ libXext
+ libXinerama
+ libXrandr
+ libXrender
+ pcre
+ pkgconfig
+ ];
+
+ makeFlags = [
+ "PREFIX=${placeholder "out"}"
+ "CFGDIR=${placeholder "out"}/etc/xdg/neocomp"
+ "ASTDIR=${placeholder "out"}/share/neocomp/assets"
+ "COMPTON_VERSION=git-${rev}-${version}"
+ ];
+
+ postPatch = ''
+ substituteInPlace src/compton.c --replace \
+ "assets_add_path(\"./assets/\");" \
+ "assets_add_path(\"$out/share/neocomp/assets/\");"
+ substituteInPlace src/assets/assets.c --replace \
+ "#define MAX_PATH_LENGTH 64" \
+ "#define MAX_PATH_LENGTH 128"
+ '';
+
+ meta = with stdenv.lib; {
+ homepage = https://github.com/DelusionalLogic/NeoComp;
+ license = licenses.gpl3;
+ maintainers = with maintainers; [ twey ];
+ platforms = platforms.linux;
+ description = "A fork of Compton, a compositor for X11";
+ longDescription = ''
+ NeoComp is a (hopefully) fast and (hopefully) simple compositor
+ for X11, focused on delivering frames from the window to the
+ framebuffer as quickly as possible.
+ '';
+ };
+}
diff --git a/pkgs/build-support/appimage/default.nix b/pkgs/build-support/appimage/default.nix
index c17274295c9..de0e05f8da7 100644
--- a/pkgs/build-support/appimage/default.nix
+++ b/pkgs/build-support/appimage/default.nix
@@ -133,6 +133,11 @@ rec {
xorg.libXt
xorg.libXmu
xorg.libxcb
+ xorg.xcbutil
+ xorg.xcbutilwm
+ xorg.xcbutilimage
+ xorg.xcbutilkeysyms
+ xorg.xcbutilrenderutil
libGLU
libuuid
libogg
diff --git a/pkgs/build-support/docker/default.nix b/pkgs/build-support/docker/default.nix
index 57e40069003..ae000c2daef 100644
--- a/pkgs/build-support/docker/default.nix
+++ b/pkgs/build-support/docker/default.nix
@@ -75,7 +75,7 @@ rec {
# We need to sum layer.tar, not a directory, hence tarsum instead of nix-hash.
# And we cannot untar it, because then we cannot preserve permissions ecc.
tarsum = runCommand "tarsum" {
- buildInputs = [ go ];
+ nativeBuildInputs = [ go ];
} ''
mkdir tarsum
cd tarsum
@@ -165,7 +165,7 @@ rec {
};
inherit fromImage fromImageName fromImageTag;
- buildInputs = [ utillinux e2fsprogs jshon rsync jq ];
+ nativeBuildInputs = [ utillinux e2fsprogs jshon rsync jq ];
} ''
rm -rf $out
@@ -297,7 +297,7 @@ rec {
runCommand "${name}-granular-docker-layers" {
inherit maxLayers;
paths = referencesByPopularity closure;
- buildInputs = [ jshon rsync tarsum ];
+ nativeBuildInputs = [ jshon rsync tarsum ];
enableParallelBuilding = true;
}
''
@@ -335,7 +335,7 @@ rec {
uid ? 0, gid ? 0,
}:
runCommand "${name}-customisation-layer" {
- buildInputs = [ jshon rsync tarsum ];
+ nativeBuildInputs = [ jshon rsync tarsum ];
inherit extraCommands;
}
''
@@ -380,7 +380,7 @@ rec {
}:
runCommand "docker-layer-${name}" {
inherit baseJson contents extraCommands;
- buildInputs = [ jshon rsync tarsum ];
+ nativeBuildInputs = [ jshon rsync tarsum ];
}
''
mkdir layer
@@ -535,7 +535,7 @@ rec {
os = "linux";
});
impure = runCommand "${baseName}-standard-dynamic-date.json"
- { buildInputs = [ jq ]; }
+ { nativeBuildInputs = [ jq ]; }
''
jq ".created = \"$(TZ=utc date --iso-8601="seconds")\"" ${pure} > $out
'';
@@ -556,7 +556,7 @@ rec {
inherit uid gid extraCommands;
};
result = runCommand "docker-image-${baseName}.tar.gz" {
- buildInputs = [ jshon pigz coreutils findutils jq ];
+ nativeBuildInputs = [ jshon pigz coreutils findutils jq ];
# Image name and tag must be lowercase
imageName = lib.toLower name;
baseJson = configJson;
@@ -653,7 +653,7 @@ rec {
os = "linux";
});
impure = runCommand "${baseName}-config.json"
- { buildInputs = [ jq ]; }
+ { nativeBuildInputs = [ jq ]; }
''
jq ".created = \"$(TZ=utc date --iso-8601="seconds")\"" ${pure} > $out
'';
@@ -671,7 +671,7 @@ rec {
extraCommands;
};
result = runCommand "docker-image-${baseName}.tar.gz" {
- buildInputs = [ jshon pigz coreutils findutils jq ];
+ nativeBuildInputs = [ jshon pigz coreutils findutils jq ];
# Image name and tag must be lowercase
imageName = lib.toLower name;
imageTag = if tag == null then "" else lib.toLower tag;
diff --git a/pkgs/build-support/fetchurl/mirrors.nix b/pkgs/build-support/fetchurl/mirrors.nix
index 404cea7532b..d9e44afb68d 100644
--- a/pkgs/build-support/fetchurl/mirrors.nix
+++ b/pkgs/build-support/fetchurl/mirrors.nix
@@ -19,8 +19,11 @@ rec {
https://kent.dl.sourceforge.net/sourceforge/
];
- # SourceForge.jp.
- sourceforgejp = [
+ # OSDN (formerly SourceForge.jp).
+ osdn = [
+ https://osdn.dl.osdn.jp/
+ https://osdn.mirror.constant.com/
+ https://mirrors.gigenet.com/OSDN/
https://osdn.dl.sourceforge.jp/
https://jaist.dl.sourceforge.jp/
];
diff --git a/pkgs/data/fonts/hanazono/default.nix b/pkgs/data/fonts/hanazono/default.nix
index cc219b74179..29c982ed8ae 100644
--- a/pkgs/data/fonts/hanazono/default.nix
+++ b/pkgs/data/fonts/hanazono/default.nix
@@ -5,7 +5,7 @@ let
in fetchzip {
name = "hanazono-${version}";
- url = "mirror://sourceforgejp/hanazono-font/68253/hanazono-${version}.zip";
+ url = "mirror://osdn/hanazono-font/68253/hanazono-${version}.zip";
postFetch = ''
mkdir -p $out/share/{doc,fonts}
diff --git a/pkgs/data/fonts/kochi-substitute-naga10/default.nix b/pkgs/data/fonts/kochi-substitute-naga10/default.nix
index cc2ec0d641f..1b63223f0bf 100644
--- a/pkgs/data/fonts/kochi-substitute-naga10/default.nix
+++ b/pkgs/data/fonts/kochi-substitute-naga10/default.nix
@@ -5,7 +5,7 @@ in
fetchzip {
name = "kochi-substitute-naga10-${version}";
- url = "mirror://sourceforgejp/efont/5411/kochi-substitute-${version}.tar.bz2";
+ url = "mirror://osdn/efont/5411/kochi-substitute-${version}.tar.bz2";
postFetch = ''
tar -xjf $downloadedFile --strip-components=1
@@ -25,7 +25,7 @@ fetchzip {
this font may not be sold commercially. See kochi-substitute for the free
Debian version.
'';
- homepage = http://sourceforge.jp/projects/efont/;
+ homepage = "https://osdn.net/projects/efont/";
license = lib.licenses.unfreeRedistributable;
maintainers = [ lib.maintainers.auntie ];
};
diff --git a/pkgs/data/fonts/kochi-substitute/default.nix b/pkgs/data/fonts/kochi-substitute/default.nix
index 11cd73e5237..6ed540121a2 100644
--- a/pkgs/data/fonts/kochi-substitute/default.nix
+++ b/pkgs/data/fonts/kochi-substitute/default.nix
@@ -40,7 +40,7 @@ stdenv.mkDerivation {
versions of the fonts, which remove some non-free glyphs that were added
from the naga10 font.
'';
- homepage = http://sourceforge.jp/projects/efont/;
+ homepage = "https://osdn.net/projects/efont/";
license = stdenv.lib.licenses.wadalab;
maintainers = [ stdenv.lib.maintainers.auntie ];
};
diff --git a/pkgs/data/fonts/migmix/default.nix b/pkgs/data/fonts/migmix/default.nix
index 986751645e3..9507819fe49 100644
--- a/pkgs/data/fonts/migmix/default.nix
+++ b/pkgs/data/fonts/migmix/default.nix
@@ -6,19 +6,19 @@ stdenv.mkDerivation rec {
srcs = [
(fetchzip {
- url = "mirror://sourceforgejp/mix-mplus-ipa/63544/migmix-1p-${version}.zip";
+ url = "mirror://osdn/mix-mplus-ipa/63544/migmix-1p-${version}.zip";
sha256 = "0wp44axcalaak04nj3dgpx0vk13nqa3ihx2vjv4acsgv83x8ciph";
})
(fetchzip {
- url = "mirror://sourceforgejp/mix-mplus-ipa/63544/migmix-2p-${version}.zip";
+ url = "mirror://osdn/mix-mplus-ipa/63544/migmix-2p-${version}.zip";
sha256 = "0y7s3rbxrp5bv56qgihk8b847lqgibfhn2wlkzx7z655fbzdgxw9";
})
(fetchzip {
- url = "mirror://sourceforgejp/mix-mplus-ipa/63544/migmix-1m-${version}.zip";
+ url = "mirror://osdn/mix-mplus-ipa/63544/migmix-1m-${version}.zip";
sha256 = "1sfym0chy8ilyd9sr3mjc0bf63vc33p05ynpdc11miivxn4qsshx";
})
(fetchzip {
- url = "mirror://sourceforgejp/mix-mplus-ipa/63544/migmix-2m-${version}.zip";
+ url = "mirror://osdn/mix-mplus-ipa/63544/migmix-2m-${version}.zip";
sha256 = "0hg04rvm39fh4my4akmv4rhfc14s3ipz2aw718h505k9hppkhkch";
})
];
diff --git a/pkgs/data/fonts/migu/default.nix b/pkgs/data/fonts/migu/default.nix
index 3b03460125f..57fbf1a830f 100644
--- a/pkgs/data/fonts/migu/default.nix
+++ b/pkgs/data/fonts/migu/default.nix
@@ -6,19 +6,19 @@ stdenv.mkDerivation rec {
srcs = [
(fetchzip {
- url = "mirror://sourceforgejp/mix-mplus-ipa/63545/migu-1p-${version}.zip";
+ url = "mirror://osdn/mix-mplus-ipa/63545/migu-1p-${version}.zip";
sha256 = "04wpbk5xbbcv2rzac8yzj4ww7sk2hy2rg8zs96yxc5vzj9q7svf6";
})
(fetchzip {
- url = "mirror://sourceforgejp/mix-mplus-ipa/63545/migu-1c-${version}.zip";
+ url = "mirror://osdn/mix-mplus-ipa/63545/migu-1c-${version}.zip";
sha256 = "1k7ymix14ac5fb44bjvbaaf24784zzpyc1jj2280c0zdnpxksyk6";
})
(fetchzip {
- url = "mirror://sourceforgejp/mix-mplus-ipa/63545/migu-1m-${version}.zip";
+ url = "mirror://osdn/mix-mplus-ipa/63545/migu-1m-${version}.zip";
sha256 = "07r8id83v92hym21vrqmfsfxb646v8258001pkjhgfnfg1yvw8lm";
})
(fetchzip {
- url = "mirror://sourceforgejp/mix-mplus-ipa/63545/migu-2m-${version}.zip";
+ url = "mirror://osdn/mix-mplus-ipa/63545/migu-2m-${version}.zip";
sha256 = "1pvzbrawh43589j8rfxk86y1acjbgzzdy5wllvdkpm1qnx28zwc2";
})
];
diff --git a/pkgs/data/fonts/mplus-outline-fonts/default.nix b/pkgs/data/fonts/mplus-outline-fonts/default.nix
index 9be8eea16fb..03bc8a0db4d 100644
--- a/pkgs/data/fonts/mplus-outline-fonts/default.nix
+++ b/pkgs/data/fonts/mplus-outline-fonts/default.nix
@@ -5,7 +5,7 @@ let
in fetchzip rec {
name = "mplus-${version}";
- url = "mirror://sourceforgejp/mplus-fonts/62344/mplus-TESTFLIGHT-${version}.tar.xz";
+ url = "mirror://osdn/mplus-fonts/62344/mplus-TESTFLIGHT-${version}.tar.xz";
postFetch = ''
tar -xJf $downloadedFile --strip-components=1
@@ -17,7 +17,7 @@ in fetchzip rec {
meta = with lib; {
description = "M+ Outline Fonts";
- homepage = http://mplus-fonts.sourceforge.jp/mplus-outline-fonts/index-en.html;
+ homepage = "https://mplus-fonts.osdn.jp/about-en.html";
license = licenses.mit;
maintainers = with maintainers; [ henrytill ];
platforms = platforms.all;
diff --git a/pkgs/data/icons/papirus-icon-theme/default.nix b/pkgs/data/icons/papirus-icon-theme/default.nix
index b13dcf9b422..590ca396bc6 100644
--- a/pkgs/data/icons/papirus-icon-theme/default.nix
+++ b/pkgs/data/icons/papirus-icon-theme/default.nix
@@ -1,14 +1,14 @@
{ stdenv, fetchFromGitHub, gtk3 }:
stdenv.mkDerivation rec {
- name = "papirus-icon-theme-${version}";
- version = "20190501";
+ pname = "papirus-icon-theme";
+ version = "20190521";
src = fetchFromGitHub {
owner = "PapirusDevelopmentTeam";
- repo = "papirus-icon-theme";
+ repo = pname;
rev = version;
- sha256 = "1sdzbvlzzg42vqahjqcsj6v87y1xhchw7bgiv8jgwd2n4l3gg2zy";
+ sha256 = "192s14bf2ni46jkiifbsl82qy1miy8fnxs2fpqwf6s6jlv9x4zxs";
};
nativeBuildInputs = [ gtk3 ];
@@ -28,6 +28,8 @@ stdenv.mkDerivation rec {
description = "Papirus icon theme";
homepage = https://github.com/PapirusDevelopmentTeam/papirus-icon-theme;
license = licenses.lgpl3;
- platforms = platforms.all;
+ # darwin gives hash mismatch in source, probably because of file names differing only in case
+ platforms = platforms.linux;
+ maintainers = with maintainers; [ romildo ];
};
}
diff --git a/pkgs/desktops/deepin/dde-file-manager/dde-file-manager.fix-mime-cache-paths.patch b/pkgs/desktops/deepin/dde-file-manager/dde-file-manager.fix-mime-cache-paths.patch
new file mode 100644
index 00000000000..253a67b04ec
--- /dev/null
+++ b/pkgs/desktops/deepin/dde-file-manager/dde-file-manager.fix-mime-cache-paths.patch
@@ -0,0 +1,323 @@
+From 29f4ad88e2294ae70b10180e7361d135c4e5c896 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Jos=C3=A9=20Romildo=20Malaquias?=
+Date: Mon, 13 May 2019 00:09:42 -0300
+Subject: [PATCH 2/2] Use XDG to look for mime cache
+
+---
+ .../shutil/mimesappsmanager.cpp | 230 ++++++++++--------
+ .../shutil/mimesappsmanager.h | 6 +-
+ 2 files changed, 125 insertions(+), 111 deletions(-)
+
+diff --git a/dde-file-manager-lib/shutil/mimesappsmanager.cpp b/dde-file-manager-lib/shutil/mimesappsmanager.cpp
+index c9e53630..7a21df51 100644
+--- a/dde-file-manager-lib/shutil/mimesappsmanager.cpp
++++ b/dde-file-manager-lib/shutil/mimesappsmanager.cpp
+@@ -552,14 +552,20 @@ QString MimesAppsManager::getMimeAppsCacheFile()
+ return QString("%1/%2").arg(DFMStandardPaths::location(DFMStandardPaths::CachePath), "MimeApps.json");
+ }
+
+-QString MimesAppsManager::getMimeInfoCacheFilePath()
++QStringList MimesAppsManager::getMimeInfoCacheFilePath()
+ {
+- return "/usr/share/applications/mimeinfo.cache";
++ QStringList paths;
++ for (const QString dir : getMimeInfoCacheFileRootPath() )
++ paths.append(dir + QDir::separator() + "mimeinfo.cache");
++ qDebug() << "getMimeInfoCacheFilePath: " << paths;
++ return paths;
+ }
+
+-QString MimesAppsManager::getMimeInfoCacheFileRootPath()
++QStringList MimesAppsManager::getMimeInfoCacheFileRootPath()
+ {
+- return "/usr/share/applications";
++ QStringList paths = QStandardPaths::standardLocations(QStandardPaths::ApplicationsLocation);
++ qDebug() << "getMimeInfoCacheFileRootPath: " << paths;
++ return paths;
+ }
+
+ QString MimesAppsManager::getDesktopFilesCacheFile()
+@@ -574,23 +580,27 @@ QString MimesAppsManager::getDesktopIconsCacheFile()
+
+ QStringList MimesAppsManager::getDesktopFiles()
+ {
+- QStringList desktopFiles;
++ QStringList desktopFiles;
+
+- foreach (QString desktopFolder, getApplicationsFolders()) {
+- QDirIterator it(desktopFolder, QStringList("*.desktop"),
+- QDir::Files | QDir::NoDotAndDotDot,
+- QDirIterator::Subdirectories);
+- while (it.hasNext()) {
+- it.next();
+- desktopFiles.append(it.filePath());
+- }
+- }
+- return desktopFiles;
++ foreach (QString desktopFolder, getApplicationsFolders()) {
++ QDirIterator it(desktopFolder, QStringList("*.desktop"),
++ QDir::Files | QDir::NoDotAndDotDot,
++ QDirIterator::Subdirectories);
++ while (it.hasNext()) {
++ it.next();
++ desktopFiles.append(it.filePath());
++ }
++ }
++ return desktopFiles;
+ }
+
+-QString MimesAppsManager::getDDEMimeTypeFile()
++QStringList MimesAppsManager::getDDEMimeTypeFile()
+ {
+- return QString("%1/%2/%3").arg(getMimeInfoCacheFileRootPath(), "deepin", "dde-mimetype.list");
++ QStringList paths;
++ for (const QString path : getMimeInfoCacheFileRootPath())
++ paths.append(QString("%1/%2/%3").arg(path, "deepin", "dde-mimetype.list"));
++ qDebug() << "getDDEMimeTypeFile: " << paths;
++ return paths;
+ }
+
+ QMap MimesAppsManager::getDesktopObjs()
+@@ -663,124 +673,128 @@ void MimesAppsManager::initMimeTypeApps()
+ MimeApps.insert(key, orderApps);
+ }
+
+- //check mime apps from cache
+- QFile f(getMimeInfoCacheFilePath());
+- if(!f.open(QIODevice::ReadOnly)){
+- qDebug () << "failed to read mime info cache file:" << f.errorString();
+- return;
+- }
+-
+ QStringList audioDesktopList;
+ QStringList imageDeksopList;
+ QStringList textDekstopList;
+ QStringList videoDesktopList;
+
+- while (!f.atEnd()) {
+- QString data = f.readLine();
+- QString _desktops = data.split("=").last();
+- QString mimeType = data.split("=").first();
+- QStringList desktops = _desktops.split(";");
+-
+- foreach (const QString desktop, desktops) {
+- if(desktop.isEmpty() || audioDesktopList.contains(desktop))
+- continue;
++ //check mime apps from cache
++ for (const QString path : getMimeInfoCacheFilePath()) {
++ QFile f(path);
++ if(!f.open(QIODevice::ReadOnly)){
++ qDebug () << "failed to read mime info cache file:" << f.errorString();
++ return;
++ }
+
+- if(mimeType.startsWith("audio")){
+- if(!audioDesktopList.contains(desktop))
+- audioDesktopList << desktop;
+- } else if(mimeType.startsWith("image")){
+- if(!imageDeksopList.contains(desktop))
+- imageDeksopList << desktop;
+- } else if(mimeType.startsWith("text")){
+- if(!textDekstopList.contains(desktop))
+- textDekstopList << desktop;
+- } else if(mimeType.startsWith("video")){
+- if(!videoDesktopList.contains(desktop))
+- videoDesktopList << desktop;
++ while (!f.atEnd()) {
++ QString data = f.readLine();
++ QString _desktops = data.split("=").last();
++ QString mimeType = data.split("=").first();
++ QStringList desktops = _desktops.split(";");
++
++ foreach (const QString desktop, desktops) {
++ if(desktop.isEmpty() || audioDesktopList.contains(desktop))
++ continue;
++
++ if(mimeType.startsWith("audio")){
++ if(!audioDesktopList.contains(desktop))
++ audioDesktopList << desktop;
++ } else if(mimeType.startsWith("image")){
++ if(!imageDeksopList.contains(desktop))
++ imageDeksopList << desktop;
++ } else if(mimeType.startsWith("text")){
++ if(!textDekstopList.contains(desktop))
++ textDekstopList << desktop;
++ } else if(mimeType.startsWith("video")){
++ if(!videoDesktopList.contains(desktop))
++ videoDesktopList << desktop;
++ }
+ }
+ }
++ f.close();
+ }
+- f.close();
+
+- const QString mimeInfoCacheRootPath = getMimeInfoCacheFileRootPath();
+- foreach (QString desktop, audioDesktopList) {
+- const QString path = QString("%1/%2").arg(mimeInfoCacheRootPath,desktop);
+- if(!QFile::exists(path))
+- continue;
+- DesktopFile df(path);
+- AudioMimeApps.insert(path, df);
+- }
++ for (const QString mimeInfoCacheRootPath : getMimeInfoCacheFileRootPath()) {
++ foreach (QString desktop, audioDesktopList) {
++ const QString path = QString("%1/%2").arg(mimeInfoCacheRootPath,desktop);
++ if(!QFile::exists(path))
++ continue;
++ DesktopFile df(path);
++ AudioMimeApps.insert(path, df);
++ }
+
+- foreach (QString desktop, imageDeksopList) {
+- const QString path = QString("%1/%2").arg(mimeInfoCacheRootPath,desktop);
+- if(!QFile::exists(path))
+- continue;
+- DesktopFile df(path);
+- ImageMimeApps.insert(path, df);
+- }
++ foreach (QString desktop, imageDeksopList) {
++ const QString path = QString("%1/%2").arg(mimeInfoCacheRootPath,desktop);
++ if(!QFile::exists(path))
++ continue;
++ DesktopFile df(path);
++ ImageMimeApps.insert(path, df);
++ }
+
+- foreach (QString desktop, textDekstopList) {
+- const QString path = QString("%1/%2").arg(mimeInfoCacheRootPath,desktop);
+- if(!QFile::exists(path))
+- continue;
+- DesktopFile df(path);
+- TextMimeApps.insert(path, df);
+- }
++ foreach (QString desktop, textDekstopList) {
++ const QString path = QString("%1/%2").arg(mimeInfoCacheRootPath,desktop);
++ if(!QFile::exists(path))
++ continue;
++ DesktopFile df(path);
++ TextMimeApps.insert(path, df);
++ }
+
+- foreach (QString desktop, videoDesktopList) {
+- const QString path = QString("%1/%2").arg(mimeInfoCacheRootPath,desktop);
+- if(!QFile::exists(path))
+- continue;
+- DesktopFile df(path);
+- VideoMimeApps.insert(path, df);
++ foreach (QString desktop, videoDesktopList) {
++ const QString path = QString("%1/%2").arg(mimeInfoCacheRootPath,desktop);
++ if(!QFile::exists(path))
++ continue;
++ DesktopFile df(path);
++ VideoMimeApps.insert(path, df);
++ }
+ }
+-
+ return;
+ }
+
+ void MimesAppsManager::loadDDEMimeTypes()
+ {
+- QSettings settings(getDDEMimeTypeFile(), QSettings::IniFormat);
+- qDebug() << settings.childGroups();
++ for (const QString path : getDDEMimeTypeFile()) {
++ QSettings settings(path, QSettings::IniFormat);
++ qDebug() << settings.childGroups();
+
+- QFile file(getDDEMimeTypeFile());
+- if (!file.open(QIODevice::ReadOnly | QIODevice::Text)) {
+- return;
+- }
++ QFile file(path);
++ if (!file.open(QIODevice::ReadOnly | QIODevice::Text)) {
++ continue;
++ }
++
++ // Read propeties
++ QTextStream in(&file);
++ QString desktopKey;
++ while (!in.atEnd()) {
+
+- // Read propeties
+- QTextStream in(&file);
+- QString desktopKey;
+- while (!in.atEnd()) {
++ // Read new line
++ QString line = in.readLine();
+
+- // Read new line
+- QString line = in.readLine();
++ // Skip empty line or line with invalid format
++ if (line.trimmed().isEmpty()) {
++ continue;
++ }
+
+- // Skip empty line or line with invalid format
+- if (line.trimmed().isEmpty()) {
+- continue;
+- }
++ // Read group
++ // NOTE: symbols '[' and ']' can be found not only in group names, but
++ // only group can start with '['
+
+- // Read group
+- // NOTE: symbols '[' and ']' can be found not only in group names, but
+- // only group can start with '['
++ if (line.trimmed().startsWith("[") && line.trimmed().endsWith("]")) {
++ QString tmp = line.trimmed().replace("[", "").replace("]", "");
++ desktopKey = tmp;
++ continue;
++ }
+
+- if (line.trimmed().startsWith("[") && line.trimmed().endsWith("]")) {
+- QString tmp = line.trimmed().replace("[", "").replace("]", "");
+- desktopKey = tmp;
+- continue;
+- }
+-
+- // If we are in correct group and line contains assignment then read data
+- int first_equal = line.indexOf('=');
+- if (!desktopKey.isEmpty() && first_equal >= 0) {
+- QString value = line.mid(first_equal + 1);
+- QStringList mimetypes = value.split(";");
+- DDE_MimeTypes.insert(desktopKey, mimetypes);
+- desktopKey.clear();
++ // If we are in correct group and line contains assignment then read data
++ int first_equal = line.indexOf('=');
++ if (!desktopKey.isEmpty() && first_equal >= 0) {
++ QString value = line.mid(first_equal + 1);
++ QStringList mimetypes = value.split(";");
++ DDE_MimeTypes.insert(desktopKey, mimetypes);
++ desktopKey.clear();
++ }
+ }
++ file.close();
+ }
+- file.close();
+ }
+
+ bool MimesAppsManager::lessByDateTime(const QFileInfo &f1, const QFileInfo &f2)
+diff --git a/dde-file-manager-lib/shutil/mimesappsmanager.h b/dde-file-manager-lib/shutil/mimesappsmanager.h
+index 223c80aa..00a61302 100644
+--- a/dde-file-manager-lib/shutil/mimesappsmanager.h
++++ b/dde-file-manager-lib/shutil/mimesappsmanager.h
+@@ -101,12 +101,12 @@ public:
+
+ static QStringList getApplicationsFolders();
+ static QString getMimeAppsCacheFile();
+- static QString getMimeInfoCacheFilePath();
+- static QString getMimeInfoCacheFileRootPath();
++ static QStringList getMimeInfoCacheFilePath();
++ static QStringList getMimeInfoCacheFileRootPath();
+ static QString getDesktopFilesCacheFile();
+ static QString getDesktopIconsCacheFile();
+ static QStringList getDesktopFiles();
+- static QString getDDEMimeTypeFile();
++ static QStringList getDDEMimeTypeFile();
+ static QMap getDesktopObjs();
+ static void initMimeTypeApps();
+ static void loadDDEMimeTypes();
+--
+2.21.0
+
diff --git a/pkgs/desktops/deepin/dde-file-manager/dde-file-manager.fix-paths.patch b/pkgs/desktops/deepin/dde-file-manager/dde-file-manager.fix-paths.patch
new file mode 100644
index 00000000000..3ced15e7e5a
--- /dev/null
+++ b/pkgs/desktops/deepin/dde-file-manager/dde-file-manager.fix-paths.patch
@@ -0,0 +1,89 @@
+From e68d983a6befd223087916cb3fe31baee77decc4 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Jos=C3=A9=20Romildo=20Malaquias?=
+Date: Sun, 12 May 2019 08:50:07 -0300
+Subject: [PATCH 1/2] Use qt library to determine where to look for application
+ files
+
+---
+ dde-file-manager-lib/shutil/fileutils.cpp | 34 ++++++++++++-------
+ .../shutil/mimesappsmanager.cpp | 11 ++----
+ 2 files changed, 25 insertions(+), 20 deletions(-)
+
+diff --git a/dde-file-manager-lib/shutil/fileutils.cpp b/dde-file-manager-lib/shutil/fileutils.cpp
+index ae8120d3..d6a0573a 100644
+--- a/dde-file-manager-lib/shutil/fileutils.cpp
++++ b/dde-file-manager-lib/shutil/fileutils.cpp
+@@ -242,13 +242,19 @@ bool FileUtils::isArchive(const QString &path)
+ */
+ QStringList FileUtils::getApplicationNames() {
+ QStringList appNames;
+- QDirIterator it("/usr/share/applications", QStringList("*.desktop"),
+- QDir::Files | QDir::NoDotAndDotDot,
+- QDirIterator::Subdirectories);
+- while (it.hasNext()) {
+- it.next();
+- appNames.append(it.fileName());
++
++ const QStringList desktopDirs = QStandardPaths::standardLocations(QStandardPaths::ApplicationsLocation);
++ qDebug() << "dde-file-manager getApplicationNames desktopDirs:" << desktopDirs;
++ for (const QString &dir : desktopDirs) {
++ QDirIterator it(dir, QStringList("*.desktop"),
++ QDir::Files | QDir::NoDotAndDotDot,
++ QDirIterator::Subdirectories);
++ while (it.hasNext()) {
++ it.next();
++ appNames.append(it.fileName());
++ }
+ }
++
+ return appNames;
+ }
+ //---------------------------------------------------------------------------
+@@ -259,12 +265,16 @@ QStringList FileUtils::getApplicationNames() {
+ */
+ QList FileUtils::getApplications() {
+ QList apps;
+- QDirIterator it("/usr/share/applications", QStringList("*.desktop"),
+- QDir::Files | QDir::NoDotAndDotDot,
+- QDirIterator::Subdirectories);
+- while (it.hasNext()) {
+- it.next();
+- apps.append(DesktopFile(it.filePath()));
++ const QStringList desktopDirs = QStandardPaths::standardLocations(QStandardPaths::ApplicationsLocation);
++ qDebug() << "dde-file-manager getApplications desktopDirs:" << desktopDirs;
++ for (const QString &dir : desktopDirs) {
++ QDirIterator it(dir, QStringList("*.desktop"),
++ QDir::Files | QDir::NoDotAndDotDot,
++ QDirIterator::Subdirectories);
++ while (it.hasNext()) {
++ it.next();
++ apps.append(DesktopFile(it.filePath()));
++ }
+ }
+ return apps;
+ }
+diff --git a/dde-file-manager-lib/shutil/mimesappsmanager.cpp b/dde-file-manager-lib/shutil/mimesappsmanager.cpp
+index c6149702..c9e53630 100644
+--- a/dde-file-manager-lib/shutil/mimesappsmanager.cpp
++++ b/dde-file-manager-lib/shutil/mimesappsmanager.cpp
+@@ -542,14 +542,9 @@ QStringList MimesAppsManager::getrecommendedAppsFromMimeWhiteList(const DUrl &ur
+
+ QStringList MimesAppsManager::getApplicationsFolders()
+ {
+- QStringList desktopFolders;
+- desktopFolders << QString("/usr/share/applications/")
+- << QString("/usr/local/share/applications/")
+- << QString("/usr/share/gnome/applications/")
+- << QString("/var/lib/flatpak/exports/share/applications")
+- << QDir::homePath() + QString("/.local/share/flatpak/exports/share/applications")
+- << QDir::homePath() + QString( "/.local/share/applications" );
+- return desktopFolders;
++ QStringList paths = QStandardPaths::standardLocations(QStandardPaths::ApplicationsLocation);
++ qDebug() << "dde-file-manager getApplicationsFolders:" << paths;
++ return paths;
+ }
+
+ QString MimesAppsManager::getMimeAppsCacheFile()
+--
+2.21.0
+
diff --git a/pkgs/desktops/deepin/dde-file-manager/dde-file-manager.pixmaps-paths.patch b/pkgs/desktops/deepin/dde-file-manager/dde-file-manager.pixmaps-paths.patch
new file mode 100644
index 00000000000..582760e6db2
--- /dev/null
+++ b/pkgs/desktops/deepin/dde-file-manager/dde-file-manager.pixmaps-paths.patch
@@ -0,0 +1,38 @@
+From 084c3cfcf4995c109ca2e96f042fe341f925b0b4 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Jos=C3=A9=20Romildo=20Malaquias?=
+Date: Thu, 16 May 2019 19:00:52 -0300
+Subject: [PATCH 4/4] Use xdg to look for pixmap icons
+
+---
+ dde-file-manager-lib/shutil/fileutils.cpp | 15 ++++++++++-----
+ 1 file changed, 10 insertions(+), 5 deletions(-)
+
+diff --git a/dde-file-manager-lib/shutil/fileutils.cpp b/dde-file-manager-lib/shutil/fileutils.cpp
+index d6a0573a..e912e7c2 100644
+--- a/dde-file-manager-lib/shutil/fileutils.cpp
++++ b/dde-file-manager-lib/shutil/fileutils.cpp
+@@ -362,11 +362,16 @@ QIcon FileUtils::searchAppIcon(const DesktopFile &app,
+ }
+
+ // Last chance
+- QDir appIcons("/usr/share/pixmaps","", 0, QDir::Files | QDir::NoDotAndDotDot);
+- QStringList iconFiles = appIcons.entryList();
+- QStringList searchIcons = iconFiles.filter(name);
+- if (searchIcons.count() > 0) {
+- return QIcon("/usr/share/pixmaps/" + searchIcons.at(0));
++ const QStringList dirs = QStandardPaths::standardLocations(QStandardPaths::GenericDataLocation);
++ qDebug() << "searchAppIcon: last chance: look for pixmaps at: " << dirs;
++ for (const QString &dir : dirs) {
++ const QString path = dir + QDir::separator() + "pixmaps";
++ QDir appIcons(path,"", 0, QDir::Files | QDir::NoDotAndDotDot);
++ QStringList iconFiles = appIcons.entryList();
++ QStringList searchIcons = iconFiles.filter(name);
++ if (searchIcons.count() > 0) {
++ return QIcon(path + QDir::separator() + searchIcons.at(0));
++ }
+ }
+
+ // Default icon
+--
+2.21.0
+
diff --git a/pkgs/desktops/deepin/dde-file-manager/default.nix b/pkgs/desktops/deepin/dde-file-manager/default.nix
new file mode 100644
index 00000000000..44964b65c9d
--- /dev/null
+++ b/pkgs/desktops/deepin/dde-file-manager/default.nix
@@ -0,0 +1,251 @@
+{ stdenv, fetchFromGitHub, pkgconfig, avfs, dde-daemon, dde-dock,
+ dde-polkit-agent, dde-qt-dbus-factory, deepin, deepin-anything,
+ deepin-desktop-schemas, deepin-gettext-tools, deepin-movie-reborn,
+ deepin-shortcut-viewer, deepin-terminal, dtkcore, dtkwidget,
+ ffmpegthumbnailer, file, glib, gnugrep, gsettings-qt, gvfs,
+ jemalloc, kcodecs, libX11, libsecret, polkit, polkit-qt, poppler,
+ procps, qmake, qt5integration, qtmultimedia, qtsvg, qttools,
+ qtx11extras, runtimeShell, samba, shadow, taglib, udisks2-qt5,
+ xdg-user-dirs, xorg, zlib, wrapGAppsHook }:
+
+stdenv.mkDerivation rec {
+ name = "${pname}-${version}";
+ pname = "dde-file-manager";
+ version = "4.8.6.2";
+
+ src = fetchFromGitHub {
+ owner = "linuxdeepin";
+ repo = pname;
+ rev = version;
+ sha256 = "1qw9slssvy6c4j9czyqrhlr3pq6hzxybb86darja2vka84zmvwip";
+ };
+
+ nativeBuildInputs = [
+ deepin.setupHook
+ qmake
+ qttools
+ pkgconfig
+ deepin-gettext-tools
+ wrapGAppsHook
+ ];
+
+ buildInputs = [
+ avfs
+ dde-daemon
+ dde-dock
+ dde-polkit-agent
+ dde-qt-dbus-factory
+ deepin-anything
+ deepin-desktop-schemas
+ deepin-movie-reborn.dev
+ deepin-shortcut-viewer
+ deepin-terminal
+ dtkcore
+ dtkwidget
+ ffmpegthumbnailer
+ file
+ glib.bin
+ glib.dev
+ gnugrep
+ gsettings-qt
+ gvfs
+ jemalloc
+ kcodecs
+ libsecret
+ polkit
+ polkit-qt
+ poppler
+ procps
+ qt5integration
+ qtmultimedia
+ qtsvg
+ qtx11extras
+ samba
+ taglib
+ udisks2-qt5
+ xdg-user-dirs
+ xorg.libX11
+ xorg.libxcb
+ xorg.xcbutil
+ xorg.xcbutilwm
+ xorg.xorgproto
+ zlib
+ ];
+
+ patches = [
+ ./dde-file-manager.fix-paths.patch
+ ./dde-file-manager.fix-mime-cache-paths.patch
+ ./dde-file-manager.pixmaps-paths.patch
+ ];
+
+ postPatch = ''
+ searchHardCodedPaths
+
+ patchShebangs dde-desktop/translate_generation.sh
+ patchShebangs dde-desktop/translate_ts2desktop.sh
+ patchShebangs dde-file-manager-lib/generate_translations.sh
+ patchShebangs dde-file-manager/generate_translations.sh
+ patchShebangs dde-file-manager/translate_ts2desktop.sh
+ patchShebangs usb-device-formatter/generate_translations.sh
+ patchShebangs usb-device-formatter/translate_ts2desktop.sh
+
+ # x-terminal-emulator is a virtual package in Debian systems. The
+ # terminal emulator is configured by Debian's alternative system.
+ # It is not available on NixOS. Use deepin-terminal instead
+ sed -i -e "s,x-terminal-emulator,deepin-terminal," \
+ dde-file-manager-lib/shutil/fileutils.cpp
+
+ sed -i -e "s,\$\$\\[QT_INSTALL_LIBS\\],$out/lib," \
+ dde-file-manager-lib/dde-file-manager-lib.pro \
+ dde-file-thumbnail-tool/common.pri \
+ common/common.pri
+
+ sed -i '/^QMAKE_PKGCONFIG_DESTDIR/i QMAKE_PKGCONFIG_PREFIX = $$PREFIX' \
+ dde-file-manager-lib/dde-file-manager-lib.pro
+
+ fixPath ${dde-dock} /usr/include/dde-dock \
+ dde-dock-plugins/disk-mount/disk-mount.pro
+
+ # treefrog is not available in NixOS, and I am not sure if it is really needed
+ #fixPath $ {treefrog-framework} /usr/include/treefrog \
+ # dde-sharefiles/appbase.pri
+
+ fixPath ${deepin-anything} /usr/share/dbus-1/interfaces \
+ dde-file-manager-lib/dbusinterface/dbusinterface.pri
+
+ sed -i -e "s,\$\$system(\$\$PKG_CONFIG --variable libdir deepin-anything-server-lib),$out/lib," \
+ deepin-anything-server-plugins/dde-anythingmonitor/dde-anythingmonitor.pro
+
+ fixPath ${dde-daemon} /usr/lib/deepin-daemon/desktop-toggle \
+ dde-zone/mainwindow.h
+
+ fixPath ${deepin-gettext-tools} /usr/bin/deepin-desktop-ts-convert \
+ dde-desktop/translate_desktop2ts.sh \
+ dde-desktop/translate_ts2desktop.sh \
+ dde-file-manager/translate_desktop2ts.sh \
+ dde-file-manager/translate_ts2desktop.sh \
+ usb-device-formatter/translate_desktop2ts.sh \
+ usb-device-formatter/translate_ts2desktop.sh
+
+ fixPath ${avfs} /usr/bin/mountavfs dde-file-manager-lib/shutil/fileutils.cpp
+ fixPath ${avfs} /usr/bin/umountavfs dde-file-manager-lib/shutil/fileutils.cpp
+
+ fixPath ${deepin-terminal} /usr/bin/deepin-terminal \
+ dde-file-manager-lib/shutil/fileutils.cpp
+
+ fixPath $out /usr/share/dde-file-manager \
+ dde-sharefiles/appbase.pri \
+ dde-sharefiles/dde-sharefiles.pro
+
+ fixPath $out /usr/share/usb-device-formatter \
+ usb-device-formatter/main.cpp
+
+ fixPath $out /usr/share/applications \
+ dde-file-manager/mips/dde-file-manager-autostart.desktop \
+ dde-desktop/development.pri
+
+ fixPath $out /usr/bin \
+ dbusservices/com.deepin.dde.desktop.service \
+ dde-desktop/data/com.deepin.dde.desktop.service \
+ dde-desktop/dbus/filedialog/com.deepin.filemanager.filedialog.service \
+ dde-desktop/dbus/filemanager1/org.freedesktop.FileManager.service \
+ dde-file-manager-daemon/dbusservice/com.deepin.filemanager.daemon.service \
+ dde-file-manager-daemon/dbusservice/dde-filemanager-daemon.service \
+ dde-file-manager-daemon/dde-file-manager-daemon.pro \
+ dde-file-manager-lib/dde-file-manager-lib.pro \
+ dde-file-manager-lib/pkexec/com.deepin.pkexec.dde-file-manager.policy \
+ dde-file-manager/dde-file-manager-xdg-autostart.desktop \
+ dde-file-manager/dde-file-manager.desktop \
+ dde-file-manager/dde-file-manager.pro \
+ dde-file-manager/mips/dde-file-manager-autostart.desktop \
+ dde-file-manager/mips/dde-file-manager.desktop \
+ dde-file-manager/pkexec/com.deepin.pkexec.dde-file-manager.policy \
+ usb-device-formatter/pkexec/com.deepin.pkexec.usb-device-formatter.policy \
+ usb-device-formatter/usb-device-formatter.desktop \
+ usb-device-formatter/usb-device-formatter.pro
+ fixPath $out /etc \
+ dde-file-manager/dde-file-manager.pro \
+ dde-file-manager-daemon/dde-file-manager-daemon.pro
+
+ fixPath $out /usr \
+ common/common.pri \
+ dde-desktop/dbus/filedialog/filedialog.pri \
+ dde-desktop/dbus/filemanager1/filemanager1.pri \
+ dde-desktop/development.pri \
+ dde-dock-plugins/disk-mount/disk-mount.pro \
+ dde-file-manager-daemon/dde-file-manager-daemon.pro \
+ usb-device-formatter/usb-device-formatter.pro
+
+ sed -i -e "s,xdg-user-dir,${xdg-user-dirs}/bin/xdg-user-dir," \
+ dde-file-manager/dde-xdg-user-dirs-update
+
+ sed -i -e "s,Exec=dde-file-manager,Exec=$out/bin/dde-file-manager," \
+ dde-file-manager/dde-file-manager.desktop
+
+ sed -i -e "s,Exec=gio,Exec=${glib.bin}/bin/gio," \
+ dde-desktop/data/applications/dde-trash.desktop \
+ dde-desktop/data/applications/dde-computer.desktop
+
+ sed -i -e "s,/usr/lib/gvfs/gvfsd,${gvfs}/libexec/gvfsd," \
+ dde-file-manager-lib/gvfs/networkmanager.cpp
+
+ sed -i -e "s,/usr/sbin/smbd,${samba}/bin/smbd," \
+ -e "s,/usr/sbin/groupadd,${shadow}/bin/groupadd," \
+ -e "s,/usr/sbin/adduser,${shadow}/bin/adduser," \
+ dde-file-manager-daemon/usershare/usersharemanager.cpp
+
+ sed -i -e 's,startDetached("deepin-shortcut-viewer",startDetached("${deepin-shortcut-viewer}/bin/deepin-shortcut-viewer",' \
+ dde-file-manager-lib/controllers/appcontroller.cpp
+
+ sed -i -e 's,/bin/bash,${runtimeShell},' \
+ -e 's,\,${procps}/bin/ps,' \
+ -e 's,\,${gnugrep}/bin/grep,' \
+ utils/utils.cpp \
+ dde-file-manager-lib/controllers/fileeventprocessor.cpp
+
+ # The hard coded path in `QString("/etc/xdg/%1/%2")` in
+ # dde-file-manager-lib/interfaces/dfmsettings.cpp
+ # does not needed a fix because all the standard locations
+ # are tried before faling back to /etc/xdg.
+
+ # I do not know yet how to deal with:
+ # dde-file-manager-lib/sw_label/llsdeepinlabellibrary.h: return "/usr/lib/sw_64-linux-gnu/dde-file-manager/libllsdeeplabel.so";
+ # dde-file-manager-lib/sw_label/filemanagerlibrary.h: return "/usr/lib/sw_64-linux-gnu/dde-file-manager/libfilemanager.so";
+ # dde-file-manager-lib/sw_label/libinstall.sh:mkdir /usr/lib/sw_64-linux-gnu/dde-file-manager
+ # dde-file-manager-lib/sw_label/libinstall.sh:cp libfilemanager.so libllsdeeplabel.so /usr/lib/sw_64-linux-gnu/dde-file-manager
+ # They are not present on my installations of Deepin Linux, Arch Linux and Ubuntu. Can they be ignored?
+
+ # Notes:
+ # - As file-roller is looked in the path using QStandardPaths::findExecutable, it is not been added as a dependency.
+ # - deepin-qt5config is a dependency exclusive to the Deepin Linux distribution. No other distribution has it, according to repology.
+ '';
+
+ qmakeFlags = [
+ "QMAKE_CFLAGS_ISYSTEM="
+
+ # Disable ffmpeg
+ "CONFIG+=DISABLE_FFMPEG"
+ ];
+
+ preBuild = ''
+ export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:${zlib}/lib";
+ export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:${libX11}/lib";
+ '';
+
+ postFixup = ''
+ # debuging
+ unset LD_LIBRARY_PATH
+ searchForUnresolvedDLL $out
+ searchHardCodedPaths $out
+ '';
+
+ passthru.updateScript = deepin.updateScript { inherit name; };
+
+ meta = with stdenv.lib; {
+ description = "File manager and desktop module for Deepin Desktop Environment";
+ homepage = https://github.com/linuxdeepin/dde-file-manager;
+ license = licenses.gpl3;
+ platforms = platforms.linux;
+ maintainers = with maintainers; [ romildo ];
+ };
+}
diff --git a/pkgs/desktops/deepin/deepin-movie-reborn/default.nix b/pkgs/desktops/deepin/deepin-movie-reborn/default.nix
index 914e77d8515..ef47603f817 100644
--- a/pkgs/desktops/deepin/deepin-movie-reborn/default.nix
+++ b/pkgs/desktops/deepin/deepin-movie-reborn/default.nix
@@ -14,6 +14,8 @@ stdenv.mkDerivation rec {
sha256 = "1qh079j4c2n33z0ykv87af9vfkmdxxrv6dy54wdqdpr7vrhn89gb";
};
+ outputs = [ "out" "dev" ];
+
nativeBuildInputs = [
cmake
pkgconfig
diff --git a/pkgs/desktops/deepin/default.nix b/pkgs/desktops/deepin/default.nix
index ccc2270a8ed..49114330f13 100644
--- a/pkgs/desktops/deepin/default.nix
+++ b/pkgs/desktops/deepin/default.nix
@@ -11,6 +11,7 @@ let
dde-calendar = callPackage ./dde-calendar { };
dde-daemon = callPackage ./dde-daemon { };
dde-dock = callPackage ./dde-dock { };
+ dde-file-manager = callPackage ./dde-file-manager { };
dde-network-utils = callPackage ./dde-network-utils { };
dde-polkit-agent = callPackage ./dde-polkit-agent { };
dde-qt-dbus-factory = callPackage ./dde-qt-dbus-factory { };
diff --git a/pkgs/desktops/gnustep/libobjc2/default.nix b/pkgs/desktops/gnustep/libobjc2/default.nix
index b238623eb09..b058bd87989 100644
--- a/pkgs/desktops/gnustep/libobjc2/default.nix
+++ b/pkgs/desktops/gnustep/libobjc2/default.nix
@@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
pname = "libobjc2";
- version = "1.9";
+ version = "2.0";
src = fetchFromGitHub {
owner = "gnustep";
repo = "libobjc2";
rev = "v${version}";
- sha256 = "00pscl3ly3rv6alf9vk70kxnnxq2rfgpc1ylcv6cgjs9jxdnrqmn";
+ sha256 = "1b4h0a4pqr8j6300qr2wmi33r7ysvp705gs0ypx69hbmifln0mlf";
};
nativeBuildInputs = [ cmake ];
diff --git a/pkgs/desktops/mate/caja-dropbox/default.nix b/pkgs/desktops/mate/caja-dropbox/default.nix
index 411308c488c..f5b71eba141 100644
--- a/pkgs/desktops/mate/caja-dropbox/default.nix
+++ b/pkgs/desktops/mate/caja-dropbox/default.nix
@@ -1,31 +1,49 @@
-{ stdenv, fetchurl, pkgconfig, gtk3, mate, python3Packages }:
+{ stdenv, fetchurl, substituteAll
+, pkgconfig, gobject-introspection, gdk_pixbuf
+, gtk3, mate, python3, dropbox }:
+let
+ dropboxd = "${dropbox}/bin/dropbox";
+in
stdenv.mkDerivation rec {
- name = "caja-dropbox-${version}";
+ pname = "caja-dropbox";
version = "1.22.1";
src = fetchurl {
- url = "http://pub.mate-desktop.org/releases/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz";
+ url = "http://pub.mate-desktop.org/releases/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
sha256 = "18cnd3yw2ingvl38mhmfbl5k0kfg8pzcf2649j00i6v90cwiril5";
};
+ patches = [
+ (substituteAll {
+ src = ./fix-cli-paths.patch;
+ inherit dropboxd;
+ })
+ ];
+
+ strictDeps = true;
+
nativeBuildInputs = [
pkgconfig
+ gobject-introspection
+ gdk_pixbuf
+ (python3.withPackages (ps: with ps; [
+ docutils
+ pygobject3
+ ]))
];
buildInputs = [
gtk3
mate.caja
- python3Packages.python
- python3Packages.pygtk
- python3Packages.docutils
+ python3
];
configureFlags = [ "--with-caja-extension-dir=$$out/lib/caja/extensions-2.0" ];
meta = with stdenv.lib; {
description = "Dropbox extension for Caja file manager";
- homepage = https://github.com/mate-desktop/caja-dropbox;
+ homepage = "https://github.com/mate-desktop/caja-dropbox";
license = with licenses; [ gpl3 cc-by-nd-30 ];
platforms = platforms.unix;
maintainers = [ maintainers.romildo ];
diff --git a/pkgs/desktops/mate/caja-dropbox/fix-cli-paths.patch b/pkgs/desktops/mate/caja-dropbox/fix-cli-paths.patch
new file mode 100644
index 00000000000..de591f493f6
--- /dev/null
+++ b/pkgs/desktops/mate/caja-dropbox/fix-cli-paths.patch
@@ -0,0 +1,11 @@
+--- a/caja-dropbox.in
++++ b/caja-dropbox.in
+@@ -70,7 +70,7 @@ DOWNLOADING = "Downloading Dropbox... %d%%"
+ UNPACKING = "Unpacking Dropbox... %d%%"
+
+ PARENT_DIR = os.path.expanduser("~")
+-DROPBOXD_PATH = "%s/.dropbox-dist/dropboxd" % PARENT_DIR
++DROPBOXD_PATH = "@dropboxd@"
+ DESKTOP_FILE = "@DESKTOP_FILE_DIR@/caja-dropbox.desktop"
+
+ enc = locale.getpreferredencoding()
diff --git a/pkgs/desktops/mate/caja-with-extensions/default.nix b/pkgs/desktops/mate/caja-with-extensions/default.nix
new file mode 100644
index 00000000000..35e3cd198f6
--- /dev/null
+++ b/pkgs/desktops/mate/caja-with-extensions/default.nix
@@ -0,0 +1,20 @@
+{ stdenv, lib, makeWrapper, caja-extensions, caja, extensions ? [ caja-extensions ] }:
+
+stdenv.mkDerivation {
+ pname = "${caja.pname}-with-extensions";
+ version = caja.version;
+
+ phases = [ "installPhase" ];
+
+ nativeBuildInputs = [ makeWrapper ];
+
+ inherit caja;
+
+ installPhase = ''
+ mkdir -p $out/bin
+ makeWrapper $caja/bin/caja $out/bin/caja \
+ --set CAJA_EXTENSION_DIRS ${lib.concatMapStringsSep ":" (x: "${x.outPath}/lib/caja/extensions-2.0") extensions}
+ '';
+
+ inherit (caja.meta);
+}
diff --git a/pkgs/desktops/mate/caja/default.nix b/pkgs/desktops/mate/caja/default.nix
index fcb903f703e..667a73eb630 100644
--- a/pkgs/desktops/mate/caja/default.nix
+++ b/pkgs/desktops/mate/caja/default.nix
@@ -1,11 +1,11 @@
{ stdenv, fetchurl, pkgconfig, intltool, gtk3, libnotify, libxml2, libexif, exempi, mate, hicolor-icon-theme, wrapGAppsHook }:
stdenv.mkDerivation rec {
- name = "caja-${version}";
+ pname = "caja";
version = "1.22.1";
src = fetchurl {
- url = "http://pub.mate-desktop.org/releases/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz";
+ url = "http://pub.mate-desktop.org/releases/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
sha256 = "10b7yjimblymp1fpsrl4jb2k7kbhla2izsj3njfmg2n6fv9fy9iv";
};
diff --git a/pkgs/desktops/mate/default.nix b/pkgs/desktops/mate/default.nix
index 3cab936b92b..f4f2b3620e7 100644
--- a/pkgs/desktops/mate/default.nix
+++ b/pkgs/desktops/mate/default.nix
@@ -4,11 +4,12 @@ let
callPackage = newScope self;
self = rec {
-
+
atril = callPackage ./atril { };
caja = callPackage ./caja { };
caja-dropbox = callPackage ./caja-dropbox { };
caja-extensions = callPackage ./caja-extensions { };
+ caja-with-extensions = callPackage ./caja-with-extensions { };
engrampa = callPackage ./engrampa { };
eom = callPackage ./eom { };
libmatekbd = callPackage ./libmatekbd { };
@@ -86,7 +87,7 @@ let
mozo
pluma
];
-
+
};
in self
diff --git a/pkgs/desktops/pantheon/apps/elementary-calculator/default.nix b/pkgs/desktops/pantheon/apps/elementary-calculator/default.nix
index 9aed8ffcc27..4a4850a0824 100644
--- a/pkgs/desktops/pantheon/apps/elementary-calculator/default.nix
+++ b/pkgs/desktops/pantheon/apps/elementary-calculator/default.nix
@@ -1,7 +1,7 @@
{ stdenv, fetchFromGitHub, pantheon, pkgconfig
, meson, ninja, vala, desktop-file-utils, libxml2
-, gtk3, python3, granite, libgee, gobject-introspection
-, elementary-icon-theme, appstream, wrapGAppsHook }:
+, gtk3, python3, granite, libgee, elementary-icon-theme
+, appstream, wrapGAppsHook }:
stdenv.mkDerivation rec {
pname = "calculator";
@@ -26,7 +26,6 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [
appstream
desktop-file-utils
- gobject-introspection
libxml2
meson
ninja
diff --git a/pkgs/desktops/pantheon/apps/elementary-calendar/default.nix b/pkgs/desktops/pantheon/apps/elementary-calendar/default.nix
index c165df26f60..9f684c22767 100644
--- a/pkgs/desktops/pantheon/apps/elementary-calendar/default.nix
+++ b/pkgs/desktops/pantheon/apps/elementary-calendar/default.nix
@@ -2,7 +2,7 @@
, ninja, vala, desktop-file-utils, gtk3, granite, libgee
, geoclue2, libchamplain, clutter, folks, geocode-glib, python3
, libnotify, libical, evolution-data-server, appstream-glib
-, elementary-icon-theme, gobject-introspection, wrapGAppsHook }:
+, elementary-icon-theme, wrapGAppsHook }:
stdenv.mkDerivation rec {
pname = "calendar";
@@ -27,7 +27,6 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [
appstream-glib
desktop-file-utils
- gobject-introspection
meson
ninja
pkgconfig
diff --git a/pkgs/desktops/pantheon/apps/elementary-files/default.nix b/pkgs/desktops/pantheon/apps/elementary-files/default.nix
index c90d9a566f8..99c7afffe7a 100644
--- a/pkgs/desktops/pantheon/apps/elementary-files/default.nix
+++ b/pkgs/desktops/pantheon/apps/elementary-files/default.nix
@@ -1,7 +1,7 @@
{ stdenv, fetchFromGitHub, pantheon, pkgconfig, meson, ninja, gettext, vala
, python3, desktop-file-utils, libcanberra, gtk3, libgee, granite, libnotify
, libunity, pango, plank, bamf, sqlite, libdbusmenu-gtk3, zeitgeist, glib-networking
-, elementary-icon-theme, gobject-introspection, wrapGAppsHook }:
+, elementary-icon-theme, wrapGAppsHook }:
stdenv.mkDerivation rec {
pname = "files";
@@ -27,7 +27,6 @@ stdenv.mkDerivation rec {
desktop-file-utils
gettext
glib-networking
- gobject-introspection
meson
ninja
pkgconfig
diff --git a/pkgs/desktops/pantheon/apps/elementary-photos/default.nix b/pkgs/desktops/pantheon/apps/elementary-photos/default.nix
index 4ee2aef1760..32e9a0bcc8d 100644
--- a/pkgs/desktops/pantheon/apps/elementary-photos/default.nix
+++ b/pkgs/desktops/pantheon/apps/elementary-photos/default.nix
@@ -1,7 +1,7 @@
{ stdenv, fetchFromGitHub, pantheon, meson, ninja, pkgconfig, vala, desktop-file-utils
, gtk3, glib, libaccounts-glib, libexif, libgee, geocode-glib, gexiv2,libgphoto2, fetchpatch
, granite, gst_all_1, libgudev, json-glib, libraw, librest, libsoup, sqlite, python3
-, scour, webkitgtk, libwebp, appstream, libunity, wrapGAppsHook, gobject-introspection, elementary-icon-theme }:
+, scour, webkitgtk, libwebp, appstream, libunity, wrapGAppsHook, elementary-icon-theme }:
stdenv.mkDerivation rec {
pname = "photos";
@@ -26,7 +26,6 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [
appstream
desktop-file-utils
- gobject-introspection
meson
ninja
pkgconfig
diff --git a/pkgs/desktops/pantheon/apps/elementary-screenshot-tool/default.nix b/pkgs/desktops/pantheon/apps/elementary-screenshot-tool/default.nix
index 2644d31d798..b1a5796770d 100644
--- a/pkgs/desktops/pantheon/apps/elementary-screenshot-tool/default.nix
+++ b/pkgs/desktops/pantheon/apps/elementary-screenshot-tool/default.nix
@@ -1,6 +1,6 @@
{ stdenv, fetchFromGitHub, pantheon, pkgconfig, meson, callPackage
, ninja, vala, python3, desktop-file-utils, gtk3, granite, libgee
-, libcanberra, gobject-introspection, elementary-icon-theme, wrapGAppsHook }:
+, libcanberra, elementary-icon-theme, wrapGAppsHook }:
stdenv.mkDerivation rec {
pname = "screenshot-tool"; # This will be renamed to "screenshot" soon. See -> https://github.com/elementary/screenshot/pull/93
@@ -24,7 +24,6 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [
desktop-file-utils
- gobject-introspection
meson
ninja
pkgconfig
diff --git a/pkgs/desktops/pantheon/apps/elementary-terminal/default.nix b/pkgs/desktops/pantheon/apps/elementary-terminal/default.nix
index 9b2060afa6b..2c146169f42 100644
--- a/pkgs/desktops/pantheon/apps/elementary-terminal/default.nix
+++ b/pkgs/desktops/pantheon/apps/elementary-terminal/default.nix
@@ -1,6 +1,6 @@
{ stdenv, fetchFromGitHub, pantheon, pkgconfig, meson, ninja, python3
, vala, desktop-file-utils, gtk3, libxml2, granite, libnotify, vte, libgee
-, elementary-icon-theme, appstream, gobject-introspection, wrapGAppsHook }:
+, elementary-icon-theme, appstream, wrapGAppsHook }:
stdenv.mkDerivation rec {
pname = "terminal";
@@ -25,7 +25,6 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [
appstream
desktop-file-utils
- gobject-introspection
libxml2
meson
ninja
diff --git a/pkgs/desktops/pantheon/apps/elementary-videos/default.nix b/pkgs/desktops/pantheon/apps/elementary-videos/default.nix
index b123d4cbf5b..2d978d966b9 100644
--- a/pkgs/desktops/pantheon/apps/elementary-videos/default.nix
+++ b/pkgs/desktops/pantheon/apps/elementary-videos/default.nix
@@ -1,6 +1,6 @@
{ stdenv, fetchFromGitHub, pantheon, pkgconfig, meson, ninja, vala, python3
, desktop-file-utils, gtk3, granite, libgee, clutter-gst, clutter-gtk, gst_all_1
-, gobject-introspection, elementary-icon-theme, wrapGAppsHook }:
+, elementary-icon-theme, wrapGAppsHook }:
stdenv.mkDerivation rec {
pname = "videos";
@@ -24,7 +24,6 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [
desktop-file-utils
- gobject-introspection
meson
ninja
pkgconfig
diff --git a/pkgs/desktops/pantheon/apps/switchboard-plugs/a11y/default.nix b/pkgs/desktops/pantheon/apps/switchboard-plugs/a11y/default.nix
index 1883e229479..859e04eb954 100644
--- a/pkgs/desktops/pantheon/apps/switchboard-plugs/a11y/default.nix
+++ b/pkgs/desktops/pantheon/apps/switchboard-plugs/a11y/default.nix
@@ -1,5 +1,5 @@
{ stdenv, fetchFromGitHub, pantheon, meson, ninja, pkgconfig
-, vala, libgee, granite, gtk3, switchboard, gobject-introspection }:
+, vala, libgee, granite, gtk3, switchboard }:
stdenv.mkDerivation rec {
pname = "switchboard-plug-a11y";
@@ -19,7 +19,6 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [
- gobject-introspection
meson
ninja
pkgconfig
diff --git a/pkgs/desktops/pantheon/apps/switchboard-plugs/about/default.nix b/pkgs/desktops/pantheon/apps/switchboard-plugs/about/default.nix
index d217ad20d2e..6d7ecbffa31 100644
--- a/pkgs/desktops/pantheon/apps/switchboard-plugs/about/default.nix
+++ b/pkgs/desktops/pantheon/apps/switchboard-plugs/about/default.nix
@@ -1,5 +1,5 @@
-{ stdenv, fetchFromGitHub, pantheon, substituteAll, meson, ninja, pkgconfig
-, vala, libgee, granite, gtk3, switchboard, pciutils, gobject-introspection }:
+{ stdenv, fetchFromGitHub, pantheon, substituteAll, meson, ninja
+, pkgconfig, vala, libgee, granite, gtk3, switchboard, pciutils }:
stdenv.mkDerivation rec {
pname = "switchboard-plug-about";
@@ -19,7 +19,6 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [
- gobject-introspection
meson
ninja
pkgconfig
diff --git a/pkgs/desktops/pantheon/apps/switchboard-plugs/applications/default.nix b/pkgs/desktops/pantheon/apps/switchboard-plugs/applications/default.nix
index ed4dc0c8447..0d7586391ce 100644
--- a/pkgs/desktops/pantheon/apps/switchboard-plugs/applications/default.nix
+++ b/pkgs/desktops/pantheon/apps/switchboard-plugs/applications/default.nix
@@ -1,5 +1,5 @@
-{ stdenv, fetchFromGitHub, pantheon, meson, ninja, pkgconfig
-, vala, libgee, granite, gtk3, switchboard, gobject-introspection }:
+{ stdenv, fetchFromGitHub, pantheon, meson, ninja
+, pkgconfig, vala, libgee, granite, gtk3, switchboard }:
stdenv.mkDerivation rec {
pname = "switchboard-plug-applications";
@@ -19,7 +19,6 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [
- gobject-introspection
meson
ninja
pkgconfig
diff --git a/pkgs/desktops/pantheon/apps/switchboard-plugs/bluetooth/default.nix b/pkgs/desktops/pantheon/apps/switchboard-plugs/bluetooth/default.nix
index db653a7f8ff..547b6d897e4 100644
--- a/pkgs/desktops/pantheon/apps/switchboard-plugs/bluetooth/default.nix
+++ b/pkgs/desktops/pantheon/apps/switchboard-plugs/bluetooth/default.nix
@@ -1,5 +1,5 @@
-{ stdenv, fetchFromGitHub, pantheon, meson, ninja, pkgconfig, vala, libgee
-, granite, gtk3, bluez, switchboard, gobject-introspection }:
+{ stdenv, fetchFromGitHub, pantheon, meson, ninja, pkgconfig
+, vala, libgee, granite, gtk3, bluez, switchboard }:
stdenv.mkDerivation rec {
pname = "switchboard-plug-bluetooth";
@@ -19,7 +19,6 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [
- gobject-introspection
meson
ninja
pkgconfig
diff --git a/pkgs/desktops/pantheon/apps/switchboard-plugs/datetime/default.nix b/pkgs/desktops/pantheon/apps/switchboard-plugs/datetime/default.nix
index 8c00ff4728e..e1303a3cc48 100644
--- a/pkgs/desktops/pantheon/apps/switchboard-plugs/datetime/default.nix
+++ b/pkgs/desktops/pantheon/apps/switchboard-plugs/datetime/default.nix
@@ -1,5 +1,5 @@
{ stdenv, fetchFromGitHub, pantheon, meson, ninja, substituteAll, pkgconfig
-, vala, libgee, granite, gtk3, libxml2, switchboard, tzdata, gobject-introspection }:
+, vala, libgee, granite, gtk3, libxml2, switchboard, tzdata }:
stdenv.mkDerivation rec {
pname = "switchboard-plug-datetime";
@@ -19,7 +19,6 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [
- gobject-introspection
libxml2
meson
ninja
diff --git a/pkgs/desktops/pantheon/apps/switchboard-plugs/display/default.nix b/pkgs/desktops/pantheon/apps/switchboard-plugs/display/default.nix
index f5fbb0a51cf..22fb795297e 100644
--- a/pkgs/desktops/pantheon/apps/switchboard-plugs/display/default.nix
+++ b/pkgs/desktops/pantheon/apps/switchboard-plugs/display/default.nix
@@ -1,5 +1,5 @@
-{ stdenv, fetchFromGitHub, pantheon, meson, ninja, pkgconfig
-, vala, libgee, granite, gtk3, switchboard, gobject-introspection }:
+{ stdenv, fetchFromGitHub, pantheon, meson, ninja
+, pkgconfig, vala, libgee, granite, gtk3, switchboard }:
stdenv.mkDerivation rec {
pname = "switchboard-plug-display";
@@ -19,7 +19,6 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [
- gobject-introspection
meson
ninja
pkgconfig
diff --git a/pkgs/desktops/pantheon/apps/switchboard-plugs/keyboard/default.nix b/pkgs/desktops/pantheon/apps/switchboard-plugs/keyboard/default.nix
index 50256b8f77d..71f865bdeb6 100644
--- a/pkgs/desktops/pantheon/apps/switchboard-plugs/keyboard/default.nix
+++ b/pkgs/desktops/pantheon/apps/switchboard-plugs/keyboard/default.nix
@@ -1,5 +1,5 @@
-{ stdenv, fetchFromGitHub, pantheon, substituteAll, meson, ninja, pkgconfig, vala, libgee
-, granite, gtk3, libxml2, libgnomekbd, libxklavier, xorg, switchboard, gobject-introspection }:
+{ stdenv, fetchFromGitHub, pantheon, substituteAll, meson, ninja, pkgconfig
+, vala, libgee, granite, gtk3, libxml2, libgnomekbd, libxklavier, xorg, switchboard }:
stdenv.mkDerivation rec {
pname = "switchboard-plug-keyboard";
@@ -19,7 +19,6 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [
- gobject-introspection
libxml2
meson
ninja
diff --git a/pkgs/desktops/pantheon/apps/switchboard-plugs/mouse-touchpad/default.nix b/pkgs/desktops/pantheon/apps/switchboard-plugs/mouse-touchpad/default.nix
index eaf15fdb815..a55a525c79b 100644
--- a/pkgs/desktops/pantheon/apps/switchboard-plugs/mouse-touchpad/default.nix
+++ b/pkgs/desktops/pantheon/apps/switchboard-plugs/mouse-touchpad/default.nix
@@ -1,5 +1,5 @@
{ stdenv, fetchFromGitHub, pantheon, fetchpatch, meson, ninja, pkgconfig, vala
-, libgee, granite, gtk3, switchboard, elementary-settings-daemon, gobject-introspection }:
+, libgee, granite, gtk3, switchboard, elementary-settings-daemon }:
stdenv.mkDerivation rec {
pname = "switchboard-plug-mouse-touchpad";
@@ -27,7 +27,6 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [
- gobject-introspection
meson
ninja
pkgconfig
diff --git a/pkgs/desktops/pantheon/apps/switchboard-plugs/network/default.nix b/pkgs/desktops/pantheon/apps/switchboard-plugs/network/default.nix
index 95b558901d2..283a13bd82a 100644
--- a/pkgs/desktops/pantheon/apps/switchboard-plugs/network/default.nix
+++ b/pkgs/desktops/pantheon/apps/switchboard-plugs/network/default.nix
@@ -1,5 +1,5 @@
{ stdenv, fetchFromGitHub, pantheon, meson, ninja, pkgconfig, substituteAll, vala
-, libgee, granite, gtk3, networkmanager, networkmanagerapplet, switchboard, gobject-introspection }:
+, libgee, granite, gtk3, networkmanager, networkmanagerapplet, switchboard }:
stdenv.mkDerivation rec {
pname = "switchboard-plug-network";
@@ -19,7 +19,6 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [
- gobject-introspection
meson
ninja
pkgconfig
diff --git a/pkgs/desktops/pantheon/apps/switchboard-plugs/notifications/default.nix b/pkgs/desktops/pantheon/apps/switchboard-plugs/notifications/default.nix
index a6fb86bb828..277f70cf984 100644
--- a/pkgs/desktops/pantheon/apps/switchboard-plugs/notifications/default.nix
+++ b/pkgs/desktops/pantheon/apps/switchboard-plugs/notifications/default.nix
@@ -1,5 +1,5 @@
-{ stdenv, fetchFromGitHub, pantheon, meson, ninja, pkgconfig
-, vala, libgee, granite, gtk3, switchboard, gobject-introspection }:
+{ stdenv, fetchFromGitHub, pantheon, meson, ninja
+, pkgconfig, vala, libgee, granite, gtk3, switchboard }:
stdenv.mkDerivation rec {
pname = "switchboard-plug-notifications";
@@ -19,7 +19,6 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [
- gobject-introspection
meson
ninja
pkgconfig
diff --git a/pkgs/desktops/pantheon/apps/switchboard-plugs/onlineaccounts/default.nix b/pkgs/desktops/pantheon/apps/switchboard-plugs/onlineaccounts/default.nix
index 0417d33df7d..496a69ce1f6 100644
--- a/pkgs/desktops/pantheon/apps/switchboard-plugs/onlineaccounts/default.nix
+++ b/pkgs/desktops/pantheon/apps/switchboard-plugs/onlineaccounts/default.nix
@@ -1,6 +1,6 @@
{ stdenv, fetchFromGitHub, pantheon, meson, ninja, pkgconfig, vala
, libgee, granite, gtk3, libaccounts-glib, libsignon-glib, json-glib
-, librest, webkitgtk, libsoup, switchboard, gobject-introspection }:
+, librest, webkitgtk, libsoup, switchboard }:
stdenv.mkDerivation rec {
pname = "switchboard-plug-onlineaccounts";
@@ -20,7 +20,6 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [
- gobject-introspection
meson
ninja
pkgconfig
diff --git a/pkgs/desktops/pantheon/apps/switchboard-plugs/pantheon-shell/default.nix b/pkgs/desktops/pantheon/apps/switchboard-plugs/pantheon-shell/default.nix
index 6c29282652c..4d6a1f5c5c6 100644
--- a/pkgs/desktops/pantheon/apps/switchboard-plugs/pantheon-shell/default.nix
+++ b/pkgs/desktops/pantheon/apps/switchboard-plugs/pantheon-shell/default.nix
@@ -1,6 +1,6 @@
{ stdenv, fetchFromGitHub, pantheon, meson, ninja, pkgconfig, vala
, libgee, granite, gexiv2, elementary-settings-daemon, gtk3, gnome-desktop
-, gala, wingpanel, plank, switchboard, gettext, gobject-introspection, bamf }:
+, gala, wingpanel, plank, switchboard, gettext, bamf }:
stdenv.mkDerivation rec {
pname = "switchboard-plug-pantheon-shell";
@@ -21,7 +21,6 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [
gettext
- gobject-introspection
meson
ninja
pkgconfig
diff --git a/pkgs/desktops/pantheon/apps/switchboard-plugs/power/default.nix b/pkgs/desktops/pantheon/apps/switchboard-plugs/power/default.nix
index 0178f23f5e1..0179aac84ce 100644
--- a/pkgs/desktops/pantheon/apps/switchboard-plugs/power/default.nix
+++ b/pkgs/desktops/pantheon/apps/switchboard-plugs/power/default.nix
@@ -1,6 +1,6 @@
{ stdenv, fetchFromGitHub, pantheon, substituteAll, meson, ninja
, pkgconfig, vala, libgee, elementary-dpms-helper, elementary-settings-daemon
-, makeWrapper, granite, gtk3, dbus, polkit, switchboard, gobject-introspection }:
+, makeWrapper, granite, gtk3, dbus, polkit, switchboard }:
stdenv.mkDerivation rec {
pname = "switchboard-plug-power";
@@ -20,7 +20,6 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [
- gobject-introspection
meson
ninja
pkgconfig
diff --git a/pkgs/desktops/pantheon/apps/switchboard-plugs/printers/default.nix b/pkgs/desktops/pantheon/apps/switchboard-plugs/printers/default.nix
index 11bd70894ed..293faad51c7 100644
--- a/pkgs/desktops/pantheon/apps/switchboard-plugs/printers/default.nix
+++ b/pkgs/desktops/pantheon/apps/switchboard-plugs/printers/default.nix
@@ -1,5 +1,5 @@
{ stdenv, fetchFromGitHub, pantheon, meson, ninja, pkgconfig
-, vala, libgee, granite, gtk3, cups, switchboard, gobject-introspection }:
+, vala, libgee, granite, gtk3, cups, switchboard }:
stdenv.mkDerivation rec {
pname = "switchboard-plug-printers";
@@ -19,7 +19,6 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [
- gobject-introspection
meson
ninja
pkgconfig
diff --git a/pkgs/desktops/pantheon/apps/switchboard-plugs/security-privacy/default.nix b/pkgs/desktops/pantheon/apps/switchboard-plugs/security-privacy/default.nix
index ff59768e363..9cbab8f2c9f 100644
--- a/pkgs/desktops/pantheon/apps/switchboard-plugs/security-privacy/default.nix
+++ b/pkgs/desktops/pantheon/apps/switchboard-plugs/security-privacy/default.nix
@@ -1,6 +1,6 @@
{ stdenv, fetchFromGitHub, pantheon, meson, python3, ninja
, pkgconfig, vala, libgee, granite, gtk3, polkit, zeitgeist
-, switchboard, lightlocker, pantheon-agent-geoclue2, gobject-introspection }:
+, switchboard, lightlocker, pantheon-agent-geoclue2 }:
stdenv.mkDerivation rec {
pname = "switchboard-plug-security-privacy";
@@ -20,7 +20,6 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [
- gobject-introspection
meson
ninja
pkgconfig
diff --git a/pkgs/desktops/pantheon/apps/switchboard-plugs/sharing/default.nix b/pkgs/desktops/pantheon/apps/switchboard-plugs/sharing/default.nix
index 9660daa7715..265352ed881 100644
--- a/pkgs/desktops/pantheon/apps/switchboard-plugs/sharing/default.nix
+++ b/pkgs/desktops/pantheon/apps/switchboard-plugs/sharing/default.nix
@@ -1,5 +1,5 @@
{ stdenv, fetchFromGitHub, pantheon, meson, ninja, pkgconfig
-, vala, libgee, granite, gtk3, switchboard, gobject-introspection }:
+, vala, libgee, granite, gtk3, switchboard }:
stdenv.mkDerivation rec {
pname = "switchboard-plug-sharing";
@@ -19,7 +19,6 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [
- gobject-introspection
meson
ninja
pkgconfig
diff --git a/pkgs/desktops/pantheon/apps/switchboard-plugs/sound/default.nix b/pkgs/desktops/pantheon/apps/switchboard-plugs/sound/default.nix
index ad379f37471..907bdc37e2a 100644
--- a/pkgs/desktops/pantheon/apps/switchboard-plugs/sound/default.nix
+++ b/pkgs/desktops/pantheon/apps/switchboard-plugs/sound/default.nix
@@ -1,6 +1,5 @@
-{ stdenv, fetchFromGitHub, pantheon, meson, ninja, pkgconfig
-, vala, libgee, granite, gtk3, pulseaudio, libcanberra, libcanberra-gtk3
-, switchboard, gobject-introspection }:
+{ stdenv, fetchFromGitHub, pantheon, meson, ninja, pkgconfig, vala, libgee
+, granite, gtk3, pulseaudio, libcanberra, libcanberra-gtk3, switchboard }:
stdenv.mkDerivation rec {
pname = "switchboard-plug-sound";
@@ -20,7 +19,6 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [
- gobject-introspection
meson
ninja
pkgconfig
diff --git a/pkgs/desktops/pantheon/apps/switchboard/default.nix b/pkgs/desktops/pantheon/apps/switchboard/default.nix
index 310230c7aac..12edf97f6ba 100644
--- a/pkgs/desktops/pantheon/apps/switchboard/default.nix
+++ b/pkgs/desktops/pantheon/apps/switchboard/default.nix
@@ -1,6 +1,6 @@
{ stdenv, fetchFromGitHub, pantheon, pkgconfig, meson, python3, ninja
, vala, gtk3, libgee, granite, gettext, clutter-gtk, libunity
-, elementary-icon-theme, wrapGAppsHook, gobject-introspection }:
+, elementary-icon-theme, wrapGAppsHook }:
stdenv.mkDerivation rec {
pname = "switchboard";
@@ -21,7 +21,6 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [
gettext
- gobject-introspection
meson
ninja
pkgconfig
diff --git a/pkgs/desktops/pantheon/desktop/elementary-greeter/default.nix b/pkgs/desktops/pantheon/desktop/elementary-greeter/default.nix
index 32083d3ada6..177837c76dc 100644
--- a/pkgs/desktops/pantheon/desktop/elementary-greeter/default.nix
+++ b/pkgs/desktops/pantheon/desktop/elementary-greeter/default.nix
@@ -1,6 +1,6 @@
{ stdenv, fetchFromGitHub, pantheon, pkgconfig, substituteAll, makeWrapper, meson
, ninja, vala, desktop-file-utils, gtk3, granite, libgee, elementary-settings-daemon
-, gnome-desktop, mutter, gobject-introspection, elementary-icon-theme, wingpanel-with-indicators
+, gnome-desktop, mutter, elementary-icon-theme, wingpanel-with-indicators
, elementary-gtk-theme, nixos-artwork, elementary-default-settings, lightdm, numlockx
, clutter-gtk, libGL, dbus, wrapGAppsHook }:
@@ -26,7 +26,6 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [
desktop-file-utils
- gobject-introspection
meson
ninja
pkgconfig
diff --git a/pkgs/desktops/pantheon/desktop/elementary-shortcut-overlay/default.nix b/pkgs/desktops/pantheon/desktop/elementary-shortcut-overlay/default.nix
index 6ceebf1980c..ca0ab888f14 100644
--- a/pkgs/desktops/pantheon/desktop/elementary-shortcut-overlay/default.nix
+++ b/pkgs/desktops/pantheon/desktop/elementary-shortcut-overlay/default.nix
@@ -1,5 +1,5 @@
{ stdenv, fetchFromGitHub, pantheon, pkgconfig, meson, ninja, vala, libxml2, desktop-file-utils
-, gtk3, glib, granite, libgee, elementary-icon-theme, gobject-introspection, wrapGAppsHook }:
+, gtk3, glib, granite, libgee, elementary-icon-theme, wrapGAppsHook }:
stdenv.mkDerivation rec {
pname = "shortcut-overlay";
@@ -23,7 +23,6 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [
desktop-file-utils
- gobject-introspection
libxml2
meson
ninja
diff --git a/pkgs/desktops/pantheon/desktop/gala/default.nix b/pkgs/desktops/pantheon/desktop/gala/default.nix
index bc29dba9718..1005c4090f3 100644
--- a/pkgs/desktops/pantheon/desktop/gala/default.nix
+++ b/pkgs/desktops/pantheon/desktop/gala/default.nix
@@ -1,7 +1,7 @@
{ stdenv, fetchFromGitHub, pantheon, pkgconfig, meson, python3, ninja, vala
, desktop-file-utils, gettext, libxml2, gtk3, granite, libgee, bamf, libcanberra
-, libcanberra-gtk3, gnome-desktop, mutter, clutter, plank, gobject-introspection
-, elementary-icon-theme, elementary-settings-daemon, wrapGAppsHook }:
+, libcanberra-gtk3, gnome-desktop, mutter, clutter, plank, elementary-icon-theme
+, elementary-settings-daemon, wrapGAppsHook }:
stdenv.mkDerivation rec {
pname = "gala";
@@ -24,7 +24,6 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [
desktop-file-utils
gettext
- gobject-introspection
libxml2
meson
ninja
diff --git a/pkgs/desktops/pantheon/desktop/wingpanel-indicators/bluetooth/default.nix b/pkgs/desktops/pantheon/desktop/wingpanel-indicators/bluetooth/default.nix
index 571dab02c31..4d7868a1d14 100644
--- a/pkgs/desktops/pantheon/desktop/wingpanel-indicators/bluetooth/default.nix
+++ b/pkgs/desktops/pantheon/desktop/wingpanel-indicators/bluetooth/default.nix
@@ -1,6 +1,6 @@
{ stdenv, fetchFromGitHub, pantheon, pkgconfig, meson, python3
, ninja, vala, gtk3, granite, libnotify, wingpanel, libgee, libxml2
-, gobject-introspection, elementary-icon-theme, wrapGAppsHook }:
+, elementary-icon-theme, wrapGAppsHook }:
stdenv.mkDerivation rec {
pname = "wingpanel-indicator-bluetooth";
@@ -20,7 +20,6 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [
- gobject-introspection
libxml2
meson
ninja
diff --git a/pkgs/desktops/pantheon/desktop/wingpanel-indicators/datetime/default.nix b/pkgs/desktops/pantheon/desktop/wingpanel-indicators/datetime/default.nix
index 297e99fe47b..8a4c9f39383 100644
--- a/pkgs/desktops/pantheon/desktop/wingpanel-indicators/datetime/default.nix
+++ b/pkgs/desktops/pantheon/desktop/wingpanel-indicators/datetime/default.nix
@@ -1,7 +1,6 @@
{ stdenv, fetchFromGitHub, fetchpatch, pantheon, pkgconfig, meson, python3
, ninja, substituteAll, vala, gtk3, granite, wingpanel, evolution-data-server
-, libical, libgee, libxml2, libsoup, gobject-introspection
-, elementary-calendar, elementary-icon-theme, wrapGAppsHook }:
+, libical, libgee, libxml2, libsoup, elementary-calendar, elementary-icon-theme, wrapGAppsHook }:
stdenv.mkDerivation rec {
pname = "wingpanel-indicator-datetime";
@@ -21,7 +20,6 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [
- gobject-introspection
libxml2
meson
ninja
diff --git a/pkgs/desktops/pantheon/desktop/wingpanel-indicators/keyboard/default.nix b/pkgs/desktops/pantheon/desktop/wingpanel-indicators/keyboard/default.nix
index f34ca29a98b..aa63f82c965 100644
--- a/pkgs/desktops/pantheon/desktop/wingpanel-indicators/keyboard/default.nix
+++ b/pkgs/desktops/pantheon/desktop/wingpanel-indicators/keyboard/default.nix
@@ -1,6 +1,6 @@
{ stdenv, fetchFromGitHub, pantheon, pkgconfig, meson, ninja
, substituteAll, vala, gtk3, granite, libxml2, wingpanel, libgee
-, xorg, libgnomekbd, gobject-introspection, elementary-icon-theme, wrapGAppsHook }:
+, xorg, libgnomekbd, elementary-icon-theme, wrapGAppsHook }:
stdenv.mkDerivation rec {
pname = "wingpanel-indicator-keyboard";
@@ -20,7 +20,6 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [
- gobject-introspection
meson
ninja
libxml2
diff --git a/pkgs/desktops/pantheon/desktop/wingpanel-indicators/network/default.nix b/pkgs/desktops/pantheon/desktop/wingpanel-indicators/network/default.nix
index 2ac05fdc6d8..a201d6864a6 100644
--- a/pkgs/desktops/pantheon/desktop/wingpanel-indicators/network/default.nix
+++ b/pkgs/desktops/pantheon/desktop/wingpanel-indicators/network/default.nix
@@ -1,6 +1,6 @@
{ stdenv, fetchFromGitHub, pantheon, pkgconfig, meson, ninja, vala
, gtk3, granite, networkmanager, networkmanagerapplet, wingpanel
-, libgee, gobject-introspection, elementary-icon-theme, wrapGAppsHook }:
+, libgee, elementary-icon-theme, wrapGAppsHook }:
stdenv.mkDerivation rec {
pname = "wingpanel-indicator-network";
@@ -20,7 +20,6 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [
- gobject-introspection
meson
ninja
pkgconfig
diff --git a/pkgs/desktops/pantheon/desktop/wingpanel-indicators/nightlight/default.nix b/pkgs/desktops/pantheon/desktop/wingpanel-indicators/nightlight/default.nix
index 8e450726976..fd4e1cc7e17 100644
--- a/pkgs/desktops/pantheon/desktop/wingpanel-indicators/nightlight/default.nix
+++ b/pkgs/desktops/pantheon/desktop/wingpanel-indicators/nightlight/default.nix
@@ -1,6 +1,5 @@
{ stdenv, fetchFromGitHub, pantheon, pkgconfig, meson, ninja, vala
-, gtk3, granite, wingpanel, libgee, libxml2, gobject-introspection
-, elementary-icon-theme, wrapGAppsHook }:
+, gtk3, granite, wingpanel, libgee, libxml2, elementary-icon-theme, wrapGAppsHook }:
stdenv.mkDerivation rec {
pname = "wingpanel-indicator-nightlight";
@@ -20,7 +19,6 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [
- gobject-introspection
libxml2
meson
ninja
diff --git a/pkgs/desktops/pantheon/desktop/wingpanel-indicators/notifications/default.nix b/pkgs/desktops/pantheon/desktop/wingpanel-indicators/notifications/default.nix
index 6a7fcfbb4e0..03369c3ad42 100644
--- a/pkgs/desktops/pantheon/desktop/wingpanel-indicators/notifications/default.nix
+++ b/pkgs/desktops/pantheon/desktop/wingpanel-indicators/notifications/default.nix
@@ -1,5 +1,5 @@
{ stdenv, fetchFromGitHub, pantheon, pkgconfig, meson, ninja, vala, gtk3, granite
-, wingpanel, libgee, libwnck3, gobject-introspection, elementary-icon-theme, wrapGAppsHook }:
+, wingpanel, libgee, libwnck3, elementary-icon-theme, wrapGAppsHook }:
stdenv.mkDerivation rec {
pname = "wingpanel-indicator-notifications";
@@ -19,7 +19,6 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [
- gobject-introspection
meson
ninja
pkgconfig
diff --git a/pkgs/desktops/pantheon/desktop/wingpanel-indicators/power/default.nix b/pkgs/desktops/pantheon/desktop/wingpanel-indicators/power/default.nix
index 45a4e543b66..a9af53449c9 100644
--- a/pkgs/desktops/pantheon/desktop/wingpanel-indicators/power/default.nix
+++ b/pkgs/desktops/pantheon/desktop/wingpanel-indicators/power/default.nix
@@ -1,6 +1,6 @@
{ stdenv, fetchFromGitHub, pantheon, pkgconfig, meson, python3
, ninja, vala, gtk3, granite, bamf, libgtop, udev, wingpanel
-, libgee, gobject-introspection, elementary-icon-theme, wrapGAppsHook }:
+, libgee, elementary-icon-theme, wrapGAppsHook }:
stdenv.mkDerivation rec {
pname = "wingpanel-indicator-power";
@@ -20,7 +20,6 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [
- gobject-introspection
meson
ninja
pkgconfig
diff --git a/pkgs/desktops/pantheon/desktop/wingpanel-indicators/session/default.nix b/pkgs/desktops/pantheon/desktop/wingpanel-indicators/session/default.nix
index a46e001e7a0..5b1bd161b05 100644
--- a/pkgs/desktops/pantheon/desktop/wingpanel-indicators/session/default.nix
+++ b/pkgs/desktops/pantheon/desktop/wingpanel-indicators/session/default.nix
@@ -1,6 +1,6 @@
{ stdenv, fetchFromGitHub, pantheon, pkgconfig, meson
, ninja, vala, gtk3, granite, wingpanel, accountsservice
-, libgee, gobject-introspection, elementary-icon-theme, wrapGAppsHook }:
+, libgee, elementary-icon-theme, wrapGAppsHook }:
stdenv.mkDerivation rec {
pname = "wingpanel-indicator-session";
@@ -20,7 +20,6 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [
- gobject-introspection
meson
ninja
pkgconfig
diff --git a/pkgs/desktops/pantheon/desktop/wingpanel-indicators/sound/default.nix b/pkgs/desktops/pantheon/desktop/wingpanel-indicators/sound/default.nix
index fc40c2faf5e..3e17813fde2 100644
--- a/pkgs/desktops/pantheon/desktop/wingpanel-indicators/sound/default.nix
+++ b/pkgs/desktops/pantheon/desktop/wingpanel-indicators/sound/default.nix
@@ -1,7 +1,7 @@
{ stdenv, fetchFromGitHub, pantheon, pkgconfig, meson
, python3, ninja, vala, gtk3, granite, wingpanel, libnotify
, pulseaudio, libcanberra-gtk3, libgee, libxml2, wrapGAppsHook
-, gobject-introspection, elementary-icon-theme }:
+, elementary-icon-theme }:
stdenv.mkDerivation rec {
pname = "wingpanel-indicator-sound";
@@ -21,7 +21,6 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [
- gobject-introspection
libxml2
meson
ninja
diff --git a/pkgs/desktops/pantheon/desktop/wingpanel/default.nix b/pkgs/desktops/pantheon/desktop/wingpanel/default.nix
index 9c18eaed6da..be6c89f9c05 100644
--- a/pkgs/desktops/pantheon/desktop/wingpanel/default.nix
+++ b/pkgs/desktops/pantheon/desktop/wingpanel/default.nix
@@ -1,6 +1,5 @@
-{ stdenv, fetchFromGitHub, pantheon, fetchpatch, wrapGAppsHook, pkgconfig, meson, ninja
-, vala, gala, gtk3, libgee, granite, gettext, glib-networking, mutter, json-glib
-, python3, gobject-introspection }:
+{ stdenv, fetchFromGitHub, pantheon, wrapGAppsHook, pkgconfig, meson, ninja
+, vala, gala, gtk3, libgee, granite, gettext, mutter, json-glib, python3 }:
stdenv.mkDerivation rec {
pname = "wingpanel";
@@ -21,8 +20,6 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [
gettext
- glib-networking
- gobject-introspection
meson
ninja
pkgconfig
diff --git a/pkgs/desktops/pantheon/granite/default.nix b/pkgs/desktops/pantheon/granite/default.nix
index 66ba331ddcd..cc612407bf6 100644
--- a/pkgs/desktops/pantheon/granite/default.nix
+++ b/pkgs/desktops/pantheon/granite/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchFromGitHub, fetchpatch, python3, meson, ninja, vala, pkgconfig, gobject-introspection, libgee, pantheon, gtk3, glib, gettext, hicolor-icon-theme, wrapGAppsHook }:
+{ stdenv, fetchFromGitHub, fetchpatch, python3, meson, ninja, vala, pkgconfig, libgee, pantheon, gtk3, glib, gettext, hicolor-icon-theme, gobject-introspection, wrapGAppsHook }:
stdenv.mkDerivation rec {
pname = "granite";
diff --git a/pkgs/desktops/pantheon/services/cerbere/default.nix b/pkgs/desktops/pantheon/services/cerbere/default.nix
index 59983469c11..da5e544b005 100644
--- a/pkgs/desktops/pantheon/services/cerbere/default.nix
+++ b/pkgs/desktops/pantheon/services/cerbere/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchFromGitHub, pantheon, pkgconfig, meson, python3, ninja, glib, libgee, vala, gobject-introspection, wrapGAppsHook }:
+{ stdenv, fetchFromGitHub, pantheon, pkgconfig, meson, python3, ninja, glib, libgee, vala, wrapGAppsHook }:
stdenv.mkDerivation rec {
pname = "cerbere";
@@ -18,7 +18,6 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [
- gobject-introspection
meson
ninja
pkgconfig
diff --git a/pkgs/desktops/pantheon/services/elementary-capnet-assist/default.nix b/pkgs/desktops/pantheon/services/elementary-capnet-assist/default.nix
index e77948ccf29..055706b1521 100644
--- a/pkgs/desktops/pantheon/services/elementary-capnet-assist/default.nix
+++ b/pkgs/desktops/pantheon/services/elementary-capnet-assist/default.nix
@@ -1,5 +1,5 @@
{ stdenv, fetchFromGitHub, pantheon, pkgconfig, meson, python3, ninja, vala
-, desktop-file-utils, gtk3, granite, libgee, gcr, webkitgtk, gobject-introspection, wrapGAppsHook }:
+, desktop-file-utils, gtk3, granite, libgee, gcr, webkitgtk, wrapGAppsHook }:
stdenv.mkDerivation rec {
pname = "capnet-assist";
@@ -23,7 +23,6 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [
desktop-file-utils
- gobject-introspection
meson
ninja
pkgconfig
diff --git a/pkgs/desktops/pantheon/services/elementary-settings-daemon/default.nix b/pkgs/desktops/pantheon/services/elementary-settings-daemon/default.nix
index aa451ba7516..d8514c51f4f 100644
--- a/pkgs/desktops/pantheon/services/elementary-settings-daemon/default.nix
+++ b/pkgs/desktops/pantheon/services/elementary-settings-daemon/default.nix
@@ -36,25 +36,26 @@
, systemd
, tzdata
, upower
+, libXtst
, wrapGAppsHook
}:
stdenv.mkDerivation rec {
pname = "elementary-settings-daemon";
- version = "3.32.0";
+ version = "3.30.2";
projectName = "gnome-settings-daemon";
src = fetchurl {
url = "mirror://gnome/sources/${projectName}/${stdenv.lib.versions.majorMinor version}/${projectName}-${version}.tar.xz";
- sha256 = "15w3sn9qf1zqlmk8c93kgrh2a20s62m5yfizkp21m5ylrrd07f63";
+ sha256 = "0c663csa3gnsr6wm0xfll6aani45snkdj7zjwjfzcwfh8w4a3z12";
};
# Source for ubuntu's patchset
src2 = fetchgit {
url = "https://git.launchpad.net/~ubuntu-desktop/ubuntu/+source/${projectName}";
rev = "refs/tags/ubuntu/${version}-1ubuntu1";
- sha256 = "0ayd50mr0pv2h4j1r1haf8y2hj8jv59vypa7lx8jis0llrm7s3yn";
+ sha256 = "02awkhw6jqm7yh812mw0nsdmsljfi8ksz8mvd2qpns5pcv002g2c";
};
# We've omitted the 53_sync_input_sources_to_accountsservice patch because it breaks the build.
@@ -71,6 +72,7 @@ stdenv.mkDerivation rec {
"${patchPath}/64_restore_terminal_keyboard_shortcut_schema.patch"
"${patchPath}/correct_logout_action.patch"
"${patchPath}/ubuntu-lid-close-suspend.patch"
+ "${patchPath}/revert-wacom-migration.patch"
"${patchPath}/revert-gsettings-removals.patch"
"${patchPath}/revert-mediakeys-dbus-interface-drop.patch"
"${patchPath}/ubuntu_ibus_configs.patch"
@@ -129,6 +131,7 @@ stdenv.mkDerivation rec {
gsettings-desktop-schemas
gtk3
lcms2
+ libXtst
libcanberra-gtk3
libgnomekbd # for org.gnome.libgnomekbd.keyboard schema
libgudev
diff --git a/pkgs/desktops/pantheon/services/elementary-settings-daemon/global-backlight-helper.patch b/pkgs/desktops/pantheon/services/elementary-settings-daemon/global-backlight-helper.patch
index dcdc83934ba..c073b23e6b9 100644
--- a/pkgs/desktops/pantheon/services/elementary-settings-daemon/global-backlight-helper.patch
+++ b/pkgs/desktops/pantheon/services/elementary-settings-daemon/global-backlight-helper.patch
@@ -1,18 +1,18 @@
-diff --git a/plugins/power/gsd-backlight.c b/plugins/power/gsd-backlight.c
-index d7d10fd2..5619d6ad 100644
---- a/plugins/power/gsd-backlight.c
-+++ b/plugins/power/gsd-backlight.c
-@@ -358,7 +358,7 @@ gsd_backlight_run_set_helper (GsdBacklight *backlight, GTask *task)
- proc = g_subprocess_new (G_SUBPROCESS_FLAGS_STDOUT_SILENCE,
- &error,
- "pkexec",
-- LIBEXECDIR "/gsd-backlight-helper",
-+ "/run/current-system/sw/bin/elementary-settings-daemon/gsd-backlight-helper",
- g_udev_device_get_sysfs_path (backlight->udev_device),
- data->value_str, NULL);
- } else {
+diff --git a/plugins/power/gpm-common.c b/plugins/power/gpm-common.c
+index e83f1549..15890053 100644
+--- a/plugins/power/gpm-common.c
++++ b/plugins/power/gpm-common.c
+@@ -452,7 +452,7 @@ run_backlight_helper (enum BacklightHelperCommand command,
+ gchar *argv[5] = { 0 };
+
+ argv[0] = "pkexec";
+- argv[1] = LIBEXECDIR "/gsd-backlight-helper";
++ argv[1] = "/run/current-system/sw/bin/elementary-settings-daemon/gsd-backlight-helper";
+ argv[2] = helper_args[command];
+ argv[3] = value;
+
diff --git a/plugins/power/org.gnome.settings-daemon.plugins.power.policy.in.in b/plugins/power/org.gnome.settings-daemon.plugins.power.policy.in.in
-index f16300f8..79d6bd17 100644
+index f16300f8..f19bba3e 100644
--- a/plugins/power/org.gnome.settings-daemon.plugins.power.policy.in.in
+++ b/plugins/power/org.gnome.settings-daemon.plugins.power.policy.in.in
@@ -25,7 +25,7 @@
@@ -22,5 +22,5 @@ index f16300f8..79d6bd17 100644
- @libexecdir@/gsd-backlight-helper
+ /run/current-system/sw/bin/elementary-settings-daemon/gsd-backlight-helper
-
+
diff --git a/pkgs/desktops/pantheon/services/pantheon-agent-geoclue2/default.nix b/pkgs/desktops/pantheon/services/pantheon-agent-geoclue2/default.nix
index 2487c4ba3af..4b055d47b0a 100644
--- a/pkgs/desktops/pantheon/services/pantheon-agent-geoclue2/default.nix
+++ b/pkgs/desktops/pantheon/services/pantheon-agent-geoclue2/default.nix
@@ -1,5 +1,5 @@
{ stdenv, fetchFromGitHub, fetchpatch, pantheon, pkgconfig, meson, ninja, vala, glib
-, gtk3, libgee, desktop-file-utils, geoclue2, gobject-introspection, wrapGAppsHook }:
+, gtk3, libgee, desktop-file-utils, geoclue2, wrapGAppsHook }:
stdenv.mkDerivation rec {
pname = "pantheon-agent-geoclue2";
@@ -20,7 +20,6 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [
desktop-file-utils
- gobject-introspection
meson
ninja
pkgconfig
diff --git a/pkgs/desktops/pantheon/services/pantheon-agent-polkit/default.nix b/pkgs/desktops/pantheon/services/pantheon-agent-polkit/default.nix
index 4fdaa4a8bf9..d9e5512ce78 100644
--- a/pkgs/desktops/pantheon/services/pantheon-agent-polkit/default.nix
+++ b/pkgs/desktops/pantheon/services/pantheon-agent-polkit/default.nix
@@ -1,5 +1,5 @@
{ stdenv, fetchFromGitHub, pantheon, pkgconfig, meson, ninja
-, vala, gtk3, libgee, polkit, gobject-introspection, wrapGAppsHook }:
+, vala, gtk3, libgee, polkit, wrapGAppsHook }:
stdenv.mkDerivation rec {
pname = "pantheon-agent-polkit";
@@ -19,7 +19,6 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [
- gobject-introspection
meson
ninja
pkgconfig
diff --git a/pkgs/development/compilers/binaryen/default.nix b/pkgs/development/compilers/binaryen/default.nix
index 7c3203fe62e..8ebed6f4b5b 100644
--- a/pkgs/development/compilers/binaryen/default.nix
+++ b/pkgs/development/compilers/binaryen/default.nix
@@ -1,11 +1,11 @@
{ stdenv, cmake, python, fetchFromGitHub, emscriptenRev ? null }:
let
- defaultVersion = "83";
+ defaultVersion = "84";
# Map from git revs to SHA256 hashes
sha256s = {
- "version_83" = "0vggd9n6anfxsdk4kiyylysi4cfm2rp39f66sq9zkg0h7vw5x5sm";
+ "version_84" = "189zqc5gp8fm7clsgby9h2s758ijil7ma4liwbf81wnwkb4kqxc0";
"1.38.28" = "172s7y5f38736ic8ri3mnbdqcrkadd40a26cxcfwbscc53phl11v";
};
in
diff --git a/pkgs/development/compilers/llvm/7/llvm.nix b/pkgs/development/compilers/llvm/7/llvm.nix
index c288fd3e2a5..d3d9a4c506d 100644
--- a/pkgs/development/compilers/llvm/7/llvm.nix
+++ b/pkgs/development/compilers/llvm/7/llvm.nix
@@ -84,6 +84,14 @@ in stdenv.mkDerivation (rec {
substituteInPlace unittests/Support/CMakeLists.txt \
--replace "add_subdirectory(DynamicLibrary)" ""
rm unittests/Support/DynamicLibrary/DynamicLibraryTest.cpp
+ '' + optionalString stdenv.hostPlatform.isAarch32 ''
+ # skip failing X86 test cases on armv7l
+ rm test/DebugInfo/X86/debug_addr.ll
+ rm test/tools/llvm-dwarfdump/X86/debug_addr.s
+ rm test/tools/llvm-dwarfdump/X86/debug_addr_address_size_mismatch.s
+ rm test/tools/llvm-dwarfdump/X86/debug_addr_dwarf4.s
+ rm test/tools/llvm-dwarfdump/X86/debug_addr_unsupported_version.s
+ rm test/tools/llvm-dwarfdump/X86/debug_addr_version_mismatch.s
'' + ''
patchShebangs test/BugPoint/compile-custom.ll.py
'';
diff --git a/pkgs/development/compilers/orc/default.nix b/pkgs/development/compilers/orc/default.nix
index 83869e1b621..4540a301610 100644
--- a/pkgs/development/compilers/orc/default.nix
+++ b/pkgs/development/compilers/orc/default.nix
@@ -15,8 +15,9 @@ stdenv.mkDerivation rec {
sed "/^toolsdir=/ctoolsdir=$dev/bin" -i "$dev"/lib/pkgconfig/orc*.pc
'';
- # https://bugzilla.gnome.org/show_bug.cgi?id=728129#c15
- doCheck = stdenv.hostPlatform.system != "i686-linux"; # not sure about cross-compiling
+ # i686 https://gitlab.freedesktop.org/gstreamer/orc/issues/18
+ # armv7l https://gitlab.freedesktop.org/gstreamer/orc/issues/9
+ doCheck = (!stdenv.hostPlatform.isi686 && !stdenv.hostPlatform.isAarch32);
meta = with stdenv.lib; {
description = "The Oil Runtime Compiler";
diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix
index 26e0f56d506..4028859e338 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -1181,7 +1181,6 @@ self: super: {
# Jailbreak tasty < 1.2: https://github.com/phadej/tdigest/issues/30
tdigest = doJailbreak super.tdigest; # until tdigest > 0.2.1
these = doJailbreak super.these; # until these >= 0.7.6
- insert-ordered-containers = appendPatch super.insert-ordered-containers ./patches/insert-ordered-containers-fix-test.patch;
uri-bytestring = appendPatch super.uri-bytestring (pkgs.fetchpatch {
url = "https://github.com/Soostone/uri-bytestring/commit/e5c5602a97160a6a6304a24947e33e47c9155460.patch";
diff --git a/pkgs/development/haskell-modules/patches/insert-ordered-containers-fix-test.patch b/pkgs/development/haskell-modules/patches/insert-ordered-containers-fix-test.patch
deleted file mode 100644
index 1e9ac5aa66a..00000000000
--- a/pkgs/development/haskell-modules/patches/insert-ordered-containers-fix-test.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-diff --git a/insert-ordered-containers.cabal b/insert-ordered-containers.cabal
-index 0e8923a..bfbbec4 100644
---- a/insert-ordered-containers.cabal
-+++ b/insert-ordered-containers.cabal
-@@ -21,8 +21,8 @@ tested-with:
- GHC==7.10.3,
- GHC==8.0.1,
- GHC==8.2.2,
-- GHC==8.4.3,
-- GHC==8.6.1
-+ GHC==8.4.4,
-+ GHC==8.6.3
-
- extra-source-files:
- CHANGELOG.md
-@@ -70,7 +70,7 @@ test-suite ins-ord-containers-tests
- , unordered-containers
- , base
- , insert-ordered-containers
-- , tasty >= 0.10.1.2 && <1.2
-+ , tasty >= 0.10.1.2 && <1.3
- , tasty-quickcheck >= 0.8.3.2 && <0.11
- , QuickCheck >=2.7.6 && <2.13
- default-language: Haskell2010
-
diff --git a/pkgs/development/interpreters/erlang/R21.nix b/pkgs/development/interpreters/erlang/R21.nix
index 8c4e1561ec0..60eb6c8a6a5 100644
--- a/pkgs/development/interpreters/erlang/R21.nix
+++ b/pkgs/development/interpreters/erlang/R21.nix
@@ -1,8 +1,8 @@
{ mkDerivation }:
mkDerivation rec {
- version = "21.3.7.1";
- sha256 = "03vbp22vwra3zz76q3sjv23lmic60gi96a7dncry8whbfp4i4j8a";
+ version = "21.3.8.3";
+ sha256 = "1szybirrcpqsl2nmlmpbkxjqnm6i7l7bma87m5cpwi0kpvlxwmcw";
prePatch = ''
substituteInPlace configure.in --replace '`sw_vers -productVersion`' '10.10'
diff --git a/pkgs/development/libraries/beignet/clang_llvm.patch b/pkgs/development/libraries/beignet/clang_llvm.patch
index 88876f157cd..bcdad510e10 100644
--- a/pkgs/development/libraries/beignet/clang_llvm.patch
+++ b/pkgs/development/libraries/beignet/clang_llvm.patch
@@ -47,16 +47,3 @@ index a148321..96cafb8 100644
set(CLANG_LIBRARIES ${CLANG_LIBRARIES} ${CLANG_LIB})
unset(CLANG_LIB CACHE)
endmacro()
-diff --git a/./CMakeLists.txt b/../Beignet-1.1.2-Source_new/CMakeLists.txt
-index 88985d7..01bca9e 100644
---- a/./CMakeLists.txt
-+++ b/../Beignet-1.1.2-Source_new/CMakeLists.txt
-@@ -205,7 +205,7 @@ IF(OCLIcd_FOUND)
- "intel-beignet.icd.in"
- "${ICD_FILE_NAME}"
- )
-- install (FILES ${CMAKE_CURRENT_BINARY_DIR}/${ICD_FILE_NAME} DESTINATION /etc/OpenCL/vendors)
-+ install (FILES ${CMAKE_CURRENT_BINARY_DIR}/${ICD_FILE_NAME} DESTINATION ${CMAKE_INSTALL_PREFIX}/etc/OpenCL/vendors)
- ELSE(OCLIcd_FOUND)
- MESSAGE(STATUS "Looking for OCL ICD header file - not found")
- ENDIF(OCLIcd_FOUND)
diff --git a/pkgs/development/libraries/beignet/default.nix b/pkgs/development/libraries/beignet/default.nix
index ba6fc7cb541..05ff5593205 100644
--- a/pkgs/development/libraries/beignet/default.nix
+++ b/pkgs/development/libraries/beignet/default.nix
@@ -1,5 +1,5 @@
{ stdenv
-, fetchurl
+, fetchFromGitHub
, cmake
, pkgconfig
, clang-unwrapped
@@ -19,11 +19,13 @@
stdenv.mkDerivation rec {
name = "beignet-${version}";
- version = "1.3.2";
+ version = "unstable-2018.08.20";
- src = fetchurl {
- url = "https://01.org/sites/default/files/${name}-source.tar.gz";
- sha256 = "0hqb04jhjjslnmi3fnpzphanz84zywwkyw2sjr1k5qlx2jxfsmf5";
+ src = fetchFromGitHub {
+ owner = "intel";
+ repo = "beignet";
+ rev = "fc5f430cb7b7a8f694d86acbb038bd5b38ec389c";
+ sha256 = "1z64v69w7f52jrskh1jfyh1x46mzfhjrqxj9hhgzh3xxv9yla32h";
};
patches = [ ./clang_llvm.patch ];
@@ -31,6 +33,7 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true;
postPatch = ''
+ substituteInPlace CMakeLists.txt --replace /etc/OpenCL/vendors "\''${CMAKE_INSTALL_PREFIX}/etc/OpenCL/vendors"
patchShebangs src/git_sha1.sh
'';
@@ -101,8 +104,8 @@ stdenv.mkDerivation rec {
homepage = https://cgit.freedesktop.org/beignet/;
description = "OpenCL Library for Intel Ivy Bridge and newer GPUs";
longDescription = ''
- The package provides an open source implementation of the OpenCL specification for Intel GPUs.
- It supports the Intel OpenCL runtime library and compiler.
+ The package provides an open source implementation of the OpenCL specification for Intel GPUs.
+ It supports the Intel OpenCL runtime library and compiler.
'';
license = licenses.lgpl21Plus;
maintainers = with maintainers; [ artuuge zimbatm ];
diff --git a/pkgs/development/libraries/faad2/default.nix b/pkgs/development/libraries/faad2/default.nix
index 50323846e98..e7e4835d2ed 100644
--- a/pkgs/development/libraries/faad2/default.nix
+++ b/pkgs/development/libraries/faad2/default.nix
@@ -12,6 +12,30 @@ stdenv.mkDerivation rec {
sha256 = "1db37ydb6mxhshbayvirm5vz6j361bjim4nkpwjyhmy4ddfinmhl";
};
+ patches = let
+ fp = { ver ? "2.8.8-3", pname, name ? (pname + ".patch"), sha256 }: fetchurl {
+ url = "https://salsa.debian.org/multimedia-team/faad2/raw/debian/${ver}"
+ + "/debian/patches/${pname}.patch?inline=false";
+ inherit name sha256;
+ };
+ in [
+ (fp {
+ # critical bug addressed in vlc 3.0.7 (but we use system-provided faad)
+ pname = "0004-Fix-a-couple-buffer-overflows";
+ sha256 = "1mwycdfagz6wpda9j3cp7lf93crgacpa8rwr58p3x0i5cirnnmwq";
+ })
+ (fp {
+ name = "CVE-2018-20362.patch";
+ pname = "0009-syntax.c-check-for-syntax-element-inconsistencies";
+ sha256 = "1z849l5qyvhyn5pvm6r07fa50nrn8nsqnrka2nnzgkhxlhvzpa81";
+ })
+ (fp {
+ name = "CVE-2018-20194.patch";
+ pname = "0010-sbr_hfadj-sanitize-frequency-band-borders";
+ sha256 = "1b1kbz4mv0zhpq8h3djnvqafh1gn12nikk9v3jrxyryywacirah4";
+ })
+ ];
+
configureFlags = []
++ optional drmSupport "--with-drm";
diff --git a/pkgs/development/libraries/hwloc/default.nix b/pkgs/development/libraries/hwloc/default.nix
index 81e30d675d2..5866d6b8fed 100644
--- a/pkgs/development/libraries/hwloc/default.nix
+++ b/pkgs/development/libraries/hwloc/default.nix
@@ -7,7 +7,7 @@ assert x11Support -> libX11 != null && cairo != null;
with stdenv.lib;
let
- version = "2.0.3";
+ version = "2.0.4";
versmm = versions.major version + "." + versions.minor version;
name = "hwloc-${version}";
@@ -16,7 +16,7 @@ in stdenv.mkDerivation {
src = fetchurl {
url = "http://www.open-mpi.org/software/hwloc/v${versmm}/downloads/${name}.tar.bz2";
- sha256 = "09f7ajak8wv5issr0hw72vs3jkldc7crcc7z5fd34sspkvrsm4z3";
+ sha256 = "1aa7s208gdijk19vvzzahyl8pglk1va3yd6kdbpfa5pz5ms0ag35";
};
configureFlags = [
diff --git a/pkgs/development/libraries/liburcu/default.nix b/pkgs/development/libraries/liburcu/default.nix
index 0cc18d82720..0cc1b0d08f9 100644
--- a/pkgs/development/libraries/liburcu/default.nix
+++ b/pkgs/development/libraries/liburcu/default.nix
@@ -1,12 +1,12 @@
{ stdenv, fetchurl, perl }:
stdenv.mkDerivation rec {
- version = "0.10.2";
+ version = "0.11.0";
name = "liburcu-${version}";
src = fetchurl {
url = "https://lttng.org/files/urcu/userspace-rcu-${version}.tar.bz2";
- sha256 = "1k31faqz9plx5dwxq8g1fnczxda1is4s1x4ph0gjrq3gmy6qixmk";
+ sha256 = "1rxk5vbkbmqlsnjnvkjz0pkx2076mqnq6jzblpmz8rk29x66kx8s";
};
checkInputs = [ perl ];
diff --git a/pkgs/development/libraries/mpich/default.nix b/pkgs/development/libraries/mpich/default.nix
index ffe6b5edf96..1c6b8df1511 100644
--- a/pkgs/development/libraries/mpich/default.nix
+++ b/pkgs/development/libraries/mpich/default.nix
@@ -4,11 +4,11 @@
stdenv.mkDerivation rec {
name = "mpich-${version}";
- version = "3.3";
+ version = "3.3.1";
src = fetchurl {
url = "https://www.mpich.org/static/downloads/${version}/mpich-${version}.tar.gz";
- sha256 = "02zs118q9n4xz9qnfc24i2r84vnzgnwnyyqanfv03lf3wqpy17ij";
+ sha256 = "1raism1r4jsx4cybc9ddyr1xkccbxm0l8j3ryrw8kslfkkr1wmgy";
};
configureFlags = [
diff --git a/pkgs/development/libraries/nss/default.nix b/pkgs/development/libraries/nss/default.nix
index 87bc1a16f23..f3fc4caf315 100644
--- a/pkgs/development/libraries/nss/default.nix
+++ b/pkgs/development/libraries/nss/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, nspr, perl, zlib, sqlite, fixDarwinDylibNames }:
+{ stdenv, fetchurl, nspr, perl, zlib, sqlite, fixDarwinDylibNames, buildPackages }:
let
nssPEM = fetchurl {
@@ -17,7 +17,11 @@ in stdenv.mkDerivation rec {
sha256 = "1zvabgxlyvz3fnv4w89y4a5qkscjmm88naf929dgvvgfnrchwqm5";
};
- buildInputs = [ perl zlib sqlite ]
+ depsBuildBuild = [ buildPackages.stdenv.cc ];
+
+ nativeBuildInputs = [ perl ];
+
+ buildInputs = [ zlib sqlite ]
++ stdenv.lib.optional stdenv.isDarwin fixDarwinDylibNames;
propagatedBuildInputs = [ nspr ];
@@ -43,7 +47,9 @@ in stdenv.mkDerivation rec {
preConfigure = "cd nss";
- makeFlags = [
+ makeFlags = let
+ cpu = stdenv.hostPlatform.parsed.cpu.name;
+ in [
"NSPR_INCLUDE_DIR=${nspr.dev}/include"
"NSPR_LIB_DIR=${nspr.out}/lib"
"NSDISTMODE=copy"
@@ -52,6 +58,12 @@ in stdenv.mkDerivation rec {
"NSS_ENABLE_ECC=1"
"USE_SYSTEM_ZLIB=1"
"NSS_USE_SYSTEM_SQLITE=1"
+ "NATIVE_CC=${buildPackages.stdenv.cc}/bin/cc"
+ ] ++ stdenv.lib.optional (stdenv.hostPlatform != stdenv.buildPlatform) [
+ "OS_TEST=${cpu}"
+ "CPU_ARCH=${cpu}"
+ "CROSS_COMPILE=1"
+ "NSS_DISABLE_GTESTS=1" # don't want to build tests when cross-compiling
] ++ stdenv.lib.optional stdenv.is64bit "USE_64=1"
++ stdenv.lib.optional stdenv.isDarwin "CCC=clang++";
@@ -95,7 +107,10 @@ in stdenv.mkDerivation rec {
chmod 0755 $out/bin/nss-config
'';
- postFixup = ''
+ postFixup = let
+ isCross = stdenv.hostPlatform != stdenv.buildPlatform;
+ nss = if isCross then buildPackages.nss.tools else "$out";
+ in ''
for libname in freebl3 nssdbm3 softokn3
do '' +
(if stdenv.isDarwin
@@ -106,7 +121,7 @@ in stdenv.mkDerivation rec {
libfile="$out/lib/lib$libname.so"
LD_LIBRARY_PATH=$out/lib:${nspr.out}/lib \
'') + ''
- $out/bin/shlibsign -v -i "$libfile"
+ ${nss}/bin/shlibsign -v -i "$libfile"
done
moveToOutput bin "$tools"
diff --git a/pkgs/development/libraries/physics/rivet/default.nix b/pkgs/development/libraries/physics/rivet/default.nix
index 54bf1cc442b..40ccd8cfd20 100644
--- a/pkgs/development/libraries/physics/rivet/default.nix
+++ b/pkgs/development/libraries/physics/rivet/default.nix
@@ -17,12 +17,16 @@ stdenv.mkDerivation rec {
scheme-basic
collection-pstricks
collection-fontsrecommended
+ l3kernel
+ l3packages
mathastext
pgf
relsize
sfmath
+ siunitx
xcolor
xkeyval
+ xstring
;};
buildInputs = [ hepmc imagemagick python2 latex makeWrapper ];
propagatedBuildInputs = [ fastjet ghostscript gsl yoda ];
diff --git a/pkgs/development/python-modules/acme-tiny/default.nix b/pkgs/development/python-modules/acme-tiny/default.nix
index 759ed2086fc..e212e83c270 100644
--- a/pkgs/development/python-modules/acme-tiny/default.nix
+++ b/pkgs/development/python-modules/acme-tiny/default.nix
@@ -1,34 +1,26 @@
-{ stdenv, buildPythonPackage, fetchFromGitHub
-, python, openssl }:
+{ stdenv, buildPythonPackage, fetchPypi, setuptools_scm, fusepy, fuse
+, openssl }:
buildPythonPackage rec {
pname = "acme-tiny";
- version = "2016-03-26";
+ version = "4.0.4";
- src = fetchFromGitHub {
- sha256 = "0ngmr3kxcvlqa9mrv3gx0rg4r67xvdjplqfminxliri3ipak853g";
- rev = "7a5a2558c8d6e5ab2a59b9fec9633d9e63127971";
- repo = "acme-tiny";
- owner = "diafygi";
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "0vqlmvk34jgvgx3qdsh50q7m4aiy02786jyjjcq45dcws7a4f9f1";
};
- # source doesn't have any python "packaging" as such
- configurePhase = " ";
- buildPhase = " ";
- # the tests are... complex
- doCheck = false;
-
patchPhase = ''
- substituteInPlace acme_tiny.py --replace "openssl" "${openssl.bin}/bin/openssl"
+ substituteInPlace acme_tiny.py --replace '"openssl"' '"${openssl.bin}/bin/openssl"'
+ substituteInPlace tests/monkey.py --replace '"openssl"' '"${openssl.bin}/bin/openssl"'
+ substituteInPlace tests/test_module.py --replace '"openssl"' '"${openssl.bin}/bin/openssl"'
+ substituteInPlace tests/monkey.py --replace /etc/ssl/openssl.cnf ${openssl.out}/etc/ssl/openssl.cnf
'';
- installPhase = ''
- mkdir -p $out/${python.sitePackages}/
- cp acme_tiny.py $out/${python.sitePackages}/
- mkdir -p $out/bin
- ln -s $out/${python.sitePackages}/acme_tiny.py $out/bin/acme_tiny
- chmod +x $out/bin/acme_tiny
- '';
+ buildInputs = [ setuptools_scm ];
+ checkInputs = [ fusepy fuse ];
+
+ doCheck = false; # seems to hang, not sure
meta = with stdenv.lib; {
description = "A tiny script to issue and renew TLS certs from Let's Encrypt";
diff --git a/pkgs/development/python-modules/cmd2/old.nix b/pkgs/development/python-modules/cmd2/old.nix
deleted file mode 100644
index 8f75170c58c..00000000000
--- a/pkgs/development/python-modules/cmd2/old.nix
+++ /dev/null
@@ -1,50 +0,0 @@
-{ stdenv, buildPythonPackage, pythonOlder
-, pyperclip, six, pyparsing, vim
-, contextlib2 ? null, subprocess32 ? null
-, pytest, mock, which, fetchFromGitHub, glibcLocales
-, runtimeShell
-}:
-buildPythonPackage rec {
- pname = "cmd2";
- version = "0.8.0";
-
- src = fetchFromGitHub {
- owner = "python-cmd2";
- repo = "cmd2";
- rev = version;
- sha256 = "0nw2b7n7zg51bc3glxw0l9fn91mwjnjshklhmxhyvjbsg7khf64z";
- };
-
- LC_ALL="en_US.UTF-8";
-
- postPatch = stdenv.lib.optional stdenv.isDarwin ''
- # Fake the impure dependencies pbpaste and pbcopy
- mkdir bin
- echo '#${runtimeShell}' > bin/pbpaste
- echo '#${runtimeShell}' > bin/pbcopy
- chmod +x bin/{pbcopy,pbpaste}
- export PATH=$(realpath bin):$PATH
- '';
-
- checkInputs= [ pytest mock which vim glibcLocales ];
- checkPhase = ''
- # test_path_completion_user_expansion might be fixed in the next release
- py.test -k 'not test_path_completion_user_expansion'
- '';
- doCheck = !stdenv.isDarwin;
-
- propagatedBuildInputs = [
- pyperclip
- six
- pyparsing
- ]
- ++ stdenv.lib.optional (pythonOlder "3.5") contextlib2
- ++ stdenv.lib.optional (pythonOlder "3.0") subprocess32
- ;
-
- meta = with stdenv.lib; {
- description = "Enhancements for standard library's cmd module";
- homepage = https://github.com/python-cmd2/cmd2;
- maintainers = with maintainers; [ teto ];
- };
-}
diff --git a/pkgs/development/python-modules/cx_oracle/default.nix b/pkgs/development/python-modules/cx_oracle/default.nix
index ca28f231831..5708bf12d6b 100644
--- a/pkgs/development/python-modules/cx_oracle/default.nix
+++ b/pkgs/development/python-modules/cx_oracle/default.nix
@@ -22,7 +22,7 @@ buildPythonPackage rec {
meta = with stdenv.lib; {
description = "Python interface to Oracle";
homepage = "https://oracle.github.io/python-cx_Oracle";
- license = licenses.bsdOriginal;
+ license = licenses.bsd3;
maintainers = with maintainers; [ y0no ];
};
}
diff --git a/pkgs/development/python-modules/http-ece/default.nix b/pkgs/development/python-modules/http-ece/default.nix
new file mode 100644
index 00000000000..1f50608d3d1
--- /dev/null
+++ b/pkgs/development/python-modules/http-ece/default.nix
@@ -0,0 +1,24 @@
+{ lib, fetchPypi, buildPythonPackage
+, coverage, flake8, mock, nose
+, cryptography }:
+
+buildPythonPackage rec {
+ pname = "http_ece";
+ version = "1.1.0";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "1y5ln09ji4dwpzhxr77cggk02kghq7lql60a6969a5n2lwpvqblk";
+ };
+
+ propagatedBuildInputs = [ cryptography ];
+
+ checkInputs = [ coverage flake8 mock nose ];
+
+ meta = with lib; {
+ description = "Encipher HTTP Messages";
+ homepage = https://github.com/martinthomson/encrypted-content-encoding;
+ license = licenses.mit;
+ maintainers = with maintainers; [ peterhoeg ];
+ };
+}
diff --git a/pkgs/development/python-modules/nltk/default.nix b/pkgs/development/python-modules/nltk/default.nix
index 9ae4f00b495..2c6858915ce 100644
--- a/pkgs/development/python-modules/nltk/default.nix
+++ b/pkgs/development/python-modules/nltk/default.nix
@@ -1,26 +1,17 @@
{ fetchPypi, buildPythonPackage, lib, six, singledispatch, isPy3k, fetchpatch }:
buildPythonPackage rec {
- version = "3.4";
+ version = "3.4.3";
pname = "nltk";
src = fetchPypi {
inherit pname version;
extension = "zip";
- sha256 = "286f6797204ffdb52525a1d21ec0a221ec68b8e3fa4f2d25f412ac8e63c70e8d";
+ sha256 = "1cjkv4jmmlr0w4qi399ncgb6lp41mb9i352934288wh9xad15mqj";
};
propagatedBuildInputs = [ six ] ++ lib.optional (!isPy3k) singledispatch;
- # TODO: remove patch during update to new version
- patches = [
- (fetchpatch {
- url = https://github.com/nltk/nltk/commit/3966111cbf2f35fb86082b2f12acd90d75e9b8bb.patch;
- includes = [ "setup.py" ];
- sha256 = "1sxafnvf6nzv6d996xc1rys06x62s36swgpfqhsyh6l1lj7y38jw";
- })
- ];
-
# Tests require some data, the downloading of which is impure. It would
# probably make sense to make the data another derivation, but then feeding
# that into the tests (given that we need nltk itself to download the data,
diff --git a/pkgs/development/python-modules/py-vapid/default.nix b/pkgs/development/python-modules/py-vapid/default.nix
new file mode 100644
index 00000000000..d5af1c1c33d
--- /dev/null
+++ b/pkgs/development/python-modules/py-vapid/default.nix
@@ -0,0 +1,24 @@
+{ lib, buildPythonPackage, fetchPypi
+, flake8, mock, nose, pytest
+, cryptography
+}:
+
+buildPythonPackage rec {
+ pname = "py-vapid";
+ version = "1.5.0";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "1b3g4ljkpi6ka5n63bl5y47r3qhxjmr6qfamqwxnmna2567b5las";
+ };
+
+ propagatedBuildInputs = [ cryptography ];
+
+ checkInputs = [ flake8 mock nose pytest ];
+
+ meta = with lib; {
+ description = "VAPID is a voluntary standard for WebPush subscription providers";
+ homepage = https://github.com/mozilla-services/vapid;
+ license = licenses.mpl20;
+ };
+}
diff --git a/pkgs/development/python-modules/pywebpush/default.nix b/pkgs/development/python-modules/pywebpush/default.nix
new file mode 100644
index 00000000000..c9077c7a17c
--- /dev/null
+++ b/pkgs/development/python-modules/pywebpush/default.nix
@@ -0,0 +1,28 @@
+{ lib, fetchPypi, buildPythonPackage
+, coverage, flake8, mock, nose
+, http-ece, py-vapid, requests }:
+
+buildPythonPackage rec {
+ pname = "pywebpush";
+ version = "1.9.4";
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "03qkijz56fx7p8405sknw2wji4pfj5knajk2lmj9y58mjxydbpp3";
+ };
+
+ propagatedBuildInputs = [
+ http-ece py-vapid requests
+ ];
+
+ checkInputs = [
+ coverage flake8 mock nose
+ ];
+
+ meta = with lib; {
+ description = "Webpush Data encryption library for Python";
+ homepage = https://github.com/web-push-libs/pywebpush;
+ license = licenses.mpl20;
+ maintainers = with maintainers; [ peterhoeg ];
+ };
+}
diff --git a/pkgs/development/python-modules/wsproto/default.nix b/pkgs/development/python-modules/wsproto/default.nix
index ca9872bfbf0..36aaf0ec8ce 100644
--- a/pkgs/development/python-modules/wsproto/default.nix
+++ b/pkgs/development/python-modules/wsproto/default.nix
@@ -2,11 +2,11 @@
buildPythonPackage rec {
pname = "wsproto";
- version = "0.14.0";
+ version = "0.14.1";
src = fetchPypi {
inherit pname version;
- sha256 = "1p24dmym6pfsqsyxps6m2cxfl36cmkri0kdy5y5q7s300j3xmhsm";
+ sha256 = "051s127qb5dladxa14n9nqajwq7xki1dz1was5r5v9df5a0jq8pd";
};
propagatedBuildInputs = [ h11 enum34 ];
diff --git a/pkgs/development/tools/analysis/flow/default.nix b/pkgs/development/tools/analysis/flow/default.nix
index dfe1a6a10c7..ac9680c404c 100644
--- a/pkgs/development/tools/analysis/flow/default.nix
+++ b/pkgs/development/tools/analysis/flow/default.nix
@@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
pname = "flow";
- version = "0.100.0";
+ version = "0.101.0";
src = fetchFromGitHub {
owner = "facebook";
repo = "flow";
rev = "refs/tags/v${version}";
- sha256 = "10i2r0w979lhqgkq25s1a7j5vxlnjmr2w7nknhc1cvfp3z17k9ay";
+ sha256 = "09m9arpb26fqwc16f2zgjgkrlmjg0gj55zd9rfv2s8x1l0lrx5z6";
};
installPhase = ''
diff --git a/pkgs/development/tools/build-managers/bear/ignore_wrapper.patch b/pkgs/development/tools/build-managers/bear/ignore_wrapper.patch
index f70e3811f65..8effc723bba 100644
--- a/pkgs/development/tools/build-managers/bear/ignore_wrapper.patch
+++ b/pkgs/development/tools/build-managers/bear/ignore_wrapper.patch
@@ -1,6 +1,6 @@
---- Bear-2.3.11-src/bear/main.py.in 1970-01-01 01:00:01.000000000 +0100
-+++ Bear-2.3.11-src-patch/bear/main.py.in 1970-01-01 01:00:01.000000000 +0100
-@@ -49,6 +49,7 @@
+--- a/bear/main.py.in
++++ b/bear/main.py.in
+@@ -49,6 +49,7 @@ import tempfile
import shutil
import contextlib
import logging
@@ -8,16 +8,20 @@
# Map of ignored compiler option for the creation of a compilation database.
# This map is used in _split_command method, which classifies the parameters
-@@ -540,7 +541,11 @@
- any(pattern.match(cmd) for pattern in COMPILER_PATTERNS_CXX)
+@@ -569,7 +570,15 @@ class Compilation:
+ (compiler, language, rest of the command) otherwise """
if command: # not empty list will allow to index '0' and '1:'
- executable = os.path.basename(command[0]) # type: str
-+ absolute_executable = os.path.realpath(find_executable(command[0]))
-+ if 'wrapper' in absolute_executable:
-+ return None
-+
-+ executable = os.path.basename(absolute_executable) # type: str
++ executable_file = find_executable(command[0])
++ if executable_file:
++ absolute_executable = os.path.realpath(executable_file)
++ # Ignore Nix wrappers.
++ if 'wrapper' in absolute_executable:
++ return None
++ executable = os.path.basename(absolute_executable)
++ else:
++ executable = os.path.basename(command[0])
parameters = command[1:] # type: List[str]
# 'wrapper' 'parameters' and
# 'wrapper' 'compiler' 'parameters' are valid.
\ No newline at end of file
diff --git a/pkgs/development/tools/build-managers/rebar3/default.nix b/pkgs/development/tools/build-managers/rebar3/default.nix
index 60b6fd1953e..341585744a6 100644
--- a/pkgs/development/tools/build-managers/rebar3/default.nix
+++ b/pkgs/development/tools/build-managers/rebar3/default.nix
@@ -3,7 +3,7 @@
tree, hexRegistrySnapshot }:
let
- version = "3.10.0";
+ version = "3.11.1";
bootstrapper = ./rebar3-nix-bootstrap;
@@ -74,10 +74,10 @@ stdenv.mkDerivation rec {
inherit version erlang;
src = fetchFromGitHub {
- owner = "rebar";
+ owner = "erlang";
repo = pname;
rev = version;
- sha256 = "1p34kfkrdmsixg95ad76rifjwfh484vp688lxsjaxg0kf2xjr2d2";
+ sha256 = "124l1alf7wx4hqjpf63l0nx70q68lilmgh582c1d413fz5ip0byd";
};
inherit bootstrapper;
diff --git a/pkgs/development/tools/continuous-integration/gitlab-runner/default.nix b/pkgs/development/tools/continuous-integration/gitlab-runner/default.nix
index 42e8f26970f..07be22ae43f 100644
--- a/pkgs/development/tools/continuous-integration/gitlab-runner/default.nix
+++ b/pkgs/development/tools/continuous-integration/gitlab-runner/default.nix
@@ -1,16 +1,16 @@
{ lib, buildGoPackage, fetchFromGitLab, fetchurl }:
let
- version = "11.11.0";
+ version = "11.11.2";
# Gitlab runner embeds some docker images these are prebuilt for arm and x86_64
docker_x86_64 = fetchurl {
url = "https://gitlab-runner-downloads.s3.amazonaws.com/v${version}/helper-images/prebuilt-x86_64.tar.xz";
- sha256 = "0h35y3ifqqsirkbgg75jj30n1ggyyncbwjnnxwdhc3r9hbbc545y";
+ sha256 = "0q5i9517jsz3mw7hglbnjih7q114350dfd9nyzv7xfk56kc0172w";
};
docker_arm = fetchurl {
url = "https://gitlab-runner-downloads.s3.amazonaws.com/v${version}/helper-images/prebuilt-arm.tar.xz";
- sha256 = "1lphzy5xxyc4qgmnf7rrplida2zdn2mfl9p9fr3gyjs7gbcr92d7";
+ sha256 = "0q7g0ggaxg6akda06an867vbdqjrfcxf4c81b1cxfhbk7whxgxhv";
};
in
buildGoPackage rec {
@@ -29,7 +29,7 @@ buildGoPackage rec {
owner = "gitlab-org";
repo = "gitlab-runner";
rev = "v${version}";
- sha256 = "0i45p4z8f7ggdh7624473d8qhz7d75hlhz98p3z69dggx38vv49y";
+ sha256 = "0bnn89z7p2mrjjlq7i9yfr6ra903vr278qhhy2i126w56dlac6vf";
};
patches = [ ./fix-shell-path.patch ];
diff --git a/pkgs/development/tools/libsigrok/default.nix b/pkgs/development/tools/libsigrok/default.nix
index 93c8c6a6c71..a80b638625e 100644
--- a/pkgs/development/tools/libsigrok/default.nix
+++ b/pkgs/development/tools/libsigrok/default.nix
@@ -1,20 +1,20 @@
{ stdenv, fetchurl, pkgconfig, libzip, glib, libusb1, libftdi1, check
, libserialport, librevisa, doxygen, glibmm, python
-, version ? "0.5.0", sha256 ? "197kr5ip98lxn7rv10zs35d1w0j7265s0xvckx0mq2l8kdvqd32c"
+, version ? "0.5.1", sha256 ? "171b553dir5gn6w4f7n37waqk62nq2kf1jykx4ifjacdz5xdw3z4"
}:
stdenv.mkDerivation rec {
inherit version;
- name = "libsigrok-${version}";
+ pname = "libsigrok";
src = fetchurl {
- url = "https://sigrok.org/download/source/libsigrok/${name}.tar.gz";
+ url = "https://sigrok.org/download/source/${pname}/${pname}-${version}.tar.gz";
inherit sha256;
};
firmware = fetchurl {
- url = "https://sigrok.org/download/binary/sigrok-firmware-fx2lafw/sigrok-firmware-fx2lafw-bin-0.1.3.tar.gz";
- sha256 = "1qr02ny97navqxr56xq1a227yzf6h09m8jlvc9bnjl0bsk6887bl";
+ url = "https://sigrok.org/download/binary/sigrok-firmware-fx2lafw/sigrok-firmware-fx2lafw-bin-0.1.6.tar.gz";
+ sha256 = "14sd8xqph4kb109g073daiavpadb20fcz7ch1ipn0waz7nlly4sw";
};
nativeBuildInputs = [ pkgconfig ];
diff --git a/pkgs/development/tools/misc/libwhich/default.nix b/pkgs/development/tools/misc/libwhich/default.nix
index 58aca8a8b5a..c751c275558 100644
--- a/pkgs/development/tools/misc/libwhich/default.nix
+++ b/pkgs/development/tools/misc/libwhich/default.nix
@@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
pname = "libwhich";
- version = "2019-03-20";
+ version = "1.1.0";
src = fetchFromGitHub {
owner = "vtjnash";
repo = pname;
- rev = "b348872107c77cba50b60475aa8ce2ddba86aac0";
- sha256 = "0fd8hsdc9b9v83j89mxvisgrz77q9rlxnbzd6j63wq66h95r02r9";
+ rev = "v${version}";
+ sha256 = "0s0pqai61jszmi495k621rdlf288ij67adkz72hwqqarqp54idhb";
};
installPhase = ''
diff --git a/pkgs/development/tools/qtcreator/0001-Fix-clang-libcpp-regexp.patch b/pkgs/development/tools/qtcreator/0001-Fix-clang-libcpp-regexp.patch
new file mode 100644
index 00000000000..8744b753a6e
--- /dev/null
+++ b/pkgs/development/tools/qtcreator/0001-Fix-clang-libcpp-regexp.patch
@@ -0,0 +1,15 @@
+diff --git a/src/plugins/cpptools/headerpathfilter.cpp b/src/plugins/cpptools/headerpathfilter.cpp
+index b514c46..5f96358 100644
+--- a/src/plugins/cpptools/headerpathfilter.cpp
++++ b/src/plugins/cpptools/headerpathfilter.cpp
+@@ -92,8 +92,8 @@ HeaderPaths::iterator resourceIterator(HeaderPaths &headerPaths, bool isMacOs)
+ {
+ // include/c++, include/g++, libc++\include and libc++abi\include
+ static const QString cppIncludes = R"((.*\/include\/.*(g\+\+|c\+\+).*))"
+- R"(|(.*libc\+\+\/include))"
+- R"(|(.*libc\+\+abi\/include))";
++ R"(|(.*libc\+\+.*\/include))"
++ R"(|(.*libc\+\+abi.*\/include))";
+ static const QRegularExpression includeRegExp("\\A(" + cppIncludes + ")\\z");
+
+ // The same as includeRegExp but also matches /usr/local/include
diff --git a/pkgs/development/tools/qtcreator/default.nix b/pkgs/development/tools/qtcreator/default.nix
index 3c892592d88..03b758cbdc6 100644
--- a/pkgs/development/tools/qtcreator/default.nix
+++ b/pkgs/development/tools/qtcreator/default.nix
@@ -1,5 +1,5 @@
-{ stdenv, fetchurl, makeWrapper
-, qtbase, qtquickcontrols, qtscript, qtdeclarative, qmake
+{ stdenv, fetchurl, fetchgit, fetchpatch, makeWrapper
+, qtbase, qtquickcontrols, qtscript, qtdeclarative, qmake, llvmPackages_8
, withDocumentation ? false
}:
@@ -8,6 +8,17 @@ with stdenv.lib;
let
baseVersion = "4.9";
revision = "1";
+
+ # Fetch clang from qt vendor, this contains submodules like this:
+ # clang<-clang-tools-extra<-clazy.
+ clang_qt_vendor = llvmPackages_8.clang-unwrapped.overrideAttrs (oldAttrs: rec {
+ src = fetchgit {
+ url = "https://code.qt.io/clang/clang.git";
+ rev = "c12b012bb7465299490cf93c2ae90499a5c417d5";
+ sha256 = "0mgmnazgr19hnd03xcrv7d932j6dpz88nhhx008b0lv4bah9mqm0";
+ };
+ unpackPhase = "";
+ });
in
stdenv.mkDerivation rec {
@@ -19,10 +30,29 @@ stdenv.mkDerivation rec {
sha256 = "10ddp1365rf0z4bs7yzc9hajisp3j6mzjshyd0vpi4ki126j5f3r";
};
- buildInputs = [ qtbase qtscript qtquickcontrols qtdeclarative ];
+ buildInputs = [ qtbase qtscript qtquickcontrols qtdeclarative llvmPackages_8.libclang clang_qt_vendor llvmPackages_8.llvm ];
nativeBuildInputs = [ qmake makeWrapper ];
+ # 0001-Fix-clang-libcpp-regexp.patch is for fixing regexp that is used to
+ # find clang libc++ library include paths. By default it's not covering paths
+ # like libc++-version, which is default name for libc++ folder in nixos.
+ patches = [ ./0001-Fix-clang-libcpp-regexp.patch
+
+ # Fix clazy plugin name. This plugin was renamed with clang8
+ # release, and patch didn't make it into 4.9.1 release. Should be removed
+ # on qtcreator update, if this problem is fixed.
+ (fetchpatch {
+ url = "https://code.qt.io/cgit/qt-creator/qt-creator.git/patch/src/plugins/clangcodemodel/clangeditordocumentprocessor.cpp?id=53c407bc0c87e0b65b537bf26836ddd8e00ead82";
+ sha256 = "1lanp7jg0x8jffajb852q8p4r34facg41l410xsz6s1k91jskbi9";
+ })
+
+ (fetchpatch {
+ url = "https://code.qt.io/cgit/qt-creator/qt-creator.git/patch/src/plugins/clangtools/clangtidyclazyrunner.cpp?id=53c407bc0c87e0b65b537bf26836ddd8e00ead82";
+ sha256 = "1rl0rc2l297lpfhhawvkkmj77zb081hhp0bbi7nnykf3q9ch0clh";
+ })
+ ];
+
doCheck = true;
enableParallelBuilding = true;
@@ -34,6 +64,20 @@ stdenv.mkDerivation rec {
preConfigure = ''
substituteInPlace src/plugins/plugins.pro \
--replace '$$[QT_INSTALL_QML]/QtQuick/Controls' '${qtquickcontrols}/${qtbase.qtQmlPrefix}/QtQuick/Controls'
+
+ # Fix paths for llvm/clang includes directories.
+ substituteInPlace src/shared/clang/clang_defines.pri \
+ --replace '$$clean_path($${LLVM_LIBDIR}/clang/$${LLVM_VERSION}/include)' '${clang_qt_vendor}/lib/clang/8.0.0/include' \
+ --replace '$$clean_path($${LLVM_BINDIR})' '${clang_qt_vendor}/bin'
+
+ # Fix include path to find clang and clang-c include directories.
+ substituteInPlace src/plugins/clangtools/clangtools.pro \
+ --replace 'INCLUDEPATH += $$LLVM_INCLUDEPATH' 'INCLUDEPATH += $$LLVM_INCLUDEPATH ${clang_qt_vendor}'
+
+ # Fix paths to libclang library.
+ substituteInPlace src/shared/clang/clang_installation.pri \
+ --replace 'LIBCLANG_LIBS = -L$${LLVM_LIBDIR}' 'LIBCLANG_LIBS = -L${llvmPackages_8.libclang}/lib' \
+ --replace 'LIBCLANG_LIBS += $${CLANG_LIB}' 'LIBCLANG_LIBS += -lclang'
'';
preBuild = optional withDocumentation ''
diff --git a/pkgs/development/tools/rust/cargo-make/default.nix b/pkgs/development/tools/rust/cargo-make/default.nix
index ab625d7ea35..da42e819ced 100644
--- a/pkgs/development/tools/rust/cargo-make/default.nix
+++ b/pkgs/development/tools/rust/cargo-make/default.nix
@@ -2,7 +2,7 @@
rustPlatform.buildRustPackage rec {
pname = "cargo-make";
- version = "0.19.4";
+ version = "0.19.5";
src =
let
@@ -10,11 +10,11 @@ rustPlatform.buildRustPackage rec {
owner = "sagiegurari";
repo = pname;
rev = version;
- sha256 = "019dn401p4bds144fbvqxbnn8vswcj0lxr8cvgpxb2y22640z60l";
+ sha256 = "0xjyzsi3n3lb5g4gl6v0s4p87nazkqgjf244m792iji9i568ynjb";
};
cargo-lock = fetchurl {
- url = "https://gist.githubusercontent.com/xrelkd/e4c9c7738b21f284d97cb7b1d181317d/raw/c5b9fde279a9f6d55d97e0ba4e0b4cd62e0ab2bf/cargo-make-Cargo.lock";
- sha256 = "1d5md3m8hxwf3pwvx059fsk1b3vvqm17pxbbyiisn9v4psrsmld5";
+ url = "https://gist.githubusercontent.com/xrelkd/e4c9c7738b21f284d97cb7b1d181317d/raw/285cf8f9b0ab33db0d656fdc8e759feed55c0167/cargo-make-Cargo.lock";
+ sha256 = "0l2i2hq43k482m2w6hpapaq53r8bjljfcszp6csljj4fvxcl62yj";
};
in
runCommand "cargo-make-src" {} ''
@@ -25,7 +25,7 @@ rustPlatform.buildRustPackage rec {
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ Security ];
- cargoSha256 = "0wf60ck0w3m9fa19dz99q84kw05sxlj2pp6bd8r1db3cfy8f8h8j";
+ cargoSha256 = "1rmdmvr5wc2m0yv3dy07cv9y1xrwlfri3hk97zjwv5f73wgncspy";
# Some tests fail because they need network access.
# However, Travis ensures a proper build.
diff --git a/pkgs/development/web/grails/default.nix b/pkgs/development/web/grails/default.nix
index b4d78ef0850..018c7f96969 100644
--- a/pkgs/development/web/grails/default.nix
+++ b/pkgs/development/web/grails/default.nix
@@ -11,11 +11,11 @@ let
in
stdenv.mkDerivation rec {
name = "grails-${version}";
- version = "3.3.9";
+ version = "3.3.10";
src = fetchurl {
url = "https://github.com/grails/grails-core/releases/download/v${version}/grails-${version}.zip";
- sha256 = "0xnwi9m9l8rz4wdwjp2i3yfzsq1szz37z886nc6lbfxd5mj19hnn";
+ sha256 = "1lykawfi47c2k6lq4vrnghlz8gcnmqsslxsnaq4d2n78g0y3yyr2";
};
buildInputs = [ unzip ];
diff --git a/pkgs/games/dwarf-fortress/default.nix b/pkgs/games/dwarf-fortress/default.nix
index 88a6d72bc48..2580e870321 100644
--- a/pkgs/games/dwarf-fortress/default.nix
+++ b/pkgs/games/dwarf-fortress/default.nix
@@ -45,6 +45,12 @@ let
# Converts a version to a package name.
versionToName = version: "dwarf-fortress_${lib.replaceStrings ["."] ["_"] version}";
+ dwarf-therapist-original = pkgs.qt5.callPackage ./dwarf-therapist {
+ texlive = pkgs.texlive.combine {
+ inherit (pkgs.texlive) scheme-basic float caption wrapfig adjmulticol sidecap preprint enumitem;
+ };
+ };
+
# A map of names to each Dwarf Fortress package we know about.
df-games = lib.listToAttrs (map (dfVersion: {
name = versionToName dfVersion;
@@ -70,11 +76,7 @@ let
dwarf-therapist = callPackage ./dwarf-therapist/wrapper.nix {
inherit dwarf-fortress;
- dwarf-therapist = pkgs.qt5.callPackage ./dwarf-therapist {
- texlive = pkgs.texlive.combine {
- inherit (pkgs.texlive) scheme-basic float caption wrapfig adjmulticol sidecap preprint enumitem;
- };
- };
+ dwarf-therapist = dwarf-therapist-original;
};
in
callPackage ./wrapper {
@@ -93,6 +95,7 @@ let
# Aliases for the latest Dwarf Fortress and the selected Therapist install
dwarf-fortress = getAttr (versionToName latestVersion) df-games;
+ inherit dwarf-therapist-original;
dwarf-therapist = dwarf-fortress.dwarf-therapist;
dwarf-fortress-original = dwarf-fortress.dwarf-fortress;
diff --git a/pkgs/misc/emulators/mgba/default.nix b/pkgs/misc/emulators/mgba/default.nix
index 0a41e9b3382..7a5ed31a580 100644
--- a/pkgs/misc/emulators/mgba/default.nix
+++ b/pkgs/misc/emulators/mgba/default.nix
@@ -15,13 +15,13 @@ let
};
in stdenv.mkDerivation rec {
name = "mgba-${version}";
- version = "0.7.1";
+ version = "0.7.2";
src = fetchFromGitHub {
owner = "mgba-emu";
repo = "mgba";
rev = version;
- sha256 = "0q0yg2zna7gjbvpaswyykbg3lr9k3c8l8fydqa407xrgq77lahq4";
+ sha256 = "0g0xa1mzvan0sl1p5c784j2g5mcw9kd2b7wiahy06gy0c1nmbcnp";
};
enableParallelBuilding = true;
diff --git a/pkgs/misc/emulators/pcsx2/default.nix b/pkgs/misc/emulators/pcsx2/default.nix
index 95e94eeaff5..851c05c0578 100644
--- a/pkgs/misc/emulators/pcsx2/default.nix
+++ b/pkgs/misc/emulators/pcsx2/default.nix
@@ -35,6 +35,7 @@ stdenv.mkDerivation rec {
-DPACKAGE_MODE=TRUE \
-DPLUGIN_DIR="$out/lib/pcsx2" \
-DREBUILD_SHADER=TRUE \
+ -DXDG_STD=TRUE \
..
'';
diff --git a/pkgs/misc/lilypond/default.nix b/pkgs/misc/lilypond/default.nix
index fb17e5e5a2d..7738c9b1c09 100644
--- a/pkgs/misc/lilypond/default.nix
+++ b/pkgs/misc/lilypond/default.nix
@@ -1,26 +1,26 @@
-{ stdenv, fetchurl, ghostscript, texinfo, imagemagick, texi2html, guile
+{ stdenv, fetchgit, ghostscript, texinfo, imagemagick, texi2html, guile
, python2, gettext, flex, perl, bison, pkgconfig, autoreconfHook, dblatex
, fontconfig, freetype, pango, fontforge, help2man, zip, netpbm, groff
-, fetchsvn, makeWrapper, t1utils
+, makeWrapper, t1utils
, texlive, tex ? texlive.combine {
inherit (texlive) scheme-small lh metafont epsf;
}
}:
-stdenv.mkDerivation rec{
- majorVersion="2.18";
- minorVersion="2";
- version="${majorVersion}.${minorVersion}";
- name = "lilypond-${version}";
+let
- urwfonts = fetchsvn {
- url = "http://svn.ghostscript.com/ghostscript/tags/urw-fonts-1.0.7pre44";
- sha256 = "0al5vdsb66db6yzwi0qgs1dnd1i1fb77cigdjxg8zxhhwf6hhwpn";
- };
+ version = "2.18.2";
- src = fetchurl {
- url = "http://download.linuxaudio.org/lilypond/sources/v${majorVersion}/lilypond-${version}.tar.gz";
- sha256 = "01xs9x2wjj7w9appaaqdhk15r1xvvdbz9qwahzhppfmhclvp779j";
+in
+
+stdenv.mkDerivation {
+ pname = "lilypond";
+ inherit version;
+
+ src = fetchgit {
+ url = "https://git.savannah.gnu.org/r/lilypond.git";
+ rev = "release/${version}-1";
+ sha256 = "0fk045fmmb6fcv7jdvkbqr04qlwnxzwclr2gzx3gja714xy6a76x";
};
postInstall = ''
@@ -33,7 +33,10 @@ stdenv.mkDerivation rec{
done
'';
- configureFlags = [ "--disable-documentation" "--with-ncsb-dir=${urwfonts}"];
+ configureFlags = [
+ "--disable-documentation"
+ "--with-ncsb-dir=${ghostscript}/share/ghostscript/fonts"
+ ];
preConfigure = ''
sed -e "s@mem=mf2pt1@mem=$PWD/mf/mf2pt1@" -i scripts/build/mf2pt1.pl
@@ -56,8 +59,9 @@ stdenv.mkDerivation rec{
description = "Music typesetting system";
homepage = http://lilypond.org/;
license = licenses.gpl3;
- maintainers = [ maintainers.marcweber ];
+ maintainers = with maintainers; [ marcweber yurrriq ];
platforms = platforms.all;
+ broken = stdenv.isDarwin;
};
patches = [ ./findlib.patch ];
diff --git a/pkgs/misc/lilypond/fonts.nix b/pkgs/misc/lilypond/fonts.nix
index bb3487cd0a8..00335eddce8 100644
--- a/pkgs/misc/lilypond/fonts.nix
+++ b/pkgs/misc/lilypond/fonts.nix
@@ -1,45 +1,43 @@
{ stdenv, fetchFromGitHub, lilypond }:
-with stdenv.lib;
-
let
- olpFont = a@{
- fontName,
- rev,
- sha256,
- version ? rev,
- ...
- }:
- stdenv.mkDerivation (a // rec {
+
+ olpFont = { fontName, rev, sha256, version ? rev, ... }:
+ stdenv.mkDerivation {
inherit version;
- name = "openlilypond-font-${fontName}-${version}";
+ pname = "openlilypond-font-${fontName}";
+
src = fetchFromGitHub {
inherit rev sha256;
owner = "OpenLilyPondFonts";
- repo = a.fontName;
+ repo = fontName;
};
phases = [ "unpackPhase" "installPhase" ];
installPhase = ''
- for f in {otf,supplementary-fonts}/**.{o,t}tf; do
- install -Dt $out/otf -m755 $f
+ local fontsdir="$out/share/lilypond/${lilypond.version}/fonts"
+
+ install -m755 -d "$fontsdir/otf"
+ for font in {otf,supplementary-fonts}/**.{o,t}tf; do
+ install -Dt "$fontsdir/otf" -m755 "$font"
done
- for f in svg/**.{svg,woff}; do
- install -Dt $out/svg -m755 $f
+ install -m755 -d "$fontsdir/svg"
+ for font in svg/**.{svg,woff}; do
+ install -Dt "$fontsdir/svg" -m755 "$font"
done
'';
- meta = {
+ meta = with stdenv.lib; {
inherit (src.meta) homepage;
+ inherit (lilypond.meta) platforms;
description = "${fontName} font for LilyPond";
- license = a.license or licenses.ofl;
- platforms = lilypond.meta.platforms;
- maintainers = (a.meta.maintainers or []) ++ [ maintainers.yurrriq ];
+ license = licenses.ofl;
+ maintainers = with maintainers; [ yurrriq ];
};
- });
+ };
in
@@ -86,8 +84,8 @@ rec {
};
lilyjazz = olpFont {
fontName = "lilyjazz";
- rev = "8f1f2dd";
- sha256 = "0k44dl5hfcn7wn2b6c51mbw6hsb1sprmx95xiabvcbpxnkplbmac";
+ rev = "8fa7d554";
+ sha256 = "1z7px7k2sn7snnj7yfjv0p9axwbn452vn9ww9icmb1249b0d1qry";
};
lv-goldenage = olpFont {
fontName = "lv-goldenage";
diff --git a/pkgs/misc/lilypond/unstable.nix b/pkgs/misc/lilypond/unstable.nix
index df83502aa88..ce72c1fdfee 100644
--- a/pkgs/misc/lilypond/unstable.nix
+++ b/pkgs/misc/lilypond/unstable.nix
@@ -1,26 +1,23 @@
-{ stdenv, fetchurl, fetchgit, rsync, lilypond, gyre-fonts }:
+{ stdenv, fetchgit, lilypond, ghostscript, gyre-fonts }:
-with stdenv.lib;
+let
-let urw-fonts = fetchgit {
- url = "http://git.ghostscript.com/urw-core35-fonts.git";
- rev = "1f28a6fcd2176256a995db907d9ffe6e1b9b83e9";
- sha256 = "1nlx95l1pw5lxqp2v0rn9a7lqrsbbhzr0dy3cybk55r4a8awbr2a";
-}; in
+ version = "2.19.83";
-overrideDerivation lilypond (p: rec {
- majorVersion = "2.19";
- minorVersion = "65";
- version="${majorVersion}.${minorVersion}";
- name = "lilypond-${version}";
+in
- src = fetchurl {
- url = "http://download.linuxaudio.org/lilypond/sources/v${majorVersion}/lilypond-${version}.tar.gz";
- sha256 = "0k2jy7z58j62c5cv1308ac62d6jri17wip76xrbq8s6jq6jl7phd";
+lilypond.overrideAttrs (oldAttrs: {
+ inherit version;
+
+ src = fetchgit {
+ url = "https://git.savannah.gnu.org/r/lilypond.git";
+ rev = "release/${version}-1";
+ sha256 = "1ycyx9x76d79jh7wlwyyhdjkyrwnhzqpw006xn2fk35s0jrm2iz0";
};
- configureFlags = [ "--disable-documentation" "--with-urwotf-dir=${urw-fonts}" "--with-texgyre-dir=${gyre-fonts}/share/fonts/truetype/"];
-
- buildInputs = p.buildInputs ++ [ rsync ];
-
+ configureFlags = [
+ "--disable-documentation"
+ "--with-urwotf-dir=${ghostscript}/share/ghostscript/fonts"
+ "--with-texgyre-dir=${gyre-fonts}/share/fonts/truetype/"
+ ];
})
diff --git a/pkgs/misc/lilypond/with-fonts.nix b/pkgs/misc/lilypond/with-fonts.nix
index 5bc74cb65dd..829d2d4e02e 100644
--- a/pkgs/misc/lilypond/with-fonts.nix
+++ b/pkgs/misc/lilypond/with-fonts.nix
@@ -1,35 +1,18 @@
-{ stdenv
-, lndir
-, lilypond
-, openlilylib-fonts
+{ stdenv, lndir, symlinkJoin, makeWrapper
+, lilypond, openlilylib-fonts
, fonts ? openlilylib-fonts.all
}:
-stdenv.lib.appendToName "with-fonts" (stdenv.mkDerivation {
- inherit (lilypond) name;
- phases = "installPhase";
- buildInputs = fonts;
- nativeBuildInputs = [ lndir ];
- installPhase = ''
- local fontsdir=$out/share/lilypond/${lilypond.version}/fonts
+stdenv.lib.appendToName "with-fonts" (symlinkJoin {
+ inherit (lilypond) meta name version ;
- install -m755 -d $fontsdir/otf
- install -m755 -d $fontsdir/svg
+ paths = [ lilypond ];
- ${stdenv.lib.concatMapStrings (font: ''
- lndir -silent ${font}/otf $fontsdir/otf
- lndir -silent ${font}/svg $fontsdir/svg
- '') fonts}
+ buildInputs = [ makeWrapper lndir ];
- install -m755 -d $out/lib
- lndir -silent ${lilypond}/lib $out/lib
- install -m755 -d $out/share
- lndir -silent ${lilypond}/share $out/share
-
- install -m755 -Dt $out/bin ${lilypond}/bin/*
-
- for p in $out/bin/*; do
- substituteInPlace $p --replace "exec -a \"${lilypond}" "exec -a \"$out"
- done
+ postBuild = ''
+ for p in $out/bin/*; do
+ wrapProgram "$p" --set LILYPOND_DATADIR "$datadir"
+ done
'';
})
diff --git a/pkgs/misc/vim-plugins/generated.nix b/pkgs/misc/vim-plugins/generated.nix
index 8e2747514ec..b80ef67cf68 100644
--- a/pkgs/misc/vim-plugins/generated.nix
+++ b/pkgs/misc/vim-plugins/generated.nix
@@ -61,12 +61,12 @@ let
ale = buildVimPluginFrom2Nix {
pname = "ale";
- version = "2019-06-05";
+ version = "2019-06-10";
src = fetchFromGitHub {
owner = "w0rp";
repo = "ale";
- rev = "7b78f2b846e2f3443dcb2ceacee54eb99e37f040";
- sha256 = "1f6kldvcysa525xn6fnzg09chp39s63m7nxsq008lzykm30v00jr";
+ rev = "80ab12c7b645b392feb98723873d77b045a0a7e2";
+ sha256 = "147p1i5a7bk8z2xsk8xbwwx0yic3fbz4dvsrwcfjik7ydnsy8xra";
};
};
@@ -237,12 +237,12 @@ let
coc-nvim = buildVimPluginFrom2Nix {
pname = "coc-nvim";
- version = "2019-06-07";
+ version = "2019-06-11";
src = fetchFromGitHub {
owner = "neoclide";
repo = "coc.nvim";
- rev = "cbb5c031274f81a503ea0c0976252938de479980";
- sha256 = "07i7fb12ai2xzknn624lvbl5qjazqx3mix390ymbscdskb726kaz";
+ rev = "c78a2807a74a6a7b005c4035a728c8be42a007fe";
+ sha256 = "14bkrnrgm6q3yryvavpi2sbfyv0ynsj6l31d6ygwc5b14ljyjd79";
};
};
@@ -414,12 +414,12 @@ let
denite-nvim = buildVimPluginFrom2Nix {
pname = "denite-nvim";
- version = "2019-06-07";
+ version = "2019-06-10";
src = fetchFromGitHub {
owner = "Shougo";
repo = "denite.nvim";
- rev = "bfc010bfeed56681929b67e70662f8bb11977da7";
- sha256 = "0gppzj0l83ldwxb3z41fvjlvyxalcnw90bfw4vvm6aghx0clxpkx";
+ rev = "fc42dbb602193b7bd7fd1a473bc09b10512d2f90";
+ sha256 = "0waq9729g5y4gihg63y76w5ddzwj2xixc1m8d4jjl6blkxajkxcm";
};
};
@@ -650,12 +650,12 @@ let
ferret = buildVimPluginFrom2Nix {
pname = "ferret";
- version = "2019-06-01";
+ version = "2019-06-10";
src = fetchFromGitHub {
owner = "wincent";
repo = "ferret";
- rev = "80c9f12cd0b7e0bce86b6b2142a8f8d1f1937519";
- sha256 = "1w9ak71c3m588xkhqlr6alddhshmimvq0y3m1grz9s4jcv7zsgr0";
+ rev = "f72610d8b890962fb3f6ad80b902d4790e90f507";
+ sha256 = "15xyz25n8priam3s2wcvws05ry7w71v2m2j5bp0w1d5zmrw969p4";
};
};
@@ -706,12 +706,12 @@ let
fzf-vim = buildVimPluginFrom2Nix {
pname = "fzf-vim";
- version = "2019-05-14";
+ version = "2019-06-08";
src = fetchFromGitHub {
owner = "junegunn";
repo = "fzf.vim";
- rev = "5c87ab86c0e7b0ec8a5edd39a4ce5500bb9e9333";
- sha256 = "0ippj4xpxx8yypfp4fa66hahz9ciy2inyq9275ajpgs7gxs6yx7n";
+ rev = "91ed5f4b39b6e4a2ca50be1c8cec7e1148145fab";
+ sha256 = "1aij5xzcsi56pjns39y5ybg31qi8zaka949habakfy3jwl1wyrjf";
};
};
@@ -869,6 +869,17 @@ let
};
};
+ indentLine = buildVimPluginFrom2Nix {
+ pname = "indentLine";
+ version = "2019-02-22";
+ src = fetchFromGitHub {
+ owner = "Yggdroot";
+ repo = "indentLine";
+ rev = "47648734706fb2cd0e4d4350f12157d1e5f4c465";
+ sha256 = "0739hdvdfa1lm209q4sl75jvmf2k03cvlka7wv1gwnfl00krvszs";
+ };
+ };
+
intero-neovim = buildVimPluginFrom2Nix {
pname = "intero-neovim";
version = "2018-08-07";
@@ -1180,12 +1191,12 @@ let
neomake = buildVimPluginFrom2Nix {
pname = "neomake";
- version = "2019-06-05";
+ version = "2019-06-07";
src = fetchFromGitHub {
owner = "neomake";
repo = "neomake";
- rev = "443dcc03b79b2402bd14600c9c4377266f07d1f4";
- sha256 = "0byqhzir1nvkir0wp8bw9ikw7z24r3csx3zbwdl1av1rmf3m7ld8";
+ rev = "3e8f7c5b2f108e5a7e1cffff37321abd06edf997";
+ sha256 = "1h0fk2097zfilbfawcg5k4j7p4ff17396pb3yfipd4ik9hfnbgk0";
};
};
@@ -1268,23 +1279,23 @@ let
nerdcommenter = buildVimPluginFrom2Nix {
pname = "nerdcommenter";
- version = "2019-06-04";
+ version = "2019-06-08";
src = fetchFromGitHub {
owner = "scrooloose";
repo = "nerdcommenter";
- rev = "e6fd663def132bcbcd7fdb6ab34be117437b6944";
- sha256 = "0r7qpy6m79j7vdq1p5ladfvclfly1vjxhwmj9xfcdbz2agpmkgj3";
+ rev = "17cec9747e464867676d8bee6cb7b411f17bd006";
+ sha256 = "1ph87m17liifmffaq3iizinhmq2z59jfpydlnsv6d67x5ia58dc5";
};
};
nerdtree = buildVimPluginFrom2Nix {
pname = "nerdtree";
- version = "2019-05-09";
+ version = "2019-06-08";
src = fetchFromGitHub {
owner = "scrooloose";
repo = "nerdtree";
- rev = "67fa9b3116948466234978aa6287649f98e666bd";
- sha256 = "0pzkcpqaalx3jncxfd3yf1ml7q5kkw4z1wqshilkr55nrb26chdg";
+ rev = "28eb47e2678cf629d92b4f1f00dd56cba22fc4ae";
+ sha256 = "18yj47zyiapgrxsg1hk497z6875bwqrl6jg395n91kf5cz9c269i";
};
};
@@ -1873,12 +1884,12 @@ let
traces-vim = buildVimPluginFrom2Nix {
pname = "traces-vim";
- version = "2019-05-14";
+ version = "2019-06-10";
src = fetchFromGitHub {
owner = "markonm";
repo = "traces.vim";
- rev = "d07bb40a3064ff5a2fb16c90946a6259ceb447a3";
- sha256 = "18b9215ifp591hkirs9h09g7r7baal2kcxccpz0siq9939y32b9p";
+ rev = "e6f44ecfd4ccea9269aba69ea5547ade43eb03c5";
+ sha256 = "1yw66phpxd3hgnxj0bh5f6ypmbkiz4hn2jcg289cr0smd10a9vxk";
};
};
@@ -2214,12 +2225,12 @@ let
vim-airline = buildVimPluginFrom2Nix {
pname = "vim-airline";
- version = "2019-06-04";
+ version = "2019-06-11";
src = fetchFromGitHub {
owner = "vim-airline";
repo = "vim-airline";
- rev = "826561daf34379a8ac4dc19395fb0e26f11ce036";
- sha256 = "0ghmjidp1kva4888nfi3pckibrvvp47z6yzd9d612ij6pz9njvjr";
+ rev = "28453d703825ba4c93869ba1ee1d38a6f281d7d3";
+ sha256 = "0fqy2nlbn4jnsvl4zdp3rwzhb98sai5xq02jva2jskzakylvzinp";
};
};
@@ -2511,12 +2522,12 @@ let
vim-dispatch = buildVimPluginFrom2Nix {
pname = "vim-dispatch";
- version = "2019-06-06";
+ version = "2019-06-09";
src = fetchFromGitHub {
owner = "tpope";
repo = "vim-dispatch";
- rev = "eac3a56511119e3c2ca2eec2ba6e6bad72bc09a8";
- sha256 = "1z3nh5v0kgbj3irmyx6b4l9zw8qsfzq8nvyly5v2xzbjsfyykwms";
+ rev = "597b338f3579ca6929c47465397974d366f4eccc";
+ sha256 = "0amwsncrcxv49d7yaprngsyzl5dai8ff4r1i7mlq3x1s8s5inqqg";
};
};
@@ -2632,12 +2643,12 @@ let
vim-fireplace = buildVimPluginFrom2Nix {
pname = "vim-fireplace";
- version = "2019-06-05";
+ version = "2019-06-10";
src = fetchFromGitHub {
owner = "tpope";
repo = "vim-fireplace";
- rev = "1f97b27e166c8b8f3e04808830fa8a4f8ae7620f";
- sha256 = "0br3zkkdq13h5l7wly5n1rzhkyl5wn8ghm6nabyn298lgh1193i2";
+ rev = "cf0537f683ef6195fee453f330510b95536c8861";
+ sha256 = "1p8ll6p69aj0q0ygn3pignivss88sa12lfznbkc9xlrrcky4birq";
};
};
@@ -2687,12 +2698,12 @@ let
vim-fugitive = buildVimPluginFrom2Nix {
pname = "vim-fugitive";
- version = "2019-06-04";
+ version = "2019-06-08";
src = fetchFromGitHub {
owner = "tpope";
repo = "vim-fugitive";
- rev = "41a734ef49c78cfdb97426cda811ee99c39e011a";
- sha256 = "1d7nfyrjr96q8m8z9ssqx5qmv46273gimw9rm519h2271bdy1cri";
+ rev = "6d42c7df44aa20252e5dac747c3ac9fa7450b21b";
+ sha256 = "002s7jsn8m4h98hpbcblhmxywsyxgajz23wm3w96awqqz4chrp0i";
};
};
@@ -2753,12 +2764,12 @@ let
vim-go = buildVimPluginFrom2Nix {
pname = "vim-go";
- version = "2019-06-04";
+ version = "2019-06-10";
src = fetchFromGitHub {
owner = "fatih";
repo = "vim-go";
- rev = "255f903c14350fb5d615b316661bac93db1544ce";
- sha256 = "1zdxh13g1xfxcz4w1jw065d08mf6067pyxdqxhrpsl9hi9vxd01q";
+ rev = "5e1689db322e7bf104f43d7dd15e5a6bc6b0020c";
+ sha256 = "1lb580qj2q44ndxpigqqg84y70r7ix54w2zid2dav8bswcpdmzi3";
};
};
@@ -2940,12 +2951,12 @@ let
vim-isort = buildVimPluginFrom2Nix {
pname = "vim-isort";
- version = "2019-03-12";
+ version = "2019-06-08";
src = fetchFromGitHub {
owner = "fisadev";
repo = "vim-isort";
- rev = "a0663e91cd50686f39e96f4e51d10a37e2187df8";
- sha256 = "1vfnhms2x2flmpkd2y6s95w628raip3h95d59wms5vizmhs2d3xg";
+ rev = "b749d009075a333634dc61a039a2dc0e7f34609c";
+ sha256 = "1h8s21kwbjdg632jvd46r2va7il4f1dbgwfw8fkds0n08rbnpdjw";
};
};
@@ -3150,12 +3161,12 @@ let
vim-lsc = buildVimPluginFrom2Nix {
pname = "vim-lsc";
- version = "2019-05-29";
+ version = "2019-06-11";
src = fetchFromGitHub {
owner = "natebosch";
repo = "vim-lsc";
- rev = "a29bf109afcf8e0b7517ca73c233579660e51d06";
- sha256 = "1jxl3dxkvbzdkqm1psy9lnwig2wk1zi4mi81070v6c0jlv3aq24n";
+ rev = "d4d34070c74261d749a74c1990c7e6ecf7b500bb";
+ sha256 = "0gba7lhzd8l0mdkkgw2ahwq3n0x2kz3bghqx06ah77w642kq4sdr";
};
};
@@ -3425,12 +3436,12 @@ let
vim-polyglot = buildVimPluginFrom2Nix {
pname = "vim-polyglot";
- version = "2019-05-07";
+ version = "2019-06-08";
src = fetchFromGitHub {
owner = "sheerun";
repo = "vim-polyglot";
- rev = "aebef2c2e76b88384b1121c237c965e8cf8b3bcb";
- sha256 = "1nb4i76y6rkznabr9nnnhaibyaig81gjvvpjv2afygllxh3cpqyx";
+ rev = "2edc785a5e21cf41960223b09bba8efc9276e777";
+ sha256 = "1fhzvmyw065zsgw4pswq95j2glzmggvqfrx8yla10bm4s2kk9r35";
};
};
@@ -3931,12 +3942,12 @@ let
vim-visual-multi = buildVimPluginFrom2Nix {
pname = "vim-visual-multi";
- version = "2019-06-03";
+ version = "2019-06-11";
src = fetchFromGitHub {
owner = "mg979";
repo = "vim-visual-multi";
- rev = "727095b35430f0c7e4344cecfa3bf3d5aced2323";
- sha256 = "0nchwk8v45rhsni6ccl9vz54f7hzykpq4c1argm2zcs0f1q55kwl";
+ rev = "1533dd2a7e4b26652e0d6790f147e2dcc61a8a85";
+ sha256 = "01qmp7gshh9k2fmb0xfx8kahn4bhdblr4sqqdvncbd4w26l7wipd";
};
};
@@ -4085,12 +4096,12 @@ let
vimtex = buildVimPluginFrom2Nix {
pname = "vimtex";
- version = "2019-06-05";
+ version = "2019-06-07";
src = fetchFromGitHub {
owner = "lervag";
repo = "vimtex";
- rev = "c725bf60cced15ed5b15d0162c9a56f651b3a992";
- sha256 = "18wb76vhqy3a6yp4rzd2v9rrwqafhs1jgh67ir8sy5ga5xfwig81";
+ rev = "7ed563bc2ab1ee75396b243dd62cfc404933f63a";
+ sha256 = "01rpbh2mrsk2983hy7dzfvpaz8x0g9yqmmkr3q1844njip45xnki";
};
};
@@ -4221,8 +4232,8 @@ let
src = fetchFromGitHub {
owner = "HerringtonDarkholme";
repo = "yats.vim";
- rev = "15792ab97b69df7cf24fd160cc7eff1aac145e33";
- sha256 = "1hsr2pcswp3nx2a8x7nnkzd966kjhy3ac0xpnh6arjsigvckw1ij";
+ rev = "6f81b702ccd0259cf3a17647ece639900e7edece";
+ sha256 = "1zyk74i0i8c4cz9hg08ka05f7gz5rr0karpqs2hr9hp8a0gb1mmy";
fetchSubmodules = true;
};
};
@@ -4252,12 +4263,12 @@ let
zeavim-vim = buildVimPluginFrom2Nix {
pname = "zeavim-vim";
- version = "2018-03-22";
+ version = "2019-06-07";
src = fetchFromGitHub {
owner = "KabbAmine";
repo = "zeavim.vim";
- rev = "6db8d84528d66ce6638db03c2864abfa8afa02aa";
- sha256 = "1xw8d3ap6n31rh0a4413784sx4ki7wcz8qlwm2vf9in475vvznxj";
+ rev = "298e52ad683680b4aa19b53d009cf0e6b9197664";
+ sha256 = "1qj6z0vd7y89wfwh84rndl4iz6cvilncih2fc5xgmljaarg914fs";
};
};
@@ -4274,12 +4285,12 @@ let
zig-vim = buildVimPluginFrom2Nix {
pname = "zig-vim";
- version = "2019-05-29";
+ version = "2019-06-10";
src = fetchFromGitHub {
owner = "zig-lang";
repo = "zig.vim";
- rev = "d5b47fecf461ce2541c9b4810a5aa0728816d257";
- sha256 = "0mwy8ybv9klrslzlil22nd71j45n12vnvgczgj955d8rcra7cnyn";
+ rev = "920e808f3ff5de3ab33d99a83edb2485acee79be";
+ sha256 = "1aygwcsxn0ca9qbyzfr23dyn1wy2sa2im7ffdvybgamfqm092r9d";
};
};
diff --git a/pkgs/misc/vim-plugins/overrides.nix b/pkgs/misc/vim-plugins/overrides.nix
index 8e5870253cb..5ee03077d71 100644
--- a/pkgs/misc/vim-plugins/overrides.nix
+++ b/pkgs/misc/vim-plugins/overrides.nix
@@ -111,10 +111,10 @@ self: super: {
coc-nvim = let
- version = "0.0.67";
+ version = "0.0.69";
index_js = fetchzip {
url = "https://github.com/neoclide/coc.nvim/releases/download/v${version}/coc.tar.gz";
- sha256 = "0cqgrfyaq9nck1y6mb63gmwgdrxqzgdgns5gjshpp1xzfq6asrqj";
+ sha256 = "1qnznpb39bbhimzbhsvpsdkg87dv3yxzs1vr3kaikl3kpakik9p8";
};
in super.coc-nvim.overrideAttrs(old: {
# you still need to enable the node js provider in your nvim config
diff --git a/pkgs/misc/vim-plugins/vim-plugin-names b/pkgs/misc/vim-plugins/vim-plugin-names
index 3a2db91afd9..1c52f339d42 100644
--- a/pkgs/misc/vim-plugins/vim-plugin-names
+++ b/pkgs/misc/vim-plugins/vim-plugin-names
@@ -382,6 +382,7 @@ wincent/ferret
xolox/vim-easytags
xolox/vim-misc
xuhdev/vim-latex-live-preview
+Yggdroot/indentLine
zah/nim.vim
zchee/deoplete-clang
zchee/deoplete-go
diff --git a/pkgs/os-specific/darwin/trash/default.nix b/pkgs/os-specific/darwin/trash/default.nix
index e1606383c0d..4044ee4d0dd 100644
--- a/pkgs/os-specific/darwin/trash/default.nix
+++ b/pkgs/os-specific/darwin/trash/default.nix
@@ -1,14 +1,14 @@
{ stdenv, fetchFromGitHub, perl, cf-private, AppKit, Cocoa, ScriptingBridge }:
stdenv.mkDerivation rec {
- version = "0.9.1";
+ version = "0.9.2";
name = "trash-${version}";
src = fetchFromGitHub {
owner = "ali-rantakari";
repo = "trash";
rev = "v${version}";
- sha256 = "0ylkf7jxfy1pj7i1s48w28kzqjdfd57m2pw0jycsgcj5bkzwll41";
+ sha256 = "1d3rc03vgz32faj7qi18iiggxvxlqrj9lsk5jkpa9r1mcs5d89my";
};
buildInputs = [
diff --git a/pkgs/os-specific/darwin/trash/trash.diff b/pkgs/os-specific/darwin/trash/trash.diff
index 546c760b10e..fa6edf98b3d 100644
--- a/pkgs/os-specific/darwin/trash/trash.diff
+++ b/pkgs/os-specific/darwin/trash/trash.diff
@@ -6,8 +6,8 @@ index 5e4306f..9c975fc 100644
@echo
@echo ---- Compiling:
@echo ======================================
-- $(CC) -O2 -Wall -Wextra -Wpartial-availability -force_cpusubtype_ALL -mmacosx-version-min=10.7 -arch i386 -arch x86_64 -framework AppKit -framework ScriptingBridge -o $@ $(SOURCE_FILES)
-+ $(CC) -O2 -Wall -Wextra -Wpartial-availability -force_cpusubtype_ALL -mmacosx-version-min=10.7 -arch x86_64 -framework AppKit -framework ScriptingBridge -o $@ $(SOURCE_FILES)
+- $(CC) -O2 -Wall -Wextra -Wpartial-availability -Wno-unguarded-availability -force_cpusubtype_ALL -mmacosx-version-min=10.7 -arch i386 -arch x86_64 -framework AppKit -framework ScriptingBridge -o $@ $(SOURCE_FILES)
++ $(CC) -O2 -Wall -Wextra -Wpartial-availability -Wno-unguarded-availability -force_cpusubtype_ALL -mmacosx-version-min=10.7 -arch x86_64 -framework AppKit -framework ScriptingBridge -o $@ $(SOURCE_FILES)
analyze:
@echo
diff --git a/pkgs/os-specific/linux/bcc/default.nix b/pkgs/os-specific/linux/bcc/default.nix
index 013c847112b..014ebe80cdc 100644
--- a/pkgs/os-specific/linux/bcc/default.nix
+++ b/pkgs/os-specific/linux/bcc/default.nix
@@ -4,7 +4,7 @@
}:
python.pkgs.buildPythonApplication rec {
- version = "0.9.0";
+ version = "0.10.0";
name = "bcc-${version}";
srcs = [
@@ -12,7 +12,7 @@ python.pkgs.buildPythonApplication rec {
owner = "iovisor";
repo = "bcc";
rev = "v${version}";
- sha256 = "0gi12bsjaw1d77rx11wkdg4szcydwy55z6mkx558nfvdym0qj7yw";
+ sha256 = "0qbqygj7ia494fbira9ajavvnxlpffx1jlzbb1vsf1wa8h3y4xn1";
name = "bcc";
})
@@ -21,8 +21,8 @@ python.pkgs.buildPythonApplication rec {
(fetchFromGitHub {
owner = "libbpf";
repo = "libbpf";
- rev = "5beb8a2ebffd1045e3edb9b522d6ff5bb477c541";
- sha256 = "19n6baqj0mbaphzxkpn09m5a7cbij7fxap8ckk488nxqdz7nbsal";
+ rev = "0e37e0d03ac99987401e4496d3d76d44237b9963";
+ sha256 = "0wjf9dhvqkwiwnygzikamrgmpxgq77h2pxx6mi4pnbw0lxlppivr";
name = "libbpf";
})
];
diff --git a/pkgs/os-specific/linux/cryptsetup/default.nix b/pkgs/os-specific/linux/cryptsetup/default.nix
index fac62597013..ebd09759be6 100644
--- a/pkgs/os-specific/linux/cryptsetup/default.nix
+++ b/pkgs/os-specific/linux/cryptsetup/default.nix
@@ -32,7 +32,6 @@ stdenv.mkDerivation rec {
NIX_LDFLAGS = "-lgcc_s";
configureFlags = [
- "--disable-kernel_crypto"
"--enable-cryptsetup-reencrypt"
"--with-crypto_backend=openssl"
] ++ stdenv.lib.optional enablePython "--enable-python";
diff --git a/pkgs/os-specific/linux/kernel/linux-rpi.nix b/pkgs/os-specific/linux/kernel/linux-rpi.nix
index 69900f044a3..d2e1a35cb2e 100644
--- a/pkgs/os-specific/linux/kernel/linux-rpi.nix
+++ b/pkgs/os-specific/linux/kernel/linux-rpi.nix
@@ -26,7 +26,7 @@ lib.overrideDerivation (buildLinux (args // rec {
} // (args.features or {});
extraMeta.hydraPlatforms = [ "aarch64-linux" ];
-})) (oldAttrs: {
+} // (args.argsOverride or {}))) (oldAttrs: {
postConfigure = ''
# The v7 defconfig has this set to '-v7' which screws up our modDirVersion.
sed -i $buildRoot/.config -e 's/^CONFIG_LOCALVERSION=.*/CONFIG_LOCALVERSION=""/'
diff --git a/pkgs/os-specific/linux/udisks-glue/default.nix b/pkgs/os-specific/linux/udisks-glue/default.nix
index 37af3c92ea5..29e3fd2e2a8 100644
--- a/pkgs/os-specific/linux/udisks-glue/default.nix
+++ b/pkgs/os-specific/linux/udisks-glue/default.nix
@@ -19,5 +19,7 @@ stdenv.mkDerivation {
platforms = stdenv.lib.platforms.linux;
maintainers = with stdenv.lib.maintainers; [pSub];
license = stdenv.lib.licenses.bsd2;
+ broken = true;
+ hydraPlatforms = [];
};
}
diff --git a/pkgs/os-specific/linux/udisks/1-default.nix b/pkgs/os-specific/linux/udisks/1-default.nix
index 03c48867b34..60bf2b9bc24 100644
--- a/pkgs/os-specific/linux/udisks/1-default.nix
+++ b/pkgs/os-specific/linux/udisks/1-default.nix
@@ -40,5 +40,7 @@ stdenv.mkDerivation rec {
description = "A daemon and command-line utility for querying and manipulating storage devices";
platforms = platforms.linux;
license = with licenses; [ gpl2 lgpl2Plus ];
+ broken = true;
+ hydraPlatforms = [];
};
}
diff --git a/pkgs/servers/home-assistant/component-packages.nix b/pkgs/servers/home-assistant/component-packages.nix
index 223e2ff8f5e..09c1ec3592d 100644
--- a/pkgs/servers/home-assistant/component-packages.nix
+++ b/pkgs/servers/home-assistant/component-packages.nix
@@ -302,7 +302,7 @@
"hook" = ps: with ps; [ ];
"horizon" = ps: with ps; [ ];
"hp_ilo" = ps: with ps; [ ];
- "html5" = ps: with ps; [ aiohttp-cors ];
+ "html5" = ps: with ps; [ aiohttp-cors pywebpush ];
"http" = ps: with ps; [ aiohttp-cors ];
"htu21d" = ps: with ps; [ ];
"huawei_lte" = ps: with ps; [ ];
diff --git a/pkgs/servers/jellyfin/default.nix b/pkgs/servers/jellyfin/default.nix
index e481c7aaa03..45f58cc7ab9 100644
--- a/pkgs/servers/jellyfin/default.nix
+++ b/pkgs/servers/jellyfin/default.nix
@@ -18,12 +18,12 @@ let
in stdenv.mkDerivation rec {
pname = "jellyfin";
- version = "10.3.4";
+ version = "10.3.5";
# Impossible to build anything offline with dotnet
src = fetchurl {
url = "https://github.com/jellyfin/jellyfin/releases/download/v${version}/jellyfin_${version}_portable.tar.gz";
- sha256 = "0wc69dnc3bvzn26nw9ql814y2v7rypjlrw9iqkdganba9pkxa74j";
+ sha256 = "12asyrj2ax699gaf8402xfx049n6x0v8j5sba229vw1s66c2m8j2";
};
buildInputs = [
diff --git a/pkgs/servers/matrix-synapse/default.nix b/pkgs/servers/matrix-synapse/default.nix
index acc3061e3f0..0efbefd6cd2 100644
--- a/pkgs/servers/matrix-synapse/default.nix
+++ b/pkgs/servers/matrix-synapse/default.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv, python3
+{ lib, stdenv, python3, openssl
, enableSystemd ? stdenv.isLinux
}:
@@ -23,11 +23,11 @@ let
in buildPythonApplication rec {
pname = "matrix-synapse";
- version = "0.99.5.2";
+ version = "1.0.0";
src = fetchPypi {
inherit pname version;
- sha256 = "0c1kf9zq7cg9scwnvph4vwk449gypbprmdjzrzrg0wp1rcc8h3gn";
+ sha256 = "1n8hv0zd818z4fx39yz6svb07zsbrh8fd6wfmgvhdxhp6p1vl0wq";
};
patches = [
@@ -72,7 +72,7 @@ in buildPythonApplication rec {
unpaddedbase64
] ++ lib.optional enableSystemd systemd;
- checkInputs = [ mock parameterized ];
+ checkInputs = [ mock parameterized openssl ];
checkPhase = ''
PYTHONPATH=".:$PYTHONPATH" ${python3.interpreter} -m twisted.trial tests
diff --git a/pkgs/servers/miniflux/default.nix b/pkgs/servers/miniflux/default.nix
index b7770019f85..1ebd852380c 100644
--- a/pkgs/servers/miniflux/default.nix
+++ b/pkgs/servers/miniflux/default.nix
@@ -2,16 +2,16 @@
buildGoModule rec {
pname = "miniflux";
- version = "2.0.15";
+ version = "2.0.16";
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = version;
- sha256 = "1k53dkmd41x5h81arb2fs5s9yb6sy6113nbbzls6dc179slfg9zj";
+ sha256 = "09fwhbcpp84l5lw4zizm46ssri6irzvjx2w7507a1xhp6iq73p2d";
};
- modSha256 = "0n5j4rns2w1klgrf5jz0bng9cih9aifjx55hhkf4dfj1x4wsxjdj";
+ modSha256 = "0060px0av7l9x4xgmkci9d8yl4lgxzqrikqagnz0f17a944p9xdr";
doCheck = true;
diff --git a/pkgs/servers/plex/raw.nix b/pkgs/servers/plex/raw.nix
index 082506cddfd..eda4b123858 100644
--- a/pkgs/servers/plex/raw.nix
+++ b/pkgs/servers/plex/raw.nix
@@ -8,14 +8,14 @@
# server, and the FHS userenv and corresponding NixOS module should
# automatically pick up the changes.
stdenv.mkDerivation rec {
- version = "1.15.6.1079-78232c603";
+ version = "1.15.8.1198-eadbcbb45";
pname = "plexmediaserver";
name = "${pname}-${version}";
# Fetch the source
src = fetchurl {
url = "https://downloads.plex.tv/plex-media-server-new/${version}/redhat/plexmediaserver-${version}.x86_64.rpm";
- sha256 = "1fvj58b91227wig51hi98rg9r48rdnd8s32xdajjgspxy923mp5a";
+ sha256 = "1za33fcga5ysxcj8szlqzriihzcvlx9jxlnsbygh819arbbbpli3";
};
outputs = [ "out" "basedb" ];
diff --git a/pkgs/servers/samba/4.x.nix b/pkgs/servers/samba/4.x.nix
index 0b8a63e63f6..7dcc6cbe686 100644
--- a/pkgs/servers/samba/4.x.nix
+++ b/pkgs/servers/samba/4.x.nix
@@ -1,5 +1,5 @@
-{ lib, stdenv, fetchurl, python, pkgconfig, perl, libxslt, docbook_xsl
-, fetchpatch
+{ lib, stdenv, fetchurl, python, pkgconfig, perl, libxslt, docbook_xsl, rpcgen
+, fetchpatch, fixDarwinDylibNames
, docbook_xml_dtd_42, readline
, popt, iniparser, libbsd, libarchive, libiconv, gettext
, krb5Full, zlib, openldap, cups, pam, avahi, acl, libaio, fam, libceph, glusterfs
@@ -36,6 +36,8 @@ stdenv.mkDerivation rec {
./4.x-fix-makeflags-parsing.patch
];
+ nativeBuildInputs = optionals stdenv.isDarwin [ rpcgen fixDarwinDylibNames ];
+
buildInputs =
[ python pkgconfig perl libxslt docbook_xsl docbook_xml_dtd_42 /*
docbook_xml_dtd_45 */ readline popt iniparser jansson
@@ -60,6 +62,9 @@ stdenv.mkDerivation rec {
sed -i "s,\(XML_CATALOG_FILES=\"\),\1$XML_CATALOG_FILES ,g" buildtools/wafsamba/wafsamba.py
patchShebangs ./buildtools/bin
+ '' + optionalString stdenv.isDarwin ''
+ substituteInPlace libcli/dns/wscript_build \
+ --replace "bld.SAMBA_BINARY('resolvconftest'" "True or bld.SAMBA_BINARY('resolvconftest'"
'';
configureFlags =
@@ -70,6 +75,7 @@ stdenv.mkDerivation rec {
"--enable-fhs"
"--sysconfdir=/etc"
"--localstatedir=/var"
+ "--disable-rpath"
]
++ [(if enableDomainController
then "--with-experimental-mit-ad-dc"
diff --git a/pkgs/servers/sql/mysql/5.5.x.nix b/pkgs/servers/sql/mysql/5.5.x.nix
index d5fbe0bf249..e089640a5b6 100644
--- a/pkgs/servers/sql/mysql/5.5.x.nix
+++ b/pkgs/servers/sql/mysql/5.5.x.nix
@@ -1,5 +1,5 @@
-{ stdenv, fetchurl, cmake, bison, ncurses, openssl, readline, zlib, perl
-, cctools, CoreServices }:
+{ stdenv, fetchpatch, fetchurl, cmake, bison, ncurses, openssl
+, readline, zlib, perl, cctools, CoreServices }:
# Note: zlib is not required; MySQL can use an internal zlib.
@@ -13,10 +13,17 @@ self = stdenv.mkDerivation rec {
sha256 = "1mwrzwk9ap09s430fpdkyhvx5j2syd3xj2hyfzvanjphq4xqbrxi";
};
- patches = if stdenv.isCygwin then [
- ./5.5.17-cygwin.patch
- ./5.5.17-export-symbols.patch
- ] else null;
+ patches =
+ # Minor type error that is a build failure as of clang 6.
+ stdenv.lib.optional stdenv.cc.isClang (fetchpatch {
+ url = "https://svn.freebsd.org/ports/head/databases/mysql55-server/files/patch-sql_sql_partition.cc?rev=469888";
+ extraPrefix = "";
+ sha256 = "09sya27z3ir3xy5mrv3x68hm274594y381n0i6r5s627x71jyszf";
+ }) ++
+ stdenv.lib.optionals stdenv.isCygwin [
+ ./5.5.17-cygwin.patch
+ ./5.5.17-export-symbols.patch
+ ];
preConfigure = stdenv.lib.optional stdenv.isDarwin ''
ln -s /bin/ps $TMPDIR/ps
@@ -51,7 +58,10 @@ self = stdenv.mkDerivation rec {
"-DINSTALL_SQLBENCHDIR="
];
- NIX_CFLAGS_COMPILE = [ "-fpermissive" ]; # since gcc-7
+ NIX_CFLAGS_COMPILE =
+ stdenv.lib.optionals stdenv.cc.isGNU [ "-fpermissive" ] # since gcc-7
+ ++ stdenv.lib.optionals stdenv.cc.isClang [ "-Wno-c++11-narrowing" ]; # since clang 6
+
NIX_LDFLAGS = stdenv.lib.optionalString stdenv.isLinux "-lgcc_s";
prePatch = ''
@@ -78,6 +88,6 @@ self = stdenv.mkDerivation rec {
artistic1 bsd0 bsd2 bsd3 bsdOriginal
gpl2 lgpl2 lgpl21 mit publicDomain licenses.zlib
];
- broken = stdenv.isAarch64 && stdenv.isDarwin;
+ broken = stdenv.isAarch64;
};
}; in self
diff --git a/pkgs/servers/sql/postgresql/ext/pg_safeupdate.nix b/pkgs/servers/sql/postgresql/ext/pg_safeupdate.nix
new file mode 100644
index 00000000000..b835141e2ca
--- /dev/null
+++ b/pkgs/servers/sql/postgresql/ext/pg_safeupdate.nix
@@ -0,0 +1,27 @@
+{ stdenv, fetchFromGitHub, postgresql }:
+
+stdenv.mkDerivation rec {
+ pname = "pg-safeupdate";
+ version = "1.2";
+
+ buildInputs = [ postgresql ];
+
+ src = fetchFromGitHub {
+ owner = "eradman";
+ repo = pname;
+ rev = version;
+ sha256 = "010m57jcv5v8pyfm1cqs3a306y750lvnvla9m5d98v5vdx3349jg";
+ };
+
+ installPhase = ''
+ mkdir -p $out/bin # for buildEnv, see https://github.com/NixOS/nixpkgs/issues/22653
+ install -D safeupdate.so -t $out/lib
+ '';
+
+ meta = with stdenv.lib; {
+ description = "A simple extension to PostgreSQL that requires criteria for UPDATE and DELETE";
+ homepage = "https://github.com/eradman/pg-safeupdate";
+ platforms = postgresql.meta.platforms;
+ license = licenses.postgresql;
+ };
+}
diff --git a/pkgs/servers/sql/postgresql/ext/temporal_tables.nix b/pkgs/servers/sql/postgresql/ext/temporal_tables.nix
new file mode 100644
index 00000000000..b4f85c4c53f
--- /dev/null
+++ b/pkgs/servers/sql/postgresql/ext/temporal_tables.nix
@@ -0,0 +1,31 @@
+{ stdenv, fetchFromGitHub, postgresql }:
+
+stdenv.mkDerivation rec {
+ pname = "temporal_tables";
+ version = "1.2.0";
+
+ buildInputs = [ postgresql ];
+
+ src = fetchFromGitHub {
+ owner = "mlt";
+ repo = pname;
+ rev = "6cc86eb03d618d6b9fc09ae523f1a1e5228d22b5";
+ sha256 = "0ykv37rm511n5955mbh9dcp7pgg88z1nwgszav7z6pziaj3nba8x";
+ };
+
+ installPhase = ''
+ mkdir -p $out/{bin,lib,share/extension}
+
+ cp *.so $out/lib
+ cp *.sql $out/share/extension
+ cp *.control $out/share/extension
+ '';
+
+ meta = with stdenv.lib; {
+ description = "Temporal Tables PostgreSQL Extension ";
+ homepage = https://github.com/mlt/temporal_tables;
+ maintainers = with maintainers; [ ggpeti ];
+ platforms = postgresql.meta.platforms;
+ license = licenses.bsd2;
+ };
+}
diff --git a/pkgs/servers/sql/postgresql/ext/timescaledb.nix b/pkgs/servers/sql/postgresql/ext/timescaledb.nix
index 055195c1b04..17270e34f75 100644
--- a/pkgs/servers/sql/postgresql/ext/timescaledb.nix
+++ b/pkgs/servers/sql/postgresql/ext/timescaledb.nix
@@ -8,7 +8,7 @@
stdenv.mkDerivation rec {
name = "timescaledb-${version}";
- version = "1.3.0";
+ version = "1.3.1";
nativeBuildInputs = [ cmake ];
buildInputs = [ postgresql openssl ];
@@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
owner = "timescale";
repo = "timescaledb";
rev = "refs/tags/${version}";
- sha256 = "1wg95ryr5z55aghlqaz0jhz6rliinvfin2i4xpqwg7ir6nz773qm";
+ sha256 = "1q3c4qsy4vb00a4p15km4w5d5xcppigf7rp4mqr3wln7i4d4lvnx";
};
# Fix the install phase which tries to install into the pgsql extension dir,
diff --git a/pkgs/servers/sql/postgresql/packages.nix b/pkgs/servers/sql/postgresql/packages.nix
index f3d2ac68884..d54b05f8744 100644
--- a/pkgs/servers/sql/postgresql/packages.nix
+++ b/pkgs/servers/sql/postgresql/packages.nix
@@ -35,6 +35,8 @@ self: super: {
pipelinedb = super.callPackage ./ext/pipelinedb.nix { };
+ temporal_tables = super.callPackage ./ext/temporal_tables.nix { };
+
timescaledb = super.callPackage ./ext/timescaledb.nix { };
tsearch_extras = super.callPackage ./ext/tsearch_extras.nix { };
@@ -44,4 +46,6 @@ self: super: {
pgrouting = super.callPackage ./ext/pgrouting.nix { };
pg_partman = super.callPackage ./ext/pg_partman.nix { };
+
+ pg_safeupdate = super.callPackage ./ext/pg_safeupdate.nix { };
}
diff --git a/pkgs/tools/filesystems/android-file-transfer/default.nix b/pkgs/tools/filesystems/android-file-transfer/default.nix
index 015408351fd..3a29d272b15 100644
--- a/pkgs/tools/filesystems/android-file-transfer/default.nix
+++ b/pkgs/tools/filesystems/android-file-transfer/default.nix
@@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
pname = "android-file-transfer";
- version = "3.8";
+ version = "3.9";
src = fetchFromGitHub {
owner = "whoozle";
repo = "android-file-transfer-linux";
rev = "v${version}";
- sha256 = "0sym33a0ccdka2cpzv003n2xniid70z0gkjxx93gd2bajkgs9ggc";
+ sha256 = "1pwayyd5xrmngfrmv2vwr8ns2wi199xkxf7dks8fl9zmlpizg3c3";
};
nativeBuildInputs = [ cmake readline pkgconfig ];
diff --git a/pkgs/tools/filesystems/bindfs/default.nix b/pkgs/tools/filesystems/bindfs/default.nix
index ebf5291f43a..dd44f16c3fe 100644
--- a/pkgs/tools/filesystems/bindfs/default.nix
+++ b/pkgs/tools/filesystems/bindfs/default.nix
@@ -1,12 +1,12 @@
{ stdenv, fetchurl, fuse, pkgconfig }:
stdenv.mkDerivation rec {
- version = "1.13.11";
+ version = "1.14.0";
name = "bindfs-${version}";
src = fetchurl {
url = "https://bindfs.org/downloads/${name}.tar.gz";
- sha256 = "0ayadwlc6j1ba0n0dkry4iyp49nxkkj5l4dazzqybl5d5c4n605b";
+ sha256 = "1f1znixdaz4wnr9j6rkrplhbnkz7pdw9927yfikbjvxz8cl6qsdz";
};
dontStrip = true;
diff --git a/pkgs/tools/graphics/wallutils/default.nix b/pkgs/tools/graphics/wallutils/default.nix
index 2d14c080972..56fd5350244 100644
--- a/pkgs/tools/graphics/wallutils/default.nix
+++ b/pkgs/tools/graphics/wallutils/default.nix
@@ -4,16 +4,16 @@
buildGoModule rec {
name = "wallutils-${version}";
- version = "5.8.0";
+ version = "5.8.1";
src = fetchFromGitHub {
owner = "xyproto";
repo = "wallutils";
rev = version;
- sha256 = "1s9k2fwckpm1zpdxywckwbql38h0sp6y9ji88rxss7yjc2g12zaf";
+ sha256 = "095pgvk4yp2l6xgl63qp61rr2dij51awndwrs5ha9vpdd1jqgvfi";
};
- modSha256 = "0rfmqmm0jld7zrv192dqv7khwb2xm9i77sa1wgr7q6afdhbkrm21";
+ modSha256 = "1kbggry1qrf0nkvysnaky2nl73l5f0bnc4wx0hfr6ifyagfjzy77";
patches = [ ./lscollection-Add-NixOS-paths-to-DefaultWallpaperDirectories.patch ];
diff --git a/pkgs/tools/inputmethods/anthy/default.nix b/pkgs/tools/inputmethods/anthy/default.nix
index c11fae3888e..9214edfefb0 100644
--- a/pkgs/tools/inputmethods/anthy/default.nix
+++ b/pkgs/tools/inputmethods/anthy/default.nix
@@ -1,18 +1,18 @@
{ stdenv, fetchurl }:
-stdenv.mkDerivation {
+stdenv.mkDerivation rec {
name = "anthy-9100h";
meta = with stdenv.lib; {
description = "Hiragana text to Kana Kanji mixed text Japanese input method";
- homepage = http://sourceforge.jp/projects/anthy/;
+ homepage = "https://anthy.osdn.jp/";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ ericsagnes ];
platforms = platforms.linux;
};
src = fetchurl {
- url = "http://dl.sourceforge.jp/anthy/37536/anthy-9100h.tar.gz";
+ url = "mirror://osdn/anthy/37536/${name}.tar.gz";
sha256 = "0ism4zibcsa5nl77wwi12vdsfjys3waxcphn1p5s7d0qy1sz0mnj";
};
}
diff --git a/pkgs/tools/misc/ipad_charge/default.nix b/pkgs/tools/misc/ipad_charge/default.nix
index 9b09fb35cf5..caefcb835a3 100644
--- a/pkgs/tools/misc/ipad_charge/default.nix
+++ b/pkgs/tools/misc/ipad_charge/default.nix
@@ -16,14 +16,16 @@ stdenv.mkDerivation rec {
postPatch = ''
substituteInPlace Makefile \
--replace " -o root -g root" "" \
+ --replace "/usr" "$out" \
+ --replace "/etc/udev" "$out/lib/udev"
+ substituteInPlace *.rules \
--replace "/usr" "$out"
- sed "/rules\.d/d" -i Makefile
'';
enableParallelBuilding = true;
preInstall = ''
- mkdir -p $out/bin
+ mkdir -p $out/{bin,lib/udev/rules.d}
'';
meta = with stdenv.lib; {
diff --git a/pkgs/tools/misc/pgcenter/default.nix b/pkgs/tools/misc/pgcenter/default.nix
index c3c1d4aa48b..5e0d0aa8089 100644
--- a/pkgs/tools/misc/pgcenter/default.nix
+++ b/pkgs/tools/misc/pgcenter/default.nix
@@ -1,19 +1,17 @@
-{ stdenv, buildGoPackage, fetchFromGitHub }:
+{ stdenv, buildGoModule, fetchFromGitHub }:
-buildGoPackage rec {
+buildGoModule rec {
pname = "pgcenter";
- version = "0.6.1";
-
- goPackagePath = "github.com/lesovsky/pgcenter";
+ version = "0.6.2";
src = fetchFromGitHub {
owner = "lesovsky";
repo = "pgcenter";
rev = "v${version}";
- sha256 = "12wyi6vc3i0dq76mrvv5r632ks90xppcra5g7rjf54vg4291kycy";
+ sha256 = "0mh0s83gkjhrm9ip5r1bb6y5n0nl1rlh99570yv7p3yvyhmh2292";
};
- goDeps = ./deps.nix;
+ modSha256 = "0kassq52v07zmffs6l066g0d3kfv6wmrh9g5cgk79bmyq13clqjj";
meta = with stdenv.lib; {
homepage = https://pgcenter.org/;
diff --git a/pkgs/tools/misc/pgcenter/deps.nix b/pkgs/tools/misc/pgcenter/deps.nix
deleted file mode 100644
index 1b12538155c..00000000000
--- a/pkgs/tools/misc/pgcenter/deps.nix
+++ /dev/null
@@ -1,112 +0,0 @@
-[
-
- {
- goPackagePath = "github.com/inconshreveable/mousetrap";
- fetch = {
- type = "git";
- url = "https://github.com/inconshreveable/mousetrap";
- rev = "v1.0.0";
- sha256 = "1mn0kg48xkd74brf48qf5hzp0bc6g8cf5a77w895rl3qnlpfw152";
- };
- }
-
- {
- goPackagePath = "github.com/jehiah/go-strftime";
- fetch = {
- type = "git";
- url = "https://github.com/jehiah/go-strftime";
- rev = "1d33003b3869";
- sha256 = "056zagn4zhmrcqg8y5k5wql01x4ijbxn4pv75bh1bn45by6qx1gv";
- };
- }
-
- {
- goPackagePath = "github.com/jroimartin/gocui";
- fetch = {
- type = "git";
- url = "https://github.com/jroimartin/gocui";
- rev = "v0.4.0";
- sha256 = "1b1cbjg925l1c5v3ls8amni9716190yzf847cqs9wjnj82z8qa47";
- };
- }
-
- {
- goPackagePath = "github.com/lib/pq";
- fetch = {
- type = "git";
- url = "https://github.com/lib/pq";
- rev = "v1.0.0";
- sha256 = "1zqnnyczaf00xi6xh53vq758v5bdlf0iz7kf22l02cal4i6px47i";
- };
- }
-
- {
- goPackagePath = "github.com/mattn/go-runewidth";
- fetch = {
- type = "git";
- url = "https://github.com/mattn/go-runewidth";
- rev = "v0.0.3";
- sha256 = "0lc39b6xrxv7h3v3y1kgz49cgi5qxwlygs715aam6ba35m48yi7g";
- };
- }
-
- {
- goPackagePath = "github.com/nsf/termbox-go";
- fetch = {
- type = "git";
- url = "https://github.com/nsf/termbox-go";
- rev = "b66b20ab708e";
- sha256 = "0wrgnwfdxrspni5q15vzr5q1bxnzb7m6q4xjhllcyddgn2zqprsa";
- };
- }
-
- {
- goPackagePath = "github.com/pkg/errors";
- fetch = {
- type = "git";
- url = "https://github.com/pkg/errors";
- rev = "v0.8.0";
- sha256 = "001i6n71ghp2l6kdl3qq1v2vmghcz3kicv9a5wgcihrzigm75pp5";
- };
- }
-
- {
- goPackagePath = "github.com/spf13/cobra";
- fetch = {
- type = "git";
- url = "https://github.com/spf13/cobra";
- rev = "v0.0.3";
- sha256 = "1q1nsx05svyv9fv3fy6xv6gs9ffimkyzsfm49flvl3wnvf1ncrkd";
- };
- }
-
- {
- goPackagePath = "github.com/spf13/pflag";
- fetch = {
- type = "git";
- url = "https://github.com/spf13/pflag";
- rev = "v1.0.2";
- sha256 = "005598piihl3l83a71ahj10cpq9pbhjck4xishx1b4dzc02r9xr2";
- };
- }
-
- {
- goPackagePath = "golang.org/x/crypto";
- fetch = {
- type = "git";
- url = "https://go.googlesource.com/crypto";
- rev = "0e37d006457b";
- sha256 = "1fj8rvrhgv5j8pmckzphvm3sqkzhcqp3idkxvgv13qrjdfycsa5r";
- };
- }
-
- {
- goPackagePath = "golang.org/x/sys";
- fetch = {
- type = "git";
- url = "https://go.googlesource.com/sys";
- rev = "ee1b12c67af4";
- sha256 = "0cgp0xzbhg3fr77n2qrfmmsvhc287srnwi4mghwcjdxp6rx0s988";
- };
- }
-]
diff --git a/pkgs/tools/misc/shelldap/default.nix b/pkgs/tools/misc/shelldap/default.nix
new file mode 100644
index 00000000000..9686955e1dd
--- /dev/null
+++ b/pkgs/tools/misc/shelldap/default.nix
@@ -0,0 +1,26 @@
+{ stdenv, fetchurl, perlPackages }:
+perlPackages.buildPerlPackage rec {
+ name = "shelldap-${version}";
+ version = "1.4.0";
+ src = fetchurl {
+ url = "https://bitbucket.org/mahlon/shelldap/downloads/shelldap-${version}.tar.gz";
+ sha256 = "07gkvvxcgw3pgkfy8p9mmidakciaq1rsq5zhmdqd8zcwgqkrr24i";
+ };
+ buildInputs = with perlPackages; [ perl YAMLSyck NetLDAP AlgorithmDiff IOSocketSSL AuthenSASL TermReadLineGnu TermShell ];
+ prePatch = ''
+ touch Makefile.PL
+ '';
+ installPhase = ''
+ runHook preInstall
+ install -Dm555 -t $out/bin shelldap
+ runHook preInstall
+ '';
+ outputs = [ "out" ];
+ meta = with stdenv.lib; {
+ homepage = https://bitbucket.org/mahlon/shelldap/;
+ description = "A handy shell-like interface for browsing LDAP servers and editing their content";
+ license = with licenses; [ bsd3 ];
+ maintainers = with maintainers; [ tobiasBora ];
+ platforms = platforms.linux;
+ };
+}
diff --git a/pkgs/tools/misc/z-lua/default.nix b/pkgs/tools/misc/z-lua/default.nix
index 495ea3925fd..9b0f5e477a1 100644
--- a/pkgs/tools/misc/z-lua/default.nix
+++ b/pkgs/tools/misc/z-lua/default.nix
@@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
pname = "z-lua";
- version = "1.7.0";
+ version = "1.7.1";
src = fetchFromGitHub {
owner = "skywind3000";
repo = "z.lua";
rev = "v${version}";
- sha256 = "1f8iafv81xsypa78prazq6k2xz8az09kjhl97vn330drxkcpj7i7";
+ sha256 = "01n4x84rpmyjyfga90s2s63gdk17z944hz35fk95qnshc5fapfq8";
};
dontBuild = true;
diff --git a/pkgs/tools/security/sops/default.nix b/pkgs/tools/security/sops/default.nix
index 4940ce8372d..fcc45542214 100644
--- a/pkgs/tools/security/sops/default.nix
+++ b/pkgs/tools/security/sops/default.nix
@@ -2,7 +2,7 @@
buildGoPackage rec {
pname = "sops";
- version = "3.3.0";
+ version = "3.3.1";
goPackagePath = "go.mozilla.org/sops";
@@ -10,12 +10,13 @@ buildGoPackage rec {
rev = version;
owner = "mozilla";
repo = pname;
- sha256 = "0h02iy1dfn4874gyj3k07gbw8byb7rngvsi9kjglnad2pkf0pq2d";
+ sha256 = "0jbrz3yz6cj08h8cx6y98m8r0lpclh9367cw5apy6w3v71i3svfi";
};
meta = with stdenv.lib; {
inherit (src.meta) homepage;
description = "Mozilla sops (Secrets OPerationS) is an editor of encrypted files";
+ maintainers = [ maintainers.marsam ];
license = licenses.mpl20;
};
}
diff --git a/pkgs/tools/system/plan9port/default.nix b/pkgs/tools/system/plan9port/default.nix
index c14fbc49e0d..b3909a79d94 100644
--- a/pkgs/tools/system/plan9port/default.nix
+++ b/pkgs/tools/system/plan9port/default.nix
@@ -34,7 +34,7 @@ stdenv.mkDerivation rec {
--replace "case Kcmd+'v':" "case 0x16: case Kcmd+'v':"
'';
- buildInputs = stdenv.lib.optionals (!stdenv.isDarwin) [
+ buildInputs = [
which perl libX11 fontconfig xorgproto libXt libXext
freetype # fontsrv wants ft2build.h provides system fonts for acme and sam.
];
@@ -60,6 +60,27 @@ stdenv.mkDerivation rec {
NIX_LDFLAGS="-lgcc_s";
enableParallelBuilding = true;
+ doInstallCheck = true;
+ installCheckPhase = ''
+ $out/bin/9 rc -c 'echo rc is working.'
+
+ # 9l can find and use its libs
+ cd $TMP
+ cat >test.c <
+ #include
+ #include
+ void
+ threadmain(int argc, char **argv)
+ {
+ threadexitsall(nil);
+ }
+ EOF
+ $out/bin/9 9c -o test.o test.c
+ $out/bin/9 9l -o test test.o
+ ./test
+ '';
+
meta = with stdenv.lib; {
homepage = https://9fans.github.io/plan9port/;
description = "Plan 9 from User Space";
diff --git a/pkgs/tools/system/throttled/default.nix b/pkgs/tools/system/throttled/default.nix
new file mode 100644
index 00000000000..4f52b5e0945
--- /dev/null
+++ b/pkgs/tools/system/throttled/default.nix
@@ -0,0 +1,43 @@
+{ stdenv, fetchFromGitHub, python3Packages }:
+
+stdenv.mkDerivation rec {
+ pname = "throttled";
+ version = "0.6";
+
+ src = fetchFromGitHub {
+ owner = "erpalma";
+ repo = pname;
+ rev = "v${version}";
+ sha256 = "1icb2288pj25vbdnd16zvisw9c01hp8vkk25ilkc74gy76xhpcs4";
+ };
+
+ nativeBuildInputs = [ python3Packages.wrapPython ];
+
+ pythonPath = with python3Packages; [
+ configparser
+ dbus-python
+ pygobject3
+ ];
+
+ # The upstream unit both assumes the install location, and tries to run in a virtualenv
+ postPatch = ''sed -e 's|ExecStart=.*|ExecStart=${placeholder "out"}/bin/lenovo_fix.py|' -i systemd/lenovo_fix.service'';
+
+ installPhase = ''
+ runHook preInstall
+ install -D -m755 -t $out/bin lenovo_fix.py
+ install -D -t $out/bin lenovo_fix.py mmio.py
+ install -D -m644 -t $out/etc etc/*
+ install -D -m644 -t $out/lib/systemd/system systemd/*
+ runHook postInstall
+ '';
+
+ postFixup = ''wrapPythonPrograms'';
+
+ meta = with stdenv.lib; {
+ description = "Fix for Intel CPU throttling issues";
+ homepage = https://github.com/erpalma/throttled;
+ license = licenses.mit;
+ platforms = [ "x86_64-linux" ];
+ maintainers = with maintainers; [ michaelpj ];
+ };
+}
diff --git a/pkgs/tools/text/nkf/default.nix b/pkgs/tools/text/nkf/default.nix
index ae236cc2226..8a314d44843 100644
--- a/pkgs/tools/text/nkf/default.nix
+++ b/pkgs/tools/text/nkf/default.nix
@@ -1,19 +1,19 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
- name = "nkf-${version}";
- version = "2.1.4";
+ pname = "nkf";
+ version = "2.1.5";
src = fetchurl {
- url = "mirror://sourceforgejp/nkf/64158/${name}.tar.gz";
- sha256 = "b4175070825deb3e98577186502a8408c05921b0c8ff52e772219f9d2ece89cb";
+ url = "mirror://osdn/nkf/70406/${pname}-${version}.tar.gz";
+ sha256 = "0i5dbcb9aipwr8ym4mhvgf1in3frl6y8h8x96cprz9s7b11xz9yi";
};
- makeFlags = "prefix=\${out}";
+ makeFlags = [ "prefix=$(out)" ];
meta = {
description = "Tool for converting encoding of Japanese text";
- homepage = http://sourceforge.jp/projects/nkf/;
+ homepage = "https://nkf.osdn.jp/";
license = stdenv.lib.licenses.zlib;
platforms = stdenv.lib.platforms.unix;
maintainers = [ stdenv.lib.maintainers.auntie ];
diff --git a/pkgs/tools/typesetting/asciidoctor/Gemfile b/pkgs/tools/typesetting/asciidoctor/Gemfile
index 54509c601e3..4edebabc4cd 100644
--- a/pkgs/tools/typesetting/asciidoctor/Gemfile
+++ b/pkgs/tools/typesetting/asciidoctor/Gemfile
@@ -1,9 +1,7 @@
source 'https://rubygems.org'
gem 'asciidoctor'
gem 'asciidoctor-diagram'
-gem 'asciidoctor-bespoke'
gem 'asciidoctor-pdf'
-gem 'asciidoctor-latex'
gem 'asciidoctor-mathematical'
gem 'coderay'
gem 'pygments.rb'
diff --git a/pkgs/tools/typesetting/asciidoctor/Gemfile.lock b/pkgs/tools/typesetting/asciidoctor/Gemfile.lock
index 59e8fd06ef2..7416bd0268e 100644
--- a/pkgs/tools/typesetting/asciidoctor/Gemfile.lock
+++ b/pkgs/tools/typesetting/asciidoctor/Gemfile.lock
@@ -2,51 +2,39 @@ GEM
remote: https://rubygems.org/
specs:
Ascii85 (1.0.3)
- addressable (2.5.2)
+ addressable (2.6.0)
public_suffix (>= 2.0.2, < 4.0)
afm (0.2.2)
- asciidoctor (1.5.7.1)
- asciidoctor-bespoke (1.0.0.alpha.1)
- asciidoctor (>= 1.5.0)
- slim (~> 3.0.6)
- thread_safe (~> 0.3.5)
- asciidoctor-diagram (1.5.9)
- asciidoctor (~> 1.5.0)
- asciidoctor-latex (1.5.0.17.dev)
- asciidoctor (~> 1.5, >= 1.5.2)
- htmlentities (~> 4.3)
- opal (~> 0.6.3)
- asciidoctor-mathematical (0.2.2)
- asciidoctor (~> 1.5, >= 1.5.0)
+ asciidoctor (2.0.10)
+ asciidoctor-diagram (1.5.18)
+ asciidoctor (>= 1.5.0, < 3.x)
+ asciidoctor-mathematical (0.3.0)
+ asciidoctor (~> 2.0, >= 2.0.0)
mathematical (~> 1.5, >= 1.5.8)
ruby-enum (~> 0.4)
- asciidoctor-pdf (1.5.0.alpha.16)
- asciidoctor (>= 1.5.0)
- prawn (>= 1.3.0, < 2.3.0)
- prawn-icon (= 1.3.0)
- prawn-svg (>= 0.21.0, < 0.28.0)
- prawn-table (= 0.2.2)
- prawn-templates (>= 0.0.3, <= 0.1.1)
- safe_yaml (~> 1.0.4)
- thread_safe (~> 0.3.6)
- treetop (= 1.5.3)
+ asciidoctor-pdf (1.5.0.alpha.18)
+ asciidoctor (>= 1.5.3, < 3.0.0)
+ concurrent-ruby (~> 1.1.0)
+ prawn (~> 2.2.0)
+ prawn-icon (~> 2.3.0)
+ prawn-svg (~> 0.29.0)
+ prawn-table (~> 0.2.0)
+ prawn-templates (~> 0.1.0)
+ safe_yaml (~> 1.0.0)
+ thread_safe (~> 0.3.0)
+ treetop (~> 1.5.0)
coderay (1.1.2)
- concurrent-ruby (1.0.5)
- css_parser (1.6.0)
+ concurrent-ruby (1.1.5)
+ css_parser (1.7.0)
addressable
hashery (2.1.2)
- htmlentities (4.3.4)
- i18n (1.1.0)
+ i18n (1.6.0)
concurrent-ruby (~> 1.0)
- json (2.1.0)
- mathematical (1.6.11)
+ mathematical (1.6.12)
ruby-enum (~> 0.4)
multi_json (1.13.1)
- opal (0.6.3)
- source_map
- sprockets
pdf-core (0.7.0)
- pdf-reader (2.1.0)
+ pdf-reader (2.2.0)
Ascii85 (~> 1.0.0)
afm (~> 0.2.1)
hashery (~> 2.0)
@@ -56,35 +44,24 @@ GEM
prawn (2.2.2)
pdf-core (~> 0.7.0)
ttfunk (~> 1.5)
- prawn-icon (1.3.0)
+ prawn-icon (2.3.0)
prawn (>= 1.1.0, < 3.0.0)
- prawn-svg (0.27.1)
- css_parser (~> 1.3)
+ prawn-svg (0.29.1)
+ css_parser (~> 1.6)
prawn (>= 0.11.1, < 3)
prawn-table (0.2.2)
prawn (>= 1.3.0, < 3.0.0)
prawn-templates (0.1.1)
pdf-reader (~> 2.0)
prawn (~> 2.2)
- public_suffix (3.0.3)
+ public_suffix (3.1.0)
pygments.rb (1.2.1)
multi_json (>= 1.0.0)
- rack (2.0.6)
ruby-enum (0.7.2)
i18n
ruby-rc4 (0.1.5)
- safe_yaml (1.0.4)
- slim (3.0.9)
- temple (>= 0.7.6, < 0.9)
- tilt (>= 1.3.3, < 2.1)
- source_map (3.0.1)
- json
- sprockets (3.7.2)
- concurrent-ruby (~> 1.0)
- rack (> 1, < 3)
- temple (0.8.0)
+ safe_yaml (1.0.5)
thread_safe (0.3.6)
- tilt (2.0.8)
treetop (1.5.3)
polyglot (~> 0.3)
ttfunk (1.5.1)
@@ -94,13 +71,11 @@ PLATFORMS
DEPENDENCIES
asciidoctor
- asciidoctor-bespoke
asciidoctor-diagram
- asciidoctor-latex
asciidoctor-mathematical
asciidoctor-pdf
coderay
pygments.rb
BUNDLED WITH
- 1.16.4
+ 1.17.2
diff --git a/pkgs/tools/typesetting/asciidoctor/default.nix b/pkgs/tools/typesetting/asciidoctor/default.nix
index 8c4b93ab265..760cc41609e 100644
--- a/pkgs/tools/typesetting/asciidoctor/default.nix
+++ b/pkgs/tools/typesetting/asciidoctor/default.nix
@@ -11,8 +11,6 @@ bundlerApp {
exes = [
"asciidoctor"
- "asciidoctor-bespoke"
- "asciidoctor-latex"
"asciidoctor-pdf"
"asciidoctor-safe"
];
diff --git a/pkgs/tools/typesetting/asciidoctor/gemset.nix b/pkgs/tools/typesetting/asciidoctor/gemset.nix
index 034ab174e8a..aef9061e130 100644
--- a/pkgs/tools/typesetting/asciidoctor/gemset.nix
+++ b/pkgs/tools/typesetting/asciidoctor/gemset.nix
@@ -5,10 +5,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0viqszpkggqi8hq87pqp0xykhvz60g99nwmkwsb0v45kc2liwxvk";
+ sha256 = "0bcm2hchn897xjhqj9zzsxf3n9xhddymj4lsclz508f4vw3av46l";
type = "gem";
};
- version = "2.5.2";
+ version = "2.6.0";
};
afm = {
groups = ["default"];
@@ -35,21 +35,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0v52bzc72cvg7zfgq27pa4mgyf29dx9m20fghrw1xmvwgd519n1w";
+ sha256 = "1b2ajs3sabl0s27r7lhwkacw0yn0zfk4jpmidg9l8lzp2qlgjgbz";
type = "gem";
};
- version = "1.5.7.1";
- };
- asciidoctor-bespoke = {
- dependencies = ["asciidoctor" "slim" "thread_safe"];
- groups = ["default"];
- platforms = [];
- source = {
- remotes = ["https://rubygems.org"];
- sha256 = "1awy933sswxvi2hxpll3rh9phxcvmqhrbb91m6ibjchnf7qsl3zk";
- type = "gem";
- };
- version = "1.0.0.alpha.1";
+ version = "2.0.10";
};
asciidoctor-diagram = {
dependencies = ["asciidoctor"];
@@ -57,21 +46,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0rj02i00d9hkzqzzrk5al9rn8yv5x0wsnrv9y6j4k8rfylm69c1r";
+ sha256 = "095ar1hj96mi9vxnjjdkj7yzc3lp4wjxh4qsijx9inqflbcw7x71";
type = "gem";
};
- version = "1.5.9";
- };
- asciidoctor-latex = {
- dependencies = ["asciidoctor" "htmlentities" "opal"];
- groups = ["default"];
- platforms = [];
- source = {
- remotes = ["https://rubygems.org"];
- sha256 = "02qvn1ngp4s9y22vk23zzssd4w1bpyk84akjwiq6nqn8im6s4awz";
- type = "gem";
- };
- version = "1.5.0.17.dev";
+ version = "1.5.18";
};
asciidoctor-mathematical = {
dependencies = ["asciidoctor" "mathematical" "ruby-enum"];
@@ -79,21 +57,21 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "18igbvs70dnlrzgl62jcc0vfxhlb4r7v9bq3qf1v80l17lvq1x8f";
+ sha256 = "1n6qhfp6xc5jlqkscr9g7zzp9f2cv28jzcqzawhl8vjgcny7i6j3";
type = "gem";
};
- version = "0.2.2";
+ version = "0.3.0";
};
asciidoctor-pdf = {
- dependencies = ["asciidoctor" "prawn" "prawn-icon" "prawn-svg" "prawn-table" "prawn-templates" "safe_yaml" "thread_safe" "treetop"];
+ dependencies = ["asciidoctor" "concurrent-ruby" "prawn" "prawn-icon" "prawn-svg" "prawn-table" "prawn-templates" "safe_yaml" "thread_safe" "treetop"];
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1899c071hfmzqg9822v7rg8y8iqlfy3dhpfy32ignzap6cajlsqg";
+ sha256 = "19rgi43abhkyv85r2gnwqq6kxwsn29hhv4clnnmln58d7s589n0j";
type = "gem";
};
- version = "1.5.0.alpha.16";
+ version = "1.5.0.alpha.18";
};
coderay = {
groups = ["default"];
@@ -110,10 +88,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "183lszf5gx84kcpb779v6a2y0mx9sssy8dgppng1z9a505nj1qcf";
+ sha256 = "1x07r23s7836cpp5z9yrlbpljcxpax14yw4fy4bnp6crhr6x24an";
type = "gem";
};
- version = "1.0.5";
+ version = "1.1.5";
};
css_parser = {
dependencies = ["addressable"];
@@ -121,10 +99,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0gwvf8mc8gnz4aizfijplv3594998h2j44ydakpzsdmkivs07v61";
+ sha256 = "1y4vc018b5mzp7winw4pbb22jk0dpxp22pzzxq7w0rgvfxzi89pd";
type = "gem";
};
- version = "1.6.0";
+ version = "1.7.0";
};
hashery = {
groups = ["default"];
@@ -136,36 +114,16 @@
};
version = "2.1.2";
};
- htmlentities = {
- groups = ["default"];
- platforms = [];
- source = {
- remotes = ["https://rubygems.org"];
- sha256 = "1nkklqsn8ir8wizzlakncfv42i32wc0w9hxp00hvdlgjr7376nhj";
- type = "gem";
- };
- version = "4.3.4";
- };
i18n = {
dependencies = ["concurrent-ruby"];
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0ppvmla21hssvrfm8g1n2fnb4lxn4yhy9qmmba0imanflgldrjmr";
+ sha256 = "1hfxnlyr618s25xpafw9mypa82qppjccbh292c4l3bj36az7f6wl";
type = "gem";
};
- version = "1.1.0";
- };
- json = {
- groups = ["default"];
- platforms = [];
- source = {
- remotes = ["https://rubygems.org"];
- sha256 = "01v6jjpvh3gnq6sgllpfqahlgxzj50ailwhj9b3cd20hi2dx0vxp";
- type = "gem";
- };
- version = "2.1.0";
+ version = "1.6.0";
};
mathematical = {
dependencies = ["ruby-enum"];
@@ -173,10 +131,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "06xkr613hmzbhmm6zv92zlcjyfp0a6i2b3q3hg24lmj4j5l85p21";
+ sha256 = "19f9icaixg60wl8dvcxp6glbm5vpx2rsyx53sfk2rvwnzgsr42qh";
type = "gem";
};
- version = "1.6.11";
+ version = "1.6.12";
};
multi_json = {
groups = ["default"];
@@ -188,17 +146,6 @@
};
version = "1.13.1";
};
- opal = {
- dependencies = ["source_map" "sprockets"];
- groups = ["default"];
- platforms = [];
- source = {
- remotes = ["https://rubygems.org"];
- sha256 = "0dmdxhmg43ibd4bsldssslsz8870hzknwcxiv9l1838lh6hd390k";
- type = "gem";
- };
- version = "0.6.3";
- };
pdf-core = {
groups = ["default"];
platforms = [];
@@ -215,10 +162,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1b3ig4wpcgdbqa7yw0ahwbmikkkywn2a22bfmrknl5ls7g066x45";
+ sha256 = "0aas2f5clgwpgryywrh4gihdi10afx3kbyfs1n31cinri02psd43";
type = "gem";
};
- version = "2.1.0";
+ version = "2.2.0";
};
polyglot = {
groups = ["default"];
@@ -247,10 +194,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1pz8n7ajkfmflw05dib2l9qkzkfzwwbzx63qcvjr14k1dnbpx7qk";
+ sha256 = "1nc810wdpa93z162yzjgvf7mdanfxm4bjwinjjxx5smq6wdvhdqi";
type = "gem";
};
- version = "1.3.0";
+ version = "2.3.0";
};
prawn-svg = {
dependencies = ["css_parser" "prawn"];
@@ -258,10 +205,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "0fykcs10q2j6h04riav1kzrw77mga6gh1rxbh7q0ab6gkr0wamzx";
+ sha256 = "1wwfv6lw2diywgjp15pd3awpr8g7xkjfi10jzhmvziikakzsz6gj";
type = "gem";
};
- version = "0.27.1";
+ version = "0.29.1";
};
prawn-table = {
dependencies = ["prawn"];
@@ -290,10 +237,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "08q64b5br692dd3v0a9wq9q5dvycc6kmiqmjbdxkxbfizggsvx6l";
+ sha256 = "1c7c5xxkx91hwj4572hbnyvxmydb90q69wlpr2l0dxrmwx2p365l";
type = "gem";
};
- version = "3.0.3";
+ version = "3.1.0";
};
"pygments.rb" = {
dependencies = ["multi_json"];
@@ -306,14 +253,6 @@
};
version = "1.2.1";
};
- rack = {
- source = {
- remotes = ["https://rubygems.org"];
- sha256 = "1pcgv8dv4vkaczzlix8q3j68capwhk420cddzijwqgi2qb4lm1zm";
- type = "gem";
- };
- version = "2.0.6";
- };
ruby-enum = {
dependencies = ["i18n"];
groups = ["default"];
@@ -340,53 +279,10 @@
platforms = [];
source = {
remotes = ["https://rubygems.org"];
- sha256 = "1hly915584hyi9q9vgd968x2nsi5yag9jyf5kq60lwzi5scr7094";
+ sha256 = "0j7qv63p0vqcd838i2iy2f76c3dgwzkiz1d1xkg7n0pbnxj2vb56";
type = "gem";
};
- version = "1.0.4";
- };
- slim = {
- dependencies = ["temple" "tilt"];
- groups = ["default"];
- platforms = [];
- source = {
- remotes = ["https://rubygems.org"];
- sha256 = "0zwz083xsbnlrma1pfkzrqc1fqm90fidn915vlifvkzl5fs43pvl";
- type = "gem";
- };
- version = "3.0.9";
- };
- source_map = {
- dependencies = ["json"];
- groups = ["default"];
- platforms = [];
- source = {
- remotes = ["https://rubygems.org"];
- sha256 = "0fviv92glr51v2zqy4i5jzi3hzpvjrcwyrxddcfr84ki65zb7pkv";
- type = "gem";
- };
- version = "3.0.1";
- };
- sprockets = {
- dependencies = ["concurrent-ruby" "rack"];
- groups = ["default"];
- platforms = [];
- source = {
- remotes = ["https://rubygems.org"];
- sha256 = "182jw5a0fbqah5w9jancvfmjbk88h8bxdbwnl4d3q809rpxdg8ay";
- type = "gem";
- };
- version = "3.7.2";
- };
- temple = {
- groups = ["default"];
- platforms = [];
- source = {
- remotes = ["https://rubygems.org"];
- sha256 = "00nxf610nzi4n1i2lkby43nrnarvl89fcl6lg19406msr0k3ycmq";
- type = "gem";
- };
- version = "0.8.0";
+ version = "1.0.5";
};
thread_safe = {
groups = ["default"];
@@ -398,16 +294,6 @@
};
version = "0.3.6";
};
- tilt = {
- groups = ["default"];
- platforms = [];
- source = {
- remotes = ["https://rubygems.org"];
- sha256 = "0020mrgdf11q23hm1ddd6fv691l51vi10af00f137ilcdb2ycfra";
- type = "gem";
- };
- version = "2.0.8";
- };
treetop = {
dependencies = ["polyglot"];
groups = ["default"];
diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix
index acd02e0d8f7..71f20b4ae82 100644
--- a/pkgs/top-level/aliases.nix
+++ b/pkgs/top-level/aliases.nix
@@ -303,6 +303,7 @@ mapAliases ({
shared_mime_info = shared-mime-info; # added 2018-02-25
skrooge2 = skrooge; # added 2017-02-18
skype = skypeforlinux; # added 2017-07-27
+ slic3r-prusa3d = prusa-slicer; # added 2019-05-21
slurm-llnl = slurm; # renamed July 2017
slurm-llnl-full = slurm-full; # renamed July 2017
slurm-full = slurm; # added 2018-05-1
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 536fd2ce9e7..a8e7f112ef8 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -5338,7 +5338,6 @@ in
podiff = callPackage ../tools/text/podiff { };
podman = callPackage ../applications/virtualization/podman { };
- conmon = callPackage ../applications/virtualization/podman/conmon.nix { };
pod2mdoc = callPackage ../tools/misc/pod2mdoc { };
@@ -5820,6 +5819,8 @@ in
sharutils = callPackage ../tools/archivers/sharutils { };
+ shelldap = callPackage ../tools/misc/shelldap { };
+
schema2ldif = callPackage ../tools/text/schema2ldif { };
shocco = callPackage ../tools/text/shocco { };
@@ -9934,7 +9935,7 @@ in
belr = callPackage ../development/libraries/belr { };
beignet = callPackage ../development/libraries/beignet {
- inherit (llvmPackages_39) llvm clang-unwrapped;
+ inherit (llvmPackages_6) llvm clang-unwrapped;
};
belle-sip = callPackage ../development/libraries/belle-sip { };
@@ -14703,6 +14704,7 @@ in
samba3 = callPackage ../servers/samba/3.x.nix { };
samba4 = callPackage ../servers/samba/4.x.nix {
+ rpcgen = netbsd.rpcgen;
python = python3;
};
@@ -17652,7 +17654,7 @@ in
inherit (pythonPackages) elpy;
inherit
autoconf automake git libffi libpng pkgconfig poppler rtags w3m zlib
- substituteAll rustPlatform;
+ substituteAll rustPlatform cmake llvmPackages;
};
};
@@ -19207,6 +19209,8 @@ in
natron = callPackage ../applications/video/natron { };
+ neocomp = callPackage ../applications/window-managers/neocomp { };
+
nicotine-plus = callPackage ../applications/networking/soulseek/nicotine-plus {
geoip = geoipWithDatabase;
};
@@ -20127,8 +20131,6 @@ in
slic3r = callPackage ../applications/misc/slic3r { };
- slic3r-prusa3d = callPackage ../applications/misc/slic3r/prusa3d.nix { };
-
curaengine_stable = callPackage ../applications/misc/curaengine/stable.nix { };
cura_stable = callPackage ../applications/misc/cura/stable.nix {
curaengine = curaengine_stable;
@@ -20151,6 +20153,8 @@ in
printrun = callPackage ../applications/misc/printrun { };
+ prusa-slicer = callPackage ../applications/misc/prusa-slicer { };
+
sddm = libsForQt5.callPackage ../applications/display-managers/sddm { };
skrooge = libsForQt5.callPackage ../applications/office/skrooge {};
@@ -20279,7 +20283,7 @@ in
symlinks = callPackage ../tools/system/symlinks { };
- syncplay = callPackage ../applications/networking/syncplay { };
+ syncplay = python3.pkgs.callPackage ../applications/networking/syncplay { };
inherit (callPackages ../applications/networking/syncthing { })
syncthing
@@ -21353,6 +21357,8 @@ in
confd = callPackage ../tools/system/confd { };
+ conmon = callPackage ../applications/virtualization/conmon { };
+
construoBase = lowPrio (callPackage ../games/construo {
libGL = null;
freeglut = null;
@@ -23318,12 +23324,16 @@ in
lguf-brightness = callPackage ../misc/lguf-brightness { };
lilypond = callPackage ../misc/lilypond { guile = guile_1_8; };
+
lilypond-unstable = callPackage ../misc/lilypond/unstable.nix { };
+
lilypond-with-fonts = callPackage ../misc/lilypond/with-fonts.nix {
lilypond = lilypond-unstable;
};
- openlilylib-fonts = callPackage ../misc/lilypond/fonts.nix { };
+ openlilylib-fonts = callPackage ../misc/lilypond/fonts.nix {
+ lilypond = lilypond-unstable;
+ };
loop = callPackage ../tools/misc/loop { };
@@ -23814,6 +23824,8 @@ in
thermald = callPackage ../tools/system/thermald { };
+ throttled = callPackage ../tools/system/throttled { };
+
thinkfan = callPackage ../tools/system/thinkfan { };
tup = callPackage ../development/tools/build-managers/tup { };
diff --git a/pkgs/top-level/emacs-packages.nix b/pkgs/top-level/emacs-packages.nix
index f1fdf30f61c..1975f6aad43 100644
--- a/pkgs/top-level/emacs-packages.nix
+++ b/pkgs/top-level/emacs-packages.nix
@@ -288,6 +288,45 @@ let
icicles = callPackage ../applications/editors/emacs-modes/icicles { };
+ irony = melpaBuild rec {
+ pname = "irony";
+ ename = "irony";
+ version = "20190516";
+ src = fetchFromGitHub {
+ owner = "Sarcasm";
+ repo = "irony-mode";
+ rev = "c3ae899b61124a747ebafc705086345e460ac08e";
+ sha256 = "06ld83vzyklfmrfi6pp893mvlnhacv9if75c9pbipjvy6nwfb63r";
+ };
+ recipe = fetchurl {
+ url = "https://raw.githubusercontent.com/milkypostman/melpa/3cfa28c7314fa57fa9a3aaaadf9ef83f8ae541a9/recipes/irony";
+ sha256 = "1xcxrdrs7imi31nxpszgpaywq4ivni75hrdl4zzrf103xslqpl8a";
+ name = "recipe";
+ };
+ preConfigure = ''
+ cd server
+ '';
+ preBuild = ''
+ make
+ '';
+ postInstall = ''
+ mkdir -p $out
+ mv $out/share/emacs/site-lisp/elpa/*/server/bin $out
+ rm -rf $out/share/emacs/site-lisp/*/server
+ '';
+ preCheck = ''
+ cd source/server
+ '';
+ dontUseCmakeBuildDir = true;
+ doCheck = true;
+ packageRequires = [ emacs ];
+ nativeBuildInputs = [ external.cmake external.llvmPackages.llvm ];
+ meta = {
+ homepage = "https://melpa.org/#/irony";
+ license = lib.licenses.gpl3;
+ };
+ };
+
redshank = callPackage ../applications/editors/emacs-modes/redshank { };
rtags = melpaBuild rec {
diff --git a/pkgs/top-level/lua-packages.nix b/pkgs/top-level/lua-packages.nix
index 5df75d4e460..a15982fe8b9 100644
--- a/pkgs/top-level/lua-packages.nix
+++ b/pkgs/top-level/lua-packages.nix
@@ -258,18 +258,23 @@ with self; {
luadbi = buildLuaPackage rec {
name = "luadbi-${version}";
- version = "0.7.1";
+ version = "0.7.2";
src = fetchFromGitHub {
owner = "mwild1";
repo = "luadbi";
rev = "v${version}";
- sha256 = "01i8018zb7w2bhaqglm7cnvbiirgd95b9d07irgz3sci91p08cwp";
+ sha256 = "167ivwmczhp98bxzpz3wdxcfj6vi0a10gpi7rdfjs2rbfwkzqvjh";
};
- MYSQL_INC="-I${mysql.connector-c}/include/mysql";
+ MYSQL_INC = [ "-I${mysql.connector-c}/include/mysql" ];
+ MYSQL_LDFLAGS= [
+ "-lmysqlclient"
+ "-L${mysql.connector-c}/lib/mysql"
+ ];
- buildInputs = [ mysql.client mysql.connector-c postgresql sqlite ];
+ nativeBuildInputs = [ mysql.client ];
+ buildInputs = [ mysql.connector-c postgresql sqlite ];
preConfigure = stdenv.lib.optionalString stdenv.isDarwin ''
substituteInPlace Makefile \
diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix
index 4e7f134c9d3..a87ad663ad9 100644
--- a/pkgs/top-level/perl-packages.nix
+++ b/pkgs/top-level/perl-packages.nix
@@ -14991,6 +14991,20 @@ let
};
};
+ TermShell = buildPerlModule rec {
+ name = "Term-Shell-0.10";
+ src = fetchurl {
+ url = "mirror://cpan/authors/id/S/SH/SHLOMIF/${name}.tar.gz";
+ sha256 = "7d1f824c2db22769b60000b5b9ca2ad469c154939f9ec1cd3f0e06e9c967dda3";
+ };
+ propagatedBuildInputs = [ TermReadKey TextAutoformat ];
+ meta = with stdenv.lib; {
+ homepage = http://metacpan.org/release/Term-Shell;
+ description = "A simple command-line shell framework";
+ license = with licenses; [ artistic1 gpl1Plus ];
+ };
+ };
+
TermShellUI = buildPerlPackage rec {
name = "Term-ShellUI-0.92";
src = fetchurl {
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index b9e3f6c9393..828cf517d5c 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -492,6 +492,8 @@ in {
hopcroftkarp = callPackage ../development/python-modules/hopcroftkarp { };
+ http-ece = callPackage ../development/python-modules/http-ece { };
+
httpsig = callPackage ../development/python-modules/httpsig { };
httptools = callPackage ../development/python-modules/httptools { };
@@ -877,8 +879,12 @@ in {
pytricia = callPackage ../development/python-modules/pytricia { };
+ py-vapid = callPackage ../development/python-modules/py-vapid { };
+
PyWebDAV = callPackage ../development/python-modules/pywebdav { };
+ pywebpush = callPackage ../development/python-modules/pywebpush { };
+
pyxml = disabledIf isPy3k (callPackage ../development/python-modules/pyxml{ });
pyvcd = callPackage ../development/python-modules/pyvcd { };
@@ -3628,9 +3634,8 @@ in {
cachetools = callPackage ../development/python-modules/cachetools {};
- cmd2_8 = callPackage ../development/python-modules/cmd2/old.nix {};
cmd2_9 = callPackage ../development/python-modules/cmd2 {};
- cmd2 = if isPy27 then self.cmd2_8 else self.cmd2_9;
+ cmd2 = self.cmd2_9;
warlock = callPackage ../development/python-modules/warlock { };